From 9ffa3a4ba566238991bd78f92751355e0acd9fe1 Mon Sep 17 00:00:00 2001 From: Kate Osborn Date: Fri, 20 Oct 2023 13:17:26 -0600 Subject: [PATCH 1/7] Add test plan and results for zero downtime scaling --- .../manifests/cafe-routes.yaml | 37 + .../manifests/cafe-secret.yaml | 8 + .../zero-downtime-scaling/manifests/cafe.yaml | 65 + .../manifests/gateway-1.yaml | 20 + .../manifests/gateway-10.yaml | 56 + .../manifests/gateway-11.yaml | 60 + .../manifests/gateway-12.yaml | 64 + .../manifests/gateway-13.yaml | 68 + .../manifests/gateway-14.yaml | 72 + .../manifests/gateway-15.yaml | 76 + .../manifests/gateway-16.yaml | 80 + .../manifests/gateway-17.yaml | 84 + .../manifests/gateway-18.yaml | 88 + .../manifests/gateway-19.yaml | 92 + .../manifests/gateway-2.yaml | 24 + .../manifests/gateway-20.yaml | 96 + .../manifests/gateway-21.yaml | 100 + .../manifests/gateway-22.yaml | 104 + .../manifests/gateway-23.yaml | 108 + .../manifests/gateway-24.yaml | 112 + .../manifests/gateway-25.yaml | 116 + .../manifests/gateway-3.yaml | 28 + .../manifests/gateway-4.yaml | 32 + .../manifests/gateway-5.yaml | 36 + .../manifests/gateway-6.yaml | 40 + .../manifests/gateway-7.yaml | 44 + .../manifests/gateway-8.yaml | 48 + .../manifests/gateway-9.yaml | 52 + .../results/1.0.0/1.0.0.md | 584 ++ .../1.0.0/10-node/abrupt-down-http.csv | 477 + .../1.0.0/10-node/abrupt-down-http.png | Bin 0 -> 6367 bytes .../1.0.0/10-node/abrupt-down-https.csv | 428 + .../1.0.0/10-node/abrupt-down-https.png | Bin 0 -> 6411 bytes .../results/1.0.0/10-node/abrupt-up-http.csv | 565 ++ .../results/1.0.0/10-node/abrupt-up-http.png | Bin 0 -> 6177 bytes .../results/1.0.0/10-node/abrupt-up-https.csv | 509 ++ .../results/1.0.0/10-node/abrupt-up-https.png | Bin 0 -> 6273 bytes .../1.0.0/10-node/gradual-down-http.csv | 7628 ++++++++++++++++ .../1.0.0/10-node/gradual-down-http.png | Bin 0 -> 6496 bytes .../1.0.0/10-node/gradual-down-https.csv | 6861 ++++++++++++++ .../1.0.0/10-node/gradual-down-https.png | Bin 0 -> 6462 bytes .../results/1.0.0/10-node/gradual-up-http.csv | 1823 ++++ .../results/1.0.0/10-node/gradual-up-http.png | Bin 0 -> 6466 bytes .../1.0.0/10-node/gradual-up-https.csv | 1715 ++++ .../1.0.0/10-node/gradual-up-https.png | Bin 0 -> 6430 bytes .../1.0.0/25-node/abrupt-down-http.csv | 443 + .../1.0.0/25-node/abrupt-down-http.png | Bin 0 -> 6262 bytes .../1.0.0/25-node/abrupt-down-https.csv | 397 + .../1.0.0/25-node/abrupt-down-https.png | Bin 0 -> 6262 bytes .../results/1.0.0/25-node/abrupt-up-http.csv | 551 ++ .../results/1.0.0/25-node/abrupt-up-http.png | Bin 0 -> 6137 bytes .../results/1.0.0/25-node/abrupt-up-https.csv | 496 + .../results/1.0.0/25-node/abrupt-up-https.png | Bin 0 -> 6148 bytes .../1.0.0/25-node/gradual-down-http.csv | 7959 +++++++++++++++++ .../1.0.0/25-node/gradual-down-http.png | Bin 0 -> 6553 bytes .../1.0.0/25-node/gradual-down-https.csv | 7286 +++++++++++++++ .../1.0.0/25-node/gradual-down-https.png | Bin 0 -> 6567 bytes .../results/1.0.0/25-node/gradual-up-http.csv | 2475 +++++ .../results/1.0.0/25-node/gradual-up-http.png | Bin 0 -> 6429 bytes .../1.0.0/25-node/gradual-up-https.csv | 2225 +++++ .../1.0.0/25-node/gradual-up-https.png | Bin 0 -> 6445 bytes tests/zero-downtime-scaling/scale.sh | 68 + .../zero-downtime-scaling/values-10-node.yaml | 29 + .../zero-downtime-scaling/values-25-node.yaml | 37 + .../zero-downtime-scaling.md | 381 + 65 files changed, 44747 insertions(+) create mode 100644 tests/zero-downtime-scaling/manifests/cafe-routes.yaml create mode 100644 tests/zero-downtime-scaling/manifests/cafe-secret.yaml create mode 100644 tests/zero-downtime-scaling/manifests/cafe.yaml create mode 100644 tests/zero-downtime-scaling/manifests/gateway-1.yaml create mode 100644 tests/zero-downtime-scaling/manifests/gateway-10.yaml create mode 100644 tests/zero-downtime-scaling/manifests/gateway-11.yaml create mode 100644 tests/zero-downtime-scaling/manifests/gateway-12.yaml create mode 100644 tests/zero-downtime-scaling/manifests/gateway-13.yaml create mode 100644 tests/zero-downtime-scaling/manifests/gateway-14.yaml create mode 100644 tests/zero-downtime-scaling/manifests/gateway-15.yaml create mode 100644 tests/zero-downtime-scaling/manifests/gateway-16.yaml create mode 100644 tests/zero-downtime-scaling/manifests/gateway-17.yaml create mode 100644 tests/zero-downtime-scaling/manifests/gateway-18.yaml create mode 100644 tests/zero-downtime-scaling/manifests/gateway-19.yaml create mode 100644 tests/zero-downtime-scaling/manifests/gateway-2.yaml create mode 100644 tests/zero-downtime-scaling/manifests/gateway-20.yaml create mode 100644 tests/zero-downtime-scaling/manifests/gateway-21.yaml create mode 100644 tests/zero-downtime-scaling/manifests/gateway-22.yaml create mode 100644 tests/zero-downtime-scaling/manifests/gateway-23.yaml create mode 100644 tests/zero-downtime-scaling/manifests/gateway-24.yaml create mode 100644 tests/zero-downtime-scaling/manifests/gateway-25.yaml create mode 100644 tests/zero-downtime-scaling/manifests/gateway-3.yaml create mode 100644 tests/zero-downtime-scaling/manifests/gateway-4.yaml create mode 100644 tests/zero-downtime-scaling/manifests/gateway-5.yaml create mode 100644 tests/zero-downtime-scaling/manifests/gateway-6.yaml create mode 100644 tests/zero-downtime-scaling/manifests/gateway-7.yaml create mode 100644 tests/zero-downtime-scaling/manifests/gateway-8.yaml create mode 100644 tests/zero-downtime-scaling/manifests/gateway-9.yaml create mode 100644 tests/zero-downtime-scaling/results/1.0.0/1.0.0.md create mode 100644 tests/zero-downtime-scaling/results/1.0.0/10-node/abrupt-down-http.csv create mode 100644 tests/zero-downtime-scaling/results/1.0.0/10-node/abrupt-down-http.png create mode 100644 tests/zero-downtime-scaling/results/1.0.0/10-node/abrupt-down-https.csv create mode 100644 tests/zero-downtime-scaling/results/1.0.0/10-node/abrupt-down-https.png create mode 100644 tests/zero-downtime-scaling/results/1.0.0/10-node/abrupt-up-http.csv create mode 100644 tests/zero-downtime-scaling/results/1.0.0/10-node/abrupt-up-http.png create mode 100644 tests/zero-downtime-scaling/results/1.0.0/10-node/abrupt-up-https.csv create mode 100644 tests/zero-downtime-scaling/results/1.0.0/10-node/abrupt-up-https.png create mode 100644 tests/zero-downtime-scaling/results/1.0.0/10-node/gradual-down-http.csv create mode 100644 tests/zero-downtime-scaling/results/1.0.0/10-node/gradual-down-http.png create mode 100644 tests/zero-downtime-scaling/results/1.0.0/10-node/gradual-down-https.csv create mode 100644 tests/zero-downtime-scaling/results/1.0.0/10-node/gradual-down-https.png create mode 100644 tests/zero-downtime-scaling/results/1.0.0/10-node/gradual-up-http.csv create mode 100644 tests/zero-downtime-scaling/results/1.0.0/10-node/gradual-up-http.png create mode 100644 tests/zero-downtime-scaling/results/1.0.0/10-node/gradual-up-https.csv create mode 100644 tests/zero-downtime-scaling/results/1.0.0/10-node/gradual-up-https.png create mode 100644 tests/zero-downtime-scaling/results/1.0.0/25-node/abrupt-down-http.csv create mode 100644 tests/zero-downtime-scaling/results/1.0.0/25-node/abrupt-down-http.png create mode 100644 tests/zero-downtime-scaling/results/1.0.0/25-node/abrupt-down-https.csv create mode 100644 tests/zero-downtime-scaling/results/1.0.0/25-node/abrupt-down-https.png create mode 100644 tests/zero-downtime-scaling/results/1.0.0/25-node/abrupt-up-http.csv create mode 100644 tests/zero-downtime-scaling/results/1.0.0/25-node/abrupt-up-http.png create mode 100644 tests/zero-downtime-scaling/results/1.0.0/25-node/abrupt-up-https.csv create mode 100644 tests/zero-downtime-scaling/results/1.0.0/25-node/abrupt-up-https.png create mode 100644 tests/zero-downtime-scaling/results/1.0.0/25-node/gradual-down-http.csv create mode 100644 tests/zero-downtime-scaling/results/1.0.0/25-node/gradual-down-http.png create mode 100644 tests/zero-downtime-scaling/results/1.0.0/25-node/gradual-down-https.csv create mode 100644 tests/zero-downtime-scaling/results/1.0.0/25-node/gradual-down-https.png create mode 100644 tests/zero-downtime-scaling/results/1.0.0/25-node/gradual-up-http.csv create mode 100644 tests/zero-downtime-scaling/results/1.0.0/25-node/gradual-up-http.png create mode 100644 tests/zero-downtime-scaling/results/1.0.0/25-node/gradual-up-https.csv create mode 100644 tests/zero-downtime-scaling/results/1.0.0/25-node/gradual-up-https.png create mode 100755 tests/zero-downtime-scaling/scale.sh create mode 100644 tests/zero-downtime-scaling/values-10-node.yaml create mode 100644 tests/zero-downtime-scaling/values-25-node.yaml create mode 100644 tests/zero-downtime-scaling/zero-downtime-scaling.md diff --git a/tests/zero-downtime-scaling/manifests/cafe-routes.yaml b/tests/zero-downtime-scaling/manifests/cafe-routes.yaml new file mode 100644 index 000000000..e679756d6 --- /dev/null +++ b/tests/zero-downtime-scaling/manifests/cafe-routes.yaml @@ -0,0 +1,37 @@ +apiVersion: gateway.networking.k8s.io/v1beta1 +kind: HTTPRoute +metadata: + name: coffee +spec: + parentRefs: + - name: gateway + sectionName: http + hostnames: + - "cafe.example.com" + rules: + - matches: + - path: + type: PathPrefix + value: /coffee + backendRefs: + - name: coffee + port: 80 +--- +apiVersion: gateway.networking.k8s.io/v1beta1 +kind: HTTPRoute +metadata: + name: tea +spec: + parentRefs: + - name: gateway + sectionName: https + hostnames: + - "cafe.example.com" + rules: + - matches: + - path: + type: PathPrefix + value: /tea + backendRefs: + - name: tea + port: 80 diff --git a/tests/zero-downtime-scaling/manifests/cafe-secret.yaml b/tests/zero-downtime-scaling/manifests/cafe-secret.yaml new file mode 100644 index 000000000..4510460bb --- /dev/null +++ b/tests/zero-downtime-scaling/manifests/cafe-secret.yaml @@ -0,0 +1,8 @@ +apiVersion: v1 +kind: Secret +metadata: + name: cafe-secret +type: kubernetes.io/tls +data: + tls.crt: LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUNzakNDQVpvQ0NRQzdCdVdXdWRtRkNEQU5CZ2txaGtpRzl3MEJBUXNGQURBYk1Sa3dGd1lEVlFRRERCQmoKWVdabExtVjRZVzF3YkdVdVkyOXRNQjRYRFRJeU1EY3hOREl4TlRJek9Wb1hEVEl6TURjeE5ESXhOVEl6T1ZvdwpHekVaTUJjR0ExVUVBd3dRWTJGbVpTNWxlR0Z0Y0d4bExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFECmdnRVBBRENDQVFvQ2dnRUJBTHFZMnRHNFc5aStFYzJhdnV4Q2prb2tnUUx1ek10U1Rnc1RNaEhuK3ZRUmxIam8KVzFLRnMvQVdlS25UUStyTWVKVWNseis4M3QwRGtyRThwUisxR2NKSE50WlNMb0NEYUlRN0Nhck5nY1daS0o4Qgo1WDNnVS9YeVJHZjI2c1REd2xzU3NkSEQ1U2U3K2Vab3NPcTdHTVF3K25HR2NVZ0VtL1Q1UEMvY05PWE0zZWxGClRPL051MStoMzROVG9BbDNQdTF2QlpMcDNQVERtQ0thaEROV0NWbUJQUWpNNFI4VERsbFhhMHQ5Z1o1MTRSRzUKWHlZWTNtdzZpUzIrR1dYVXllMjFuWVV4UEhZbDV4RHY0c0FXaGRXbElweHlZQlNCRURjczN6QlI2bFF1OWkxZAp0R1k4dGJ3blVmcUVUR3NZdWxzc05qcU95V1VEcFdJelhibHhJZVVDQXdFQUFUQU5CZ2txaGtpRzl3MEJBUXNGCkFBT0NBUUVBcjkrZWJ0U1dzSnhLTGtLZlRkek1ISFhOd2Y5ZXFVbHNtTXZmMGdBdWVKTUpUR215dG1iWjlpbXQKL2RnWlpYVE9hTElHUG9oZ3BpS0l5eVVRZVdGQ2F0NHRxWkNPVWRhbUloOGk0Q1h6QVJYVHNvcUNOenNNLzZMRQphM25XbFZyS2lmZHYrWkxyRi8vblc0VVNvOEoxaCtQeDljY0tpRDZZU0RVUERDRGh1RUtFWXcvbHpoUDJVOXNmCnl6cEJKVGQ4enFyM3paTjNGWWlITmgzYlRhQS82di9jU2lyamNTK1EwQXg4RWpzQzYxRjRVMTc4QzdWNWRCKzQKcmtPTy9QNlA0UFlWNTRZZHMvRjE2WkZJTHFBNENCYnExRExuYWRxamxyN3NPbzl2ZzNnWFNMYXBVVkdtZ2todAp6VlZPWG1mU0Z4OS90MDBHUi95bUdPbERJbWlXMGc9PQotLS0tLUVORCBDRVJUSUZJQ0FURS0tLS0tCg== + tls.key: LS0tLS1CRUdJTiBQUklWQVRFIEtFWS0tLS0tCk1JSUV2UUlCQURBTkJna3Foa2lHOXcwQkFRRUZBQVNDQktjd2dnU2pBZ0VBQW9JQkFRQzZtTnJSdUZ2WXZoSE4KbXI3c1FvNUtKSUVDN3N6TFVrNExFeklSNS9yMEVaUjQ2RnRTaGJQd0ZuaXAwMFBxekhpVkhKYy92TjdkQTVLeApQS1VmdFJuQ1J6YldVaTZBZzJpRU93bXF6WUhGbVNpZkFlVjk0RlAxOGtSbjl1ckV3OEpiRXJIUncrVW51L25tCmFMRHF1eGpFTVBweGhuRklCSnYwK1R3djNEVGx6TjNwUlV6dnpidGZvZCtEVTZBSmR6N3Rid1dTNmR6MHc1Z2kKbW9RelZnbFpnVDBJek9FZkV3NVpWMnRMZllHZWRlRVJ1VjhtR041c09va3R2aGxsMU1udHRaMkZNVHgySmVjUQo3K0xBRm9YVnBTS2NjbUFVZ1JBM0xOOHdVZXBVTHZZdFhiUm1QTFc4SjFINmhFeHJHTHBiTERZNmpzbGxBNlZpCk0xMjVjU0hsQWdNQkFBRUNnZ0VBQnpaRE50bmVTdWxGdk9HZlFYaHRFWGFKdWZoSzJBenRVVVpEcUNlRUxvekQKWlV6dHdxbkNRNlJLczUyandWNTN4cU9kUU94bTNMbjNvSHdNa2NZcEliWW82MjJ2dUczYnkwaVEzaFlsVHVMVgpqQmZCcS9UUXFlL2NMdngvSkczQWhFNmJxdFRjZFlXeGFmTmY2eUtpR1dzZk11WVVXTWs4MGVJVUxuRmZaZ1pOCklYNTlSOHlqdE9CVm9Sa3hjYTVoMW1ZTDFsSlJNM3ZqVHNHTHFybmpOTjNBdWZ3ZGRpK1VDbGZVL2l0K1EvZkUKV216aFFoTlRpNVFkRWJLVStOTnYvNnYvb2JvandNb25HVVBCdEFTUE05cmxFemIralQ1WHdWQjgvLzRGY3VoSwoyVzNpcjhtNHVlQ1JHSVlrbGxlLzhuQmZ0eVhiVkNocVRyZFBlaGlPM1FLQmdRRGlrR3JTOTc3cjg3Y1JPOCtQClpoeXltNXo4NVIzTHVVbFNTazJiOTI1QlhvakpZL2RRZDVTdFVsSWE4OUZKZnNWc1JRcEhHaTFCYzBMaTY1YjIKazR0cE5xcVFoUmZ1UVh0UG9GYXRuQzlPRnJVTXJXbDVJN0ZFejZnNkNQMVBXMEg5d2hPemFKZUdpZVpNYjlYTQoybDdSSFZOcC9jTDlYbmhNMnN0Q1lua2Iwd0tCZ1FEUzF4K0crakEyUVNtRVFWNXA1RnRONGcyamsyZEFjMEhNClRIQ2tTazFDRjhkR0Z2UWtsWm5ZbUt0dXFYeXNtekJGcnZKdmt2eUhqbUNYYTducXlpajBEdDZtODViN3BGcVAKQWxtajdtbXI3Z1pUeG1ZMXBhRWFLMXY4SDNINGtRNVl3MWdrTWRybVJHcVAvaTBGaDVpaGtSZS9DOUtGTFVkSQpDcnJjTzhkUVp3S0JnSHA1MzRXVWNCMVZibzFlYStIMUxXWlFRUmxsTWlwRFM2TzBqeWZWSmtFb1BZSEJESnp2ClIrdzZLREJ4eFoyWmJsZ05LblV0YlhHSVFZd3lGelhNcFB5SGxNVHpiZkJhYmJLcDFyR2JVT2RCMXpXM09PRkgKcmppb21TUm1YNmxhaDk0SjRHU0lFZ0drNGw1SHhxZ3JGRDZ2UDd4NGRjUktJWFpLZ0w2dVJSSUpBb0dCQU1CVApaL2p5WStRNTBLdEtEZHUrYU9ORW4zaGxUN3hrNXRKN3NBek5rbWdGMU10RXlQUk9Xd1pQVGFJbWpRbk9qbHdpCldCZ2JGcXg0M2ZlQ1Z4ZXJ6V3ZEM0txaWJVbWpCTkNMTGtYeGh3ZEVteFQwVit2NzZGYzgwaTNNYVdSNnZZR08KditwVVovL0F6UXdJcWZ6dlVmV2ZxdStrMHlhVXhQOGNlcFBIRyt0bEFvR0FmQUtVVWhqeFU0Ym5vVzVwVUhKegpwWWZXZXZ5TW54NWZyT2VsSmRmNzlvNGMvMHhVSjh1eFBFWDFkRmNrZW96dHNpaVFTNkN6MENRY09XVWxtSkRwCnVrdERvVzM3VmNSQU1BVjY3NlgxQVZlM0UwNm5aL2g2Tkd4Z28rT042Q3pwL0lkMkJPUm9IMFAxa2RjY1NLT3kKMUtFZlNnb1B0c1N1eEpBZXdUZmxDMXc9Ci0tLS0tRU5EIFBSSVZBVEUgS0VZLS0tLS0K diff --git a/tests/zero-downtime-scaling/manifests/cafe.yaml b/tests/zero-downtime-scaling/manifests/cafe.yaml new file mode 100644 index 000000000..6b20eebbd --- /dev/null +++ b/tests/zero-downtime-scaling/manifests/cafe.yaml @@ -0,0 +1,65 @@ +apiVersion: apps/v1 +kind: Deployment +metadata: + name: coffee +spec: + replicas: 10 + selector: + matchLabels: + app: coffee + template: + metadata: + labels: + app: coffee + spec: + containers: + - name: coffee + image: nginxdemos/nginx-hello:plain-text + ports: + - containerPort: 8080 +--- +apiVersion: v1 +kind: Service +metadata: + name: coffee +spec: + ports: + - port: 80 + targetPort: 8080 + protocol: TCP + name: http + selector: + app: coffee +--- +apiVersion: apps/v1 +kind: Deployment +metadata: + name: tea +spec: + replicas: 10 + selector: + matchLabels: + app: tea + template: + metadata: + labels: + app: tea + spec: + containers: + - name: tea + image: nginxdemos/nginx-hello:plain-text + ports: + - containerPort: 8080 +--- +apiVersion: v1 +kind: Service +metadata: + name: tea +spec: + ports: + - port: 80 + targetPort: 8080 + protocol: TCP + name: http + selector: + app: tea diff --git a/tests/zero-downtime-scaling/manifests/gateway-1.yaml b/tests/zero-downtime-scaling/manifests/gateway-1.yaml new file mode 100644 index 000000000..7bfcc34a7 --- /dev/null +++ b/tests/zero-downtime-scaling/manifests/gateway-1.yaml @@ -0,0 +1,20 @@ +apiVersion: gateway.networking.k8s.io/v1beta1 +kind: Gateway +metadata: + name: gateway +spec: + gatewayClassName: nginx + listeners: + - name: http + port: 80 + protocol: HTTP + hostname: "cafe.example.com" + - name: https + port: 443 + protocol: HTTPS + hostname: "*.example.com" + tls: + mode: Terminate + certificateRefs: + - kind: Secret + name: cafe-secret diff --git a/tests/zero-downtime-scaling/manifests/gateway-10.yaml b/tests/zero-downtime-scaling/manifests/gateway-10.yaml new file mode 100644 index 000000000..6f99f1bca --- /dev/null +++ b/tests/zero-downtime-scaling/manifests/gateway-10.yaml @@ -0,0 +1,56 @@ +apiVersion: gateway.networking.k8s.io/v1beta1 +kind: Gateway +metadata: + name: gateway +spec: + gatewayClassName: nginx + listeners: + - name: http + port: 80 + protocol: HTTP + hostname: "cafe.example.com" + - name: http-2 + port: 80 + protocol: HTTP + hostname: "2.example.com" + - name: http-3 + port: 80 + protocol: HTTP + hostname: "3.example.com" + - name: http-4 + port: 80 + protocol: HTTP + hostname: "4.example.com" + - name: http-5 + port: 80 + protocol: HTTP + hostname: "5.example.com" + - name: http-6 + port: 80 + protocol: HTTP + hostname: "6.example.com" + - name: http-7 + port: 80 + protocol: HTTP + hostname: "7.example.com" + - name: http-8 + port: 80 + protocol: HTTP + hostname: "8.example.com" + - name: http-9 + port: 80 + protocol: HTTP + hostname: "9.example.com" + - name: http-10 + port: 80 + protocol: HTTP + hostname: "10.example.com" + - name: https + port: 443 + protocol: HTTPS + hostname: "*.example.com" + tls: + mode: Terminate + certificateRefs: + - kind: Secret + name: cafe-secret diff --git a/tests/zero-downtime-scaling/manifests/gateway-11.yaml b/tests/zero-downtime-scaling/manifests/gateway-11.yaml new file mode 100644 index 000000000..543357e76 --- /dev/null +++ b/tests/zero-downtime-scaling/manifests/gateway-11.yaml @@ -0,0 +1,60 @@ +apiVersion: gateway.networking.k8s.io/v1beta1 +kind: Gateway +metadata: + name: gateway +spec: + gatewayClassName: nginx + listeners: + - name: http + port: 80 + protocol: HTTP + hostname: "cafe.example.com" + - name: http-2 + port: 80 + protocol: HTTP + hostname: "2.example.com" + - name: http-3 + port: 80 + protocol: HTTP + hostname: "3.example.com" + - name: http-4 + port: 80 + protocol: HTTP + hostname: "4.example.com" + - name: http-5 + port: 80 + protocol: HTTP + hostname: "5.example.com" + - name: http-6 + port: 80 + protocol: HTTP + hostname: "6.example.com" + - name: http-7 + port: 80 + protocol: HTTP + hostname: "7.example.com" + - name: http-8 + port: 80 + protocol: HTTP + hostname: "8.example.com" + - name: http-9 + port: 80 + protocol: HTTP + hostname: "9.example.com" + - name: http-10 + port: 80 + protocol: HTTP + hostname: "10.example.com" + - name: http-11 + port: 80 + protocol: HTTP + hostname: "12.example.com" + - name: https + port: 443 + protocol: HTTPS + hostname: "*.example.com" + tls: + mode: Terminate + certificateRefs: + - kind: Secret + name: cafe-secret diff --git a/tests/zero-downtime-scaling/manifests/gateway-12.yaml b/tests/zero-downtime-scaling/manifests/gateway-12.yaml new file mode 100644 index 000000000..e60e6d413 --- /dev/null +++ b/tests/zero-downtime-scaling/manifests/gateway-12.yaml @@ -0,0 +1,64 @@ +apiVersion: gateway.networking.k8s.io/v1beta1 +kind: Gateway +metadata: + name: gateway +spec: + gatewayClassName: nginx + listeners: + - name: http + port: 80 + protocol: HTTP + hostname: "cafe.example.com" + - name: http-2 + port: 80 + protocol: HTTP + hostname: "2.example.com" + - name: http-3 + port: 80 + protocol: HTTP + hostname: "3.example.com" + - name: http-4 + port: 80 + protocol: HTTP + hostname: "4.example.com" + - name: http-5 + port: 80 + protocol: HTTP + hostname: "5.example.com" + - name: http-6 + port: 80 + protocol: HTTP + hostname: "6.example.com" + - name: http-7 + port: 80 + protocol: HTTP + hostname: "7.example.com" + - name: http-8 + port: 80 + protocol: HTTP + hostname: "8.example.com" + - name: http-9 + port: 80 + protocol: HTTP + hostname: "9.example.com" + - name: http-10 + port: 80 + protocol: HTTP + hostname: "10.example.com" + - name: http-11 + port: 80 + protocol: HTTP + hostname: "11.example.com" + - name: http-12 + port: 80 + protocol: HTTP + hostname: "12.example.com" + - name: https + port: 443 + protocol: HTTPS + hostname: "*.example.com" + tls: + mode: Terminate + certificateRefs: + - kind: Secret + name: cafe-secret diff --git a/tests/zero-downtime-scaling/manifests/gateway-13.yaml b/tests/zero-downtime-scaling/manifests/gateway-13.yaml new file mode 100644 index 000000000..074e6ddbd --- /dev/null +++ b/tests/zero-downtime-scaling/manifests/gateway-13.yaml @@ -0,0 +1,68 @@ +apiVersion: gateway.networking.k8s.io/v1beta1 +kind: Gateway +metadata: + name: gateway +spec: + gatewayClassName: nginx + listeners: + - name: http + port: 80 + protocol: HTTP + hostname: "cafe.example.com" + - name: http-2 + port: 80 + protocol: HTTP + hostname: "2.example.com" + - name: http-3 + port: 80 + protocol: HTTP + hostname: "3.example.com" + - name: http-4 + port: 80 + protocol: HTTP + hostname: "4.example.com" + - name: http-5 + port: 80 + protocol: HTTP + hostname: "5.example.com" + - name: http-6 + port: 80 + protocol: HTTP + hostname: "6.example.com" + - name: http-7 + port: 80 + protocol: HTTP + hostname: "7.example.com" + - name: http-8 + port: 80 + protocol: HTTP + hostname: "8.example.com" + - name: http-9 + port: 80 + protocol: HTTP + hostname: "9.example.com" + - name: http-10 + port: 80 + protocol: HTTP + hostname: "10.example.com" + - name: http-11 + port: 80 + protocol: HTTP + hostname: "11.example.com" + - name: http-12 + port: 80 + protocol: HTTP + hostname: "12.example.com" + - name: http-13 + port: 80 + protocol: HTTP + hostname: "13.example.com" + - name: https + port: 443 + protocol: HTTPS + hostname: "*.example.com" + tls: + mode: Terminate + certificateRefs: + - kind: Secret + name: cafe-secret diff --git a/tests/zero-downtime-scaling/manifests/gateway-14.yaml b/tests/zero-downtime-scaling/manifests/gateway-14.yaml new file mode 100644 index 000000000..64dd43603 --- /dev/null +++ b/tests/zero-downtime-scaling/manifests/gateway-14.yaml @@ -0,0 +1,72 @@ +apiVersion: gateway.networking.k8s.io/v1beta1 +kind: Gateway +metadata: + name: gateway +spec: + gatewayClassName: nginx + listeners: + - name: http + port: 80 + protocol: HTTP + hostname: "cafe.example.com" + - name: http-2 + port: 80 + protocol: HTTP + hostname: "2.example.com" + - name: http-3 + port: 80 + protocol: HTTP + hostname: "3.example.com" + - name: http-4 + port: 80 + protocol: HTTP + hostname: "4.example.com" + - name: http-5 + port: 80 + protocol: HTTP + hostname: "5.example.com" + - name: http-6 + port: 80 + protocol: HTTP + hostname: "6.example.com" + - name: http-7 + port: 80 + protocol: HTTP + hostname: "7.example.com" + - name: http-8 + port: 80 + protocol: HTTP + hostname: "8.example.com" + - name: http-9 + port: 80 + protocol: HTTP + hostname: "9.example.com" + - name: http-10 + port: 80 + protocol: HTTP + hostname: "10.example.com" + - name: http-11 + port: 80 + protocol: HTTP + hostname: "11.example.com" + - name: http-12 + port: 80 + protocol: HTTP + hostname: "12.example.com" + - name: http-13 + port: 80 + protocol: HTTP + hostname: "13.example.com" + - name: http-14 + port: 80 + protocol: HTTP + hostname: "14.example.com" + - name: https + port: 443 + protocol: HTTPS + hostname: "*.example.com" + tls: + mode: Terminate + certificateRefs: + - kind: Secret + name: cafe-secret diff --git a/tests/zero-downtime-scaling/manifests/gateway-15.yaml b/tests/zero-downtime-scaling/manifests/gateway-15.yaml new file mode 100644 index 000000000..840bb8ce0 --- /dev/null +++ b/tests/zero-downtime-scaling/manifests/gateway-15.yaml @@ -0,0 +1,76 @@ +apiVersion: gateway.networking.k8s.io/v1beta1 +kind: Gateway +metadata: + name: gateway +spec: + gatewayClassName: nginx + listeners: + - name: http + port: 80 + protocol: HTTP + hostname: "cafe.example.com" + - name: http-2 + port: 80 + protocol: HTTP + hostname: "2.example.com" + - name: http-3 + port: 80 + protocol: HTTP + hostname: "3.example.com" + - name: http-4 + port: 80 + protocol: HTTP + hostname: "4.example.com" + - name: http-5 + port: 80 + protocol: HTTP + hostname: "5.example.com" + - name: http-6 + port: 80 + protocol: HTTP + hostname: "6.example.com" + - name: http-7 + port: 80 + protocol: HTTP + hostname: "7.example.com" + - name: http-8 + port: 80 + protocol: HTTP + hostname: "8.example.com" + - name: http-9 + port: 80 + protocol: HTTP + hostname: "9.example.com" + - name: http-10 + port: 80 + protocol: HTTP + hostname: "10.example.com" + - name: http-11 + port: 80 + protocol: HTTP + hostname: "11.example.com" + - name: http-12 + port: 80 + protocol: HTTP + hostname: "12.example.com" + - name: http-13 + port: 80 + protocol: HTTP + hostname: "13.example.com" + - name: http-14 + port: 80 + protocol: HTTP + hostname: "14.example.com" + - name: http-15 + port: 80 + protocol: HTTP + hostname: "15.example.com" + - name: https + port: 443 + protocol: HTTPS + hostname: "*.example.com" + tls: + mode: Terminate + certificateRefs: + - kind: Secret + name: cafe-secret diff --git a/tests/zero-downtime-scaling/manifests/gateway-16.yaml b/tests/zero-downtime-scaling/manifests/gateway-16.yaml new file mode 100644 index 000000000..42b36d14a --- /dev/null +++ b/tests/zero-downtime-scaling/manifests/gateway-16.yaml @@ -0,0 +1,80 @@ +apiVersion: gateway.networking.k8s.io/v1beta1 +kind: Gateway +metadata: + name: gateway +spec: + gatewayClassName: nginx + listeners: + - name: http + port: 80 + protocol: HTTP + hostname: "cafe.example.com" + - name: http-2 + port: 80 + protocol: HTTP + hostname: "2.example.com" + - name: http-3 + port: 80 + protocol: HTTP + hostname: "3.example.com" + - name: http-4 + port: 80 + protocol: HTTP + hostname: "4.example.com" + - name: http-5 + port: 80 + protocol: HTTP + hostname: "5.example.com" + - name: http-6 + port: 80 + protocol: HTTP + hostname: "6.example.com" + - name: http-7 + port: 80 + protocol: HTTP + hostname: "7.example.com" + - name: http-8 + port: 80 + protocol: HTTP + hostname: "8.example.com" + - name: http-9 + port: 80 + protocol: HTTP + hostname: "9.example.com" + - name: http-10 + port: 80 + protocol: HTTP + hostname: "10.example.com" + - name: http-11 + port: 80 + protocol: HTTP + hostname: "11.example.com" + - name: http-12 + port: 80 + protocol: HTTP + hostname: "12.example.com" + - name: http-13 + port: 80 + protocol: HTTP + hostname: "13.example.com" + - name: http-14 + port: 80 + protocol: HTTP + hostname: "14.example.com" + - name: http-15 + port: 80 + protocol: HTTP + hostname: "15.example.com" + - name: http-16 + port: 80 + protocol: HTTP + hostname: "16.example.com" + - name: https + port: 443 + protocol: HTTPS + hostname: "*.example.com" + tls: + mode: Terminate + certificateRefs: + - kind: Secret + name: cafe-secret diff --git a/tests/zero-downtime-scaling/manifests/gateway-17.yaml b/tests/zero-downtime-scaling/manifests/gateway-17.yaml new file mode 100644 index 000000000..a191a08f0 --- /dev/null +++ b/tests/zero-downtime-scaling/manifests/gateway-17.yaml @@ -0,0 +1,84 @@ +apiVersion: gateway.networking.k8s.io/v1beta1 +kind: Gateway +metadata: + name: gateway +spec: + gatewayClassName: nginx + listeners: + - name: http + port: 80 + protocol: HTTP + hostname: "cafe.example.com" + - name: http-2 + port: 80 + protocol: HTTP + hostname: "2.example.com" + - name: http-3 + port: 80 + protocol: HTTP + hostname: "3.example.com" + - name: http-4 + port: 80 + protocol: HTTP + hostname: "4.example.com" + - name: http-5 + port: 80 + protocol: HTTP + hostname: "5.example.com" + - name: http-6 + port: 80 + protocol: HTTP + hostname: "6.example.com" + - name: http-7 + port: 80 + protocol: HTTP + hostname: "7.example.com" + - name: http-8 + port: 80 + protocol: HTTP + hostname: "8.example.com" + - name: http-9 + port: 80 + protocol: HTTP + hostname: "9.example.com" + - name: http-10 + port: 80 + protocol: HTTP + hostname: "10.example.com" + - name: http-11 + port: 80 + protocol: HTTP + hostname: "11.example.com" + - name: http-12 + port: 80 + protocol: HTTP + hostname: "12.example.com" + - name: http-13 + port: 80 + protocol: HTTP + hostname: "13.example.com" + - name: http-14 + port: 80 + protocol: HTTP + hostname: "14.example.com" + - name: http-15 + port: 80 + protocol: HTTP + hostname: "15.example.com" + - name: http-16 + port: 80 + protocol: HTTP + hostname: "16.example.com" + - name: http-17 + port: 80 + protocol: HTTP + hostname: "17.example.com" + - name: https + port: 443 + protocol: HTTPS + hostname: "*.example.com" + tls: + mode: Terminate + certificateRefs: + - kind: Secret + name: cafe-secret diff --git a/tests/zero-downtime-scaling/manifests/gateway-18.yaml b/tests/zero-downtime-scaling/manifests/gateway-18.yaml new file mode 100644 index 000000000..f6ff37b30 --- /dev/null +++ b/tests/zero-downtime-scaling/manifests/gateway-18.yaml @@ -0,0 +1,88 @@ +apiVersion: gateway.networking.k8s.io/v1beta1 +kind: Gateway +metadata: + name: gateway +spec: + gatewayClassName: nginx + listeners: + - name: http + port: 80 + protocol: HTTP + hostname: "cafe.example.com" + - name: http-2 + port: 80 + protocol: HTTP + hostname: "2.example.com" + - name: http-3 + port: 80 + protocol: HTTP + hostname: "3.example.com" + - name: http-4 + port: 80 + protocol: HTTP + hostname: "4.example.com" + - name: http-5 + port: 80 + protocol: HTTP + hostname: "5.example.com" + - name: http-6 + port: 80 + protocol: HTTP + hostname: "6.example.com" + - name: http-7 + port: 80 + protocol: HTTP + hostname: "7.example.com" + - name: http-8 + port: 80 + protocol: HTTP + hostname: "8.example.com" + - name: http-9 + port: 80 + protocol: HTTP + hostname: "9.example.com" + - name: http-10 + port: 80 + protocol: HTTP + hostname: "10.example.com" + - name: http-11 + port: 80 + protocol: HTTP + hostname: "11.example.com" + - name: http-12 + port: 80 + protocol: HTTP + hostname: "12.example.com" + - name: http-13 + port: 80 + protocol: HTTP + hostname: "13.example.com" + - name: http-14 + port: 80 + protocol: HTTP + hostname: "14.example.com" + - name: http-15 + port: 80 + protocol: HTTP + hostname: "15.example.com" + - name: http-16 + port: 80 + protocol: HTTP + hostname: "16.example.com" + - name: http-17 + port: 80 + protocol: HTTP + hostname: "17.example.com" + - name: http-18 + port: 80 + protocol: HTTP + hostname: "18.example.com" + - name: https + port: 443 + protocol: HTTPS + hostname: "*.example.com" + tls: + mode: Terminate + certificateRefs: + - kind: Secret + name: cafe-secret diff --git a/tests/zero-downtime-scaling/manifests/gateway-19.yaml b/tests/zero-downtime-scaling/manifests/gateway-19.yaml new file mode 100644 index 000000000..3e9ae7f0e --- /dev/null +++ b/tests/zero-downtime-scaling/manifests/gateway-19.yaml @@ -0,0 +1,92 @@ +apiVersion: gateway.networking.k8s.io/v1beta1 +kind: Gateway +metadata: + name: gateway +spec: + gatewayClassName: nginx + listeners: + - name: http + port: 80 + protocol: HTTP + hostname: "cafe.example.com" + - name: http-2 + port: 80 + protocol: HTTP + hostname: "2.example.com" + - name: http-3 + port: 80 + protocol: HTTP + hostname: "3.example.com" + - name: http-4 + port: 80 + protocol: HTTP + hostname: "4.example.com" + - name: http-5 + port: 80 + protocol: HTTP + hostname: "5.example.com" + - name: http-6 + port: 80 + protocol: HTTP + hostname: "6.example.com" + - name: http-7 + port: 80 + protocol: HTTP + hostname: "7.example.com" + - name: http-8 + port: 80 + protocol: HTTP + hostname: "8.example.com" + - name: http-9 + port: 80 + protocol: HTTP + hostname: "9.example.com" + - name: http-10 + port: 80 + protocol: HTTP + hostname: "10.example.com" + - name: http-11 + port: 80 + protocol: HTTP + hostname: "11.example.com" + - name: http-12 + port: 80 + protocol: HTTP + hostname: "12.example.com" + - name: http-13 + port: 80 + protocol: HTTP + hostname: "13.example.com" + - name: http-14 + port: 80 + protocol: HTTP + hostname: "14.example.com" + - name: http-15 + port: 80 + protocol: HTTP + hostname: "15.example.com" + - name: http-16 + port: 80 + protocol: HTTP + hostname: "16.example.com" + - name: http-17 + port: 80 + protocol: HTTP + hostname: "17.example.com" + - name: http-18 + port: 80 + protocol: HTTP + hostname: "18.example.com" + - name: http-19 + port: 80 + protocol: HTTP + hostname: "19.example.com" + - name: https + port: 443 + protocol: HTTPS + hostname: "*.example.com" + tls: + mode: Terminate + certificateRefs: + - kind: Secret + name: cafe-secret diff --git a/tests/zero-downtime-scaling/manifests/gateway-2.yaml b/tests/zero-downtime-scaling/manifests/gateway-2.yaml new file mode 100644 index 000000000..02406e098 --- /dev/null +++ b/tests/zero-downtime-scaling/manifests/gateway-2.yaml @@ -0,0 +1,24 @@ +apiVersion: gateway.networking.k8s.io/v1beta1 +kind: Gateway +metadata: + name: gateway +spec: + gatewayClassName: nginx + listeners: + - name: http + port: 80 + protocol: HTTP + hostname: "cafe.example.com" + - name: http-2 + port: 80 + protocol: HTTP + hostname: "2.example.com" + - name: https + port: 443 + protocol: HTTPS + hostname: "*.example.com" + tls: + mode: Terminate + certificateRefs: + - kind: Secret + name: cafe-secret diff --git a/tests/zero-downtime-scaling/manifests/gateway-20.yaml b/tests/zero-downtime-scaling/manifests/gateway-20.yaml new file mode 100644 index 000000000..ca5441073 --- /dev/null +++ b/tests/zero-downtime-scaling/manifests/gateway-20.yaml @@ -0,0 +1,96 @@ +apiVersion: gateway.networking.k8s.io/v1beta1 +kind: Gateway +metadata: + name: gateway +spec: + gatewayClassName: nginx + listeners: + - name: http + port: 80 + protocol: HTTP + hostname: "cafe.example.com" + - name: http-2 + port: 80 + protocol: HTTP + hostname: "2.example.com" + - name: http-3 + port: 80 + protocol: HTTP + hostname: "3.example.com" + - name: http-4 + port: 80 + protocol: HTTP + hostname: "4.example.com" + - name: http-5 + port: 80 + protocol: HTTP + hostname: "5.example.com" + - name: http-6 + port: 80 + protocol: HTTP + hostname: "6.example.com" + - name: http-7 + port: 80 + protocol: HTTP + hostname: "7.example.com" + - name: http-8 + port: 80 + protocol: HTTP + hostname: "8.example.com" + - name: http-9 + port: 80 + protocol: HTTP + hostname: "9.example.com" + - name: http-10 + port: 80 + protocol: HTTP + hostname: "10.example.com" + - name: http-11 + port: 80 + protocol: HTTP + hostname: "11.example.com" + - name: http-12 + port: 80 + protocol: HTTP + hostname: "12.example.com" + - name: http-13 + port: 80 + protocol: HTTP + hostname: "13.example.com" + - name: http-14 + port: 80 + protocol: HTTP + hostname: "14.example.com" + - name: http-15 + port: 80 + protocol: HTTP + hostname: "15.example.com" + - name: http-16 + port: 80 + protocol: HTTP + hostname: "16.example.com" + - name: http-17 + port: 80 + protocol: HTTP + hostname: "17.example.com" + - name: http-18 + port: 80 + protocol: HTTP + hostname: "18.example.com" + - name: http-19 + port: 80 + protocol: HTTP + hostname: "19.example.com" + - name: http-20 + port: 80 + protocol: HTTP + hostname: "20.example.com" + - name: https + port: 443 + protocol: HTTPS + hostname: "*.example.com" + tls: + mode: Terminate + certificateRefs: + - kind: Secret + name: cafe-secret diff --git a/tests/zero-downtime-scaling/manifests/gateway-21.yaml b/tests/zero-downtime-scaling/manifests/gateway-21.yaml new file mode 100644 index 000000000..df0abce37 --- /dev/null +++ b/tests/zero-downtime-scaling/manifests/gateway-21.yaml @@ -0,0 +1,100 @@ +apiVersion: gateway.networking.k8s.io/v1beta1 +kind: Gateway +metadata: + name: gateway +spec: + gatewayClassName: nginx + listeners: + - name: http + port: 80 + protocol: HTTP + hostname: "cafe.example.com" + - name: http-2 + port: 80 + protocol: HTTP + hostname: "2.example.com" + - name: http-3 + port: 80 + protocol: HTTP + hostname: "3.example.com" + - name: http-4 + port: 80 + protocol: HTTP + hostname: "4.example.com" + - name: http-5 + port: 80 + protocol: HTTP + hostname: "5.example.com" + - name: http-6 + port: 80 + protocol: HTTP + hostname: "6.example.com" + - name: http-7 + port: 80 + protocol: HTTP + hostname: "7.example.com" + - name: http-8 + port: 80 + protocol: HTTP + hostname: "8.example.com" + - name: http-9 + port: 80 + protocol: HTTP + hostname: "9.example.com" + - name: http-10 + port: 80 + protocol: HTTP + hostname: "10.example.com" + - name: http-11 + port: 80 + protocol: HTTP + hostname: "11.example.com" + - name: http-12 + port: 80 + protocol: HTTP + hostname: "12.example.com" + - name: http-13 + port: 80 + protocol: HTTP + hostname: "13.example.com" + - name: http-14 + port: 80 + protocol: HTTP + hostname: "14.example.com" + - name: http-15 + port: 80 + protocol: HTTP + hostname: "15.example.com" + - name: http-16 + port: 80 + protocol: HTTP + hostname: "16.example.com" + - name: http-17 + port: 80 + protocol: HTTP + hostname: "17.example.com" + - name: http-18 + port: 80 + protocol: HTTP + hostname: "18.example.com" + - name: http-19 + port: 80 + protocol: HTTP + hostname: "19.example.com" + - name: http-20 + port: 80 + protocol: HTTP + hostname: "20.example.com" + - name: http-21 + port: 80 + protocol: HTTP + hostname: "21.example.com" + - name: https + port: 443 + protocol: HTTPS + hostname: "*.example.com" + tls: + mode: Terminate + certificateRefs: + - kind: Secret + name: cafe-secret diff --git a/tests/zero-downtime-scaling/manifests/gateway-22.yaml b/tests/zero-downtime-scaling/manifests/gateway-22.yaml new file mode 100644 index 000000000..58ba2c68b --- /dev/null +++ b/tests/zero-downtime-scaling/manifests/gateway-22.yaml @@ -0,0 +1,104 @@ +apiVersion: gateway.networking.k8s.io/v1beta1 +kind: Gateway +metadata: + name: gateway +spec: + gatewayClassName: nginx + listeners: + - name: http + port: 80 + protocol: HTTP + hostname: "cafe.example.com" + - name: http-2 + port: 80 + protocol: HTTP + hostname: "2.example.com" + - name: http-3 + port: 80 + protocol: HTTP + hostname: "3.example.com" + - name: http-4 + port: 80 + protocol: HTTP + hostname: "4.example.com" + - name: http-5 + port: 80 + protocol: HTTP + hostname: "5.example.com" + - name: http-6 + port: 80 + protocol: HTTP + hostname: "6.example.com" + - name: http-7 + port: 80 + protocol: HTTP + hostname: "7.example.com" + - name: http-8 + port: 80 + protocol: HTTP + hostname: "8.example.com" + - name: http-9 + port: 80 + protocol: HTTP + hostname: "9.example.com" + - name: http-10 + port: 80 + protocol: HTTP + hostname: "10.example.com" + - name: http-11 + port: 80 + protocol: HTTP + hostname: "11.example.com" + - name: http-12 + port: 80 + protocol: HTTP + hostname: "12.example.com" + - name: http-13 + port: 80 + protocol: HTTP + hostname: "13.example.com" + - name: http-14 + port: 80 + protocol: HTTP + hostname: "14.example.com" + - name: http-15 + port: 80 + protocol: HTTP + hostname: "15.example.com" + - name: http-16 + port: 80 + protocol: HTTP + hostname: "16.example.com" + - name: http-17 + port: 80 + protocol: HTTP + hostname: "17.example.com" + - name: http-18 + port: 80 + protocol: HTTP + hostname: "18.example.com" + - name: http-19 + port: 80 + protocol: HTTP + hostname: "19.example.com" + - name: http-20 + port: 80 + protocol: HTTP + hostname: "20.example.com" + - name: http-21 + port: 80 + protocol: HTTP + hostname: "21.example.com" + - name: http-22 + port: 80 + protocol: HTTP + hostname: "22.example.com" + - name: https + port: 443 + protocol: HTTPS + hostname: "*.example.com" + tls: + mode: Terminate + certificateRefs: + - kind: Secret + name: cafe-secret diff --git a/tests/zero-downtime-scaling/manifests/gateway-23.yaml b/tests/zero-downtime-scaling/manifests/gateway-23.yaml new file mode 100644 index 000000000..936fa7312 --- /dev/null +++ b/tests/zero-downtime-scaling/manifests/gateway-23.yaml @@ -0,0 +1,108 @@ +apiVersion: gateway.networking.k8s.io/v1beta1 +kind: Gateway +metadata: + name: gateway +spec: + gatewayClassName: nginx + listeners: + - name: http + port: 80 + protocol: HTTP + hostname: "cafe.example.com" + - name: http-2 + port: 80 + protocol: HTTP + hostname: "2.example.com" + - name: http-3 + port: 80 + protocol: HTTP + hostname: "3.example.com" + - name: http-4 + port: 80 + protocol: HTTP + hostname: "4.example.com" + - name: http-5 + port: 80 + protocol: HTTP + hostname: "5.example.com" + - name: http-6 + port: 80 + protocol: HTTP + hostname: "6.example.com" + - name: http-7 + port: 80 + protocol: HTTP + hostname: "7.example.com" + - name: http-8 + port: 80 + protocol: HTTP + hostname: "8.example.com" + - name: http-9 + port: 80 + protocol: HTTP + hostname: "9.example.com" + - name: http-10 + port: 80 + protocol: HTTP + hostname: "10.example.com" + - name: http-11 + port: 80 + protocol: HTTP + hostname: "11.example.com" + - name: http-12 + port: 80 + protocol: HTTP + hostname: "12.example.com" + - name: http-13 + port: 80 + protocol: HTTP + hostname: "13.example.com" + - name: http-14 + port: 80 + protocol: HTTP + hostname: "14.example.com" + - name: http-15 + port: 80 + protocol: HTTP + hostname: "15.example.com" + - name: http-16 + port: 80 + protocol: HTTP + hostname: "16.example.com" + - name: http-17 + port: 80 + protocol: HTTP + hostname: "17.example.com" + - name: http-18 + port: 80 + protocol: HTTP + hostname: "18.example.com" + - name: http-19 + port: 80 + protocol: HTTP + hostname: "19.example.com" + - name: http-20 + port: 80 + protocol: HTTP + hostname: "20.example.com" + - name: http-21 + port: 80 + protocol: HTTP + hostname: "21.example.com" + - name: http-22 + port: 80 + protocol: HTTP + hostname: "22.example.com" + - name: http-23 + port: 80 + protocol: HTTP + hostname: "23.example.com" + - name: https + port: 443 + protocol: HTTPS + hostname: "*.example.com" + tls: + mode: Terminate + certificateRefs: + - kind: Secret + name: cafe-secret diff --git a/tests/zero-downtime-scaling/manifests/gateway-24.yaml b/tests/zero-downtime-scaling/manifests/gateway-24.yaml new file mode 100644 index 000000000..a972c146f --- /dev/null +++ b/tests/zero-downtime-scaling/manifests/gateway-24.yaml @@ -0,0 +1,112 @@ +apiVersion: gateway.networking.k8s.io/v1beta1 +kind: Gateway +metadata: + name: gateway +spec: + gatewayClassName: nginx + listeners: + - name: http + port: 80 + protocol: HTTP + hostname: "cafe.example.com" + - name: http-2 + port: 80 + protocol: HTTP + hostname: "2.example.com" + - name: http-3 + port: 80 + protocol: HTTP + hostname: "3.example.com" + - name: http-4 + port: 80 + protocol: HTTP + hostname: "4.example.com" + - name: http-5 + port: 80 + protocol: HTTP + hostname: "5.example.com" + - name: http-6 + port: 80 + protocol: HTTP + hostname: "6.example.com" + - name: http-7 + port: 80 + protocol: HTTP + hostname: "7.example.com" + - name: http-8 + port: 80 + protocol: HTTP + hostname: "8.example.com" + - name: http-9 + port: 80 + protocol: HTTP + hostname: "9.example.com" + - name: http-10 + port: 80 + protocol: HTTP + hostname: "10.example.com" + - name: http-11 + port: 80 + protocol: HTTP + hostname: "11.example.com" + - name: http-12 + port: 80 + protocol: HTTP + hostname: "12.example.com" + - name: http-13 + port: 80 + protocol: HTTP + hostname: "13.example.com" + - name: http-14 + port: 80 + protocol: HTTP + hostname: "14.example.com" + - name: http-15 + port: 80 + protocol: HTTP + hostname: "15.example.com" + - name: http-16 + port: 80 + protocol: HTTP + hostname: "16.example.com" + - name: http-17 + port: 80 + protocol: HTTP + hostname: "17.example.com" + - name: http-18 + port: 80 + protocol: HTTP + hostname: "18.example.com" + - name: http-19 + port: 80 + protocol: HTTP + hostname: "19.example.com" + - name: http-20 + port: 80 + protocol: HTTP + hostname: "20.example.com" + - name: http-21 + port: 80 + protocol: HTTP + hostname: "21.example.com" + - name: http-22 + port: 80 + protocol: HTTP + hostname: "22.example.com" + - name: http-23 + port: 80 + protocol: HTTP + hostname: "23.example.com" + - name: http-24 + port: 80 + protocol: HTTP + hostname: "24.example.com" + - name: https + port: 443 + protocol: HTTPS + hostname: "*.example.com" + tls: + mode: Terminate + certificateRefs: + - kind: Secret + name: cafe-secret diff --git a/tests/zero-downtime-scaling/manifests/gateway-25.yaml b/tests/zero-downtime-scaling/manifests/gateway-25.yaml new file mode 100644 index 000000000..d0c5d9ae7 --- /dev/null +++ b/tests/zero-downtime-scaling/manifests/gateway-25.yaml @@ -0,0 +1,116 @@ +apiVersion: gateway.networking.k8s.io/v1beta1 +kind: Gateway +metadata: + name: gateway +spec: + gatewayClassName: nginx + listeners: + - name: http + port: 80 + protocol: HTTP + hostname: "cafe.example.com" + - name: http-2 + port: 80 + protocol: HTTP + hostname: "2.example.com" + - name: http-3 + port: 80 + protocol: HTTP + hostname: "3.example.com" + - name: http-4 + port: 80 + protocol: HTTP + hostname: "4.example.com" + - name: http-5 + port: 80 + protocol: HTTP + hostname: "5.example.com" + - name: http-6 + port: 80 + protocol: HTTP + hostname: "6.example.com" + - name: http-7 + port: 80 + protocol: HTTP + hostname: "7.example.com" + - name: http-8 + port: 80 + protocol: HTTP + hostname: "8.example.com" + - name: http-9 + port: 80 + protocol: HTTP + hostname: "9.example.com" + - name: http-10 + port: 80 + protocol: HTTP + hostname: "10.example.com" + - name: http-11 + port: 80 + protocol: HTTP + hostname: "11.example.com" + - name: http-12 + port: 80 + protocol: HTTP + hostname: "12.example.com" + - name: http-13 + port: 80 + protocol: HTTP + hostname: "13.example.com" + - name: http-14 + port: 80 + protocol: HTTP + hostname: "14.example.com" + - name: http-15 + port: 80 + protocol: HTTP + hostname: "15.example.com" + - name: http-16 + port: 80 + protocol: HTTP + hostname: "16.example.com" + - name: http-17 + port: 80 + protocol: HTTP + hostname: "17.example.com" + - name: http-18 + port: 80 + protocol: HTTP + hostname: "18.example.com" + - name: http-19 + port: 80 + protocol: HTTP + hostname: "19.example.com" + - name: http-20 + port: 80 + protocol: HTTP + hostname: "20.example.com" + - name: http-21 + port: 80 + protocol: HTTP + hostname: "21.example.com" + - name: http-22 + port: 80 + protocol: HTTP + hostname: "22.example.com" + - name: http-23 + port: 80 + protocol: HTTP + hostname: "23.example.com" + - name: http-24 + port: 80 + protocol: HTTP + hostname: "24.example.com" + - name: http-25 + port: 80 + protocol: HTTP + hostname: "25.example.com" + - name: https + port: 443 + protocol: HTTPS + hostname: "*.example.com" + tls: + mode: Terminate + certificateRefs: + - kind: Secret + name: cafe-secret diff --git a/tests/zero-downtime-scaling/manifests/gateway-3.yaml b/tests/zero-downtime-scaling/manifests/gateway-3.yaml new file mode 100644 index 000000000..e332b45f5 --- /dev/null +++ b/tests/zero-downtime-scaling/manifests/gateway-3.yaml @@ -0,0 +1,28 @@ +apiVersion: gateway.networking.k8s.io/v1beta1 +kind: Gateway +metadata: + name: gateway +spec: + gatewayClassName: nginx + listeners: + - name: http + port: 80 + protocol: HTTP + hostname: "cafe.example.com" + - name: http-2 + port: 80 + protocol: HTTP + hostname: "2.example.com" + - name: http-3 + port: 80 + protocol: HTTP + hostname: "3.example.com" + - name: https + port: 443 + protocol: HTTPS + hostname: "*.example.com" + tls: + mode: Terminate + certificateRefs: + - kind: Secret + name: cafe-secret diff --git a/tests/zero-downtime-scaling/manifests/gateway-4.yaml b/tests/zero-downtime-scaling/manifests/gateway-4.yaml new file mode 100644 index 000000000..4158396f7 --- /dev/null +++ b/tests/zero-downtime-scaling/manifests/gateway-4.yaml @@ -0,0 +1,32 @@ +apiVersion: gateway.networking.k8s.io/v1beta1 +kind: Gateway +metadata: + name: gateway +spec: + gatewayClassName: nginx + listeners: + - name: http + port: 80 + protocol: HTTP + hostname: "cafe.example.com" + - name: http-2 + port: 80 + protocol: HTTP + hostname: "2.example.com" + - name: http-3 + port: 80 + protocol: HTTP + hostname: "3.example.com" + - name: http-4 + port: 80 + protocol: HTTP + hostname: "4.example.com" + - name: https + port: 443 + protocol: HTTPS + hostname: "*.example.com" + tls: + mode: Terminate + certificateRefs: + - kind: Secret + name: cafe-secret diff --git a/tests/zero-downtime-scaling/manifests/gateway-5.yaml b/tests/zero-downtime-scaling/manifests/gateway-5.yaml new file mode 100644 index 000000000..4b724c090 --- /dev/null +++ b/tests/zero-downtime-scaling/manifests/gateway-5.yaml @@ -0,0 +1,36 @@ +apiVersion: gateway.networking.k8s.io/v1beta1 +kind: Gateway +metadata: + name: gateway +spec: + gatewayClassName: nginx + listeners: + - name: http + port: 80 + protocol: HTTP + hostname: "cafe.example.com" + - name: http-2 + port: 80 + protocol: HTTP + hostname: "2.example.com" + - name: http-3 + port: 80 + protocol: HTTP + hostname: "3.example.com" + - name: http-4 + port: 80 + protocol: HTTP + hostname: "4.example.com" + - name: http-5 + port: 80 + protocol: HTTP + hostname: "5.example.com" + - name: https + port: 443 + protocol: HTTPS + hostname: "*.example.com" + tls: + mode: Terminate + certificateRefs: + - kind: Secret + name: cafe-secret diff --git a/tests/zero-downtime-scaling/manifests/gateway-6.yaml b/tests/zero-downtime-scaling/manifests/gateway-6.yaml new file mode 100644 index 000000000..61ae1f995 --- /dev/null +++ b/tests/zero-downtime-scaling/manifests/gateway-6.yaml @@ -0,0 +1,40 @@ +apiVersion: gateway.networking.k8s.io/v1beta1 +kind: Gateway +metadata: + name: gateway +spec: + gatewayClassName: nginx + listeners: + - name: http + port: 80 + protocol: HTTP + hostname: "cafe.example.com" + - name: http-2 + port: 80 + protocol: HTTP + hostname: "2.example.com" + - name: http-3 + port: 80 + protocol: HTTP + hostname: "3.example.com" + - name: http-4 + port: 80 + protocol: HTTP + hostname: "4.example.com" + - name: http-5 + port: 80 + protocol: HTTP + hostname: "5.example.com" + - name: http-6 + port: 80 + protocol: HTTP + hostname: "6.example.com" + - name: https + port: 443 + protocol: HTTPS + hostname: "*.example.com" + tls: + mode: Terminate + certificateRefs: + - kind: Secret + name: cafe-secret diff --git a/tests/zero-downtime-scaling/manifests/gateway-7.yaml b/tests/zero-downtime-scaling/manifests/gateway-7.yaml new file mode 100644 index 000000000..3522ffafa --- /dev/null +++ b/tests/zero-downtime-scaling/manifests/gateway-7.yaml @@ -0,0 +1,44 @@ +apiVersion: gateway.networking.k8s.io/v1beta1 +kind: Gateway +metadata: + name: gateway +spec: + gatewayClassName: nginx + listeners: + - name: http + port: 80 + protocol: HTTP + hostname: "cafe.example.com" + - name: http-2 + port: 80 + protocol: HTTP + hostname: "2.example.com" + - name: http-3 + port: 80 + protocol: HTTP + hostname: "3.example.com" + - name: http-4 + port: 80 + protocol: HTTP + hostname: "4.example.com" + - name: http-5 + port: 80 + protocol: HTTP + hostname: "5.example.com" + - name: http-6 + port: 80 + protocol: HTTP + hostname: "6.example.com" + - name: http-7 + port: 80 + protocol: HTTP + hostname: "7.example.com" + - name: https + port: 443 + protocol: HTTPS + hostname: "*.example.com" + tls: + mode: Terminate + certificateRefs: + - kind: Secret + name: cafe-secret diff --git a/tests/zero-downtime-scaling/manifests/gateway-8.yaml b/tests/zero-downtime-scaling/manifests/gateway-8.yaml new file mode 100644 index 000000000..592fff479 --- /dev/null +++ b/tests/zero-downtime-scaling/manifests/gateway-8.yaml @@ -0,0 +1,48 @@ +apiVersion: gateway.networking.k8s.io/v1beta1 +kind: Gateway +metadata: + name: gateway +spec: + gatewayClassName: nginx + listeners: + - name: http + port: 80 + protocol: HTTP + hostname: "cafe.example.com" + - name: http-2 + port: 80 + protocol: HTTP + hostname: "2.example.com" + - name: http-3 + port: 80 + protocol: HTTP + hostname: "3.example.com" + - name: http-4 + port: 80 + protocol: HTTP + hostname: "4.example.com" + - name: http-5 + port: 80 + protocol: HTTP + hostname: "5.example.com" + - name: http-6 + port: 80 + protocol: HTTP + hostname: "6.example.com" + - name: http-7 + port: 80 + protocol: HTTP + hostname: "7.example.com" + - name: http-8 + port: 80 + protocol: HTTP + hostname: "8.example.com" + - name: https + port: 443 + protocol: HTTPS + hostname: "*.example.com" + tls: + mode: Terminate + certificateRefs: + - kind: Secret + name: cafe-secret diff --git a/tests/zero-downtime-scaling/manifests/gateway-9.yaml b/tests/zero-downtime-scaling/manifests/gateway-9.yaml new file mode 100644 index 000000000..10946ad9c --- /dev/null +++ b/tests/zero-downtime-scaling/manifests/gateway-9.yaml @@ -0,0 +1,52 @@ +apiVersion: gateway.networking.k8s.io/v1beta1 +kind: Gateway +metadata: + name: gateway +spec: + gatewayClassName: nginx + listeners: + - name: http + port: 80 + protocol: HTTP + hostname: "cafe.example.com" + - name: http-2 + port: 80 + protocol: HTTP + hostname: "2.example.com" + - name: http-3 + port: 80 + protocol: HTTP + hostname: "3.example.com" + - name: http-4 + port: 80 + protocol: HTTP + hostname: "4.example.com" + - name: http-5 + port: 80 + protocol: HTTP + hostname: "5.example.com" + - name: http-6 + port: 80 + protocol: HTTP + hostname: "6.example.com" + - name: http-7 + port: 80 + protocol: HTTP + hostname: "7.example.com" + - name: http-8 + port: 80 + protocol: HTTP + hostname: "8.example.com" + - name: http-9 + port: 80 + protocol: HTTP + hostname: "9.example.com" + - name: https + port: 443 + protocol: HTTPS + hostname: "*.example.com" + tls: + mode: Terminate + certificateRefs: + - kind: Secret + name: cafe-secret diff --git a/tests/zero-downtime-scaling/results/1.0.0/1.0.0.md b/tests/zero-downtime-scaling/results/1.0.0/1.0.0.md new file mode 100644 index 000000000..52b9898cc --- /dev/null +++ b/tests/zero-downtime-scaling/results/1.0.0/1.0.0.md @@ -0,0 +1,584 @@ +# Results + +## Versions + +Kubernetes: + +```text +Server Version: version.Info{Major:"1", Minor:"27", GitVersion:"v1.27.6-gke.1506000", +GitCommit:"0df9c4d6ac69ad53e985ad9526ca2dad916d6f13", GitTreeState:"clean", BuildDate:"2023-10-04T09:38:18Z", +GoVersion:"go1.20.8 X:boringcrypto", Compiler:"gc", Platform:"linux/amd64" +``` + +NGF: + +```text +"version":"edge", +"commit":"73f8b3a1643c2e9b8ff129aeae1ae48447c7b2d2", +"date":"2023-10-23T17:08:41Z" +``` + +with NGINX: + +```text +nginx version: nginx/1.25.2 +built by gcc 12.2.1 20220924 (Alpine 12.2.1_git20220924-r10) +OS: Linux 5.15.109+ +``` + +## Summary + +- Clients experience some downtime when scaling NGF gradually up or down. + + This downtime mostly occurs when there are fewer NGF Pods running. I believe this is due to overloading the NGF Pods or + Kubernetes network by sending too many requests over a long duration of time. In general, when there are more NGF Pods + running, there are less failed requests. + +- NGF Pod readiness flagged (oscillated between ready/not ready) under high load. + + While scaling up/down, some Pods would switch from ready to not ready. The readiness probes were timing out: + + ```text + Readiness probe failed: Get "http://10.4.0.17:8081/readyz": context deadline exceeded (Client.Timeout exceeded while awaiting headers) + ``` + + This behavior only happened when there was a lot of traffic being sent to the Pods. + +- There were some NGINX error and warn logs pertaining to upstreams: + + ```text + 2023/10/24 17:31:43 [warn] 176#176: *358453 upstream server temporarily disabled while connecting to upstream, client: 10.X.X.X:, server: cafe.example.com, request: "GET /tea HTTP/1.1", upstream: "http://10.X.X.X:8080/tea", host: "cafe.example.com" + 2023/10/24 17:31:43 [error] 176#176: *358453 upstream timed out (110: Operation timed out) while connecting to upstream, client: 10.X.X.X, server: cafe.example.com, request: "GET /tea HTTP/1.1", upstream: "http://10.X.X.X:8080/tea", host: "cafe.example.com" + ``` + +- There were some 499s in the NGINX logs: + + ```text + 10.168.0.14 - - [24/Oct/2023:17:58:47 +0000] "GET /coffee HTTP/1.1" 499 0 "-" "-" + ``` + +- There were some socket read errors and socket timeouts + +- There were no errors in NGF or problems with leader election. The statuses were updated as expected. + +Related Issues: + +- https://github.com/nginxinc/nginx-gateway-fabric/issues/1185 +- https://github.com/nginxinc/nginx-gateway-fabric/issues/1147 + +## 25 Node Cluster with anti affinity + +### Scale Up Gradually + +HTTP wrk output: + +```text +Running 5m test @ http://cafe.example.com/coffee + 2 threads and 2 connections + Thread Stats Avg Stdev Max +/- Stdev + Latency 5.88ms 59.69ms 1.07s 99.05% + Req/Sec 1.53k 143.30 1.81k 74.47% + Latency Distribution + 50% 632.00us + 75% 704.00us + 90% 796.00us + 99% 15.02ms + 788635 requests in 5.00m, 281.73MB read + Socket errors: connect 0, read 17, write 0, timeout 1 +Requests/sec: 2627.93 +Transfer/sec: 0.94MB +``` + +HTTP Graph: + +![gradual-up-http.png](25-node/gradual-up-http.png) + +HTTP failure rate: .32% + +HTTPS wrk output: + +```text +Running 5m test @ https://cafe.example.com/tea + 2 threads and 2 connections + Thread Stats Avg Stdev Max +/- Stdev + Latency 4.25ms 49.55ms 1.06s 99.35% + Req/Sec 1.45k 130.50 1.76k 75.07% + Latency Distribution + 50% 660.00us + 75% 735.00us + 90% 831.00us + 99% 2.32ms + 731286 requests in 5.00m, 256.43MB read + Socket errors: connect 0, read 18, write 0, timeout 1 +Requests/sec: 2437.02 +Transfer/sec: 0.85MB +``` + +HTTPS graph: + +![gradual-up-https.png](25-node/gradual-up-https.png) + +HTTPS failure rate: .31% + +Observations: + +- After a minute or so, the oldest Pod switched from Ready -> Not Ready and took ~ 1 min to recover. The following event + was recorded on the Pod: + + ```text + Readiness probe failed: Get "http://10.4.0.17:8081/readyz": context deadline exceeded (Client.Timeout exceeded while awaiting headers) + ```` + +Logs: + +- NGF error logs: none +- NGINX error logs: + + Handful of these errors and warnings: + + ```text + 2023/10/24 17:31:43 [warn] 176#176: *358453 upstream server temporarily disabled while connecting to upstream, client: 10.X.X.X:, server: cafe.example.com, request: "GET /tea HTTP/1.1", upstream: "http://10.X.X.X:8080/tea", host: "cafe.example.com" + 2023/10/24 17:31:43 [error] 176#176: *358453 upstream timed out (110: Operation timed out) while connecting to upstream, client: 10.X.X.X, server: cafe.example.com, request: "GET /tea HTTP/1.1", upstream: "http://10.X.X.X:8080/tea", host: "cafe.example.com" + ``` + +- NGINX access logs: + - 1.5 million 200s + +### Scale Down Gradually + +HTTP wrk output: + +```text +Running 20m test @ http://cafe.example.com/coffee + 2 threads and 2 connections + Thread Stats Avg Stdev Max +/- Stdev + Latency 15.01ms 98.51ms 1.06s 97.53% + Req/Sec 1.54k 175.82 1.85k 86.64% + Latency Distribution + 50% 629.00us + 75% 701.00us + 90% 800.00us + 99% 662.41ms + 2548003 requests in 17.44m, 0.89GB read + Socket errors: connect 0, read 15, write 0, timeout 50 +Requests/sec: 2434.36 +Transfer/sec: 0.87MB +``` + +HTTP graph: + +![gradual-down-http.png](25-node/gradual-down-http.png) + +HTTP failure rate .26% + +HTTPS wrk output: + +```text +Running 20m test @ https://cafe.example.com/tea + 2 threads and 2 connections + Thread Stats Avg Stdev Max +/- Stdev + Latency 22.15ms 119.12ms 1.07s 96.38% + Req/Sec 1.46k 178.46 1.76k 90.82% + Latency Distribution + 50% 658.00us + 75% 736.00us + 90% 0.86ms + 99% 780.01ms + 2427687 requests in 17.44m, 851.30MB read + Socket errors: connect 0, read 15, write 0, timeout 53 +Requests/sec: 2319.78 +Transfer/sec: 832.98KB +``` + +HTTPs graph: + +![gradual-down-https.png](25-node/gradual-down-https.png) + +HTTPS failure rate .27% + +Logs: + +- NGF logs: none +- NGINX error logs: none + - NGINX access logs: + - ~ 5 million 200s + - non-200s: + + ```text + 10.168.0.14 - - [24/Oct/2023:17:58:47 +0000] "GET /coffee HTTP/1.1" 499 0 "-" "-" + 10.168.0.14 - - [24/Oct/2023:17:58:47 +0000] "GET /coffee HTTP/1.1" 499 0 "-" "-" + 10.168.15.242 - - [24/Oct/2023:17:58:47 +0000] "GET /tea HTTP/1.1" 499 0 "-" "-" + 10.168.15.242 - - [24/Oct/2023:17:58:47 +0000] "GET /tea HTTP/1.1" 499 0 "-" "-" + 10.168.0.14 - - [24/Oct/2023:17:58:48 +0000] "GET /coffee HTTP/1.1" 499 0 "-" "curl/7.74.0" + 10.168.15.242 - - [24/Oct/2023:17:58:49 +0000] "GET /tea HTTP/1.1" 499 0 "-" "curl/7.74.0" + ``` + +### Scale Up Abruptly + +HTTP wrk output: + +```text +Running 5m test @ http://cafe.example.com/coffee + 2 threads and 2 connections + Thread Stats Avg Stdev Max +/- Stdev + Latency 727.66us 289.00us 14.66ms 94.11% + Req/Sec 1.40k 147.21 1.71k 67.03% + Latency Distribution + 50% 683.00us + 75% 777.00us + 90% 0.90ms + 99% 1.52ms + 179587 requests in 1.08m, 64.16MB read +Requests/sec: 2779.81 +Transfer/sec: 0.99MB +``` + +HTTP graph: + +![abrupt-up-http.png](25-node/abrupt-up-http.png) + +HTTPS wrk output: + +```text +Running 5m test @ https://cafe.example.com/tea + 2 threads and 2 connections + Thread Stats Avg Stdev Max +/- Stdev + Latency 753.61us 356.01us 18.67ms 95.92% + Req/Sec 1.35k 152.59 1.70k 66.90% + Latency Distribution + 50% 701.00us + 75% 797.00us + 90% 0.93ms + 99% 1.68ms + 173727 requests in 1.08m, 60.92MB read + Socket errors: connect 0, read 1, write 0, timeout 0 +Requests/sec: 2693.18 +Transfer/sec: 0.94MB +``` + +HTTPS graph: + +![abrupt-up-https.png](25-node/abrupt-up-https.png) + +Logs: + +- NGF Logs: + A few Pods on startup: + + ```text + {"level":"info", "logger":"controller-runtime.healthz", "msg":"healthz check failed", "statuses":[…], "ts":"2023-10-24T18:07:38Z"} + {"checker":"readyz", "error":"nginx has not yet become ready to accept traffic", "level":"debug", "logger":"controller-runtime.healthz", "msg":"healthz check failed", "ts":"2023-10-24T18:07:38Z"} + ``` + +- NGINX error logs: none +- NGINX access logs: + - 345,361 200s + +### Scale Down Abruptly + +HTTP wrk output: + +```text +Running 5m test @ http://cafe.example.com/coffee + 2 threads and 2 connections + Thread Stats Avg Stdev Max +/- Stdev + Latency 716.53us 329.20us 17.52ms 95.41% + Req/Sec 1.43k 163.49 1.79k 72.45% + Latency Distribution + 50% 667.00us + 75% 756.00us + 90% 0.88ms + 99% 1.64ms + 147442 requests in 0.87m, 52.67MB read +Requests/sec: 2840.70 +Transfer/sec: 1.01MB +``` + +HTTP graph: + +![abrupt-down-http.png](25-node/abrupt-down-http.png) + +HTTPS wrk output: + +```text +Running 5m test @ http://cafe.example.com/coffee + 2 threads and 2 connections + Thread Stats Avg Stdev Max +/- Stdev + Latency 716.53us 329.20us 17.52ms 95.41% + Req/Sec 1.43k 163.49 1.79k 72.45% + Latency Distribution + 50% 667.00us + 75% 756.00us + 90% 0.88ms + 99% 1.64ms + 147442 requests in 0.87m, 52.67MB read +Requests/sec: 2840.70 +Transfer/sec: 1.01MB +``` + +HTTPS graph: + +![abrupt-down-https.png](25-node/abrupt-down-https.png) + +Logs: + +- NGF logs: none +- NGINX error logs: none +- NGINX access logs: + - 288,528 200s + +## 10 Node Cluster +### Scale Up Gradually + +HTTP wrk output: + +```text +Running 5m test @ http://cafe.example.com/coffee + 2 threads and 2 connections + Thread Stats Avg Stdev Max +/- Stdev + Latency 16.78ms 103.75ms 1.06s 97.23% + Req/Sec 1.48k 188.11 1.76k 84.22% + Latency Distribution + 50% 650.00us + 75% 735.00us + 90% 0.87ms + 99% 699.82ms + 570533 requests in 5.00m, 202.95MB read + Socket errors: connect 0, read 12, write 0, timeout 8 +Requests/sec: 1901.16 +Transfer/sec: 692.50KB +``` + +HTTP graph: + +![10-gradual-up-http.png](10-node/gradual-up-http.png) + +HTTP failure rate: .27% + +HTTPS wrk output: + +```text +Running 5m test @ https://cafe.example.com/tea + 2 threads and 2 connections + Thread Stats Avg Stdev Max +/- Stdev + Latency 11.78ms 86.21ms 1.06s 98.04% + Req/Sec 1.40k 166.66 1.67k 83.00% + Latency Distribution + 50% 686.00us + 75% 770.00us + 90% 0.90ms + 99% 550.57ms + 539275 requests in 5.00m, 188.23MB read + Socket errors: connect 0, read 13, write 0, timeout 8 +Requests/sec: 1797.52 +Transfer/sec: 642.46KB +``` + +HTTPS graph: + +![10-gradual-up-https.png](10-node/gradual-up-https.png) + +HTTPS failure rate .058% + +Logs: + +- NGF error logs: none +- NGINX error/warn logs: + + ```text + 2023/10/24 20:45:22 [warn] 73#73: *22192 upstream server temporarily disabled while connecting to upstream, client: 10.168.0.14, server: cafe.example.com, request: "GET /coffee HTTP/1.1", upstream: "http://10.4.7.23:8080/coffee", host: "cafe.example.com" + 2023/10/24 20:45:22 [error] 73#73: *22192 upstream timed out (110: Operation timed out) while connecting to upstream, client: 10.168.0.14, server: cafe.example.com, request: "GET /coffee HTTP/1.1", upstream: "http://10.4.7.23:8080/coffee", host: "cafe.example.com" + ``` + +- NGINX access logs: + - ~ 1.1 million 200s + +### Scale Down Gradually + +HTTP wrk output: + +```text +Running 20m test @ http://cafe.example.com/coffee + 2 threads and 2 connections + Thread Stats Avg Stdev Max +/- Stdev + Latency 37.38ms 154.32ms 1.07s 94.19% + Req/Sec 1.43k 220.22 1.76k 94.12% + Latency Distribution + 50% 677.00us + 75% 774.00us + 90% 1.01ms + 99% 884.78ms + 2214652 requests in 18.11m, 787.79MB read + Socket errors: connect 0, read 11, write 0, timeout 80 +Requests/sec: 2037.83 +Transfer/sec: 742.29KB +``` + +HTTP graph: + +![10-gradual-down-http.png](10-node/gradual-down-http.png) + +HTTP failure rate: .33% + +HTTPS wrk output: + +```text +Running 20m test @ https://cafe.example.com/tea + 2 threads and 2 connections + Thread Stats Avg Stdev Max +/- Stdev + Latency 32.18ms 143.46ms 1.07s 94.92% + Req/Sec 1.37k 204.70 1.69k 93.17% + Latency Distribution + 50% 704.00us + 75% 799.00us + 90% 1.00ms + 99% 860.65ms + 2044060 requests in 18.21m, 713.46MB read + Socket errors: connect 0, read 10, write 0, timeout 72 +Requests/sec: 1871.22 +Transfer/sec: 668.81KB +``` + +HTTPS graph: + +![10-gradual-down-https.png](10-node/gradual-down-https.png) + +HTTPS failure rate: .32% + +Logs: + +- NGF error logs: none +- NGINX error/warn logs: + + 1 warn/error about upstreams: + + ```text + 2023/10/24 21:24:39 [warn] 220#220: *423560 upstream server temporarily disabled while connecting to upstream, client: 10.168.15.242, server: cafe.example.com, request: "GET /tea HTTP/1.1", upstream: "http://10.4.8.19:8080/tea", host: "cafe.example.com" + 2023/10/24 21:24:39 [error] 220#220: *423560 upstream timed out (110: Operation timed out) while connecting to upstream, client: 10.168.15.242, server: cafe.example.com, request: "GET /tea HTTP/1.1", upstream: "http://10.4.8.19:8080/tea", host: "cafe.example.com" + ``` + +- NGINX access logs: + - ~ 4.2 million 200 access logs + - Six 499 `"10.168.15.242 - - [24/Oct/2023:21:25:46 +0000] "GET /tea HTTP/1.1" 499 0 "-" "-""` access logs + +### Scale Up Abruptly + +HTTP wrk output: + +```text +Running 2m test @ http://cafe.example.com/coffee + 2 threads and 2 connections + Thread Stats Avg Stdev Max +/- Stdev + Latency 763.68us 407.46us 14.86ms 94.97% + Req/Sec 1.35k 204.97 1.75k 65.94% + Latency Distribution + 50% 696.00us + 75% 809.00us + 90% 0.98ms + 99% 2.15ms + 166835 requests in 1.17m, 59.35MB read + Socket errors: connect 0, read 1, write 0, timeout 0 +Requests/sec: 2382.56 +Transfer/sec: 867.86KB +``` + +HTTP graph: + +![10-abrupt-up-http.png](10-node/abrupt-up-http.png) + +```text +Running 2m test @ https://cafe.example.com/tea + 2 threads and 2 connections + Thread Stats Avg Stdev Max +/- Stdev + Latency 809.93us 418.96us 14.59ms 94.57% + Req/Sec 1.27k 199.48 1.65k 65.71% + Latency Distribution + 50% 737.00us + 75% 0.86ms + 90% 1.04ms + 99% 2.29ms + 158085 requests in 1.19m, 55.18MB read +Requests/sec: 2222.64 +Transfer/sec: 794.41KB +``` + +![10-abrupt-up-https.png](10-node/abrupt-up-https.png) + +HTTPS failure rate: .2% + +Logs: + +- NGF error logs: none +- NGINX error/warn logs: none +- NGINX access logs: + - 325,991 200s + - Six 499 `"10.168.15.242 - - [24/Oct/2023:21:37:02 +0000] "GET /tea HTTP/1.1" 499 0 "-" "curl/7.74.0"` access logs + +### Scale Down Abruptly + +HTTP wrk output: + +```text +Running 2m test @ http://cafe.example.com/coffee + 2 threads and 2 connections + Thread Stats Avg Stdev Max +/- Stdev + Latency 751.88us 419.68us 19.80ms 95.77% + Req/Sec 1.36k 199.90 1.75k 72.37% + Latency Distribution + 50% 686.00us + 75% 795.00us + 90% 0.96ms + 99% 2.07ms + 146833 requests in 1.31m, 52.23MB read +Requests/sec: 1871.67 +Transfer/sec: 681.76KB +``` + +HTTP graph: + +![10-abrupt-down-http.png](10-node/abrupt-down-http.png) + +HTTP failure rate: 2.31% + +HTTPS wrk output: + +```text +Running 2m test @ https://cafe.example.com/tea + 2 threads and 2 connections + Thread Stats Avg Stdev Max +/- Stdev + Latency 796.95us 443.82us 19.88ms 95.80% + Req/Sec 1.28k 182.54 1.68k 73.64% + Latency Distribution + 50% 727.00us + 75% 841.00us + 90% 1.01ms + 99% 2.24ms + 136681 requests in 1.31m, 47.71MB read +Requests/sec: 1742.16 +Transfer/sec: 622.68KB +``` + +HTTPS graph: + +![https.png](10-node/abrupt-down-https.png) + +HTTPS failure rate: 2.81% + +Logs: + +- NGF error logs: none +- NGINX error/warn logs: none +- NGINX access logs: + - 284,376 200s + - Four 499s `10.168.15.242 - - [24/Oct/2023:21:42:04 +0000] "GET /tea HTTP/1.1" 499 0 "-" "-"` + +Observations: + +- The last Pod flapped but probably because of all the traffic + + ```text + Warning Unhealthy 14s (x18 over 32s) kubelet Readiness probe failed: Get "http://10.4.9.22:8081/readyz": context deadline exceeded (Client.Timeout exceeded while awaiting headers) + Warning Unhealthy 13s kubelet Readiness probe failed: Get "http://10.4.9.22:8081/readyz": dial tcp 10.4.9.22:8081: i/o timeout (Client.Timeout exceeded while awaiting headers) + ``` + +- It took a bit of time to become leader and update the status diff --git a/tests/zero-downtime-scaling/results/1.0.0/10-node/abrupt-down-http.csv b/tests/zero-downtime-scaling/results/1.0.0/10-node/abrupt-down-http.csv new file mode 100644 index 000000000..4a01b642f --- /dev/null +++ b/tests/zero-downtime-scaling/results/1.0.0/10-node/abrupt-down-http.csv @@ -0,0 +1,477 @@ +2023-10-24 21:40:46.904743834+00:00,1 +2023-10-24 21:40:47.021706250+00:00,1 +2023-10-24 21:40:47.137575819+00:00,1 +2023-10-24 21:40:47.253599248+00:00,1 +2023-10-24 21:40:47.369665549+00:00,1 +2023-10-24 21:40:47.485040386+00:00,1 +2023-10-24 21:40:47.601843387+00:00,1 +2023-10-24 21:40:47.718224410+00:00,1 +2023-10-24 21:40:47.834328982+00:00,1 +2023-10-24 21:40:47.950022099+00:00,1 +2023-10-24 21:40:48.065222127+00:00,1 +2023-10-24 21:40:48.181155702+00:00,1 +2023-10-24 21:40:48.297632833+00:00,1 +2023-10-24 21:40:48.414102912+00:00,1 +2023-10-24 21:40:48.530611014+00:00,1 +2023-10-24 21:40:48.647465370+00:00,1 +2023-10-24 21:40:48.762910583+00:00,1 +2023-10-24 21:40:48.878557545+00:00,1 +2023-10-24 21:40:48.994994034+00:00,1 +2023-10-24 21:40:49.110517758+00:00,1 +2023-10-24 21:40:49.227734125+00:00,1 +2023-10-24 21:40:49.343112089+00:00,1 +2023-10-24 21:40:49.458630271+00:00,1 +2023-10-24 21:40:49.574696291+00:00,1 +2023-10-24 21:40:49.689544469+00:00,1 +2023-10-24 21:40:49.805124627+00:00,1 +2023-10-24 21:40:49.920721121+00:00,1 +2023-10-24 21:40:50.035769575+00:00,1 +2023-10-24 21:40:50.151189437+00:00,1 +2023-10-24 21:40:50.267551795+00:00,1 +2023-10-24 21:40:50.383008622+00:00,1 +2023-10-24 21:40:50.498605274+00:00,1 +2023-10-24 21:40:50.615160336+00:00,1 +2023-10-24 21:40:50.731290848+00:00,1 +2023-10-24 21:40:50.848622916+00:00,1 +2023-10-24 21:40:50.964915536+00:00,1 +2023-10-24 21:40:51.080572984+00:00,1 +2023-10-24 21:40:51.197174134+00:00,1 +2023-10-24 21:40:51.312667017+00:00,1 +2023-10-24 21:40:51.428380970+00:00,1 +2023-10-24 21:40:51.544343793+00:00,1 +2023-10-24 21:40:51.659887836+00:00,1 +2023-10-24 21:40:51.776369270+00:00,1 +2023-10-24 21:40:51.892998305+00:00,1 +2023-10-24 21:40:52.009035619+00:00,1 +2023-10-24 21:40:52.125634637+00:00,1 +2023-10-24 21:40:52.242152377+00:00,1 +2023-10-24 21:40:52.358157977+00:00,1 +2023-10-24 21:40:52.474277477+00:00,1 +2023-10-24 21:40:52.589805381+00:00,1 +2023-10-24 21:40:52.706611384+00:00,1 +2023-10-24 21:40:52.824641196+00:00,1 +2023-10-24 21:40:52.941372828+00:00,1 +2023-10-24 21:40:53.057431914+00:00,1 +2023-10-24 21:40:53.173299314+00:00,1 +2023-10-24 21:40:53.289962512+00:00,1 +2023-10-24 21:40:53.405480215+00:00,1 +2023-10-24 21:40:53.521666415+00:00,1 +2023-10-24 21:40:53.637301152+00:00,1 +2023-10-24 21:40:53.752859485+00:00,1 +2023-10-24 21:40:53.869033140+00:00,1 +2023-10-24 21:40:53.985680386+00:00,1 +2023-10-24 21:40:54.101562772+00:00,1 +2023-10-24 21:40:54.217389763+00:00,1 +2023-10-24 21:40:54.332977085+00:00,1 +2023-10-24 21:40:54.448408823+00:00,1 +2023-10-24 21:40:54.564591122+00:00,1 +2023-10-24 21:40:54.680639859+00:00,1 +2023-10-24 21:40:54.796723828+00:00,1 +2023-10-24 21:40:54.912807806+00:00,1 +2023-10-24 21:40:55.028754750+00:00,1 +2023-10-24 21:40:55.144460897+00:00,1 +2023-10-24 21:40:55.260623926+00:00,1 +2023-10-24 21:40:55.376734586+00:00,1 +2023-10-24 21:40:55.492061934+00:00,1 +2023-10-24 21:40:55.608331715+00:00,1 +2023-10-24 21:40:55.724221783+00:00,1 +2023-10-24 21:40:55.839890640+00:00,1 +2023-10-24 21:40:55.956315636+00:00,1 +2023-10-24 21:40:56.071836875+00:00,1 +2023-10-24 21:40:56.187898390+00:00,1 +2023-10-24 21:40:56.303612712+00:00,1 +2023-10-24 21:40:56.419446572+00:00,1 +2023-10-24 21:40:56.535963890+00:00,1 +2023-10-24 21:40:56.652679015+00:00,1 +2023-10-24 21:40:56.768859367+00:00,1 +2023-10-24 21:40:56.886394343+00:00,1 +2023-10-24 21:40:57.002693788+00:00,1 +2023-10-24 21:40:57.119217256+00:00,1 +2023-10-24 21:40:57.235398788+00:00,1 +2023-10-24 21:40:57.352209653+00:00,1 +2023-10-24 21:40:57.468242567+00:00,1 +2023-10-24 21:40:57.583678655+00:00,1 +2023-10-24 21:40:57.699361426+00:00,1 +2023-10-24 21:40:57.815725469+00:00,1 +2023-10-24 21:40:57.931818896+00:00,1 +2023-10-24 21:40:58.048533357+00:00,1 +2023-10-24 21:40:58.164904712+00:00,1 +2023-10-24 21:40:58.281011715+00:00,1 +2023-10-24 21:40:58.397803100+00:00,1 +2023-10-24 21:40:58.513511556+00:00,1 +2023-10-24 21:40:58.630188467+00:00,1 +2023-10-24 21:40:58.745793648+00:00,1 +2023-10-24 21:40:58.862233891+00:00,1 +2023-10-24 21:40:58.977658645+00:00,1 +2023-10-24 21:40:59.093397607+00:00,1 +2023-10-24 21:40:59.208778010+00:00,1 +2023-10-24 21:40:59.324446025+00:00,1 +2023-10-24 21:40:59.440566239+00:00,1 +2023-10-24 21:40:59.556409541+00:00,1 +2023-10-24 21:40:59.672489463+00:00,1 +2023-10-24 21:40:59.788809200+00:00,1 +2023-10-24 21:40:59.905225248+00:00,1 +2023-10-24 21:41:00.022537244+00:00,1 +2023-10-24 21:41:00.138766098+00:00,1 +2023-10-24 21:41:00.254232138+00:00,1 +2023-10-24 21:41:00.370153374+00:00,1 +2023-10-24 21:41:00.485777868+00:00,1 +2023-10-24 21:41:00.602470713+00:00,1 +2023-10-24 21:41:00.717981367+00:00,1 +2023-10-24 21:41:00.833003981+00:00,1 +2023-10-24 21:41:00.948074791+00:00,1 +2023-10-24 21:41:01.064197962+00:00,1 +2023-10-24 21:41:01.180367237+00:00,1 +2023-10-24 21:41:01.295798769+00:00,1 +2023-10-24 21:41:01.411423308+00:00,1 +2023-10-24 21:41:01.528374916+00:00,1 +2023-10-24 21:41:01.644216345+00:00,1 +2023-10-24 21:41:01.759991552+00:00,1 +2023-10-24 21:41:01.876519832+00:00,1 +2023-10-24 21:41:01.992300158+00:00,1 +2023-10-24 21:41:02.108950373+00:00,1 +2023-10-24 21:41:02.225115725+00:00,1 +2023-10-24 21:41:02.340914495+00:00,1 +2023-10-24 21:41:02.457771949+00:00,1 +2023-10-24 21:41:02.574219656+00:00,1 +2023-10-24 21:41:02.689619696+00:00,1 +2023-10-24 21:41:02.806041341+00:00,1 +2023-10-24 21:41:02.922696431+00:00,1 +2023-10-24 21:41:03.038542785+00:00,1 +2023-10-24 21:41:03.154098854+00:00,1 +2023-10-24 21:41:03.269731755+00:00,1 +2023-10-24 21:41:03.386585630+00:00,1 +2023-10-24 21:41:03.502431867+00:00,1 +2023-10-24 21:41:03.619083899+00:00,1 +2023-10-24 21:41:03.735182167+00:00,1 +2023-10-24 21:41:03.851345413+00:00,1 +2023-10-24 21:41:03.966670642+00:00,1 +2023-10-24 21:41:04.081778300+00:00,1 +2023-10-24 21:41:04.197560469+00:00,1 +2023-10-24 21:41:04.314344904+00:00,1 +2023-10-24 21:41:04.429968188+00:00,1 +2023-10-24 21:41:04.545641156+00:00,1 +2023-10-24 21:41:04.661158545+00:00,1 +2023-10-24 21:41:04.777192574+00:00,1 +2023-10-24 21:41:04.893153874+00:00,1 +2023-10-24 21:41:05.010057414+00:00,1 +2023-10-24 21:41:05.127028104+00:00,1 +2023-10-24 21:41:05.242624366+00:00,1 +2023-10-24 21:41:05.357817757+00:00,1 +2023-10-24 21:41:05.474003545+00:00,1 +2023-10-24 21:41:05.589596222+00:00,1 +2023-10-24 21:41:05.704813462+00:00,1 +2023-10-24 21:41:05.820686942+00:00,1 +2023-10-24 21:41:05.937056972+00:00,1 +2023-10-24 21:41:06.053502113+00:00,1 +2023-10-24 21:41:06.169731103+00:00,1 +2023-10-24 21:41:06.286180874+00:00,1 +2023-10-24 21:41:06.401814534+00:00,1 +2023-10-24 21:41:06.517631860+00:00,1 +2023-10-24 21:41:06.633622585+00:00,1 +2023-10-24 21:41:06.748805830+00:00,1 +2023-10-24 21:41:06.864944704+00:00,1 +2023-10-24 21:41:06.980805966+00:00,1 +2023-10-24 21:41:07.096171615+00:00,1 +2023-10-24 21:41:07.212528692+00:00,1 +2023-10-24 21:41:07.328692449+00:00,1 +2023-10-24 21:41:07.444768369+00:00,1 +2023-10-24 21:41:07.560441888+00:00,1 +2023-10-24 21:41:07.675751637+00:00,1 +2023-10-24 21:41:07.791869560+00:00,1 +2023-10-24 21:41:07.907706373+00:00,1 +2023-10-24 21:41:08.024326909+00:00,1 +2023-10-24 21:41:08.140535990+00:00,1 +2023-10-24 21:41:08.256090036+00:00,1 +2023-10-24 21:41:08.372054910+00:00,1 +2023-10-24 21:41:08.487673186+00:00,1 +2023-10-24 21:41:08.603237884+00:00,1 +2023-10-24 21:41:08.718894739+00:00,1 +2023-10-24 21:41:08.833945932+00:00,1 +2023-10-24 21:41:08.949537004+00:00,1 +2023-10-24 21:41:09.065204440+00:00,1 +2023-10-24 21:41:09.180736146+00:00,1 +2023-10-24 21:41:09.296442610+00:00,1 +2023-10-24 21:41:09.413690032+00:00,1 +2023-10-24 21:41:09.529659322+00:00,1 +2023-10-24 21:41:09.645784262+00:00,1 +2023-10-24 21:41:09.760983287+00:00,1 +2023-10-24 21:41:09.877157433+00:00,1 +2023-10-24 21:41:09.993235866+00:00,1 +2023-10-24 21:41:10.108660395+00:00,1 +2023-10-24 21:41:10.223808345+00:00,1 +2023-10-24 21:41:10.339458835+00:00,1 +2023-10-24 21:41:10.455031076+00:00,1 +2023-10-24 21:41:10.571083813+00:00,1 +2023-10-24 21:41:10.686756562+00:00,1 +2023-10-24 21:41:10.803553350+00:00,1 +2023-10-24 21:41:10.920720479+00:00,1 +2023-10-24 21:41:11.036835816+00:00,1 +2023-10-24 21:41:11.152742382+00:00,1 +2023-10-24 21:41:11.269396527+00:00,1 +2023-10-24 21:41:11.384539586+00:00,1 +2023-10-24 21:41:11.500146889+00:00,1 +2023-10-24 21:41:11.615740074+00:00,1 +2023-10-24 21:41:11.731218954+00:00,1 +2023-10-24 21:41:11.846967118+00:00,1 +2023-10-24 21:41:11.963094677+00:00,1 +2023-10-24 21:41:12.079334465+00:00,1 +2023-10-24 21:41:12.195813139+00:00,1 +2023-10-24 21:41:12.311730888+00:00,1 +2023-10-24 21:41:12.427641230+00:00,1 +2023-10-24 21:41:12.543664027+00:00,1 +2023-10-24 21:41:12.659940167+00:00,1 +2023-10-24 21:41:12.776704452+00:00,1 +2023-10-24 21:41:12.893904606+00:00,1 +2023-10-24 21:41:13.010301538+00:00,1 +2023-10-24 21:41:13.126512595+00:00,1 +2023-10-24 21:41:13.242441066+00:00,1 +2023-10-24 21:41:13.358580273+00:00,1 +2023-10-24 21:41:13.474925321+00:00,1 +2023-10-24 21:41:13.591161055+00:00,1 +2023-10-24 21:41:13.706799280+00:00,1 +2023-10-24 21:41:13.822545563+00:00,1 +2023-10-24 21:41:13.938939494+00:00,1 +2023-10-24 21:41:14.054454364+00:00,1 +2023-10-24 21:41:14.170402926+00:00,1 +2023-10-24 21:41:14.286305121+00:00,1 +2023-10-24 21:41:14.402606850+00:00,1 +2023-10-24 21:41:14.520455261+00:00,1 +2023-10-24 21:41:14.637122197+00:00,1 +2023-10-24 21:41:14.752682693+00:00,1 +2023-10-24 21:41:14.868155706+00:00,1 +2023-10-24 21:41:14.983909677+00:00,1 +2023-10-24 21:41:15.099341569+00:00,1 +2023-10-24 21:41:15.214396215+00:00,1 +2023-10-24 21:41:15.329807964+00:00,1 +2023-10-24 21:41:15.444970966+00:00,1 +2023-10-24 21:41:15.559862635+00:00,1 +2023-10-24 21:41:15.675942347+00:00,1 +2023-10-24 21:41:15.792898738+00:00,1 +2023-10-24 21:41:15.908981247+00:00,1 +2023-10-24 21:41:16.024611931+00:00,1 +2023-10-24 21:41:16.140539533+00:00,1 +2023-10-24 21:41:16.256332150+00:00,1 +2023-10-24 21:41:16.371781326+00:00,1 +2023-10-24 21:41:16.488208942+00:00,1 +2023-10-24 21:41:16.604096014+00:00,1 +2023-10-24 21:41:16.720478115+00:00,1 +2023-10-24 21:41:16.835664588+00:00,1 +2023-10-24 21:41:16.951499891+00:00,1 +2023-10-24 21:41:17.066920569+00:00,1 +2023-10-24 21:41:17.182369317+00:00,1 +2023-10-24 21:41:17.297649891+00:00,1 +2023-10-24 21:41:17.413484140+00:00,1 +2023-10-24 21:41:17.529138834+00:00,1 +2023-10-24 21:41:17.644531896+00:00,1 +2023-10-24 21:41:17.760162494+00:00,1 +2023-10-24 21:41:17.875696272+00:00,1 +2023-10-24 21:41:17.992567921+00:00,1 +2023-10-24 21:41:18.108068118+00:00,1 +2023-10-24 21:41:18.224232438+00:00,1 +2023-10-24 21:41:18.339889355+00:00,1 +2023-10-24 21:41:18.456460705+00:00,1 +2023-10-24 21:41:18.572786686+00:00,1 +2023-10-24 21:41:18.689640694+00:00,1 +2023-10-24 21:41:18.805389976+00:00,1 +2023-10-24 21:41:18.921635343+00:00,1 +2023-10-24 21:41:19.037334842+00:00,1 +2023-10-24 21:41:19.153624145+00:00,1 +2023-10-24 21:41:19.269446804+00:00,1 +2023-10-24 21:41:19.385077184+00:00,1 +2023-10-24 21:41:19.501976987+00:00,1 +2023-10-24 21:41:19.619050863+00:00,1 +2023-10-24 21:41:19.735408219+00:00,1 +2023-10-24 21:41:19.851057499+00:00,1 +2023-10-24 21:41:19.967086210+00:00,1 +2023-10-24 21:41:20.082623428+00:00,1 +2023-10-24 21:41:20.198625274+00:00,1 +2023-10-24 21:41:20.315001935+00:00,1 +2023-10-24 21:41:20.431211815+00:00,1 +2023-10-24 21:41:20.547158954+00:00,1 +2023-10-24 21:41:20.663242785+00:00,1 +2023-10-24 21:41:20.778961273+00:00,1 +2023-10-24 21:41:20.895140802+00:00,1 +2023-10-24 21:41:21.011437058+00:00,1 +2023-10-24 21:41:21.127994360+00:00,1 +2023-10-24 21:41:21.243848568+00:00,1 +2023-10-24 21:41:21.359419535+00:00,1 +2023-10-24 21:41:21.475617109+00:00,1 +2023-10-24 21:41:21.591479042+00:00,1 +2023-10-24 21:41:21.707596108+00:00,1 +2023-10-24 21:41:21.822871067+00:00,1 +2023-10-24 21:41:21.938499266+00:00,1 +2023-10-24 21:41:22.054709640+00:00,1 +2023-10-24 21:41:22.169785801+00:00,1 +2023-10-24 21:41:22.284966798+00:00,1 +2023-10-24 21:41:22.400599309+00:00,1 +2023-10-24 21:41:22.516748798+00:00,1 +2023-10-24 21:41:22.633897391+00:00,1 +2023-10-24 21:41:22.749951738+00:00,1 +2023-10-24 21:41:22.865727256+00:00,1 +2023-10-24 21:41:22.981481257+00:00,1 +2023-10-24 21:41:23.097362897+00:00,1 +2023-10-24 21:41:23.212624522+00:00,1 +2023-10-24 21:41:23.327890399+00:00,1 +2023-10-24 21:41:23.444015135+00:00,1 +2023-10-24 21:41:23.559358431+00:00,1 +2023-10-24 21:41:23.675193259+00:00,1 +2023-10-24 21:41:23.790779076+00:00,1 +2023-10-24 21:41:23.906013125+00:00,1 +2023-10-24 21:41:24.022446349+00:00,1 +2023-10-24 21:41:24.139129166+00:00,1 +2023-10-24 21:41:24.255594480+00:00,1 +2023-10-24 21:41:24.372051892+00:00,1 +2023-10-24 21:41:24.488469484+00:00,1 +2023-10-24 21:41:24.604901808+00:00,1 +2023-10-24 21:41:24.720661684+00:00,1 +2023-10-24 21:41:24.836592819+00:00,1 +2023-10-24 21:41:24.953318726+00:00,1 +2023-10-24 21:41:25.069190417+00:00,1 +2023-10-24 21:41:25.185056607+00:00,1 +2023-10-24 21:41:25.300427466+00:00,1 +2023-10-24 21:41:25.416125783+00:00,1 +2023-10-24 21:41:25.533180808+00:00,1 +2023-10-24 21:41:25.650152143+00:00,1 +2023-10-24 21:41:25.766163400+00:00,1 +2023-10-24 21:41:25.882200846+00:00,1 +2023-10-24 21:41:25.997958548+00:00,1 +2023-10-24 21:41:26.113908890+00:00,1 +2023-10-24 21:41:26.229503175+00:00,1 +2023-10-24 21:41:26.347531549+00:00,1 +2023-10-24 21:41:26.469830610+00:00,1 +2023-10-24 21:41:26.585373003+00:00,1 +2023-10-24 21:41:26.701272518+00:00,1 +2023-10-24 21:41:26.816271216+00:00,1 +2023-10-24 21:41:26.931901318+00:00,1 +2023-10-24 21:41:27.048566261+00:00,1 +2023-10-24 21:41:27.163818848+00:00,1 +2023-10-24 21:41:27.279137778+00:00,1 +2023-10-24 21:41:27.395602928+00:00,1 +2023-10-24 21:41:27.512181125+00:00,1 +2023-10-24 21:41:27.627775141+00:00,1 +2023-10-24 21:41:27.743441477+00:00,1 +2023-10-24 21:41:27.859259582+00:00,1 +2023-10-24 21:41:27.975930124+00:00,1 +2023-10-24 21:41:28.092623920+00:00,1 +2023-10-24 21:41:28.208548845+00:00,1 +2023-10-24 21:41:28.324368671+00:00,1 +2023-10-24 21:41:28.439507539+00:00,1 +2023-10-24 21:41:28.554992085+00:00,1 +2023-10-24 21:41:28.670901803+00:00,1 +2023-10-24 21:41:28.786315354+00:00,1 +2023-10-24 21:41:28.901904925+00:00,1 +2023-10-24 21:41:29.017247887+00:00,1 +2023-10-24 21:41:29.132665262+00:00,1 +2023-10-24 21:41:29.248308495+00:00,1 +2023-10-24 21:41:29.363394778+00:00,1 +2023-10-24 21:41:29.479074259+00:00,1 +2023-10-24 21:41:29.594697238+00:00,1 +2023-10-24 21:41:29.710676219+00:00,1 +2023-10-24 21:41:29.826937634+00:00,1 +2023-10-24 21:41:29.942067738+00:00,1 +2023-10-24 21:41:30.057911205+00:00,1 +2023-10-24 21:41:30.174013677+00:00,1 +2023-10-24 21:41:30.289675790+00:00,1 +2023-10-24 21:41:30.406120482+00:00,1 +2023-10-24 21:41:30.522194370+00:00,1 +2023-10-24 21:41:30.638172902+00:00,1 +2023-10-24 21:41:30.753365802+00:00,1 +2023-10-24 21:41:30.870306799+00:00,1 +2023-10-24 21:41:30.986259007+00:00,1 +2023-10-24 21:41:31.102070990+00:00,1 +2023-10-24 21:41:31.217936074+00:00,1 +2023-10-24 21:41:31.333987467+00:00,1 +2023-10-24 21:41:31.449799624+00:00,1 +2023-10-24 21:41:31.565751144+00:00,1 +2023-10-24 21:41:31.681687464+00:00,1 +2023-10-24 21:41:31.797325342+00:00,1 +2023-10-24 21:41:31.913384611+00:00,1 +2023-10-24 21:41:32.029398773+00:00,1 +2023-10-24 21:41:32.145207758+00:00,1 +2023-10-24 21:41:32.261167363+00:00,1 +2023-10-24 21:41:32.377112397+00:00,1 +2023-10-24 21:41:32.492758946+00:00,1 +2023-10-24 21:41:32.608571923+00:00,1 +2023-10-24 21:41:32.724174766+00:00,1 +2023-10-24 21:41:32.840755528+00:00,1 +2023-10-24 21:41:32.956248698+00:00,1 +2023-10-24 21:41:33.071998577+00:00,1 +2023-10-24 21:41:33.187894946+00:00,1 +2023-10-24 21:41:33.303709238+00:00,1 +2023-10-24 21:41:33.419045184+00:00,1 +2023-10-24 21:41:33.534384486+00:00,1 +2023-10-24 21:41:33.651331152+00:00,1 +2023-10-24 21:41:33.766930297+00:00,1 +2023-10-24 21:41:33.883334570+00:00,1 +2023-10-24 21:41:33.999103804+00:00,1 +2023-10-24 21:41:34.114614549+00:00,1 +2023-10-24 21:41:34.229967784+00:00,1 +2023-10-24 21:41:34.345939388+00:00,1 +2023-10-24 21:41:34.461204109+00:00,1 +2023-10-24 21:41:34.577441183+00:00,1 +2023-10-24 21:41:34.694850203+00:00,1 +2023-10-24 21:41:34.811228949+00:00,1 +2023-10-24 21:41:34.926842275+00:00,1 +2023-10-24 21:41:35.042391830+00:00,1 +2023-10-24 21:41:35.157967465+00:00,1 +2023-10-24 21:41:35.273979417+00:00,1 +2023-10-24 21:41:35.390225112+00:00,1 +2023-10-24 21:41:35.506536597+00:00,1 +2023-10-24 21:41:35.622719814+00:00,1 +2023-10-24 21:41:35.739360750+00:00,1 +2023-10-24 21:41:35.855993323+00:00,1 +2023-10-24 21:41:35.972463058+00:00,1 +2023-10-24 21:41:36.088230358+00:00,1 +2023-10-24 21:41:36.204204781+00:00,1 +2023-10-24 21:41:36.320432683+00:00,1 +2023-10-24 21:41:36.435908618+00:00,1 +2023-10-24 21:41:36.551998969+00:00,1 +2023-10-24 21:41:36.667878680+00:00,1 +2023-10-24 21:41:36.783647815+00:00,1 +2023-10-24 21:41:36.899837446+00:00,1 +2023-10-24 21:41:37.015423113+00:00,1 +2023-10-24 21:41:37.131307496+00:00,1 +2023-10-24 21:41:37.247496873+00:00,1 +2023-10-24 21:41:37.363437164+00:00,1 +2023-10-24 21:41:37.479903359+00:00,1 +2023-10-24 21:41:37.596918278+00:00,1 +2023-10-24 21:41:37.713260409+00:00,1 +2023-10-24 21:41:37.830100952+00:00,1 +2023-10-24 21:41:37.945873603+00:00,1 +2023-10-24 21:41:38.062230742+00:00,1 +2023-10-24 21:41:38.177900550+00:00,1 +2023-10-24 21:41:38.293119156+00:00,1 +2023-10-24 21:41:38.408786603+00:00,1 +2023-10-24 21:41:38.524537157+00:00,1 +2023-10-24 21:41:38.640389216+00:00,1 +2023-10-24 21:41:38.755520151+00:00,1 +2023-10-24 21:41:38.871509926+00:00,1 +2023-10-24 21:41:38.987253066+00:00,1 +2023-10-24 21:41:39.103057925+00:00,1 +2023-10-24 21:41:39.219341666+00:00,1 +2023-10-24 21:41:39.336401407+00:00,1 +2023-10-24 21:41:39.452357634+00:00,1 +2023-10-24 21:41:39.569268060+00:00,1 +2023-10-24 21:41:39.685393232+00:00,1 +2023-10-24 21:41:39.801106519+00:00,1 +2023-10-24 21:41:39.916937985+00:00,0 +2023-10-24 21:41:41.930015879+00:00,0 +2023-10-24 21:41:43.943279952+00:00,0 +2023-10-24 21:41:45.956019109+00:00,0 +2023-10-24 21:41:47.968272604+00:00,0 +2023-10-24 21:41:49.981083305+00:00,0 +2023-10-24 21:41:51.993044519+00:00,0 +2023-10-24 21:41:54.005165324+00:00,0 +2023-10-24 21:41:56.018246915+00:00,0 +2023-10-24 21:41:58.030587211+00:00,0 +2023-10-24 21:42:00.042836338+00:00,0 +2023-10-24 21:42:02.054458003+00:00,1 +2023-10-24 21:42:03.186214171+00:00,1 +2023-10-24 21:42:03.302095084+00:00,1 +2023-10-24 21:42:03.418139741+00:00,1 +2023-10-24 21:42:03.534332109+00:00,1 +2023-10-24 21:42:03.649489625+00:00,1 +2023-10-24 21:42:03.764724374+00:00,1 +2023-10-24 21:42:03.881880453+00:00,1 +2023-10-24 21:42:03.997974272+00:00,1 diff --git a/tests/zero-downtime-scaling/results/1.0.0/10-node/abrupt-down-http.png b/tests/zero-downtime-scaling/results/1.0.0/10-node/abrupt-down-http.png new file mode 100644 index 0000000000000000000000000000000000000000..64fe9776d1afdbf86f5d3a151c455c758faeae78 GIT binary patch literal 6367 zcmeHLdo+}5+rKKilh7N&ay6`Q06i40p#&BTnxd1iRt@$T>4-&)_h*0X_H*l`j2;VJuNM*?c29IIy(CJ z_)w|TyLa!Fl$6xe)Vz7~W?*1I?qbx`G)b8B=;Pq1%jh2nBIHFQWzUO+LZlt!-r$`4 zP1TRrH;%{ua~!X!Ns>bWXo`LN73Lu#@b*2Tb_<~%9;ML`8<5a~__rfQ2d`JL{K{h# zCnmbGX?jQw2&09`(89~+B^|bQ@iU>R0ZmPfW-V_t+UXkFX@oY9-x|r5x6?>A38|?; zkq05gkWYAH-ChjB#^E5SEq z5UqrfRWPgyg4MuRhan9Z(1Lz#_^b=PDCp4xo<4LLK&K&etb_Iq(6$L$Hv`uQ-kCu2 zR%kMXH`}4X4C*mZX92Hv!AnbcVFfi<;8;V|UZ~s$Y#S)I1C~9M9t5TXJavS}&QN?9 z9vy{;$DqIk9^fI*6>{8w;STpbAe#VLry=7kqDcN%!5!`Tctodtw!@VF1|3~MDLbIl5)#FR658Oi?SWdP-u^Us2m&C1#UtFIo|k2@ZoKEhMF zdEXxPpZT_Gr3Q|~e1;hM{BR5>)BM$68X}VF``Fqv`2W7@eYZF3){h5n{(ECwoNPNn z-hj&U6BGnU#n#%fkKPLQO$b*?(4X+LqwTjfO#?swx@&yjJ!$OJ$Nss;iLFiUsN-qZ zRnN8iZ)|&b&BMpl1Iw;krxHW%-+^Obb~z@6PFDmL6!2ebf9<4yir!+#fkSP+EcZ6z8QlO?^oy zM73LZe5spqh-Hr?9P70>L||1^{ALoX8@8@*x+Np_j1RW4P2pJtjkuba!q+$#bqN(o z?({m2S3T$EmO+IVPC9}I@u-^erY`ODI%(#LK(6d7*g$* zEXZ|XxV(0L@>)N$TZ9&j^2|=t(SeQe{wg;f%8&-FSt!m61jm%A>7Em%P(I ztdn!<2M?XTQ;tc6OYWSYpU|AtBS&r_Q0LOe!--L=IT7(@MpjiBXyLcd?hog7<4lE* zH(R)v&5j5YDBFj>b@weTu{6=5PN@6ML5bXd(2AqYo?nI{lO$1m!Owpb=_W#MwHba1 zKQ#pUd>#Zv0NO!1lW)w+FrpXNlY3^5N6TY-# ztyrdAMa*fj^2s`@)TgXco~{>W%h8;?^DS7aHa@V-^pXCfo6Agx_r?_K32I3bVypV_ zd~B6CD^-~@`@a9eefEyvIm@*z2lFCNRsV8_tYX>~n5H*n%h8>bT}Yir;Dfz4j;c1I zXOg1roh@+x&f*^rAo!G*W4xBL;-kqd9={}U@|eMFYZp3UT$3Z&DEpO8@eNpS|1G1d zfU|Q735$*j{n3CNoK4Wp*BOm9<=QQgw9y+DP&fQbxFJq0`$Y8p2XF2re4RH;XL*t{;-r*H}CmjNu!e^hAl>Y3tEbhLkXs4BoAEh`uSEbr7Vpsenj3Un= zky(K{-Oq01ZU0@Vq~!t&KV)@fSaiB6ap7MUM~08PrfN$EgHY@lB6DbnO8qSADc!En zdhoDX%9Un*Z(>C%Ti4m$ifY&9eBL4>!&aJ7Rp(84cz5leINhC8sI9sQfw?~CWmc`V z<%nMh@Jwt^Bv`wRJ%hr+17>8692dwQuq zg^rDJu!E@mOXp)EPU<9h4ZOazr?f@k?&36c?0~}GUPL;n5HNL97o>t9+v#4T6CCvV zdVWl!b^N?yo~wSi9I>?bj%-|U^G<^(%P1vN)SL8x@)b-AMCwIR(PxUV&x(5(io??N z^#|tz_)=(rD_dkkUpOD|M(alk-@D)E;V%+2xObR^wCP0bRpayG+@BRE-0~u@XdAen zRV=T_qCp}_eTi$l4abip;t3|2{y{Muf3AS zu5LUiEWvh5L|8OWCdtE>b+BYt?o1QDdhU`cOZ$u&x;=JniBo#-GgRE!{AusX7Iv)c zkJs(ki-k>g$@4Jt1n7df>GPQ3Eke}KJMdq-4rLqt>36gH*a5lU(QSdOuT!;54Qzog zni5y~RVB7hyRZlyhDlZY^jj1YA_|x`1VQ?xW1q#&Pn1Jk+WIn26Y!2y394UQYG=Hn zC!)1h^xJjL9aEi%Q^x*@;u+MJYVIoXlgqD-uHiU6y%;{WRa!V2+B5Aak<#wlFPPuu z{<)og?|z?$?|k^a7^1(E;6EV&;e7+yOkj-BDHtOtI*z?M!Z0Ol$4S0wr|U`b_n6{r zosxP4%_W7-Yl_%zrrc111uiDcEyVIvy1b+~=F&9X?MFbHSl}qt*q`n2S;nVAO3yJ? z5h|DP??uQDdgQjr*)tZq_yzlVFiuHmQFB(IxhH|lCbhNQq{l_^aFTrK>{e}K)pO~_ z@)U8&cRWS4KUO+6RB)sHU)D?s&z9_Lt=-?zyv{zvf=8)7Zi%B99LSGn81`RVK>I+gM|3wx_qA`=8)D<+$zp1c_!p4pVgp0|V8p*@rih5Xoz{bA=- zOy4e^(&M~nStH6*#CsTN=D%6vlypg%DX-8vy~0~uV9Z8|98(jQIdL@a#+IA$WoYDA7~*yLJ1lOG?{q z-LCKOFuJ~@Gtq=JKo7lAcUXfcjd8zzoY^a8R-UPCvg>@rBMk`5EhpJlSlPyg|FN?V zTX|!cfFefpzf!n6AK6rRw3>~UNqV>b8av;FB`!<9cg7etX-Owc!G?_Hmk@TMP+6w1#g**bHnOxT*CLJFE{V1vJB*r zhVs1WUi%nw6VA>_l&G-B;a*JF(ayKSz4qI>ryK0Y>^u)8r9=wq44R5=+jJ_S?Sur> z7y0jDyB!R*g&FkDj-Nt0V(uj}-C4a2Aw!63p}Wrb8}-Uii*XV|gPMuAO~VFt;3R!= z;xy_jwNGOB=C++mS-!VzH+7K03@&~m#a=0lH}C3=phU^^$fKjRuR^la_h{!6Cf4@M z;+abFfd(UUY701{`4xx_iCfxSdB2K5!`0d*~b@)5p5$!&u8#Mh%vjN{T3`y{WB(Hl1SDKka te9p2-%e>81V(AbYWB$(tYQ!xBzO0K0zO7)FFTbUQ12#_ki}s$5{s&F7*^>YO literal 0 HcmV?d00001 diff --git a/tests/zero-downtime-scaling/results/1.0.0/10-node/abrupt-down-https.csv b/tests/zero-downtime-scaling/results/1.0.0/10-node/abrupt-down-https.csv new file mode 100644 index 000000000..668e1a7d3 --- /dev/null +++ b/tests/zero-downtime-scaling/results/1.0.0/10-node/abrupt-down-https.csv @@ -0,0 +1,428 @@ +2023-10-24 21:40:47.670616928+00:00,1 +2023-10-24 21:40:47.799517841+00:00,1 +2023-10-24 21:40:47.926600248+00:00,1 +2023-10-24 21:40:48.056132933+00:00,1 +2023-10-24 21:40:48.185572276+00:00,1 +2023-10-24 21:40:48.316332590+00:00,1 +2023-10-24 21:40:48.445105837+00:00,1 +2023-10-24 21:40:48.574329988+00:00,1 +2023-10-24 21:40:48.703941197+00:00,1 +2023-10-24 21:40:48.832578245+00:00,1 +2023-10-24 21:40:48.960854220+00:00,1 +2023-10-24 21:40:49.090990843+00:00,1 +2023-10-24 21:40:49.221543245+00:00,1 +2023-10-24 21:40:49.350701389+00:00,1 +2023-10-24 21:40:49.480168895+00:00,1 +2023-10-24 21:40:49.607338626+00:00,1 +2023-10-24 21:40:49.736085421+00:00,1 +2023-10-24 21:40:49.864559350+00:00,1 +2023-10-24 21:40:49.993473143+00:00,1 +2023-10-24 21:40:50.124202621+00:00,1 +2023-10-24 21:40:50.253560506+00:00,1 +2023-10-24 21:40:50.381576323+00:00,1 +2023-10-24 21:40:50.509910223+00:00,1 +2023-10-24 21:40:50.638364121+00:00,1 +2023-10-24 21:40:50.766438898+00:00,1 +2023-10-24 21:40:50.895442876+00:00,1 +2023-10-24 21:40:51.024796736+00:00,1 +2023-10-24 21:40:51.154320280+00:00,1 +2023-10-24 21:40:51.281679498+00:00,1 +2023-10-24 21:40:51.410940755+00:00,1 +2023-10-24 21:40:51.540826353+00:00,1 +2023-10-24 21:40:51.668670797+00:00,1 +2023-10-24 21:40:51.797404248+00:00,1 +2023-10-24 21:40:51.926991419+00:00,1 +2023-10-24 21:40:52.055390566+00:00,1 +2023-10-24 21:40:52.184674606+00:00,1 +2023-10-24 21:40:52.313257868+00:00,1 +2023-10-24 21:40:52.441788429+00:00,1 +2023-10-24 21:40:52.571426654+00:00,1 +2023-10-24 21:40:52.698757251+00:00,1 +2023-10-24 21:40:52.827440437+00:00,1 +2023-10-24 21:40:52.955804724+00:00,1 +2023-10-24 21:40:53.085021674+00:00,1 +2023-10-24 21:40:53.212502926+00:00,1 +2023-10-24 21:40:53.340399769+00:00,1 +2023-10-24 21:40:53.468809395+00:00,1 +2023-10-24 21:40:53.597139993+00:00,1 +2023-10-24 21:40:53.726444892+00:00,1 +2023-10-24 21:40:53.856783994+00:00,1 +2023-10-24 21:40:53.985874880+00:00,1 +2023-10-24 21:40:54.113839014+00:00,1 +2023-10-24 21:40:54.241407061+00:00,1 +2023-10-24 21:40:54.369168826+00:00,1 +2023-10-24 21:40:54.497994819+00:00,1 +2023-10-24 21:40:54.625497066+00:00,1 +2023-10-24 21:40:54.754195951+00:00,1 +2023-10-24 21:40:54.882283819+00:00,1 +2023-10-24 21:40:55.010664746+00:00,1 +2023-10-24 21:40:55.138067673+00:00,1 +2023-10-24 21:40:55.266847952+00:00,1 +2023-10-24 21:40:55.395545887+00:00,1 +2023-10-24 21:40:55.522726486+00:00,1 +2023-10-24 21:40:55.650771216+00:00,1 +2023-10-24 21:40:55.779196140+00:00,1 +2023-10-24 21:40:55.906032484+00:00,1 +2023-10-24 21:40:56.035935309+00:00,1 +2023-10-24 21:40:56.162974752+00:00,1 +2023-10-24 21:40:56.292079382+00:00,1 +2023-10-24 21:40:56.420721078+00:00,1 +2023-10-24 21:40:56.548457975+00:00,1 +2023-10-24 21:40:56.676268185+00:00,1 +2023-10-24 21:40:56.804151967+00:00,1 +2023-10-24 21:40:56.933387958+00:00,1 +2023-10-24 21:40:57.062571672+00:00,1 +2023-10-24 21:40:57.191133488+00:00,1 +2023-10-24 21:40:57.320825185+00:00,1 +2023-10-24 21:40:57.450051707+00:00,1 +2023-10-24 21:40:57.579362185+00:00,1 +2023-10-24 21:40:57.708371715+00:00,1 +2023-10-24 21:40:57.837517949+00:00,1 +2023-10-24 21:40:57.967521089+00:00,1 +2023-10-24 21:40:58.095940043+00:00,1 +2023-10-24 21:40:58.223850237+00:00,1 +2023-10-24 21:40:58.355240140+00:00,1 +2023-10-24 21:40:58.485064699+00:00,1 +2023-10-24 21:40:58.614218805+00:00,1 +2023-10-24 21:40:58.742804034+00:00,1 +2023-10-24 21:40:58.869788560+00:00,1 +2023-10-24 21:40:58.997590524+00:00,1 +2023-10-24 21:40:59.127238235+00:00,1 +2023-10-24 21:40:59.257119485+00:00,1 +2023-10-24 21:40:59.385468343+00:00,1 +2023-10-24 21:40:59.513394868+00:00,1 +2023-10-24 21:40:59.641205983+00:00,1 +2023-10-24 21:40:59.773519953+00:00,1 +2023-10-24 21:40:59.903271818+00:00,1 +2023-10-24 21:41:00.032920024+00:00,1 +2023-10-24 21:41:00.160677420+00:00,1 +2023-10-24 21:41:00.290347854+00:00,1 +2023-10-24 21:41:00.419992855+00:00,1 +2023-10-24 21:41:00.549070652+00:00,1 +2023-10-24 21:41:00.676798578+00:00,1 +2023-10-24 21:41:00.805791587+00:00,1 +2023-10-24 21:41:00.934284598+00:00,1 +2023-10-24 21:41:01.062918602+00:00,1 +2023-10-24 21:41:01.193386221+00:00,1 +2023-10-24 21:41:01.321610485+00:00,1 +2023-10-24 21:41:01.449326638+00:00,1 +2023-10-24 21:41:01.577955895+00:00,1 +2023-10-24 21:41:01.705591123+00:00,1 +2023-10-24 21:41:01.833969279+00:00,1 +2023-10-24 21:41:01.962263566+00:00,1 +2023-10-24 21:41:02.091035167+00:00,1 +2023-10-24 21:41:02.219651613+00:00,1 +2023-10-24 21:41:02.347835250+00:00,1 +2023-10-24 21:41:02.476618598+00:00,1 +2023-10-24 21:41:02.606153148+00:00,1 +2023-10-24 21:41:02.735386597+00:00,1 +2023-10-24 21:41:02.863356352+00:00,1 +2023-10-24 21:41:02.991472992+00:00,1 +2023-10-24 21:41:03.119920677+00:00,1 +2023-10-24 21:41:03.246824667+00:00,1 +2023-10-24 21:41:03.376124556+00:00,1 +2023-10-24 21:41:03.504403923+00:00,1 +2023-10-24 21:41:03.632658613+00:00,1 +2023-10-24 21:41:03.760132914+00:00,1 +2023-10-24 21:41:03.889550145+00:00,1 +2023-10-24 21:41:04.017775743+00:00,1 +2023-10-24 21:41:04.145111420+00:00,1 +2023-10-24 21:41:04.273549035+00:00,1 +2023-10-24 21:41:04.400998941+00:00,1 +2023-10-24 21:41:04.529523273+00:00,1 +2023-10-24 21:41:04.657746062+00:00,1 +2023-10-24 21:41:04.784498302+00:00,1 +2023-10-24 21:41:04.912745983+00:00,1 +2023-10-24 21:41:05.040169184+00:00,1 +2023-10-24 21:41:05.168378630+00:00,1 +2023-10-24 21:41:05.298275941+00:00,1 +2023-10-24 21:41:05.427295637+00:00,1 +2023-10-24 21:41:05.556620760+00:00,1 +2023-10-24 21:41:05.684544212+00:00,1 +2023-10-24 21:41:05.812004523+00:00,1 +2023-10-24 21:41:05.940847858+00:00,1 +2023-10-24 21:41:06.069209332+00:00,1 +2023-10-24 21:41:06.197470466+00:00,1 +2023-10-24 21:41:06.327043300+00:00,1 +2023-10-24 21:41:06.455518437+00:00,1 +2023-10-24 21:41:06.584323811+00:00,1 +2023-10-24 21:41:06.711763036+00:00,1 +2023-10-24 21:41:06.838153130+00:00,1 +2023-10-24 21:41:06.966786372+00:00,1 +2023-10-24 21:41:07.096251424+00:00,1 +2023-10-24 21:41:07.224207113+00:00,1 +2023-10-24 21:41:07.352290289+00:00,1 +2023-10-24 21:41:07.480394749+00:00,1 +2023-10-24 21:41:07.608601282+00:00,1 +2023-10-24 21:41:07.738628480+00:00,1 +2023-10-24 21:41:07.866933058+00:00,1 +2023-10-24 21:41:07.996011951+00:00,1 +2023-10-24 21:41:08.125914374+00:00,1 +2023-10-24 21:41:08.254536590+00:00,1 +2023-10-24 21:41:08.383576241+00:00,1 +2023-10-24 21:41:08.514403686+00:00,1 +2023-10-24 21:41:08.643611572+00:00,1 +2023-10-24 21:41:08.773800248+00:00,1 +2023-10-24 21:41:08.902237479+00:00,1 +2023-10-24 21:41:09.030539619+00:00,1 +2023-10-24 21:41:09.159103422+00:00,1 +2023-10-24 21:41:09.287809987+00:00,1 +2023-10-24 21:41:09.415829164+00:00,1 +2023-10-24 21:41:09.544002079+00:00,1 +2023-10-24 21:41:09.672238333+00:00,1 +2023-10-24 21:41:09.801391164+00:00,1 +2023-10-24 21:41:09.929891133+00:00,1 +2023-10-24 21:41:10.057852260+00:00,1 +2023-10-24 21:41:10.185085227+00:00,1 +2023-10-24 21:41:10.313663062+00:00,1 +2023-10-24 21:41:10.441799153+00:00,1 +2023-10-24 21:41:10.570790494+00:00,1 +2023-10-24 21:41:10.699254585+00:00,1 +2023-10-24 21:41:10.829398125+00:00,1 +2023-10-24 21:41:10.957633109+00:00,1 +2023-10-24 21:41:11.085202944+00:00,1 +2023-10-24 21:41:11.213533846+00:00,1 +2023-10-24 21:41:11.342027517+00:00,1 +2023-10-24 21:41:11.469597397+00:00,1 +2023-10-24 21:41:11.597673502+00:00,1 +2023-10-24 21:41:11.726796146+00:00,1 +2023-10-24 21:41:11.854821358+00:00,1 +2023-10-24 21:41:11.982976400+00:00,1 +2023-10-24 21:41:12.110539426+00:00,1 +2023-10-24 21:41:12.238633596+00:00,1 +2023-10-24 21:41:12.367181372+00:00,1 +2023-10-24 21:41:12.496738004+00:00,1 +2023-10-24 21:41:12.624998823+00:00,1 +2023-10-24 21:41:12.753405119+00:00,1 +2023-10-24 21:41:12.882613469+00:00,1 +2023-10-24 21:41:13.011939006+00:00,1 +2023-10-24 21:41:13.141135582+00:00,1 +2023-10-24 21:41:13.270820475+00:00,1 +2023-10-24 21:41:13.400221582+00:00,1 +2023-10-24 21:41:13.528036675+00:00,1 +2023-10-24 21:41:13.655392310+00:00,1 +2023-10-24 21:41:13.784893682+00:00,1 +2023-10-24 21:41:13.912886029+00:00,1 +2023-10-24 21:41:14.041048096+00:00,1 +2023-10-24 21:41:14.171159097+00:00,1 +2023-10-24 21:41:14.299567146+00:00,1 +2023-10-24 21:41:14.427730241+00:00,1 +2023-10-24 21:41:14.555180632+00:00,1 +2023-10-24 21:41:14.684430648+00:00,1 +2023-10-24 21:41:14.812280187+00:00,1 +2023-10-24 21:41:14.942901986+00:00,1 +2023-10-24 21:41:15.071795263+00:00,1 +2023-10-24 21:41:15.199880896+00:00,1 +2023-10-24 21:41:15.328067268+00:00,1 +2023-10-24 21:41:15.457148675+00:00,1 +2023-10-24 21:41:15.586069662+00:00,1 +2023-10-24 21:41:15.712698823+00:00,1 +2023-10-24 21:41:15.839547494+00:00,1 +2023-10-24 21:41:15.966536682+00:00,1 +2023-10-24 21:41:16.093272158+00:00,1 +2023-10-24 21:41:16.221090250+00:00,1 +2023-10-24 21:41:16.349955801+00:00,1 +2023-10-24 21:41:16.480748664+00:00,1 +2023-10-24 21:41:16.610083091+00:00,1 +2023-10-24 21:41:16.738191724+00:00,1 +2023-10-24 21:41:16.866003088+00:00,1 +2023-10-24 21:41:16.995811337+00:00,1 +2023-10-24 21:41:17.124375269+00:00,1 +2023-10-24 21:41:17.251767433+00:00,1 +2023-10-24 21:41:17.379165074+00:00,1 +2023-10-24 21:41:17.507133771+00:00,1 +2023-10-24 21:41:17.637569245+00:00,1 +2023-10-24 21:41:17.767418022+00:00,1 +2023-10-24 21:41:17.895825199+00:00,1 +2023-10-24 21:41:18.025008476+00:00,1 +2023-10-24 21:41:18.154406326+00:00,1 +2023-10-24 21:41:18.282653616+00:00,1 +2023-10-24 21:41:18.411562259+00:00,1 +2023-10-24 21:41:18.541991381+00:00,1 +2023-10-24 21:41:18.670105315+00:00,1 +2023-10-24 21:41:18.799241154+00:00,1 +2023-10-24 21:41:18.927664134+00:00,1 +2023-10-24 21:41:19.057424029+00:00,1 +2023-10-24 21:41:19.189181311+00:00,1 +2023-10-24 21:41:19.318899040+00:00,1 +2023-10-24 21:41:19.447706496+00:00,1 +2023-10-24 21:41:19.576469242+00:00,1 +2023-10-24 21:41:19.705221299+00:00,1 +2023-10-24 21:41:19.837992097+00:00,1 +2023-10-24 21:41:19.966799148+00:00,1 +2023-10-24 21:41:20.095445865+00:00,1 +2023-10-24 21:41:20.223874144+00:00,1 +2023-10-24 21:41:20.352687370+00:00,1 +2023-10-24 21:41:20.482129803+00:00,1 +2023-10-24 21:41:20.609601204+00:00,1 +2023-10-24 21:41:20.739296617+00:00,1 +2023-10-24 21:41:20.868112752+00:00,1 +2023-10-24 21:41:20.996485916+00:00,1 +2023-10-24 21:41:21.125593746+00:00,1 +2023-10-24 21:41:21.254848864+00:00,1 +2023-10-24 21:41:21.382426039+00:00,1 +2023-10-24 21:41:21.512463955+00:00,1 +2023-10-24 21:41:21.641537093+00:00,1 +2023-10-24 21:41:21.770631350+00:00,1 +2023-10-24 21:41:21.899310681+00:00,1 +2023-10-24 21:41:22.029996996+00:00,1 +2023-10-24 21:41:22.157733009+00:00,1 +2023-10-24 21:41:22.287843211+00:00,1 +2023-10-24 21:41:22.416131508+00:00,1 +2023-10-24 21:41:22.544878544+00:00,1 +2023-10-24 21:41:22.674247234+00:00,1 +2023-10-24 21:41:22.804604638+00:00,1 +2023-10-24 21:41:22.934417084+00:00,1 +2023-10-24 21:41:23.064307602+00:00,1 +2023-10-24 21:41:23.194569510+00:00,1 +2023-10-24 21:41:23.324552875+00:00,1 +2023-10-24 21:41:23.453063292+00:00,1 +2023-10-24 21:41:23.580379472+00:00,1 +2023-10-24 21:41:23.709781079+00:00,1 +2023-10-24 21:41:23.838686945+00:00,1 +2023-10-24 21:41:23.967204158+00:00,1 +2023-10-24 21:41:24.095652938+00:00,1 +2023-10-24 21:41:24.225913832+00:00,1 +2023-10-24 21:41:24.356206143+00:00,1 +2023-10-24 21:41:24.484905268+00:00,1 +2023-10-24 21:41:24.611783888+00:00,1 +2023-10-24 21:41:24.738917782+00:00,1 +2023-10-24 21:41:24.867000989+00:00,1 +2023-10-24 21:41:24.996822316+00:00,1 +2023-10-24 21:41:25.125105396+00:00,1 +2023-10-24 21:41:25.254177263+00:00,1 +2023-10-24 21:41:25.384057538+00:00,1 +2023-10-24 21:41:25.515344523+00:00,1 +2023-10-24 21:41:25.644697891+00:00,1 +2023-10-24 21:41:25.773494767+00:00,1 +2023-10-24 21:41:25.901888072+00:00,1 +2023-10-24 21:41:26.030222378+00:00,1 +2023-10-24 21:41:26.157886024+00:00,1 +2023-10-24 21:41:26.287334147+00:00,1 +2023-10-24 21:41:26.413909179+00:00,1 +2023-10-24 21:41:26.541282465+00:00,1 +2023-10-24 21:41:26.668637138+00:00,1 +2023-10-24 21:41:26.796802514+00:00,1 +2023-10-24 21:41:26.925229583+00:00,1 +2023-10-24 21:41:27.054064720+00:00,1 +2023-10-24 21:41:27.206694215+00:00,1 +2023-10-24 21:41:27.337450109+00:00,1 +2023-10-24 21:41:27.466194544+00:00,1 +2023-10-24 21:41:27.597363419+00:00,1 +2023-10-24 21:41:27.725668553+00:00,1 +2023-10-24 21:41:27.855012297+00:00,1 +2023-10-24 21:41:27.984132510+00:00,1 +2023-10-24 21:41:28.113555681+00:00,1 +2023-10-24 21:41:28.240966977+00:00,1 +2023-10-24 21:41:28.369413902+00:00,1 +2023-10-24 21:41:28.496915785+00:00,1 +2023-10-24 21:41:28.623882336+00:00,1 +2023-10-24 21:41:28.753302444+00:00,1 +2023-10-24 21:41:28.881513563+00:00,1 +2023-10-24 21:41:29.010006607+00:00,1 +2023-10-24 21:41:29.141408061+00:00,1 +2023-10-24 21:41:29.270223768+00:00,1 +2023-10-24 21:41:29.398198563+00:00,1 +2023-10-24 21:41:29.527129852+00:00,1 +2023-10-24 21:41:29.656160225+00:00,1 +2023-10-24 21:41:29.785398540+00:00,1 +2023-10-24 21:41:29.914094878+00:00,1 +2023-10-24 21:41:30.044537108+00:00,1 +2023-10-24 21:41:30.174523502+00:00,1 +2023-10-24 21:41:30.304347053+00:00,1 +2023-10-24 21:41:30.432670550+00:00,1 +2023-10-24 21:41:30.562028986+00:00,1 +2023-10-24 21:41:30.691407327+00:00,1 +2023-10-24 21:41:30.819644630+00:00,1 +2023-10-24 21:41:30.948184549+00:00,1 +2023-10-24 21:41:31.076131295+00:00,1 +2023-10-24 21:41:31.205387929+00:00,1 +2023-10-24 21:41:31.334340055+00:00,1 +2023-10-24 21:41:31.463791624+00:00,1 +2023-10-24 21:41:31.592127416+00:00,1 +2023-10-24 21:41:31.720387485+00:00,1 +2023-10-24 21:41:31.850549037+00:00,1 +2023-10-24 21:41:31.979116634+00:00,1 +2023-10-24 21:41:32.108738722+00:00,1 +2023-10-24 21:41:32.236929625+00:00,1 +2023-10-24 21:41:32.365236805+00:00,1 +2023-10-24 21:41:32.494848259+00:00,1 +2023-10-24 21:41:32.622899487+00:00,1 +2023-10-24 21:41:32.752666118+00:00,1 +2023-10-24 21:41:32.882091788+00:00,1 +2023-10-24 21:41:33.010595721+00:00,1 +2023-10-24 21:41:33.140325702+00:00,1 +2023-10-24 21:41:33.270247343+00:00,1 +2023-10-24 21:41:33.399185075+00:00,1 +2023-10-24 21:41:33.530248939+00:00,1 +2023-10-24 21:41:33.660500706+00:00,1 +2023-10-24 21:41:33.791986508+00:00,1 +2023-10-24 21:41:33.922830177+00:00,1 +2023-10-24 21:41:34.051539702+00:00,1 +2023-10-24 21:41:34.180673564+00:00,1 +2023-10-24 21:41:34.310968415+00:00,1 +2023-10-24 21:41:34.439643105+00:00,1 +2023-10-24 21:41:34.569130423+00:00,1 +2023-10-24 21:41:34.698579338+00:00,1 +2023-10-24 21:41:34.831560153+00:00,1 +2023-10-24 21:41:34.960930192+00:00,1 +2023-10-24 21:41:35.088368202+00:00,1 +2023-10-24 21:41:35.217940920+00:00,1 +2023-10-24 21:41:35.347249405+00:00,1 +2023-10-24 21:41:35.477272793+00:00,1 +2023-10-24 21:41:35.609266225+00:00,1 +2023-10-24 21:41:35.740619241+00:00,1 +2023-10-24 21:41:35.870285031+00:00,1 +2023-10-24 21:41:35.999954847+00:00,1 +2023-10-24 21:41:36.128905599+00:00,1 +2023-10-24 21:41:36.256881621+00:00,1 +2023-10-24 21:41:36.384027012+00:00,1 +2023-10-24 21:41:36.511595498+00:00,1 +2023-10-24 21:41:36.640186016+00:00,1 +2023-10-24 21:41:36.768468686+00:00,1 +2023-10-24 21:41:36.896049815+00:00,1 +2023-10-24 21:41:37.022697600+00:00,1 +2023-10-24 21:41:37.151581538+00:00,1 +2023-10-24 21:41:37.283141933+00:00,1 +2023-10-24 21:41:37.420170744+00:00,1 +2023-10-24 21:41:37.549458908+00:00,1 +2023-10-24 21:41:37.676338455+00:00,1 +2023-10-24 21:41:37.805453824+00:00,1 +2023-10-24 21:41:37.938481985+00:00,1 +2023-10-24 21:41:38.068375209+00:00,1 +2023-10-24 21:41:38.199476838+00:00,1 +2023-10-24 21:41:38.327792936+00:00,1 +2023-10-24 21:41:38.456624333+00:00,1 +2023-10-24 21:41:38.586531767+00:00,1 +2023-10-24 21:41:38.714961580+00:00,1 +2023-10-24 21:41:38.843455690+00:00,1 +2023-10-24 21:41:38.971485153+00:00,1 +2023-10-24 21:41:39.100135716+00:00,1 +2023-10-24 21:41:39.229270757+00:00,1 +2023-10-24 21:41:39.360104452+00:00,1 +2023-10-24 21:41:39.490457020+00:00,1 +2023-10-24 21:41:39.618890529+00:00,1 +2023-10-24 21:41:39.747470405+00:00,1 +2023-10-24 21:41:39.875409575+00:00,0 +2023-10-24 21:41:41.888396475+00:00,0 +2023-10-24 21:41:43.900606693+00:00,0 +2023-10-24 21:41:45.913042617+00:00,0 +2023-10-24 21:41:46.925929245+00:00,0 +2023-10-24 21:41:46.937389789+00:00,0 +2023-10-24 21:41:46.948302658+00:00,0 +2023-10-24 21:41:48.961383253+00:00,0 +2023-10-24 21:41:50.974352536+00:00,0 +2023-10-24 21:41:52.986359792+00:00,0 +2023-10-24 21:41:54.998230337+00:00,0 +2023-10-24 21:41:57.010685660+00:00,0 +2023-10-24 21:41:59.023286332+00:00,0 +2023-10-24 21:42:01.035829849+00:00,0 +2023-10-24 21:42:03.048600245+00:00,1 +2023-10-24 21:42:03.174231623+00:00,1 +2023-10-24 21:42:03.301444479+00:00,1 +2023-10-24 21:42:03.428093346+00:00,1 +2023-10-24 21:42:03.554266964+00:00,1 +2023-10-24 21:42:03.679124508+00:00,1 +2023-10-24 21:42:03.804025754+00:00,1 +2023-10-24 21:42:03.928770928+00:00,0 +2023-10-24 21:42:05.940934980+00:00,1 diff --git a/tests/zero-downtime-scaling/results/1.0.0/10-node/abrupt-down-https.png b/tests/zero-downtime-scaling/results/1.0.0/10-node/abrupt-down-https.png new file mode 100644 index 0000000000000000000000000000000000000000..aecac5022f766bf281069e0c4460ba9356ccc406 GIT binary patch literal 6411 zcmeHLX;c&0w%)cl3)mNDrd+uKihzO|goc1J!~sE&21FE8h9Hv+LB>Q>VuKJ-1VyIC z0LnZEK?sTn&D_C&0s$jK43aPt0)%?Ob#LGI)_d#zeSci*RMoCs=j`+CuXgQI`}}5p z)mrfMX%GC?M+B5|M)r#3%rLA|OPBfPBc~P?pzTj&>m!6bg2{D-gGCCF+YBk?2rMbU=tJ`1O%AQFB1jyph^kMC1=r z+e%HDKqk`4Ti+mWT5AhK5dAa+RZ~+VLMQwQmR7^U8W5}n{(6|*2s4{tN*pF7V0;U3 z{{~}HFuDym+kw3khIhk|G<=Z-mK+SAfVl_y6rg7>d{TsNWnk=w4=O-cg${LSKM1WF z(4q-VN1zc64O&pI4exZ|tuEAJfTj=C$Kmw}s5F8K6QE+D>=cxqhGJ7FG=lCwSrl39j(i4dSlDLl1c11!QlC_JRAp z5a|#10)TWA?gqh~UaB%+_>YtSyU~v}q+6!o$(`q& z&UJB@^`%LwZB3Swye$jzI@>*v?)Y6AUSD2nm4!a*CGkHFEf34r64>KPSAl{3LFDl$0q`Fc4ECgKr6Z(IiMFIgU2_KIIz3OCHok ziZCmR z*b_6(HyajM1RgQS%y0^HCs}1}pz9^063pQJrcm34HFa&z_w}rR@OUq5w(6)q)W#5d z6-2~s!#xg@q<7g1dZyVFW(F&3o?(}ZE&v#zUSn?tjF;UsKJU^uGlNhh1NnQ z@2ZU>o}Hj{&qTh*bz!~~p|Cqr&Q6P*H6x5pXE@^Qj&SD{gjza=DTL?fyux2jNl=GH3Gm`EOt7 z9fI*YXH=s36(JiAEy_`71BVTG(P27cfq0F4rA$+{AYRxInI78j7c|czlnGlAGk0?pgL9?r!Dl52W9@AR zlgfrh?sTW>*y+4@oTl8v*3BZxw^KXh26POT^Q-=?RBuNJb_tK9Y~M{ZrA<%jr#hkpgZqTMIa(v*DR_*M=RPo1*ydo*a%MO3Euay^}FX9?7X z@u(^50XHNbc~W&N6>|%1`rwl8#q0%IZ)I>VqeZRM>QEI+i&m)F#E(Bw-8wADt-6KG zis8*3RJyh$s7X=wjm~v^=)7CLNY$O?=VmWQ;PH-^{U(peeAJ&wl6Hxld8dlb zhz6mh?MltJylUA_*?%Lv@i`k7I!ED-mC$sI;oN_^%2gsBEc^$iA+Z2O@nw zO35^*yETj(s9g>oI*#O-d_we^CZhHUe{UFm+on8VzD{*4w<{q=50O8D;71Vr2!j8d5$ml>r))MSHj8I{S?WG+ z6?$VUF16q(iaRTQc8l=5{8Q9wrAGBxmpX>(w?0~>8$$`LH+5HvLdde}64r~#r(ccE ziH}#uI0d}fFf}OT^u9DeO)9qTGsMWv^Tl8Rq{P;+5HTw z9KBbQPt}u9buups6dOw$CUy>4dxyIps;+k>ttOTPteXX4+D;5S`BT4Ig?+Ib zCG$yF$PLQo59b>?-G>D|DhjH`iILtbK>Y=+wI@Ga0-L!xYpK#&M!&03km@#gf%65 zpBcMFHupAm8z;&MrhGQ9Ztc1xjXOm5^LL@VxiPtU954i`I=U+cuSzT^%Vm#dQx>rPz>KO@5Jck>qmywPs8`(CjD zCfSv%zl?~-mU~syW2=r{ycCaiuMl8KWg^a5E?wzeQESwV1GVT5J$OV0H`mzBw-;(- zWH^OW{$WSWt;e>Ng=t$z(D_C^MJygO@LPlq?Ld@_^qy7|?U11G(z>eK_0rGl!@Kd$ zk|vR?_twUV7!iuxK1+<;cYaSGH-;vMZ>5m^ZZ_nUy3|!`TIlK&_EWz*<53|@oF?Ql z4oCz!Z@Q!-6QpIaxt;wuc7*(T93`B@mgFq%neC22bB-Eo&!oEXqD2On(WM@B$s>9F zWvsK^(}RQSIMpP1wfx1>iBDK=wxocE81_!!Shr)Ht@%cy`DaL@!3whU_sOxDYsT-b z49(|Ny3{4d^X+M@IlGW*bf{j*)MDnM0;8e1sQ;S+6SH&?3GKv4ihR~?JK9l$73O^S zHK#^7Wa-tLF7W_qTyMm)OYzmxp2z6%;?x1b4#UXFoW*C|f@0CT5Eh7?p~Xyo!4B#V z#*}NDB<58grC*^mGm>MQCP!yW`VZ3=FJ<7~P>mA*vZ3_X7xi73QAAcv-thUl1{<#+ Q+R=rRMrRH4k2{3_7d|5|rvLx| literal 0 HcmV?d00001 diff --git a/tests/zero-downtime-scaling/results/1.0.0/10-node/abrupt-up-http.csv b/tests/zero-downtime-scaling/results/1.0.0/10-node/abrupt-up-http.csv new file mode 100644 index 000000000..db1afc7aa --- /dev/null +++ b/tests/zero-downtime-scaling/results/1.0.0/10-node/abrupt-up-http.csv @@ -0,0 +1,565 @@ +2023-10-24 21:35:47.499082650+00:00,1 +2023-10-24 21:35:47.615057369+00:00,1 +2023-10-24 21:35:47.730277526+00:00,1 +2023-10-24 21:35:47.845717094+00:00,1 +2023-10-24 21:35:47.961167987+00:00,1 +2023-10-24 21:35:48.076571650+00:00,1 +2023-10-24 21:35:48.191111393+00:00,1 +2023-10-24 21:35:48.305584515+00:00,1 +2023-10-24 21:35:48.421212225+00:00,1 +2023-10-24 21:35:48.537427135+00:00,1 +2023-10-24 21:35:48.651956724+00:00,1 +2023-10-24 21:35:48.766765844+00:00,1 +2023-10-24 21:35:48.881322748+00:00,1 +2023-10-24 21:35:48.996808353+00:00,1 +2023-10-24 21:35:49.111292342+00:00,1 +2023-10-24 21:35:49.225503747+00:00,1 +2023-10-24 21:35:49.340595796+00:00,1 +2023-10-24 21:35:49.454824307+00:00,1 +2023-10-24 21:35:49.569304688+00:00,1 +2023-10-24 21:35:49.683918021+00:00,1 +2023-10-24 21:35:49.799487172+00:00,1 +2023-10-24 21:35:49.913852473+00:00,1 +2023-10-24 21:35:50.030339045+00:00,1 +2023-10-24 21:35:50.146564244+00:00,1 +2023-10-24 21:35:50.262193848+00:00,1 +2023-10-24 21:35:50.378903432+00:00,1 +2023-10-24 21:35:50.494404557+00:00,1 +2023-10-24 21:35:50.611360705+00:00,1 +2023-10-24 21:35:50.726976801+00:00,1 +2023-10-24 21:35:50.842798579+00:00,1 +2023-10-24 21:35:50.958604189+00:00,1 +2023-10-24 21:35:51.075253216+00:00,1 +2023-10-24 21:35:51.190731118+00:00,1 +2023-10-24 21:35:51.306541733+00:00,1 +2023-10-24 21:35:51.421655736+00:00,1 +2023-10-24 21:35:51.537315242+00:00,1 +2023-10-24 21:35:51.653245165+00:00,1 +2023-10-24 21:35:51.768078394+00:00,1 +2023-10-24 21:35:51.883511053+00:00,1 +2023-10-24 21:35:51.999123032+00:00,1 +2023-10-24 21:35:52.115048570+00:00,1 +2023-10-24 21:35:52.231212029+00:00,1 +2023-10-24 21:35:52.348001659+00:00,1 +2023-10-24 21:35:52.463750602+00:00,1 +2023-10-24 21:35:52.580401971+00:00,1 +2023-10-24 21:35:52.695701877+00:00,1 +2023-10-24 21:35:52.811041583+00:00,1 +2023-10-24 21:35:52.926540459+00:00,1 +2023-10-24 21:35:53.042042362+00:00,1 +2023-10-24 21:35:53.157388564+00:00,1 +2023-10-24 21:35:53.272455206+00:00,1 +2023-10-24 21:35:53.389483336+00:00,1 +2023-10-24 21:35:53.504446369+00:00,1 +2023-10-24 21:35:53.619533506+00:00,1 +2023-10-24 21:35:53.738374340+00:00,1 +2023-10-24 21:35:53.853880229+00:00,1 +2023-10-24 21:35:53.969923231+00:00,1 +2023-10-24 21:35:54.086583999+00:00,1 +2023-10-24 21:35:54.202601384+00:00,1 +2023-10-24 21:35:54.318567201+00:00,1 +2023-10-24 21:35:54.433554729+00:00,1 +2023-10-24 21:35:54.549072049+00:00,1 +2023-10-24 21:35:54.664898073+00:00,1 +2023-10-24 21:35:54.780088828+00:00,1 +2023-10-24 21:35:54.896032741+00:00,1 +2023-10-24 21:35:55.011268566+00:00,1 +2023-10-24 21:35:55.126513451+00:00,1 +2023-10-24 21:35:55.242436864+00:00,1 +2023-10-24 21:35:55.359303288+00:00,1 +2023-10-24 21:35:55.475676375+00:00,1 +2023-10-24 21:35:55.591376631+00:00,1 +2023-10-24 21:35:55.707059890+00:00,1 +2023-10-24 21:35:55.822427672+00:00,1 +2023-10-24 21:35:55.937762163+00:00,1 +2023-10-24 21:35:56.053189220+00:00,1 +2023-10-24 21:35:56.168655154+00:00,1 +2023-10-24 21:35:56.284062685+00:00,1 +2023-10-24 21:35:56.399260684+00:00,1 +2023-10-24 21:35:56.514581513+00:00,1 +2023-10-24 21:35:56.630059655+00:00,1 +2023-10-24 21:35:56.745489382+00:00,1 +2023-10-24 21:35:56.861277983+00:00,1 +2023-10-24 21:35:56.976651444+00:00,1 +2023-10-24 21:35:57.092474613+00:00,1 +2023-10-24 21:35:57.207821057+00:00,1 +2023-10-24 21:35:57.322517851+00:00,1 +2023-10-24 21:35:57.438409974+00:00,1 +2023-10-24 21:35:57.554419502+00:00,1 +2023-10-24 21:35:57.669803001+00:00,1 +2023-10-24 21:35:57.785377172+00:00,1 +2023-10-24 21:35:57.902288505+00:00,1 +2023-10-24 21:35:58.017869522+00:00,1 +2023-10-24 21:35:58.133542729+00:00,1 +2023-10-24 21:35:58.248557487+00:00,1 +2023-10-24 21:35:58.364153684+00:00,1 +2023-10-24 21:35:58.479722570+00:00,1 +2023-10-24 21:35:58.595272794+00:00,1 +2023-10-24 21:35:58.711103447+00:00,1 +2023-10-24 21:35:58.826425562+00:00,1 +2023-10-24 21:35:58.943022212+00:00,1 +2023-10-24 21:35:59.058775067+00:00,1 +2023-10-24 21:35:59.174468338+00:00,1 +2023-10-24 21:35:59.290210711+00:00,1 +2023-10-24 21:35:59.405872221+00:00,1 +2023-10-24 21:35:59.521909510+00:00,1 +2023-10-24 21:35:59.638285381+00:00,1 +2023-10-24 21:35:59.754377299+00:00,1 +2023-10-24 21:35:59.870298888+00:00,1 +2023-10-24 21:35:59.986284267+00:00,1 +2023-10-24 21:36:00.102621696+00:00,1 +2023-10-24 21:36:00.219246361+00:00,1 +2023-10-24 21:36:00.335075120+00:00,1 +2023-10-24 21:36:00.451123886+00:00,1 +2023-10-24 21:36:00.567651491+00:00,1 +2023-10-24 21:36:00.683387869+00:00,1 +2023-10-24 21:36:00.799298779+00:00,1 +2023-10-24 21:36:00.915163038+00:00,1 +2023-10-24 21:36:01.031719041+00:00,1 +2023-10-24 21:36:01.147206111+00:00,1 +2023-10-24 21:36:01.262574263+00:00,1 +2023-10-24 21:36:01.378270947+00:00,1 +2023-10-24 21:36:01.494995247+00:00,1 +2023-10-24 21:36:01.611924535+00:00,1 +2023-10-24 21:36:01.727772233+00:00,1 +2023-10-24 21:36:01.843365139+00:00,1 +2023-10-24 21:36:01.959538583+00:00,1 +2023-10-24 21:36:02.075809778+00:00,1 +2023-10-24 21:36:02.191520838+00:00,1 +2023-10-24 21:36:02.308067908+00:00,1 +2023-10-24 21:36:02.423908742+00:00,1 +2023-10-24 21:36:02.540823155+00:00,1 +2023-10-24 21:36:02.656327343+00:00,1 +2023-10-24 21:36:02.771433119+00:00,1 +2023-10-24 21:36:02.887322279+00:00,1 +2023-10-24 21:36:03.003374626+00:00,1 +2023-10-24 21:36:03.119406849+00:00,1 +2023-10-24 21:36:03.234946877+00:00,1 +2023-10-24 21:36:03.350872896+00:00,1 +2023-10-24 21:36:03.466545211+00:00,1 +2023-10-24 21:36:03.584533453+00:00,1 +2023-10-24 21:36:03.700118783+00:00,1 +2023-10-24 21:36:03.816380614+00:00,1 +2023-10-24 21:36:03.932426930+00:00,1 +2023-10-24 21:36:04.049694108+00:00,1 +2023-10-24 21:36:04.165299601+00:00,1 +2023-10-24 21:36:04.281067867+00:00,1 +2023-10-24 21:36:04.397794283+00:00,1 +2023-10-24 21:36:04.513023223+00:00,1 +2023-10-24 21:36:04.628847900+00:00,1 +2023-10-24 21:36:04.743806592+00:00,1 +2023-10-24 21:36:04.859013231+00:00,1 +2023-10-24 21:36:04.974170525+00:00,1 +2023-10-24 21:36:05.090972063+00:00,1 +2023-10-24 21:36:05.206766413+00:00,1 +2023-10-24 21:36:05.322259264+00:00,1 +2023-10-24 21:36:05.437398584+00:00,1 +2023-10-24 21:36:05.553395575+00:00,1 +2023-10-24 21:36:05.669018775+00:00,1 +2023-10-24 21:36:05.784681018+00:00,1 +2023-10-24 21:36:05.900351481+00:00,1 +2023-10-24 21:36:06.016476055+00:00,1 +2023-10-24 21:36:06.132139337+00:00,1 +2023-10-24 21:36:06.247660278+00:00,1 +2023-10-24 21:36:06.363718868+00:00,1 +2023-10-24 21:36:06.479967968+00:00,1 +2023-10-24 21:36:06.595427842+00:00,1 +2023-10-24 21:36:06.710954560+00:00,1 +2023-10-24 21:36:06.826303448+00:00,1 +2023-10-24 21:36:06.942335383+00:00,1 +2023-10-24 21:36:07.058552625+00:00,1 +2023-10-24 21:36:07.176343998+00:00,1 +2023-10-24 21:36:07.292233497+00:00,1 +2023-10-24 21:36:07.407843098+00:00,1 +2023-10-24 21:36:07.523712110+00:00,1 +2023-10-24 21:36:07.640100388+00:00,1 +2023-10-24 21:36:07.756943424+00:00,1 +2023-10-24 21:36:07.872911087+00:00,1 +2023-10-24 21:36:07.988637497+00:00,1 +2023-10-24 21:36:08.105439172+00:00,1 +2023-10-24 21:36:08.221988089+00:00,1 +2023-10-24 21:36:08.337600088+00:00,1 +2023-10-24 21:36:08.453522315+00:00,1 +2023-10-24 21:36:08.568743088+00:00,1 +2023-10-24 21:36:08.684017507+00:00,1 +2023-10-24 21:36:08.799781219+00:00,1 +2023-10-24 21:36:08.915396732+00:00,1 +2023-10-24 21:36:09.030857216+00:00,1 +2023-10-24 21:36:09.146931589+00:00,1 +2023-10-24 21:36:09.262579570+00:00,1 +2023-10-24 21:36:09.378357300+00:00,1 +2023-10-24 21:36:09.493776680+00:00,1 +2023-10-24 21:36:09.609328412+00:00,1 +2023-10-24 21:36:09.724226896+00:00,1 +2023-10-24 21:36:09.839599143+00:00,1 +2023-10-24 21:36:09.955074303+00:00,1 +2023-10-24 21:36:10.070709303+00:00,1 +2023-10-24 21:36:10.186569925+00:00,1 +2023-10-24 21:36:10.302324516+00:00,1 +2023-10-24 21:36:10.418753242+00:00,1 +2023-10-24 21:36:10.534457630+00:00,1 +2023-10-24 21:36:10.650119854+00:00,1 +2023-10-24 21:36:10.766199722+00:00,1 +2023-10-24 21:36:10.882886206+00:00,1 +2023-10-24 21:36:10.998663905+00:00,1 +2023-10-24 21:36:11.115058002+00:00,1 +2023-10-24 21:36:11.230667767+00:00,1 +2023-10-24 21:36:11.346758160+00:00,1 +2023-10-24 21:36:11.463409727+00:00,1 +2023-10-24 21:36:11.579597339+00:00,1 +2023-10-24 21:36:11.695280138+00:00,1 +2023-10-24 21:36:11.811151483+00:00,1 +2023-10-24 21:36:11.926723217+00:00,1 +2023-10-24 21:36:12.042621880+00:00,1 +2023-10-24 21:36:12.158513920+00:00,1 +2023-10-24 21:36:12.274258677+00:00,1 +2023-10-24 21:36:12.390685312+00:00,1 +2023-10-24 21:36:12.506834418+00:00,1 +2023-10-24 21:36:12.623237184+00:00,1 +2023-10-24 21:36:12.738755281+00:00,1 +2023-10-24 21:36:12.854765305+00:00,1 +2023-10-24 21:36:12.970555168+00:00,1 +2023-10-24 21:36:13.087539890+00:00,1 +2023-10-24 21:36:13.203075828+00:00,1 +2023-10-24 21:36:13.318213580+00:00,1 +2023-10-24 21:36:13.433151110+00:00,1 +2023-10-24 21:36:13.548544273+00:00,1 +2023-10-24 21:36:13.664487968+00:00,1 +2023-10-24 21:36:13.780960617+00:00,1 +2023-10-24 21:36:13.896910722+00:00,1 +2023-10-24 21:36:14.015090008+00:00,1 +2023-10-24 21:36:14.131627629+00:00,1 +2023-10-24 21:36:14.247478359+00:00,1 +2023-10-24 21:36:14.363843626+00:00,1 +2023-10-24 21:36:14.480001951+00:00,1 +2023-10-24 21:36:14.596132949+00:00,1 +2023-10-24 21:36:14.712006542+00:00,1 +2023-10-24 21:36:14.827996151+00:00,1 +2023-10-24 21:36:14.945130915+00:00,1 +2023-10-24 21:36:15.060589395+00:00,1 +2023-10-24 21:36:15.176609480+00:00,1 +2023-10-24 21:36:15.292866205+00:00,1 +2023-10-24 21:36:15.409435387+00:00,1 +2023-10-24 21:36:15.525595893+00:00,1 +2023-10-24 21:36:15.642641269+00:00,1 +2023-10-24 21:36:15.758654803+00:00,1 +2023-10-24 21:36:15.874832589+00:00,1 +2023-10-24 21:36:15.990903241+00:00,1 +2023-10-24 21:36:16.106589287+00:00,1 +2023-10-24 21:36:16.222194129+00:00,1 +2023-10-24 21:36:16.337458450+00:00,1 +2023-10-24 21:36:16.452727975+00:00,1 +2023-10-24 21:36:16.568587031+00:00,1 +2023-10-24 21:36:16.684675284+00:00,1 +2023-10-24 21:36:16.800633478+00:00,1 +2023-10-24 21:36:16.917022431+00:00,1 +2023-10-24 21:36:17.033508155+00:00,1 +2023-10-24 21:36:17.150235421+00:00,1 +2023-10-24 21:36:17.265683107+00:00,1 +2023-10-24 21:36:17.381627342+00:00,1 +2023-10-24 21:36:17.497410790+00:00,1 +2023-10-24 21:36:17.613030112+00:00,1 +2023-10-24 21:36:17.727891361+00:00,1 +2023-10-24 21:36:17.843483334+00:00,1 +2023-10-24 21:36:17.959856293+00:00,1 +2023-10-24 21:36:18.076458766+00:00,1 +2023-10-24 21:36:18.194110959+00:00,1 +2023-10-24 21:36:18.310359107+00:00,1 +2023-10-24 21:36:18.425617801+00:00,1 +2023-10-24 21:36:18.541438688+00:00,1 +2023-10-24 21:36:18.657375010+00:00,1 +2023-10-24 21:36:18.772857711+00:00,1 +2023-10-24 21:36:18.889035026+00:00,1 +2023-10-24 21:36:19.005417471+00:00,1 +2023-10-24 21:36:19.121288062+00:00,1 +2023-10-24 21:36:19.236653643+00:00,1 +2023-10-24 21:36:19.352974862+00:00,1 +2023-10-24 21:36:19.468536655+00:00,1 +2023-10-24 21:36:19.584491951+00:00,1 +2023-10-24 21:36:19.700079040+00:00,1 +2023-10-24 21:36:19.816093176+00:00,1 +2023-10-24 21:36:19.932664219+00:00,1 +2023-10-24 21:36:20.048381997+00:00,1 +2023-10-24 21:36:20.163993994+00:00,1 +2023-10-24 21:36:20.280295917+00:00,1 +2023-10-24 21:36:20.396357101+00:00,1 +2023-10-24 21:36:20.511817529+00:00,1 +2023-10-24 21:36:20.627888414+00:00,1 +2023-10-24 21:36:20.743185522+00:00,1 +2023-10-24 21:36:20.858850585+00:00,1 +2023-10-24 21:36:20.975968607+00:00,1 +2023-10-24 21:36:21.091759680+00:00,1 +2023-10-24 21:36:21.207225551+00:00,1 +2023-10-24 21:36:21.322901141+00:00,1 +2023-10-24 21:36:21.438799587+00:00,1 +2023-10-24 21:36:21.555388600+00:00,1 +2023-10-24 21:36:21.671914306+00:00,1 +2023-10-24 21:36:21.787386474+00:00,1 +2023-10-24 21:36:21.903429142+00:00,1 +2023-10-24 21:36:22.020983709+00:00,1 +2023-10-24 21:36:22.136312398+00:00,1 +2023-10-24 21:36:22.252466920+00:00,1 +2023-10-24 21:36:22.368209167+00:00,1 +2023-10-24 21:36:22.484916195+00:00,1 +2023-10-24 21:36:22.600590441+00:00,1 +2023-10-24 21:36:22.717339054+00:00,1 +2023-10-24 21:36:22.833654197+00:00,1 +2023-10-24 21:36:22.949997487+00:00,1 +2023-10-24 21:36:23.066493379+00:00,1 +2023-10-24 21:36:23.182105635+00:00,1 +2023-10-24 21:36:23.297253804+00:00,1 +2023-10-24 21:36:23.413247102+00:00,1 +2023-10-24 21:36:23.528832833+00:00,1 +2023-10-24 21:36:23.644972146+00:00,1 +2023-10-24 21:36:23.760755508+00:00,1 +2023-10-24 21:36:23.876353634+00:00,1 +2023-10-24 21:36:23.994458495+00:00,1 +2023-10-24 21:36:24.110224187+00:00,1 +2023-10-24 21:36:24.226261430+00:00,1 +2023-10-24 21:36:24.342275847+00:00,1 +2023-10-24 21:36:24.457819487+00:00,1 +2023-10-24 21:36:24.573080768+00:00,1 +2023-10-24 21:36:24.689137952+00:00,1 +2023-10-24 21:36:24.804748666+00:00,1 +2023-10-24 21:36:24.920398664+00:00,1 +2023-10-24 21:36:25.035902662+00:00,1 +2023-10-24 21:36:25.151645633+00:00,1 +2023-10-24 21:36:25.268053017+00:00,1 +2023-10-24 21:36:25.384143649+00:00,1 +2023-10-24 21:36:25.500649491+00:00,1 +2023-10-24 21:36:25.616969720+00:00,1 +2023-10-24 21:36:25.732388447+00:00,1 +2023-10-24 21:36:25.848253928+00:00,1 +2023-10-24 21:36:25.965588752+00:00,1 +2023-10-24 21:36:26.082846269+00:00,1 +2023-10-24 21:36:26.198428476+00:00,1 +2023-10-24 21:36:26.313693273+00:00,1 +2023-10-24 21:36:26.429403586+00:00,1 +2023-10-24 21:36:26.544374894+00:00,1 +2023-10-24 21:36:26.659895594+00:00,1 +2023-10-24 21:36:26.775790094+00:00,1 +2023-10-24 21:36:26.891836369+00:00,1 +2023-10-24 21:36:27.009069213+00:00,1 +2023-10-24 21:36:27.125079663+00:00,1 +2023-10-24 21:36:27.241326130+00:00,1 +2023-10-24 21:36:27.356994611+00:00,1 +2023-10-24 21:36:27.472522808+00:00,1 +2023-10-24 21:36:27.588255067+00:00,1 +2023-10-24 21:36:27.703711272+00:00,1 +2023-10-24 21:36:27.819914130+00:00,1 +2023-10-24 21:36:27.937097871+00:00,1 +2023-10-24 21:36:28.052426267+00:00,1 +2023-10-24 21:36:28.167795686+00:00,1 +2023-10-24 21:36:28.283145445+00:00,1 +2023-10-24 21:36:28.398917999+00:00,1 +2023-10-24 21:36:28.514566247+00:00,1 +2023-10-24 21:36:28.630572198+00:00,1 +2023-10-24 21:36:28.748206833+00:00,1 +2023-10-24 21:36:28.864752631+00:00,1 +2023-10-24 21:36:28.981449405+00:00,1 +2023-10-24 21:36:29.098180793+00:00,1 +2023-10-24 21:36:29.213981571+00:00,1 +2023-10-24 21:36:29.330135017+00:00,1 +2023-10-24 21:36:29.445817924+00:00,1 +2023-10-24 21:36:29.562441276+00:00,1 +2023-10-24 21:36:29.678439179+00:00,1 +2023-10-24 21:36:29.793949916+00:00,1 +2023-10-24 21:36:29.909120525+00:00,1 +2023-10-24 21:36:30.025384688+00:00,1 +2023-10-24 21:36:30.142193630+00:00,1 +2023-10-24 21:36:30.258224955+00:00,1 +2023-10-24 21:36:30.377488924+00:00,1 +2023-10-24 21:36:30.493237669+00:00,1 +2023-10-24 21:36:30.608455349+00:00,1 +2023-10-24 21:36:30.723530573+00:00,1 +2023-10-24 21:36:30.839895523+00:00,1 +2023-10-24 21:36:30.955673245+00:00,1 +2023-10-24 21:36:31.072090758+00:00,1 +2023-10-24 21:36:31.189301188+00:00,1 +2023-10-24 21:36:31.304985892+00:00,1 +2023-10-24 21:36:31.421421319+00:00,1 +2023-10-24 21:36:31.538463607+00:00,1 +2023-10-24 21:36:31.654459321+00:00,1 +2023-10-24 21:36:31.770190188+00:00,1 +2023-10-24 21:36:31.886793289+00:00,1 +2023-10-24 21:36:32.003272518+00:00,1 +2023-10-24 21:36:32.119987798+00:00,1 +2023-10-24 21:36:32.237586126+00:00,1 +2023-10-24 21:36:32.353215687+00:00,1 +2023-10-24 21:36:32.469378190+00:00,1 +2023-10-24 21:36:32.585345645+00:00,1 +2023-10-24 21:36:32.702293050+00:00,1 +2023-10-24 21:36:32.817795102+00:00,1 +2023-10-24 21:36:32.934014767+00:00,1 +2023-10-24 21:36:33.050213310+00:00,1 +2023-10-24 21:36:33.166099129+00:00,1 +2023-10-24 21:36:33.282324442+00:00,1 +2023-10-24 21:36:33.398466472+00:00,1 +2023-10-24 21:36:33.514988829+00:00,1 +2023-10-24 21:36:33.631782817+00:00,1 +2023-10-24 21:36:33.748375353+00:00,1 +2023-10-24 21:36:33.864820828+00:00,1 +2023-10-24 21:36:33.982401620+00:00,1 +2023-10-24 21:36:34.097757735+00:00,1 +2023-10-24 21:36:34.212647033+00:00,1 +2023-10-24 21:36:34.329127723+00:00,1 +2023-10-24 21:36:34.445155849+00:00,1 +2023-10-24 21:36:34.562457614+00:00,1 +2023-10-24 21:36:34.678957302+00:00,1 +2023-10-24 21:36:34.795777059+00:00,1 +2023-10-24 21:36:34.912090037+00:00,1 +2023-10-24 21:36:35.029092378+00:00,1 +2023-10-24 21:36:35.145842832+00:00,1 +2023-10-24 21:36:35.261997054+00:00,1 +2023-10-24 21:36:35.382889125+00:00,1 +2023-10-24 21:36:35.499999620+00:00,1 +2023-10-24 21:36:35.616014967+00:00,1 +2023-10-24 21:36:35.732556616+00:00,1 +2023-10-24 21:36:35.850094146+00:00,1 +2023-10-24 21:36:35.966764147+00:00,1 +2023-10-24 21:36:36.082935966+00:00,1 +2023-10-24 21:36:36.200350701+00:00,1 +2023-10-24 21:36:36.316793681+00:00,1 +2023-10-24 21:36:36.432694355+00:00,1 +2023-10-24 21:36:36.549078191+00:00,1 +2023-10-24 21:36:36.665181982+00:00,1 +2023-10-24 21:36:36.782056885+00:00,1 +2023-10-24 21:36:36.898764520+00:00,1 +2023-10-24 21:36:37.014453842+00:00,1 +2023-10-24 21:36:37.130666349+00:00,1 +2023-10-24 21:36:37.246524728+00:00,1 +2023-10-24 21:36:37.364431732+00:00,1 +2023-10-24 21:36:37.481061465+00:00,1 +2023-10-24 21:36:37.598177107+00:00,1 +2023-10-24 21:36:37.714258396+00:00,1 +2023-10-24 21:36:37.830256854+00:00,1 +2023-10-24 21:36:37.947191254+00:00,1 +2023-10-24 21:36:38.064047134+00:00,1 +2023-10-24 21:36:38.180239426+00:00,1 +2023-10-24 21:36:38.296344918+00:00,1 +2023-10-24 21:36:38.413239746+00:00,1 +2023-10-24 21:36:38.530234015+00:00,1 +2023-10-24 21:36:38.646974239+00:00,1 +2023-10-24 21:36:38.762527983+00:00,1 +2023-10-24 21:36:38.878933091+00:00,1 +2023-10-24 21:36:38.995393348+00:00,1 +2023-10-24 21:36:39.111746222+00:00,1 +2023-10-24 21:36:39.228902360+00:00,1 +2023-10-24 21:36:39.345223507+00:00,1 +2023-10-24 21:36:39.462788288+00:00,1 +2023-10-24 21:36:39.580488874+00:00,1 +2023-10-24 21:36:39.696493541+00:00,1 +2023-10-24 21:36:39.812790088+00:00,1 +2023-10-24 21:36:39.929832485+00:00,1 +2023-10-24 21:36:40.046544813+00:00,1 +2023-10-24 21:36:40.163389485+00:00,1 +2023-10-24 21:36:40.280926949+00:00,1 +2023-10-24 21:36:40.400683765+00:00,1 +2023-10-24 21:36:40.517191016+00:00,1 +2023-10-24 21:36:40.633588409+00:00,1 +2023-10-24 21:36:40.748698377+00:00,1 +2023-10-24 21:36:40.864358557+00:00,1 +2023-10-24 21:36:40.980775852+00:00,1 +2023-10-24 21:36:41.097148821+00:00,1 +2023-10-24 21:36:41.213533892+00:00,1 +2023-10-24 21:36:41.328764977+00:00,1 +2023-10-24 21:36:41.444440179+00:00,1 +2023-10-24 21:36:41.560217689+00:00,1 +2023-10-24 21:36:41.676218631+00:00,1 +2023-10-24 21:36:41.792237890+00:00,1 +2023-10-24 21:36:41.908609352+00:00,1 +2023-10-24 21:36:42.025731667+00:00,1 +2023-10-24 21:36:42.142528928+00:00,1 +2023-10-24 21:36:42.258682277+00:00,1 +2023-10-24 21:36:42.375130009+00:00,1 +2023-10-24 21:36:42.491644768+00:00,1 +2023-10-24 21:36:42.608473387+00:00,1 +2023-10-24 21:36:42.724819941+00:00,1 +2023-10-24 21:36:42.842101331+00:00,1 +2023-10-24 21:36:42.958536829+00:00,1 +2023-10-24 21:36:43.073931837+00:00,1 +2023-10-24 21:36:43.190293496+00:00,1 +2023-10-24 21:36:43.306689623+00:00,1 +2023-10-24 21:36:43.422545435+00:00,1 +2023-10-24 21:36:43.539149569+00:00,1 +2023-10-24 21:36:43.654847269+00:00,1 +2023-10-24 21:36:43.771000630+00:00,1 +2023-10-24 21:36:43.888212314+00:00,1 +2023-10-24 21:36:44.004944667+00:00,1 +2023-10-24 21:36:44.123127363+00:00,1 +2023-10-24 21:36:44.239059961+00:00,1 +2023-10-24 21:36:44.354560041+00:00,1 +2023-10-24 21:36:44.471064396+00:00,1 +2023-10-24 21:36:44.587316695+00:00,1 +2023-10-24 21:36:44.703619380+00:00,1 +2023-10-24 21:36:44.820229702+00:00,1 +2023-10-24 21:36:44.936083135+00:00,1 +2023-10-24 21:36:45.051317590+00:00,1 +2023-10-24 21:36:45.167893822+00:00,1 +2023-10-24 21:36:45.283366447+00:00,1 +2023-10-24 21:36:45.399457062+00:00,1 +2023-10-24 21:36:45.515996446+00:00,1 +2023-10-24 21:36:45.632164043+00:00,1 +2023-10-24 21:36:45.748402239+00:00,1 +2023-10-24 21:36:45.864687440+00:00,1 +2023-10-24 21:36:45.981664726+00:00,1 +2023-10-24 21:36:46.097814265+00:00,1 +2023-10-24 21:36:46.214265863+00:00,1 +2023-10-24 21:36:46.331375992+00:00,1 +2023-10-24 21:36:46.448350175+00:00,1 +2023-10-24 21:36:46.565330493+00:00,1 +2023-10-24 21:36:46.681643680+00:00,1 +2023-10-24 21:36:46.797454640+00:00,1 +2023-10-24 21:36:46.913578881+00:00,1 +2023-10-24 21:36:47.030757091+00:00,1 +2023-10-24 21:36:47.146991673+00:00,1 +2023-10-24 21:36:47.264337249+00:00,1 +2023-10-24 21:36:47.381155907+00:00,1 +2023-10-24 21:36:47.496540433+00:00,1 +2023-10-24 21:36:47.613000288+00:00,1 +2023-10-24 21:36:47.729824171+00:00,1 +2023-10-24 21:36:47.845910705+00:00,1 +2023-10-24 21:36:47.963098850+00:00,1 +2023-10-24 21:36:48.080164966+00:00,1 +2023-10-24 21:36:48.197311783+00:00,1 +2023-10-24 21:36:48.314320549+00:00,1 +2023-10-24 21:36:48.430665644+00:00,1 +2023-10-24 21:36:48.546510066+00:00,1 +2023-10-24 21:36:48.663904821+00:00,1 +2023-10-24 21:36:48.780654614+00:00,1 +2023-10-24 21:36:48.898332152+00:00,1 +2023-10-24 21:36:49.015785494+00:00,1 +2023-10-24 21:36:49.132214345+00:00,1 +2023-10-24 21:36:49.248522817+00:00,1 +2023-10-24 21:36:49.365369134+00:00,1 +2023-10-24 21:36:49.482281842+00:00,1 +2023-10-24 21:36:49.598707930+00:00,1 +2023-10-24 21:36:49.716002314+00:00,1 +2023-10-24 21:36:49.832377541+00:00,1 +2023-10-24 21:36:49.951219911+00:00,1 +2023-10-24 21:36:50.067067829+00:00,1 +2023-10-24 21:36:50.184047734+00:00,1 +2023-10-24 21:36:50.300467785+00:00,1 +2023-10-24 21:36:50.418213123+00:00,1 +2023-10-24 21:36:50.535691952+00:00,1 +2023-10-24 21:36:50.652407970+00:00,1 +2023-10-24 21:36:50.769331184+00:00,1 +2023-10-24 21:36:50.886564496+00:00,1 +2023-10-24 21:36:51.002701894+00:00,1 +2023-10-24 21:36:51.120603261+00:00,1 +2023-10-24 21:36:51.237398820+00:00,1 +2023-10-24 21:36:51.354666461+00:00,1 +2023-10-24 21:36:51.470547294+00:00,1 +2023-10-24 21:36:51.586718961+00:00,1 +2023-10-24 21:36:51.703316601+00:00,1 +2023-10-24 21:36:51.820101755+00:00,1 +2023-10-24 21:36:51.936770957+00:00,1 +2023-10-24 21:36:52.050741119+00:00,1 +2023-10-24 21:36:52.165840590+00:00,1 +2023-10-24 21:36:52.282444326+00:00,1 +2023-10-24 21:36:52.397435688+00:00,1 +2023-10-24 21:36:52.513314575+00:00,1 +2023-10-24 21:36:52.628257430+00:00,1 +2023-10-24 21:36:52.744292306+00:00,1 +2023-10-24 21:36:52.860391402+00:00,1 +2023-10-24 21:36:52.976104074+00:00,1 diff --git a/tests/zero-downtime-scaling/results/1.0.0/10-node/abrupt-up-http.png b/tests/zero-downtime-scaling/results/1.0.0/10-node/abrupt-up-http.png new file mode 100644 index 0000000000000000000000000000000000000000..a0cd38b11803c6450d3cc7527e08b7186da83420 GIT binary patch literal 6177 zcmeHLX;4#H_CJlIIM9NvC<3xbTxdaJgBk&2q8QPZO%WAYqNsq-EDeSL0TKiS0VQ;! z2n5I=in1!GAuItzB_pdKi-bV41Y}ECfAK*LwkkiC~^F#vcPAT)%Ee0sclw^S7WN0U@eRaMo{(9pud!o|gf zN~ICXn5(O(JoceE+MoP|M3V@x-KD1AEdGpk;a2m z*0a(kkO}7N`YNQVzVdl6f@dOH91ch7-I5F}t^&zwm|p|4YhgwX#PTq;4ki^qv>wJc zz}Q9@*#yIzVQ32oRAE33`qZIU1A4T8uMJ%&=-dIHcS5@kwC;vay3o7_n$Xa=7wQe5 z&JaHA2QCI`4#GQQcxwW0uuzGE3Otk_g)&npAwaPiuuj0MpW)>xD71j*R#0FKd1oNk z2C{A8>3PVy0FN(1rafdh0+R^ommt*{7*`S1pqpqpS%Gw6PT-L0V0 z4m&@?j!r;zfi@qsdO)KW)cZhf08|CAWe7G8!=@3~I0hTWVZ8_xCSlza$csU42G-8P znt50)fmMqjv$TRWEN0zHDT4p*bHdIKK;iAm^WA-21vLPrnv=(loDE=%^GAI%MpOxx zdv`LK(S6I*nH~BH8>^0$YX9Nep<-n_YoO6x$6b_h7u5^2PyV+3Kdgm>cT9K1#^I6d zr^(9!%+xC}gx1Zjkxl4xo0sO=(>4`)I@`Zo>KI(^#rm^xU*oe63sQd0xgO>)f_>b% z??tU#PPW->hoGv%Y;d)9s+*Hm{T!L7OyFCbKUaM#=&8M-tykI0?oLc~o?!0bB+VtQ zS*iA=*ECb0(Smv(>E9nax$vrWZ~lnB<9_N=h@}06U&AR!Ptl>f*Yk0;E{an#YPq-+ zaV$x(S=pk8b)`Cz*cC$T(WlR}1-Ut3IC>ppn$e3wVGVJ9G<=Y9quMmmtWH@n9PlhJ z+3SK_^+S%kJ~@l3ZZdBEWPUWY=BJc&flF9daQMu&W}CKltrqmqv-W9?N5ytpqj~S9 z7D7t#$@RAiF1YT^Xx#y7Z!!?&b~2y+^5~V0NOaM7<6-iVo;eZ+fi%w302MH z`vn70jr@Q=N9;E(Gklv^Kl+12qPo45CgDvkbQGI;PvKb`tGF(r}9vl6$-*3Wj7#q4iTujp-G z?dvLGy)b=0FWLVkPMIrNKm4PeR=@t$#kCpkHRyu$aPvgTJO=R{oh!hNlqKuruj4PL z&}WWJWAinS{&HAWMa0slQ(7wG967w12Aq>tO1gz{WaN%!Vlh6m!YAy+f535Q&e6WW z*}@A;2R}3#Qr~iWB<08}%^|_z{_AtB*V$HrKon7En0A}$ks~>qhM5vLtrwtr=P8r)cu-=d$W+7aSTFr4!`*K=!`23M%ZAZwA9PS z9{*%*bV8`E95UniX^&_YVWt~(&f8^ImkM` z9->m~uuL=e|QHT4{yzjr^8}{{umd{pVKO(=6<^=o_!A^Ymga|C(UC zDoQ(5=%bqxv{;JnQ5VFCJ5nwN+HK}OP10}e?+G#7>Q73M4{`h@Ux%e^d1p#EL<}%V zAq9l(Bd{Dw^y&F-l2h%u%97rS5R>kr{2EYb7m0(Xw!tljh~~ECn>3E%E%QNY(Fe=o5O-C4)cp zY;LOh%TNR>u=Eu1UafObPIlm&e%oVjUT zQhos?{xG>h^L#Za%)IuR@$=*d$EBU}+piz6C+zRaKkm|_XQUPo^=ar zZa*NOiFW2lMq|WX=M*sWH8|07k$Cc&e5NXS13wkZeW}_N{$*pCPnfv}Q#z`QYE-vt zN!Au%-;UJsRvU0)NW;7~@(b}csjm{3#VrFaVc)mg5?b$J7L1|}f49=Ao>}Q=wO4;5 zzvbb72?BJ~)DI|}_JC{bVidhJvWqW!*<>+Bc zHoG@BKCxVF@#9;=*JLd9wi6mN*4<6H?}-V{%21;+3VL#Lr-E%sxXk(M4$kla_ltqCIG&LH;ziC{UNgw<$D ztmW1-hRnKC1MHN!cH4Fd#Jrihcq7h1&w==Lq2xXl9%UbnRKuFJtgdCc2NC#R`{R8p z4iRmO#s;!o?lo&}Wrwn<0}~145F^W!^yj38B9x|iSKUF~fv4%ja0bSg-CGvFfSC)w zj=6$ikM41~NpMoaGPgC3rjnll8N5qhu@Z9q<>l%KkfZ{{epSB5#@MyQZYOD z9JhAPpy&`~K+u&n^<@q9G`BV&qBVp)f?(gO=Ea0w_hT&<6qlr;BRO$hp=`=kztVLI z9Jf-#U;XBD>HY7f?7JWR=vQrriu0O?+!p64svXxD#-f`s>dU@|Zv5fdZH8J{5`Daj zD&>{WRk4I#{cAHTS%n?mBy1P@ZRH9Z; zFfA$D$m`e9clU0U}_?>XTl!SY!C(Mvb~1u?B*8~^|S literal 0 HcmV?d00001 diff --git a/tests/zero-downtime-scaling/results/1.0.0/10-node/abrupt-up-https.csv b/tests/zero-downtime-scaling/results/1.0.0/10-node/abrupt-up-https.csv new file mode 100644 index 000000000..f7164fde4 --- /dev/null +++ b/tests/zero-downtime-scaling/results/1.0.0/10-node/abrupt-up-https.csv @@ -0,0 +1,509 @@ +2023-10-24 21:35:48.432029720+00:00,1 +2023-10-24 21:35:48.557632652+00:00,1 +2023-10-24 21:35:48.683858653+00:00,1 +2023-10-24 21:35:48.809740629+00:00,1 +2023-10-24 21:35:48.936019407+00:00,1 +2023-10-24 21:35:49.061822741+00:00,1 +2023-10-24 21:35:49.187750842+00:00,1 +2023-10-24 21:35:49.313527057+00:00,1 +2023-10-24 21:35:49.442130075+00:00,1 +2023-10-24 21:35:49.571452041+00:00,1 +2023-10-24 21:35:49.699276828+00:00,1 +2023-10-24 21:35:49.828798153+00:00,1 +2023-10-24 21:35:49.957805795+00:00,1 +2023-10-24 21:35:50.087222027+00:00,1 +2023-10-24 21:35:50.215625662+00:00,1 +2023-10-24 21:35:50.344060553+00:00,1 +2023-10-24 21:35:50.472316039+00:00,1 +2023-10-24 21:35:50.599898145+00:00,1 +2023-10-24 21:35:50.728348031+00:00,1 +2023-10-24 21:35:50.857236290+00:00,1 +2023-10-24 21:35:50.984899424+00:00,1 +2023-10-24 21:35:51.115988475+00:00,1 +2023-10-24 21:35:51.246565499+00:00,1 +2023-10-24 21:35:51.374634850+00:00,1 +2023-10-24 21:35:51.506899181+00:00,1 +2023-10-24 21:35:51.636040302+00:00,1 +2023-10-24 21:35:51.765370565+00:00,1 +2023-10-24 21:35:51.893849524+00:00,1 +2023-10-24 21:35:52.021818587+00:00,1 +2023-10-24 21:35:52.151724138+00:00,1 +2023-10-24 21:35:52.279625258+00:00,1 +2023-10-24 21:35:52.407491253+00:00,1 +2023-10-24 21:35:52.535625523+00:00,1 +2023-10-24 21:35:52.664487757+00:00,1 +2023-10-24 21:35:52.793426587+00:00,1 +2023-10-24 21:35:52.922602386+00:00,1 +2023-10-24 21:35:53.051708068+00:00,1 +2023-10-24 21:35:53.181084933+00:00,1 +2023-10-24 21:35:53.311341050+00:00,1 +2023-10-24 21:35:53.439861075+00:00,1 +2023-10-24 21:35:53.569951218+00:00,1 +2023-10-24 21:35:53.697780466+00:00,1 +2023-10-24 21:35:53.834347929+00:00,1 +2023-10-24 21:35:53.966457209+00:00,1 +2023-10-24 21:35:54.095722758+00:00,1 +2023-10-24 21:35:54.222049179+00:00,1 +2023-10-24 21:35:54.351439338+00:00,1 +2023-10-24 21:35:54.479916967+00:00,1 +2023-10-24 21:35:54.609420272+00:00,1 +2023-10-24 21:35:54.737096873+00:00,1 +2023-10-24 21:35:54.865013595+00:00,1 +2023-10-24 21:35:54.993746496+00:00,1 +2023-10-24 21:35:55.124198895+00:00,1 +2023-10-24 21:35:55.253521202+00:00,1 +2023-10-24 21:35:55.381761411+00:00,1 +2023-10-24 21:35:55.510037350+00:00,1 +2023-10-24 21:35:55.639350379+00:00,1 +2023-10-24 21:35:55.768927293+00:00,1 +2023-10-24 21:35:55.898128918+00:00,1 +2023-10-24 21:35:56.027617285+00:00,1 +2023-10-24 21:35:56.159041854+00:00,1 +2023-10-24 21:35:56.287276600+00:00,1 +2023-10-24 21:35:56.416728663+00:00,1 +2023-10-24 21:35:56.545509399+00:00,1 +2023-10-24 21:35:56.675309141+00:00,1 +2023-10-24 21:35:56.804308176+00:00,1 +2023-10-24 21:35:56.932398929+00:00,1 +2023-10-24 21:35:57.061488671+00:00,1 +2023-10-24 21:35:57.190962383+00:00,1 +2023-10-24 21:35:57.319381605+00:00,1 +2023-10-24 21:35:57.448944392+00:00,1 +2023-10-24 21:35:57.579528484+00:00,1 +2023-10-24 21:35:57.708937488+00:00,1 +2023-10-24 21:35:57.838075914+00:00,1 +2023-10-24 21:35:57.967842000+00:00,1 +2023-10-24 21:35:58.097446931+00:00,1 +2023-10-24 21:35:58.226068732+00:00,1 +2023-10-24 21:35:58.354283332+00:00,1 +2023-10-24 21:35:58.484368266+00:00,1 +2023-10-24 21:35:58.615392890+00:00,1 +2023-10-24 21:35:58.744502150+00:00,1 +2023-10-24 21:35:58.873473468+00:00,1 +2023-10-24 21:35:59.005888644+00:00,1 +2023-10-24 21:35:59.135001115+00:00,1 +2023-10-24 21:35:59.262947372+00:00,1 +2023-10-24 21:35:59.390536621+00:00,1 +2023-10-24 21:35:59.519735850+00:00,1 +2023-10-24 21:35:59.648397301+00:00,1 +2023-10-24 21:35:59.778749430+00:00,1 +2023-10-24 21:35:59.908494079+00:00,1 +2023-10-24 21:36:00.036366863+00:00,1 +2023-10-24 21:36:00.164698959+00:00,1 +2023-10-24 21:36:00.294503902+00:00,1 +2023-10-24 21:36:00.424170034+00:00,1 +2023-10-24 21:36:00.552651701+00:00,1 +2023-10-24 21:36:00.681365029+00:00,1 +2023-10-24 21:36:00.810742515+00:00,1 +2023-10-24 21:36:00.940133095+00:00,1 +2023-10-24 21:36:01.069531290+00:00,1 +2023-10-24 21:36:01.199632189+00:00,1 +2023-10-24 21:36:01.328718876+00:00,1 +2023-10-24 21:36:01.458487854+00:00,1 +2023-10-24 21:36:01.586765664+00:00,1 +2023-10-24 21:36:01.716286371+00:00,1 +2023-10-24 21:36:01.846262841+00:00,1 +2023-10-24 21:36:01.975397262+00:00,1 +2023-10-24 21:36:02.104049093+00:00,1 +2023-10-24 21:36:02.232817687+00:00,1 +2023-10-24 21:36:02.359994932+00:00,1 +2023-10-24 21:36:02.487302493+00:00,1 +2023-10-24 21:36:02.615204108+00:00,1 +2023-10-24 21:36:02.745572300+00:00,1 +2023-10-24 21:36:02.874226898+00:00,1 +2023-10-24 21:36:03.002472118+00:00,1 +2023-10-24 21:36:03.133429704+00:00,1 +2023-10-24 21:36:03.263739055+00:00,1 +2023-10-24 21:36:03.392241925+00:00,1 +2023-10-24 21:36:03.521038387+00:00,1 +2023-10-24 21:36:03.650392677+00:00,1 +2023-10-24 21:36:03.780663970+00:00,1 +2023-10-24 21:36:03.911440538+00:00,1 +2023-10-24 21:36:04.041629392+00:00,1 +2023-10-24 21:36:04.172743200+00:00,1 +2023-10-24 21:36:04.302505257+00:00,1 +2023-10-24 21:36:04.430280340+00:00,1 +2023-10-24 21:36:04.559674370+00:00,1 +2023-10-24 21:36:04.688292832+00:00,1 +2023-10-24 21:36:04.818533664+00:00,1 +2023-10-24 21:36:04.948938258+00:00,1 +2023-10-24 21:36:05.077772648+00:00,1 +2023-10-24 21:36:05.207315692+00:00,1 +2023-10-24 21:36:05.335548814+00:00,1 +2023-10-24 21:36:05.464042442+00:00,1 +2023-10-24 21:36:05.592303114+00:00,1 +2023-10-24 21:36:05.721495374+00:00,1 +2023-10-24 21:36:05.850810827+00:00,1 +2023-10-24 21:36:05.979481719+00:00,1 +2023-10-24 21:36:06.107876534+00:00,1 +2023-10-24 21:36:06.235483046+00:00,1 +2023-10-24 21:36:06.363512179+00:00,1 +2023-10-24 21:36:06.492070065+00:00,1 +2023-10-24 21:36:06.623086271+00:00,1 +2023-10-24 21:36:06.751961367+00:00,1 +2023-10-24 21:36:06.881193365+00:00,1 +2023-10-24 21:36:07.010730499+00:00,1 +2023-10-24 21:36:07.139461587+00:00,1 +2023-10-24 21:36:07.268309881+00:00,1 +2023-10-24 21:36:07.398135020+00:00,1 +2023-10-24 21:36:07.526604387+00:00,1 +2023-10-24 21:36:07.654989982+00:00,1 +2023-10-24 21:36:07.783957944+00:00,1 +2023-10-24 21:36:07.914203816+00:00,1 +2023-10-24 21:36:08.044686832+00:00,1 +2023-10-24 21:36:08.174183017+00:00,1 +2023-10-24 21:36:08.304157545+00:00,1 +2023-10-24 21:36:08.433513766+00:00,1 +2023-10-24 21:36:08.562472026+00:00,1 +2023-10-24 21:36:08.692415850+00:00,1 +2023-10-24 21:36:08.825080777+00:00,1 +2023-10-24 21:36:08.953788565+00:00,1 +2023-10-24 21:36:09.082763537+00:00,1 +2023-10-24 21:36:09.211319170+00:00,1 +2023-10-24 21:36:09.340656689+00:00,1 +2023-10-24 21:36:09.469827024+00:00,1 +2023-10-24 21:36:09.598725675+00:00,1 +2023-10-24 21:36:09.727395482+00:00,1 +2023-10-24 21:36:09.857475022+00:00,1 +2023-10-24 21:36:09.985412194+00:00,1 +2023-10-24 21:36:10.113313705+00:00,1 +2023-10-24 21:36:10.240769048+00:00,1 +2023-10-24 21:36:10.368298732+00:00,1 +2023-10-24 21:36:10.496122525+00:00,1 +2023-10-24 21:36:10.623738377+00:00,1 +2023-10-24 21:36:10.753292059+00:00,1 +2023-10-24 21:36:10.884205552+00:00,1 +2023-10-24 21:36:11.015385550+00:00,1 +2023-10-24 21:36:11.145221275+00:00,1 +2023-10-24 21:36:11.275024283+00:00,1 +2023-10-24 21:36:11.403556379+00:00,1 +2023-10-24 21:36:11.532313391+00:00,1 +2023-10-24 21:36:11.661916942+00:00,1 +2023-10-24 21:36:11.792247486+00:00,1 +2023-10-24 21:36:11.920457392+00:00,1 +2023-10-24 21:36:12.048593721+00:00,1 +2023-10-24 21:36:12.178191580+00:00,1 +2023-10-24 21:36:12.305803827+00:00,1 +2023-10-24 21:36:12.435724524+00:00,1 +2023-10-24 21:36:12.567053523+00:00,1 +2023-10-24 21:36:12.698651796+00:00,1 +2023-10-24 21:36:12.828644853+00:00,1 +2023-10-24 21:36:12.959245044+00:00,1 +2023-10-24 21:36:13.090159804+00:00,1 +2023-10-24 21:36:13.220045446+00:00,1 +2023-10-24 21:36:13.349177376+00:00,1 +2023-10-24 21:36:13.481751167+00:00,1 +2023-10-24 21:36:13.610745600+00:00,1 +2023-10-24 21:36:13.739328785+00:00,1 +2023-10-24 21:36:13.870866049+00:00,1 +2023-10-24 21:36:14.002100947+00:00,1 +2023-10-24 21:36:14.132969236+00:00,1 +2023-10-24 21:36:14.263705650+00:00,1 +2023-10-24 21:36:14.393566676+00:00,1 +2023-10-24 21:36:14.524028073+00:00,1 +2023-10-24 21:36:14.653395101+00:00,1 +2023-10-24 21:36:14.785377405+00:00,1 +2023-10-24 21:36:14.916142702+00:00,1 +2023-10-24 21:36:15.047003746+00:00,1 +2023-10-24 21:36:15.176381276+00:00,1 +2023-10-24 21:36:15.305151029+00:00,1 +2023-10-24 21:36:15.434279297+00:00,1 +2023-10-24 21:36:15.563725800+00:00,1 +2023-10-24 21:36:15.694708731+00:00,1 +2023-10-24 21:36:15.822972888+00:00,1 +2023-10-24 21:36:15.952885382+00:00,1 +2023-10-24 21:36:16.082524130+00:00,1 +2023-10-24 21:36:16.212967219+00:00,1 +2023-10-24 21:36:16.344050937+00:00,1 +2023-10-24 21:36:16.472859145+00:00,1 +2023-10-24 21:36:16.601998382+00:00,1 +2023-10-24 21:36:16.732145651+00:00,1 +2023-10-24 21:36:16.863035389+00:00,1 +2023-10-24 21:36:16.993519139+00:00,1 +2023-10-24 21:36:17.122969841+00:00,1 +2023-10-24 21:36:17.251815386+00:00,1 +2023-10-24 21:36:17.380918889+00:00,1 +2023-10-24 21:36:17.512440879+00:00,1 +2023-10-24 21:36:17.642273474+00:00,1 +2023-10-24 21:36:17.772468075+00:00,1 +2023-10-24 21:36:17.902994950+00:00,1 +2023-10-24 21:36:18.032817085+00:00,1 +2023-10-24 21:36:18.162197266+00:00,1 +2023-10-24 21:36:18.292133108+00:00,1 +2023-10-24 21:36:18.422872917+00:00,1 +2023-10-24 21:36:18.552368056+00:00,1 +2023-10-24 21:36:18.683854522+00:00,1 +2023-10-24 21:36:18.813100412+00:00,1 +2023-10-24 21:36:18.942252727+00:00,1 +2023-10-24 21:36:19.071349955+00:00,1 +2023-10-24 21:36:19.200123898+00:00,1 +2023-10-24 21:36:19.330391432+00:00,1 +2023-10-24 21:36:19.460020771+00:00,1 +2023-10-24 21:36:19.588507061+00:00,1 +2023-10-24 21:36:19.718117029+00:00,1 +2023-10-24 21:36:19.848390435+00:00,1 +2023-10-24 21:36:19.978497763+00:00,1 +2023-10-24 21:36:20.106648153+00:00,1 +2023-10-24 21:36:20.236092794+00:00,1 +2023-10-24 21:36:20.366044173+00:00,1 +2023-10-24 21:36:20.495130736+00:00,1 +2023-10-24 21:36:20.623067120+00:00,1 +2023-10-24 21:36:20.753983963+00:00,1 +2023-10-24 21:36:20.882926642+00:00,1 +2023-10-24 21:36:21.012751636+00:00,1 +2023-10-24 21:36:21.143122223+00:00,1 +2023-10-24 21:36:21.273242146+00:00,1 +2023-10-24 21:36:21.401098393+00:00,1 +2023-10-24 21:36:21.531377925+00:00,1 +2023-10-24 21:36:21.661195616+00:00,1 +2023-10-24 21:36:21.791515155+00:00,1 +2023-10-24 21:36:21.921038228+00:00,1 +2023-10-24 21:36:22.050758248+00:00,1 +2023-10-24 21:36:22.180945444+00:00,1 +2023-10-24 21:36:22.310224014+00:00,1 +2023-10-24 21:36:22.441770158+00:00,1 +2023-10-24 21:36:22.569276361+00:00,1 +2023-10-24 21:36:22.698912996+00:00,1 +2023-10-24 21:36:22.827466932+00:00,1 +2023-10-24 21:36:22.957048724+00:00,1 +2023-10-24 21:36:23.087868629+00:00,1 +2023-10-24 21:36:23.216734438+00:00,1 +2023-10-24 21:36:23.346286718+00:00,1 +2023-10-24 21:36:23.477876327+00:00,1 +2023-10-24 21:36:23.608044714+00:00,1 +2023-10-24 21:36:23.737791281+00:00,1 +2023-10-24 21:36:23.868146846+00:00,1 +2023-10-24 21:36:23.997311363+00:00,1 +2023-10-24 21:36:24.126143100+00:00,1 +2023-10-24 21:36:24.254857368+00:00,1 +2023-10-24 21:36:24.384406115+00:00,1 +2023-10-24 21:36:24.512389448+00:00,1 +2023-10-24 21:36:24.644629800+00:00,1 +2023-10-24 21:36:24.774844618+00:00,1 +2023-10-24 21:36:24.902822400+00:00,1 +2023-10-24 21:36:25.032629956+00:00,1 +2023-10-24 21:36:25.162761649+00:00,1 +2023-10-24 21:36:25.292193848+00:00,1 +2023-10-24 21:36:25.421619702+00:00,1 +2023-10-24 21:36:25.551678609+00:00,1 +2023-10-24 21:36:25.683235128+00:00,1 +2023-10-24 21:36:25.813441498+00:00,1 +2023-10-24 21:36:25.943218449+00:00,1 +2023-10-24 21:36:26.071534472+00:00,1 +2023-10-24 21:36:26.200141454+00:00,1 +2023-10-24 21:36:26.328978965+00:00,1 +2023-10-24 21:36:26.456440365+00:00,1 +2023-10-24 21:36:26.585886715+00:00,1 +2023-10-24 21:36:26.717551896+00:00,1 +2023-10-24 21:36:26.847302502+00:00,1 +2023-10-24 21:36:26.976730493+00:00,1 +2023-10-24 21:36:27.106321066+00:00,1 +2023-10-24 21:36:27.234280998+00:00,1 +2023-10-24 21:36:27.361611089+00:00,1 +2023-10-24 21:36:27.491863401+00:00,1 +2023-10-24 21:36:27.621476337+00:00,1 +2023-10-24 21:36:27.750391113+00:00,1 +2023-10-24 21:36:27.879353944+00:00,1 +2023-10-24 21:36:28.008807523+00:00,1 +2023-10-24 21:36:28.138216344+00:00,1 +2023-10-24 21:36:28.268152859+00:00,1 +2023-10-24 21:36:28.397934723+00:00,1 +2023-10-24 21:36:28.526206777+00:00,1 +2023-10-24 21:36:28.654454582+00:00,1 +2023-10-24 21:36:28.783591618+00:00,1 +2023-10-24 21:36:28.912171319+00:00,1 +2023-10-24 21:36:29.038860816+00:00,1 +2023-10-24 21:36:29.168501050+00:00,1 +2023-10-24 21:36:29.296592782+00:00,1 +2023-10-24 21:36:29.425963674+00:00,1 +2023-10-24 21:36:29.555327428+00:00,1 +2023-10-24 21:36:29.684308944+00:00,1 +2023-10-24 21:36:29.813993791+00:00,1 +2023-10-24 21:36:29.942718689+00:00,1 +2023-10-24 21:36:30.070508366+00:00,1 +2023-10-24 21:36:30.199400406+00:00,1 +2023-10-24 21:36:30.329497172+00:00,1 +2023-10-24 21:36:30.458068653+00:00,1 +2023-10-24 21:36:30.587126173+00:00,1 +2023-10-24 21:36:30.715995136+00:00,1 +2023-10-24 21:36:30.846820785+00:00,1 +2023-10-24 21:36:30.976386277+00:00,1 +2023-10-24 21:36:31.105983973+00:00,1 +2023-10-24 21:36:31.234350448+00:00,1 +2023-10-24 21:36:31.364527326+00:00,1 +2023-10-24 21:36:31.496289569+00:00,1 +2023-10-24 21:36:31.624804511+00:00,1 +2023-10-24 21:36:31.754963127+00:00,1 +2023-10-24 21:36:31.884057764+00:00,1 +2023-10-24 21:36:32.015155397+00:00,1 +2023-10-24 21:36:32.146471131+00:00,1 +2023-10-24 21:36:32.276313299+00:00,1 +2023-10-24 21:36:32.407023094+00:00,1 +2023-10-24 21:36:32.536213521+00:00,1 +2023-10-24 21:36:32.665885338+00:00,1 +2023-10-24 21:36:32.794671928+00:00,1 +2023-10-24 21:36:32.923484000+00:00,1 +2023-10-24 21:36:33.051478447+00:00,1 +2023-10-24 21:36:33.178809137+00:00,1 +2023-10-24 21:36:33.307129485+00:00,1 +2023-10-24 21:36:33.436322723+00:00,1 +2023-10-24 21:36:33.564519514+00:00,1 +2023-10-24 21:36:33.693936798+00:00,1 +2023-10-24 21:36:33.823063837+00:00,1 +2023-10-24 21:36:33.952485138+00:00,1 +2023-10-24 21:36:34.083001607+00:00,1 +2023-10-24 21:36:34.211223682+00:00,1 +2023-10-24 21:36:34.339075100+00:00,1 +2023-10-24 21:36:34.467017687+00:00,1 +2023-10-24 21:36:34.595866748+00:00,1 +2023-10-24 21:36:34.724155026+00:00,1 +2023-10-24 21:36:34.853017955+00:00,1 +2023-10-24 21:36:34.983921038+00:00,1 +2023-10-24 21:36:35.114418945+00:00,1 +2023-10-24 21:36:35.243848400+00:00,1 +2023-10-24 21:36:35.372139603+00:00,1 +2023-10-24 21:36:35.500271894+00:00,1 +2023-10-24 21:36:35.628798144+00:00,1 +2023-10-24 21:36:35.759414246+00:00,1 +2023-10-24 21:36:35.888503443+00:00,1 +2023-10-24 21:36:36.016880741+00:00,1 +2023-10-24 21:36:36.144645096+00:00,1 +2023-10-24 21:36:36.274412635+00:00,1 +2023-10-24 21:36:36.404051901+00:00,1 +2023-10-24 21:36:36.533043729+00:00,1 +2023-10-24 21:36:36.660883948+00:00,1 +2023-10-24 21:36:36.792167591+00:00,1 +2023-10-24 21:36:36.920317930+00:00,1 +2023-10-24 21:36:37.049464387+00:00,1 +2023-10-24 21:36:37.179227813+00:00,1 +2023-10-24 21:36:37.307716695+00:00,1 +2023-10-24 21:36:37.437316278+00:00,1 +2023-10-24 21:36:37.566376438+00:00,1 +2023-10-24 21:36:37.695633486+00:00,1 +2023-10-24 21:36:37.825123694+00:00,1 +2023-10-24 21:36:37.953959369+00:00,1 +2023-10-24 21:36:38.082670048+00:00,1 +2023-10-24 21:36:38.210952277+00:00,1 +2023-10-24 21:36:38.340540943+00:00,1 +2023-10-24 21:36:38.471065569+00:00,1 +2023-10-24 21:36:38.600211534+00:00,1 +2023-10-24 21:36:38.730281857+00:00,1 +2023-10-24 21:36:38.859589032+00:00,1 +2023-10-24 21:36:38.987772623+00:00,1 +2023-10-24 21:36:39.117158206+00:00,1 +2023-10-24 21:36:39.246232026+00:00,1 +2023-10-24 21:36:39.374372007+00:00,1 +2023-10-24 21:36:39.502554377+00:00,1 +2023-10-24 21:36:39.630690161+00:00,1 +2023-10-24 21:36:39.759604505+00:00,1 +2023-10-24 21:36:39.888487663+00:00,1 +2023-10-24 21:36:40.016572579+00:00,1 +2023-10-24 21:36:40.144296444+00:00,1 +2023-10-24 21:36:40.272227023+00:00,1 +2023-10-24 21:36:40.400740851+00:00,1 +2023-10-24 21:36:40.529955229+00:00,1 +2023-10-24 21:36:40.658109836+00:00,1 +2023-10-24 21:36:40.786117879+00:00,1 +2023-10-24 21:36:40.914324185+00:00,1 +2023-10-24 21:36:41.043149088+00:00,1 +2023-10-24 21:36:41.171490190+00:00,1 +2023-10-24 21:36:41.300284660+00:00,1 +2023-10-24 21:36:41.427589153+00:00,1 +2023-10-24 21:36:41.556070461+00:00,1 +2023-10-24 21:36:41.685110787+00:00,1 +2023-10-24 21:36:41.814267530+00:00,1 +2023-10-24 21:36:41.942182319+00:00,1 +2023-10-24 21:36:42.071074073+00:00,1 +2023-10-24 21:36:42.201081197+00:00,1 +2023-10-24 21:36:42.329663162+00:00,1 +2023-10-24 21:36:42.458390667+00:00,1 +2023-10-24 21:36:42.587453972+00:00,1 +2023-10-24 21:36:42.719402441+00:00,1 +2023-10-24 21:36:42.847530213+00:00,1 +2023-10-24 21:36:42.976677487+00:00,1 +2023-10-24 21:36:43.105651820+00:00,1 +2023-10-24 21:36:43.235737930+00:00,1 +2023-10-24 21:36:43.366131300+00:00,1 +2023-10-24 21:36:43.495575679+00:00,1 +2023-10-24 21:36:43.624562610+00:00,1 +2023-10-24 21:36:43.753716611+00:00,1 +2023-10-24 21:36:43.882761634+00:00,1 +2023-10-24 21:36:44.021451714+00:00,1 +2023-10-24 21:36:44.149373818+00:00,1 +2023-10-24 21:36:44.277180606+00:00,1 +2023-10-24 21:36:44.406469142+00:00,1 +2023-10-24 21:36:44.537031173+00:00,1 +2023-10-24 21:36:44.665286486+00:00,1 +2023-10-24 21:36:44.794493743+00:00,1 +2023-10-24 21:36:44.922744540+00:00,1 +2023-10-24 21:36:45.051660872+00:00,1 +2023-10-24 21:36:45.181052217+00:00,1 +2023-10-24 21:36:45.311060889+00:00,1 +2023-10-24 21:36:45.441157529+00:00,1 +2023-10-24 21:36:45.569189531+00:00,1 +2023-10-24 21:36:45.698050270+00:00,1 +2023-10-24 21:36:45.825879146+00:00,1 +2023-10-24 21:36:45.954761498+00:00,1 +2023-10-24 21:36:46.083796298+00:00,1 +2023-10-24 21:36:46.212657857+00:00,1 +2023-10-24 21:36:46.349714225+00:00,1 +2023-10-24 21:36:46.479580181+00:00,1 +2023-10-24 21:36:46.607376246+00:00,1 +2023-10-24 21:36:46.736005073+00:00,1 +2023-10-24 21:36:46.865082688+00:00,1 +2023-10-24 21:36:46.992728102+00:00,1 +2023-10-24 21:36:47.121242638+00:00,1 +2023-10-24 21:36:47.249252838+00:00,1 +2023-10-24 21:36:47.376912241+00:00,1 +2023-10-24 21:36:47.505770185+00:00,1 +2023-10-24 21:36:47.639027415+00:00,1 +2023-10-24 21:36:47.767002682+00:00,1 +2023-10-24 21:36:47.894185359+00:00,1 +2023-10-24 21:36:48.023322788+00:00,1 +2023-10-24 21:36:48.150337476+00:00,1 +2023-10-24 21:36:48.280633041+00:00,1 +2023-10-24 21:36:48.409098847+00:00,1 +2023-10-24 21:36:48.538199152+00:00,1 +2023-10-24 21:36:48.668047788+00:00,1 +2023-10-24 21:36:48.795799731+00:00,1 +2023-10-24 21:36:48.925502056+00:00,1 +2023-10-24 21:36:49.057095698+00:00,1 +2023-10-24 21:36:49.186996215+00:00,1 +2023-10-24 21:36:49.316894792+00:00,1 +2023-10-24 21:36:49.445290601+00:00,1 +2023-10-24 21:36:49.575216623+00:00,1 +2023-10-24 21:36:49.703498647+00:00,1 +2023-10-24 21:36:49.831495308+00:00,1 +2023-10-24 21:36:49.959075774+00:00,1 +2023-10-24 21:36:50.087125610+00:00,1 +2023-10-24 21:36:50.215561527+00:00,1 +2023-10-24 21:36:50.345442731+00:00,1 +2023-10-24 21:36:50.475204306+00:00,1 +2023-10-24 21:36:50.602498316+00:00,1 +2023-10-24 21:36:50.730584339+00:00,1 +2023-10-24 21:36:50.857811697+00:00,1 +2023-10-24 21:36:50.986462265+00:00,1 +2023-10-24 21:36:51.114370776+00:00,1 +2023-10-24 21:36:51.243323115+00:00,1 +2023-10-24 21:36:51.372265927+00:00,1 +2023-10-24 21:36:51.500677498+00:00,1 +2023-10-24 21:36:51.629054839+00:00,1 +2023-10-24 21:36:51.757120283+00:00,1 +2023-10-24 21:36:51.886579735+00:00,1 +2023-10-24 21:36:52.014055355+00:00,1 +2023-10-24 21:36:52.139646119+00:00,1 +2023-10-24 21:36:52.265734260+00:00,1 +2023-10-24 21:36:52.391283438+00:00,1 +2023-10-24 21:36:52.516836937+00:00,1 +2023-10-24 21:36:52.642563334+00:00,1 +2023-10-24 21:36:52.768126140+00:00,1 +2023-10-24 21:36:52.894005972+00:00,1 +2023-10-24 21:36:53.019858678+00:00,1 +2023-10-24 21:36:53.145235309+00:00,0 +2023-10-24 21:36:55.158198807+00:00,1 +2023-10-24 21:36:55.283459962+00:00,1 +2023-10-24 21:36:55.408856265+00:00,1 +2023-10-24 21:36:55.535170780+00:00,1 +2023-10-24 21:36:55.660346205+00:00,1 +2023-10-24 21:36:55.786769434+00:00,1 +2023-10-24 21:36:55.912061944+00:00,1 diff --git a/tests/zero-downtime-scaling/results/1.0.0/10-node/abrupt-up-https.png b/tests/zero-downtime-scaling/results/1.0.0/10-node/abrupt-up-https.png new file mode 100644 index 0000000000000000000000000000000000000000..a5d01972ca4055c72f2f58975a5a08bdfd8865d5 GIT binary patch literal 6273 zcmeHLdpMM9*I#Mtq|#fMLPOc_uBg#Q=|HGR2Zy#a%3-KT%FxJROw4q`Zio(2iLr$# zLMmn$$Czz$&S}Do+2qiu!4P8@o_Fm1Uhn%I-ao$ozJI!|`+lDLUe~kM{afo=_j=Y^ zzuMa#TCq%h833#}Y<=(-fQ8xs3QkKF$|>2;3H#*)us?Rf5vy1Kfdp`ne9jhB}f znM{8C`0<-JZ_3Nd>+0(I`}^fbj2alk4aa4F92j*R{R2UU`PY$xirnF0gbVW1;GFzP z-bmeup<@5sQ`fEYmqP)lk8Jn?^AHhe_<*R~N67Z06bfPq(-ea6Vd&^UbP3}kGeT)% zf|o+kM$%#U`tSp2;ivH9?9Cl7>QhvJqM|}Emk$cXy`18XQ0DQQBPsIXj->b_<>iQ6 zAEdmVkvxiwrWDjyAQkoHudX8IDTsDyX{j9DtOCdu!n7ht7lC96Oe}+MN-(wp#4BNB z6^K^D*EKMt3PLp)Tnqi`(5C^t>!Ak?0&U=L1fC9b{vA4g0`6vL(}h+&Xx;`*`p~!? z>J6aI5NdV+#~7-20ecTr?S*%yP;Lfg=1{U9iVr}MB`^;G!y59Bz}utn+6G?PL9RVy z{{k-^Akz_^V}b4j>8Byh8B$##1qU>DNIC;g&%zT=cyt~TydmBP9$bWbz7XdJvHlQ4 zfan0Y9SBju5E%luLg6L}u7?4I3}gy~T?f)l2)zX%kq{gOfwv(b8VE7q9}9kQ;Cl}) zJ^-J1@J@j9kHGT@oP7#slE9q?xD;?r1?Mz4oeoZPz&;1ZOmKJ!zhr}bF4(;So7Zsk zEgZ=QYX%%*f@KjLD2DwdU|t4h zblYGv7k=u1zjuNT4>s~aTL9=DSlX!tA`SnHsNnEBD}~{??}g09IDb&js;%D>VRAHyu7`aU$fYh_6IQ z9a6vL;j!A@$@1s7$;gkP0jHL!zrRCye{nD@Gl(G`^R#T&vY*kk-E{cgkN;tGW^4^@ zBTAkYBHr1nRijNokAA*d7SI-()#>1DgCjo;Hw&sEW@hy#RsUQ+asJd- zi{Y{g*_*?Sk0jczAFl9;-XRE;^<}6_(Liuo5_2&!L6JIp;I4qrAJrp=H(iM>AbTTG z!u`f*{iLi6QNn(+jI1Xul|sqc>ZJF($fe`ky~J;LTjLV_wwoOct&yppll7ZShIXD+ zF;+TPn$MJl<1levmwUpmwI(b~6LJy%guE<16WK!jQ%ItZ>>+=wAvj+CRo7o4rZDYJ zRl*R&#TDcDr;N-R{MFCJ=0$cW&cu3(@ST0TFyivy2Q~gYimnR?Va>PU9S!vgh0;ai z2h!-vNpU&CTCQvNCXs$j8QX7V-heZ`Qrd&YnN$s7lzt3|bgeki_Kgv?Yqs*^T=%D& z?4%KOazIqRY!Nlm+V1_uI3F=Jym0XgOai`p2|iJ*TFzrk4_Ho5SbQPHbt#T{Pe zzG4w^ZrY6T^xQ->>n_A6Ikst#tKFg4s&z*Y`FnOr{a&-rb2~Uj3@OtbeGJ)NAP9?A zcH&8Em8!5>o!;RyS3>B6tx1iw!Fj(2lb_V4i`#SXEFm_uFyz-_*+IW~)3aGlmAoE} zZvD8$EoRXoLtAd6MOm@=z&uKYbwL{{53On=PK{0P=7hXR3?Ikg*UwEHO2V#T=l@nq zUSnY9T~s}BAc{SxT{$~254$=qVI-(zJORb&J%9gBkH@dymZGBO=YMcxAw&1aWSX1W z8~sDl&;iC;sdJg6Z1Phvk7Tj}X+Jsf!UW$}TTgVf7tNCPA%2P@$W^))zq-Y(% z#y+nRam#Fb_O#mn-lS~)g>ri7?bNW9drW0hf<+F4s=+{*Lk*EXIW z>$%Al1Q!I^>scIs+xRm*lGeazim%4Rl{NC$w;r)q5e3u2QwI zQ!7^C?veLJWjD@;tNe@8PmTVr$gQJ|JKnU-?pcWmGP7xJE-dKQUm))6HoaO#dhta3 zwyjnt6Th!g*lW~@>ma#ss}1#j`0FH&u!kfnG<$UVsaWE&BA_-_=^SxRV#hSU=`ROy z$kov$_fn=fI!#%PQ!f=@XJ=<*%NFFXR+S~K8sgBG)sxAJL!s8s~%A&o<%pL)I zb%mU7B!b)5V&?RIT~A`q**Gz~?g~4wi7%Hc-5u2wKG#4ChSRoFn8%RYtI)Ah z#d6uaJjm&GC9bG z{ILy#xe}PiOm%VFg{cvS6RoiqO{Fv|5#H0`ZNgEmVzZh}uur0NKNsOAMUvVl{4E(w ze-{;QJ#j+Wm{{2jKR7>x>YsbU;E^t{+U*6M`_6)>d#;Q^kn_b)4 z{rj;8-J+v&EikBo&4qRyIF_(Xi`YJ~uRU~(X~%6q|MoR_Lw$&*WA=zeYDw{>3xiz! zPf0=ascVBSBWJTW(Sm$}_2@%1Y7R1D^mQw`bkPex^ti`@^=sIQsf{lu`dVz)kM8s% z4b^y@iuQBdku`EAsc5{=?3EAea&SP2zq<-H>Yr*Nt}g=|Roa-FHfN;{XEa*mXp#Ef zjlMXvLq>Wa*2-9}Z<>R;LnRPydAFUmo1-63Aq#po3A1q1ho@)4?}cmHt86jP{=xFD z!hEFqzWi>7?@sXjGJKB&|Cfl^tD3!)dYn|!>*6xUbl~dW*(e%+qS(xL>rwc?ntrHg zK)CjKP}VVBj>5$CSZDb}P{+|}S=3Z?Y)MUK*&hlYf~O2WPBx)NEQ*TuY*Vww8o36e z-ICt23%~fFqDm`hW?fj$7q>J!{zycdzpM5q!aC)bzo&mt#jGmf(aiRq_TUrbbN#$i?4h|G>gi*LT}v>TUxxSdL_r)4Yu@I5*Fo+SUjR|vRO{oAZcEjg04 zQnd}nq*&T81K%dEKmX@uhVUTwd^q)P*#rr>Xx8xGYtjE&q^hoNw9{AmccZ4v@)XLE zKZ)uTSJwCtogIum30xgi0~w^gvD$2%nJu&I@relb(?P2o+e?Y5pZ6^n7{1<%wQRez zv@n@)x$?M=FdtT8AUl!rWx>Vx3fw-2GFR5Kc zCBf>+3Cc=oSv5kbZng96ap5{;D@-ZR&wA6Z-Dp6$Q0uv1+0%&Ngy za~FZTh`e1KB{KENxep4jM6#JzTVn;ovh3Fu#UXp(06EC6Oohl7oC}y;_P}_ zbX~yJR*tL2)g67^B2!!M9PC`3LgCk(hY1;6=S1Z^bc{=QA+hgU*E#XNmcWLGca?v_ zV6;@njEd{F#-fRPCSUMa6*!eKBTbL|U~JgPhIV(iZwWgY35Y6|CGKykzFR9d=OsL& zq5omEL)GdX4gWT&4)5FKw~j>c@mr77}Fj{4Ubv<;?RWznxdz zXu)R^yBNg9Tr$z#MEu*_5Jy@o(uqtO8Y_9veoD8>v2&4iMcmkbvV}8Hem6Hncd_%% sDe8fS+}n~%e*eBT^R3Rbg|fxRA8lkEd1N;z@1w$DOWT7v``xeq16>?v5&!@I literal 0 HcmV?d00001 diff --git a/tests/zero-downtime-scaling/results/1.0.0/10-node/gradual-down-http.csv b/tests/zero-downtime-scaling/results/1.0.0/10-node/gradual-down-http.csv new file mode 100644 index 000000000..155c10f43 --- /dev/null +++ b/tests/zero-downtime-scaling/results/1.0.0/10-node/gradual-down-http.csv @@ -0,0 +1,7628 @@ +2023-10-24 21:07:25.277969035+00:00,1 +2023-10-24 21:07:25.395772967+00:00,1 +2023-10-24 21:07:25.513148233+00:00,1 +2023-10-24 21:07:25.630674642+00:00,1 +2023-10-24 21:07:25.747393106+00:00,1 +2023-10-24 21:07:25.863744786+00:00,1 +2023-10-24 21:07:25.980434064+00:00,1 +2023-10-24 21:07:26.096933199+00:00,1 +2023-10-24 21:07:26.213340773+00:00,1 +2023-10-24 21:07:26.328867935+00:00,1 +2023-10-24 21:07:26.445324715+00:00,1 +2023-10-24 21:07:26.562043277+00:00,1 +2023-10-24 21:07:26.677573866+00:00,1 +2023-10-24 21:07:26.793240879+00:00,1 +2023-10-24 21:07:26.909674550+00:00,1 +2023-10-24 21:07:27.025980250+00:00,1 +2023-10-24 21:07:27.141036147+00:00,1 +2023-10-24 21:07:27.256296754+00:00,1 +2023-10-24 21:07:27.370868039+00:00,1 +2023-10-24 21:07:27.486085755+00:00,1 +2023-10-24 21:07:27.601463325+00:00,1 +2023-10-24 21:07:27.717522230+00:00,1 +2023-10-24 21:07:27.833624209+00:00,1 +2023-10-24 21:07:27.948845045+00:00,1 +2023-10-24 21:07:28.064687154+00:00,1 +2023-10-24 21:07:28.178527575+00:00,1 +2023-10-24 21:07:28.293880060+00:00,1 +2023-10-24 21:07:28.408953270+00:00,1 +2023-10-24 21:07:28.523096238+00:00,1 +2023-10-24 21:07:28.637390697+00:00,1 +2023-10-24 21:07:28.752582558+00:00,1 +2023-10-24 21:07:28.869423986+00:00,1 +2023-10-24 21:07:28.984876974+00:00,1 +2023-10-24 21:07:29.101136012+00:00,1 +2023-10-24 21:07:29.215675372+00:00,1 +2023-10-24 21:07:29.331110465+00:00,1 +2023-10-24 21:07:29.446739132+00:00,1 +2023-10-24 21:07:29.561366315+00:00,1 +2023-10-24 21:07:29.676031856+00:00,1 +2023-10-24 21:07:29.791806401+00:00,1 +2023-10-24 21:07:29.907147371+00:00,1 +2023-10-24 21:07:30.022432274+00:00,1 +2023-10-24 21:07:30.138103844+00:00,1 +2023-10-24 21:07:30.253405877+00:00,1 +2023-10-24 21:07:30.369212121+00:00,1 +2023-10-24 21:07:30.484460497+00:00,1 +2023-10-24 21:07:30.600212522+00:00,1 +2023-10-24 21:07:30.715779997+00:00,1 +2023-10-24 21:07:30.831838829+00:00,1 +2023-10-24 21:07:30.947433967+00:00,1 +2023-10-24 21:07:31.063082799+00:00,1 +2023-10-24 21:07:31.178761349+00:00,1 +2023-10-24 21:07:31.294034655+00:00,1 +2023-10-24 21:07:31.408080774+00:00,1 +2023-10-24 21:07:31.523946495+00:00,1 +2023-10-24 21:07:31.639539571+00:00,1 +2023-10-24 21:07:31.755365394+00:00,1 +2023-10-24 21:07:31.870992681+00:00,1 +2023-10-24 21:07:31.987056278+00:00,1 +2023-10-24 21:07:32.102555501+00:00,1 +2023-10-24 21:07:32.218532313+00:00,1 +2023-10-24 21:07:32.333628630+00:00,1 +2023-10-24 21:07:32.448615714+00:00,1 +2023-10-24 21:07:32.564248934+00:00,1 +2023-10-24 21:07:32.680482242+00:00,1 +2023-10-24 21:07:32.796798831+00:00,1 +2023-10-24 21:07:32.912167004+00:00,1 +2023-10-24 21:07:33.027742575+00:00,1 +2023-10-24 21:07:33.142977672+00:00,1 +2023-10-24 21:07:33.258299853+00:00,1 +2023-10-24 21:07:33.373057326+00:00,1 +2023-10-24 21:07:33.488552173+00:00,1 +2023-10-24 21:07:33.603898441+00:00,1 +2023-10-24 21:07:33.718660763+00:00,1 +2023-10-24 21:07:33.833508106+00:00,1 +2023-10-24 21:07:33.947567342+00:00,1 +2023-10-24 21:07:34.062456652+00:00,1 +2023-10-24 21:07:34.177982259+00:00,1 +2023-10-24 21:07:34.293332325+00:00,1 +2023-10-24 21:07:34.409024847+00:00,1 +2023-10-24 21:07:34.524300771+00:00,1 +2023-10-24 21:07:34.639553826+00:00,1 +2023-10-24 21:07:34.753588867+00:00,1 +2023-10-24 21:07:34.869692372+00:00,1 +2023-10-24 21:07:34.984568067+00:00,1 +2023-10-24 21:07:35.099987795+00:00,1 +2023-10-24 21:07:35.214407190+00:00,1 +2023-10-24 21:07:35.330234345+00:00,1 +2023-10-24 21:07:35.445399562+00:00,1 +2023-10-24 21:07:35.559770097+00:00,1 +2023-10-24 21:07:35.678551632+00:00,1 +2023-10-24 21:07:35.794573644+00:00,1 +2023-10-24 21:07:35.910391609+00:00,1 +2023-10-24 21:07:36.025360976+00:00,1 +2023-10-24 21:07:36.141146228+00:00,1 +2023-10-24 21:07:36.255674558+00:00,1 +2023-10-24 21:07:36.370856075+00:00,1 +2023-10-24 21:07:36.486454852+00:00,1 +2023-10-24 21:07:36.602318985+00:00,1 +2023-10-24 21:07:36.718321975+00:00,1 +2023-10-24 21:07:36.834316221+00:00,1 +2023-10-24 21:07:36.950199250+00:00,1 +2023-10-24 21:07:37.066693385+00:00,1 +2023-10-24 21:07:37.182418455+00:00,1 +2023-10-24 21:07:37.297236789+00:00,1 +2023-10-24 21:07:37.412201945+00:00,1 +2023-10-24 21:07:37.527088878+00:00,1 +2023-10-24 21:07:37.642218915+00:00,1 +2023-10-24 21:07:37.757554916+00:00,1 +2023-10-24 21:07:37.872621826+00:00,1 +2023-10-24 21:07:37.988038425+00:00,1 +2023-10-24 21:07:38.103002634+00:00,1 +2023-10-24 21:07:38.218770353+00:00,1 +2023-10-24 21:07:38.333856416+00:00,1 +2023-10-24 21:07:38.449301091+00:00,1 +2023-10-24 21:07:38.564466001+00:00,1 +2023-10-24 21:07:38.678720071+00:00,1 +2023-10-24 21:07:38.794146834+00:00,1 +2023-10-24 21:07:38.909393533+00:00,1 +2023-10-24 21:07:39.024539675+00:00,1 +2023-10-24 21:07:39.139271046+00:00,1 +2023-10-24 21:07:39.254717422+00:00,1 +2023-10-24 21:07:39.369937239+00:00,1 +2023-10-24 21:07:39.485112397+00:00,1 +2023-10-24 21:07:39.601580670+00:00,1 +2023-10-24 21:07:39.717268132+00:00,1 +2023-10-24 21:07:39.834255020+00:00,1 +2023-10-24 21:07:39.951380749+00:00,1 +2023-10-24 21:07:40.067687685+00:00,1 +2023-10-24 21:07:40.184467971+00:00,1 +2023-10-24 21:07:40.299981375+00:00,1 +2023-10-24 21:07:40.415683865+00:00,1 +2023-10-24 21:07:40.532345218+00:00,1 +2023-10-24 21:07:40.648154402+00:00,1 +2023-10-24 21:07:40.764111398+00:00,1 +2023-10-24 21:07:40.880793876+00:00,1 +2023-10-24 21:07:40.997333978+00:00,1 +2023-10-24 21:07:41.113937870+00:00,1 +2023-10-24 21:07:41.230502797+00:00,1 +2023-10-24 21:07:41.347487731+00:00,1 +2023-10-24 21:07:41.463784800+00:00,1 +2023-10-24 21:07:41.579877138+00:00,1 +2023-10-24 21:07:41.695472467+00:00,1 +2023-10-24 21:07:41.811722344+00:00,1 +2023-10-24 21:07:41.928741250+00:00,1 +2023-10-24 21:07:42.045827518+00:00,1 +2023-10-24 21:07:42.161527834+00:00,1 +2023-10-24 21:07:42.277831731+00:00,1 +2023-10-24 21:07:42.394524466+00:00,1 +2023-10-24 21:07:42.512031775+00:00,1 +2023-10-24 21:07:42.628223411+00:00,1 +2023-10-24 21:07:42.744389715+00:00,1 +2023-10-24 21:07:42.861607541+00:00,1 +2023-10-24 21:07:42.979101312+00:00,1 +2023-10-24 21:07:43.095348306+00:00,1 +2023-10-24 21:07:43.212203283+00:00,1 +2023-10-24 21:07:43.329226589+00:00,1 +2023-10-24 21:07:43.445231344+00:00,1 +2023-10-24 21:07:43.561001934+00:00,1 +2023-10-24 21:07:43.677732776+00:00,1 +2023-10-24 21:07:43.793732705+00:00,1 +2023-10-24 21:07:43.910000702+00:00,1 +2023-10-24 21:07:44.026403898+00:00,1 +2023-10-24 21:07:44.142152903+00:00,1 +2023-10-24 21:07:44.257372472+00:00,1 +2023-10-24 21:07:44.373597896+00:00,1 +2023-10-24 21:07:44.489122186+00:00,1 +2023-10-24 21:07:44.605802900+00:00,1 +2023-10-24 21:07:44.722388049+00:00,1 +2023-10-24 21:07:44.838475119+00:00,1 +2023-10-24 21:07:44.958162708+00:00,1 +2023-10-24 21:07:45.074684594+00:00,1 +2023-10-24 21:07:45.191382012+00:00,1 +2023-10-24 21:07:45.307639345+00:00,1 +2023-10-24 21:07:45.424457429+00:00,1 +2023-10-24 21:07:45.540313638+00:00,1 +2023-10-24 21:07:45.657097228+00:00,1 +2023-10-24 21:07:45.772826672+00:00,1 +2023-10-24 21:07:45.888721734+00:00,1 +2023-10-24 21:07:46.004947913+00:00,1 +2023-10-24 21:07:46.121625472+00:00,1 +2023-10-24 21:07:46.238219730+00:00,1 +2023-10-24 21:07:46.354312953+00:00,1 +2023-10-24 21:07:46.470341211+00:00,1 +2023-10-24 21:07:46.586733979+00:00,1 +2023-10-24 21:07:46.702868801+00:00,1 +2023-10-24 21:07:46.819287028+00:00,1 +2023-10-24 21:07:46.936139554+00:00,1 +2023-10-24 21:07:47.051258453+00:00,1 +2023-10-24 21:07:47.166679391+00:00,1 +2023-10-24 21:07:47.283258671+00:00,1 +2023-10-24 21:07:47.400273221+00:00,1 +2023-10-24 21:07:47.517683017+00:00,1 +2023-10-24 21:07:47.633538666+00:00,1 +2023-10-24 21:07:47.749789759+00:00,1 +2023-10-24 21:07:47.867007564+00:00,1 +2023-10-24 21:07:47.983376404+00:00,1 +2023-10-24 21:07:48.100488120+00:00,1 +2023-10-24 21:07:48.216952869+00:00,1 +2023-10-24 21:07:48.334138386+00:00,1 +2023-10-24 21:07:48.450247894+00:00,1 +2023-10-24 21:07:48.567768492+00:00,1 +2023-10-24 21:07:48.684687828+00:00,1 +2023-10-24 21:07:48.800389365+00:00,1 +2023-10-24 21:07:48.916442611+00:00,1 +2023-10-24 21:07:49.034423828+00:00,1 +2023-10-24 21:07:49.151964379+00:00,1 +2023-10-24 21:07:49.267773116+00:00,1 +2023-10-24 21:07:49.383848109+00:00,1 +2023-10-24 21:07:49.499482341+00:00,1 +2023-10-24 21:07:49.615031944+00:00,1 +2023-10-24 21:07:49.732071366+00:00,1 +2023-10-24 21:07:49.848059691+00:00,1 +2023-10-24 21:07:49.964924711+00:00,1 +2023-10-24 21:07:50.082420624+00:00,1 +2023-10-24 21:07:50.199154087+00:00,1 +2023-10-24 21:07:50.314881352+00:00,1 +2023-10-24 21:07:50.431557127+00:00,1 +2023-10-24 21:07:50.547509402+00:00,1 +2023-10-24 21:07:50.662744430+00:00,1 +2023-10-24 21:07:50.779409998+00:00,1 +2023-10-24 21:07:50.897067864+00:00,1 +2023-10-24 21:07:51.012841864+00:00,1 +2023-10-24 21:07:51.128901830+00:00,1 +2023-10-24 21:07:51.244833282+00:00,1 +2023-10-24 21:07:51.361035567+00:00,1 +2023-10-24 21:07:51.477284208+00:00,1 +2023-10-24 21:07:51.593260449+00:00,1 +2023-10-24 21:07:51.709559434+00:00,1 +2023-10-24 21:07:51.825091899+00:00,1 +2023-10-24 21:07:51.941351183+00:00,1 +2023-10-24 21:07:52.056927652+00:00,1 +2023-10-24 21:07:52.172427249+00:00,1 +2023-10-24 21:07:52.289219662+00:00,1 +2023-10-24 21:07:52.406988798+00:00,1 +2023-10-24 21:07:52.523873054+00:00,1 +2023-10-24 21:07:52.640357321+00:00,1 +2023-10-24 21:07:52.756091771+00:00,1 +2023-10-24 21:07:52.872373063+00:00,1 +2023-10-24 21:07:52.989998145+00:00,1 +2023-10-24 21:07:53.106307802+00:00,1 +2023-10-24 21:07:53.222626478+00:00,1 +2023-10-24 21:07:53.339843270+00:00,1 +2023-10-24 21:07:53.456621865+00:00,1 +2023-10-24 21:07:53.573337046+00:00,1 +2023-10-24 21:07:53.689154941+00:00,1 +2023-10-24 21:07:53.805083925+00:00,1 +2023-10-24 21:07:53.922154721+00:00,1 +2023-10-24 21:07:54.038654724+00:00,1 +2023-10-24 21:07:54.155374512+00:00,1 +2023-10-24 21:07:54.270989407+00:00,1 +2023-10-24 21:07:54.387263521+00:00,1 +2023-10-24 21:07:54.503668336+00:00,1 +2023-10-24 21:07:54.620479903+00:00,1 +2023-10-24 21:07:54.736575856+00:00,1 +2023-10-24 21:07:54.853367005+00:00,1 +2023-10-24 21:07:54.970259251+00:00,1 +2023-10-24 21:07:55.090292300+00:00,1 +2023-10-24 21:07:55.207087496+00:00,1 +2023-10-24 21:07:55.323202668+00:00,1 +2023-10-24 21:07:55.439063831+00:00,1 +2023-10-24 21:07:55.554561219+00:00,1 +2023-10-24 21:07:55.670875215+00:00,1 +2023-10-24 21:07:55.786770408+00:00,1 +2023-10-24 21:07:55.903403126+00:00,1 +2023-10-24 21:07:56.020209451+00:00,1 +2023-10-24 21:07:56.136223291+00:00,1 +2023-10-24 21:07:56.251607193+00:00,1 +2023-10-24 21:07:56.368793499+00:00,1 +2023-10-24 21:07:56.484811364+00:00,1 +2023-10-24 21:07:56.601519694+00:00,1 +2023-10-24 21:07:56.716795649+00:00,1 +2023-10-24 21:07:56.832297479+00:00,1 +2023-10-24 21:07:56.948686714+00:00,1 +2023-10-24 21:07:57.065478199+00:00,1 +2023-10-24 21:07:57.181475872+00:00,1 +2023-10-24 21:07:57.296632060+00:00,1 +2023-10-24 21:07:57.412035253+00:00,1 +2023-10-24 21:07:57.528550572+00:00,1 +2023-10-24 21:07:57.643742474+00:00,1 +2023-10-24 21:07:57.759949600+00:00,1 +2023-10-24 21:07:57.877357369+00:00,1 +2023-10-24 21:07:57.993107359+00:00,1 +2023-10-24 21:07:58.109310614+00:00,1 +2023-10-24 21:07:58.226071343+00:00,1 +2023-10-24 21:07:58.341955222+00:00,1 +2023-10-24 21:07:58.459052108+00:00,1 +2023-10-24 21:07:58.575283065+00:00,1 +2023-10-24 21:07:58.691496811+00:00,1 +2023-10-24 21:07:58.807074984+00:00,1 +2023-10-24 21:07:58.923856146+00:00,1 +2023-10-24 21:07:59.040613198+00:00,1 +2023-10-24 21:07:59.157164474+00:00,1 +2023-10-24 21:07:59.273431574+00:00,1 +2023-10-24 21:07:59.390231196+00:00,1 +2023-10-24 21:07:59.507552329+00:00,1 +2023-10-24 21:07:59.624067129+00:00,1 +2023-10-24 21:07:59.740372353+00:00,1 +2023-10-24 21:07:59.856778293+00:00,1 +2023-10-24 21:07:59.974428983+00:00,1 +2023-10-24 21:08:00.092075745+00:00,1 +2023-10-24 21:08:00.207463962+00:00,1 +2023-10-24 21:08:00.324402960+00:00,1 +2023-10-24 21:08:00.439922648+00:00,1 +2023-10-24 21:08:00.556000651+00:00,1 +2023-10-24 21:08:00.672475127+00:00,1 +2023-10-24 21:08:00.789598256+00:00,1 +2023-10-24 21:08:00.906227206+00:00,1 +2023-10-24 21:08:01.023420030+00:00,1 +2023-10-24 21:08:01.140186497+00:00,1 +2023-10-24 21:08:01.257206082+00:00,1 +2023-10-24 21:08:01.372352305+00:00,1 +2023-10-24 21:08:01.488548304+00:00,1 +2023-10-24 21:08:01.605144984+00:00,1 +2023-10-24 21:08:01.721350426+00:00,1 +2023-10-24 21:08:01.837668604+00:00,1 +2023-10-24 21:08:01.954671140+00:00,1 +2023-10-24 21:08:02.071895473+00:00,1 +2023-10-24 21:08:02.188373382+00:00,1 +2023-10-24 21:08:02.303915623+00:00,1 +2023-10-24 21:08:02.419746562+00:00,1 +2023-10-24 21:08:02.535758079+00:00,1 +2023-10-24 21:08:02.652242557+00:00,1 +2023-10-24 21:08:02.768798279+00:00,1 +2023-10-24 21:08:02.885601905+00:00,1 +2023-10-24 21:08:03.001383631+00:00,1 +2023-10-24 21:08:03.117819833+00:00,1 +2023-10-24 21:08:03.234205812+00:00,1 +2023-10-24 21:08:03.350603384+00:00,1 +2023-10-24 21:08:03.466382642+00:00,1 +2023-10-24 21:08:03.582643413+00:00,1 +2023-10-24 21:08:03.698585865+00:00,1 +2023-10-24 21:08:03.815952291+00:00,1 +2023-10-24 21:08:03.931805413+00:00,1 +2023-10-24 21:08:04.048092027+00:00,1 +2023-10-24 21:08:04.164708882+00:00,1 +2023-10-24 21:08:04.281365665+00:00,1 +2023-10-24 21:08:04.397184313+00:00,1 +2023-10-24 21:08:04.513296296+00:00,1 +2023-10-24 21:08:04.630078908+00:00,1 +2023-10-24 21:08:04.746787962+00:00,1 +2023-10-24 21:08:04.863905220+00:00,1 +2023-10-24 21:08:04.980364836+00:00,1 +2023-10-24 21:08:05.097233141+00:00,1 +2023-10-24 21:08:05.214101547+00:00,1 +2023-10-24 21:08:05.329761890+00:00,1 +2023-10-24 21:08:05.445774189+00:00,1 +2023-10-24 21:08:05.561714252+00:00,1 +2023-10-24 21:08:05.677507537+00:00,1 +2023-10-24 21:08:05.793853799+00:00,1 +2023-10-24 21:08:05.911118503+00:00,1 +2023-10-24 21:08:06.026930437+00:00,1 +2023-10-24 21:08:06.142616420+00:00,1 +2023-10-24 21:08:06.258397055+00:00,1 +2023-10-24 21:08:06.374024496+00:00,1 +2023-10-24 21:08:06.490482398+00:00,1 +2023-10-24 21:08:06.606845619+00:00,1 +2023-10-24 21:08:06.723093375+00:00,1 +2023-10-24 21:08:06.839715083+00:00,1 +2023-10-24 21:08:06.956445145+00:00,1 +2023-10-24 21:08:07.073333591+00:00,1 +2023-10-24 21:08:07.189006432+00:00,1 +2023-10-24 21:08:07.304492216+00:00,1 +2023-10-24 21:08:07.420336735+00:00,1 +2023-10-24 21:08:07.536020608+00:00,1 +2023-10-24 21:08:07.651901311+00:00,1 +2023-10-24 21:08:07.767944817+00:00,1 +2023-10-24 21:08:07.884445768+00:00,1 +2023-10-24 21:08:08.000411408+00:00,1 +2023-10-24 21:08:08.116792689+00:00,1 +2023-10-24 21:08:08.232598945+00:00,1 +2023-10-24 21:08:08.348206101+00:00,1 +2023-10-24 21:08:08.463699281+00:00,1 +2023-10-24 21:08:08.579801032+00:00,1 +2023-10-24 21:08:08.696230249+00:00,1 +2023-10-24 21:08:08.812467582+00:00,1 +2023-10-24 21:08:08.928718533+00:00,1 +2023-10-24 21:08:09.045126510+00:00,1 +2023-10-24 21:08:09.161358825+00:00,1 +2023-10-24 21:08:09.277416213+00:00,1 +2023-10-24 21:08:09.393971869+00:00,1 +2023-10-24 21:08:09.508707615+00:00,1 +2023-10-24 21:08:09.624999811+00:00,1 +2023-10-24 21:08:09.740815085+00:00,1 +2023-10-24 21:08:09.856941982+00:00,1 +2023-10-24 21:08:09.973455327+00:00,1 +2023-10-24 21:08:10.091235245+00:00,1 +2023-10-24 21:08:10.207563855+00:00,1 +2023-10-24 21:08:10.324752888+00:00,1 +2023-10-24 21:08:10.441150968+00:00,1 +2023-10-24 21:08:10.557883280+00:00,1 +2023-10-24 21:08:10.674263437+00:00,1 +2023-10-24 21:08:10.790506390+00:00,1 +2023-10-24 21:08:10.907188037+00:00,1 +2023-10-24 21:08:11.023713818+00:00,1 +2023-10-24 21:08:11.140375127+00:00,1 +2023-10-24 21:08:11.256318182+00:00,1 +2023-10-24 21:08:11.372832602+00:00,1 +2023-10-24 21:08:11.489717043+00:00,1 +2023-10-24 21:08:11.605319061+00:00,1 +2023-10-24 21:08:11.721020636+00:00,1 +2023-10-24 21:08:11.836431060+00:00,1 +2023-10-24 21:08:11.953034360+00:00,1 +2023-10-24 21:08:12.068781218+00:00,1 +2023-10-24 21:08:12.184703700+00:00,1 +2023-10-24 21:08:12.300310081+00:00,1 +2023-10-24 21:08:12.415433799+00:00,1 +2023-10-24 21:08:12.532425414+00:00,1 +2023-10-24 21:08:12.649258393+00:00,1 +2023-10-24 21:08:12.766354522+00:00,1 +2023-10-24 21:08:12.882618524+00:00,1 +2023-10-24 21:08:12.999431667+00:00,1 +2023-10-24 21:08:13.117394210+00:00,1 +2023-10-24 21:08:13.233623069+00:00,1 +2023-10-24 21:08:13.350691226+00:00,1 +2023-10-24 21:08:13.468507867+00:00,1 +2023-10-24 21:08:13.586004527+00:00,1 +2023-10-24 21:08:13.701690440+00:00,1 +2023-10-24 21:08:13.818748481+00:00,1 +2023-10-24 21:08:13.934455774+00:00,1 +2023-10-24 21:08:14.050050858+00:00,1 +2023-10-24 21:08:14.166813592+00:00,1 +2023-10-24 21:08:14.282818032+00:00,1 +2023-10-24 21:08:14.398965107+00:00,1 +2023-10-24 21:08:14.515006566+00:00,1 +2023-10-24 21:08:14.631803177+00:00,1 +2023-10-24 21:08:14.749072267+00:00,1 +2023-10-24 21:08:14.865152016+00:00,1 +2023-10-24 21:08:14.981877188+00:00,1 +2023-10-24 21:08:15.098785581+00:00,1 +2023-10-24 21:08:15.215664050+00:00,1 +2023-10-24 21:08:15.331962003+00:00,1 +2023-10-24 21:08:15.448861006+00:00,1 +2023-10-24 21:08:15.564829601+00:00,1 +2023-10-24 21:08:15.681669051+00:00,1 +2023-10-24 21:08:15.797510229+00:00,1 +2023-10-24 21:08:15.913199388+00:00,1 +2023-10-24 21:08:16.030299276+00:00,1 +2023-10-24 21:08:16.146541116+00:00,1 +2023-10-24 21:08:16.261718161+00:00,1 +2023-10-24 21:08:16.377379932+00:00,1 +2023-10-24 21:08:16.493845567+00:00,1 +2023-10-24 21:08:16.610214029+00:00,1 +2023-10-24 21:08:16.726321529+00:00,1 +2023-10-24 21:08:16.842138136+00:00,1 +2023-10-24 21:08:16.957583190+00:00,1 +2023-10-24 21:08:17.073772932+00:00,1 +2023-10-24 21:08:17.190232628+00:00,1 +2023-10-24 21:08:17.307484577+00:00,1 +2023-10-24 21:08:17.423449994+00:00,1 +2023-10-24 21:08:17.540172826+00:00,1 +2023-10-24 21:08:17.656385044+00:00,1 +2023-10-24 21:08:17.772784406+00:00,1 +2023-10-24 21:08:17.889801234+00:00,1 +2023-10-24 21:08:18.006541101+00:00,1 +2023-10-24 21:08:18.123493414+00:00,1 +2023-10-24 21:08:18.240010348+00:00,1 +2023-10-24 21:08:18.355858637+00:00,1 +2023-10-24 21:08:18.471858803+00:00,1 +2023-10-24 21:08:18.588722558+00:00,1 +2023-10-24 21:08:18.705643173+00:00,1 +2023-10-24 21:08:18.821703283+00:00,1 +2023-10-24 21:08:18.938329852+00:00,1 +2023-10-24 21:08:19.054776037+00:00,1 +2023-10-24 21:08:19.171258201+00:00,1 +2023-10-24 21:08:19.287255843+00:00,1 +2023-10-24 21:08:19.404376709+00:00,1 +2023-10-24 21:08:19.520886396+00:00,1 +2023-10-24 21:08:19.638650613+00:00,1 +2023-10-24 21:08:19.754503117+00:00,1 +2023-10-24 21:08:19.870966938+00:00,1 +2023-10-24 21:08:19.988009074+00:00,1 +2023-10-24 21:08:20.104991924+00:00,1 +2023-10-24 21:08:20.222272191+00:00,1 +2023-10-24 21:08:20.338951301+00:00,1 +2023-10-24 21:08:20.455035238+00:00,1 +2023-10-24 21:08:20.570993404+00:00,1 +2023-10-24 21:08:20.686700140+00:00,1 +2023-10-24 21:08:20.801821857+00:00,1 +2023-10-24 21:08:20.917935550+00:00,1 +2023-10-24 21:08:21.033830023+00:00,1 +2023-10-24 21:08:21.150579291+00:00,1 +2023-10-24 21:08:21.266488872+00:00,1 +2023-10-24 21:08:21.382594755+00:00,1 +2023-10-24 21:08:21.500144465+00:00,1 +2023-10-24 21:08:21.616446961+00:00,1 +2023-10-24 21:08:21.732963284+00:00,1 +2023-10-24 21:08:21.848917956+00:00,1 +2023-10-24 21:08:21.965587189+00:00,1 +2023-10-24 21:08:22.082982280+00:00,1 +2023-10-24 21:08:22.199412397+00:00,1 +2023-10-24 21:08:22.316035493+00:00,1 +2023-10-24 21:08:22.432739064+00:00,1 +2023-10-24 21:08:22.549068609+00:00,1 +2023-10-24 21:08:22.664782267+00:00,1 +2023-10-24 21:08:22.779860593+00:00,1 +2023-10-24 21:08:22.895960548+00:00,1 +2023-10-24 21:08:23.012880557+00:00,1 +2023-10-24 21:08:23.128731053+00:00,1 +2023-10-24 21:08:23.244941915+00:00,1 +2023-10-24 21:08:23.361421579+00:00,1 +2023-10-24 21:08:23.479227875+00:00,1 +2023-10-24 21:08:23.596005272+00:00,1 +2023-10-24 21:08:23.711408518+00:00,1 +2023-10-24 21:08:23.828228391+00:00,1 +2023-10-24 21:08:23.945438311+00:00,1 +2023-10-24 21:08:24.062811617+00:00,1 +2023-10-24 21:08:24.179124496+00:00,1 +2023-10-24 21:08:24.295677388+00:00,1 +2023-10-24 21:08:24.413636463+00:00,1 +2023-10-24 21:08:24.529338983+00:00,1 +2023-10-24 21:08:24.646060952+00:00,1 +2023-10-24 21:08:24.762168987+00:00,1 +2023-10-24 21:08:24.878225182+00:00,1 +2023-10-24 21:08:24.995336975+00:00,1 +2023-10-24 21:08:25.111510811+00:00,1 +2023-10-24 21:08:25.228300713+00:00,1 +2023-10-24 21:08:25.345215185+00:00,1 +2023-10-24 21:08:25.460939822+00:00,1 +2023-10-24 21:08:25.576279487+00:00,1 +2023-10-24 21:08:25.692278113+00:00,1 +2023-10-24 21:08:25.807803911+00:00,1 +2023-10-24 21:08:25.923153313+00:00,1 +2023-10-24 21:08:26.040514921+00:00,1 +2023-10-24 21:08:26.156637342+00:00,1 +2023-10-24 21:08:26.272488818+00:00,1 +2023-10-24 21:08:26.387896800+00:00,1 +2023-10-24 21:08:26.504694026+00:00,1 +2023-10-24 21:08:26.622265119+00:00,1 +2023-10-24 21:08:26.739209482+00:00,1 +2023-10-24 21:08:26.855444203+00:00,1 +2023-10-24 21:08:26.971455239+00:00,1 +2023-10-24 21:08:27.087466977+00:00,1 +2023-10-24 21:08:27.204210988+00:00,1 +2023-10-24 21:08:27.320093863+00:00,1 +2023-10-24 21:08:27.436960651+00:00,1 +2023-10-24 21:08:27.553975886+00:00,1 +2023-10-24 21:08:27.671200220+00:00,1 +2023-10-24 21:08:27.787333306+00:00,1 +2023-10-24 21:08:27.903342990+00:00,1 +2023-10-24 21:08:28.020909647+00:00,1 +2023-10-24 21:08:28.137902455+00:00,1 +2023-10-24 21:08:28.255249356+00:00,1 +2023-10-24 21:08:28.373162396+00:00,1 +2023-10-24 21:08:28.490648533+00:00,1 +2023-10-24 21:08:28.607992039+00:00,1 +2023-10-24 21:08:28.724440798+00:00,1 +2023-10-24 21:08:28.840571178+00:00,1 +2023-10-24 21:08:28.956606584+00:00,1 +2023-10-24 21:08:29.073649848+00:00,1 +2023-10-24 21:08:29.189470520+00:00,1 +2023-10-24 21:08:29.306419455+00:00,1 +2023-10-24 21:08:29.423239782+00:00,1 +2023-10-24 21:08:29.539348203+00:00,1 +2023-10-24 21:08:29.657539798+00:00,1 +2023-10-24 21:08:29.773340008+00:00,1 +2023-10-24 21:08:29.889482798+00:00,1 +2023-10-24 21:08:30.006545605+00:00,1 +2023-10-24 21:08:30.122872695+00:00,1 +2023-10-24 21:08:30.238962596+00:00,1 +2023-10-24 21:08:30.356205604+00:00,1 +2023-10-24 21:08:30.472273653+00:00,1 +2023-10-24 21:08:30.590619176+00:00,1 +2023-10-24 21:08:30.706718004+00:00,1 +2023-10-24 21:08:30.824794233+00:00,1 +2023-10-24 21:08:30.942284864+00:00,1 +2023-10-24 21:08:31.059995224+00:00,1 +2023-10-24 21:08:31.176618030+00:00,1 +2023-10-24 21:08:31.293143272+00:00,1 +2023-10-24 21:08:31.409498204+00:00,1 +2023-10-24 21:08:31.525719876+00:00,1 +2023-10-24 21:08:31.642327539+00:00,1 +2023-10-24 21:08:31.757850113+00:00,1 +2023-10-24 21:08:31.873549665+00:00,1 +2023-10-24 21:08:31.989597548+00:00,1 +2023-10-24 21:08:32.105662776+00:00,1 +2023-10-24 21:08:32.221953561+00:00,1 +2023-10-24 21:08:32.338117496+00:00,1 +2023-10-24 21:08:32.453503706+00:00,1 +2023-10-24 21:08:32.569242476+00:00,1 +2023-10-24 21:08:32.685748884+00:00,1 +2023-10-24 21:08:32.802383731+00:00,1 +2023-10-24 21:08:32.919308592+00:00,1 +2023-10-24 21:08:33.036478879+00:00,1 +2023-10-24 21:08:33.153964683+00:00,1 +2023-10-24 21:08:33.270237814+00:00,1 +2023-10-24 21:08:33.386073853+00:00,1 +2023-10-24 21:08:33.504017497+00:00,1 +2023-10-24 21:08:33.620873450+00:00,1 +2023-10-24 21:08:33.738335121+00:00,1 +2023-10-24 21:08:33.855219600+00:00,1 +2023-10-24 21:08:33.971666960+00:00,1 +2023-10-24 21:08:34.088803768+00:00,1 +2023-10-24 21:08:34.205456719+00:00,1 +2023-10-24 21:08:34.321068323+00:00,1 +2023-10-24 21:08:34.436631245+00:00,1 +2023-10-24 21:08:34.553264685+00:00,1 +2023-10-24 21:08:34.670138428+00:00,1 +2023-10-24 21:08:34.786249189+00:00,1 +2023-10-24 21:08:34.901811062+00:00,1 +2023-10-24 21:08:35.019009416+00:00,1 +2023-10-24 21:08:35.135833727+00:00,1 +2023-10-24 21:08:35.252496769+00:00,1 +2023-10-24 21:08:35.368536858+00:00,1 +2023-10-24 21:08:35.484447249+00:00,1 +2023-10-24 21:08:35.601041060+00:00,1 +2023-10-24 21:08:35.717651120+00:00,1 +2023-10-24 21:08:35.833885842+00:00,1 +2023-10-24 21:08:35.949654183+00:00,1 +2023-10-24 21:08:36.065516534+00:00,1 +2023-10-24 21:08:36.181058694+00:00,1 +2023-10-24 21:08:36.298538508+00:00,1 +2023-10-24 21:08:36.415392067+00:00,1 +2023-10-24 21:08:36.532614280+00:00,1 +2023-10-24 21:08:36.650233404+00:00,1 +2023-10-24 21:08:36.767363359+00:00,1 +2023-10-24 21:08:36.883762944+00:00,1 +2023-10-24 21:08:36.999999545+00:00,1 +2023-10-24 21:08:37.116376663+00:00,1 +2023-10-24 21:08:37.233382056+00:00,1 +2023-10-24 21:08:37.349532138+00:00,1 +2023-10-24 21:08:37.465612340+00:00,1 +2023-10-24 21:08:37.582587139+00:00,1 +2023-10-24 21:08:37.698160854+00:00,1 +2023-10-24 21:08:37.814138292+00:00,1 +2023-10-24 21:08:37.929952259+00:00,1 +2023-10-24 21:08:38.045668741+00:00,1 +2023-10-24 21:08:38.162808462+00:00,1 +2023-10-24 21:08:38.278422224+00:00,1 +2023-10-24 21:08:38.394593971+00:00,1 +2023-10-24 21:08:38.510898134+00:00,1 +2023-10-24 21:08:38.627819845+00:00,1 +2023-10-24 21:08:38.744820214+00:00,1 +2023-10-24 21:08:38.860957237+00:00,1 +2023-10-24 21:08:38.978025147+00:00,1 +2023-10-24 21:08:39.094718729+00:00,1 +2023-10-24 21:08:39.212879957+00:00,1 +2023-10-24 21:08:39.330062327+00:00,1 +2023-10-24 21:08:39.445899472+00:00,1 +2023-10-24 21:08:39.562787916+00:00,1 +2023-10-24 21:08:39.678426846+00:00,1 +2023-10-24 21:08:39.794635994+00:00,1 +2023-10-24 21:08:39.910570300+00:00,1 +2023-10-24 21:08:40.026574889+00:00,1 +2023-10-24 21:08:40.143667526+00:00,1 +2023-10-24 21:08:40.259691723+00:00,1 +2023-10-24 21:08:40.376120918+00:00,1 +2023-10-24 21:08:40.492609722+00:00,1 +2023-10-24 21:08:40.609556196+00:00,1 +2023-10-24 21:08:40.727300201+00:00,1 +2023-10-24 21:08:40.843884221+00:00,1 +2023-10-24 21:08:40.959687205+00:00,1 +2023-10-24 21:08:41.076012437+00:00,1 +2023-10-24 21:08:41.191952522+00:00,1 +2023-10-24 21:08:41.307774536+00:00,1 +2023-10-24 21:08:41.424530331+00:00,1 +2023-10-24 21:08:41.540369809+00:00,1 +2023-10-24 21:08:41.656238697+00:00,1 +2023-10-24 21:08:41.772051913+00:00,1 +2023-10-24 21:08:41.887939890+00:00,1 +2023-10-24 21:08:42.004041760+00:00,1 +2023-10-24 21:08:42.120387799+00:00,1 +2023-10-24 21:08:42.236525930+00:00,1 +2023-10-24 21:08:42.353733721+00:00,1 +2023-10-24 21:08:42.469730100+00:00,1 +2023-10-24 21:08:42.585619680+00:00,1 +2023-10-24 21:08:42.701721850+00:00,1 +2023-10-24 21:08:42.818582154+00:00,1 +2023-10-24 21:08:42.934924669+00:00,1 +2023-10-24 21:08:43.051495589+00:00,1 +2023-10-24 21:08:43.168020839+00:00,1 +2023-10-24 21:08:43.283966773+00:00,1 +2023-10-24 21:08:43.400091487+00:00,1 +2023-10-24 21:08:43.516615809+00:00,1 +2023-10-24 21:08:43.633154626+00:00,1 +2023-10-24 21:08:43.749238984+00:00,1 +2023-10-24 21:08:43.868341055+00:00,1 +2023-10-24 21:08:43.985567980+00:00,1 +2023-10-24 21:08:44.101732485+00:00,1 +2023-10-24 21:08:44.217840142+00:00,1 +2023-10-24 21:08:44.334433882+00:00,1 +2023-10-24 21:08:44.451374179+00:00,1 +2023-10-24 21:08:44.568312875+00:00,1 +2023-10-24 21:08:44.685016581+00:00,1 +2023-10-24 21:08:44.802359803+00:00,1 +2023-10-24 21:08:44.918519405+00:00,1 +2023-10-24 21:08:45.034907604+00:00,1 +2023-10-24 21:08:45.151990941+00:00,1 +2023-10-24 21:08:45.268127657+00:00,1 +2023-10-24 21:08:45.385430129+00:00,1 +2023-10-24 21:08:45.501660605+00:00,1 +2023-10-24 21:08:45.618256202+00:00,1 +2023-10-24 21:08:45.734211317+00:00,1 +2023-10-24 21:08:45.850204842+00:00,1 +2023-10-24 21:08:45.966128557+00:00,1 +2023-10-24 21:08:46.081797388+00:00,1 +2023-10-24 21:08:46.197658864+00:00,1 +2023-10-24 21:08:46.314547238+00:00,1 +2023-10-24 21:08:46.431664903+00:00,1 +2023-10-24 21:08:46.549058870+00:00,1 +2023-10-24 21:08:46.665441566+00:00,1 +2023-10-24 21:08:46.782271122+00:00,1 +2023-10-24 21:08:46.898479275+00:00,1 +2023-10-24 21:08:47.015773452+00:00,1 +2023-10-24 21:08:47.132665482+00:00,1 +2023-10-24 21:08:47.249331154+00:00,1 +2023-10-24 21:08:47.366770748+00:00,1 +2023-10-24 21:08:47.482592961+00:00,1 +2023-10-24 21:08:47.602633128+00:00,1 +2023-10-24 21:08:47.717976977+00:00,1 +2023-10-24 21:08:47.834915557+00:00,1 +2023-10-24 21:08:47.951446323+00:00,1 +2023-10-24 21:08:48.067727648+00:00,1 +2023-10-24 21:08:48.183445473+00:00,1 +2023-10-24 21:08:48.299638989+00:00,1 +2023-10-24 21:08:48.415676142+00:00,1 +2023-10-24 21:08:48.532297736+00:00,1 +2023-10-24 21:08:48.649222512+00:00,1 +2023-10-24 21:08:48.765417772+00:00,1 +2023-10-24 21:08:48.881502324+00:00,1 +2023-10-24 21:08:48.998320814+00:00,1 +2023-10-24 21:08:49.114114911+00:00,1 +2023-10-24 21:08:49.230878714+00:00,1 +2023-10-24 21:08:49.347947172+00:00,1 +2023-10-24 21:08:49.465477641+00:00,1 +2023-10-24 21:08:49.581415171+00:00,1 +2023-10-24 21:08:49.697968208+00:00,1 +2023-10-24 21:08:49.814011423+00:00,1 +2023-10-24 21:08:49.930282708+00:00,1 +2023-10-24 21:08:50.046809353+00:00,1 +2023-10-24 21:08:50.163739206+00:00,1 +2023-10-24 21:08:50.281041437+00:00,1 +2023-10-24 21:08:50.397702471+00:00,1 +2023-10-24 21:08:50.513624650+00:00,1 +2023-10-24 21:08:50.629643589+00:00,1 +2023-10-24 21:08:50.745699758+00:00,1 +2023-10-24 21:08:50.862221515+00:00,1 +2023-10-24 21:08:50.978625636+00:00,1 +2023-10-24 21:08:51.094921236+00:00,1 +2023-10-24 21:08:51.211134283+00:00,1 +2023-10-24 21:08:51.327304938+00:00,1 +2023-10-24 21:08:51.443415843+00:00,1 +2023-10-24 21:08:51.560582711+00:00,1 +2023-10-24 21:08:51.677361747+00:00,1 +2023-10-24 21:08:51.793680325+00:00,1 +2023-10-24 21:08:51.910181225+00:00,1 +2023-10-24 21:08:52.027043232+00:00,1 +2023-10-24 21:08:52.144262300+00:00,1 +2023-10-24 21:08:52.261309247+00:00,1 +2023-10-24 21:08:52.377286092+00:00,1 +2023-10-24 21:08:52.493791414+00:00,1 +2023-10-24 21:08:52.610952803+00:00,1 +2023-10-24 21:08:52.727073204+00:00,1 +2023-10-24 21:08:52.843818831+00:00,1 +2023-10-24 21:08:52.960522908+00:00,1 +2023-10-24 21:08:53.077011679+00:00,1 +2023-10-24 21:08:53.193325191+00:00,1 +2023-10-24 21:08:53.308674842+00:00,1 +2023-10-24 21:08:53.424281603+00:00,1 +2023-10-24 21:08:53.539550843+00:00,1 +2023-10-24 21:08:53.655510427+00:00,1 +2023-10-24 21:08:53.772334558+00:00,1 +2023-10-24 21:08:53.889373079+00:00,1 +2023-10-24 21:08:54.006619596+00:00,1 +2023-10-24 21:08:54.122643968+00:00,1 +2023-10-24 21:08:54.239215480+00:00,1 +2023-10-24 21:08:54.355598845+00:00,1 +2023-10-24 21:08:54.471204004+00:00,1 +2023-10-24 21:08:54.586967253+00:00,1 +2023-10-24 21:08:54.702773289+00:00,1 +2023-10-24 21:08:54.818864937+00:00,1 +2023-10-24 21:08:54.935084326+00:00,1 +2023-10-24 21:08:55.049971281+00:00,1 +2023-10-24 21:08:55.165799990+00:00,1 +2023-10-24 21:08:55.282702309+00:00,1 +2023-10-24 21:08:55.398810311+00:00,1 +2023-10-24 21:08:55.515923347+00:00,1 +2023-10-24 21:08:55.632198222+00:00,1 +2023-10-24 21:08:55.747833476+00:00,1 +2023-10-24 21:08:55.864348696+00:00,1 +2023-10-24 21:08:55.980968919+00:00,1 +2023-10-24 21:08:56.096815663+00:00,1 +2023-10-24 21:08:56.212240065+00:00,1 +2023-10-24 21:08:56.328172393+00:00,1 +2023-10-24 21:08:56.445295196+00:00,1 +2023-10-24 21:08:56.561738645+00:00,1 +2023-10-24 21:08:56.677510150+00:00,1 +2023-10-24 21:08:56.792962021+00:00,1 +2023-10-24 21:08:56.909197376+00:00,1 +2023-10-24 21:08:57.026119119+00:00,1 +2023-10-24 21:08:57.143088918+00:00,1 +2023-10-24 21:08:57.259716132+00:00,1 +2023-10-24 21:08:57.376474448+00:00,1 +2023-10-24 21:08:57.492921890+00:00,1 +2023-10-24 21:08:57.609496311+00:00,1 +2023-10-24 21:08:57.725886102+00:00,1 +2023-10-24 21:08:57.841985080+00:00,1 +2023-10-24 21:08:57.958351246+00:00,1 +2023-10-24 21:08:58.074816061+00:00,1 +2023-10-24 21:08:58.192321414+00:00,1 +2023-10-24 21:08:58.308449630+00:00,1 +2023-10-24 21:08:58.424957240+00:00,1 +2023-10-24 21:08:58.542082496+00:00,1 +2023-10-24 21:08:58.658117742+00:00,1 +2023-10-24 21:08:58.773678690+00:00,1 +2023-10-24 21:08:58.889509400+00:00,1 +2023-10-24 21:08:59.006254510+00:00,1 +2023-10-24 21:08:59.122397836+00:00,1 +2023-10-24 21:08:59.239727071+00:00,1 +2023-10-24 21:08:59.356045119+00:00,1 +2023-10-24 21:08:59.473694679+00:00,1 +2023-10-24 21:08:59.590949860+00:00,1 +2023-10-24 21:08:59.706550723+00:00,1 +2023-10-24 21:08:59.823900609+00:00,1 +2023-10-24 21:08:59.939805088+00:00,1 +2023-10-24 21:09:00.056831563+00:00,1 +2023-10-24 21:09:00.172450584+00:00,1 +2023-10-24 21:09:00.289221253+00:00,1 +2023-10-24 21:09:00.405286334+00:00,1 +2023-10-24 21:09:00.521987499+00:00,1 +2023-10-24 21:09:00.638751890+00:00,1 +2023-10-24 21:09:00.754596766+00:00,1 +2023-10-24 21:09:00.871231397+00:00,1 +2023-10-24 21:09:00.987844054+00:00,1 +2023-10-24 21:09:01.104242792+00:00,1 +2023-10-24 21:09:01.220367281+00:00,1 +2023-10-24 21:09:01.337069261+00:00,1 +2023-10-24 21:09:01.453123313+00:00,1 +2023-10-24 21:09:01.570330192+00:00,1 +2023-10-24 21:09:01.686204278+00:00,1 +2023-10-24 21:09:01.800877281+00:00,1 +2023-10-24 21:09:01.917131124+00:00,1 +2023-10-24 21:09:02.034249877+00:00,1 +2023-10-24 21:09:02.151245469+00:00,1 +2023-10-24 21:09:02.268070220+00:00,1 +2023-10-24 21:09:02.384072102+00:00,1 +2023-10-24 21:09:02.501125871+00:00,1 +2023-10-24 21:09:02.617025406+00:00,1 +2023-10-24 21:09:02.733600573+00:00,1 +2023-10-24 21:09:02.850139858+00:00,1 +2023-10-24 21:09:02.966594013+00:00,1 +2023-10-24 21:09:03.081859839+00:00,1 +2023-10-24 21:09:03.197714045+00:00,1 +2023-10-24 21:09:03.314716698+00:00,1 +2023-10-24 21:09:03.432019503+00:00,1 +2023-10-24 21:09:03.548173065+00:00,1 +2023-10-24 21:09:03.664663345+00:00,1 +2023-10-24 21:09:03.782006817+00:00,1 +2023-10-24 21:09:03.897694107+00:00,1 +2023-10-24 21:09:04.014466877+00:00,1 +2023-10-24 21:09:04.131200895+00:00,1 +2023-10-24 21:09:04.247996862+00:00,1 +2023-10-24 21:09:04.364795505+00:00,1 +2023-10-24 21:09:04.481699670+00:00,1 +2023-10-24 21:09:04.598772538+00:00,1 +2023-10-24 21:09:04.714524252+00:00,1 +2023-10-24 21:09:04.829802979+00:00,1 +2023-10-24 21:09:04.945500445+00:00,1 +2023-10-24 21:09:05.061595379+00:00,1 +2023-10-24 21:09:05.177691574+00:00,1 +2023-10-24 21:09:05.294001664+00:00,1 +2023-10-24 21:09:05.410895044+00:00,1 +2023-10-24 21:09:05.527687512+00:00,1 +2023-10-24 21:09:05.644513050+00:00,1 +2023-10-24 21:09:05.761716592+00:00,1 +2023-10-24 21:09:05.878960150+00:00,1 +2023-10-24 21:09:05.995129059+00:00,1 +2023-10-24 21:09:06.111814530+00:00,1 +2023-10-24 21:09:06.228517807+00:00,1 +2023-10-24 21:09:06.344049039+00:00,1 +2023-10-24 21:09:06.460847623+00:00,1 +2023-10-24 21:09:06.577702424+00:00,1 +2023-10-24 21:09:06.693843201+00:00,1 +2023-10-24 21:09:06.810112952+00:00,1 +2023-10-24 21:09:06.925570523+00:00,1 +2023-10-24 21:09:07.041879746+00:00,1 +2023-10-24 21:09:07.157161115+00:00,1 +2023-10-24 21:09:07.273077030+00:00,1 +2023-10-24 21:09:07.388554434+00:00,1 +2023-10-24 21:09:07.505467358+00:00,1 +2023-10-24 21:09:07.621875516+00:00,1 +2023-10-24 21:09:07.739018579+00:00,1 +2023-10-24 21:09:07.854750196+00:00,1 +2023-10-24 21:09:07.970808526+00:00,1 +2023-10-24 21:09:08.086708238+00:00,1 +2023-10-24 21:09:08.203018857+00:00,1 +2023-10-24 21:09:08.319366620+00:00,1 +2023-10-24 21:09:08.436029611+00:00,1 +2023-10-24 21:09:08.552103830+00:00,1 +2023-10-24 21:09:08.668178752+00:00,1 +2023-10-24 21:09:08.784343112+00:00,1 +2023-10-24 21:09:08.901179846+00:00,1 +2023-10-24 21:09:09.018339267+00:00,1 +2023-10-24 21:09:09.135753126+00:00,1 +2023-10-24 21:09:09.251657843+00:00,1 +2023-10-24 21:09:09.368440351+00:00,1 +2023-10-24 21:09:09.485587674+00:00,1 +2023-10-24 21:09:09.602371044+00:00,1 +2023-10-24 21:09:09.718233596+00:00,1 +2023-10-24 21:09:09.833632770+00:00,1 +2023-10-24 21:09:09.950390363+00:00,1 +2023-10-24 21:09:10.067235010+00:00,1 +2023-10-24 21:09:10.184383884+00:00,1 +2023-10-24 21:09:10.302047700+00:00,1 +2023-10-24 21:09:10.418674849+00:00,1 +2023-10-24 21:09:10.535453747+00:00,1 +2023-10-24 21:09:10.651915032+00:00,1 +2023-10-24 21:09:10.768603009+00:00,1 +2023-10-24 21:09:10.884950168+00:00,1 +2023-10-24 21:09:11.001275733+00:00,1 +2023-10-24 21:09:11.118505861+00:00,1 +2023-10-24 21:09:11.235217558+00:00,1 +2023-10-24 21:09:11.352685068+00:00,1 +2023-10-24 21:09:11.469913704+00:00,1 +2023-10-24 21:09:11.586590583+00:00,1 +2023-10-24 21:09:11.703104712+00:00,1 +2023-10-24 21:09:11.819863867+00:00,1 +2023-10-24 21:09:11.936077865+00:00,1 +2023-10-24 21:09:12.052647717+00:00,1 +2023-10-24 21:09:12.168867774+00:00,1 +2023-10-24 21:09:12.285490057+00:00,1 +2023-10-24 21:09:12.401846087+00:00,1 +2023-10-24 21:09:12.518703598+00:00,1 +2023-10-24 21:09:12.635283395+00:00,1 +2023-10-24 21:09:12.751755630+00:00,1 +2023-10-24 21:09:12.868246769+00:00,1 +2023-10-24 21:09:12.984941722+00:00,1 +2023-10-24 21:09:13.100804064+00:00,1 +2023-10-24 21:09:13.216637113+00:00,1 +2023-10-24 21:09:13.333361434+00:00,1 +2023-10-24 21:09:13.449678932+00:00,1 +2023-10-24 21:09:13.566103811+00:00,1 +2023-10-24 21:09:13.682588017+00:00,1 +2023-10-24 21:09:13.798349704+00:00,1 +2023-10-24 21:09:13.914825907+00:00,1 +2023-10-24 21:09:14.031726259+00:00,1 +2023-10-24 21:09:14.149057194+00:00,1 +2023-10-24 21:09:14.265095376+00:00,1 +2023-10-24 21:09:14.382223742+00:00,1 +2023-10-24 21:09:14.499109848+00:00,1 +2023-10-24 21:09:14.614826819+00:00,1 +2023-10-24 21:09:14.731087383+00:00,1 +2023-10-24 21:09:14.848150393+00:00,1 +2023-10-24 21:09:14.965795356+00:00,1 +2023-10-24 21:09:15.083822479+00:00,1 +2023-10-24 21:09:15.199528619+00:00,1 +2023-10-24 21:09:15.315484558+00:00,1 +2023-10-24 21:09:15.431910450+00:00,1 +2023-10-24 21:09:15.547395106+00:00,1 +2023-10-24 21:09:15.664764609+00:00,1 +2023-10-24 21:09:15.780331231+00:00,1 +2023-10-24 21:09:15.895835531+00:00,1 +2023-10-24 21:09:16.012329838+00:00,1 +2023-10-24 21:09:16.128132856+00:00,1 +2023-10-24 21:09:16.244509913+00:00,1 +2023-10-24 21:09:16.360165893+00:00,1 +2023-10-24 21:09:16.476222539+00:00,1 +2023-10-24 21:09:16.591980542+00:00,1 +2023-10-24 21:09:16.708610919+00:00,1 +2023-10-24 21:09:16.825118978+00:00,1 +2023-10-24 21:09:16.941009986+00:00,1 +2023-10-24 21:09:17.057294651+00:00,1 +2023-10-24 21:09:17.174229190+00:00,1 +2023-10-24 21:09:17.291471257+00:00,1 +2023-10-24 21:09:17.408099353+00:00,1 +2023-10-24 21:09:17.525080946+00:00,1 +2023-10-24 21:09:17.642286524+00:00,1 +2023-10-24 21:09:17.759727553+00:00,1 +2023-10-24 21:09:17.877191236+00:00,1 +2023-10-24 21:09:17.994308516+00:00,1 +2023-10-24 21:09:18.110977814+00:00,1 +2023-10-24 21:09:18.228633800+00:00,1 +2023-10-24 21:09:18.345284750+00:00,1 +2023-10-24 21:09:18.462293461+00:00,1 +2023-10-24 21:09:18.578512291+00:00,1 +2023-10-24 21:09:18.693976287+00:00,1 +2023-10-24 21:09:18.810281980+00:00,1 +2023-10-24 21:09:18.926289721+00:00,1 +2023-10-24 21:09:19.042884115+00:00,1 +2023-10-24 21:09:19.159045975+00:00,1 +2023-10-24 21:09:19.275123703+00:00,1 +2023-10-24 21:09:19.392863598+00:00,1 +2023-10-24 21:09:19.510017868+00:00,1 +2023-10-24 21:09:19.626190355+00:00,1 +2023-10-24 21:09:19.742750563+00:00,1 +2023-10-24 21:09:19.858860893+00:00,1 +2023-10-24 21:09:19.974674313+00:00,1 +2023-10-24 21:09:20.090001285+00:00,1 +2023-10-24 21:09:20.206502251+00:00,1 +2023-10-24 21:09:20.321851163+00:00,1 +2023-10-24 21:09:20.437450750+00:00,1 +2023-10-24 21:09:20.553113001+00:00,1 +2023-10-24 21:09:20.669152831+00:00,1 +2023-10-24 21:09:20.784679296+00:00,1 +2023-10-24 21:09:20.900599193+00:00,1 +2023-10-24 21:09:21.016939888+00:00,1 +2023-10-24 21:09:21.133738558+00:00,1 +2023-10-24 21:09:21.250447497+00:00,1 +2023-10-24 21:09:21.366527935+00:00,1 +2023-10-24 21:09:21.482443135+00:00,1 +2023-10-24 21:09:21.598731455+00:00,1 +2023-10-24 21:09:21.714946118+00:00,1 +2023-10-24 21:09:21.832125415+00:00,1 +2023-10-24 21:09:21.948801887+00:00,1 +2023-10-24 21:09:22.064853053+00:00,1 +2023-10-24 21:09:22.180980802+00:00,1 +2023-10-24 21:09:22.296897282+00:00,1 +2023-10-24 21:09:22.413785131+00:00,1 +2023-10-24 21:09:22.529619232+00:00,1 +2023-10-24 21:09:22.646992190+00:00,1 +2023-10-24 21:09:22.763792989+00:00,1 +2023-10-24 21:09:22.880843702+00:00,1 +2023-10-24 21:09:22.997120881+00:00,1 +2023-10-24 21:09:23.112792337+00:00,1 +2023-10-24 21:09:23.229545133+00:00,1 +2023-10-24 21:09:23.345374941+00:00,1 +2023-10-24 21:09:23.460864815+00:00,1 +2023-10-24 21:09:23.577546722+00:00,1 +2023-10-24 21:09:23.694719854+00:00,1 +2023-10-24 21:09:23.812225562+00:00,1 +2023-10-24 21:09:23.929275071+00:00,1 +2023-10-24 21:09:24.046407845+00:00,1 +2023-10-24 21:09:24.162562586+00:00,1 +2023-10-24 21:09:24.279273716+00:00,1 +2023-10-24 21:09:24.396806663+00:00,1 +2023-10-24 21:09:24.513010514+00:00,1 +2023-10-24 21:09:24.629173892+00:00,1 +2023-10-24 21:09:24.745126741+00:00,1 +2023-10-24 21:09:24.861126836+00:00,1 +2023-10-24 21:09:24.977650432+00:00,1 +2023-10-24 21:09:25.093257848+00:00,1 +2023-10-24 21:09:25.210068139+00:00,1 +2023-10-24 21:09:25.325850038+00:00,1 +2023-10-24 21:09:25.441330800+00:00,1 +2023-10-24 21:09:25.556666383+00:00,1 +2023-10-24 21:09:25.673066334+00:00,1 +2023-10-24 21:09:25.788946476+00:00,1 +2023-10-24 21:09:25.904460757+00:00,1 +2023-10-24 21:09:26.021002010+00:00,1 +2023-10-24 21:09:26.136532465+00:00,1 +2023-10-24 21:09:26.252248458+00:00,1 +2023-10-24 21:09:26.368432901+00:00,1 +2023-10-24 21:09:26.485361668+00:00,1 +2023-10-24 21:09:26.603205565+00:00,1 +2023-10-24 21:09:26.718977944+00:00,1 +2023-10-24 21:09:26.835365729+00:00,1 +2023-10-24 21:09:26.951409400+00:00,1 +2023-10-24 21:09:27.068058349+00:00,1 +2023-10-24 21:09:27.185248938+00:00,1 +2023-10-24 21:09:27.302003677+00:00,1 +2023-10-24 21:09:27.419650408+00:00,1 +2023-10-24 21:09:27.537436401+00:00,1 +2023-10-24 21:09:27.654512203+00:00,1 +2023-10-24 21:09:27.770977104+00:00,1 +2023-10-24 21:09:27.887379687+00:00,1 +2023-10-24 21:09:28.003518401+00:00,1 +2023-10-24 21:09:28.121617177+00:00,1 +2023-10-24 21:09:28.239439027+00:00,1 +2023-10-24 21:09:28.356357999+00:00,1 +2023-10-24 21:09:28.472565256+00:00,1 +2023-10-24 21:09:28.588371314+00:00,1 +2023-10-24 21:09:28.703922038+00:00,1 +2023-10-24 21:09:28.819272919+00:00,1 +2023-10-24 21:09:28.937586212+00:00,1 +2023-10-24 21:09:29.054136834+00:00,1 +2023-10-24 21:09:29.170779425+00:00,1 +2023-10-24 21:09:29.287487524+00:00,1 +2023-10-24 21:09:29.404285708+00:00,1 +2023-10-24 21:09:29.521752348+00:00,1 +2023-10-24 21:09:29.638144293+00:00,1 +2023-10-24 21:09:29.754361870+00:00,1 +2023-10-24 21:09:29.870340646+00:00,1 +2023-10-24 21:09:29.987215003+00:00,1 +2023-10-24 21:09:30.103330575+00:00,1 +2023-10-24 21:09:30.220395082+00:00,1 +2023-10-24 21:09:30.336423497+00:00,1 +2023-10-24 21:09:30.452266488+00:00,1 +2023-10-24 21:09:30.569623048+00:00,1 +2023-10-24 21:09:30.685734790+00:00,1 +2023-10-24 21:09:30.802294123+00:00,1 +2023-10-24 21:09:30.918762089+00:00,1 +2023-10-24 21:09:31.034711494+00:00,1 +2023-10-24 21:09:31.150764193+00:00,1 +2023-10-24 21:09:31.267167100+00:00,1 +2023-10-24 21:09:31.383642460+00:00,1 +2023-10-24 21:09:31.500938297+00:00,1 +2023-10-24 21:09:31.617119532+00:00,1 +2023-10-24 21:09:31.733315912+00:00,1 +2023-10-24 21:09:31.850750349+00:00,1 +2023-10-24 21:09:31.967377243+00:00,1 +2023-10-24 21:09:32.084570969+00:00,1 +2023-10-24 21:09:32.200911148+00:00,1 +2023-10-24 21:09:32.317288714+00:00,1 +2023-10-24 21:09:32.434400877+00:00,1 +2023-10-24 21:09:32.551339263+00:00,1 +2023-10-24 21:09:32.668470958+00:00,1 +2023-10-24 21:09:32.784660409+00:00,1 +2023-10-24 21:09:32.900846781+00:00,1 +2023-10-24 21:09:33.017659675+00:00,1 +2023-10-24 21:09:33.134769543+00:00,1 +2023-10-24 21:09:33.250699610+00:00,1 +2023-10-24 21:09:33.366798305+00:00,1 +2023-10-24 21:09:33.482595805+00:00,1 +2023-10-24 21:09:33.598796179+00:00,1 +2023-10-24 21:09:33.714945973+00:00,1 +2023-10-24 21:09:33.831184949+00:00,1 +2023-10-24 21:09:33.946793139+00:00,1 +2023-10-24 21:09:34.062756950+00:00,1 +2023-10-24 21:09:34.180375585+00:00,1 +2023-10-24 21:09:34.298235983+00:00,1 +2023-10-24 21:09:34.415752535+00:00,1 +2023-10-24 21:09:34.532058486+00:00,1 +2023-10-24 21:09:34.648408257+00:00,1 +2023-10-24 21:09:34.764715462+00:00,1 +2023-10-24 21:09:34.880420572+00:00,1 +2023-10-24 21:09:34.996342846+00:00,1 +2023-10-24 21:09:35.112681800+00:00,1 +2023-10-24 21:09:35.228215990+00:00,1 +2023-10-24 21:09:35.344655482+00:00,1 +2023-10-24 21:09:35.460803642+00:00,1 +2023-10-24 21:09:35.576478656+00:00,1 +2023-10-24 21:09:35.691830718+00:00,1 +2023-10-24 21:09:35.806810225+00:00,1 +2023-10-24 21:09:35.922075533+00:00,1 +2023-10-24 21:09:36.036734258+00:00,0 +2023-10-24 21:09:38.049656420+00:00,1 +2023-10-24 21:09:38.164655570+00:00,1 +2023-10-24 21:09:38.279550850+00:00,1 +2023-10-24 21:09:38.394813803+00:00,0 +2023-10-24 21:09:40.406951799+00:00,1 +2023-10-24 21:09:40.521903665+00:00,0 +2023-10-24 21:09:42.534956581+00:00,1 +2023-10-24 21:09:42.650849735+00:00,1 +2023-10-24 21:09:42.766142318+00:00,1 +2023-10-24 21:09:42.881587023+00:00,1 +2023-10-24 21:09:42.997442069+00:00,1 +2023-10-24 21:09:43.113005485+00:00,1 +2023-10-24 21:09:43.228833157+00:00,1 +2023-10-24 21:09:43.343258516+00:00,1 +2023-10-24 21:09:43.458873491+00:00,1 +2023-10-24 21:09:43.574822129+00:00,1 +2023-10-24 21:09:43.690047686+00:00,1 +2023-10-24 21:09:50.892895329+00:00,1 +2023-10-24 21:09:51.008278857+00:00,1 +2023-10-24 21:09:51.124200953+00:00,1 +2023-10-24 21:09:51.239834621+00:00,1 +2023-10-24 21:09:51.354839408+00:00,1 +2023-10-24 21:09:51.470108912+00:00,1 +2023-10-24 21:09:51.585499722+00:00,1 +2023-10-24 21:09:51.700697485+00:00,1 +2023-10-24 21:09:51.816621910+00:00,1 +2023-10-24 21:09:51.930860176+00:00,1 +2023-10-24 21:09:52.046569757+00:00,0 +2023-10-24 21:09:54.060075275+00:00,1 +2023-10-24 21:09:54.175172981+00:00,1 +2023-10-24 21:09:54.290527470+00:00,1 +2023-10-24 21:09:54.405718222+00:00,1 +2023-10-24 21:09:54.520789890+00:00,1 +2023-10-24 21:09:54.636187704+00:00,1 +2023-10-24 21:09:54.750550403+00:00,1 +2023-10-24 21:09:55.898180719+00:00,1 +2023-10-24 21:09:56.014866468+00:00,1 +2023-10-24 21:09:56.131681539+00:00,1 +2023-10-24 21:09:56.248016697+00:00,1 +2023-10-24 21:09:56.363824862+00:00,1 +2023-10-24 21:09:56.478526992+00:00,1 +2023-10-24 21:09:56.593410133+00:00,1 +2023-10-24 21:09:56.708523883+00:00,1 +2023-10-24 21:09:56.824880228+00:00,1 +2023-10-24 21:09:56.940887512+00:00,1 +2023-10-24 21:09:57.056215271+00:00,1 +2023-10-24 21:09:57.171838491+00:00,1 +2023-10-24 21:09:57.287613191+00:00,1 +2023-10-24 21:09:57.403026796+00:00,1 +2023-10-24 21:09:57.519027841+00:00,1 +2023-10-24 21:09:57.634944397+00:00,1 +2023-10-24 21:09:57.750261940+00:00,1 +2023-10-24 21:09:57.866674240+00:00,1 +2023-10-24 21:09:57.983394591+00:00,1 +2023-10-24 21:09:58.099477099+00:00,1 +2023-10-24 21:09:58.215198592+00:00,1 +2023-10-24 21:09:58.330837988+00:00,1 +2023-10-24 21:09:58.446298038+00:00,1 +2023-10-24 21:09:58.561681419+00:00,1 +2023-10-24 21:09:58.677098592+00:00,1 +2023-10-24 21:09:58.792471426+00:00,1 +2023-10-24 21:09:58.907863702+00:00,1 +2023-10-24 21:09:59.023226439+00:00,1 +2023-10-24 21:09:59.138681132+00:00,1 +2023-10-24 21:09:59.254606552+00:00,1 +2023-10-24 21:09:59.370314108+00:00,1 +2023-10-24 21:09:59.486126748+00:00,1 +2023-10-24 21:09:59.602809670+00:00,1 +2023-10-24 21:09:59.718387552+00:00,1 +2023-10-24 21:09:59.834169759+00:00,1 +2023-10-24 21:09:59.951555695+00:00,1 +2023-10-24 21:10:00.067436232+00:00,1 +2023-10-24 21:10:00.184671806+00:00,1 +2023-10-24 21:10:00.301084650+00:00,1 +2023-10-24 21:10:00.417504985+00:00,1 +2023-10-24 21:10:00.533375799+00:00,1 +2023-10-24 21:10:00.649630461+00:00,1 +2023-10-24 21:10:00.764790708+00:00,1 +2023-10-24 21:10:00.880351835+00:00,1 +2023-10-24 21:10:00.996180048+00:00,1 +2023-10-24 21:10:01.111921959+00:00,1 +2023-10-24 21:10:01.227482996+00:00,1 +2023-10-24 21:10:01.343702046+00:00,1 +2023-10-24 21:10:01.461330525+00:00,1 +2023-10-24 21:10:01.577309475+00:00,1 +2023-10-24 21:10:01.693495761+00:00,1 +2023-10-24 21:10:01.808610248+00:00,1 +2023-10-24 21:10:01.924945226+00:00,1 +2023-10-24 21:10:02.040695381+00:00,1 +2023-10-24 21:10:02.156066429+00:00,1 +2023-10-24 21:10:02.272367988+00:00,1 +2023-10-24 21:10:02.387873189+00:00,1 +2023-10-24 21:10:02.504276545+00:00,1 +2023-10-24 21:10:02.619833918+00:00,1 +2023-10-24 21:10:02.735228480+00:00,1 +2023-10-24 21:10:02.851473446+00:00,1 +2023-10-24 21:10:02.967349519+00:00,1 +2023-10-24 21:10:03.084682211+00:00,1 +2023-10-24 21:10:03.200562595+00:00,1 +2023-10-24 21:10:03.317405441+00:00,1 +2023-10-24 21:10:03.433580725+00:00,1 +2023-10-24 21:10:03.549431856+00:00,1 +2023-10-24 21:10:03.664680674+00:00,1 +2023-10-24 21:10:03.780324845+00:00,1 +2023-10-24 21:10:03.895594139+00:00,1 +2023-10-24 21:10:04.011656117+00:00,1 +2023-10-24 21:10:04.127935719+00:00,1 +2023-10-24 21:10:04.244501323+00:00,1 +2023-10-24 21:10:04.360871208+00:00,1 +2023-10-24 21:10:04.476835125+00:00,1 +2023-10-24 21:10:04.592784994+00:00,1 +2023-10-24 21:10:04.708781944+00:00,1 +2023-10-24 21:10:04.824964383+00:00,1 +2023-10-24 21:10:04.941152034+00:00,1 +2023-10-24 21:10:05.056672841+00:00,1 +2023-10-24 21:10:05.172119172+00:00,1 +2023-10-24 21:10:05.287729801+00:00,1 +2023-10-24 21:10:05.403277697+00:00,1 +2023-10-24 21:10:05.519985716+00:00,1 +2023-10-24 21:10:05.636136478+00:00,1 +2023-10-24 21:10:05.752664295+00:00,1 +2023-10-24 21:10:05.868582941+00:00,1 +2023-10-24 21:10:05.985466248+00:00,1 +2023-10-24 21:10:06.100552060+00:00,1 +2023-10-24 21:10:06.216416015+00:00,1 +2023-10-24 21:10:06.331941779+00:00,1 +2023-10-24 21:10:06.447893277+00:00,1 +2023-10-24 21:10:06.563656333+00:00,1 +2023-10-24 21:10:06.678833986+00:00,1 +2023-10-24 21:10:06.794454493+00:00,1 +2023-10-24 21:10:06.909500105+00:00,1 +2023-10-24 21:10:07.024422141+00:00,1 +2023-10-24 21:10:07.140599212+00:00,1 +2023-10-24 21:10:07.256160260+00:00,1 +2023-10-24 21:10:07.372580997+00:00,1 +2023-10-24 21:10:07.488624031+00:00,1 +2023-10-24 21:10:07.604363318+00:00,1 +2023-10-24 21:10:07.720242413+00:00,1 +2023-10-24 21:10:07.835933731+00:00,1 +2023-10-24 21:10:07.952395439+00:00,1 +2023-10-24 21:10:08.068126795+00:00,1 +2023-10-24 21:10:08.184825055+00:00,1 +2023-10-24 21:10:08.300387369+00:00,1 +2023-10-24 21:10:08.415677797+00:00,1 +2023-10-24 21:10:08.530838720+00:00,1 +2023-10-24 21:10:08.647325727+00:00,1 +2023-10-24 21:10:08.762918298+00:00,1 +2023-10-24 21:10:08.878070174+00:00,1 +2023-10-24 21:10:08.993625397+00:00,1 +2023-10-24 21:10:09.109362257+00:00,1 +2023-10-24 21:10:09.225316943+00:00,1 +2023-10-24 21:10:09.340770046+00:00,1 +2023-10-24 21:10:09.456392996+00:00,1 +2023-10-24 21:10:09.572260993+00:00,1 +2023-10-24 21:10:09.688272528+00:00,1 +2023-10-24 21:10:09.804073755+00:00,1 +2023-10-24 21:10:09.920280885+00:00,1 +2023-10-24 21:10:10.036078272+00:00,1 +2023-10-24 21:10:10.151459155+00:00,1 +2023-10-24 21:10:10.268065085+00:00,1 +2023-10-24 21:10:10.383856787+00:00,1 +2023-10-24 21:10:10.500122677+00:00,1 +2023-10-24 21:10:10.615791963+00:00,1 +2023-10-24 21:10:10.732107888+00:00,1 +2023-10-24 21:10:10.847895529+00:00,1 +2023-10-24 21:10:10.965107776+00:00,1 +2023-10-24 21:10:11.081479968+00:00,1 +2023-10-24 21:10:11.197406487+00:00,1 +2023-10-24 21:10:11.313355032+00:00,1 +2023-10-24 21:10:11.429789447+00:00,1 +2023-10-24 21:10:11.545255130+00:00,1 +2023-10-24 21:10:11.660890910+00:00,1 +2023-10-24 21:10:11.776820901+00:00,1 +2023-10-24 21:10:11.892593350+00:00,1 +2023-10-24 21:10:12.008186054+00:00,1 +2023-10-24 21:10:12.124598800+00:00,1 +2023-10-24 21:10:12.240088451+00:00,1 +2023-10-24 21:10:12.355682993+00:00,1 +2023-10-24 21:10:12.470862406+00:00,1 +2023-10-24 21:10:12.587301802+00:00,1 +2023-10-24 21:10:12.702557089+00:00,1 +2023-10-24 21:10:12.818191160+00:00,1 +2023-10-24 21:10:12.934894977+00:00,1 +2023-10-24 21:10:13.050904371+00:00,1 +2023-10-24 21:10:13.167219571+00:00,1 +2023-10-24 21:10:13.284051242+00:00,1 +2023-10-24 21:10:13.399278856+00:00,1 +2023-10-24 21:10:13.514764369+00:00,1 +2023-10-24 21:10:13.631132050+00:00,1 +2023-10-24 21:10:13.747462443+00:00,1 +2023-10-24 21:10:13.863005073+00:00,1 +2023-10-24 21:10:13.978637494+00:00,1 +2023-10-24 21:10:14.094902082+00:00,1 +2023-10-24 21:10:14.211871128+00:00,1 +2023-10-24 21:10:14.328467117+00:00,1 +2023-10-24 21:10:14.444348087+00:00,1 +2023-10-24 21:10:14.560802583+00:00,1 +2023-10-24 21:10:14.677429398+00:00,1 +2023-10-24 21:10:14.792949245+00:00,1 +2023-10-24 21:10:14.907306918+00:00,1 +2023-10-24 21:10:15.021498750+00:00,1 +2023-10-24 21:10:15.136791519+00:00,1 +2023-10-24 21:10:15.251202032+00:00,1 +2023-10-24 21:10:15.365841431+00:00,1 +2023-10-24 21:10:15.480550332+00:00,1 +2023-10-24 21:10:15.595873964+00:00,1 +2023-10-24 21:10:15.710310831+00:00,1 +2023-10-24 21:10:15.825285672+00:00,1 +2023-10-24 21:10:15.940016994+00:00,1 +2023-10-24 21:10:16.055088060+00:00,1 +2023-10-24 21:10:16.170006546+00:00,1 +2023-10-24 21:10:16.284341968+00:00,1 +2023-10-24 21:10:16.398861334+00:00,1 +2023-10-24 21:10:16.513345917+00:00,1 +2023-10-24 21:10:16.627731341+00:00,1 +2023-10-24 21:10:16.742145787+00:00,1 +2023-10-24 21:10:16.857234323+00:00,1 +2023-10-24 21:10:16.971466917+00:00,1 +2023-10-24 21:10:17.086537179+00:00,1 +2023-10-24 21:10:17.200487069+00:00,1 +2023-10-24 21:10:17.315478600+00:00,1 +2023-10-24 21:10:17.430855550+00:00,1 +2023-10-24 21:10:18.546557967+00:00,1 +2023-10-24 21:10:18.662006587+00:00,1 +2023-10-24 21:10:18.776860595+00:00,1 +2023-10-24 21:10:18.891987765+00:00,1 +2023-10-24 21:10:19.007366196+00:00,1 +2023-10-24 21:10:19.124424720+00:00,1 +2023-10-24 21:10:19.238478798+00:00,1 +2023-10-24 21:10:19.352769074+00:00,1 +2023-10-24 21:10:19.468008626+00:00,1 +2023-10-24 21:10:19.582689754+00:00,1 +2023-10-24 21:10:19.697188092+00:00,1 +2023-10-24 21:10:19.811704214+00:00,1 +2023-10-24 21:10:19.925755422+00:00,1 +2023-10-24 21:10:20.040198764+00:00,1 +2023-10-24 21:10:23.215870088+00:00,1 +2023-10-24 21:10:23.329731268+00:00,1 +2023-10-24 21:10:23.445102886+00:00,1 +2023-10-24 21:10:23.559869556+00:00,1 +2023-10-24 21:10:23.674661939+00:00,1 +2023-10-24 21:10:23.789795615+00:00,1 +2023-10-24 21:10:23.905197418+00:00,1 +2023-10-24 21:10:24.020901497+00:00,1 +2023-10-24 21:10:24.136453806+00:00,1 +2023-10-24 21:10:24.252174828+00:00,1 +2023-10-24 21:10:24.367684858+00:00,1 +2023-10-24 21:10:24.483548288+00:00,1 +2023-10-24 21:10:24.598412168+00:00,1 +2023-10-24 21:10:24.713300645+00:00,1 +2023-10-24 21:10:24.827634073+00:00,1 +2023-10-24 21:10:24.943558829+00:00,1 +2023-10-24 21:10:25.058678019+00:00,1 +2023-10-24 21:10:25.173954539+00:00,1 +2023-10-24 21:10:25.290474340+00:00,1 +2023-10-24 21:10:25.406058798+00:00,1 +2023-10-24 21:10:25.521253497+00:00,1 +2023-10-24 21:10:25.637249958+00:00,1 +2023-10-24 21:10:25.751768225+00:00,0 +2023-10-24 21:10:27.764144649+00:00,1 +2023-10-24 21:10:27.879138499+00:00,1 +2023-10-24 21:10:27.994391467+00:00,1 +2023-10-24 21:10:35.245012962+00:00,1 +2023-10-24 21:10:35.360710152+00:00,1 +2023-10-24 21:10:35.474939269+00:00,1 +2023-10-24 21:10:35.591133580+00:00,1 +2023-10-24 21:10:35.706679365+00:00,1 +2023-10-24 21:10:35.823226610+00:00,1 +2023-10-24 21:10:35.939426877+00:00,1 +2023-10-24 21:10:36.054546419+00:00,1 +2023-10-24 21:10:36.170500622+00:00,1 +2023-10-24 21:10:36.286481668+00:00,1 +2023-10-24 21:10:36.401505685+00:00,1 +2023-10-24 21:10:36.518138481+00:00,1 +2023-10-24 21:10:36.632910831+00:00,1 +2023-10-24 21:10:36.748050837+00:00,1 +2023-10-24 21:10:36.862527567+00:00,1 +2023-10-24 21:10:38.002414883+00:00,1 +2023-10-24 21:10:38.117520317+00:00,1 +2023-10-24 21:10:38.233172832+00:00,1 +2023-10-24 21:10:38.348193926+00:00,1 +2023-10-24 21:10:38.462993970+00:00,1 +2023-10-24 21:10:38.578093867+00:00,1 +2023-10-24 21:10:38.694115368+00:00,1 +2023-10-24 21:10:38.809510175+00:00,1 +2023-10-24 21:10:38.925459480+00:00,1 +2023-10-24 21:10:39.041798474+00:00,1 +2023-10-24 21:10:39.157638021+00:00,1 +2023-10-24 21:10:39.272947281+00:00,1 +2023-10-24 21:10:39.388201494+00:00,1 +2023-10-24 21:10:39.502719513+00:00,1 +2023-10-24 21:10:39.618178082+00:00,1 +2023-10-24 21:10:39.733578948+00:00,1 +2023-10-24 21:10:39.848296654+00:00,1 +2023-10-24 21:10:40.978188922+00:00,1 +2023-10-24 21:10:41.094162441+00:00,1 +2023-10-24 21:10:41.208876973+00:00,1 +2023-10-24 21:10:41.324438742+00:00,1 +2023-10-24 21:10:41.439208060+00:00,1 +2023-10-24 21:10:41.554398581+00:00,1 +2023-10-24 21:10:41.669580298+00:00,1 +2023-10-24 21:10:41.785112669+00:00,1 +2023-10-24 21:10:41.900136217+00:00,1 +2023-10-24 21:10:42.014655864+00:00,1 +2023-10-24 21:10:42.130161553+00:00,1 +2023-10-24 21:10:42.245333654+00:00,1 +2023-10-24 21:10:42.360451938+00:00,1 +2023-10-24 21:10:42.474726141+00:00,1 +2023-10-24 21:10:42.589233051+00:00,1 +2023-10-24 21:10:42.705132297+00:00,1 +2023-10-24 21:10:42.820742154+00:00,1 +2023-10-24 21:10:42.936964200+00:00,1 +2023-10-24 21:10:44.089229717+00:00,1 +2023-10-24 21:10:44.203922669+00:00,1 +2023-10-24 21:10:44.319000626+00:00,1 +2023-10-24 21:10:44.433939509+00:00,1 +2023-10-24 21:10:44.549124058+00:00,1 +2023-10-24 21:10:44.664261019+00:00,1 +2023-10-24 21:10:44.778956684+00:00,1 +2023-10-24 21:10:44.894195830+00:00,1 +2023-10-24 21:10:45.009248386+00:00,1 +2023-10-24 21:10:45.124477962+00:00,1 +2023-10-24 21:10:45.239848791+00:00,1 +2023-10-24 21:10:45.355825006+00:00,1 +2023-10-24 21:10:45.471335497+00:00,1 +2023-10-24 21:10:45.587677551+00:00,1 +2023-10-24 21:10:45.703502421+00:00,1 +2023-10-24 21:10:45.819368691+00:00,1 +2023-10-24 21:10:45.935332806+00:00,1 +2023-10-24 21:10:46.051231918+00:00,1 +2023-10-24 21:10:46.167219822+00:00,1 +2023-10-24 21:10:46.282838415+00:00,1 +2023-10-24 21:10:46.398457714+00:00,1 +2023-10-24 21:10:46.515177424+00:00,1 +2023-10-24 21:10:46.631682408+00:00,1 +2023-10-24 21:10:46.747383881+00:00,1 +2023-10-24 21:10:46.863211597+00:00,1 +2023-10-24 21:10:46.979177049+00:00,1 +2023-10-24 21:10:47.094940012+00:00,1 +2023-10-24 21:10:47.211394873+00:00,1 +2023-10-24 21:10:47.328492693+00:00,1 +2023-10-24 21:10:47.445155041+00:00,1 +2023-10-24 21:10:47.561115539+00:00,1 +2023-10-24 21:10:47.676702519+00:00,1 +2023-10-24 21:10:47.792701331+00:00,1 +2023-10-24 21:10:47.909135349+00:00,1 +2023-10-24 21:10:48.025409382+00:00,1 +2023-10-24 21:10:48.141463907+00:00,1 +2023-10-24 21:10:48.256941561+00:00,1 +2023-10-24 21:10:48.373026251+00:00,1 +2023-10-24 21:10:48.488229974+00:00,1 +2023-10-24 21:10:48.603939197+00:00,1 +2023-10-24 21:10:48.719374861+00:00,1 +2023-10-24 21:10:48.834889403+00:00,1 +2023-10-24 21:10:48.949942613+00:00,1 +2023-10-24 21:10:49.066010213+00:00,1 +2023-10-24 21:10:49.181840322+00:00,1 +2023-10-24 21:10:49.297305675+00:00,1 +2023-10-24 21:10:49.413248018+00:00,1 +2023-10-24 21:10:49.529313679+00:00,1 +2023-10-24 21:10:49.644951546+00:00,1 +2023-10-24 21:10:49.760356066+00:00,1 +2023-10-24 21:10:49.876160005+00:00,1 +2023-10-24 21:10:49.992542817+00:00,1 +2023-10-24 21:10:50.109108718+00:00,1 +2023-10-24 21:10:50.225765325+00:00,1 +2023-10-24 21:10:50.340937583+00:00,1 +2023-10-24 21:10:50.457261677+00:00,1 +2023-10-24 21:10:50.574070158+00:00,1 +2023-10-24 21:10:50.690275766+00:00,1 +2023-10-24 21:10:50.806012159+00:00,1 +2023-10-24 21:10:50.922666667+00:00,1 +2023-10-24 21:10:51.040081298+00:00,1 +2023-10-24 21:10:51.156678045+00:00,1 +2023-10-24 21:10:51.272325352+00:00,1 +2023-10-24 21:10:51.387821916+00:00,1 +2023-10-24 21:10:51.503999162+00:00,1 +2023-10-24 21:10:51.620120268+00:00,1 +2023-10-24 21:10:51.735944609+00:00,1 +2023-10-24 21:10:51.851977615+00:00,1 +2023-10-24 21:10:51.968324918+00:00,1 +2023-10-24 21:10:52.084854604+00:00,1 +2023-10-24 21:10:52.200923046+00:00,1 +2023-10-24 21:10:52.316550134+00:00,1 +2023-10-24 21:10:52.432321519+00:00,1 +2023-10-24 21:10:52.548330113+00:00,1 +2023-10-24 21:10:52.663696195+00:00,1 +2023-10-24 21:10:52.779068082+00:00,1 +2023-10-24 21:10:52.895857934+00:00,1 +2023-10-24 21:10:53.011105156+00:00,1 +2023-10-24 21:10:53.127002480+00:00,1 +2023-10-24 21:10:53.242072720+00:00,1 +2023-10-24 21:10:53.358299021+00:00,1 +2023-10-24 21:10:53.475166473+00:00,1 +2023-10-24 21:10:53.590582989+00:00,1 +2023-10-24 21:10:53.706830419+00:00,1 +2023-10-24 21:10:53.822422463+00:00,1 +2023-10-24 21:10:53.939059060+00:00,1 +2023-10-24 21:10:54.054709743+00:00,1 +2023-10-24 21:10:54.169966764+00:00,1 +2023-10-24 21:10:54.284940698+00:00,1 +2023-10-24 21:10:54.401206077+00:00,1 +2023-10-24 21:10:54.517301610+00:00,1 +2023-10-24 21:10:54.632880848+00:00,1 +2023-10-24 21:10:54.748702093+00:00,1 +2023-10-24 21:10:54.864848579+00:00,1 +2023-10-24 21:10:54.980451524+00:00,1 +2023-10-24 21:10:55.096072005+00:00,1 +2023-10-24 21:10:55.212365984+00:00,1 +2023-10-24 21:10:55.329645950+00:00,1 +2023-10-24 21:10:55.445789152+00:00,1 +2023-10-24 21:10:55.561773887+00:00,1 +2023-10-24 21:10:55.679266672+00:00,1 +2023-10-24 21:10:55.794684858+00:00,1 +2023-10-24 21:10:55.910135600+00:00,1 +2023-10-24 21:10:56.025918999+00:00,1 +2023-10-24 21:10:56.141256156+00:00,1 +2023-10-24 21:10:56.260482217+00:00,1 +2023-10-24 21:10:56.376031240+00:00,1 +2023-10-24 21:10:56.491803054+00:00,1 +2023-10-24 21:10:56.607658259+00:00,1 +2023-10-24 21:10:56.724095311+00:00,1 +2023-10-24 21:10:56.840562952+00:00,1 +2023-10-24 21:10:56.957224405+00:00,1 +2023-10-24 21:10:57.072340679+00:00,1 +2023-10-24 21:10:57.187390663+00:00,1 +2023-10-24 21:10:57.303056571+00:00,1 +2023-10-24 21:10:57.418754299+00:00,1 +2023-10-24 21:10:57.534578018+00:00,1 +2023-10-24 21:10:57.650864144+00:00,1 +2023-10-24 21:10:57.766569683+00:00,1 +2023-10-24 21:10:57.883495313+00:00,1 +2023-10-24 21:10:57.999219654+00:00,1 +2023-10-24 21:10:58.115628160+00:00,1 +2023-10-24 21:10:58.231981200+00:00,1 +2023-10-24 21:10:58.348647936+00:00,1 +2023-10-24 21:10:58.464017098+00:00,1 +2023-10-24 21:10:58.580062866+00:00,1 +2023-10-24 21:10:58.695501165+00:00,1 +2023-10-24 21:10:58.811111630+00:00,1 +2023-10-24 21:10:58.927326894+00:00,1 +2023-10-24 21:10:59.043807134+00:00,1 +2023-10-24 21:10:59.160144943+00:00,1 +2023-10-24 21:10:59.276437104+00:00,1 +2023-10-24 21:10:59.392498378+00:00,1 +2023-10-24 21:10:59.508154422+00:00,1 +2023-10-24 21:10:59.624632514+00:00,1 +2023-10-24 21:10:59.741854994+00:00,1 +2023-10-24 21:10:59.858477009+00:00,1 +2023-10-24 21:10:59.974689154+00:00,1 +2023-10-24 21:11:00.089575763+00:00,1 +2023-10-24 21:11:00.204600643+00:00,1 +2023-10-24 21:11:00.319781661+00:00,1 +2023-10-24 21:11:00.436958072+00:00,1 +2023-10-24 21:11:00.553249330+00:00,1 +2023-10-24 21:11:00.668969909+00:00,1 +2023-10-24 21:11:00.786535289+00:00,1 +2023-10-24 21:11:00.902424881+00:00,1 +2023-10-24 21:11:01.019245856+00:00,1 +2023-10-24 21:11:01.136879833+00:00,1 +2023-10-24 21:11:01.252503388+00:00,1 +2023-10-24 21:11:01.368277424+00:00,1 +2023-10-24 21:11:01.485569858+00:00,1 +2023-10-24 21:11:01.601982363+00:00,1 +2023-10-24 21:11:01.717312608+00:00,1 +2023-10-24 21:11:01.833979078+00:00,1 +2023-10-24 21:11:01.950024915+00:00,1 +2023-10-24 21:11:02.067725085+00:00,1 +2023-10-24 21:11:02.183891707+00:00,1 +2023-10-24 21:11:02.300714579+00:00,1 +2023-10-24 21:11:02.416012835+00:00,1 +2023-10-24 21:11:02.532789245+00:00,1 +2023-10-24 21:11:02.648405095+00:00,1 +2023-10-24 21:11:02.764197869+00:00,1 +2023-10-24 21:11:02.880163365+00:00,1 +2023-10-24 21:11:02.997143191+00:00,1 +2023-10-24 21:11:03.113582472+00:00,1 +2023-10-24 21:11:03.230906968+00:00,1 +2023-10-24 21:11:03.348000128+00:00,1 +2023-10-24 21:11:03.465229026+00:00,1 +2023-10-24 21:11:03.580829004+00:00,1 +2023-10-24 21:11:03.696592891+00:00,1 +2023-10-24 21:11:03.812606952+00:00,1 +2023-10-24 21:11:03.928977819+00:00,1 +2023-10-24 21:11:04.045597586+00:00,1 +2023-10-24 21:11:04.161604676+00:00,1 +2023-10-24 21:11:04.278351531+00:00,1 +2023-10-24 21:11:04.395656498+00:00,1 +2023-10-24 21:11:04.512335131+00:00,1 +2023-10-24 21:11:04.628185418+00:00,1 +2023-10-24 21:11:04.744347934+00:00,1 +2023-10-24 21:11:04.860363842+00:00,1 +2023-10-24 21:11:04.976771778+00:00,1 +2023-10-24 21:11:05.092713506+00:00,1 +2023-10-24 21:11:05.208063116+00:00,1 +2023-10-24 21:11:05.325206070+00:00,1 +2023-10-24 21:11:05.441037883+00:00,1 +2023-10-24 21:11:05.556856065+00:00,1 +2023-10-24 21:11:05.673219790+00:00,1 +2023-10-24 21:11:05.790090474+00:00,1 +2023-10-24 21:11:05.906217257+00:00,1 +2023-10-24 21:11:06.021731266+00:00,1 +2023-10-24 21:11:06.137582249+00:00,1 +2023-10-24 21:11:06.253598439+00:00,1 +2023-10-24 21:11:06.369789269+00:00,1 +2023-10-24 21:11:06.485529096+00:00,1 +2023-10-24 21:11:06.601604080+00:00,1 +2023-10-24 21:11:06.717695439+00:00,1 +2023-10-24 21:11:06.833727855+00:00,1 +2023-10-24 21:11:06.950395873+00:00,1 +2023-10-24 21:11:07.067523636+00:00,1 +2023-10-24 21:11:07.182812712+00:00,1 +2023-10-24 21:11:07.299020089+00:00,1 +2023-10-24 21:11:07.415765794+00:00,1 +2023-10-24 21:11:07.531874958+00:00,1 +2023-10-24 21:11:07.648395280+00:00,1 +2023-10-24 21:11:07.764360160+00:00,1 +2023-10-24 21:11:07.881212879+00:00,1 +2023-10-24 21:11:07.997546958+00:00,1 +2023-10-24 21:11:08.113761831+00:00,1 +2023-10-24 21:11:08.230250324+00:00,1 +2023-10-24 21:11:08.347130026+00:00,1 +2023-10-24 21:11:08.463641335+00:00,1 +2023-10-24 21:11:08.579904432+00:00,1 +2023-10-24 21:11:08.695721188+00:00,1 +2023-10-24 21:11:08.812220410+00:00,1 +2023-10-24 21:11:08.929320497+00:00,1 +2023-10-24 21:11:09.045293679+00:00,1 +2023-10-24 21:11:09.162049319+00:00,1 +2023-10-24 21:11:09.277993684+00:00,1 +2023-10-24 21:11:09.393178616+00:00,1 +2023-10-24 21:11:09.508712585+00:00,1 +2023-10-24 21:11:09.626542353+00:00,1 +2023-10-24 21:11:09.743437183+00:00,1 +2023-10-24 21:11:09.859700967+00:00,1 +2023-10-24 21:11:09.976103361+00:00,1 +2023-10-24 21:11:10.092368302+00:00,1 +2023-10-24 21:11:10.208032394+00:00,1 +2023-10-24 21:11:10.324700964+00:00,1 +2023-10-24 21:11:10.442890193+00:00,1 +2023-10-24 21:11:10.559351294+00:00,1 +2023-10-24 21:11:10.675040225+00:00,1 +2023-10-24 21:11:10.790902684+00:00,1 +2023-10-24 21:11:10.906959824+00:00,1 +2023-10-24 21:11:11.023473564+00:00,1 +2023-10-24 21:11:11.140344917+00:00,1 +2023-10-24 21:11:11.256604636+00:00,1 +2023-10-24 21:11:11.373911839+00:00,1 +2023-10-24 21:11:11.489839874+00:00,1 +2023-10-24 21:11:11.605955695+00:00,1 +2023-10-24 21:11:11.722349161+00:00,1 +2023-10-24 21:11:11.838043493+00:00,1 +2023-10-24 21:11:11.953889803+00:00,1 +2023-10-24 21:11:12.069597368+00:00,1 +2023-10-24 21:11:12.186740719+00:00,1 +2023-10-24 21:11:12.302264601+00:00,1 +2023-10-24 21:11:12.418642087+00:00,1 +2023-10-24 21:11:12.534360279+00:00,1 +2023-10-24 21:11:12.652385669+00:00,1 +2023-10-24 21:11:12.768848314+00:00,1 +2023-10-24 21:11:12.886049548+00:00,1 +2023-10-24 21:11:13.003249880+00:00,1 +2023-10-24 21:11:13.119829069+00:00,1 +2023-10-24 21:11:13.235517733+00:00,1 +2023-10-24 21:11:13.352216249+00:00,1 +2023-10-24 21:11:13.469088975+00:00,1 +2023-10-24 21:11:13.585033205+00:00,1 +2023-10-24 21:11:13.701075635+00:00,1 +2023-10-24 21:11:13.817187973+00:00,1 +2023-10-24 21:11:13.933534589+00:00,1 +2023-10-24 21:11:14.050234450+00:00,1 +2023-10-24 21:11:14.165909548+00:00,1 +2023-10-24 21:11:14.282554329+00:00,1 +2023-10-24 21:11:14.398035951+00:00,1 +2023-10-24 21:11:14.514223990+00:00,1 +2023-10-24 21:11:14.629978436+00:00,1 +2023-10-24 21:11:14.746130171+00:00,1 +2023-10-24 21:11:14.862053746+00:00,1 +2023-10-24 21:11:14.977278738+00:00,1 +2023-10-24 21:11:15.093497455+00:00,1 +2023-10-24 21:11:15.209334659+00:00,1 +2023-10-24 21:11:15.325036320+00:00,1 +2023-10-24 21:11:15.441310953+00:00,1 +2023-10-24 21:11:15.557955971+00:00,1 +2023-10-24 21:11:15.675466922+00:00,1 +2023-10-24 21:11:15.792174184+00:00,1 +2023-10-24 21:11:15.908507827+00:00,1 +2023-10-24 21:11:16.025286180+00:00,1 +2023-10-24 21:11:16.142054389+00:00,1 +2023-10-24 21:11:16.258871537+00:00,1 +2023-10-24 21:11:16.374654332+00:00,1 +2023-10-24 21:11:16.490621107+00:00,1 +2023-10-24 21:11:16.606661687+00:00,1 +2023-10-24 21:11:16.722417960+00:00,1 +2023-10-24 21:11:16.838642578+00:00,1 +2023-10-24 21:11:16.954120721+00:00,1 +2023-10-24 21:11:17.069550375+00:00,1 +2023-10-24 21:11:17.185759656+00:00,1 +2023-10-24 21:11:17.302411679+00:00,1 +2023-10-24 21:11:17.418414935+00:00,1 +2023-10-24 21:11:17.534565257+00:00,1 +2023-10-24 21:11:17.651506203+00:00,1 +2023-10-24 21:11:17.767288286+00:00,1 +2023-10-24 21:11:17.884107771+00:00,1 +2023-10-24 21:11:18.001715159+00:00,1 +2023-10-24 21:11:18.118854717+00:00,1 +2023-10-24 21:11:18.234609102+00:00,1 +2023-10-24 21:11:18.350681523+00:00,1 +2023-10-24 21:11:18.467989231+00:00,1 +2023-10-24 21:11:18.583905177+00:00,1 +2023-10-24 21:11:18.699367904+00:00,1 +2023-10-24 21:11:18.815310263+00:00,1 +2023-10-24 21:11:18.931936009+00:00,1 +2023-10-24 21:11:19.048486381+00:00,1 +2023-10-24 21:11:19.165727602+00:00,1 +2023-10-24 21:11:19.282361206+00:00,1 +2023-10-24 21:11:19.398874423+00:00,1 +2023-10-24 21:11:19.515043392+00:00,1 +2023-10-24 21:11:19.631001099+00:00,1 +2023-10-24 21:11:19.746898915+00:00,1 +2023-10-24 21:11:19.864960637+00:00,1 +2023-10-24 21:11:19.981469717+00:00,1 +2023-10-24 21:11:20.098286445+00:00,1 +2023-10-24 21:11:20.214202244+00:00,1 +2023-10-24 21:11:20.330164310+00:00,1 +2023-10-24 21:11:20.446916723+00:00,1 +2023-10-24 21:11:20.564019859+00:00,1 +2023-10-24 21:11:20.680422911+00:00,1 +2023-10-24 21:11:20.796618655+00:00,1 +2023-10-24 21:11:20.912488757+00:00,1 +2023-10-24 21:11:21.028688069+00:00,1 +2023-10-24 21:11:21.144562594+00:00,1 +2023-10-24 21:11:21.261002112+00:00,1 +2023-10-24 21:11:21.377773451+00:00,1 +2023-10-24 21:11:21.493029909+00:00,1 +2023-10-24 21:11:21.609082077+00:00,1 +2023-10-24 21:11:21.724901879+00:00,1 +2023-10-24 21:11:21.841216667+00:00,1 +2023-10-24 21:11:21.957578537+00:00,1 +2023-10-24 21:11:22.073506445+00:00,1 +2023-10-24 21:11:22.190391970+00:00,1 +2023-10-24 21:11:22.306925794+00:00,1 +2023-10-24 21:11:22.424388365+00:00,1 +2023-10-24 21:11:22.541425254+00:00,1 +2023-10-24 21:11:22.658044641+00:00,1 +2023-10-24 21:11:22.774432887+00:00,1 +2023-10-24 21:11:22.890108944+00:00,1 +2023-10-24 21:11:23.006832852+00:00,1 +2023-10-24 21:11:23.122482110+00:00,1 +2023-10-24 21:11:23.238797330+00:00,1 +2023-10-24 21:11:23.355115127+00:00,1 +2023-10-24 21:11:23.471997806+00:00,1 +2023-10-24 21:11:23.588596942+00:00,1 +2023-10-24 21:11:23.704990033+00:00,1 +2023-10-24 21:11:23.821546337+00:00,1 +2023-10-24 21:11:23.937329697+00:00,1 +2023-10-24 21:11:24.053485830+00:00,1 +2023-10-24 21:11:24.170619225+00:00,1 +2023-10-24 21:11:24.287599549+00:00,1 +2023-10-24 21:11:24.404434051+00:00,1 +2023-10-24 21:11:24.520473971+00:00,1 +2023-10-24 21:11:24.636778701+00:00,1 +2023-10-24 21:11:24.752491258+00:00,1 +2023-10-24 21:11:24.869093816+00:00,1 +2023-10-24 21:11:24.984831229+00:00,1 +2023-10-24 21:11:25.101338444+00:00,1 +2023-10-24 21:11:25.217159739+00:00,1 +2023-10-24 21:11:25.333032641+00:00,1 +2023-10-24 21:11:25.448264066+00:00,1 +2023-10-24 21:11:25.564045782+00:00,1 +2023-10-24 21:11:25.679324325+00:00,1 +2023-10-24 21:11:25.795035149+00:00,1 +2023-10-24 21:11:25.912311890+00:00,1 +2023-10-24 21:11:26.028535908+00:00,1 +2023-10-24 21:11:26.144316872+00:00,1 +2023-10-24 21:11:26.260025716+00:00,1 +2023-10-24 21:11:26.375475750+00:00,1 +2023-10-24 21:11:26.490983578+00:00,1 +2023-10-24 21:11:26.607029153+00:00,1 +2023-10-24 21:11:26.723058898+00:00,1 +2023-10-24 21:11:26.839404654+00:00,1 +2023-10-24 21:11:26.955858978+00:00,1 +2023-10-24 21:11:27.071036981+00:00,1 +2023-10-24 21:11:27.187291600+00:00,1 +2023-10-24 21:11:27.304199667+00:00,1 +2023-10-24 21:11:27.420686695+00:00,1 +2023-10-24 21:11:27.536844999+00:00,1 +2023-10-24 21:11:27.654271032+00:00,1 +2023-10-24 21:11:27.770296845+00:00,1 +2023-10-24 21:11:27.886674719+00:00,1 +2023-10-24 21:11:28.002954348+00:00,1 +2023-10-24 21:11:28.119724218+00:00,1 +2023-10-24 21:11:28.236273680+00:00,1 +2023-10-24 21:11:28.352875440+00:00,1 +2023-10-24 21:11:28.469120420+00:00,1 +2023-10-24 21:11:28.585919736+00:00,1 +2023-10-24 21:11:28.703665118+00:00,1 +2023-10-24 21:11:28.820138589+00:00,1 +2023-10-24 21:11:28.937252885+00:00,1 +2023-10-24 21:11:29.054375035+00:00,1 +2023-10-24 21:11:29.169935213+00:00,1 +2023-10-24 21:11:29.286888548+00:00,1 +2023-10-24 21:11:29.404333181+00:00,1 +2023-10-24 21:11:29.521259097+00:00,1 +2023-10-24 21:11:29.636935590+00:00,1 +2023-10-24 21:11:29.753311542+00:00,1 +2023-10-24 21:11:29.869188247+00:00,1 +2023-10-24 21:11:29.985930861+00:00,1 +2023-10-24 21:11:30.102259170+00:00,1 +2023-10-24 21:11:30.218389444+00:00,1 +2023-10-24 21:11:30.334880814+00:00,1 +2023-10-24 21:11:30.451453973+00:00,1 +2023-10-24 21:11:30.567542533+00:00,1 +2023-10-24 21:11:30.683264634+00:00,1 +2023-10-24 21:11:30.799998251+00:00,1 +2023-10-24 21:11:30.916019271+00:00,1 +2023-10-24 21:11:31.032751413+00:00,1 +2023-10-24 21:11:31.149062765+00:00,1 +2023-10-24 21:11:31.265590934+00:00,1 +2023-10-24 21:11:31.381395039+00:00,1 +2023-10-24 21:11:31.497863230+00:00,1 +2023-10-24 21:11:31.614513666+00:00,1 +2023-10-24 21:11:31.730217278+00:00,1 +2023-10-24 21:11:31.846292750+00:00,1 +2023-10-24 21:11:31.961631232+00:00,1 +2023-10-24 21:11:32.077175736+00:00,1 +2023-10-24 21:11:32.193171749+00:00,1 +2023-10-24 21:11:32.309264816+00:00,1 +2023-10-24 21:11:32.425790944+00:00,1 +2023-10-24 21:11:32.542621908+00:00,1 +2023-10-24 21:11:32.659132685+00:00,1 +2023-10-24 21:11:32.774410014+00:00,1 +2023-10-24 21:11:32.890833665+00:00,1 +2023-10-24 21:11:33.006683719+00:00,1 +2023-10-24 21:11:33.122743076+00:00,1 +2023-10-24 21:11:33.238194846+00:00,1 +2023-10-24 21:11:33.353810259+00:00,1 +2023-10-24 21:11:33.469250207+00:00,1 +2023-10-24 21:11:33.585348761+00:00,1 +2023-10-24 21:11:33.701354607+00:00,1 +2023-10-24 21:11:33.817594131+00:00,1 +2023-10-24 21:11:33.933354703+00:00,1 +2023-10-24 21:11:34.048917260+00:00,1 +2023-10-24 21:11:34.164597546+00:00,1 +2023-10-24 21:11:34.280957771+00:00,1 +2023-10-24 21:11:34.397692809+00:00,1 +2023-10-24 21:11:34.513471081+00:00,1 +2023-10-24 21:11:34.630161471+00:00,1 +2023-10-24 21:11:34.748505533+00:00,1 +2023-10-24 21:11:34.864834955+00:00,1 +2023-10-24 21:11:34.980566958+00:00,1 +2023-10-24 21:11:35.095965079+00:00,1 +2023-10-24 21:11:35.212988640+00:00,1 +2023-10-24 21:11:35.329502579+00:00,1 +2023-10-24 21:11:35.446928816+00:00,1 +2023-10-24 21:11:35.563654839+00:00,1 +2023-10-24 21:11:35.679907498+00:00,1 +2023-10-24 21:11:35.796428045+00:00,1 +2023-10-24 21:11:35.913597879+00:00,1 +2023-10-24 21:11:36.030888967+00:00,1 +2023-10-24 21:11:36.146410146+00:00,1 +2023-10-24 21:11:36.263117766+00:00,1 +2023-10-24 21:11:36.379437132+00:00,1 +2023-10-24 21:11:36.496143015+00:00,1 +2023-10-24 21:11:36.612284154+00:00,1 +2023-10-24 21:11:36.728880763+00:00,1 +2023-10-24 21:11:36.845953879+00:00,1 +2023-10-24 21:11:36.962132663+00:00,1 +2023-10-24 21:11:37.078199366+00:00,1 +2023-10-24 21:11:37.193526822+00:00,1 +2023-10-24 21:11:37.309252779+00:00,1 +2023-10-24 21:11:37.426217521+00:00,1 +2023-10-24 21:11:37.542944899+00:00,1 +2023-10-24 21:11:37.658927312+00:00,1 +2023-10-24 21:11:37.775014123+00:00,1 +2023-10-24 21:11:37.890096660+00:00,1 +2023-10-24 21:11:38.005950332+00:00,1 +2023-10-24 21:11:38.122538379+00:00,1 +2023-10-24 21:11:38.239467565+00:00,1 +2023-10-24 21:11:38.355656228+00:00,1 +2023-10-24 21:11:38.471902799+00:00,1 +2023-10-24 21:11:38.588990684+00:00,1 +2023-10-24 21:11:38.706395403+00:00,1 +2023-10-24 21:11:38.823787409+00:00,1 +2023-10-24 21:11:38.940655532+00:00,1 +2023-10-24 21:11:39.056878538+00:00,1 +2023-10-24 21:11:39.172987564+00:00,1 +2023-10-24 21:11:39.289674642+00:00,1 +2023-10-24 21:11:39.405790009+00:00,1 +2023-10-24 21:11:39.522722261+00:00,1 +2023-10-24 21:11:39.639123994+00:00,1 +2023-10-24 21:11:39.754511347+00:00,1 +2023-10-24 21:11:39.870861870+00:00,1 +2023-10-24 21:11:39.987238480+00:00,1 +2023-10-24 21:11:40.104075882+00:00,1 +2023-10-24 21:11:40.220041823+00:00,1 +2023-10-24 21:11:40.337309165+00:00,1 +2023-10-24 21:11:40.453672716+00:00,1 +2023-10-24 21:11:40.571119641+00:00,1 +2023-10-24 21:11:40.688758020+00:00,1 +2023-10-24 21:11:40.805528375+00:00,1 +2023-10-24 21:11:40.920753221+00:00,1 +2023-10-24 21:11:41.036717424+00:00,1 +2023-10-24 21:11:41.154025129+00:00,1 +2023-10-24 21:11:41.270627595+00:00,1 +2023-10-24 21:11:41.386536214+00:00,1 +2023-10-24 21:11:41.502353466+00:00,1 +2023-10-24 21:11:41.618240456+00:00,1 +2023-10-24 21:11:41.734917216+00:00,1 +2023-10-24 21:11:41.851445830+00:00,1 +2023-10-24 21:11:41.967782391+00:00,1 +2023-10-24 21:11:42.084234574+00:00,1 +2023-10-24 21:11:42.199772470+00:00,1 +2023-10-24 21:11:42.316645262+00:00,1 +2023-10-24 21:11:42.432868981+00:00,1 +2023-10-24 21:11:42.548379752+00:00,1 +2023-10-24 21:11:42.665081343+00:00,1 +2023-10-24 21:11:42.781761676+00:00,1 +2023-10-24 21:11:42.898111527+00:00,1 +2023-10-24 21:11:43.014074776+00:00,1 +2023-10-24 21:11:43.130611062+00:00,1 +2023-10-24 21:11:43.247372956+00:00,1 +2023-10-24 21:11:43.363565570+00:00,1 +2023-10-24 21:11:43.480274821+00:00,1 +2023-10-24 21:11:43.597229065+00:00,1 +2023-10-24 21:11:43.713460872+00:00,1 +2023-10-24 21:11:43.829896154+00:00,1 +2023-10-24 21:11:43.946037593+00:00,1 +2023-10-24 21:11:44.062217603+00:00,1 +2023-10-24 21:11:44.178520744+00:00,1 +2023-10-24 21:11:44.295457661+00:00,1 +2023-10-24 21:11:44.412270318+00:00,1 +2023-10-24 21:11:44.528767124+00:00,1 +2023-10-24 21:11:44.646134489+00:00,1 +2023-10-24 21:11:44.761517732+00:00,1 +2023-10-24 21:11:44.877628914+00:00,1 +2023-10-24 21:11:44.994132090+00:00,1 +2023-10-24 21:11:45.111028300+00:00,1 +2023-10-24 21:11:45.226566698+00:00,1 +2023-10-24 21:11:45.342878694+00:00,1 +2023-10-24 21:11:45.458956770+00:00,1 +2023-10-24 21:11:45.574157815+00:00,1 +2023-10-24 21:11:45.689438237+00:00,1 +2023-10-24 21:11:45.805943710+00:00,1 +2023-10-24 21:11:45.921487199+00:00,1 +2023-10-24 21:11:46.037668099+00:00,1 +2023-10-24 21:11:46.154566859+00:00,1 +2023-10-24 21:11:46.270293781+00:00,1 +2023-10-24 21:11:46.386992780+00:00,1 +2023-10-24 21:11:46.503766945+00:00,1 +2023-10-24 21:11:46.619731059+00:00,1 +2023-10-24 21:11:46.736689516+00:00,1 +2023-10-24 21:11:46.853322649+00:00,1 +2023-10-24 21:11:46.969833343+00:00,1 +2023-10-24 21:11:47.086636386+00:00,1 +2023-10-24 21:11:47.204415274+00:00,1 +2023-10-24 21:11:47.320453684+00:00,1 +2023-10-24 21:11:47.436576513+00:00,1 +2023-10-24 21:11:47.553024481+00:00,1 +2023-10-24 21:11:47.668838730+00:00,1 +2023-10-24 21:11:47.786300303+00:00,1 +2023-10-24 21:11:47.902586243+00:00,1 +2023-10-24 21:11:48.019808529+00:00,1 +2023-10-24 21:11:48.136459573+00:00,1 +2023-10-24 21:11:48.253377315+00:00,1 +2023-10-24 21:11:48.370213149+00:00,1 +2023-10-24 21:11:48.485709943+00:00,1 +2023-10-24 21:11:48.601659359+00:00,1 +2023-10-24 21:11:48.716898267+00:00,1 +2023-10-24 21:11:48.832624461+00:00,1 +2023-10-24 21:11:48.949237016+00:00,1 +2023-10-24 21:11:49.065384088+00:00,1 +2023-10-24 21:11:49.182189074+00:00,1 +2023-10-24 21:11:49.299931773+00:00,1 +2023-10-24 21:11:49.415946626+00:00,1 +2023-10-24 21:11:49.531602726+00:00,1 +2023-10-24 21:11:49.647518095+00:00,1 +2023-10-24 21:11:49.763490071+00:00,1 +2023-10-24 21:11:49.879310724+00:00,1 +2023-10-24 21:11:49.995988833+00:00,1 +2023-10-24 21:11:50.112037741+00:00,1 +2023-10-24 21:11:50.227338261+00:00,1 +2023-10-24 21:11:50.342692632+00:00,1 +2023-10-24 21:11:50.459456082+00:00,1 +2023-10-24 21:11:50.576510164+00:00,1 +2023-10-24 21:11:50.692891236+00:00,1 +2023-10-24 21:11:50.809576057+00:00,1 +2023-10-24 21:11:50.927108678+00:00,1 +2023-10-24 21:11:51.044020246+00:00,1 +2023-10-24 21:11:51.160493272+00:00,1 +2023-10-24 21:11:51.277561342+00:00,1 +2023-10-24 21:11:51.393931954+00:00,1 +2023-10-24 21:11:51.509859420+00:00,1 +2023-10-24 21:11:51.626602034+00:00,1 +2023-10-24 21:11:51.743153991+00:00,1 +2023-10-24 21:11:51.858400529+00:00,1 +2023-10-24 21:11:51.974057919+00:00,1 +2023-10-24 21:11:52.090775421+00:00,1 +2023-10-24 21:11:52.206136586+00:00,1 +2023-10-24 21:11:52.322018676+00:00,1 +2023-10-24 21:11:52.438137761+00:00,1 +2023-10-24 21:11:52.553725984+00:00,1 +2023-10-24 21:11:52.669287755+00:00,1 +2023-10-24 21:11:52.785138784+00:00,1 +2023-10-24 21:11:52.901044160+00:00,1 +2023-10-24 21:11:53.017925122+00:00,1 +2023-10-24 21:11:53.134922869+00:00,1 +2023-10-24 21:11:53.251845756+00:00,1 +2023-10-24 21:11:53.368279129+00:00,1 +2023-10-24 21:11:53.483921164+00:00,1 +2023-10-24 21:11:53.600132069+00:00,1 +2023-10-24 21:11:53.716304290+00:00,1 +2023-10-24 21:11:53.831515782+00:00,1 +2023-10-24 21:11:53.948408270+00:00,1 +2023-10-24 21:11:54.064324148+00:00,1 +2023-10-24 21:11:54.181170326+00:00,1 +2023-10-24 21:11:54.297234323+00:00,1 +2023-10-24 21:11:54.413349932+00:00,1 +2023-10-24 21:11:54.528544879+00:00,1 +2023-10-24 21:11:54.644024999+00:00,1 +2023-10-24 21:11:54.759410178+00:00,1 +2023-10-24 21:11:54.875831316+00:00,1 +2023-10-24 21:11:54.991471880+00:00,1 +2023-10-24 21:11:55.107220207+00:00,1 +2023-10-24 21:11:55.223464405+00:00,1 +2023-10-24 21:11:55.340008444+00:00,1 +2023-10-24 21:11:55.456709469+00:00,1 +2023-10-24 21:11:55.572763618+00:00,1 +2023-10-24 21:11:55.688699574+00:00,1 +2023-10-24 21:11:55.805446308+00:00,1 +2023-10-24 21:11:55.920813906+00:00,1 +2023-10-24 21:11:56.036863944+00:00,1 +2023-10-24 21:11:56.152479188+00:00,1 +2023-10-24 21:11:56.268708544+00:00,1 +2023-10-24 21:11:56.385383428+00:00,1 +2023-10-24 21:11:56.501038108+00:00,1 +2023-10-24 21:11:56.618078608+00:00,1 +2023-10-24 21:11:56.734380068+00:00,1 +2023-10-24 21:11:56.849469176+00:00,1 +2023-10-24 21:11:56.964932303+00:00,1 +2023-10-24 21:11:57.080130042+00:00,1 +2023-10-24 21:11:57.195832637+00:00,1 +2023-10-24 21:11:57.312249869+00:00,1 +2023-10-24 21:11:57.428493715+00:00,1 +2023-10-24 21:11:57.543701020+00:00,1 +2023-10-24 21:11:57.660046500+00:00,1 +2023-10-24 21:11:57.776568602+00:00,1 +2023-10-24 21:11:57.892410927+00:00,1 +2023-10-24 21:11:58.008885921+00:00,1 +2023-10-24 21:11:58.124910936+00:00,1 +2023-10-24 21:11:58.241812534+00:00,1 +2023-10-24 21:11:58.357245979+00:00,1 +2023-10-24 21:11:58.474040635+00:00,1 +2023-10-24 21:11:58.590006912+00:00,1 +2023-10-24 21:11:58.707241108+00:00,1 +2023-10-24 21:11:58.824217544+00:00,1 +2023-10-24 21:11:58.940255615+00:00,1 +2023-10-24 21:11:59.055651036+00:00,1 +2023-10-24 21:11:59.171920113+00:00,1 +2023-10-24 21:11:59.287667806+00:00,1 +2023-10-24 21:11:59.404451607+00:00,1 +2023-10-24 21:11:59.520364996+00:00,1 +2023-10-24 21:11:59.637237873+00:00,1 +2023-10-24 21:11:59.752836444+00:00,1 +2023-10-24 21:11:59.869323938+00:00,1 +2023-10-24 21:11:59.985737716+00:00,1 +2023-10-24 21:12:00.102770538+00:00,1 +2023-10-24 21:12:00.218551059+00:00,1 +2023-10-24 21:12:00.333727757+00:00,1 +2023-10-24 21:12:00.449172378+00:00,1 +2023-10-24 21:12:00.565103925+00:00,1 +2023-10-24 21:12:00.681416788+00:00,1 +2023-10-24 21:12:00.798217692+00:00,1 +2023-10-24 21:12:00.913726864+00:00,1 +2023-10-24 21:12:01.030952255+00:00,1 +2023-10-24 21:12:01.147840366+00:00,1 +2023-10-24 21:12:01.263308748+00:00,1 +2023-10-24 21:12:01.379402673+00:00,1 +2023-10-24 21:12:01.496337527+00:00,1 +2023-10-24 21:12:01.612818425+00:00,1 +2023-10-24 21:12:01.730277457+00:00,1 +2023-10-24 21:12:01.845770888+00:00,1 +2023-10-24 21:12:01.962062325+00:00,1 +2023-10-24 21:12:02.079445516+00:00,1 +2023-10-24 21:12:02.196596371+00:00,1 +2023-10-24 21:12:02.313153147+00:00,1 +2023-10-24 21:12:02.429535728+00:00,1 +2023-10-24 21:12:02.546422932+00:00,1 +2023-10-24 21:12:02.662156814+00:00,1 +2023-10-24 21:12:02.777955199+00:00,1 +2023-10-24 21:12:02.893219530+00:00,1 +2023-10-24 21:12:03.008739347+00:00,1 +2023-10-24 21:12:03.124688476+00:00,1 +2023-10-24 21:12:03.241270754+00:00,1 +2023-10-24 21:12:03.358498185+00:00,1 +2023-10-24 21:12:03.474575655+00:00,1 +2023-10-24 21:12:03.590375712+00:00,1 +2023-10-24 21:12:03.706069441+00:00,1 +2023-10-24 21:12:03.822790086+00:00,1 +2023-10-24 21:12:03.939751761+00:00,1 +2023-10-24 21:12:04.054933127+00:00,1 +2023-10-24 21:12:04.171272217+00:00,1 +2023-10-24 21:12:04.287470397+00:00,1 +2023-10-24 21:12:04.404474077+00:00,1 +2023-10-24 21:12:04.520236658+00:00,1 +2023-10-24 21:12:04.637972393+00:00,1 +2023-10-24 21:12:04.754042647+00:00,1 +2023-10-24 21:12:04.870613935+00:00,1 +2023-10-24 21:12:04.986721568+00:00,1 +2023-10-24 21:12:05.102968827+00:00,1 +2023-10-24 21:12:05.218698240+00:00,1 +2023-10-24 21:12:05.334035887+00:00,1 +2023-10-24 21:12:05.449526632+00:00,1 +2023-10-24 21:12:05.565556593+00:00,1 +2023-10-24 21:12:05.681707240+00:00,1 +2023-10-24 21:12:05.797514637+00:00,1 +2023-10-24 21:12:05.913393102+00:00,1 +2023-10-24 21:12:06.030043750+00:00,1 +2023-10-24 21:12:06.145765958+00:00,1 +2023-10-24 21:12:06.263117989+00:00,1 +2023-10-24 21:12:06.378313205+00:00,1 +2023-10-24 21:12:06.493667802+00:00,1 +2023-10-24 21:12:06.610261451+00:00,1 +2023-10-24 21:12:06.726393077+00:00,1 +2023-10-24 21:12:06.841857013+00:00,1 +2023-10-24 21:12:06.957564774+00:00,1 +2023-10-24 21:12:07.076097281+00:00,1 +2023-10-24 21:12:07.191845499+00:00,1 +2023-10-24 21:12:07.307557884+00:00,1 +2023-10-24 21:12:07.424081260+00:00,1 +2023-10-24 21:12:07.540406330+00:00,1 +2023-10-24 21:12:07.658531478+00:00,1 +2023-10-24 21:12:07.774746135+00:00,1 +2023-10-24 21:12:07.892214620+00:00,1 +2023-10-24 21:12:08.009167374+00:00,1 +2023-10-24 21:12:08.125355270+00:00,1 +2023-10-24 21:12:08.241926278+00:00,1 +2023-10-24 21:12:08.358540886+00:00,1 +2023-10-24 21:12:08.475880648+00:00,1 +2023-10-24 21:12:08.591436914+00:00,1 +2023-10-24 21:12:08.707286492+00:00,1 +2023-10-24 21:12:08.824048373+00:00,1 +2023-10-24 21:12:08.939504734+00:00,1 +2023-10-24 21:12:09.055869903+00:00,1 +2023-10-24 21:12:09.172732885+00:00,1 +2023-10-24 21:12:09.288363976+00:00,1 +2023-10-24 21:12:09.403949668+00:00,1 +2023-10-24 21:12:09.520524635+00:00,1 +2023-10-24 21:12:09.635964597+00:00,1 +2023-10-24 21:12:09.753246325+00:00,1 +2023-10-24 21:12:09.869401440+00:00,1 +2023-10-24 21:12:09.986653507+00:00,1 +2023-10-24 21:12:10.102372398+00:00,1 +2023-10-24 21:12:10.219284806+00:00,1 +2023-10-24 21:12:10.335072802+00:00,1 +2023-10-24 21:12:10.451261441+00:00,1 +2023-10-24 21:12:10.568139653+00:00,1 +2023-10-24 21:12:10.684305337+00:00,1 +2023-10-24 21:12:10.799820502+00:00,1 +2023-10-24 21:12:10.916708749+00:00,1 +2023-10-24 21:12:11.033024290+00:00,1 +2023-10-24 21:12:11.148587554+00:00,1 +2023-10-24 21:12:11.263981489+00:00,1 +2023-10-24 21:12:11.380019577+00:00,1 +2023-10-24 21:12:11.495764349+00:00,1 +2023-10-24 21:12:11.611121959+00:00,1 +2023-10-24 21:12:11.726401897+00:00,1 +2023-10-24 21:12:11.841498095+00:00,1 +2023-10-24 21:12:11.957145353+00:00,1 +2023-10-24 21:12:12.073416055+00:00,1 +2023-10-24 21:12:12.191386182+00:00,1 +2023-10-24 21:12:12.307717326+00:00,1 +2023-10-24 21:12:12.424187340+00:00,1 +2023-10-24 21:12:12.540964049+00:00,1 +2023-10-24 21:12:12.656795754+00:00,1 +2023-10-24 21:12:12.772573968+00:00,1 +2023-10-24 21:12:12.888799803+00:00,1 +2023-10-24 21:12:13.004599125+00:00,1 +2023-10-24 21:12:13.120524335+00:00,1 +2023-10-24 21:12:13.237089450+00:00,1 +2023-10-24 21:12:13.352739011+00:00,1 +2023-10-24 21:12:13.470154221+00:00,1 +2023-10-24 21:12:13.586963081+00:00,1 +2023-10-24 21:12:13.702964875+00:00,1 +2023-10-24 21:12:13.818930931+00:00,1 +2023-10-24 21:12:13.935684723+00:00,1 +2023-10-24 21:12:14.051612680+00:00,1 +2023-10-24 21:12:14.167299178+00:00,1 +2023-10-24 21:12:14.284354247+00:00,1 +2023-10-24 21:12:14.400895157+00:00,1 +2023-10-24 21:12:14.517007074+00:00,1 +2023-10-24 21:12:14.635071220+00:00,1 +2023-10-24 21:12:14.750875480+00:00,1 +2023-10-24 21:12:14.866571650+00:00,1 +2023-10-24 21:12:14.983221237+00:00,1 +2023-10-24 21:12:15.098947078+00:00,1 +2023-10-24 21:12:15.215757594+00:00,1 +2023-10-24 21:12:15.332053685+00:00,1 +2023-10-24 21:12:15.447173578+00:00,1 +2023-10-24 21:12:15.564022925+00:00,1 +2023-10-24 21:12:15.680414208+00:00,1 +2023-10-24 21:12:15.797773387+00:00,1 +2023-10-24 21:12:15.913883743+00:00,1 +2023-10-24 21:12:16.029811410+00:00,1 +2023-10-24 21:12:16.146375434+00:00,1 +2023-10-24 21:12:16.262579451+00:00,1 +2023-10-24 21:12:16.378827852+00:00,1 +2023-10-24 21:12:16.494498842+00:00,1 +2023-10-24 21:12:16.610396471+00:00,1 +2023-10-24 21:12:16.725533110+00:00,1 +2023-10-24 21:12:16.840809337+00:00,1 +2023-10-24 21:12:16.957085582+00:00,1 +2023-10-24 21:12:17.073117540+00:00,1 +2023-10-24 21:12:17.189651827+00:00,1 +2023-10-24 21:12:17.305222796+00:00,1 +2023-10-24 21:12:17.421658685+00:00,1 +2023-10-24 21:12:17.537432743+00:00,1 +2023-10-24 21:12:17.654849695+00:00,1 +2023-10-24 21:12:17.770697992+00:00,1 +2023-10-24 21:12:17.887472140+00:00,1 +2023-10-24 21:12:18.003694817+00:00,1 +2023-10-24 21:12:18.119114826+00:00,1 +2023-10-24 21:12:18.235522396+00:00,1 +2023-10-24 21:12:18.351377627+00:00,1 +2023-10-24 21:12:18.468400380+00:00,1 +2023-10-24 21:12:18.584967003+00:00,1 +2023-10-24 21:12:18.701335458+00:00,1 +2023-10-24 21:12:18.817269959+00:00,1 +2023-10-24 21:12:18.933486398+00:00,1 +2023-10-24 21:12:19.049340587+00:00,1 +2023-10-24 21:12:19.165506721+00:00,1 +2023-10-24 21:12:19.281581757+00:00,1 +2023-10-24 21:12:19.398314851+00:00,1 +2023-10-24 21:12:19.514545653+00:00,1 +2023-10-24 21:12:19.630362714+00:00,1 +2023-10-24 21:12:19.746006032+00:00,1 +2023-10-24 21:12:19.862984045+00:00,1 +2023-10-24 21:12:19.979489159+00:00,1 +2023-10-24 21:12:20.096653494+00:00,1 +2023-10-24 21:12:20.212448714+00:00,1 +2023-10-24 21:12:20.329163114+00:00,1 +2023-10-24 21:12:20.445544527+00:00,1 +2023-10-24 21:12:20.562327886+00:00,1 +2023-10-24 21:12:20.678759448+00:00,1 +2023-10-24 21:12:20.795279613+00:00,1 +2023-10-24 21:12:20.911029099+00:00,1 +2023-10-24 21:12:21.027714722+00:00,1 +2023-10-24 21:12:21.143931469+00:00,1 +2023-10-24 21:12:21.259793778+00:00,1 +2023-10-24 21:12:21.375908195+00:00,1 +2023-10-24 21:12:21.492360877+00:00,1 +2023-10-24 21:12:21.607998855+00:00,1 +2023-10-24 21:12:21.724177611+00:00,1 +2023-10-24 21:12:21.839443984+00:00,1 +2023-10-24 21:12:21.955427252+00:00,1 +2023-10-24 21:12:22.072032425+00:00,1 +2023-10-24 21:12:22.188871386+00:00,1 +2023-10-24 21:12:22.305846212+00:00,1 +2023-10-24 21:12:22.421903203+00:00,1 +2023-10-24 21:12:22.538185870+00:00,1 +2023-10-24 21:12:22.653631219+00:00,1 +2023-10-24 21:12:22.771965279+00:00,1 +2023-10-24 21:12:22.888425457+00:00,1 +2023-10-24 21:12:23.004829862+00:00,1 +2023-10-24 21:12:23.121326316+00:00,1 +2023-10-24 21:12:23.237224498+00:00,1 +2023-10-24 21:12:23.353624812+00:00,1 +2023-10-24 21:12:23.470042637+00:00,1 +2023-10-24 21:12:23.584977938+00:00,1 +2023-10-24 21:12:23.701475176+00:00,1 +2023-10-24 21:12:23.817433903+00:00,1 +2023-10-24 21:12:23.934313567+00:00,1 +2023-10-24 21:12:24.050140165+00:00,1 +2023-10-24 21:12:24.166221851+00:00,1 +2023-10-24 21:12:24.281874489+00:00,1 +2023-10-24 21:12:24.397327710+00:00,1 +2023-10-24 21:12:24.513432540+00:00,1 +2023-10-24 21:12:24.629076309+00:00,1 +2023-10-24 21:12:24.744210714+00:00,1 +2023-10-24 21:12:24.859861871+00:00,1 +2023-10-24 21:12:24.976145729+00:00,1 +2023-10-24 21:12:25.092492907+00:00,1 +2023-10-24 21:12:25.208184749+00:00,1 +2023-10-24 21:12:25.323764387+00:00,1 +2023-10-24 21:12:25.439912786+00:00,1 +2023-10-24 21:12:25.555505424+00:00,1 +2023-10-24 21:12:25.672417518+00:00,1 +2023-10-24 21:12:25.790188821+00:00,1 +2023-10-24 21:12:25.906989558+00:00,1 +2023-10-24 21:12:26.024195914+00:00,1 +2023-10-24 21:12:26.140163553+00:00,1 +2023-10-24 21:12:26.256647728+00:00,1 +2023-10-24 21:12:26.372950998+00:00,1 +2023-10-24 21:12:26.488687824+00:00,1 +2023-10-24 21:12:26.605466460+00:00,1 +2023-10-24 21:12:26.721893894+00:00,1 +2023-10-24 21:12:26.838142931+00:00,1 +2023-10-24 21:12:26.954881986+00:00,1 +2023-10-24 21:12:27.071377578+00:00,1 +2023-10-24 21:12:27.188362208+00:00,1 +2023-10-24 21:12:27.304801775+00:00,1 +2023-10-24 21:12:27.421616550+00:00,1 +2023-10-24 21:12:27.537362646+00:00,1 +2023-10-24 21:12:27.653309726+00:00,1 +2023-10-24 21:12:27.769149701+00:00,1 +2023-10-24 21:12:27.885599259+00:00,1 +2023-10-24 21:12:28.003274856+00:00,1 +2023-10-24 21:12:28.119444638+00:00,1 +2023-10-24 21:13:00.088875945+00:00,1 +2023-10-24 21:13:00.205296088+00:00,1 +2023-10-24 21:13:00.320655092+00:00,1 +2023-10-24 21:13:00.436712890+00:00,1 +2023-10-24 21:13:00.551788905+00:00,1 +2023-10-24 21:13:00.667386558+00:00,1 +2023-10-24 21:13:00.783858959+00:00,1 +2023-10-24 21:13:00.899762721+00:00,1 +2023-10-24 21:13:01.015756035+00:00,1 +2023-10-24 21:13:01.132551893+00:00,1 +2023-10-24 21:13:01.248696362+00:00,1 +2023-10-24 21:13:01.365507747+00:00,1 +2023-10-24 21:13:01.481995100+00:00,1 +2023-10-24 21:13:01.597558156+00:00,1 +2023-10-24 21:13:01.713590395+00:00,1 +2023-10-24 21:13:01.829654398+00:00,1 +2023-10-24 21:13:01.945626187+00:00,1 +2023-10-24 21:13:02.060952430+00:00,1 +2023-10-24 21:13:02.176238589+00:00,1 +2023-10-24 21:13:02.292857333+00:00,1 +2023-10-24 21:13:02.408176090+00:00,1 +2023-10-24 21:13:02.524348445+00:00,1 +2023-10-24 21:13:02.640933406+00:00,1 +2023-10-24 21:13:02.756723471+00:00,1 +2023-10-24 21:13:02.872162604+00:00,1 +2023-10-24 21:13:02.988439112+00:00,1 +2023-10-24 21:13:03.104252233+00:00,1 +2023-10-24 21:13:03.220058437+00:00,1 +2023-10-24 21:13:03.335331637+00:00,1 +2023-10-24 21:13:03.451274955+00:00,1 +2023-10-24 21:13:03.566679470+00:00,1 +2023-10-24 21:13:03.682107099+00:00,1 +2023-10-24 21:13:03.797160227+00:00,1 +2023-10-24 21:13:03.913801608+00:00,1 +2023-10-24 21:13:04.029319560+00:00,1 +2023-10-24 21:13:04.144716393+00:00,1 +2023-10-24 21:13:04.259852190+00:00,1 +2023-10-24 21:13:04.374823345+00:00,1 +2023-10-24 21:13:04.489843835+00:00,1 +2023-10-24 21:13:04.605163468+00:00,1 +2023-10-24 21:13:04.720696706+00:00,1 +2023-10-24 21:13:04.837037735+00:00,1 +2023-10-24 21:13:04.953350807+00:00,1 +2023-10-24 21:13:05.068810730+00:00,1 +2023-10-24 21:13:05.185070788+00:00,1 +2023-10-24 21:13:05.300142935+00:00,1 +2023-10-24 21:13:05.415596770+00:00,1 +2023-10-24 21:13:05.531160865+00:00,1 +2023-10-24 21:13:05.646724813+00:00,1 +2023-10-24 21:13:05.763234589+00:00,1 +2023-10-24 21:13:05.879265322+00:00,1 +2023-10-24 21:13:05.996198473+00:00,1 +2023-10-24 21:13:06.113085428+00:00,1 +2023-10-24 21:13:06.230008933+00:00,1 +2023-10-24 21:13:06.347475947+00:00,1 +2023-10-24 21:13:06.462755034+00:00,1 +2023-10-24 21:13:06.579259078+00:00,1 +2023-10-24 21:13:06.694889055+00:00,1 +2023-10-24 21:13:06.810984454+00:00,1 +2023-10-24 21:13:06.926805464+00:00,1 +2023-10-24 21:13:07.042289100+00:00,1 +2023-10-24 21:13:07.157351085+00:00,1 +2023-10-24 21:13:07.272390729+00:00,1 +2023-10-24 21:13:07.388769945+00:00,1 +2023-10-24 21:13:07.504726580+00:00,1 +2023-10-24 21:13:07.620041661+00:00,1 +2023-10-24 21:13:07.735911031+00:00,1 +2023-10-24 21:13:07.850960861+00:00,1 +2023-10-24 21:13:07.967195021+00:00,1 +2023-10-24 21:13:08.083395641+00:00,1 +2023-10-24 21:13:08.199397155+00:00,1 +2023-10-24 21:13:08.316547616+00:00,1 +2023-10-24 21:13:08.432153041+00:00,1 +2023-10-24 21:13:08.548325204+00:00,1 +2023-10-24 21:13:08.664992197+00:00,1 +2023-10-24 21:13:08.780416593+00:00,1 +2023-10-24 21:13:08.896114428+00:00,1 +2023-10-24 21:13:09.012830364+00:00,1 +2023-10-24 21:13:09.129196877+00:00,1 +2023-10-24 21:13:09.244472755+00:00,1 +2023-10-24 21:13:09.359766003+00:00,1 +2023-10-24 21:13:09.474901906+00:00,1 +2023-10-24 21:13:09.590831958+00:00,1 +2023-10-24 21:13:09.706505540+00:00,1 +2023-10-24 21:13:09.822445122+00:00,1 +2023-10-24 21:13:09.938418780+00:00,1 +2023-10-24 21:13:10.054686371+00:00,1 +2023-10-24 21:13:10.170365381+00:00,1 +2023-10-24 21:13:10.286479111+00:00,1 +2023-10-24 21:13:10.401643085+00:00,1 +2023-10-24 21:13:10.517384567+00:00,1 +2023-10-24 21:13:10.633492690+00:00,1 +2023-10-24 21:13:10.749242417+00:00,1 +2023-10-24 21:13:10.864977638+00:00,1 +2023-10-24 21:13:10.981590314+00:00,1 +2023-10-24 21:13:11.098995222+00:00,1 +2023-10-24 21:13:11.215464713+00:00,1 +2023-10-24 21:13:11.331224549+00:00,1 +2023-10-24 21:13:11.446406413+00:00,1 +2023-10-24 21:13:11.562394341+00:00,1 +2023-10-24 21:13:11.678144113+00:00,1 +2023-10-24 21:13:11.793194739+00:00,1 +2023-10-24 21:13:11.908153464+00:00,1 +2023-10-24 21:13:12.024192641+00:00,1 +2023-10-24 21:13:12.140276607+00:00,1 +2023-10-24 21:13:12.255912186+00:00,1 +2023-10-24 21:13:12.372179100+00:00,1 +2023-10-24 21:13:12.487056632+00:00,1 +2023-10-24 21:13:12.602865874+00:00,1 +2023-10-24 21:13:12.718667237+00:00,1 +2023-10-24 21:13:12.834973505+00:00,1 +2023-10-24 21:13:12.950885345+00:00,1 +2023-10-24 21:13:13.066649986+00:00,1 +2023-10-24 21:13:13.182653688+00:00,1 +2023-10-24 21:13:13.297848627+00:00,1 +2023-10-24 21:13:13.413112804+00:00,1 +2023-10-24 21:13:13.529046363+00:00,1 +2023-10-24 21:13:13.645019759+00:00,1 +2023-10-24 21:13:13.760053675+00:00,1 +2023-10-24 21:13:13.876239207+00:00,1 +2023-10-24 21:13:13.991247858+00:00,1 +2023-10-24 21:13:14.106763324+00:00,1 +2023-10-24 21:13:14.222011524+00:00,1 +2023-10-24 21:13:14.337409756+00:00,1 +2023-10-24 21:13:14.454546960+00:00,1 +2023-10-24 21:13:14.571691516+00:00,1 +2023-10-24 21:13:14.686487130+00:00,1 +2023-10-24 21:13:14.803119695+00:00,1 +2023-10-24 21:13:14.919720434+00:00,1 +2023-10-24 21:13:15.035139238+00:00,1 +2023-10-24 21:13:15.150823254+00:00,1 +2023-10-24 21:13:15.266702547+00:00,1 +2023-10-24 21:13:15.383154363+00:00,1 +2023-10-24 21:13:15.498926405+00:00,1 +2023-10-24 21:13:15.617056316+00:00,1 +2023-10-24 21:13:15.732724493+00:00,1 +2023-10-24 21:13:15.849153079+00:00,1 +2023-10-24 21:13:15.964180175+00:00,1 +2023-10-24 21:13:16.079386306+00:00,1 +2023-10-24 21:13:16.194594394+00:00,1 +2023-10-24 21:13:16.309558262+00:00,1 +2023-10-24 21:13:16.425029552+00:00,1 +2023-10-24 21:13:16.540195938+00:00,1 +2023-10-24 21:13:16.656379347+00:00,1 +2023-10-24 21:13:16.772236122+00:00,1 +2023-10-24 21:13:16.887730446+00:00,1 +2023-10-24 21:13:17.003923386+00:00,1 +2023-10-24 21:13:17.118911365+00:00,1 +2023-10-24 21:13:17.234811110+00:00,1 +2023-10-24 21:13:17.350018667+00:00,1 +2023-10-24 21:13:17.465223591+00:00,1 +2023-10-24 21:13:17.580869453+00:00,1 +2023-10-24 21:13:17.695717833+00:00,1 +2023-10-24 21:13:17.810833287+00:00,1 +2023-10-24 21:13:17.926955325+00:00,1 +2023-10-24 21:13:18.042053768+00:00,1 +2023-10-24 21:13:18.156498425+00:00,1 +2023-10-24 21:13:18.271653972+00:00,1 +2023-10-24 21:13:18.387479774+00:00,1 +2023-10-24 21:13:18.503794748+00:00,1 +2023-10-24 21:13:18.620057979+00:00,1 +2023-10-24 21:13:18.737364642+00:00,1 +2023-10-24 21:13:18.853541710+00:00,1 +2023-10-24 21:13:18.969234422+00:00,1 +2023-10-24 21:13:19.084467919+00:00,1 +2023-10-24 21:13:19.199379763+00:00,1 +2023-10-24 21:13:19.315558024+00:00,1 +2023-10-24 21:13:19.430623448+00:00,1 +2023-10-24 21:13:19.545764387+00:00,1 +2023-10-24 21:13:19.661642345+00:00,1 +2023-10-24 21:13:19.777072282+00:00,1 +2023-10-24 21:13:19.892773034+00:00,1 +2023-10-24 21:13:20.009214406+00:00,1 +2023-10-24 21:13:20.125141060+00:00,1 +2023-10-24 21:13:20.241440649+00:00,1 +2023-10-24 21:13:20.358128132+00:00,1 +2023-10-24 21:13:20.473758534+00:00,1 +2023-10-24 21:13:20.589384518+00:00,1 +2023-10-24 21:13:20.704816236+00:00,1 +2023-10-24 21:13:20.820732129+00:00,1 +2023-10-24 21:13:20.937315168+00:00,1 +2023-10-24 21:13:21.053007426+00:00,1 +2023-10-24 21:13:21.167940441+00:00,1 +2023-10-24 21:13:21.283155449+00:00,1 +2023-10-24 21:13:21.398951786+00:00,1 +2023-10-24 21:13:21.514283858+00:00,1 +2023-10-24 21:13:21.630097011+00:00,1 +2023-10-24 21:13:21.746425882+00:00,1 +2023-10-24 21:13:21.863345474+00:00,1 +2023-10-24 21:13:21.979443416+00:00,1 +2023-10-24 21:13:22.094877500+00:00,1 +2023-10-24 21:13:22.211100721+00:00,1 +2023-10-24 21:13:22.327441124+00:00,1 +2023-10-24 21:13:22.443207157+00:00,1 +2023-10-24 21:13:22.558718058+00:00,1 +2023-10-24 21:13:22.674487772+00:00,1 +2023-10-24 21:13:22.789839431+00:00,1 +2023-10-24 21:13:22.905422212+00:00,1 +2023-10-24 21:13:23.021414503+00:00,1 +2023-10-24 21:13:23.136792975+00:00,1 +2023-10-24 21:13:23.252372821+00:00,1 +2023-10-24 21:13:23.368121937+00:00,1 +2023-10-24 21:13:23.483515711+00:00,1 +2023-10-24 21:13:23.598883138+00:00,1 +2023-10-24 21:13:23.714935408+00:00,1 +2023-10-24 21:13:23.831158781+00:00,1 +2023-10-24 21:13:23.946839728+00:00,1 +2023-10-24 21:13:24.062955115+00:00,1 +2023-10-24 21:13:24.178756629+00:00,1 +2023-10-24 21:13:24.294733735+00:00,1 +2023-10-24 21:13:24.411659948+00:00,1 +2023-10-24 21:13:24.528060503+00:00,1 +2023-10-24 21:13:24.644562009+00:00,1 +2023-10-24 21:13:24.759933197+00:00,1 +2023-10-24 21:13:24.876011654+00:00,1 +2023-10-24 21:13:24.992359328+00:00,1 +2023-10-24 21:13:25.107877406+00:00,1 +2023-10-24 21:13:25.224228352+00:00,1 +2023-10-24 21:13:25.340467929+00:00,1 +2023-10-24 21:13:25.455864812+00:00,1 +2023-10-24 21:13:25.572298056+00:00,1 +2023-10-24 21:13:25.688724636+00:00,1 +2023-10-24 21:13:25.803863772+00:00,1 +2023-10-24 21:13:25.919010529+00:00,1 +2023-10-24 21:13:26.034590283+00:00,1 +2023-10-24 21:13:26.150157025+00:00,1 +2023-10-24 21:13:26.265607041+00:00,1 +2023-10-24 21:13:26.381315448+00:00,1 +2023-10-24 21:13:26.497617235+00:00,1 +2023-10-24 21:13:26.614457925+00:00,1 +2023-10-24 21:13:26.730410616+00:00,1 +2023-10-24 21:13:26.846052716+00:00,1 +2023-10-24 21:13:26.961790046+00:00,1 +2023-10-24 21:13:27.076937311+00:00,1 +2023-10-24 21:13:27.191973724+00:00,1 +2023-10-24 21:13:27.308441614+00:00,1 +2023-10-24 21:13:27.423325412+00:00,1 +2023-10-24 21:13:27.538403302+00:00,1 +2023-10-24 21:13:27.654338763+00:00,1 +2023-10-24 21:13:27.769939826+00:00,1 +2023-10-24 21:13:27.885421932+00:00,1 +2023-10-24 21:13:28.002194292+00:00,1 +2023-10-24 21:13:28.117902018+00:00,1 +2023-10-24 21:13:28.232882125+00:00,1 +2023-10-24 21:13:28.348553283+00:00,1 +2023-10-24 21:13:28.464585527+00:00,1 +2023-10-24 21:13:28.580281338+00:00,1 +2023-10-24 21:13:28.695747481+00:00,1 +2023-10-24 21:13:28.810979060+00:00,1 +2023-10-24 21:13:28.925128783+00:00,1 +2023-10-24 21:13:29.039276076+00:00,1 +2023-10-24 21:13:29.154227933+00:00,1 +2023-10-24 21:13:29.268473755+00:00,1 +2023-10-24 21:13:29.383046304+00:00,1 +2023-10-24 21:13:29.497401066+00:00,1 +2023-10-24 21:13:29.611895526+00:00,1 +2023-10-24 21:13:29.726823725+00:00,1 +2023-10-24 21:13:29.841943913+00:00,1 +2023-10-24 21:13:29.957786355+00:00,1 +2023-10-24 21:13:30.072180912+00:00,1 +2023-10-24 21:13:30.186418133+00:00,1 +2023-10-24 21:13:30.301587907+00:00,1 +2023-10-24 21:13:30.416842771+00:00,1 +2023-10-24 21:13:30.531957298+00:00,1 +2023-10-24 21:13:30.648147944+00:00,1 +2023-10-24 21:13:30.763106524+00:00,1 +2023-10-24 21:13:30.877842765+00:00,1 +2023-10-24 21:13:30.992866455+00:00,1 +2023-10-24 21:13:31.107671722+00:00,1 +2023-10-24 21:13:31.222824360+00:00,1 +2023-10-24 21:13:31.337055559+00:00,1 +2023-10-24 21:13:31.452697199+00:00,1 +2023-10-24 21:13:31.567984518+00:00,1 +2023-10-24 21:13:31.683626963+00:00,1 +2023-10-24 21:13:31.798088401+00:00,1 +2023-10-24 21:13:31.912295691+00:00,1 +2023-10-24 21:13:33.042285470+00:00,1 +2023-10-24 21:13:33.156654606+00:00,1 +2023-10-24 21:13:33.271504041+00:00,1 +2023-10-24 21:13:33.386564820+00:00,1 +2023-10-24 21:13:33.502321594+00:00,1 +2023-10-24 21:13:33.617622123+00:00,1 +2023-10-24 21:13:33.733008973+00:00,1 +2023-10-24 21:13:33.848027782+00:00,1 +2023-10-24 21:13:33.964454380+00:00,1 +2023-10-24 21:13:34.079426250+00:00,1 +2023-10-24 21:13:34.194097120+00:00,1 +2023-10-24 21:13:34.309366468+00:00,1 +2023-10-24 21:13:34.424174870+00:00,1 +2023-10-24 21:13:34.539050675+00:00,1 +2023-10-24 21:13:34.654861242+00:00,1 +2023-10-24 21:13:34.770255951+00:00,1 +2023-10-24 21:13:34.885531880+00:00,1 +2023-10-24 21:13:35.001223016+00:00,1 +2023-10-24 21:13:35.116104482+00:00,1 +2023-10-24 21:13:35.230653507+00:00,1 +2023-10-24 21:13:35.345009367+00:00,1 +2023-10-24 21:13:35.461173242+00:00,1 +2023-10-24 21:13:35.577378372+00:00,1 +2023-10-24 21:13:35.691947675+00:00,1 +2023-10-24 21:13:35.806460908+00:00,1 +2023-10-24 21:13:35.921496138+00:00,1 +2023-10-24 21:13:36.037167092+00:00,1 +2023-10-24 21:13:36.151928800+00:00,1 +2023-10-24 21:13:36.267660012+00:00,1 +2023-10-24 21:13:36.383656740+00:00,1 +2023-10-24 21:13:36.498791475+00:00,1 +2023-10-24 21:13:36.614962204+00:00,1 +2023-10-24 21:13:36.729758901+00:00,1 +2023-10-24 21:13:36.845458580+00:00,1 +2023-10-24 21:13:36.961396919+00:00,1 +2023-10-24 21:13:37.076043744+00:00,1 +2023-10-24 21:13:37.190800189+00:00,1 +2023-10-24 21:13:37.306382817+00:00,1 +2023-10-24 21:13:37.421846308+00:00,1 +2023-10-24 21:13:37.536979389+00:00,1 +2023-10-24 21:13:37.652857064+00:00,1 +2023-10-24 21:13:37.767907304+00:00,1 +2023-10-24 21:13:37.883479230+00:00,1 +2023-10-24 21:13:37.999026110+00:00,1 +2023-10-24 21:13:39.121740933+00:00,1 +2023-10-24 21:13:39.238011431+00:00,1 +2023-10-24 21:13:39.354764693+00:00,1 +2023-10-24 21:13:39.470065150+00:00,1 +2023-10-24 21:13:39.586478600+00:00,1 +2023-10-24 21:13:39.703670475+00:00,1 +2023-10-24 21:13:39.820529224+00:00,1 +2023-10-24 21:13:39.937492735+00:00,1 +2023-10-24 21:13:40.054790383+00:00,1 +2023-10-24 21:13:40.171828849+00:00,1 +2023-10-24 21:13:40.288175593+00:00,1 +2023-10-24 21:13:40.404331334+00:00,1 +2023-10-24 21:13:40.520529112+00:00,1 +2023-10-24 21:13:40.637367511+00:00,1 +2023-10-24 21:13:40.753699590+00:00,1 +2023-10-24 21:13:40.870046720+00:00,1 +2023-10-24 21:13:40.986746376+00:00,1 +2023-10-24 21:13:41.102702082+00:00,1 +2023-10-24 21:13:41.219930069+00:00,1 +2023-10-24 21:13:41.335774642+00:00,1 +2023-10-24 21:13:41.452225569+00:00,1 +2023-10-24 21:13:41.568286566+00:00,1 +2023-10-24 21:13:41.685112363+00:00,1 +2023-10-24 21:13:41.801472664+00:00,1 +2023-10-24 21:13:41.917098010+00:00,1 +2023-10-24 21:13:42.032616151+00:00,1 +2023-10-24 21:13:42.148790895+00:00,1 +2023-10-24 21:13:42.265213152+00:00,1 +2023-10-24 21:13:42.382338536+00:00,1 +2023-10-24 21:13:42.497758535+00:00,1 +2023-10-24 21:13:42.614209224+00:00,1 +2023-10-24 21:13:42.731406596+00:00,1 +2023-10-24 21:13:42.847376997+00:00,1 +2023-10-24 21:13:42.963361486+00:00,1 +2023-10-24 21:13:43.080946575+00:00,1 +2023-10-24 21:13:43.198214816+00:00,1 +2023-10-24 21:13:43.315491626+00:00,1 +2023-10-24 21:13:43.431266008+00:00,1 +2023-10-24 21:13:43.547962130+00:00,1 +2023-10-24 21:13:43.664663274+00:00,1 +2023-10-24 21:13:43.780520580+00:00,1 +2023-10-24 21:13:43.897196477+00:00,1 +2023-10-24 21:13:44.013578250+00:00,1 +2023-10-24 21:13:44.130903234+00:00,1 +2023-10-24 21:13:44.248259836+00:00,1 +2023-10-24 21:13:44.364927431+00:00,1 +2023-10-24 21:13:44.480875216+00:00,1 +2023-10-24 21:13:44.596826718+00:00,1 +2023-10-24 21:13:44.712802162+00:00,1 +2023-10-24 21:13:44.829545295+00:00,1 +2023-10-24 21:13:44.945567392+00:00,1 +2023-10-24 21:13:45.062352453+00:00,1 +2023-10-24 21:13:45.178284624+00:00,1 +2023-10-24 21:13:45.294763326+00:00,1 +2023-10-24 21:13:45.411494228+00:00,1 +2023-10-24 21:13:45.527866552+00:00,1 +2023-10-24 21:13:45.644180847+00:00,1 +2023-10-24 21:13:45.760203528+00:00,1 +2023-10-24 21:13:45.877028512+00:00,1 +2023-10-24 21:13:45.994568309+00:00,1 +2023-10-24 21:13:46.110246609+00:00,1 +2023-10-24 21:13:46.226427244+00:00,1 +2023-10-24 21:13:46.342557236+00:00,1 +2023-10-24 21:13:46.459638734+00:00,1 +2023-10-24 21:13:46.576464245+00:00,1 +2023-10-24 21:13:46.692681844+00:00,1 +2023-10-24 21:13:46.808144174+00:00,1 +2023-10-24 21:13:46.923798717+00:00,1 +2023-10-24 21:13:47.040194268+00:00,1 +2023-10-24 21:13:47.156707010+00:00,1 +2023-10-24 21:13:47.273072122+00:00,1 +2023-10-24 21:13:47.389050623+00:00,1 +2023-10-24 21:13:47.504367814+00:00,1 +2023-10-24 21:13:47.619961080+00:00,1 +2023-10-24 21:13:47.735371327+00:00,1 +2023-10-24 21:13:47.851606175+00:00,1 +2023-10-24 21:13:47.967925281+00:00,1 +2023-10-24 21:13:48.084824487+00:00,1 +2023-10-24 21:13:48.200494171+00:00,1 +2023-10-24 21:13:48.316880106+00:00,1 +2023-10-24 21:13:48.433117212+00:00,1 +2023-10-24 21:13:48.548817739+00:00,1 +2023-10-24 21:13:48.665403470+00:00,1 +2023-10-24 21:13:48.781885453+00:00,1 +2023-10-24 21:13:48.898713755+00:00,1 +2023-10-24 21:13:49.014690336+00:00,1 +2023-10-24 21:13:49.129775619+00:00,1 +2023-10-24 21:13:49.245102732+00:00,1 +2023-10-24 21:13:49.362609571+00:00,1 +2023-10-24 21:13:49.478498476+00:00,1 +2023-10-24 21:13:49.594702526+00:00,1 +2023-10-24 21:13:49.712477235+00:00,1 +2023-10-24 21:13:49.828360055+00:00,1 +2023-10-24 21:13:49.944920001+00:00,1 +2023-10-24 21:13:50.061817628+00:00,1 +2023-10-24 21:13:50.177946450+00:00,1 +2023-10-24 21:13:50.293395147+00:00,1 +2023-10-24 21:13:50.409421850+00:00,1 +2023-10-24 21:13:50.525395008+00:00,1 +2023-10-24 21:13:50.642284088+00:00,1 +2023-10-24 21:13:50.759046021+00:00,1 +2023-10-24 21:13:50.874975720+00:00,1 +2023-10-24 21:13:50.991490719+00:00,1 +2023-10-24 21:13:51.107373189+00:00,1 +2023-10-24 21:13:51.223758221+00:00,1 +2023-10-24 21:13:51.339556081+00:00,1 +2023-10-24 21:13:51.456001954+00:00,1 +2023-10-24 21:13:51.572235904+00:00,1 +2023-10-24 21:13:51.687264244+00:00,1 +2023-10-24 21:13:51.805546369+00:00,1 +2023-10-24 21:13:51.921655327+00:00,1 +2023-10-24 21:13:52.037769238+00:00,1 +2023-10-24 21:13:52.154348897+00:00,1 +2023-10-24 21:13:52.271466788+00:00,1 +2023-10-24 21:13:52.387165962+00:00,1 +2023-10-24 21:13:52.503484457+00:00,1 +2023-10-24 21:13:52.620424909+00:00,1 +2023-10-24 21:13:52.736105583+00:00,1 +2023-10-24 21:13:52.851199652+00:00,1 +2023-10-24 21:13:52.968129028+00:00,1 +2023-10-24 21:13:53.083462012+00:00,1 +2023-10-24 21:13:53.199028551+00:00,1 +2023-10-24 21:13:53.314769203+00:00,1 +2023-10-24 21:13:53.431351640+00:00,1 +2023-10-24 21:13:53.546684416+00:00,1 +2023-10-24 21:13:53.661824239+00:00,1 +2023-10-24 21:13:53.777825975+00:00,1 +2023-10-24 21:13:53.894191292+00:00,1 +2023-10-24 21:13:54.011608886+00:00,1 +2023-10-24 21:13:54.127724069+00:00,1 +2023-10-24 21:13:54.243222171+00:00,1 +2023-10-24 21:13:54.359144087+00:00,1 +2023-10-24 21:13:54.474990276+00:00,1 +2023-10-24 21:13:54.590888704+00:00,1 +2023-10-24 21:13:54.707301026+00:00,1 +2023-10-24 21:13:54.823518047+00:00,1 +2023-10-24 21:13:54.939869640+00:00,1 +2023-10-24 21:13:55.055703081+00:00,1 +2023-10-24 21:13:55.171927722+00:00,1 +2023-10-24 21:13:55.288188650+00:00,1 +2023-10-24 21:13:55.404358127+00:00,1 +2023-10-24 21:13:55.520008713+00:00,1 +2023-10-24 21:13:55.636264031+00:00,1 +2023-10-24 21:13:55.751304094+00:00,1 +2023-10-24 21:13:55.867499055+00:00,1 +2023-10-24 21:13:55.984187840+00:00,1 +2023-10-24 21:13:56.099283380+00:00,1 +2023-10-24 21:13:56.215710148+00:00,1 +2023-10-24 21:13:56.331863684+00:00,1 +2023-10-24 21:13:56.447288427+00:00,1 +2023-10-24 21:13:56.562733972+00:00,1 +2023-10-24 21:13:56.679847672+00:00,1 +2023-10-24 21:13:56.796365086+00:00,1 +2023-10-24 21:13:56.912525320+00:00,1 +2023-10-24 21:13:57.029263210+00:00,1 +2023-10-24 21:13:57.145215882+00:00,1 +2023-10-24 21:13:57.261108403+00:00,1 +2023-10-24 21:13:57.377657900+00:00,1 +2023-10-24 21:13:57.494208542+00:00,1 +2023-10-24 21:13:57.610658049+00:00,1 +2023-10-24 21:13:57.727026292+00:00,1 +2023-10-24 21:13:57.843193943+00:00,1 +2023-10-24 21:13:57.959388131+00:00,1 +2023-10-24 21:13:58.076737686+00:00,1 +2023-10-24 21:13:58.193173476+00:00,1 +2023-10-24 21:13:58.309635575+00:00,1 +2023-10-24 21:13:58.425923996+00:00,1 +2023-10-24 21:13:58.541411863+00:00,1 +2023-10-24 21:13:58.657676248+00:00,1 +2023-10-24 21:13:58.773803875+00:00,1 +2023-10-24 21:13:58.889628548+00:00,1 +2023-10-24 21:13:59.006753721+00:00,1 +2023-10-24 21:13:59.124093401+00:00,1 +2023-10-24 21:13:59.239415988+00:00,1 +2023-10-24 21:13:59.356080352+00:00,1 +2023-10-24 21:13:59.472541314+00:00,1 +2023-10-24 21:13:59.588711288+00:00,1 +2023-10-24 21:13:59.706495554+00:00,1 +2023-10-24 21:13:59.822721931+00:00,1 +2023-10-24 21:13:59.939126372+00:00,1 +2023-10-24 21:14:00.056040148+00:00,1 +2023-10-24 21:14:00.173148429+00:00,1 +2023-10-24 21:14:00.289291614+00:00,1 +2023-10-24 21:14:00.405292465+00:00,1 +2023-10-24 21:14:00.520831129+00:00,1 +2023-10-24 21:14:00.636898700+00:00,1 +2023-10-24 21:14:00.752766450+00:00,1 +2023-10-24 21:14:00.868600107+00:00,1 +2023-10-24 21:14:00.985609588+00:00,1 +2023-10-24 21:14:01.102001253+00:00,1 +2023-10-24 21:14:01.218272440+00:00,1 +2023-10-24 21:14:01.334978862+00:00,1 +2023-10-24 21:14:01.452200998+00:00,1 +2023-10-24 21:14:01.568469103+00:00,1 +2023-10-24 21:14:01.684498010+00:00,1 +2023-10-24 21:14:01.800291374+00:00,1 +2023-10-24 21:14:01.916262759+00:00,1 +2023-10-24 21:14:02.031942600+00:00,1 +2023-10-24 21:14:02.147284908+00:00,1 +2023-10-24 21:14:02.264279992+00:00,1 +2023-10-24 21:14:02.381516190+00:00,1 +2023-10-24 21:14:02.496872101+00:00,1 +2023-10-24 21:14:02.613410000+00:00,1 +2023-10-24 21:14:02.729534009+00:00,1 +2023-10-24 21:14:02.845712347+00:00,1 +2023-10-24 21:14:02.962086882+00:00,1 +2023-10-24 21:14:03.078340987+00:00,1 +2023-10-24 21:14:03.194609276+00:00,1 +2023-10-24 21:14:03.311097256+00:00,1 +2023-10-24 21:14:03.427823454+00:00,1 +2023-10-24 21:14:03.544168738+00:00,1 +2023-10-24 21:14:03.659393106+00:00,1 +2023-10-24 21:14:03.775195479+00:00,1 +2023-10-24 21:14:03.891369452+00:00,1 +2023-10-24 21:14:04.008830023+00:00,1 +2023-10-24 21:14:04.125120525+00:00,1 +2023-10-24 21:14:04.240310204+00:00,1 +2023-10-24 21:14:04.357696567+00:00,1 +2023-10-24 21:14:04.473720702+00:00,1 +2023-10-24 21:14:04.589371522+00:00,1 +2023-10-24 21:14:04.705966653+00:00,1 +2023-10-24 21:14:04.821586839+00:00,1 +2023-10-24 21:14:04.936792143+00:00,1 +2023-10-24 21:14:05.052268772+00:00,1 +2023-10-24 21:14:05.168241398+00:00,1 +2023-10-24 21:14:05.284346847+00:00,1 +2023-10-24 21:14:05.400125444+00:00,1 +2023-10-24 21:14:05.515709476+00:00,1 +2023-10-24 21:14:05.632629740+00:00,1 +2023-10-24 21:14:05.750396315+00:00,1 +2023-10-24 21:14:05.866200903+00:00,1 +2023-10-24 21:14:05.982404887+00:00,1 +2023-10-24 21:14:06.099440872+00:00,1 +2023-10-24 21:14:06.216346114+00:00,1 +2023-10-24 21:14:06.332161231+00:00,1 +2023-10-24 21:14:06.447811568+00:00,1 +2023-10-24 21:14:06.564952948+00:00,1 +2023-10-24 21:14:06.681500197+00:00,1 +2023-10-24 21:14:06.798863227+00:00,1 +2023-10-24 21:14:06.915506949+00:00,1 +2023-10-24 21:14:07.032201857+00:00,1 +2023-10-24 21:14:07.150092006+00:00,1 +2023-10-24 21:14:07.266682800+00:00,1 +2023-10-24 21:14:07.382880286+00:00,1 +2023-10-24 21:14:07.498673868+00:00,1 +2023-10-24 21:14:07.614089881+00:00,1 +2023-10-24 21:14:07.729669340+00:00,1 +2023-10-24 21:14:07.846524743+00:00,1 +2023-10-24 21:14:07.963520186+00:00,1 +2023-10-24 21:14:08.080221178+00:00,1 +2023-10-24 21:14:08.196423563+00:00,1 +2023-10-24 21:14:08.313868415+00:00,1 +2023-10-24 21:14:08.430157331+00:00,1 +2023-10-24 21:14:08.546099574+00:00,1 +2023-10-24 21:14:08.661835953+00:00,1 +2023-10-24 21:14:08.777878645+00:00,1 +2023-10-24 21:14:08.894529608+00:00,1 +2023-10-24 21:14:09.011031027+00:00,1 +2023-10-24 21:14:09.128133855+00:00,1 +2023-10-24 21:14:09.245226442+00:00,1 +2023-10-24 21:14:09.361250808+00:00,1 +2023-10-24 21:14:09.477260218+00:00,1 +2023-10-24 21:14:09.594501126+00:00,1 +2023-10-24 21:14:09.711647011+00:00,1 +2023-10-24 21:14:09.827987207+00:00,1 +2023-10-24 21:14:09.943180710+00:00,1 +2023-10-24 21:14:10.059627864+00:00,1 +2023-10-24 21:14:10.175024033+00:00,1 +2023-10-24 21:14:10.291213438+00:00,1 +2023-10-24 21:14:10.407449047+00:00,1 +2023-10-24 21:14:10.523748074+00:00,1 +2023-10-24 21:14:10.639105239+00:00,1 +2023-10-24 21:14:10.755936379+00:00,1 +2023-10-24 21:14:10.873703027+00:00,1 +2023-10-24 21:14:10.990456827+00:00,1 +2023-10-24 21:14:11.106744561+00:00,1 +2023-10-24 21:14:11.222213404+00:00,1 +2023-10-24 21:14:11.339413245+00:00,1 +2023-10-24 21:14:11.456289137+00:00,1 +2023-10-24 21:14:11.573402069+00:00,1 +2023-10-24 21:14:11.689461332+00:00,1 +2023-10-24 21:14:11.806260711+00:00,1 +2023-10-24 21:14:11.921864141+00:00,1 +2023-10-24 21:14:12.038695955+00:00,1 +2023-10-24 21:14:12.153683753+00:00,1 +2023-10-24 21:14:12.270482645+00:00,1 +2023-10-24 21:14:12.387191419+00:00,1 +2023-10-24 21:14:12.502997807+00:00,1 +2023-10-24 21:14:12.619840971+00:00,1 +2023-10-24 21:14:12.735920105+00:00,1 +2023-10-24 21:14:12.852404443+00:00,1 +2023-10-24 21:14:12.969363102+00:00,1 +2023-10-24 21:14:13.086018564+00:00,1 +2023-10-24 21:14:13.203029802+00:00,1 +2023-10-24 21:14:13.319995040+00:00,1 +2023-10-24 21:14:13.436209195+00:00,1 +2023-10-24 21:14:13.552318845+00:00,1 +2023-10-24 21:14:13.667908908+00:00,1 +2023-10-24 21:14:13.784065906+00:00,1 +2023-10-24 21:14:13.900113371+00:00,1 +2023-10-24 21:14:14.015562638+00:00,1 +2023-10-24 21:14:14.131219743+00:00,1 +2023-10-24 21:14:14.246349324+00:00,1 +2023-10-24 21:14:14.361772783+00:00,1 +2023-10-24 21:14:14.477789540+00:00,1 +2023-10-24 21:14:14.593977310+00:00,1 +2023-10-24 21:14:14.711028800+00:00,1 +2023-10-24 21:14:14.826482526+00:00,1 +2023-10-24 21:14:14.942637307+00:00,1 +2023-10-24 21:14:15.059980668+00:00,1 +2023-10-24 21:14:15.175691559+00:00,1 +2023-10-24 21:14:15.291038518+00:00,1 +2023-10-24 21:14:15.407122156+00:00,1 +2023-10-24 21:14:15.522962462+00:00,1 +2023-10-24 21:14:15.639683056+00:00,1 +2023-10-24 21:14:15.755397345+00:00,1 +2023-10-24 21:14:15.872608039+00:00,1 +2023-10-24 21:14:15.989057480+00:00,1 +2023-10-24 21:14:16.104358195+00:00,1 +2023-10-24 21:14:16.220395920+00:00,1 +2023-10-24 21:14:16.335845466+00:00,1 +2023-10-24 21:14:16.451425915+00:00,1 +2023-10-24 21:14:16.567349561+00:00,1 +2023-10-24 21:14:16.684541148+00:00,1 +2023-10-24 21:14:16.801107868+00:00,1 +2023-10-24 21:14:16.916321352+00:00,1 +2023-10-24 21:14:17.032144242+00:00,1 +2023-10-24 21:14:17.148521828+00:00,1 +2023-10-24 21:14:17.265406498+00:00,1 +2023-10-24 21:14:17.381268244+00:00,1 +2023-10-24 21:14:17.496985848+00:00,1 +2023-10-24 21:14:17.612529102+00:00,1 +2023-10-24 21:14:17.728785349+00:00,1 +2023-10-24 21:14:17.845485577+00:00,1 +2023-10-24 21:14:17.963215144+00:00,1 +2023-10-24 21:14:18.080040118+00:00,1 +2023-10-24 21:14:18.196393533+00:00,1 +2023-10-24 21:14:18.311962031+00:00,1 +2023-10-24 21:14:18.430752508+00:00,1 +2023-10-24 21:14:18.547208101+00:00,1 +2023-10-24 21:14:18.663934187+00:00,1 +2023-10-24 21:14:18.780172106+00:00,1 +2023-10-24 21:14:18.896526493+00:00,1 +2023-10-24 21:14:19.012587312+00:00,1 +2023-10-24 21:14:19.128473223+00:00,1 +2023-10-24 21:14:19.244855577+00:00,1 +2023-10-24 21:14:19.361646242+00:00,1 +2023-10-24 21:14:19.479391155+00:00,1 +2023-10-24 21:14:19.596342348+00:00,1 +2023-10-24 21:14:19.712398950+00:00,1 +2023-10-24 21:14:19.829100098+00:00,1 +2023-10-24 21:14:19.946073762+00:00,1 +2023-10-24 21:14:20.062551866+00:00,1 +2023-10-24 21:14:20.177904930+00:00,1 +2023-10-24 21:14:20.293834253+00:00,1 +2023-10-24 21:14:20.409834022+00:00,1 +2023-10-24 21:14:20.526705406+00:00,1 +2023-10-24 21:14:20.643388468+00:00,1 +2023-10-24 21:14:20.760243445+00:00,1 +2023-10-24 21:14:20.876926609+00:00,1 +2023-10-24 21:14:20.993231349+00:00,1 +2023-10-24 21:14:21.110309950+00:00,1 +2023-10-24 21:14:21.226921903+00:00,1 +2023-10-24 21:14:21.343425257+00:00,1 +2023-10-24 21:14:21.460131296+00:00,1 +2023-10-24 21:14:21.577429121+00:00,1 +2023-10-24 21:14:21.693484574+00:00,1 +2023-10-24 21:14:21.810549388+00:00,1 +2023-10-24 21:14:21.926642497+00:00,1 +2023-10-24 21:14:22.043797392+00:00,1 +2023-10-24 21:14:22.159771057+00:00,1 +2023-10-24 21:14:22.276082947+00:00,1 +2023-10-24 21:14:22.392254550+00:00,1 +2023-10-24 21:14:22.509088583+00:00,1 +2023-10-24 21:14:22.626593600+00:00,1 +2023-10-24 21:14:22.742587954+00:00,1 +2023-10-24 21:14:22.858196442+00:00,1 +2023-10-24 21:14:22.974790041+00:00,1 +2023-10-24 21:14:23.091532128+00:00,1 +2023-10-24 21:14:23.207925907+00:00,1 +2023-10-24 21:14:23.323695406+00:00,1 +2023-10-24 21:14:23.440860738+00:00,1 +2023-10-24 21:14:23.556483972+00:00,1 +2023-10-24 21:14:23.672351469+00:00,1 +2023-10-24 21:14:23.788492511+00:00,1 +2023-10-24 21:14:23.905454137+00:00,1 +2023-10-24 21:14:24.022049167+00:00,1 +2023-10-24 21:14:24.137683714+00:00,1 +2023-10-24 21:14:24.253308149+00:00,1 +2023-10-24 21:14:24.369573726+00:00,1 +2023-10-24 21:14:24.486460343+00:00,1 +2023-10-24 21:14:24.603729134+00:00,1 +2023-10-24 21:14:24.719600575+00:00,1 +2023-10-24 21:14:24.835269731+00:00,1 +2023-10-24 21:14:24.956280236+00:00,1 +2023-10-24 21:14:25.072031096+00:00,1 +2023-10-24 21:14:25.188742393+00:00,1 +2023-10-24 21:14:25.304578731+00:00,1 +2023-10-24 21:14:25.421306019+00:00,1 +2023-10-24 21:14:25.537550559+00:00,1 +2023-10-24 21:14:25.655510007+00:00,1 +2023-10-24 21:14:25.772511815+00:00,1 +2023-10-24 21:14:25.888585166+00:00,1 +2023-10-24 21:14:26.004955041+00:00,1 +2023-10-24 21:14:26.121073284+00:00,1 +2023-10-24 21:14:26.236926677+00:00,1 +2023-10-24 21:14:26.352821455+00:00,1 +2023-10-24 21:14:26.468655566+00:00,1 +2023-10-24 21:14:26.584576573+00:00,1 +2023-10-24 21:14:26.700886508+00:00,1 +2023-10-24 21:14:26.817829045+00:00,1 +2023-10-24 21:14:26.934237723+00:00,1 +2023-10-24 21:14:27.050299739+00:00,1 +2023-10-24 21:14:27.166033212+00:00,1 +2023-10-24 21:14:27.281483761+00:00,1 +2023-10-24 21:14:27.397165629+00:00,1 +2023-10-24 21:14:27.512948749+00:00,1 +2023-10-24 21:14:27.629158789+00:00,1 +2023-10-24 21:14:27.745761130+00:00,1 +2023-10-24 21:14:27.862191835+00:00,1 +2023-10-24 21:14:27.977346767+00:00,1 +2023-10-24 21:14:28.092758842+00:00,1 +2023-10-24 21:14:28.208819551+00:00,1 +2023-10-24 21:14:28.324631316+00:00,1 +2023-10-24 21:14:28.442495472+00:00,1 +2023-10-24 21:14:28.558874763+00:00,1 +2023-10-24 21:14:28.674888915+00:00,1 +2023-10-24 21:14:28.791499232+00:00,1 +2023-10-24 21:14:28.908346757+00:00,1 +2023-10-24 21:14:29.025102659+00:00,1 +2023-10-24 21:14:29.141484956+00:00,1 +2023-10-24 21:14:29.257686129+00:00,1 +2023-10-24 21:14:29.374013206+00:00,1 +2023-10-24 21:14:29.489949517+00:00,1 +2023-10-24 21:14:29.606280116+00:00,1 +2023-10-24 21:14:29.723851322+00:00,1 +2023-10-24 21:14:29.839958019+00:00,1 +2023-10-24 21:14:29.956058029+00:00,1 +2023-10-24 21:14:30.072555041+00:00,1 +2023-10-24 21:14:30.188938294+00:00,1 +2023-10-24 21:14:30.304890789+00:00,1 +2023-10-24 21:14:30.422270836+00:00,1 +2023-10-24 21:14:30.538511037+00:00,1 +2023-10-24 21:14:30.654845720+00:00,1 +2023-10-24 21:14:30.770826381+00:00,1 +2023-10-24 21:14:30.887339126+00:00,1 +2023-10-24 21:14:31.003266190+00:00,1 +2023-10-24 21:14:31.118978836+00:00,1 +2023-10-24 21:14:31.235940057+00:00,1 +2023-10-24 21:14:31.352327224+00:00,1 +2023-10-24 21:14:31.469464139+00:00,1 +2023-10-24 21:14:31.586794185+00:00,1 +2023-10-24 21:14:31.702882340+00:00,1 +2023-10-24 21:14:31.819771074+00:00,1 +2023-10-24 21:14:31.936725368+00:00,1 +2023-10-24 21:14:32.053056758+00:00,1 +2023-10-24 21:14:32.169333716+00:00,1 +2023-10-24 21:14:32.286054473+00:00,1 +2023-10-24 21:14:32.402088309+00:00,1 +2023-10-24 21:14:32.517784863+00:00,1 +2023-10-24 21:14:32.633964994+00:00,1 +2023-10-24 21:14:32.750210678+00:00,1 +2023-10-24 21:14:32.866747652+00:00,1 +2023-10-24 21:14:32.984153002+00:00,1 +2023-10-24 21:14:33.100673259+00:00,1 +2023-10-24 21:14:33.217630270+00:00,1 +2023-10-24 21:14:33.333391202+00:00,1 +2023-10-24 21:14:33.450736129+00:00,1 +2023-10-24 21:14:33.566465935+00:00,1 +2023-10-24 21:14:33.682655565+00:00,1 +2023-10-24 21:14:33.799015091+00:00,1 +2023-10-24 21:14:33.916083610+00:00,1 +2023-10-24 21:14:34.032214310+00:00,1 +2023-10-24 21:14:34.149377224+00:00,1 +2023-10-24 21:14:34.265159355+00:00,1 +2023-10-24 21:14:34.381520528+00:00,1 +2023-10-24 21:14:34.497864670+00:00,1 +2023-10-24 21:14:34.614069743+00:00,1 +2023-10-24 21:14:34.730254654+00:00,1 +2023-10-24 21:14:34.847111331+00:00,1 +2023-10-24 21:14:34.964152493+00:00,1 +2023-10-24 21:14:35.080671108+00:00,1 +2023-10-24 21:14:35.197290735+00:00,1 +2023-10-24 21:14:35.314621655+00:00,1 +2023-10-24 21:14:35.430671784+00:00,1 +2023-10-24 21:14:35.547008040+00:00,1 +2023-10-24 21:14:35.663247232+00:00,1 +2023-10-24 21:14:35.779790443+00:00,1 +2023-10-24 21:14:35.895191074+00:00,1 +2023-10-24 21:14:36.011306568+00:00,1 +2023-10-24 21:14:36.128238090+00:00,1 +2023-10-24 21:14:36.244414313+00:00,1 +2023-10-24 21:14:36.361113816+00:00,1 +2023-10-24 21:14:36.479218020+00:00,1 +2023-10-24 21:14:36.595535840+00:00,1 +2023-10-24 21:14:36.711359542+00:00,1 +2023-10-24 21:14:36.827875921+00:00,1 +2023-10-24 21:14:36.945217828+00:00,1 +2023-10-24 21:14:37.062400194+00:00,1 +2023-10-24 21:14:37.178795784+00:00,1 +2023-10-24 21:14:37.295155992+00:00,1 +2023-10-24 21:14:37.411261101+00:00,1 +2023-10-24 21:14:37.528017263+00:00,1 +2023-10-24 21:14:37.645776112+00:00,1 +2023-10-24 21:14:37.761930528+00:00,1 +2023-10-24 21:14:37.878317104+00:00,1 +2023-10-24 21:14:37.994420623+00:00,1 +2023-10-24 21:14:38.110703863+00:00,1 +2023-10-24 21:14:38.226850409+00:00,1 +2023-10-24 21:14:38.344011114+00:00,1 +2023-10-24 21:14:38.461442054+00:00,1 +2023-10-24 21:14:38.580127982+00:00,1 +2023-10-24 21:14:38.697279515+00:00,1 +2023-10-24 21:14:38.814014327+00:00,1 +2023-10-24 21:14:38.930367689+00:00,1 +2023-10-24 21:14:39.046765965+00:00,1 +2023-10-24 21:14:39.162867668+00:00,1 +2023-10-24 21:14:39.278604033+00:00,1 +2023-10-24 21:14:39.394492208+00:00,1 +2023-10-24 21:14:39.511341232+00:00,1 +2023-10-24 21:14:39.627648696+00:00,1 +2023-10-24 21:14:39.744406561+00:00,1 +2023-10-24 21:14:39.861241206+00:00,1 +2023-10-24 21:14:39.978288932+00:00,1 +2023-10-24 21:14:40.094680558+00:00,1 +2023-10-24 21:14:40.210721077+00:00,1 +2023-10-24 21:14:40.326285588+00:00,1 +2023-10-24 21:14:40.442820794+00:00,1 +2023-10-24 21:14:40.559500483+00:00,1 +2023-10-24 21:14:40.677479506+00:00,1 +2023-10-24 21:14:40.793664216+00:00,1 +2023-10-24 21:14:40.909756494+00:00,1 +2023-10-24 21:14:41.025334729+00:00,1 +2023-10-24 21:14:41.141465961+00:00,1 +2023-10-24 21:14:41.258302850+00:00,1 +2023-10-24 21:14:41.375635169+00:00,1 +2023-10-24 21:14:41.492157644+00:00,1 +2023-10-24 21:14:41.608530648+00:00,1 +2023-10-24 21:14:41.725487658+00:00,1 +2023-10-24 21:14:41.841472217+00:00,1 +2023-10-24 21:14:41.957433677+00:00,1 +2023-10-24 21:14:42.074078828+00:00,1 +2023-10-24 21:14:42.190107018+00:00,1 +2023-10-24 21:14:42.307257523+00:00,1 +2023-10-24 21:14:42.423759780+00:00,1 +2023-10-24 21:14:42.540688127+00:00,1 +2023-10-24 21:14:42.657743863+00:00,1 +2023-10-24 21:14:42.774240256+00:00,1 +2023-10-24 21:14:42.890224182+00:00,1 +2023-10-24 21:14:43.006143337+00:00,1 +2023-10-24 21:14:43.123516352+00:00,1 +2023-10-24 21:14:43.240060063+00:00,1 +2023-10-24 21:14:43.356370001+00:00,1 +2023-10-24 21:14:43.473778447+00:00,1 +2023-10-24 21:14:43.590558261+00:00,1 +2023-10-24 21:14:43.706290118+00:00,1 +2023-10-24 21:14:43.821821352+00:00,1 +2023-10-24 21:14:43.938160088+00:00,1 +2023-10-24 21:14:44.054604054+00:00,1 +2023-10-24 21:14:44.171070128+00:00,1 +2023-10-24 21:14:44.288350081+00:00,1 +2023-10-24 21:14:44.404558115+00:00,1 +2023-10-24 21:14:44.521455434+00:00,1 +2023-10-24 21:14:44.637733844+00:00,1 +2023-10-24 21:14:44.754055290+00:00,1 +2023-10-24 21:14:44.871478501+00:00,1 +2023-10-24 21:14:44.988998179+00:00,1 +2023-10-24 21:14:45.104977907+00:00,1 +2023-10-24 21:14:45.220960428+00:00,1 +2023-10-24 21:14:45.336530248+00:00,1 +2023-10-24 21:14:45.451764556+00:00,1 +2023-10-24 21:14:45.568576240+00:00,1 +2023-10-24 21:14:45.685397879+00:00,1 +2023-10-24 21:14:45.801555701+00:00,1 +2023-10-24 21:14:45.918934341+00:00,1 +2023-10-24 21:14:46.034495776+00:00,1 +2023-10-24 21:14:46.151194755+00:00,1 +2023-10-24 21:14:46.267947534+00:00,1 +2023-10-24 21:14:46.384538093+00:00,1 +2023-10-24 21:14:46.500777735+00:00,1 +2023-10-24 21:14:46.617652210+00:00,1 +2023-10-24 21:14:46.733961666+00:00,1 +2023-10-24 21:14:46.849949988+00:00,1 +2023-10-24 21:14:46.966263645+00:00,1 +2023-10-24 21:14:47.082700021+00:00,1 +2023-10-24 21:14:47.199212821+00:00,1 +2023-10-24 21:14:47.314934591+00:00,1 +2023-10-24 21:14:47.432432853+00:00,1 +2023-10-24 21:14:47.549124581+00:00,1 +2023-10-24 21:14:47.665799179+00:00,1 +2023-10-24 21:14:47.782410769+00:00,1 +2023-10-24 21:14:47.897742507+00:00,1 +2023-10-24 21:14:48.013231407+00:00,1 +2023-10-24 21:14:48.128303907+00:00,1 +2023-10-24 21:14:48.244249623+00:00,1 +2023-10-24 21:14:48.360073491+00:00,1 +2023-10-24 21:14:48.475915178+00:00,1 +2023-10-24 21:14:48.592058341+00:00,1 +2023-10-24 21:14:48.707504719+00:00,1 +2023-10-24 21:14:48.824203938+00:00,1 +2023-10-24 21:14:48.940122404+00:00,1 +2023-10-24 21:14:49.056568114+00:00,1 +2023-10-24 21:14:49.174125263+00:00,1 +2023-10-24 21:14:49.290472189+00:00,1 +2023-10-24 21:14:49.406067775+00:00,1 +2023-10-24 21:14:49.522173404+00:00,1 +2023-10-24 21:14:49.638580567+00:00,1 +2023-10-24 21:14:49.755041322+00:00,1 +2023-10-24 21:14:49.870873590+00:00,1 +2023-10-24 21:14:49.986816919+00:00,1 +2023-10-24 21:14:50.102027229+00:00,1 +2023-10-24 21:14:50.217181182+00:00,1 +2023-10-24 21:14:50.332842644+00:00,1 +2023-10-24 21:14:50.447978078+00:00,1 +2023-10-24 21:14:50.563769313+00:00,1 +2023-10-24 21:14:50.680227189+00:00,1 +2023-10-24 21:14:50.797181248+00:00,1 +2023-10-24 21:14:50.914792386+00:00,1 +2023-10-24 21:14:51.030866744+00:00,1 +2023-10-24 21:14:51.146904255+00:00,1 +2023-10-24 21:14:51.263079177+00:00,1 +2023-10-24 21:14:51.378847269+00:00,1 +2023-10-24 21:14:51.495692387+00:00,1 +2023-10-24 21:14:51.611844843+00:00,1 +2023-10-24 21:14:51.728274128+00:00,1 +2023-10-24 21:14:51.843932246+00:00,1 +2023-10-24 21:14:51.960880858+00:00,1 +2023-10-24 21:14:52.076904046+00:00,1 +2023-10-24 21:14:52.193536625+00:00,1 +2023-10-24 21:14:52.310169347+00:00,1 +2023-10-24 21:14:52.426012141+00:00,1 +2023-10-24 21:14:52.542165939+00:00,1 +2023-10-24 21:14:52.658783010+00:00,1 +2023-10-24 21:14:52.774688784+00:00,1 +2023-10-24 21:14:52.891331581+00:00,1 +2023-10-24 21:14:53.008116837+00:00,1 +2023-10-24 21:14:53.124047602+00:00,1 +2023-10-24 21:14:53.241626707+00:00,1 +2023-10-24 21:14:53.357483803+00:00,1 +2023-10-24 21:14:53.473491920+00:00,1 +2023-10-24 21:14:53.590524800+00:00,1 +2023-10-24 21:14:53.706252830+00:00,1 +2023-10-24 21:14:53.823539582+00:00,1 +2023-10-24 21:14:53.939716280+00:00,1 +2023-10-24 21:14:54.056487124+00:00,1 +2023-10-24 21:14:54.172455520+00:00,1 +2023-10-24 21:14:54.288406179+00:00,1 +2023-10-24 21:14:54.404430115+00:00,1 +2023-10-24 21:14:54.519845314+00:00,1 +2023-10-24 21:14:54.636132720+00:00,1 +2023-10-24 21:14:54.751173650+00:00,1 +2023-10-24 21:14:54.867424344+00:00,1 +2023-10-24 21:14:54.982849753+00:00,1 +2023-10-24 21:14:55.098642795+00:00,1 +2023-10-24 21:14:55.214358760+00:00,1 +2023-10-24 21:14:55.330010035+00:00,1 +2023-10-24 21:14:55.446944965+00:00,1 +2023-10-24 21:14:55.562981577+00:00,1 +2023-10-24 21:14:55.679426900+00:00,1 +2023-10-24 21:14:55.795307774+00:00,1 +2023-10-24 21:14:55.911411175+00:00,1 +2023-10-24 21:14:56.027422069+00:00,1 +2023-10-24 21:14:56.143875532+00:00,1 +2023-10-24 21:14:56.259952369+00:00,1 +2023-10-24 21:14:56.376530385+00:00,1 +2023-10-24 21:14:56.492975609+00:00,1 +2023-10-24 21:14:56.609221659+00:00,1 +2023-10-24 21:14:56.725217722+00:00,1 +2023-10-24 21:14:56.841237473+00:00,1 +2023-10-24 21:14:56.957374285+00:00,1 +2023-10-24 21:14:57.073430959+00:00,1 +2023-10-24 21:14:57.189748584+00:00,1 +2023-10-24 21:14:57.305729257+00:00,1 +2023-10-24 21:14:57.422013095+00:00,1 +2023-10-24 21:14:57.537637653+00:00,1 +2023-10-24 21:14:57.655477743+00:00,1 +2023-10-24 21:14:57.771461124+00:00,1 +2023-10-24 21:14:57.888038103+00:00,1 +2023-10-24 21:14:58.004659481+00:00,1 +2023-10-24 21:14:58.121495504+00:00,1 +2023-10-24 21:14:58.237843283+00:00,1 +2023-10-24 21:14:58.354963219+00:00,1 +2023-10-24 21:14:58.470878027+00:00,1 +2023-10-24 21:14:58.587803659+00:00,1 +2023-10-24 21:14:58.703345230+00:00,1 +2023-10-24 21:14:58.819013611+00:00,1 +2023-10-24 21:14:58.935253934+00:00,1 +2023-10-24 21:14:59.051538663+00:00,1 +2023-10-24 21:14:59.167470697+00:00,1 +2023-10-24 21:14:59.284262655+00:00,1 +2023-10-24 21:14:59.400290666+00:00,1 +2023-10-24 21:14:59.515828669+00:00,1 +2023-10-24 21:14:59.632009178+00:00,1 +2023-10-24 21:14:59.747207878+00:00,1 +2023-10-24 21:14:59.863740078+00:00,1 +2023-10-24 21:14:59.980031012+00:00,1 +2023-10-24 21:15:00.096359022+00:00,1 +2023-10-24 21:15:00.212023811+00:00,1 +2023-10-24 21:15:00.328027123+00:00,1 +2023-10-24 21:15:00.443867047+00:00,1 +2023-10-24 21:15:00.559549893+00:00,1 +2023-10-24 21:15:00.675243682+00:00,1 +2023-10-24 21:15:00.791287868+00:00,1 +2023-10-24 21:15:00.906701518+00:00,1 +2023-10-24 21:15:01.023881707+00:00,1 +2023-10-24 21:15:01.139821810+00:00,1 +2023-10-24 21:15:01.255724433+00:00,1 +2023-10-24 21:15:01.371678199+00:00,1 +2023-10-24 21:15:01.488899968+00:00,1 +2023-10-24 21:15:01.604688852+00:00,1 +2023-10-24 21:15:01.720352754+00:00,1 +2023-10-24 21:15:01.837033554+00:00,1 +2023-10-24 21:15:01.952990990+00:00,1 +2023-10-24 21:15:02.071917840+00:00,1 +2023-10-24 21:15:02.187861333+00:00,1 +2023-10-24 21:15:02.304153820+00:00,1 +2023-10-24 21:15:02.421320762+00:00,1 +2023-10-24 21:15:02.537676107+00:00,1 +2023-10-24 21:15:02.653861055+00:00,1 +2023-10-24 21:15:02.769531403+00:00,1 +2023-10-24 21:15:02.885879887+00:00,1 +2023-10-24 21:15:03.002751741+00:00,1 +2023-10-24 21:15:03.119949968+00:00,1 +2023-10-24 21:15:03.236216342+00:00,1 +2023-10-24 21:15:03.353592217+00:00,1 +2023-10-24 21:15:03.470503386+00:00,1 +2023-10-24 21:15:03.587974584+00:00,1 +2023-10-24 21:15:03.704238743+00:00,1 +2023-10-24 21:15:03.822434550+00:00,1 +2023-10-24 21:15:03.938212690+00:00,1 +2023-10-24 21:15:04.053584108+00:00,1 +2023-10-24 21:15:04.170062029+00:00,1 +2023-10-24 21:15:04.285878504+00:00,1 +2023-10-24 21:15:04.402782577+00:00,1 +2023-10-24 21:15:04.518501288+00:00,1 +2023-10-24 21:15:04.634478668+00:00,1 +2023-10-24 21:15:04.750782463+00:00,1 +2023-10-24 21:15:04.867235670+00:00,1 +2023-10-24 21:15:04.983385550+00:00,1 +2023-10-24 21:15:05.099343972+00:00,1 +2023-10-24 21:15:05.214919397+00:00,1 +2023-10-24 21:15:05.331749812+00:00,1 +2023-10-24 21:15:05.447780776+00:00,1 +2023-10-24 21:15:05.564756732+00:00,1 +2023-10-24 21:15:05.681394422+00:00,1 +2023-10-24 21:15:05.796869460+00:00,1 +2023-10-24 21:15:05.913759192+00:00,1 +2023-10-24 21:15:06.029747683+00:00,1 +2023-10-24 21:15:06.146279493+00:00,1 +2023-10-24 21:15:06.263177677+00:00,1 +2023-10-24 21:15:06.378275333+00:00,1 +2023-10-24 21:15:06.493788639+00:00,1 +2023-10-24 21:15:06.609655853+00:00,1 +2023-10-24 21:15:06.725097583+00:00,1 +2023-10-24 21:15:06.840838726+00:00,1 +2023-10-24 21:15:06.957057008+00:00,1 +2023-10-24 21:15:07.074007125+00:00,1 +2023-10-24 21:15:07.189680874+00:00,1 +2023-10-24 21:15:07.305856800+00:00,1 +2023-10-24 21:15:07.421153685+00:00,1 +2023-10-24 21:15:07.536640958+00:00,1 +2023-10-24 21:15:07.652214307+00:00,1 +2023-10-24 21:15:07.767997598+00:00,1 +2023-10-24 21:15:07.883346442+00:00,1 +2023-10-24 21:15:07.998623046+00:00,1 +2023-10-24 21:15:08.114081810+00:00,1 +2023-10-24 21:15:08.229159820+00:00,1 +2023-10-24 21:15:08.343937181+00:00,1 +2023-10-24 21:15:09.490029854+00:00,1 +2023-10-24 21:15:09.605420494+00:00,1 +2023-10-24 21:15:09.720835316+00:00,1 +2023-10-24 21:15:09.835404058+00:00,1 +2023-10-24 21:15:09.949593598+00:00,1 +2023-10-24 21:15:10.065027688+00:00,1 +2023-10-24 21:15:10.181125401+00:00,1 +2023-10-24 21:15:10.295946504+00:00,1 +2023-10-24 21:15:10.410765907+00:00,1 +2023-10-24 21:15:10.525646096+00:00,1 +2023-10-24 21:15:10.641347117+00:00,1 +2023-10-24 21:15:10.757126927+00:00,1 +2023-10-24 21:15:10.872305708+00:00,1 +2023-10-24 21:15:10.986958424+00:00,1 +2023-10-24 21:15:18.233351824+00:00,1 +2023-10-24 21:15:18.348341729+00:00,1 +2023-10-24 21:15:18.463264427+00:00,1 +2023-10-24 21:15:18.579132166+00:00,1 +2023-10-24 21:15:18.694667857+00:00,1 +2023-10-24 21:15:18.810442673+00:00,1 +2023-10-24 21:15:18.925925942+00:00,1 +2023-10-24 21:15:19.044161584+00:00,1 +2023-10-24 21:15:19.159432388+00:00,1 +2023-10-24 21:15:19.275184371+00:00,1 +2023-10-24 21:15:19.390274091+00:00,1 +2023-10-24 21:15:19.505281957+00:00,1 +2023-10-24 21:15:19.621986260+00:00,1 +2023-10-24 21:15:19.737617190+00:00,1 +2023-10-24 21:15:19.853145936+00:00,1 +2023-10-24 21:15:19.968890504+00:00,1 +2023-10-24 21:15:20.084511649+00:00,1 +2023-10-24 21:15:20.200306276+00:00,1 +2023-10-24 21:15:20.314807524+00:00,1 +2023-10-24 21:15:20.429317773+00:00,1 +2023-10-24 21:15:20.545094236+00:00,1 +2023-10-24 21:15:20.661056324+00:00,1 +2023-10-24 21:15:20.775225767+00:00,1 +2023-10-24 21:15:20.890584290+00:00,1 +2023-10-24 21:15:36.473366366+00:00,1 +2023-10-24 21:15:36.589605679+00:00,1 +2023-10-24 21:15:36.705537986+00:00,1 +2023-10-24 21:15:36.821756950+00:00,1 +2023-10-24 21:15:36.938146129+00:00,1 +2023-10-24 21:15:37.054601612+00:00,1 +2023-10-24 21:15:37.170842039+00:00,1 +2023-10-24 21:15:37.287224139+00:00,1 +2023-10-24 21:15:37.403092621+00:00,1 +2023-10-24 21:15:37.519338298+00:00,1 +2023-10-24 21:15:37.635085098+00:00,1 +2023-10-24 21:15:37.751484586+00:00,1 +2023-10-24 21:15:37.867207058+00:00,1 +2023-10-24 21:15:37.983125983+00:00,1 +2023-10-24 21:15:38.099256140+00:00,1 +2023-10-24 21:15:38.215441149+00:00,1 +2023-10-24 21:15:38.331095314+00:00,1 +2023-10-24 21:15:38.446964445+00:00,1 +2023-10-24 21:15:38.562770835+00:00,1 +2023-10-24 21:15:38.678736589+00:00,1 +2023-10-24 21:15:38.793725343+00:00,1 +2023-10-24 21:15:38.909746259+00:00,1 +2023-10-24 21:15:39.026805148+00:00,1 +2023-10-24 21:15:39.142194045+00:00,1 +2023-10-24 21:15:39.257456542+00:00,1 +2023-10-24 21:15:39.373049866+00:00,1 +2023-10-24 21:15:39.488573738+00:00,1 +2023-10-24 21:15:39.603942993+00:00,1 +2023-10-24 21:15:39.720141024+00:00,1 +2023-10-24 21:15:39.835556126+00:00,1 +2023-10-24 21:15:39.951629826+00:00,1 +2023-10-24 21:15:40.066524883+00:00,1 +2023-10-24 21:15:40.182260293+00:00,1 +2023-10-24 21:15:40.297531263+00:00,1 +2023-10-24 21:15:40.413623304+00:00,1 +2023-10-24 21:15:40.529899836+00:00,1 +2023-10-24 21:15:40.645569923+00:00,1 +2023-10-24 21:15:40.761050935+00:00,1 +2023-10-24 21:15:40.876858880+00:00,1 +2023-10-24 21:15:40.992495794+00:00,1 +2023-10-24 21:15:41.108070408+00:00,1 +2023-10-24 21:15:41.223852930+00:00,1 +2023-10-24 21:15:41.339733483+00:00,1 +2023-10-24 21:15:41.455981474+00:00,1 +2023-10-24 21:15:41.572028715+00:00,1 +2023-10-24 21:15:41.686984263+00:00,1 +2023-10-24 21:15:41.802106931+00:00,1 +2023-10-24 21:15:41.918444718+00:00,1 +2023-10-24 21:15:42.033741849+00:00,1 +2023-10-24 21:15:42.149891894+00:00,1 +2023-10-24 21:15:42.265964614+00:00,1 +2023-10-24 21:15:42.381650113+00:00,1 +2023-10-24 21:15:42.497322193+00:00,1 +2023-10-24 21:15:42.613065009+00:00,1 +2023-10-24 21:15:42.729003601+00:00,1 +2023-10-24 21:15:42.845055994+00:00,1 +2023-10-24 21:15:42.962243468+00:00,1 +2023-10-24 21:15:43.078441730+00:00,1 +2023-10-24 21:15:43.194485581+00:00,1 +2023-10-24 21:15:43.310623063+00:00,1 +2023-10-24 21:15:43.426109121+00:00,1 +2023-10-24 21:15:43.541683533+00:00,1 +2023-10-24 21:15:43.657636434+00:00,1 +2023-10-24 21:15:43.773120189+00:00,1 +2023-10-24 21:15:43.888502269+00:00,1 +2023-10-24 21:15:44.005059436+00:00,1 +2023-10-24 21:15:44.119897577+00:00,1 +2023-10-24 21:15:44.235935646+00:00,1 +2023-10-24 21:15:44.351733891+00:00,1 +2023-10-24 21:15:44.468056320+00:00,1 +2023-10-24 21:15:44.584064812+00:00,1 +2023-10-24 21:15:44.699492567+00:00,1 +2023-10-24 21:15:44.815737543+00:00,1 +2023-10-24 21:15:44.931862384+00:00,1 +2023-10-24 21:15:45.047770317+00:00,1 +2023-10-24 21:15:45.164110987+00:00,1 +2023-10-24 21:15:45.279358109+00:00,1 +2023-10-24 21:15:45.394758724+00:00,1 +2023-10-24 21:15:45.511637580+00:00,1 +2023-10-24 21:15:45.628615321+00:00,1 +2023-10-24 21:15:45.744268289+00:00,1 +2023-10-24 21:15:45.859929955+00:00,1 +2023-10-24 21:15:45.975984230+00:00,1 +2023-10-24 21:15:46.092470548+00:00,1 +2023-10-24 21:15:46.208315418+00:00,1 +2023-10-24 21:15:46.323391531+00:00,1 +2023-10-24 21:15:46.439418887+00:00,1 +2023-10-24 21:15:46.556288825+00:00,1 +2023-10-24 21:15:46.671311721+00:00,1 +2023-10-24 21:15:46.786564761+00:00,1 +2023-10-24 21:15:46.902627220+00:00,1 +2023-10-24 21:15:47.018365213+00:00,1 +2023-10-24 21:15:47.133729710+00:00,1 +2023-10-24 21:15:47.249555320+00:00,1 +2023-10-24 21:15:47.364637966+00:00,1 +2023-10-24 21:15:47.480603892+00:00,1 +2023-10-24 21:15:47.596026809+00:00,1 +2023-10-24 21:15:47.712934742+00:00,1 +2023-10-24 21:15:47.829375019+00:00,1 +2023-10-24 21:15:47.944665896+00:00,1 +2023-10-24 21:15:48.060116562+00:00,1 +2023-10-24 21:15:48.175858570+00:00,1 +2023-10-24 21:15:48.291426423+00:00,1 +2023-10-24 21:15:48.406589954+00:00,1 +2023-10-24 21:15:48.522345813+00:00,1 +2023-10-24 21:15:48.638538070+00:00,1 +2023-10-24 21:15:48.754600476+00:00,1 +2023-10-24 21:15:48.870949085+00:00,1 +2023-10-24 21:15:48.987350676+00:00,1 +2023-10-24 21:15:49.103273096+00:00,1 +2023-10-24 21:15:49.219125076+00:00,1 +2023-10-24 21:15:49.334250853+00:00,1 +2023-10-24 21:15:49.449545789+00:00,1 +2023-10-24 21:15:49.564988318+00:00,1 +2023-10-24 21:15:49.679999441+00:00,1 +2023-10-24 21:15:49.795179286+00:00,1 +2023-10-24 21:15:49.910351563+00:00,1 +2023-10-24 21:15:50.025484850+00:00,1 +2023-10-24 21:15:50.140503277+00:00,1 +2023-10-24 21:15:50.256680595+00:00,1 +2023-10-24 21:15:50.373087126+00:00,1 +2023-10-24 21:15:50.489102447+00:00,1 +2023-10-24 21:15:50.605219543+00:00,1 +2023-10-24 21:15:50.720937555+00:00,1 +2023-10-24 21:15:50.837395821+00:00,1 +2023-10-24 21:15:50.953425954+00:00,1 +2023-10-24 21:15:51.069133618+00:00,1 +2023-10-24 21:15:51.184035486+00:00,1 +2023-10-24 21:15:51.300570003+00:00,1 +2023-10-24 21:15:51.415753756+00:00,1 +2023-10-24 21:15:51.531307821+00:00,1 +2023-10-24 21:15:51.647681379+00:00,1 +2023-10-24 21:15:51.762937179+00:00,1 +2023-10-24 21:15:51.878633766+00:00,1 +2023-10-24 21:15:51.994686749+00:00,1 +2023-10-24 21:15:52.111401019+00:00,1 +2023-10-24 21:15:52.227775638+00:00,1 +2023-10-24 21:15:52.343090858+00:00,1 +2023-10-24 21:15:52.458730389+00:00,1 +2023-10-24 21:15:52.574001710+00:00,1 +2023-10-24 21:15:52.689422510+00:00,1 +2023-10-24 21:15:52.804573447+00:00,1 +2023-10-24 21:15:52.919762453+00:00,1 +2023-10-24 21:15:53.035239183+00:00,1 +2023-10-24 21:15:53.150437548+00:00,1 +2023-10-24 21:15:53.265301026+00:00,1 +2023-10-24 21:15:53.380386138+00:00,1 +2023-10-24 21:15:53.496167044+00:00,1 +2023-10-24 21:15:53.611335424+00:00,1 +2023-10-24 21:15:53.726701586+00:00,1 +2023-10-24 21:15:53.842428001+00:00,1 +2023-10-24 21:15:53.958116391+00:00,1 +2023-10-24 21:15:54.073992437+00:00,1 +2023-10-24 21:15:54.189307897+00:00,1 +2023-10-24 21:15:54.305005459+00:00,1 +2023-10-24 21:15:54.421232214+00:00,1 +2023-10-24 21:15:54.537807362+00:00,1 +2023-10-24 21:15:54.653620198+00:00,1 +2023-10-24 21:15:54.769264182+00:00,1 +2023-10-24 21:15:54.885144060+00:00,1 +2023-10-24 21:15:55.000861665+00:00,1 +2023-10-24 21:15:55.117328927+00:00,1 +2023-10-24 21:15:55.233233053+00:00,1 +2023-10-24 21:15:55.349097128+00:00,1 +2023-10-24 21:15:55.465652724+00:00,1 +2023-10-24 21:15:55.581145817+00:00,1 +2023-10-24 21:15:55.696723003+00:00,1 +2023-10-24 21:15:55.812787574+00:00,1 +2023-10-24 21:15:55.928172462+00:00,1 +2023-10-24 21:15:56.043953638+00:00,1 +2023-10-24 21:15:56.160073988+00:00,1 +2023-10-24 21:15:56.275542030+00:00,1 +2023-10-24 21:15:56.391298538+00:00,1 +2023-10-24 21:15:56.507396951+00:00,1 +2023-10-24 21:15:56.622743900+00:00,1 +2023-10-24 21:15:56.738576954+00:00,1 +2023-10-24 21:15:56.854296235+00:00,1 +2023-10-24 21:15:56.970270782+00:00,1 +2023-10-24 21:15:57.088640408+00:00,1 +2023-10-24 21:15:57.204108626+00:00,1 +2023-10-24 21:15:57.319885918+00:00,1 +2023-10-24 21:15:57.435452758+00:00,1 +2023-10-24 21:15:57.550689105+00:00,1 +2023-10-24 21:15:57.666977963+00:00,1 +2023-10-24 21:15:57.782655756+00:00,1 +2023-10-24 21:15:57.898906841+00:00,1 +2023-10-24 21:15:58.014958496+00:00,1 +2023-10-24 21:15:58.130062188+00:00,1 +2023-10-24 21:15:58.245183138+00:00,1 +2023-10-24 21:15:58.360418701+00:00,1 +2023-10-24 21:15:58.476057564+00:00,1 +2023-10-24 21:15:58.591873340+00:00,1 +2023-10-24 21:15:58.708083715+00:00,1 +2023-10-24 21:15:58.823381395+00:00,1 +2023-10-24 21:15:58.939853019+00:00,1 +2023-10-24 21:15:59.055677420+00:00,1 +2023-10-24 21:15:59.171010983+00:00,1 +2023-10-24 21:15:59.285896550+00:00,1 +2023-10-24 21:15:59.401176911+00:00,1 +2023-10-24 21:15:59.517196377+00:00,1 +2023-10-24 21:15:59.633225947+00:00,1 +2023-10-24 21:15:59.749788645+00:00,1 +2023-10-24 21:15:59.866095763+00:00,1 +2023-10-24 21:15:59.981552183+00:00,1 +2023-10-24 21:16:00.097645624+00:00,1 +2023-10-24 21:16:00.213356067+00:00,1 +2023-10-24 21:16:00.328241021+00:00,1 +2023-10-24 21:16:00.443424628+00:00,1 +2023-10-24 21:16:00.558728230+00:00,1 +2023-10-24 21:16:00.674650328+00:00,1 +2023-10-24 21:16:00.790738088+00:00,1 +2023-10-24 21:16:00.907973924+00:00,1 +2023-10-24 21:16:01.024196536+00:00,1 +2023-10-24 21:16:01.140365128+00:00,1 +2023-10-24 21:16:01.257795106+00:00,1 +2023-10-24 21:16:01.376073703+00:00,1 +2023-10-24 21:16:01.492637459+00:00,1 +2023-10-24 21:16:01.608951931+00:00,1 +2023-10-24 21:16:01.724838444+00:00,1 +2023-10-24 21:16:01.841638915+00:00,1 +2023-10-24 21:16:01.957450424+00:00,1 +2023-10-24 21:16:02.073084755+00:00,1 +2023-10-24 21:16:02.188661514+00:00,1 +2023-10-24 21:16:02.304076470+00:00,1 +2023-10-24 21:16:02.419829987+00:00,1 +2023-10-24 21:16:02.536037564+00:00,1 +2023-10-24 21:16:02.652283925+00:00,1 +2023-10-24 21:16:02.767950816+00:00,1 +2023-10-24 21:16:02.883801368+00:00,1 +2023-10-24 21:16:03.000677457+00:00,1 +2023-10-24 21:16:03.116818649+00:00,1 +2023-10-24 21:16:03.232440508+00:00,1 +2023-10-24 21:16:03.347725507+00:00,1 +2023-10-24 21:16:03.463212171+00:00,1 +2023-10-24 21:16:03.578831548+00:00,1 +2023-10-24 21:16:03.693788044+00:00,1 +2023-10-24 21:16:03.808948305+00:00,1 +2023-10-24 21:16:03.923909626+00:00,1 +2023-10-24 21:16:04.040120595+00:00,1 +2023-10-24 21:16:04.156300846+00:00,1 +2023-10-24 21:16:04.272815426+00:00,1 +2023-10-24 21:16:04.388924966+00:00,1 +2023-10-24 21:16:04.504639546+00:00,1 +2023-10-24 21:16:04.619987373+00:00,1 +2023-10-24 21:16:04.735825205+00:00,1 +2023-10-24 21:16:04.851163956+00:00,1 +2023-10-24 21:16:04.967330822+00:00,1 +2023-10-24 21:16:05.083872827+00:00,1 +2023-10-24 21:16:05.199666768+00:00,1 +2023-10-24 21:16:05.316359633+00:00,1 +2023-10-24 21:16:05.432568034+00:00,1 +2023-10-24 21:16:05.548284768+00:00,1 +2023-10-24 21:16:05.664252184+00:00,1 +2023-10-24 21:16:05.779522069+00:00,1 +2023-10-24 21:16:05.894764708+00:00,1 +2023-10-24 21:16:06.011645327+00:00,1 +2023-10-24 21:16:06.128293581+00:00,1 +2023-10-24 21:16:06.245050384+00:00,1 +2023-10-24 21:16:06.361098825+00:00,1 +2023-10-24 21:16:06.476826990+00:00,1 +2023-10-24 21:16:06.592989543+00:00,1 +2023-10-24 21:16:06.708489385+00:00,1 +2023-10-24 21:16:06.824303790+00:00,1 +2023-10-24 21:16:06.940327957+00:00,1 +2023-10-24 21:16:07.056617670+00:00,1 +2023-10-24 21:16:07.172096702+00:00,1 +2023-10-24 21:16:07.287490296+00:00,1 +2023-10-24 21:16:07.404754603+00:00,1 +2023-10-24 21:16:07.522404598+00:00,1 +2023-10-24 21:16:07.637706907+00:00,1 +2023-10-24 21:16:07.753296114+00:00,1 +2023-10-24 21:16:07.868697827+00:00,1 +2023-10-24 21:16:07.984697501+00:00,1 +2023-10-24 21:16:08.100430508+00:00,1 +2023-10-24 21:16:08.215835221+00:00,1 +2023-10-24 21:16:08.331780399+00:00,1 +2023-10-24 21:16:08.448690302+00:00,1 +2023-10-24 21:16:08.565048633+00:00,1 +2023-10-24 21:16:08.681509069+00:00,1 +2023-10-24 21:16:08.797581960+00:00,1 +2023-10-24 21:16:08.913590871+00:00,1 +2023-10-24 21:16:09.029296525+00:00,1 +2023-10-24 21:16:09.144535959+00:00,1 +2023-10-24 21:16:09.259623932+00:00,1 +2023-10-24 21:16:09.376176696+00:00,1 +2023-10-24 21:16:09.491488068+00:00,1 +2023-10-24 21:16:09.607013395+00:00,1 +2023-10-24 21:16:09.722740986+00:00,1 +2023-10-24 21:16:09.838499136+00:00,1 +2023-10-24 21:16:09.955165386+00:00,1 +2023-10-24 21:16:10.070824268+00:00,1 +2023-10-24 21:16:10.186699118+00:00,1 +2023-10-24 21:16:10.304116286+00:00,1 +2023-10-24 21:16:10.419506957+00:00,1 +2023-10-24 21:16:10.535416249+00:00,1 +2023-10-24 21:16:10.650610110+00:00,1 +2023-10-24 21:16:10.766118574+00:00,1 +2023-10-24 21:16:10.881667009+00:00,1 +2023-10-24 21:16:10.998453849+00:00,1 +2023-10-24 21:16:11.114031644+00:00,1 +2023-10-24 21:16:11.230070437+00:00,1 +2023-10-24 21:16:11.345401749+00:00,1 +2023-10-24 21:16:11.460943463+00:00,1 +2023-10-24 21:16:11.576309408+00:00,1 +2023-10-24 21:16:11.691508072+00:00,1 +2023-10-24 21:16:11.806407405+00:00,1 +2023-10-24 21:16:11.922089144+00:00,1 +2023-10-24 21:16:12.038182330+00:00,1 +2023-10-24 21:16:12.153768856+00:00,1 +2023-10-24 21:16:12.269597237+00:00,1 +2023-10-24 21:16:12.386330062+00:00,1 +2023-10-24 21:16:12.502982503+00:00,1 +2023-10-24 21:16:12.619519810+00:00,1 +2023-10-24 21:16:12.736090198+00:00,1 +2023-10-24 21:16:12.851969776+00:00,1 +2023-10-24 21:16:12.968457427+00:00,1 +2023-10-24 21:16:13.083551377+00:00,1 +2023-10-24 21:16:13.199180576+00:00,1 +2023-10-24 21:16:13.314674401+00:00,1 +2023-10-24 21:16:13.430766178+00:00,1 +2023-10-24 21:16:13.546313338+00:00,1 +2023-10-24 21:16:13.661764179+00:00,1 +2023-10-24 21:16:13.776781570+00:00,1 +2023-10-24 21:16:13.892492845+00:00,1 +2023-10-24 21:16:14.008622679+00:00,1 +2023-10-24 21:16:14.123168371+00:00,1 +2023-10-24 21:16:14.237985393+00:00,1 +2023-10-24 21:16:14.352424988+00:00,1 +2023-10-24 21:16:14.467559035+00:00,1 +2023-10-24 21:16:14.581951071+00:00,1 +2023-10-24 21:16:14.696441193+00:00,1 +2023-10-24 21:16:14.810901274+00:00,1 +2023-10-24 21:16:14.925472441+00:00,1 +2023-10-24 21:16:15.040568473+00:00,1 +2023-10-24 21:16:15.154659699+00:00,1 +2023-10-24 21:16:15.270578429+00:00,1 +2023-10-24 21:16:15.384678528+00:00,1 +2023-10-24 21:16:15.498933638+00:00,1 +2023-10-24 21:16:15.615267519+00:00,1 +2023-10-24 21:16:15.730207150+00:00,1 +2023-10-24 21:16:15.845000639+00:00,1 +2023-10-24 21:16:15.958932160+00:00,1 +2023-10-24 21:16:17.113315636+00:00,1 +2023-10-24 21:16:17.228611586+00:00,1 +2023-10-24 21:16:17.343688959+00:00,1 +2023-10-24 21:16:17.458419379+00:00,1 +2023-10-24 21:16:17.573928754+00:00,1 +2023-10-24 21:16:17.689349297+00:00,1 +2023-10-24 21:16:17.803630113+00:00,1 +2023-10-24 21:16:17.918108819+00:00,1 +2023-10-24 21:16:18.032785365+00:00,1 +2023-10-24 21:16:18.148273595+00:00,1 +2023-10-24 21:16:18.262821083+00:00,1 +2023-10-24 21:16:18.377752457+00:00,1 +2023-10-24 21:16:18.493057334+00:00,1 +2023-10-24 21:16:18.608537938+00:00,1 +2023-10-24 21:16:18.723003745+00:00,1 +2023-10-24 21:16:18.837427299+00:00,1 +2023-10-24 21:16:18.952862040+00:00,1 +2023-10-24 21:16:19.067115375+00:00,1 +2023-10-24 21:16:19.182080904+00:00,1 +2023-10-24 21:16:19.297821373+00:00,1 +2023-10-24 21:16:19.412068776+00:00,1 +2023-10-24 21:16:19.527206219+00:00,1 +2023-10-24 21:16:19.642704526+00:00,1 +2023-10-24 21:16:19.757210632+00:00,1 +2023-10-24 21:16:19.872316345+00:00,1 +2023-10-24 21:16:19.988146079+00:00,1 +2023-10-24 21:16:20.102960567+00:00,1 +2023-10-24 21:16:20.218405504+00:00,1 +2023-10-24 21:16:20.334131558+00:00,1 +2023-10-24 21:16:20.450021194+00:00,1 +2023-10-24 21:16:20.565818636+00:00,1 +2023-10-24 21:16:20.681458003+00:00,1 +2023-10-24 21:16:20.797073375+00:00,1 +2023-10-24 21:16:20.912514197+00:00,1 +2023-10-24 21:16:21.028307966+00:00,1 +2023-10-24 21:16:21.143802561+00:00,1 +2023-10-24 21:16:21.258395553+00:00,1 +2023-10-24 21:16:21.373828610+00:00,1 +2023-10-24 21:16:21.489001877+00:00,1 +2023-10-24 21:16:21.604058829+00:00,1 +2023-10-24 21:16:21.720128626+00:00,1 +2023-10-24 21:16:21.835217818+00:00,1 +2023-10-24 21:16:21.950538328+00:00,1 +2023-10-24 21:16:22.065192492+00:00,1 +2023-10-24 21:16:22.180357337+00:00,1 +2023-10-24 21:16:22.295654548+00:00,1 +2023-10-24 21:16:22.410936591+00:00,1 +2023-10-24 21:16:22.525390570+00:00,1 +2023-10-24 21:16:22.640748162+00:00,1 +2023-10-24 21:16:22.755766785+00:00,1 +2023-10-24 21:16:22.870888304+00:00,1 +2023-10-24 21:16:22.986290209+00:00,1 +2023-10-24 21:16:23.100542133+00:00,1 +2023-10-24 21:16:23.215657404+00:00,1 +2023-10-24 21:16:23.330864599+00:00,1 +2023-10-24 21:16:23.445904193+00:00,1 +2023-10-24 21:16:24.562518900+00:00,1 +2023-10-24 21:16:24.677462386+00:00,1 +2023-10-24 21:16:24.792494345+00:00,1 +2023-10-24 21:16:24.907137763+00:00,1 +2023-10-24 21:16:25.022010809+00:00,1 +2023-10-24 21:16:25.137067348+00:00,1 +2023-10-24 21:16:25.252332488+00:00,1 +2023-10-24 21:16:25.367893810+00:00,1 +2023-10-24 21:16:25.483115297+00:00,1 +2023-10-24 21:16:25.597589902+00:00,1 +2023-10-24 21:16:25.712517634+00:00,1 +2023-10-24 21:16:25.827910625+00:00,1 +2023-10-24 21:16:26.981841580+00:00,1 +2023-10-24 21:16:27.098264129+00:00,1 +2023-10-24 21:16:27.213559794+00:00,1 +2023-10-24 21:16:27.328099435+00:00,1 +2023-10-24 21:16:27.442918753+00:00,1 +2023-10-24 21:16:27.557057763+00:00,1 +2023-10-24 21:16:27.672247145+00:00,1 +2023-10-24 21:16:27.787198831+00:00,1 +2023-10-24 21:16:27.901324239+00:00,1 +2023-10-24 21:16:28.016283492+00:00,1 +2023-10-24 21:16:28.130863644+00:00,1 +2023-10-24 21:16:28.245052195+00:00,1 +2023-10-24 21:16:28.359287477+00:00,1 +2023-10-24 21:16:28.475018656+00:00,1 +2023-10-24 21:16:28.590837328+00:00,1 +2023-10-24 21:16:28.704932495+00:00,1 +2023-10-24 21:16:28.819347119+00:00,1 +2023-10-24 21:16:28.935483601+00:00,1 +2023-10-24 21:16:29.050506027+00:00,1 +2023-10-24 21:16:29.166307757+00:00,1 +2023-10-24 21:16:29.281749622+00:00,1 +2023-10-24 21:16:29.397020406+00:00,1 +2023-10-24 21:16:29.512230488+00:00,1 +2023-10-24 21:16:29.626394097+00:00,1 +2023-10-24 21:16:29.740661274+00:00,1 +2023-10-24 21:16:29.855675220+00:00,1 +2023-10-24 21:16:29.970849968+00:00,1 +2023-10-24 21:16:30.086041186+00:00,1 +2023-10-24 21:16:30.200167466+00:00,1 +2023-10-24 21:16:30.314782256+00:00,1 +2023-10-24 21:16:30.429888621+00:00,1 +2023-10-24 21:16:30.545668285+00:00,1 +2023-10-24 21:16:30.660612527+00:00,1 +2023-10-24 21:16:30.775694801+00:00,1 +2023-10-24 21:16:30.890616985+00:00,1 +2023-10-24 21:16:31.005896387+00:00,1 +2023-10-24 21:16:31.120806843+00:00,1 +2023-10-24 21:16:31.236968209+00:00,1 +2023-10-24 21:16:31.352544647+00:00,1 +2023-10-24 21:16:31.468615590+00:00,1 +2023-10-24 21:16:31.584487629+00:00,1 +2023-10-24 21:16:31.699540111+00:00,1 +2023-10-24 21:16:31.815382100+00:00,1 +2023-10-24 21:16:31.931146656+00:00,1 +2023-10-24 21:16:32.046702015+00:00,1 +2023-10-24 21:16:32.162108749+00:00,1 +2023-10-24 21:16:32.279288874+00:00,1 +2023-10-24 21:16:32.394637160+00:00,1 +2023-10-24 21:16:32.510503926+00:00,1 +2023-10-24 21:16:32.625681927+00:00,1 +2023-10-24 21:16:32.742095156+00:00,1 +2023-10-24 21:16:32.857739872+00:00,1 +2023-10-24 21:16:32.974305293+00:00,1 +2023-10-24 21:16:33.090096408+00:00,1 +2023-10-24 21:16:33.205443985+00:00,1 +2023-10-24 21:16:33.321246366+00:00,1 +2023-10-24 21:16:33.436985713+00:00,1 +2023-10-24 21:16:33.553463243+00:00,1 +2023-10-24 21:16:33.669528509+00:00,1 +2023-10-24 21:16:33.785745597+00:00,1 +2023-10-24 21:16:33.902366919+00:00,1 +2023-10-24 21:16:34.019526090+00:00,1 +2023-10-24 21:16:34.136055710+00:00,1 +2023-10-24 21:16:34.252071756+00:00,1 +2023-10-24 21:16:34.367750141+00:00,1 +2023-10-24 21:16:34.484728413+00:00,1 +2023-10-24 21:16:34.600837218+00:00,1 +2023-10-24 21:16:34.716861212+00:00,1 +2023-10-24 21:16:34.832348196+00:00,1 +2023-10-24 21:16:34.948134976+00:00,1 +2023-10-24 21:16:35.063356778+00:00,1 +2023-10-24 21:16:35.179613290+00:00,1 +2023-10-24 21:16:35.294965369+00:00,1 +2023-10-24 21:16:35.410405701+00:00,1 +2023-10-24 21:16:35.525526201+00:00,1 +2023-10-24 21:16:35.640936125+00:00,1 +2023-10-24 21:16:35.756883376+00:00,1 +2023-10-24 21:16:35.873327863+00:00,1 +2023-10-24 21:16:35.989224359+00:00,1 +2023-10-24 21:16:36.106437814+00:00,1 +2023-10-24 21:16:36.223709039+00:00,1 +2023-10-24 21:16:36.339470921+00:00,1 +2023-10-24 21:16:36.455736735+00:00,1 +2023-10-24 21:16:36.571223847+00:00,1 +2023-10-24 21:16:36.687015547+00:00,1 +2023-10-24 21:16:36.801777427+00:00,1 +2023-10-24 21:16:36.917257698+00:00,1 +2023-10-24 21:16:37.033187568+00:00,1 +2023-10-24 21:16:37.149100950+00:00,1 +2023-10-24 21:16:37.265515936+00:00,1 +2023-10-24 21:16:37.381457438+00:00,1 +2023-10-24 21:16:37.497149831+00:00,1 +2023-10-24 21:16:37.612977110+00:00,1 +2023-10-24 21:16:37.728725807+00:00,1 +2023-10-24 21:16:37.846275388+00:00,1 +2023-10-24 21:16:37.962394730+00:00,1 +2023-10-24 21:16:38.077731153+00:00,1 +2023-10-24 21:16:38.194157072+00:00,1 +2023-10-24 21:16:38.309675955+00:00,1 +2023-10-24 21:16:38.425144915+00:00,1 +2023-10-24 21:16:38.540264164+00:00,1 +2023-10-24 21:16:38.656228918+00:00,1 +2023-10-24 21:16:38.771904894+00:00,1 +2023-10-24 21:16:38.887829244+00:00,1 +2023-10-24 21:16:39.003347274+00:00,1 +2023-10-24 21:16:39.118614799+00:00,1 +2023-10-24 21:16:39.234020997+00:00,1 +2023-10-24 21:16:39.349567760+00:00,1 +2023-10-24 21:16:39.464855855+00:00,1 +2023-10-24 21:16:39.580486114+00:00,1 +2023-10-24 21:16:39.695557119+00:00,1 +2023-10-24 21:16:39.811267648+00:00,1 +2023-10-24 21:16:39.927844813+00:00,1 +2023-10-24 21:16:40.044381599+00:00,1 +2023-10-24 21:16:40.160137177+00:00,1 +2023-10-24 21:16:40.275085194+00:00,1 +2023-10-24 21:16:40.390872463+00:00,1 +2023-10-24 21:16:40.506940162+00:00,1 +2023-10-24 21:16:40.623386466+00:00,1 +2023-10-24 21:16:40.739813230+00:00,1 +2023-10-24 21:16:40.855690652+00:00,1 +2023-10-24 21:16:40.972222439+00:00,1 +2023-10-24 21:16:41.087971036+00:00,1 +2023-10-24 21:16:41.204463004+00:00,1 +2023-10-24 21:16:41.320567985+00:00,1 +2023-10-24 21:16:41.437533187+00:00,1 +2023-10-24 21:16:41.553217664+00:00,1 +2023-10-24 21:16:41.668895444+00:00,1 +2023-10-24 21:16:41.783839331+00:00,1 +2023-10-24 21:16:41.899381071+00:00,1 +2023-10-24 21:16:42.015189833+00:00,1 +2023-10-24 21:16:42.130734606+00:00,1 +2023-10-24 21:16:42.246670652+00:00,1 +2023-10-24 21:16:42.362329553+00:00,1 +2023-10-24 21:16:42.477704347+00:00,1 +2023-10-24 21:16:42.593228862+00:00,1 +2023-10-24 21:16:42.708448964+00:00,1 +2023-10-24 21:16:42.825391261+00:00,1 +2023-10-24 21:16:42.940826097+00:00,1 +2023-10-24 21:16:43.056229175+00:00,1 +2023-10-24 21:16:43.172307416+00:00,1 +2023-10-24 21:16:43.287887133+00:00,1 +2023-10-24 21:16:43.403408358+00:00,1 +2023-10-24 21:16:43.519557041+00:00,1 +2023-10-24 21:16:43.635064116+00:00,1 +2023-10-24 21:16:43.750249860+00:00,1 +2023-10-24 21:16:43.865600858+00:00,1 +2023-10-24 21:16:43.981165073+00:00,1 +2023-10-24 21:16:44.096491688+00:00,1 +2023-10-24 21:16:44.212287369+00:00,1 +2023-10-24 21:16:44.329036957+00:00,1 +2023-10-24 21:16:44.443963104+00:00,1 +2023-10-24 21:16:44.558852132+00:00,1 +2023-10-24 21:16:44.674335523+00:00,1 +2023-10-24 21:16:44.789906565+00:00,1 +2023-10-24 21:16:44.905698952+00:00,1 +2023-10-24 21:16:45.021295577+00:00,1 +2023-10-24 21:16:45.137782131+00:00,1 +2023-10-24 21:16:45.253301471+00:00,1 +2023-10-24 21:16:45.369580478+00:00,1 +2023-10-24 21:16:45.486592540+00:00,1 +2023-10-24 21:16:45.604380650+00:00,1 +2023-10-24 21:16:45.719749095+00:00,1 +2023-10-24 21:16:45.834815836+00:00,1 +2023-10-24 21:16:45.950391879+00:00,1 +2023-10-24 21:16:46.067040428+00:00,1 +2023-10-24 21:16:46.183104906+00:00,1 +2023-10-24 21:16:46.300212692+00:00,1 +2023-10-24 21:16:46.415364746+00:00,1 +2023-10-24 21:16:46.530368542+00:00,1 +2023-10-24 21:16:46.645914819+00:00,1 +2023-10-24 21:16:46.761069263+00:00,1 +2023-10-24 21:16:46.876219099+00:00,1 +2023-10-24 21:16:46.992262877+00:00,1 +2023-10-24 21:16:47.107239473+00:00,1 +2023-10-24 21:16:47.222969025+00:00,1 +2023-10-24 21:16:47.339491762+00:00,1 +2023-10-24 21:16:47.455638787+00:00,1 +2023-10-24 21:16:47.571235704+00:00,1 +2023-10-24 21:16:47.686679424+00:00,1 +2023-10-24 21:16:47.802098008+00:00,1 +2023-10-24 21:16:47.918779483+00:00,1 +2023-10-24 21:16:48.034101087+00:00,1 +2023-10-24 21:16:48.149506286+00:00,1 +2023-10-24 21:16:48.265790258+00:00,1 +2023-10-24 21:16:48.382074690+00:00,1 +2023-10-24 21:16:48.496699838+00:00,1 +2023-10-24 21:16:48.614039039+00:00,1 +2023-10-24 21:16:48.729062630+00:00,1 +2023-10-24 21:16:48.844760309+00:00,1 +2023-10-24 21:16:48.960863523+00:00,1 +2023-10-24 21:16:49.076447264+00:00,1 +2023-10-24 21:16:49.191242549+00:00,1 +2023-10-24 21:16:49.306824607+00:00,1 +2023-10-24 21:16:49.423167631+00:00,1 +2023-10-24 21:16:49.538987812+00:00,1 +2023-10-24 21:16:49.654485703+00:00,1 +2023-10-24 21:16:49.770243759+00:00,1 +2023-10-24 21:16:49.886629217+00:00,1 +2023-10-24 21:16:50.002124932+00:00,1 +2023-10-24 21:16:50.117595586+00:00,1 +2023-10-24 21:16:50.233015714+00:00,1 +2023-10-24 21:16:50.348389588+00:00,1 +2023-10-24 21:16:50.463647679+00:00,1 +2023-10-24 21:16:50.579022365+00:00,1 +2023-10-24 21:16:50.694222222+00:00,1 +2023-10-24 21:16:50.809435092+00:00,1 +2023-10-24 21:16:50.925321837+00:00,1 +2023-10-24 21:16:51.040970228+00:00,1 +2023-10-24 21:16:51.156277168+00:00,1 +2023-10-24 21:16:51.271789919+00:00,1 +2023-10-24 21:16:51.387160654+00:00,1 +2023-10-24 21:16:51.503192513+00:00,1 +2023-10-24 21:16:51.619686126+00:00,1 +2023-10-24 21:16:51.735213501+00:00,1 +2023-10-24 21:16:51.850684304+00:00,1 +2023-10-24 21:16:51.965989109+00:00,1 +2023-10-24 21:16:52.081437031+00:00,1 +2023-10-24 21:16:52.197422764+00:00,1 +2023-10-24 21:16:52.314374494+00:00,1 +2023-10-24 21:16:52.430160869+00:00,1 +2023-10-24 21:16:52.545815220+00:00,1 +2023-10-24 21:16:52.661531848+00:00,1 +2023-10-24 21:16:52.778279894+00:00,1 +2023-10-24 21:16:52.893679525+00:00,1 +2023-10-24 21:16:53.009897233+00:00,1 +2023-10-24 21:16:53.125872076+00:00,1 +2023-10-24 21:16:53.242539325+00:00,1 +2023-10-24 21:16:53.359057385+00:00,1 +2023-10-24 21:16:53.477394752+00:00,1 +2023-10-24 21:16:53.593163227+00:00,1 +2023-10-24 21:16:53.708117810+00:00,1 +2023-10-24 21:16:53.823185959+00:00,1 +2023-10-24 21:16:53.939345230+00:00,1 +2023-10-24 21:16:54.055218377+00:00,1 +2023-10-24 21:16:54.171398069+00:00,1 +2023-10-24 21:16:54.287437388+00:00,1 +2023-10-24 21:16:54.402735656+00:00,1 +2023-10-24 21:16:54.518630895+00:00,1 +2023-10-24 21:16:54.635592604+00:00,1 +2023-10-24 21:16:54.750741998+00:00,1 +2023-10-24 21:16:54.866115564+00:00,1 +2023-10-24 21:16:54.981502732+00:00,1 +2023-10-24 21:16:55.097749250+00:00,1 +2023-10-24 21:16:55.213093659+00:00,1 +2023-10-24 21:16:55.328674950+00:00,1 +2023-10-24 21:16:55.443889804+00:00,1 +2023-10-24 21:16:55.559640997+00:00,1 +2023-10-24 21:16:55.675267509+00:00,1 +2023-10-24 21:16:55.790504359+00:00,1 +2023-10-24 21:16:55.905911852+00:00,1 +2023-10-24 21:16:56.021240048+00:00,1 +2023-10-24 21:16:56.136335079+00:00,1 +2023-10-24 21:16:56.251727026+00:00,1 +2023-10-24 21:16:56.366890103+00:00,1 +2023-10-24 21:16:56.481994696+00:00,1 +2023-10-24 21:16:56.597351043+00:00,1 +2023-10-24 21:16:56.712470357+00:00,1 +2023-10-24 21:16:56.827944854+00:00,1 +2023-10-24 21:16:56.942835403+00:00,1 +2023-10-24 21:16:57.057600852+00:00,1 +2023-10-24 21:16:57.172968709+00:00,1 +2023-10-24 21:16:57.288607143+00:00,1 +2023-10-24 21:16:57.403912653+00:00,1 +2023-10-24 21:16:57.519299787+00:00,1 +2023-10-24 21:16:57.634951462+00:00,1 +2023-10-24 21:16:57.750360289+00:00,1 +2023-10-24 21:16:57.865661102+00:00,1 +2023-10-24 21:16:57.980971728+00:00,1 +2023-10-24 21:16:58.096364071+00:00,1 +2023-10-24 21:16:58.211898542+00:00,1 +2023-10-24 21:16:58.327397642+00:00,1 +2023-10-24 21:16:58.444413389+00:00,1 +2023-10-24 21:16:58.560002054+00:00,1 +2023-10-24 21:16:58.676007219+00:00,1 +2023-10-24 21:16:58.791738881+00:00,1 +2023-10-24 21:16:58.907236731+00:00,1 +2023-10-24 21:16:59.022702467+00:00,1 +2023-10-24 21:16:59.137916071+00:00,1 +2023-10-24 21:16:59.253845751+00:00,1 +2023-10-24 21:16:59.369663155+00:00,1 +2023-10-24 21:16:59.485934841+00:00,1 +2023-10-24 21:16:59.601702442+00:00,1 +2023-10-24 21:16:59.717078833+00:00,1 +2023-10-24 21:16:59.832408180+00:00,1 +2023-10-24 21:16:59.948763028+00:00,1 +2023-10-24 21:17:00.064453046+00:00,1 +2023-10-24 21:17:00.180083151+00:00,1 +2023-10-24 21:17:00.295801129+00:00,1 +2023-10-24 21:17:00.411287968+00:00,1 +2023-10-24 21:17:00.527766697+00:00,1 +2023-10-24 21:17:00.644305903+00:00,1 +2023-10-24 21:17:00.759315732+00:00,1 +2023-10-24 21:17:00.875064377+00:00,1 +2023-10-24 21:17:00.990714445+00:00,1 +2023-10-24 21:17:01.106509869+00:00,1 +2023-10-24 21:17:01.221689182+00:00,1 +2023-10-24 21:17:01.337476332+00:00,1 +2023-10-24 21:17:01.452535694+00:00,1 +2023-10-24 21:17:01.568057531+00:00,1 +2023-10-24 21:17:01.683218340+00:00,1 +2023-10-24 21:17:01.798043383+00:00,1 +2023-10-24 21:17:01.913178382+00:00,1 +2023-10-24 21:17:02.028481197+00:00,1 +2023-10-24 21:17:02.145132470+00:00,1 +2023-10-24 21:17:02.262461931+00:00,1 +2023-10-24 21:17:02.378457913+00:00,1 +2023-10-24 21:17:02.493631476+00:00,1 +2023-10-24 21:17:02.609158447+00:00,1 +2023-10-24 21:17:02.724297949+00:00,1 +2023-10-24 21:17:02.840068333+00:00,1 +2023-10-24 21:17:02.955403953+00:00,1 +2023-10-24 21:17:03.071194592+00:00,1 +2023-10-24 21:17:03.186640848+00:00,1 +2023-10-24 21:17:03.302107333+00:00,1 +2023-10-24 21:17:03.417797470+00:00,1 +2023-10-24 21:17:03.533440232+00:00,1 +2023-10-24 21:17:03.648548016+00:00,1 +2023-10-24 21:17:03.764019284+00:00,1 +2023-10-24 21:17:03.879664424+00:00,1 +2023-10-24 21:17:03.994937009+00:00,1 +2023-10-24 21:17:04.110930184+00:00,1 +2023-10-24 21:17:04.226604200+00:00,1 +2023-10-24 21:17:04.342047812+00:00,1 +2023-10-24 21:17:04.457421938+00:00,1 +2023-10-24 21:17:04.572640777+00:00,1 +2023-10-24 21:17:04.688073263+00:00,1 +2023-10-24 21:17:04.803565690+00:00,1 +2023-10-24 21:17:04.918221134+00:00,1 +2023-10-24 21:17:05.033047579+00:00,1 +2023-10-24 21:17:05.151026267+00:00,1 +2023-10-24 21:17:05.266770818+00:00,1 +2023-10-24 21:17:05.382595679+00:00,1 +2023-10-24 21:17:05.498583227+00:00,1 +2023-10-24 21:17:05.614299287+00:00,1 +2023-10-24 21:17:05.730450190+00:00,1 +2023-10-24 21:17:05.845722618+00:00,1 +2023-10-24 21:17:05.961237194+00:00,1 +2023-10-24 21:17:06.077580377+00:00,1 +2023-10-24 21:17:06.193441428+00:00,1 +2023-10-24 21:17:06.308769051+00:00,1 +2023-10-24 21:17:06.424797135+00:00,1 +2023-10-24 21:17:06.540412876+00:00,1 +2023-10-24 21:17:06.656108216+00:00,1 +2023-10-24 21:17:06.771189510+00:00,1 +2023-10-24 21:17:06.886762875+00:00,1 +2023-10-24 21:17:07.002567588+00:00,1 +2023-10-24 21:17:07.117751238+00:00,1 +2023-10-24 21:17:07.233072103+00:00,1 +2023-10-24 21:17:07.348225941+00:00,1 +2023-10-24 21:17:07.464193630+00:00,1 +2023-10-24 21:17:07.579392289+00:00,1 +2023-10-24 21:17:07.695005598+00:00,1 +2023-10-24 21:17:07.810850346+00:00,1 +2023-10-24 21:17:07.926988128+00:00,1 +2023-10-24 21:17:08.042068524+00:00,1 +2023-10-24 21:17:08.157588954+00:00,1 +2023-10-24 21:17:08.274255905+00:00,1 +2023-10-24 21:17:08.389837695+00:00,1 +2023-10-24 21:17:08.504965188+00:00,1 +2023-10-24 21:17:08.620723271+00:00,1 +2023-10-24 21:17:08.736945512+00:00,1 +2023-10-24 21:17:08.852292071+00:00,1 +2023-10-24 21:17:08.968154788+00:00,1 +2023-10-24 21:17:09.084565152+00:00,1 +2023-10-24 21:17:09.200349509+00:00,1 +2023-10-24 21:17:09.316198185+00:00,1 +2023-10-24 21:17:09.431533620+00:00,1 +2023-10-24 21:17:09.547307921+00:00,1 +2023-10-24 21:17:09.662790703+00:00,1 +2023-10-24 21:17:09.777735244+00:00,1 +2023-10-24 21:17:09.893519766+00:00,1 +2023-10-24 21:17:10.008706960+00:00,1 +2023-10-24 21:17:10.123828113+00:00,1 +2023-10-24 21:17:10.239686765+00:00,1 +2023-10-24 21:17:10.354471581+00:00,1 +2023-10-24 21:17:10.469645084+00:00,1 +2023-10-24 21:17:10.584629294+00:00,1 +2023-10-24 21:17:10.700063560+00:00,1 +2023-10-24 21:17:10.816826298+00:00,1 +2023-10-24 21:17:10.932691554+00:00,1 +2023-10-24 21:17:11.048343551+00:00,1 +2023-10-24 21:17:11.163718380+00:00,1 +2023-10-24 21:17:11.279377435+00:00,1 +2023-10-24 21:17:11.394863218+00:00,1 +2023-10-24 21:17:11.510175980+00:00,1 +2023-10-24 21:17:11.625180352+00:00,1 +2023-10-24 21:17:11.740497263+00:00,1 +2023-10-24 21:17:11.855830380+00:00,1 +2023-10-24 21:17:11.971495237+00:00,1 +2023-10-24 21:17:12.087943131+00:00,1 +2023-10-24 21:17:12.203902931+00:00,1 +2023-10-24 21:17:12.319531846+00:00,1 +2023-10-24 21:17:12.434951695+00:00,1 +2023-10-24 21:17:12.550326613+00:00,1 +2023-10-24 21:17:12.665948780+00:00,1 +2023-10-24 21:17:12.781231143+00:00,1 +2023-10-24 21:17:12.897352257+00:00,1 +2023-10-24 21:17:13.013275811+00:00,1 +2023-10-24 21:17:13.128547996+00:00,1 +2023-10-24 21:17:13.245231015+00:00,1 +2023-10-24 21:17:13.360589153+00:00,1 +2023-10-24 21:17:13.476629858+00:00,1 +2023-10-24 21:17:13.592252294+00:00,1 +2023-10-24 21:17:13.707191277+00:00,1 +2023-10-24 21:17:13.822725314+00:00,1 +2023-10-24 21:17:13.937728522+00:00,1 +2023-10-24 21:17:14.052911356+00:00,1 +2023-10-24 21:17:14.167673759+00:00,1 +2023-10-24 21:17:14.283089456+00:00,1 +2023-10-24 21:17:14.397891432+00:00,1 +2023-10-24 21:17:14.513342230+00:00,1 +2023-10-24 21:17:14.629124745+00:00,1 +2023-10-24 21:17:14.744541950+00:00,1 +2023-10-24 21:17:14.859414951+00:00,1 +2023-10-24 21:17:14.974584892+00:00,1 +2023-10-24 21:17:15.090110887+00:00,1 +2023-10-24 21:17:15.205334850+00:00,1 +2023-10-24 21:17:15.320910695+00:00,1 +2023-10-24 21:17:15.436045028+00:00,1 +2023-10-24 21:17:15.551562629+00:00,1 +2023-10-24 21:17:15.666646905+00:00,1 +2023-10-24 21:17:15.781390928+00:00,1 +2023-10-24 21:17:15.897484046+00:00,1 +2023-10-24 21:17:16.013129132+00:00,1 +2023-10-24 21:17:16.129702652+00:00,1 +2023-10-24 21:17:16.245335009+00:00,1 +2023-10-24 21:17:16.360530815+00:00,1 +2023-10-24 21:17:16.475493544+00:00,1 +2023-10-24 21:17:16.590624129+00:00,1 +2023-10-24 21:17:16.706191476+00:00,1 +2023-10-24 21:17:16.822244918+00:00,1 +2023-10-24 21:17:16.937837904+00:00,1 +2023-10-24 21:17:17.053437522+00:00,1 +2023-10-24 21:17:17.169065630+00:00,1 +2023-10-24 21:17:17.285261944+00:00,1 +2023-10-24 21:17:17.401585716+00:00,1 +2023-10-24 21:17:17.517181069+00:00,1 +2023-10-24 21:17:17.632987430+00:00,1 +2023-10-24 21:17:17.748207521+00:00,1 +2023-10-24 21:17:17.864854370+00:00,1 +2023-10-24 21:17:17.981023591+00:00,1 +2023-10-24 21:17:18.096675351+00:00,1 +2023-10-24 21:17:18.211914996+00:00,1 +2023-10-24 21:17:18.327415020+00:00,1 +2023-10-24 21:17:18.442804993+00:00,1 +2023-10-24 21:17:18.558023866+00:00,1 +2023-10-24 21:17:18.673519473+00:00,1 +2023-10-24 21:17:18.789144900+00:00,1 +2023-10-24 21:17:18.904135571+00:00,1 +2023-10-24 21:17:19.020085080+00:00,1 +2023-10-24 21:17:19.135411574+00:00,1 +2023-10-24 21:17:19.250423645+00:00,1 +2023-10-24 21:17:19.366222389+00:00,1 +2023-10-24 21:17:19.481312093+00:00,1 +2023-10-24 21:17:19.597121595+00:00,1 +2023-10-24 21:17:19.712836443+00:00,1 +2023-10-24 21:17:19.828240349+00:00,1 +2023-10-24 21:17:19.943521242+00:00,1 +2023-10-24 21:17:20.059121901+00:00,1 +2023-10-24 21:17:20.174422356+00:00,1 +2023-10-24 21:17:20.290154233+00:00,1 +2023-10-24 21:17:20.406326890+00:00,1 +2023-10-24 21:17:20.522102991+00:00,1 +2023-10-24 21:17:20.638038618+00:00,1 +2023-10-24 21:17:20.753484674+00:00,1 +2023-10-24 21:17:20.869196950+00:00,1 +2023-10-24 21:17:20.984742455+00:00,1 +2023-10-24 21:17:21.101686281+00:00,1 +2023-10-24 21:17:21.217463623+00:00,1 +2023-10-24 21:17:21.333381872+00:00,1 +2023-10-24 21:17:21.449799168+00:00,1 +2023-10-24 21:17:21.565304622+00:00,1 +2023-10-24 21:17:21.680863595+00:00,1 +2023-10-24 21:17:21.797260995+00:00,1 +2023-10-24 21:17:21.912509749+00:00,1 +2023-10-24 21:17:22.027401276+00:00,1 +2023-10-24 21:17:22.144039222+00:00,1 +2023-10-24 21:17:22.259111305+00:00,1 +2023-10-24 21:17:22.374324324+00:00,1 +2023-10-24 21:17:22.490231127+00:00,1 +2023-10-24 21:17:22.605675805+00:00,1 +2023-10-24 21:17:22.720628345+00:00,1 +2023-10-24 21:17:22.836885867+00:00,1 +2023-10-24 21:17:22.952750280+00:00,1 +2023-10-24 21:17:23.068608606+00:00,1 +2023-10-24 21:17:23.184879720+00:00,1 +2023-10-24 21:17:23.300241160+00:00,1 +2023-10-24 21:17:23.415873155+00:00,1 +2023-10-24 21:17:23.531318237+00:00,1 +2023-10-24 21:17:23.647283047+00:00,1 +2023-10-24 21:17:23.763116039+00:00,1 +2023-10-24 21:17:23.879696576+00:00,1 +2023-10-24 21:17:23.996127553+00:00,1 +2023-10-24 21:17:24.112188385+00:00,1 +2023-10-24 21:17:24.227370511+00:00,1 +2023-10-24 21:17:24.342247127+00:00,1 +2023-10-24 21:17:24.457498855+00:00,1 +2023-10-24 21:17:24.572867793+00:00,1 +2023-10-24 21:17:24.688241092+00:00,1 +2023-10-24 21:17:24.803037876+00:00,1 +2023-10-24 21:17:24.919305863+00:00,1 +2023-10-24 21:17:25.034759996+00:00,1 +2023-10-24 21:17:25.150200952+00:00,1 +2023-10-24 21:17:25.266424951+00:00,1 +2023-10-24 21:17:25.381997398+00:00,1 +2023-10-24 21:17:25.497383992+00:00,1 +2023-10-24 21:17:25.613635093+00:00,1 +2023-10-24 21:17:25.730453409+00:00,1 +2023-10-24 21:17:25.846745852+00:00,1 +2023-10-24 21:17:25.962208030+00:00,1 +2023-10-24 21:17:26.078560447+00:00,1 +2023-10-24 21:17:26.194116553+00:00,1 +2023-10-24 21:17:26.309870680+00:00,1 +2023-10-24 21:17:26.425949755+00:00,1 +2023-10-24 21:17:26.542054764+00:00,1 +2023-10-24 21:17:26.657823918+00:00,1 +2023-10-24 21:17:26.773354738+00:00,1 +2023-10-24 21:17:26.888794581+00:00,1 +2023-10-24 21:17:27.004391154+00:00,1 +2023-10-24 21:17:27.120208811+00:00,1 +2023-10-24 21:17:27.236181747+00:00,1 +2023-10-24 21:17:27.352547264+00:00,1 +2023-10-24 21:17:27.469427984+00:00,1 +2023-10-24 21:17:27.584864950+00:00,1 +2023-10-24 21:17:27.700296889+00:00,1 +2023-10-24 21:17:27.815839632+00:00,1 +2023-10-24 21:17:27.931332827+00:00,1 +2023-10-24 21:17:28.046327431+00:00,1 +2023-10-24 21:17:28.161543705+00:00,1 +2023-10-24 21:17:28.277372198+00:00,1 +2023-10-24 21:17:28.392672956+00:00,1 +2023-10-24 21:17:28.509017688+00:00,1 +2023-10-24 21:17:28.623960307+00:00,1 +2023-10-24 21:17:28.739375117+00:00,1 +2023-10-24 21:17:28.855039829+00:00,1 +2023-10-24 21:17:28.970741450+00:00,1 +2023-10-24 21:17:29.086322044+00:00,1 +2023-10-24 21:17:29.201304150+00:00,1 +2023-10-24 21:17:29.316851372+00:00,1 +2023-10-24 21:17:29.431904298+00:00,1 +2023-10-24 21:17:29.546839994+00:00,1 +2023-10-24 21:17:29.661801723+00:00,1 +2023-10-24 21:17:29.777799148+00:00,1 +2023-10-24 21:17:29.893448713+00:00,1 +2023-10-24 21:17:30.009533758+00:00,1 +2023-10-24 21:17:30.125533015+00:00,1 +2023-10-24 21:17:30.241548379+00:00,1 +2023-10-24 21:17:30.357436951+00:00,1 +2023-10-24 21:17:30.473827214+00:00,1 +2023-10-24 21:17:30.590278720+00:00,1 +2023-10-24 21:17:30.706595596+00:00,1 +2023-10-24 21:17:30.822658446+00:00,1 +2023-10-24 21:17:30.939550343+00:00,1 +2023-10-24 21:17:31.055878410+00:00,1 +2023-10-24 21:17:31.171339326+00:00,1 +2023-10-24 21:17:31.288439359+00:00,1 +2023-10-24 21:17:31.403610116+00:00,1 +2023-10-24 21:17:31.520069065+00:00,1 +2023-10-24 21:17:31.636464719+00:00,1 +2023-10-24 21:17:31.751849940+00:00,1 +2023-10-24 21:17:31.867252175+00:00,1 +2023-10-24 21:17:31.982578569+00:00,1 +2023-10-24 21:17:32.098575997+00:00,1 +2023-10-24 21:17:32.214181598+00:00,1 +2023-10-24 21:17:32.330141062+00:00,1 +2023-10-24 21:17:32.445426649+00:00,1 +2023-10-24 21:17:32.560557279+00:00,1 +2023-10-24 21:17:32.675719543+00:00,1 +2023-10-24 21:17:32.792335719+00:00,1 +2023-10-24 21:17:32.908216319+00:00,1 +2023-10-24 21:17:33.024275658+00:00,1 +2023-10-24 21:17:33.140602626+00:00,1 +2023-10-24 21:17:33.256096400+00:00,1 +2023-10-24 21:17:33.372148340+00:00,1 +2023-10-24 21:17:33.488257130+00:00,1 +2023-10-24 21:17:33.604809811+00:00,1 +2023-10-24 21:17:33.720747160+00:00,1 +2023-10-24 21:17:33.837287771+00:00,1 +2023-10-24 21:17:33.954609078+00:00,1 +2023-10-24 21:17:34.071207009+00:00,1 +2023-10-24 21:17:34.186984718+00:00,1 +2023-10-24 21:17:34.302278587+00:00,1 +2023-10-24 21:17:34.417669648+00:00,1 +2023-10-24 21:17:34.532709415+00:00,1 +2023-10-24 21:17:34.647817596+00:00,1 +2023-10-24 21:17:34.762534030+00:00,1 +2023-10-24 21:17:34.877784369+00:00,1 +2023-10-24 21:17:34.993179813+00:00,1 +2023-10-24 21:17:35.108898028+00:00,1 +2023-10-24 21:17:35.224460531+00:00,1 +2023-10-24 21:17:35.339930803+00:00,1 +2023-10-24 21:17:35.455784468+00:00,1 +2023-10-24 21:17:35.571393830+00:00,1 +2023-10-24 21:17:35.688469769+00:00,1 +2023-10-24 21:17:35.803529346+00:00,1 +2023-10-24 21:17:35.918914342+00:00,1 +2023-10-24 21:17:36.033917094+00:00,1 +2023-10-24 21:17:36.149403428+00:00,1 +2023-10-24 21:17:36.265081675+00:00,1 +2023-10-24 21:17:36.380973213+00:00,1 +2023-10-24 21:17:36.496427591+00:00,1 +2023-10-24 21:17:36.611948235+00:00,1 +2023-10-24 21:17:36.727535520+00:00,1 +2023-10-24 21:17:36.842839936+00:00,1 +2023-10-24 21:17:36.957763923+00:00,1 +2023-10-24 21:17:37.073467319+00:00,1 +2023-10-24 21:17:37.188927958+00:00,1 +2023-10-24 21:17:37.304367527+00:00,1 +2023-10-24 21:17:37.419770045+00:00,1 +2023-10-24 21:17:37.535187984+00:00,1 +2023-10-24 21:17:37.651339029+00:00,1 +2023-10-24 21:17:37.767133764+00:00,1 +2023-10-24 21:17:37.883470926+00:00,1 +2023-10-24 21:17:38.000012104+00:00,1 +2023-10-24 21:17:38.116142334+00:00,1 +2023-10-24 21:17:38.231190108+00:00,1 +2023-10-24 21:17:38.347509988+00:00,1 +2023-10-24 21:17:38.463364635+00:00,1 +2023-10-24 21:17:38.578896057+00:00,1 +2023-10-24 21:17:38.694347679+00:00,1 +2023-10-24 21:17:38.809509280+00:00,1 +2023-10-24 21:17:38.924671719+00:00,1 +2023-10-24 21:17:39.040275205+00:00,1 +2023-10-24 21:17:39.155837888+00:00,1 +2023-10-24 21:17:39.271350781+00:00,1 +2023-10-24 21:17:39.386868822+00:00,1 +2023-10-24 21:17:39.502535770+00:00,1 +2023-10-24 21:17:39.617908387+00:00,1 +2023-10-24 21:17:39.733356492+00:00,1 +2023-10-24 21:17:39.848635566+00:00,1 +2023-10-24 21:17:39.967962147+00:00,1 +2023-10-24 21:17:40.083609285+00:00,1 +2023-10-24 21:17:40.198809336+00:00,1 +2023-10-24 21:17:40.313904363+00:00,1 +2023-10-24 21:17:40.428889119+00:00,1 +2023-10-24 21:17:40.543633406+00:00,1 +2023-10-24 21:17:40.658787717+00:00,1 +2023-10-24 21:17:40.774657523+00:00,1 +2023-10-24 21:17:40.889774727+00:00,1 +2023-10-24 21:17:41.005181816+00:00,1 +2023-10-24 21:17:41.120557936+00:00,1 +2023-10-24 21:17:41.236131935+00:00,1 +2023-10-24 21:17:41.351724132+00:00,1 +2023-10-24 21:17:41.467050443+00:00,1 +2023-10-24 21:17:41.583056671+00:00,1 +2023-10-24 21:17:41.698110355+00:00,1 +2023-10-24 21:17:41.813635401+00:00,1 +2023-10-24 21:17:41.929132146+00:00,1 +2023-10-24 21:17:42.044773358+00:00,1 +2023-10-24 21:17:42.159850175+00:00,1 +2023-10-24 21:17:42.275980975+00:00,1 +2023-10-24 21:17:42.391175894+00:00,1 +2023-10-24 21:17:42.506831009+00:00,1 +2023-10-24 21:17:42.622577016+00:00,1 +2023-10-24 21:17:42.738314765+00:00,1 +2023-10-24 21:17:42.853555277+00:00,1 +2023-10-24 21:17:42.969875287+00:00,1 +2023-10-24 21:17:43.085659869+00:00,1 +2023-10-24 21:17:43.201525378+00:00,1 +2023-10-24 21:17:43.316859105+00:00,1 +2023-10-24 21:17:43.432620686+00:00,1 +2023-10-24 21:17:43.547678167+00:00,1 +2023-10-24 21:17:43.663174514+00:00,1 +2023-10-24 21:17:43.778079548+00:00,1 +2023-10-24 21:17:43.893973193+00:00,1 +2023-10-24 21:17:44.009400289+00:00,1 +2023-10-24 21:17:44.125269672+00:00,1 +2023-10-24 21:17:44.240438908+00:00,1 +2023-10-24 21:17:44.355987533+00:00,1 +2023-10-24 21:17:44.470940580+00:00,1 +2023-10-24 21:17:44.585708876+00:00,1 +2023-10-24 21:17:44.700479061+00:00,1 +2023-10-24 21:17:44.815812537+00:00,1 +2023-10-24 21:17:44.931048679+00:00,1 +2023-10-24 21:17:45.046419462+00:00,1 +2023-10-24 21:17:45.162528941+00:00,1 +2023-10-24 21:17:45.277812428+00:00,1 +2023-10-24 21:17:45.392926617+00:00,1 +2023-10-24 21:17:45.508203388+00:00,1 +2023-10-24 21:17:45.623381613+00:00,1 +2023-10-24 21:17:45.739510276+00:00,1 +2023-10-24 21:17:45.854801661+00:00,1 +2023-10-24 21:17:45.970418617+00:00,1 +2023-10-24 21:17:46.085546583+00:00,1 +2023-10-24 21:17:46.201981809+00:00,1 +2023-10-24 21:17:46.317377615+00:00,1 +2023-10-24 21:17:46.432879268+00:00,1 +2023-10-24 21:17:46.548427457+00:00,1 +2023-10-24 21:17:46.664281893+00:00,1 +2023-10-24 21:17:46.780414675+00:00,1 +2023-10-24 21:17:46.896013504+00:00,1 +2023-10-24 21:17:47.011661451+00:00,1 +2023-10-24 21:17:47.127989823+00:00,1 +2023-10-24 21:17:47.244106913+00:00,1 +2023-10-24 21:17:47.360225075+00:00,1 +2023-10-24 21:17:47.475635169+00:00,1 +2023-10-24 21:17:47.591086664+00:00,1 +2023-10-24 21:17:47.706710818+00:00,1 +2023-10-24 21:17:47.821989153+00:00,1 +2023-10-24 21:17:47.937952102+00:00,1 +2023-10-24 21:17:48.053089882+00:00,1 +2023-10-24 21:17:48.168220517+00:00,1 +2023-10-24 21:17:48.284230995+00:00,1 +2023-10-24 21:17:48.399412636+00:00,1 +2023-10-24 21:17:48.515257717+00:00,1 +2023-10-24 21:17:48.630914113+00:00,1 +2023-10-24 21:17:48.746214830+00:00,1 +2023-10-24 21:17:48.861774261+00:00,1 +2023-10-24 21:17:48.977257139+00:00,1 +2023-10-24 21:17:49.093990109+00:00,1 +2023-10-24 21:17:49.209020224+00:00,1 +2023-10-24 21:17:49.324416102+00:00,1 +2023-10-24 21:17:49.439440178+00:00,1 +2023-10-24 21:17:49.555037312+00:00,1 +2023-10-24 21:17:49.670042441+00:00,1 +2023-10-24 21:17:49.785655240+00:00,1 +2023-10-24 21:17:49.901429723+00:00,1 +2023-10-24 21:17:50.016862457+00:00,1 +2023-10-24 21:17:50.132098763+00:00,1 +2023-10-24 21:17:50.247761712+00:00,1 +2023-10-24 21:17:50.362981450+00:00,1 +2023-10-24 21:17:50.478125578+00:00,1 +2023-10-24 21:17:50.593621918+00:00,1 +2023-10-24 21:17:50.710061193+00:00,1 +2023-10-24 21:17:50.826348665+00:00,1 +2023-10-24 21:17:50.942051614+00:00,1 +2023-10-24 21:17:51.057865782+00:00,1 +2023-10-24 21:17:51.174530783+00:00,1 +2023-10-24 21:17:51.289804160+00:00,1 +2023-10-24 21:17:51.405484641+00:00,1 +2023-10-24 21:17:51.520645296+00:00,1 +2023-10-24 21:17:51.636143272+00:00,1 +2023-10-24 21:17:51.751523752+00:00,1 +2023-10-24 21:17:51.869813547+00:00,1 +2023-10-24 21:17:51.986379626+00:00,1 +2023-10-24 21:17:52.102863966+00:00,1 +2023-10-24 21:17:52.217689462+00:00,1 +2023-10-24 21:17:52.333232021+00:00,1 +2023-10-24 21:17:52.448843530+00:00,1 +2023-10-24 21:17:52.563731294+00:00,1 +2023-10-24 21:17:52.678877102+00:00,1 +2023-10-24 21:17:52.793270619+00:00,1 +2023-10-24 21:17:52.908095909+00:00,1 +2023-10-24 21:17:53.024183310+00:00,1 +2023-10-24 21:17:53.141378671+00:00,1 +2023-10-24 21:17:53.257065355+00:00,1 +2023-10-24 21:17:53.373412427+00:00,1 +2023-10-24 21:17:53.489291963+00:00,1 +2023-10-24 21:17:53.604607764+00:00,1 +2023-10-24 21:17:53.720537453+00:00,1 +2023-10-24 21:17:53.835694600+00:00,1 +2023-10-24 21:17:53.951786086+00:00,1 +2023-10-24 21:17:54.067405686+00:00,1 +2023-10-24 21:17:54.182702964+00:00,1 +2023-10-24 21:17:54.298257421+00:00,1 +2023-10-24 21:17:54.413424271+00:00,1 +2023-10-24 21:17:54.528416258+00:00,1 +2023-10-24 21:17:54.643752645+00:00,1 +2023-10-24 21:17:54.759072997+00:00,1 +2023-10-24 21:17:54.874705985+00:00,1 +2023-10-24 21:17:54.991082606+00:00,1 +2023-10-24 21:17:55.107039203+00:00,1 +2023-10-24 21:17:55.222308234+00:00,1 +2023-10-24 21:17:55.338218076+00:00,1 +2023-10-24 21:17:55.454256503+00:00,1 +2023-10-24 21:17:55.570251888+00:00,1 +2023-10-24 21:17:55.686933284+00:00,1 +2023-10-24 21:17:55.801894494+00:00,1 +2023-10-24 21:17:55.917329937+00:00,1 +2023-10-24 21:17:56.032665180+00:00,1 +2023-10-24 21:17:56.147672847+00:00,1 +2023-10-24 21:17:56.262917167+00:00,1 +2023-10-24 21:17:56.378201773+00:00,1 +2023-10-24 21:17:56.493681480+00:00,1 +2023-10-24 21:17:56.609428658+00:00,1 +2023-10-24 21:17:56.725772057+00:00,1 +2023-10-24 21:17:56.841256515+00:00,1 +2023-10-24 21:17:56.956645536+00:00,1 +2023-10-24 21:17:57.072130934+00:00,1 +2023-10-24 21:17:57.187789040+00:00,1 +2023-10-24 21:17:57.303214681+00:00,1 +2023-10-24 21:17:57.418843382+00:00,1 +2023-10-24 21:17:57.535097520+00:00,1 +2023-10-24 21:17:57.651075951+00:00,1 +2023-10-24 21:17:57.766367054+00:00,1 +2023-10-24 21:17:57.881626741+00:00,1 +2023-10-24 21:17:57.996762631+00:00,1 +2023-10-24 21:17:58.112022990+00:00,1 +2023-10-24 21:17:58.228348010+00:00,1 +2023-10-24 21:17:58.344797531+00:00,1 +2023-10-24 21:17:58.460292297+00:00,1 +2023-10-24 21:17:58.575268817+00:00,1 +2023-10-24 21:17:58.691209131+00:00,1 +2023-10-24 21:17:58.806887460+00:00,1 +2023-10-24 21:17:58.922910643+00:00,1 +2023-10-24 21:17:59.038421156+00:00,1 +2023-10-24 21:17:59.154216558+00:00,1 +2023-10-24 21:17:59.269216756+00:00,1 +2023-10-24 21:17:59.384574101+00:00,1 +2023-10-24 21:17:59.500476161+00:00,1 +2023-10-24 21:17:59.616090612+00:00,1 +2023-10-24 21:17:59.731632598+00:00,1 +2023-10-24 21:17:59.847647134+00:00,1 +2023-10-24 21:17:59.964116939+00:00,1 +2023-10-24 21:18:00.080537593+00:00,1 +2023-10-24 21:18:00.196204016+00:00,1 +2023-10-24 21:18:00.312786493+00:00,1 +2023-10-24 21:18:00.428833936+00:00,1 +2023-10-24 21:18:00.544627552+00:00,1 +2023-10-24 21:18:00.660807500+00:00,1 +2023-10-24 21:18:00.776423412+00:00,1 +2023-10-24 21:18:00.891939305+00:00,1 +2023-10-24 21:18:01.007455016+00:00,1 +2023-10-24 21:18:01.123319102+00:00,1 +2023-10-24 21:18:01.238636543+00:00,1 +2023-10-24 21:18:01.354322009+00:00,1 +2023-10-24 21:18:01.470113151+00:00,1 +2023-10-24 21:18:01.585985032+00:00,1 +2023-10-24 21:18:01.701445312+00:00,1 +2023-10-24 21:18:01.816095170+00:00,1 +2023-10-24 21:18:01.931466673+00:00,1 +2023-10-24 21:18:02.046429098+00:00,1 +2023-10-24 21:18:02.161808617+00:00,1 +2023-10-24 21:18:02.278252247+00:00,1 +2023-10-24 21:18:02.393481894+00:00,1 +2023-10-24 21:18:02.509089452+00:00,1 +2023-10-24 21:18:02.624264929+00:00,1 +2023-10-24 21:18:02.739929162+00:00,1 +2023-10-24 21:18:02.855959035+00:00,1 +2023-10-24 21:18:02.971532922+00:00,1 +2023-10-24 21:18:03.087310811+00:00,1 +2023-10-24 21:18:03.202703908+00:00,1 +2023-10-24 21:18:03.317997666+00:00,1 +2023-10-24 21:18:03.433867997+00:00,1 +2023-10-24 21:18:03.549528177+00:00,1 +2023-10-24 21:18:03.664891701+00:00,1 +2023-10-24 21:18:03.780344503+00:00,1 +2023-10-24 21:18:03.896627460+00:00,1 +2023-10-24 21:18:04.013011904+00:00,1 +2023-10-24 21:18:04.128516756+00:00,1 +2023-10-24 21:18:04.244179610+00:00,1 +2023-10-24 21:18:04.359371267+00:00,1 +2023-10-24 21:18:04.475211495+00:00,1 +2023-10-24 21:18:04.590771926+00:00,1 +2023-10-24 21:18:04.706100092+00:00,1 +2023-10-24 21:18:04.821803378+00:00,1 +2023-10-24 21:18:04.938031865+00:00,1 +2023-10-24 21:18:05.052251418+00:00,1 +2023-10-24 21:18:05.166153373+00:00,1 +2023-10-24 21:18:08.365365140+00:00,1 +2023-10-24 21:18:08.480243791+00:00,1 +2023-10-24 21:18:08.594618398+00:00,1 +2023-10-24 21:18:08.710004726+00:00,1 +2023-10-24 21:18:09.873541888+00:00,1 +2023-10-24 21:18:09.988981422+00:00,1 +2023-10-24 21:18:10.105019765+00:00,1 +2023-10-24 21:18:10.221329598+00:00,1 +2023-10-24 21:18:10.337849186+00:00,1 +2023-10-24 21:18:10.453037217+00:00,1 +2023-10-24 21:18:10.568159075+00:00,1 +2023-10-24 21:18:10.683074658+00:00,1 +2023-10-24 21:18:10.797550820+00:00,1 +2023-10-24 21:18:10.912120421+00:00,1 +2023-10-24 21:18:11.026999068+00:00,1 +2023-10-24 21:18:11.142000022+00:00,1 +2023-10-24 21:18:11.256679631+00:00,1 +2023-10-24 21:18:11.371905889+00:00,1 +2023-10-24 21:18:11.487195066+00:00,1 +2023-10-24 21:18:11.602756038+00:00,1 +2023-10-24 21:18:11.717774800+00:00,1 +2023-10-24 21:18:11.832312196+00:00,1 +2023-10-24 21:18:11.948281990+00:00,1 +2023-10-24 21:18:12.062798395+00:00,1 +2023-10-24 21:18:12.177749597+00:00,1 +2023-10-24 21:18:12.292866815+00:00,1 +2023-10-24 21:18:16.493069984+00:00,1 +2023-10-24 21:18:16.607821138+00:00,1 +2023-10-24 21:18:16.722829825+00:00,1 +2023-10-24 21:18:16.837229372+00:00,1 +2023-10-24 21:18:16.951421261+00:00,1 +2023-10-24 21:18:17.066510379+00:00,1 +2023-10-24 21:18:17.182390652+00:00,1 +2023-10-24 21:18:17.297517477+00:00,1 +2023-10-24 21:18:17.412508757+00:00,1 +2023-10-24 21:18:17.528694648+00:00,1 +2023-10-24 21:18:19.693151532+00:00,1 +2023-10-24 21:18:19.808573275+00:00,1 +2023-10-24 21:18:19.923128832+00:00,1 +2023-10-24 21:18:20.038459819+00:00,1 +2023-10-24 21:18:20.154016716+00:00,1 +2023-10-24 21:18:20.269010273+00:00,1 +2023-10-24 21:18:20.383441818+00:00,1 +2023-10-24 21:18:20.498533900+00:00,1 +2023-10-24 21:18:20.613802545+00:00,1 +2023-10-24 21:18:20.729320074+00:00,1 +2023-10-24 21:18:20.843336619+00:00,1 +2023-10-24 21:18:20.958412639+00:00,1 +2023-10-24 21:18:22.098367394+00:00,1 +2023-10-24 21:18:23.276242103+00:00,1 +2023-10-24 21:18:23.391562662+00:00,1 +2023-10-24 21:18:23.506424638+00:00,1 +2023-10-24 21:18:23.621265596+00:00,1 +2023-10-24 21:18:23.735395002+00:00,1 +2023-10-24 21:18:23.850539156+00:00,1 +2023-10-24 21:18:23.965828216+00:00,1 +2023-10-24 21:18:24.080967591+00:00,1 +2023-10-24 21:18:24.195698808+00:00,1 +2023-10-24 21:18:24.310981827+00:00,1 +2023-10-24 21:18:24.426288560+00:00,1 +2023-10-24 21:18:24.541148494+00:00,1 +2023-10-24 21:18:24.655856556+00:00,1 +2023-10-24 21:18:24.770652467+00:00,1 +2023-10-24 21:18:24.885260526+00:00,1 +2023-10-24 21:18:25.000356610+00:00,1 +2023-10-24 21:18:25.115283306+00:00,1 +2023-10-24 21:18:25.230307087+00:00,1 +2023-10-24 21:18:25.346005673+00:00,1 +2023-10-24 21:18:25.460880882+00:00,1 +2023-10-24 21:18:25.574997134+00:00,1 +2023-10-24 21:18:25.689398222+00:00,1 +2023-10-24 21:18:25.804424690+00:00,1 +2023-10-24 21:18:25.919734798+00:00,1 +2023-10-24 21:18:26.034574168+00:00,1 +2023-10-24 21:18:26.149815778+00:00,1 +2023-10-24 21:18:26.265715995+00:00,1 +2023-10-24 21:18:26.379802524+00:00,1 +2023-10-24 21:18:26.494892016+00:00,1 +2023-10-24 21:18:26.609188099+00:00,1 +2023-10-24 21:18:26.724155394+00:00,1 +2023-10-24 21:18:26.838113055+00:00,1 +2023-10-24 21:18:26.952733501+00:00,1 +2023-10-24 21:18:27.067982346+00:00,1 +2023-10-24 21:18:27.182440833+00:00,1 +2023-10-24 21:18:27.296677390+00:00,1 +2023-10-24 21:18:27.411837035+00:00,1 +2023-10-24 21:18:27.526903811+00:00,1 +2023-10-24 21:18:27.642534864+00:00,1 +2023-10-24 21:18:27.756834468+00:00,1 +2023-10-24 21:18:27.871137593+00:00,1 +2023-10-24 21:18:27.985947607+00:00,1 +2023-10-24 21:18:28.100103586+00:00,1 +2023-10-24 21:18:28.215311822+00:00,1 +2023-10-24 21:18:28.330848227+00:00,1 +2023-10-24 21:18:28.446179692+00:00,1 +2023-10-24 21:18:28.561284828+00:00,1 +2023-10-24 21:18:28.675635223+00:00,1 +2023-10-24 21:18:28.790178009+00:00,1 +2023-10-24 21:18:28.904406133+00:00,1 +2023-10-24 21:18:29.019113244+00:00,1 +2023-10-24 21:18:29.133920980+00:00,1 +2023-10-24 21:18:29.248306973+00:00,1 +2023-10-24 21:18:29.362320091+00:00,1 +2023-10-24 21:18:29.478061560+00:00,1 +2023-10-24 21:18:29.593232260+00:00,1 +2023-10-24 21:18:32.817561902+00:00,1 +2023-10-24 21:18:32.933300928+00:00,1 +2023-10-24 21:18:33.048314604+00:00,1 +2023-10-24 21:18:33.162604387+00:00,1 +2023-10-24 21:18:33.278091104+00:00,1 +2023-10-24 21:18:33.393301024+00:00,1 +2023-10-24 21:18:33.508593678+00:00,1 +2023-10-24 21:18:33.623656432+00:00,1 +2023-10-24 21:18:33.739027393+00:00,1 +2023-10-24 21:18:33.855270442+00:00,1 +2023-10-24 21:18:33.969943274+00:00,1 +2023-10-24 21:18:34.085272462+00:00,1 +2023-10-24 21:18:34.200880587+00:00,1 +2023-10-24 21:18:34.315763636+00:00,1 +2023-10-24 21:18:34.431207705+00:00,1 +2023-10-24 21:18:34.545652933+00:00,1 +2023-10-24 21:18:34.660511071+00:00,1 +2023-10-24 21:18:34.775994768+00:00,1 +2023-10-24 21:18:34.892844402+00:00,1 +2023-10-24 21:18:35.008632041+00:00,1 +2023-10-24 21:18:35.124054576+00:00,1 +2023-10-24 21:18:35.239164395+00:00,1 +2023-10-24 21:18:35.354627108+00:00,1 +2023-10-24 21:18:35.469813094+00:00,1 +2023-10-24 21:18:35.584704437+00:00,1 +2023-10-24 21:18:35.700268489+00:00,1 +2023-10-24 21:18:35.816839491+00:00,1 +2023-10-24 21:18:35.932321864+00:00,1 +2023-10-24 21:18:36.048349077+00:00,1 +2023-10-24 21:18:36.164066828+00:00,1 +2023-10-24 21:18:36.279912381+00:00,1 +2023-10-24 21:18:36.395818607+00:00,1 +2023-10-24 21:18:36.511311713+00:00,1 +2023-10-24 21:18:36.625558382+00:00,1 +2023-10-24 21:18:36.740125810+00:00,1 +2023-10-24 21:18:36.855524895+00:00,1 +2023-10-24 21:18:36.970199544+00:00,1 +2023-10-24 21:18:37.084951843+00:00,1 +2023-10-24 21:18:37.200114414+00:00,1 +2023-10-24 21:18:37.315171615+00:00,1 +2023-10-24 21:18:37.430919076+00:00,1 +2023-10-24 21:18:37.545889248+00:00,1 +2023-10-24 21:18:37.661475622+00:00,1 +2023-10-24 21:18:37.775985258+00:00,1 +2023-10-24 21:18:37.890655554+00:00,1 +2023-10-24 21:18:38.005206541+00:00,1 +2023-10-24 21:18:38.120200165+00:00,1 +2023-10-24 21:18:38.235706126+00:00,1 +2023-10-24 21:18:38.350355827+00:00,1 +2023-10-24 21:18:38.465215591+00:00,1 +2023-10-24 21:18:38.579394609+00:00,1 +2023-10-24 21:18:38.694629020+00:00,1 +2023-10-24 21:18:38.809290889+00:00,1 +2023-10-24 21:18:38.924336989+00:00,1 +2023-10-24 21:18:39.039734314+00:00,1 +2023-10-24 21:18:39.155158023+00:00,1 +2023-10-24 21:18:39.270511370+00:00,1 +2023-10-24 21:18:39.386024748+00:00,1 +2023-10-24 21:18:39.501658068+00:00,1 +2023-10-24 21:18:39.617556314+00:00,1 +2023-10-24 21:18:39.732961117+00:00,1 +2023-10-24 21:18:39.848662319+00:00,1 +2023-10-24 21:18:39.964412759+00:00,1 +2023-10-24 21:18:40.079915422+00:00,1 +2023-10-24 21:18:40.195536707+00:00,1 +2023-10-24 21:18:40.311847194+00:00,1 +2023-10-24 21:18:40.427707970+00:00,1 +2023-10-24 21:18:40.542308065+00:00,1 +2023-10-24 21:18:40.657614743+00:00,1 +2023-10-24 21:18:40.773121852+00:00,1 +2023-10-24 21:18:40.889387802+00:00,1 +2023-10-24 21:18:41.005050048+00:00,1 +2023-10-24 21:18:41.120888676+00:00,1 +2023-10-24 21:18:41.236607537+00:00,1 +2023-10-24 21:18:41.352143781+00:00,1 +2023-10-24 21:18:41.468038632+00:00,1 +2023-10-24 21:18:41.583626087+00:00,1 +2023-10-24 21:18:41.699148533+00:00,1 +2023-10-24 21:18:41.814791999+00:00,1 +2023-10-24 21:18:41.930297484+00:00,1 +2023-10-24 21:18:42.045889281+00:00,1 +2023-10-24 21:18:42.161568037+00:00,1 +2023-10-24 21:18:42.277422784+00:00,1 +2023-10-24 21:18:42.392790348+00:00,1 +2023-10-24 21:18:42.508375584+00:00,1 +2023-10-24 21:18:42.623806088+00:00,1 +2023-10-24 21:18:42.739304701+00:00,1 +2023-10-24 21:18:42.855813872+00:00,1 +2023-10-24 21:18:42.971197669+00:00,1 +2023-10-24 21:18:43.086933509+00:00,1 +2023-10-24 21:18:43.202551998+00:00,1 +2023-10-24 21:18:43.318800942+00:00,1 +2023-10-24 21:18:43.434348241+00:00,1 +2023-10-24 21:18:43.549578629+00:00,1 +2023-10-24 21:18:43.665505061+00:00,1 +2023-10-24 21:18:43.780865763+00:00,1 +2023-10-24 21:18:43.896446087+00:00,1 +2023-10-24 21:18:44.011725574+00:00,1 +2023-10-24 21:18:44.127909708+00:00,1 +2023-10-24 21:18:44.243360184+00:00,1 +2023-10-24 21:18:44.358663628+00:00,1 +2023-10-24 21:18:44.474365523+00:00,1 +2023-10-24 21:18:44.590547914+00:00,1 +2023-10-24 21:18:44.706074366+00:00,1 +2023-10-24 21:18:44.822873024+00:00,1 +2023-10-24 21:18:44.938574693+00:00,1 +2023-10-24 21:18:45.053892997+00:00,1 +2023-10-24 21:18:45.169412192+00:00,1 +2023-10-24 21:18:45.284966871+00:00,1 +2023-10-24 21:18:45.400601456+00:00,1 +2023-10-24 21:18:45.515840753+00:00,1 +2023-10-24 21:18:45.630708051+00:00,1 +2023-10-24 21:18:45.745849078+00:00,1 +2023-10-24 21:18:45.861407241+00:00,1 +2023-10-24 21:18:45.976705467+00:00,1 +2023-10-24 21:18:46.091482710+00:00,1 +2023-10-24 21:18:46.206630174+00:00,1 +2023-10-24 21:18:46.322597247+00:00,1 +2023-10-24 21:18:46.438845494+00:00,1 +2023-10-24 21:18:46.554895125+00:00,1 +2023-10-24 21:18:46.671808887+00:00,1 +2023-10-24 21:18:46.788566381+00:00,1 +2023-10-24 21:18:46.905242279+00:00,1 +2023-10-24 21:18:47.020750025+00:00,1 +2023-10-24 21:18:47.136825477+00:00,1 +2023-10-24 21:18:47.252918145+00:00,1 +2023-10-24 21:18:47.368880625+00:00,1 +2023-10-24 21:18:47.484626769+00:00,1 +2023-10-24 21:18:47.600034736+00:00,1 +2023-10-24 21:18:47.714898374+00:00,1 +2023-10-24 21:18:47.830059462+00:00,1 +2023-10-24 21:18:47.945839439+00:00,1 +2023-10-24 21:18:48.061668933+00:00,1 +2023-10-24 21:18:48.177625939+00:00,1 +2023-10-24 21:18:48.293191206+00:00,1 +2023-10-24 21:18:48.408388824+00:00,1 +2023-10-24 21:18:48.524145535+00:00,1 +2023-10-24 21:18:48.640069317+00:00,1 +2023-10-24 21:18:48.755326601+00:00,1 +2023-10-24 21:18:48.871469384+00:00,1 +2023-10-24 21:18:48.987066929+00:00,1 +2023-10-24 21:18:49.103090138+00:00,1 +2023-10-24 21:18:49.218291095+00:00,1 +2023-10-24 21:18:49.334693211+00:00,1 +2023-10-24 21:18:49.451194308+00:00,1 +2023-10-24 21:18:49.566742400+00:00,1 +2023-10-24 21:18:49.682151190+00:00,1 +2023-10-24 21:18:49.797378162+00:00,1 +2023-10-24 21:18:49.914284724+00:00,1 +2023-10-24 21:18:50.029961084+00:00,1 +2023-10-24 21:18:50.144966230+00:00,1 +2023-10-24 21:18:50.259564743+00:00,1 +2023-10-24 21:18:50.375259991+00:00,1 +2023-10-24 21:18:50.493296273+00:00,1 +2023-10-24 21:18:50.608838708+00:00,1 +2023-10-24 21:18:50.724273187+00:00,1 +2023-10-24 21:18:50.839783512+00:00,1 +2023-10-24 21:18:50.956159586+00:00,1 +2023-10-24 21:18:51.071959475+00:00,1 +2023-10-24 21:18:51.187472129+00:00,1 +2023-10-24 21:18:51.303422967+00:00,1 +2023-10-24 21:18:51.418782587+00:00,1 +2023-10-24 21:18:51.534228541+00:00,1 +2023-10-24 21:18:51.649839830+00:00,1 +2023-10-24 21:18:51.765431160+00:00,1 +2023-10-24 21:18:51.880859179+00:00,1 +2023-10-24 21:18:51.997789410+00:00,1 +2023-10-24 21:18:52.113795212+00:00,1 +2023-10-24 21:18:52.230316268+00:00,1 +2023-10-24 21:18:52.345575513+00:00,1 +2023-10-24 21:18:52.461131080+00:00,1 +2023-10-24 21:18:52.576540990+00:00,1 +2023-10-24 21:18:52.691774357+00:00,1 +2023-10-24 21:18:52.807511121+00:00,1 +2023-10-24 21:18:52.922834854+00:00,1 +2023-10-24 21:18:53.038412809+00:00,1 +2023-10-24 21:18:53.154380361+00:00,1 +2023-10-24 21:18:53.270023846+00:00,1 +2023-10-24 21:18:53.385997632+00:00,1 +2023-10-24 21:18:53.501766380+00:00,1 +2023-10-24 21:18:53.616519259+00:00,1 +2023-10-24 21:18:53.731332350+00:00,1 +2023-10-24 21:18:53.847747589+00:00,1 +2023-10-24 21:18:53.962703690+00:00,1 +2023-10-24 21:18:54.077872229+00:00,1 +2023-10-24 21:18:54.193212180+00:00,1 +2023-10-24 21:18:54.308443815+00:00,1 +2023-10-24 21:18:54.424015079+00:00,1 +2023-10-24 21:18:54.539010308+00:00,1 +2023-10-24 21:18:54.654660988+00:00,1 +2023-10-24 21:18:54.769820367+00:00,1 +2023-10-24 21:18:54.885073897+00:00,1 +2023-10-24 21:18:55.000864981+00:00,1 +2023-10-24 21:18:55.117240115+00:00,1 +2023-10-24 21:18:55.232980250+00:00,1 +2023-10-24 21:18:55.349390144+00:00,1 +2023-10-24 21:18:55.465060580+00:00,1 +2023-10-24 21:18:55.580093138+00:00,1 +2023-10-24 21:18:55.695085915+00:00,1 +2023-10-24 21:18:55.810909043+00:00,1 +2023-10-24 21:18:55.926255204+00:00,1 +2023-10-24 21:18:56.041577089+00:00,1 +2023-10-24 21:18:56.157209275+00:00,1 +2023-10-24 21:18:56.272815922+00:00,1 +2023-10-24 21:18:56.388521006+00:00,1 +2023-10-24 21:18:56.503917811+00:00,1 +2023-10-24 21:18:56.619238560+00:00,1 +2023-10-24 21:18:56.734872008+00:00,1 +2023-10-24 21:18:56.850846446+00:00,1 +2023-10-24 21:18:56.966503162+00:00,1 +2023-10-24 21:18:57.081867429+00:00,1 +2023-10-24 21:18:57.197461126+00:00,1 +2023-10-24 21:18:57.313184624+00:00,1 +2023-10-24 21:18:57.429665965+00:00,1 +2023-10-24 21:18:57.545139534+00:00,1 +2023-10-24 21:18:57.660826768+00:00,1 +2023-10-24 21:18:57.777517895+00:00,1 +2023-10-24 21:18:57.893027461+00:00,1 +2023-10-24 21:18:58.008625683+00:00,1 +2023-10-24 21:18:58.124280796+00:00,1 +2023-10-24 21:18:58.239600540+00:00,1 +2023-10-24 21:18:58.356166849+00:00,1 +2023-10-24 21:18:58.471327704+00:00,1 +2023-10-24 21:18:58.587187005+00:00,1 +2023-10-24 21:18:58.702721555+00:00,1 +2023-10-24 21:18:58.818228091+00:00,1 +2023-10-24 21:18:58.934323135+00:00,1 +2023-10-24 21:18:59.049826836+00:00,1 +2023-10-24 21:18:59.166252072+00:00,1 +2023-10-24 21:18:59.281942547+00:00,1 +2023-10-24 21:18:59.397762868+00:00,1 +2023-10-24 21:18:59.513466151+00:00,1 +2023-10-24 21:18:59.628522939+00:00,1 +2023-10-24 21:18:59.743344386+00:00,1 +2023-10-24 21:18:59.859102175+00:00,1 +2023-10-24 21:18:59.975244955+00:00,1 +2023-10-24 21:19:00.091057891+00:00,1 +2023-10-24 21:19:00.206366312+00:00,1 +2023-10-24 21:19:00.322644813+00:00,1 +2023-10-24 21:19:00.438177731+00:00,1 +2023-10-24 21:19:00.553067496+00:00,1 +2023-10-24 21:19:00.668053127+00:00,1 +2023-10-24 21:19:00.782983908+00:00,1 +2023-10-24 21:19:00.898483346+00:00,1 +2023-10-24 21:19:01.013466442+00:00,1 +2023-10-24 21:19:01.128709246+00:00,1 +2023-10-24 21:19:01.243813443+00:00,1 +2023-10-24 21:19:01.359041917+00:00,1 +2023-10-24 21:19:01.475359824+00:00,1 +2023-10-24 21:19:01.591479336+00:00,1 +2023-10-24 21:19:01.707231753+00:00,1 +2023-10-24 21:19:01.823165914+00:00,1 +2023-10-24 21:19:01.938703169+00:00,1 +2023-10-24 21:19:02.054033670+00:00,1 +2023-10-24 21:19:02.170008694+00:00,1 +2023-10-24 21:19:02.285520093+00:00,1 +2023-10-24 21:19:02.400819219+00:00,1 +2023-10-24 21:19:02.516639624+00:00,1 +2023-10-24 21:19:02.632462833+00:00,1 +2023-10-24 21:19:02.748544553+00:00,1 +2023-10-24 21:19:02.864278280+00:00,1 +2023-10-24 21:19:02.980453957+00:00,1 +2023-10-24 21:19:03.095763138+00:00,1 +2023-10-24 21:19:03.211483452+00:00,1 +2023-10-24 21:19:03.326627536+00:00,1 +2023-10-24 21:19:03.441736427+00:00,1 +2023-10-24 21:19:03.557483677+00:00,1 +2023-10-24 21:19:03.673103599+00:00,1 +2023-10-24 21:19:03.788335455+00:00,1 +2023-10-24 21:19:03.903861474+00:00,1 +2023-10-24 21:19:04.019701927+00:00,1 +2023-10-24 21:19:04.135344059+00:00,1 +2023-10-24 21:19:04.251676768+00:00,1 +2023-10-24 21:19:04.367228137+00:00,1 +2023-10-24 21:19:04.482748227+00:00,1 +2023-10-24 21:19:04.598111138+00:00,1 +2023-10-24 21:19:04.713657263+00:00,1 +2023-10-24 21:19:04.828993717+00:00,1 +2023-10-24 21:19:04.944739351+00:00,1 +2023-10-24 21:19:05.059679766+00:00,1 +2023-10-24 21:19:05.176215702+00:00,1 +2023-10-24 21:19:05.291856935+00:00,1 +2023-10-24 21:19:05.409073125+00:00,1 +2023-10-24 21:19:05.525041992+00:00,1 +2023-10-24 21:19:05.640546583+00:00,1 +2023-10-24 21:19:05.757516471+00:00,1 +2023-10-24 21:19:05.873830177+00:00,1 +2023-10-24 21:19:05.989354086+00:00,1 +2023-10-24 21:19:06.104882133+00:00,1 +2023-10-24 21:19:06.220405883+00:00,1 +2023-10-24 21:19:06.335816375+00:00,1 +2023-10-24 21:19:06.451098117+00:00,1 +2023-10-24 21:19:06.566009941+00:00,1 +2023-10-24 21:19:06.681203225+00:00,1 +2023-10-24 21:19:06.796559783+00:00,1 +2023-10-24 21:19:06.911995931+00:00,1 +2023-10-24 21:19:07.027283825+00:00,1 +2023-10-24 21:19:07.142502618+00:00,1 +2023-10-24 21:19:07.257654228+00:00,1 +2023-10-24 21:19:07.373300502+00:00,1 +2023-10-24 21:19:07.488980867+00:00,1 +2023-10-24 21:19:07.604183282+00:00,1 +2023-10-24 21:19:07.720464826+00:00,1 +2023-10-24 21:19:07.836210903+00:00,1 +2023-10-24 21:19:07.951443081+00:00,1 +2023-10-24 21:19:08.067061191+00:00,1 +2023-10-24 21:19:08.182714035+00:00,1 +2023-10-24 21:19:08.298477750+00:00,1 +2023-10-24 21:19:08.414132176+00:00,1 +2023-10-24 21:19:08.529153668+00:00,1 +2023-10-24 21:19:08.645733961+00:00,1 +2023-10-24 21:19:08.760725430+00:00,1 +2023-10-24 21:19:08.876425664+00:00,1 +2023-10-24 21:19:08.992099563+00:00,1 +2023-10-24 21:19:09.107363664+00:00,1 +2023-10-24 21:19:09.224253842+00:00,1 +2023-10-24 21:19:09.340252412+00:00,1 +2023-10-24 21:19:09.456523767+00:00,1 +2023-10-24 21:19:09.571647470+00:00,1 +2023-10-24 21:19:09.687981752+00:00,1 +2023-10-24 21:19:09.803721542+00:00,1 +2023-10-24 21:19:09.919173383+00:00,1 +2023-10-24 21:19:10.034391110+00:00,1 +2023-10-24 21:19:10.149716485+00:00,1 +2023-10-24 21:19:10.265591822+00:00,1 +2023-10-24 21:19:10.380820878+00:00,1 +2023-10-24 21:19:10.496012795+00:00,1 +2023-10-24 21:19:10.611486630+00:00,1 +2023-10-24 21:19:10.727315856+00:00,1 +2023-10-24 21:19:10.844090536+00:00,1 +2023-10-24 21:19:10.960876205+00:00,1 +2023-10-24 21:19:11.076368995+00:00,1 +2023-10-24 21:19:11.192196963+00:00,1 +2023-10-24 21:19:11.308061046+00:00,1 +2023-10-24 21:19:11.424202824+00:00,1 +2023-10-24 21:19:11.539298770+00:00,1 +2023-10-24 21:19:11.655630443+00:00,1 +2023-10-24 21:19:11.771033781+00:00,1 +2023-10-24 21:19:11.886605726+00:00,1 +2023-10-24 21:19:12.002915248+00:00,1 +2023-10-24 21:19:12.118503803+00:00,1 +2023-10-24 21:19:12.234168359+00:00,1 +2023-10-24 21:19:12.349627437+00:00,1 +2023-10-24 21:19:12.465112041+00:00,1 +2023-10-24 21:19:12.580531108+00:00,1 +2023-10-24 21:19:12.696182958+00:00,1 +2023-10-24 21:19:12.812276285+00:00,1 +2023-10-24 21:19:12.928813238+00:00,1 +2023-10-24 21:19:13.045729487+00:00,1 +2023-10-24 21:19:13.161818585+00:00,1 +2023-10-24 21:19:13.277549218+00:00,1 +2023-10-24 21:19:13.392877562+00:00,1 +2023-10-24 21:19:13.508327581+00:00,1 +2023-10-24 21:19:13.624374495+00:00,1 +2023-10-24 21:19:13.739914925+00:00,1 +2023-10-24 21:19:13.855707142+00:00,1 +2023-10-24 21:19:13.971118694+00:00,1 +2023-10-24 21:19:14.087145821+00:00,1 +2023-10-24 21:19:14.203036034+00:00,1 +2023-10-24 21:19:14.319311917+00:00,1 +2023-10-24 21:19:14.435365257+00:00,1 +2023-10-24 21:19:14.550897704+00:00,1 +2023-10-24 21:19:14.666734203+00:00,1 +2023-10-24 21:19:14.783235861+00:00,1 +2023-10-24 21:19:14.898894957+00:00,1 +2023-10-24 21:19:15.014195535+00:00,1 +2023-10-24 21:19:15.129174859+00:00,1 +2023-10-24 21:19:15.244472582+00:00,1 +2023-10-24 21:19:15.360450716+00:00,1 +2023-10-24 21:19:15.475379646+00:00,1 +2023-10-24 21:19:15.590876532+00:00,1 +2023-10-24 21:19:15.706346631+00:00,1 +2023-10-24 21:19:15.821413471+00:00,1 +2023-10-24 21:19:15.937161766+00:00,1 +2023-10-24 21:19:16.052950851+00:00,1 +2023-10-24 21:19:16.168351523+00:00,1 +2023-10-24 21:19:16.283807327+00:00,1 +2023-10-24 21:19:16.398750716+00:00,1 +2023-10-24 21:19:16.513387232+00:00,1 +2023-10-24 21:19:16.627843601+00:00,1 +2023-10-24 21:19:16.742385862+00:00,1 +2023-10-24 21:19:16.856939649+00:00,1 +2023-10-24 21:19:16.972541155+00:00,1 +2023-10-24 21:19:17.086979414+00:00,1 +2023-10-24 21:19:17.201361173+00:00,1 +2023-10-24 21:19:17.315816839+00:00,1 +2023-10-24 21:19:17.430021910+00:00,1 +2023-10-24 21:19:17.544499461+00:00,1 +2023-10-24 21:19:17.659215871+00:00,1 +2023-10-24 21:19:17.773818884+00:00,1 +2023-10-24 21:19:17.889429091+00:00,1 +2023-10-24 21:19:18.005001021+00:00,1 +2023-10-24 21:19:18.120817523+00:00,1 +2023-10-24 21:19:19.261497603+00:00,1 +2023-10-24 21:19:19.376986007+00:00,1 +2023-10-24 21:19:19.491782504+00:00,1 +2023-10-24 21:19:19.606330155+00:00,1 +2023-10-24 21:19:19.721036292+00:00,1 +2023-10-24 21:19:19.836047473+00:00,1 +2023-10-24 21:19:19.950309025+00:00,1 +2023-10-24 21:19:20.065734747+00:00,1 +2023-10-24 21:19:20.181250469+00:00,1 +2023-10-24 21:19:20.296124281+00:00,1 +2023-10-24 21:19:20.410588030+00:00,1 +2023-10-24 21:19:21.554678966+00:00,1 +2023-10-24 21:19:21.669156869+00:00,1 +2023-10-24 21:19:21.783291225+00:00,1 +2023-10-24 21:19:21.898392756+00:00,1 +2023-10-24 21:19:22.012788581+00:00,1 +2023-10-24 21:19:22.126761141+00:00,1 +2023-10-24 21:19:22.241315580+00:00,1 +2023-10-24 21:19:22.355918525+00:00,1 +2023-10-24 21:19:22.470996282+00:00,1 +2023-10-24 21:19:22.585971677+00:00,1 +2023-10-24 21:19:22.700903090+00:00,1 +2023-10-24 21:19:22.816284684+00:00,1 +2023-10-24 21:19:22.931408310+00:00,1 +2023-10-24 21:19:23.046255301+00:00,1 +2023-10-24 21:19:23.161711463+00:00,1 +2023-10-24 21:19:23.277196270+00:00,1 +2023-10-24 21:19:23.392828116+00:00,1 +2023-10-24 21:19:23.508111682+00:00,1 +2023-10-24 21:19:23.623456786+00:00,1 +2023-10-24 21:19:23.738482855+00:00,1 +2023-10-24 21:19:23.853104437+00:00,1 +2023-10-24 21:19:23.967402703+00:00,1 +2023-10-24 21:19:24.082196466+00:00,1 +2023-10-24 21:19:24.197220779+00:00,1 +2023-10-24 21:19:24.312011480+00:00,1 +2023-10-24 21:19:24.427995056+00:00,1 +2023-10-24 21:19:24.543505477+00:00,1 +2023-10-24 21:19:24.659780252+00:00,1 +2023-10-24 21:19:24.775441135+00:00,1 +2023-10-24 21:19:24.890899400+00:00,1 +2023-10-24 21:19:25.008093717+00:00,1 +2023-10-24 21:19:25.124173819+00:00,1 +2023-10-24 21:19:25.239990710+00:00,1 +2023-10-24 21:19:25.356617777+00:00,1 +2023-10-24 21:19:25.473364042+00:00,1 +2023-10-24 21:19:25.589350484+00:00,1 +2023-10-24 21:19:25.704521793+00:00,1 +2023-10-24 21:19:25.820071898+00:00,1 +2023-10-24 21:19:25.936078274+00:00,1 +2023-10-24 21:19:26.051570358+00:00,1 +2023-10-24 21:19:26.167656394+00:00,1 +2023-10-24 21:19:26.283550259+00:00,1 +2023-10-24 21:19:26.400042102+00:00,1 +2023-10-24 21:19:26.516329076+00:00,1 +2023-10-24 21:19:26.631798819+00:00,1 +2023-10-24 21:19:26.747220282+00:00,1 +2023-10-24 21:19:26.862814982+00:00,1 +2023-10-24 21:19:26.978461930+00:00,1 +2023-10-24 21:19:27.093221111+00:00,1 +2023-10-24 21:19:27.208713912+00:00,1 +2023-10-24 21:19:27.323879840+00:00,1 +2023-10-24 21:19:27.438952240+00:00,1 +2023-10-24 21:19:27.553916759+00:00,1 +2023-10-24 21:19:27.669128142+00:00,1 +2023-10-24 21:19:27.784478745+00:00,1 +2023-10-24 21:19:27.899971690+00:00,1 +2023-10-24 21:19:28.015685062+00:00,1 +2023-10-24 21:19:28.130980189+00:00,1 +2023-10-24 21:19:28.246720407+00:00,1 +2023-10-24 21:19:28.362735466+00:00,1 +2023-10-24 21:19:28.477540565+00:00,1 +2023-10-24 21:19:28.592193085+00:00,1 +2023-10-24 21:19:28.707132088+00:00,1 +2023-10-24 21:19:28.822488552+00:00,1 +2023-10-24 21:19:28.938910649+00:00,1 +2023-10-24 21:19:29.054758125+00:00,1 +2023-10-24 21:19:29.169811104+00:00,1 +2023-10-24 21:19:29.285776588+00:00,1 +2023-10-24 21:19:29.402446199+00:00,1 +2023-10-24 21:19:29.518332637+00:00,1 +2023-10-24 21:19:29.634549562+00:00,1 +2023-10-24 21:19:29.751365135+00:00,1 +2023-10-24 21:19:29.867464331+00:00,1 +2023-10-24 21:19:29.983239472+00:00,1 +2023-10-24 21:19:30.098835250+00:00,1 +2023-10-24 21:19:30.214284579+00:00,1 +2023-10-24 21:19:30.330901560+00:00,1 +2023-10-24 21:19:30.446225637+00:00,1 +2023-10-24 21:19:30.562101942+00:00,1 +2023-10-24 21:19:30.677756411+00:00,1 +2023-10-24 21:19:30.793281798+00:00,1 +2023-10-24 21:19:30.910073480+00:00,1 +2023-10-24 21:19:31.026494040+00:00,1 +2023-10-24 21:19:31.142462662+00:00,1 +2023-10-24 21:19:31.258125832+00:00,1 +2023-10-24 21:19:31.374245951+00:00,1 +2023-10-24 21:19:31.490961656+00:00,1 +2023-10-24 21:19:31.606592771+00:00,1 +2023-10-24 21:19:31.722256784+00:00,1 +2023-10-24 21:19:31.838164054+00:00,1 +2023-10-24 21:19:31.954772804+00:00,1 +2023-10-24 21:19:32.070552305+00:00,1 +2023-10-24 21:19:32.186255766+00:00,1 +2023-10-24 21:19:32.301024304+00:00,1 +2023-10-24 21:19:32.416071851+00:00,1 +2023-10-24 21:19:32.531131661+00:00,1 +2023-10-24 21:19:32.645896197+00:00,1 +2023-10-24 21:19:32.762352869+00:00,1 +2023-10-24 21:19:32.878272448+00:00,1 +2023-10-24 21:19:32.993176887+00:00,1 +2023-10-24 21:19:33.108730611+00:00,1 +2023-10-24 21:19:33.225221480+00:00,1 +2023-10-24 21:19:33.341071358+00:00,1 +2023-10-24 21:19:33.456132477+00:00,1 +2023-10-24 21:19:33.571064509+00:00,1 +2023-10-24 21:19:33.686982526+00:00,1 +2023-10-24 21:19:33.804459677+00:00,1 +2023-10-24 21:19:33.920632293+00:00,1 +2023-10-24 21:19:34.036543586+00:00,1 +2023-10-24 21:19:34.153314210+00:00,1 +2023-10-24 21:19:34.268825542+00:00,1 +2023-10-24 21:19:34.384720558+00:00,1 +2023-10-24 21:19:34.500112195+00:00,1 +2023-10-24 21:19:34.615846515+00:00,1 +2023-10-24 21:19:34.731352594+00:00,1 +2023-10-24 21:19:34.847265042+00:00,1 +2023-10-24 21:19:34.963054278+00:00,1 +2023-10-24 21:19:35.079032432+00:00,1 +2023-10-24 21:19:35.194867957+00:00,1 +2023-10-24 21:19:35.310893339+00:00,1 +2023-10-24 21:19:35.426701697+00:00,1 +2023-10-24 21:19:35.542318567+00:00,1 +2023-10-24 21:19:35.657649007+00:00,1 +2023-10-24 21:19:35.773345159+00:00,1 +2023-10-24 21:19:35.888816971+00:00,1 +2023-10-24 21:19:36.004852752+00:00,1 +2023-10-24 21:19:36.121463515+00:00,1 +2023-10-24 21:19:36.236551238+00:00,1 +2023-10-24 21:19:36.352131733+00:00,1 +2023-10-24 21:19:36.467760078+00:00,1 +2023-10-24 21:19:36.583297265+00:00,1 +2023-10-24 21:19:36.698804010+00:00,1 +2023-10-24 21:19:36.813980448+00:00,1 +2023-10-24 21:19:36.929588063+00:00,1 +2023-10-24 21:19:37.045273866+00:00,1 +2023-10-24 21:19:37.161649653+00:00,1 +2023-10-24 21:19:37.277839187+00:00,1 +2023-10-24 21:19:37.393398100+00:00,1 +2023-10-24 21:19:37.508739505+00:00,1 +2023-10-24 21:19:37.624134319+00:00,1 +2023-10-24 21:19:37.739803498+00:00,1 +2023-10-24 21:19:37.855391487+00:00,1 +2023-10-24 21:19:37.971079479+00:00,1 +2023-10-24 21:19:38.087722072+00:00,1 +2023-10-24 21:19:38.202764122+00:00,1 +2023-10-24 21:19:38.318261352+00:00,1 +2023-10-24 21:19:38.434254059+00:00,1 +2023-10-24 21:19:38.550712383+00:00,1 +2023-10-24 21:19:38.667655526+00:00,1 +2023-10-24 21:19:38.783827716+00:00,1 +2023-10-24 21:19:38.900025133+00:00,1 +2023-10-24 21:19:39.015820569+00:00,1 +2023-10-24 21:19:39.131271333+00:00,1 +2023-10-24 21:19:39.247287923+00:00,1 +2023-10-24 21:19:39.362974724+00:00,1 +2023-10-24 21:19:39.478495733+00:00,1 +2023-10-24 21:19:39.594151807+00:00,1 +2023-10-24 21:19:39.709259942+00:00,1 +2023-10-24 21:19:39.824913210+00:00,1 +2023-10-24 21:19:39.940374095+00:00,1 +2023-10-24 21:19:40.055536561+00:00,1 +2023-10-24 21:19:40.170774895+00:00,1 +2023-10-24 21:19:40.285645260+00:00,1 +2023-10-24 21:19:40.400738354+00:00,1 +2023-10-24 21:19:40.516512921+00:00,1 +2023-10-24 21:19:40.632123060+00:00,1 +2023-10-24 21:19:40.747969143+00:00,1 +2023-10-24 21:19:40.864028517+00:00,1 +2023-10-24 21:19:40.980604347+00:00,1 +2023-10-24 21:19:41.097164326+00:00,1 +2023-10-24 21:19:41.212635258+00:00,1 +2023-10-24 21:19:41.327700740+00:00,1 +2023-10-24 21:19:41.443156340+00:00,1 +2023-10-24 21:19:41.558117463+00:00,1 +2023-10-24 21:19:41.673624211+00:00,1 +2023-10-24 21:19:41.789147348+00:00,1 +2023-10-24 21:19:41.904747974+00:00,1 +2023-10-24 21:19:42.020355679+00:00,1 +2023-10-24 21:19:42.136544622+00:00,1 +2023-10-24 21:19:42.251871838+00:00,1 +2023-10-24 21:19:42.367792820+00:00,1 +2023-10-24 21:19:42.483743173+00:00,1 +2023-10-24 21:19:42.599061644+00:00,1 +2023-10-24 21:19:42.714220500+00:00,1 +2023-10-24 21:19:42.830501776+00:00,1 +2023-10-24 21:19:42.946355227+00:00,1 +2023-10-24 21:19:43.063147817+00:00,1 +2023-10-24 21:19:43.178560083+00:00,1 +2023-10-24 21:19:43.295406577+00:00,1 +2023-10-24 21:19:43.410668708+00:00,1 +2023-10-24 21:19:43.526132563+00:00,1 +2023-10-24 21:19:43.641720474+00:00,1 +2023-10-24 21:19:43.757277430+00:00,1 +2023-10-24 21:19:43.872894321+00:00,1 +2023-10-24 21:19:43.989286467+00:00,1 +2023-10-24 21:19:44.104714094+00:00,1 +2023-10-24 21:19:44.219971393+00:00,1 +2023-10-24 21:19:44.335386691+00:00,1 +2023-10-24 21:19:44.450782266+00:00,1 +2023-10-24 21:19:44.566224455+00:00,1 +2023-10-24 21:19:44.682188202+00:00,1 +2023-10-24 21:19:44.796993594+00:00,1 +2023-10-24 21:19:44.913846031+00:00,1 +2023-10-24 21:19:45.029193085+00:00,1 +2023-10-24 21:19:45.144492617+00:00,1 +2023-10-24 21:19:45.259568393+00:00,1 +2023-10-24 21:19:45.375781073+00:00,1 +2023-10-24 21:19:45.491418290+00:00,1 +2023-10-24 21:19:45.607136081+00:00,1 +2023-10-24 21:19:45.722558373+00:00,1 +2023-10-24 21:19:45.837730649+00:00,1 +2023-10-24 21:19:45.953588539+00:00,1 +2023-10-24 21:19:46.068707179+00:00,1 +2023-10-24 21:19:46.184485125+00:00,1 +2023-10-24 21:19:46.299846464+00:00,1 +2023-10-24 21:19:46.415171623+00:00,1 +2023-10-24 21:19:46.530793372+00:00,1 +2023-10-24 21:19:46.646460723+00:00,1 +2023-10-24 21:19:46.761934855+00:00,1 +2023-10-24 21:19:46.877525785+00:00,1 +2023-10-24 21:19:46.993431966+00:00,1 +2023-10-24 21:19:47.110050542+00:00,1 +2023-10-24 21:19:47.226565723+00:00,1 +2023-10-24 21:19:47.342115858+00:00,1 +2023-10-24 21:19:47.457196862+00:00,1 +2023-10-24 21:19:47.573028806+00:00,1 +2023-10-24 21:19:47.688090644+00:00,1 +2023-10-24 21:19:47.803486751+00:00,1 +2023-10-24 21:19:47.919404286+00:00,1 +2023-10-24 21:19:48.035409835+00:00,1 +2023-10-24 21:19:48.151053877+00:00,1 +2023-10-24 21:19:48.266696947+00:00,1 +2023-10-24 21:19:48.383043323+00:00,1 +2023-10-24 21:19:48.498650157+00:00,1 +2023-10-24 21:19:48.614680654+00:00,1 +2023-10-24 21:19:48.730424875+00:00,1 +2023-10-24 21:19:48.846742856+00:00,1 +2023-10-24 21:19:48.962414147+00:00,1 +2023-10-24 21:19:49.078058856+00:00,1 +2023-10-24 21:19:49.193740547+00:00,1 +2023-10-24 21:19:49.308645476+00:00,1 +2023-10-24 21:19:49.424754985+00:00,1 +2023-10-24 21:19:49.540001166+00:00,1 +2023-10-24 21:19:49.655014710+00:00,1 +2023-10-24 21:19:49.770771757+00:00,1 +2023-10-24 21:19:49.886981954+00:00,1 +2023-10-24 21:19:50.003411081+00:00,1 +2023-10-24 21:19:50.119929530+00:00,1 +2023-10-24 21:19:50.236184335+00:00,1 +2023-10-24 21:19:50.352375931+00:00,1 +2023-10-24 21:19:50.468060285+00:00,1 +2023-10-24 21:19:50.583493875+00:00,1 +2023-10-24 21:19:50.699019377+00:00,1 +2023-10-24 21:19:50.814711381+00:00,1 +2023-10-24 21:19:50.931339256+00:00,1 +2023-10-24 21:19:51.046684792+00:00,1 +2023-10-24 21:19:51.162352319+00:00,1 +2023-10-24 21:19:51.277652261+00:00,1 +2023-10-24 21:19:51.393649405+00:00,1 +2023-10-24 21:19:51.509025918+00:00,1 +2023-10-24 21:19:51.624719126+00:00,1 +2023-10-24 21:19:51.740105963+00:00,1 +2023-10-24 21:19:51.855729868+00:00,1 +2023-10-24 21:19:51.971165010+00:00,1 +2023-10-24 21:19:52.086787153+00:00,1 +2023-10-24 21:19:52.202251321+00:00,1 +2023-10-24 21:19:52.317905484+00:00,1 +2023-10-24 21:19:52.434072616+00:00,1 +2023-10-24 21:19:52.549652660+00:00,1 +2023-10-24 21:19:52.665387453+00:00,1 +2023-10-24 21:19:52.781670546+00:00,1 +2023-10-24 21:19:52.897348782+00:00,1 +2023-10-24 21:19:53.013411381+00:00,1 +2023-10-24 21:19:53.130158717+00:00,1 +2023-10-24 21:19:53.245867775+00:00,1 +2023-10-24 21:19:53.362729701+00:00,1 +2023-10-24 21:19:53.478730734+00:00,1 +2023-10-24 21:19:53.595453215+00:00,1 +2023-10-24 21:19:53.711638668+00:00,1 +2023-10-24 21:19:53.827400879+00:00,1 +2023-10-24 21:19:53.943298820+00:00,1 +2023-10-24 21:19:54.059396301+00:00,1 +2023-10-24 21:19:54.175099096+00:00,1 +2023-10-24 21:19:54.291229597+00:00,1 +2023-10-24 21:19:54.407327562+00:00,1 +2023-10-24 21:19:54.522110108+00:00,1 +2023-10-24 21:19:54.637518875+00:00,1 +2023-10-24 21:19:54.752252433+00:00,1 +2023-10-24 21:19:54.867640203+00:00,1 +2023-10-24 21:19:54.986969802+00:00,1 +2023-10-24 21:19:55.102995744+00:00,1 +2023-10-24 21:19:55.218798487+00:00,1 +2023-10-24 21:19:55.334356138+00:00,1 +2023-10-24 21:19:55.449986641+00:00,1 +2023-10-24 21:19:55.566524811+00:00,1 +2023-10-24 21:19:55.682509435+00:00,1 +2023-10-24 21:19:55.798640155+00:00,1 +2023-10-24 21:19:55.914488224+00:00,1 +2023-10-24 21:19:56.030446759+00:00,1 +2023-10-24 21:19:56.146211600+00:00,1 +2023-10-24 21:19:56.262949447+00:00,1 +2023-10-24 21:19:56.378659100+00:00,1 +2023-10-24 21:19:56.494611914+00:00,1 +2023-10-24 21:19:56.609959056+00:00,1 +2023-10-24 21:19:56.726491766+00:00,1 +2023-10-24 21:19:56.842150477+00:00,1 +2023-10-24 21:19:56.958478519+00:00,1 +2023-10-24 21:19:57.074696181+00:00,1 +2023-10-24 21:19:57.190554096+00:00,1 +2023-10-24 21:19:57.307663898+00:00,1 +2023-10-24 21:19:57.422854650+00:00,1 +2023-10-24 21:19:57.538514498+00:00,1 +2023-10-24 21:19:57.654273642+00:00,1 +2023-10-24 21:19:57.770222583+00:00,1 +2023-10-24 21:19:57.886499787+00:00,1 +2023-10-24 21:19:58.002246101+00:00,1 +2023-10-24 21:19:58.118554484+00:00,1 +2023-10-24 21:19:58.234643910+00:00,1 +2023-10-24 21:19:58.350571983+00:00,1 +2023-10-24 21:19:58.466584436+00:00,1 +2023-10-24 21:19:58.583303659+00:00,1 +2023-10-24 21:19:58.699738590+00:00,1 +2023-10-24 21:19:58.815372897+00:00,1 +2023-10-24 21:19:58.930575424+00:00,1 +2023-10-24 21:19:59.047352240+00:00,1 +2023-10-24 21:19:59.162707356+00:00,1 +2023-10-24 21:19:59.277778955+00:00,1 +2023-10-24 21:19:59.393280374+00:00,1 +2023-10-24 21:19:59.510518114+00:00,1 +2023-10-24 21:19:59.627473714+00:00,1 +2023-10-24 21:19:59.743668304+00:00,1 +2023-10-24 21:19:59.859840388+00:00,1 +2023-10-24 21:19:59.977050316+00:00,1 +2023-10-24 21:20:00.093540135+00:00,1 +2023-10-24 21:20:00.210938657+00:00,1 +2023-10-24 21:20:00.326781747+00:00,1 +2023-10-24 21:20:00.442570295+00:00,1 +2023-10-24 21:20:00.559061593+00:00,1 +2023-10-24 21:20:00.675259820+00:00,1 +2023-10-24 21:20:00.791187152+00:00,1 +2023-10-24 21:20:00.907618589+00:00,1 +2023-10-24 21:20:01.022936518+00:00,1 +2023-10-24 21:20:01.138417477+00:00,1 +2023-10-24 21:20:01.254891016+00:00,1 +2023-10-24 21:20:01.371024096+00:00,1 +2023-10-24 21:20:01.487931020+00:00,1 +2023-10-24 21:20:01.604150809+00:00,1 +2023-10-24 21:20:01.719789378+00:00,1 +2023-10-24 21:20:01.836147616+00:00,1 +2023-10-24 21:20:01.952457192+00:00,1 +2023-10-24 21:20:02.068582208+00:00,1 +2023-10-24 21:20:02.183993492+00:00,1 +2023-10-24 21:20:02.299721714+00:00,1 +2023-10-24 21:20:02.415506339+00:00,1 +2023-10-24 21:20:02.532387905+00:00,1 +2023-10-24 21:20:02.648151797+00:00,1 +2023-10-24 21:20:02.763517662+00:00,1 +2023-10-24 21:20:02.879619805+00:00,1 +2023-10-24 21:20:02.996482416+00:00,1 +2023-10-24 21:20:03.112634530+00:00,1 +2023-10-24 21:20:03.228210032+00:00,1 +2023-10-24 21:20:03.343725706+00:00,1 +2023-10-24 21:20:03.459317931+00:00,1 +2023-10-24 21:20:03.574893644+00:00,1 +2023-10-24 21:20:03.690505682+00:00,1 +2023-10-24 21:20:03.806278223+00:00,1 +2023-10-24 21:20:03.921872611+00:00,1 +2023-10-24 21:20:04.037191032+00:00,1 +2023-10-24 21:20:04.152400623+00:00,1 +2023-10-24 21:20:04.268197147+00:00,1 +2023-10-24 21:20:04.384040297+00:00,1 +2023-10-24 21:20:04.499368889+00:00,1 +2023-10-24 21:20:04.614845878+00:00,1 +2023-10-24 21:20:04.730955558+00:00,1 +2023-10-24 21:20:04.846326405+00:00,1 +2023-10-24 21:20:04.962488224+00:00,1 +2023-10-24 21:20:05.078626118+00:00,1 +2023-10-24 21:20:05.194870511+00:00,1 +2023-10-24 21:20:05.311909554+00:00,1 +2023-10-24 21:20:05.427447508+00:00,1 +2023-10-24 21:20:05.543802352+00:00,1 +2023-10-24 21:20:05.659890858+00:00,1 +2023-10-24 21:20:05.776733544+00:00,1 +2023-10-24 21:20:05.892212785+00:00,1 +2023-10-24 21:20:06.008189034+00:00,1 +2023-10-24 21:20:06.123858435+00:00,1 +2023-10-24 21:20:06.239498346+00:00,1 +2023-10-24 21:20:06.354800114+00:00,1 +2023-10-24 21:20:06.469845384+00:00,1 +2023-10-24 21:20:06.584808872+00:00,1 +2023-10-24 21:20:06.700583663+00:00,1 +2023-10-24 21:20:06.815749030+00:00,1 +2023-10-24 21:20:06.930985136+00:00,1 +2023-10-24 21:20:07.046586118+00:00,1 +2023-10-24 21:20:07.162426555+00:00,1 +2023-10-24 21:20:07.278241860+00:00,1 +2023-10-24 21:20:07.393912976+00:00,1 +2023-10-24 21:20:07.509388705+00:00,1 +2023-10-24 21:20:07.625387665+00:00,1 +2023-10-24 21:20:07.740838487+00:00,1 +2023-10-24 21:20:07.856525463+00:00,1 +2023-10-24 21:20:07.974368310+00:00,1 +2023-10-24 21:20:08.090336998+00:00,1 +2023-10-24 21:20:08.205582898+00:00,1 +2023-10-24 21:20:08.321286924+00:00,1 +2023-10-24 21:20:08.436607794+00:00,1 +2023-10-24 21:20:08.552391242+00:00,1 +2023-10-24 21:20:08.668038000+00:00,1 +2023-10-24 21:20:08.784721214+00:00,1 +2023-10-24 21:20:08.899690012+00:00,1 +2023-10-24 21:20:09.015670105+00:00,1 +2023-10-24 21:20:09.131762104+00:00,1 +2023-10-24 21:20:09.247244951+00:00,1 +2023-10-24 21:20:09.362534749+00:00,1 +2023-10-24 21:20:09.477871523+00:00,1 +2023-10-24 21:20:09.593430752+00:00,1 +2023-10-24 21:20:09.708850466+00:00,1 +2023-10-24 21:20:09.824645856+00:00,1 +2023-10-24 21:20:09.942263103+00:00,1 +2023-10-24 21:20:10.059234025+00:00,1 +2023-10-24 21:20:10.176302010+00:00,1 +2023-10-24 21:20:10.291626783+00:00,1 +2023-10-24 21:20:10.407047781+00:00,1 +2023-10-24 21:20:10.522845791+00:00,1 +2023-10-24 21:20:10.639342143+00:00,1 +2023-10-24 21:20:10.755903709+00:00,1 +2023-10-24 21:20:10.871508982+00:00,1 +2023-10-24 21:20:10.987185988+00:00,1 +2023-10-24 21:20:11.102683619+00:00,1 +2023-10-24 21:20:11.217875791+00:00,1 +2023-10-24 21:20:11.333238607+00:00,1 +2023-10-24 21:20:11.448775807+00:00,1 +2023-10-24 21:20:11.564244595+00:00,1 +2023-10-24 21:20:11.680287403+00:00,1 +2023-10-24 21:20:11.795263910+00:00,1 +2023-10-24 21:20:11.910594442+00:00,1 +2023-10-24 21:20:12.026140394+00:00,1 +2023-10-24 21:20:12.141587528+00:00,1 +2023-10-24 21:20:12.257661999+00:00,1 +2023-10-24 21:20:12.375472165+00:00,1 +2023-10-24 21:20:12.490323929+00:00,1 +2023-10-24 21:20:12.605874318+00:00,1 +2023-10-24 21:20:12.721189510+00:00,1 +2023-10-24 21:20:12.837622405+00:00,1 +2023-10-24 21:20:12.953750737+00:00,1 +2023-10-24 21:20:13.069585634+00:00,1 +2023-10-24 21:20:13.185632141+00:00,1 +2023-10-24 21:20:13.300751369+00:00,1 +2023-10-24 21:20:13.415835276+00:00,1 +2023-10-24 21:20:13.531312959+00:00,1 +2023-10-24 21:20:13.647770948+00:00,1 +2023-10-24 21:20:13.763818223+00:00,1 +2023-10-24 21:20:13.879081353+00:00,1 +2023-10-24 21:20:13.993480609+00:00,1 +2023-10-24 21:20:14.107905920+00:00,1 +2023-10-24 21:20:14.222080809+00:00,1 +2023-10-24 21:20:14.336234902+00:00,1 +2023-10-24 21:20:14.450641566+00:00,1 +2023-10-24 21:20:14.565370909+00:00,1 +2023-10-24 21:20:14.679734989+00:00,1 +2023-10-24 21:20:14.793710412+00:00,1 +2023-10-24 21:20:14.908401383+00:00,1 +2023-10-24 21:20:15.022559508+00:00,1 +2023-10-24 21:20:15.137376779+00:00,1 +2023-10-24 21:20:15.251737839+00:00,1 +2023-10-24 21:20:15.367046462+00:00,1 +2023-10-24 21:20:15.480919128+00:00,1 +2023-10-24 21:20:15.595141679+00:00,1 +2023-10-24 21:20:15.709404502+00:00,1 +2023-10-24 21:20:15.823722241+00:00,1 +2023-10-24 21:20:15.939039679+00:00,1 +2023-10-24 21:20:16.054085019+00:00,1 +2023-10-24 21:20:16.168615849+00:00,1 +2023-10-24 21:20:16.282695969+00:00,1 +2023-10-24 21:20:16.396796063+00:00,1 +2023-10-24 21:20:16.511259488+00:00,1 +2023-10-24 21:20:16.626021096+00:00,1 +2023-10-24 21:20:16.740395662+00:00,1 +2023-10-24 21:20:16.854787447+00:00,1 +2023-10-24 21:20:16.969021847+00:00,1 +2023-10-24 21:20:17.083400143+00:00,1 +2023-10-24 21:20:17.197755315+00:00,1 +2023-10-24 21:20:17.312455300+00:00,1 +2023-10-24 21:20:17.427077132+00:00,1 +2023-10-24 21:20:17.541289718+00:00,1 +2023-10-24 21:20:17.656066881+00:00,1 +2023-10-24 21:20:17.770992063+00:00,1 +2023-10-24 21:20:17.885392915+00:00,1 +2023-10-24 21:20:17.999869365+00:00,1 +2023-10-24 21:20:18.114097426+00:00,1 +2023-10-24 21:20:18.228808979+00:00,1 +2023-10-24 21:20:18.343127933+00:00,1 +2023-10-24 21:20:18.457955252+00:00,1 +2023-10-24 21:20:18.572878818+00:00,1 +2023-10-24 21:20:18.687957850+00:00,1 +2023-10-24 21:20:18.802874828+00:00,1 +2023-10-24 21:20:18.918564768+00:00,1 +2023-10-24 21:20:19.032870936+00:00,1 +2023-10-24 21:20:19.147519297+00:00,1 +2023-10-24 21:20:19.261754805+00:00,1 +2023-10-24 21:20:19.376087884+00:00,1 +2023-10-24 21:20:19.490917797+00:00,1 +2023-10-24 21:20:20.626445364+00:00,1 +2023-10-24 21:20:20.741532193+00:00,1 +2023-10-24 21:20:20.856127845+00:00,1 +2023-10-24 21:20:20.971207425+00:00,1 +2023-10-24 21:20:21.086756045+00:00,1 +2023-10-24 21:20:21.202289531+00:00,1 +2023-10-24 21:20:21.317392182+00:00,1 +2023-10-24 21:20:21.432209604+00:00,1 +2023-10-24 21:20:21.547746189+00:00,1 +2023-10-24 21:20:21.662471382+00:00,1 +2023-10-24 21:20:21.777129699+00:00,1 +2023-10-24 21:20:21.891818711+00:00,1 +2023-10-24 21:20:22.007124207+00:00,1 +2023-10-24 21:20:22.122646568+00:00,1 +2023-10-24 21:20:22.237311084+00:00,1 +2023-10-24 21:20:22.352097166+00:00,1 +2023-10-24 21:20:22.467638024+00:00,1 +2023-10-24 21:20:22.582828485+00:00,1 +2023-10-24 21:20:22.698128489+00:00,1 +2023-10-24 21:20:22.813805284+00:00,1 +2023-10-24 21:20:22.928588069+00:00,1 +2023-10-24 21:20:23.043857317+00:00,1 +2023-10-24 21:20:23.160408705+00:00,1 +2023-10-24 21:20:23.276063372+00:00,1 +2023-10-24 21:20:23.391796675+00:00,1 +2023-10-24 21:20:23.506926215+00:00,1 +2023-10-24 21:20:23.623944928+00:00,1 +2023-10-24 21:20:23.738923994+00:00,1 +2023-10-24 21:20:23.854289734+00:00,1 +2023-10-24 21:20:23.970446051+00:00,1 +2023-10-24 21:20:24.085915853+00:00,1 +2023-10-24 21:20:24.203667014+00:00,1 +2023-10-24 21:20:24.319168009+00:00,1 +2023-10-24 21:20:24.435393900+00:00,1 +2023-10-24 21:20:24.551484710+00:00,1 +2023-10-24 21:20:24.667245640+00:00,1 +2023-10-24 21:20:24.782477633+00:00,1 +2023-10-24 21:20:24.898033749+00:00,1 +2023-10-24 21:20:25.013341111+00:00,1 +2023-10-24 21:20:25.129316456+00:00,1 +2023-10-24 21:20:25.245616830+00:00,1 +2023-10-24 21:20:25.361237564+00:00,1 +2023-10-24 21:20:25.476603799+00:00,1 +2023-10-24 21:20:25.592441047+00:00,1 +2023-10-24 21:20:25.708186285+00:00,1 +2023-10-24 21:20:25.823713839+00:00,1 +2023-10-24 21:20:25.939326422+00:00,1 +2023-10-24 21:20:26.055277259+00:00,1 +2023-10-24 21:20:26.170736765+00:00,1 +2023-10-24 21:20:26.286598668+00:00,1 +2023-10-24 21:20:26.401921490+00:00,1 +2023-10-24 21:20:26.516937118+00:00,1 +2023-10-24 21:20:26.632152250+00:00,1 +2023-10-24 21:20:26.747439470+00:00,1 +2023-10-24 21:20:26.863026673+00:00,1 +2023-10-24 21:20:26.978809718+00:00,1 +2023-10-24 21:20:27.094327701+00:00,1 +2023-10-24 21:20:27.209919002+00:00,1 +2023-10-24 21:20:27.325662436+00:00,1 +2023-10-24 21:20:27.440923150+00:00,1 +2023-10-24 21:20:27.556357628+00:00,1 +2023-10-24 21:20:27.671969525+00:00,1 +2023-10-24 21:20:27.787559093+00:00,1 +2023-10-24 21:20:27.902965447+00:00,1 +2023-10-24 21:20:28.018564725+00:00,1 +2023-10-24 21:20:28.134676560+00:00,1 +2023-10-24 21:20:28.250551340+00:00,1 +2023-10-24 21:20:28.366919615+00:00,1 +2023-10-24 21:20:28.482536169+00:00,1 +2023-10-24 21:20:28.598389487+00:00,1 +2023-10-24 21:20:28.713573767+00:00,1 +2023-10-24 21:20:28.829188758+00:00,1 +2023-10-24 21:20:28.944972082+00:00,1 +2023-10-24 21:20:29.061072725+00:00,1 +2023-10-24 21:20:29.177113996+00:00,1 +2023-10-24 21:20:29.292667405+00:00,1 +2023-10-24 21:20:29.408076958+00:00,1 +2023-10-24 21:20:29.523869507+00:00,1 +2023-10-24 21:20:29.639631312+00:00,1 +2023-10-24 21:20:29.755482445+00:00,1 +2023-10-24 21:20:29.870689143+00:00,1 +2023-10-24 21:20:29.986088500+00:00,1 +2023-10-24 21:20:30.101783905+00:00,1 +2023-10-24 21:20:30.217032203+00:00,1 +2023-10-24 21:20:30.332880468+00:00,1 +2023-10-24 21:20:30.448689612+00:00,1 +2023-10-24 21:20:30.564012252+00:00,1 +2023-10-24 21:20:30.679542935+00:00,1 +2023-10-24 21:20:30.794819003+00:00,1 +2023-10-24 21:20:30.910315851+00:00,1 +2023-10-24 21:20:31.026594196+00:00,1 +2023-10-24 21:20:31.142220958+00:00,1 +2023-10-24 21:20:31.257214322+00:00,1 +2023-10-24 21:20:31.372033370+00:00,1 +2023-10-24 21:20:31.487980967+00:00,1 +2023-10-24 21:20:31.603784319+00:00,1 +2023-10-24 21:20:31.718938940+00:00,1 +2023-10-24 21:20:31.833868492+00:00,1 +2023-10-24 21:20:31.949176417+00:00,1 +2023-10-24 21:20:32.064232499+00:00,1 +2023-10-24 21:20:32.179270010+00:00,1 +2023-10-24 21:20:32.294733897+00:00,1 +2023-10-24 21:20:32.409787710+00:00,1 +2023-10-24 21:20:32.525228203+00:00,1 +2023-10-24 21:20:32.640674333+00:00,1 +2023-10-24 21:20:32.756043282+00:00,1 +2023-10-24 21:20:32.872734813+00:00,1 +2023-10-24 21:20:32.988203485+00:00,1 +2023-10-24 21:20:33.104117673+00:00,1 +2023-10-24 21:20:33.219792519+00:00,1 +2023-10-24 21:20:33.336100315+00:00,1 +2023-10-24 21:20:33.452230073+00:00,1 +2023-10-24 21:20:33.568101730+00:00,1 +2023-10-24 21:20:33.683947515+00:00,1 +2023-10-24 21:20:33.799538566+00:00,1 +2023-10-24 21:20:33.915434905+00:00,1 +2023-10-24 21:20:34.031469721+00:00,1 +2023-10-24 21:20:34.147769527+00:00,1 +2023-10-24 21:20:34.263374709+00:00,1 +2023-10-24 21:20:34.378799034+00:00,1 +2023-10-24 21:20:34.493841185+00:00,1 +2023-10-24 21:20:34.609825931+00:00,1 +2023-10-24 21:20:34.725236411+00:00,1 +2023-10-24 21:20:34.840775930+00:00,1 +2023-10-24 21:20:34.956038051+00:00,1 +2023-10-24 21:20:35.070549540+00:00,1 +2023-10-24 21:20:35.185071847+00:00,1 +2023-10-24 21:20:35.300216030+00:00,1 +2023-10-24 21:20:35.415232654+00:00,1 +2023-10-24 21:20:35.529899517+00:00,1 +2023-10-24 21:20:35.644849992+00:00,1 +2023-10-24 21:20:35.759269089+00:00,1 +2023-10-24 21:20:35.874167674+00:00,1 +2023-10-24 21:20:35.988829954+00:00,1 +2023-10-24 21:20:36.103280708+00:00,1 +2023-10-24 21:20:36.217421924+00:00,1 +2023-10-24 21:20:36.331852391+00:00,1 +2023-10-24 21:20:36.447420839+00:00,1 +2023-10-24 21:20:39.663367092+00:00,1 +2023-10-24 21:20:39.778287787+00:00,1 +2023-10-24 21:20:39.892858386+00:00,1 +2023-10-24 21:20:40.007566968+00:00,1 +2023-10-24 21:20:40.123366759+00:00,1 +2023-10-24 21:20:40.238532120+00:00,1 +2023-10-24 21:20:40.352981295+00:00,0 +2023-10-24 21:20:42.364997861+00:00,1 +2023-10-24 21:20:42.479623447+00:00,1 +2023-10-24 21:20:42.595711333+00:00,1 +2023-10-24 21:20:42.711038095+00:00,1 +2023-10-24 21:20:42.826546581+00:00,1 +2023-10-24 21:20:42.942949666+00:00,1 +2023-10-24 21:20:43.058132989+00:00,1 +2023-10-24 21:20:43.174511120+00:00,1 +2023-10-24 21:20:43.289377581+00:00,0 +2023-10-24 21:20:45.301371082+00:00,1 +2023-10-24 21:20:45.416451180+00:00,1 +2023-10-24 21:20:45.532498080+00:00,0 +2023-10-24 21:20:47.547523167+00:00,1 +2023-10-24 21:20:47.663473113+00:00,1 +2023-10-24 21:20:47.779393627+00:00,1 +2023-10-24 21:20:47.895129049+00:00,1 +2023-10-24 21:20:48.010146114+00:00,1 +2023-10-24 21:20:48.125888481+00:00,1 +2023-10-24 21:20:48.241822107+00:00,1 +2023-10-24 21:20:48.357177093+00:00,1 +2023-10-24 21:20:48.472690596+00:00,1 +2023-10-24 21:20:48.588108778+00:00,1 +2023-10-24 21:20:49.714349654+00:00,1 +2023-10-24 21:20:49.830224943+00:00,1 +2023-10-24 21:20:49.945828058+00:00,1 +2023-10-24 21:20:50.061423542+00:00,1 +2023-10-24 21:20:50.178145195+00:00,1 +2023-10-24 21:20:50.295332324+00:00,1 +2023-10-24 21:20:50.411309335+00:00,1 +2023-10-24 21:20:50.527601605+00:00,1 +2023-10-24 21:20:50.642994508+00:00,1 +2023-10-24 21:20:50.758301394+00:00,1 +2023-10-24 21:20:50.873527290+00:00,1 +2023-10-24 21:20:50.989851867+00:00,1 +2023-10-24 21:20:51.105970854+00:00,1 +2023-10-24 21:20:51.221293149+00:00,1 +2023-10-24 21:20:51.336983654+00:00,1 +2023-10-24 21:20:51.452807816+00:00,1 +2023-10-24 21:20:51.568096697+00:00,1 +2023-10-24 21:20:51.684176307+00:00,1 +2023-10-24 21:20:51.799537381+00:00,1 +2023-10-24 21:20:51.915980662+00:00,1 +2023-10-24 21:20:52.031903033+00:00,1 +2023-10-24 21:20:52.148240478+00:00,1 +2023-10-24 21:20:52.264149072+00:00,1 +2023-10-24 21:20:52.379715673+00:00,1 +2023-10-24 21:20:52.495377123+00:00,1 +2023-10-24 21:20:52.611118907+00:00,1 +2023-10-24 21:20:52.725856283+00:00,1 +2023-10-24 21:20:52.841349230+00:00,1 +2023-10-24 21:20:52.956837756+00:00,1 +2023-10-24 21:20:53.072265008+00:00,1 +2023-10-24 21:20:53.188238341+00:00,1 +2023-10-24 21:20:53.303420345+00:00,1 +2023-10-24 21:20:53.418670222+00:00,1 +2023-10-24 21:20:53.534078290+00:00,1 +2023-10-24 21:20:53.650182640+00:00,1 +2023-10-24 21:20:53.765595869+00:00,1 +2023-10-24 21:20:53.881073170+00:00,1 +2023-10-24 21:20:53.998063814+00:00,1 +2023-10-24 21:20:54.114254405+00:00,1 +2023-10-24 21:20:54.231546468+00:00,1 +2023-10-24 21:20:54.348121015+00:00,1 +2023-10-24 21:20:54.463212076+00:00,1 +2023-10-24 21:20:54.578819036+00:00,1 +2023-10-24 21:20:54.694581408+00:00,1 +2023-10-24 21:20:54.810534839+00:00,1 +2023-10-24 21:20:54.925376052+00:00,1 +2023-10-24 21:20:55.045561845+00:00,1 +2023-10-24 21:20:55.160599503+00:00,1 +2023-10-24 21:20:55.275759681+00:00,1 +2023-10-24 21:20:55.391426416+00:00,1 +2023-10-24 21:20:55.506553529+00:00,1 +2023-10-24 21:20:55.621361981+00:00,1 +2023-10-24 21:20:55.736536272+00:00,1 +2023-10-24 21:20:55.852249020+00:00,1 +2023-10-24 21:20:55.968528617+00:00,1 +2023-10-24 21:20:56.084072679+00:00,1 +2023-10-24 21:20:56.200431677+00:00,1 +2023-10-24 21:20:56.315730041+00:00,1 +2023-10-24 21:20:56.431170045+00:00,1 +2023-10-24 21:20:56.546940152+00:00,1 +2023-10-24 21:20:56.662364653+00:00,1 +2023-10-24 21:20:56.777682005+00:00,1 +2023-10-24 21:20:56.893790812+00:00,1 +2023-10-24 21:20:57.009598127+00:00,1 +2023-10-24 21:20:57.125579450+00:00,1 +2023-10-24 21:20:57.241882551+00:00,1 +2023-10-24 21:20:57.357266961+00:00,1 +2023-10-24 21:20:57.473535006+00:00,1 +2023-10-24 21:20:57.588747174+00:00,1 +2023-10-24 21:20:57.704323927+00:00,1 +2023-10-24 21:20:57.819788355+00:00,1 +2023-10-24 21:20:57.935180207+00:00,1 +2023-10-24 21:20:58.050686721+00:00,1 +2023-10-24 21:20:58.165748540+00:00,1 +2023-10-24 21:20:58.280545365+00:00,1 +2023-10-24 21:20:58.396014200+00:00,1 +2023-10-24 21:20:58.512745047+00:00,1 +2023-10-24 21:20:58.628317100+00:00,1 +2023-10-24 21:20:58.743943479+00:00,1 +2023-10-24 21:20:58.860281631+00:00,1 +2023-10-24 21:20:58.976453568+00:00,1 +2023-10-24 21:20:59.092243199+00:00,1 +2023-10-24 21:20:59.208637258+00:00,1 +2023-10-24 21:20:59.323874951+00:00,1 +2023-10-24 21:20:59.440320612+00:00,1 +2023-10-24 21:20:59.555297558+00:00,1 +2023-10-24 21:20:59.671078968+00:00,1 +2023-10-24 21:20:59.786728113+00:00,1 +2023-10-24 21:20:59.901795514+00:00,1 +2023-10-24 21:21:00.018751022+00:00,1 +2023-10-24 21:21:00.135016819+00:00,1 +2023-10-24 21:21:00.250967763+00:00,1 +2023-10-24 21:21:00.366813702+00:00,1 +2023-10-24 21:21:00.481531877+00:00,1 +2023-10-24 21:21:00.596430396+00:00,1 +2023-10-24 21:21:00.711815061+00:00,1 +2023-10-24 21:21:00.827809010+00:00,1 +2023-10-24 21:21:00.943265067+00:00,1 +2023-10-24 21:21:01.058920701+00:00,1 +2023-10-24 21:21:01.174203934+00:00,1 +2023-10-24 21:21:01.289004496+00:00,1 +2023-10-24 21:21:01.403795475+00:00,1 +2023-10-24 21:21:01.518248788+00:00,1 +2023-10-24 21:21:01.632819786+00:00,1 +2023-10-24 21:21:04.813222036+00:00,1 +2023-10-24 21:21:04.927925972+00:00,1 +2023-10-24 21:21:06.078046000+00:00,1 +2023-10-24 21:21:06.193593575+00:00,1 +2023-10-24 21:21:06.308569257+00:00,1 +2023-10-24 21:21:06.424310476+00:00,1 +2023-10-24 21:21:06.539732004+00:00,1 +2023-10-24 21:21:06.655008475+00:00,1 +2023-10-24 21:21:06.770822236+00:00,1 +2023-10-24 21:21:06.885766443+00:00,1 +2023-10-24 21:21:07.000847749+00:00,1 +2023-10-24 21:21:07.116199185+00:00,1 +2023-10-24 21:21:07.231248038+00:00,1 +2023-10-24 21:21:08.370168733+00:00,1 +2023-10-24 21:21:08.485097027+00:00,1 +2023-10-24 21:21:10.622939723+00:00,1 +2023-10-24 21:21:11.762144695+00:00,1 +2023-10-24 21:21:11.876942833+00:00,1 +2023-10-24 21:21:11.992961053+00:00,1 +2023-10-24 21:21:12.109264754+00:00,1 +2023-10-24 21:21:13.245375775+00:00,1 +2023-10-24 21:21:13.360462371+00:00,1 +2023-10-24 21:21:13.475698175+00:00,1 +2023-10-24 21:21:13.591245857+00:00,1 +2023-10-24 21:21:13.706028898+00:00,1 +2023-10-24 21:21:13.821189044+00:00,1 +2023-10-24 21:21:13.935286352+00:00,0 +2023-10-24 21:21:15.948329656+00:00,1 +2023-10-24 21:21:16.062890863+00:00,1 +2023-10-24 21:21:16.177955924+00:00,1 +2023-10-24 21:21:16.293029520+00:00,1 +2023-10-24 21:21:16.408478318+00:00,1 +2023-10-24 21:21:16.523826887+00:00,1 +2023-10-24 21:21:16.638514205+00:00,1 +2023-10-24 21:21:16.753093156+00:00,1 +2023-10-24 21:21:16.867215535+00:00,1 +2023-10-24 21:21:16.982352004+00:00,1 +2023-10-24 21:21:17.097492456+00:00,1 +2023-10-24 21:21:17.212051671+00:00,1 +2023-10-24 21:21:17.327104359+00:00,1 +2023-10-24 21:21:17.441631388+00:00,0 +2023-10-24 21:21:19.453984656+00:00,1 +2023-10-24 21:21:19.569531600+00:00,1 +2023-10-24 21:21:19.684026919+00:00,1 +2023-10-24 21:21:19.798146869+00:00,1 +2023-10-24 21:21:19.912376461+00:00,1 +2023-10-24 21:21:20.027025722+00:00,1 +2023-10-24 21:21:20.141441854+00:00,1 +2023-10-24 21:21:20.255807523+00:00,1 +2023-10-24 21:21:20.371543211+00:00,1 +2023-10-24 21:21:20.486658304+00:00,1 +2023-10-24 21:21:20.600974620+00:00,1 +2023-10-24 21:21:20.716023561+00:00,1 +2023-10-24 21:21:20.831256199+00:00,1 +2023-10-24 21:21:20.947153044+00:00,1 +2023-10-24 21:21:21.061718989+00:00,1 +2023-10-24 21:21:21.176466331+00:00,1 +2023-10-24 21:21:21.291278693+00:00,1 +2023-10-24 21:21:21.406350174+00:00,1 +2023-10-24 21:21:21.521600913+00:00,1 +2023-10-24 21:21:21.636267052+00:00,1 +2023-10-24 21:21:21.750345837+00:00,1 +2023-10-24 21:21:21.865238527+00:00,1 +2023-10-24 21:21:21.981552576+00:00,1 +2023-10-24 21:21:22.095716578+00:00,1 +2023-10-24 21:21:22.210013491+00:00,1 +2023-10-24 21:21:22.325303668+00:00,1 +2023-10-24 21:21:22.440595294+00:00,1 +2023-10-24 21:21:22.555718548+00:00,1 +2023-10-24 21:21:22.670234249+00:00,1 +2023-10-24 21:21:22.785479661+00:00,1 +2023-10-24 21:21:22.899955692+00:00,1 +2023-10-24 21:21:23.015428626+00:00,1 +2023-10-24 21:21:23.132077226+00:00,1 +2023-10-24 21:21:23.248245412+00:00,1 +2023-10-24 21:21:23.364822372+00:00,1 +2023-10-24 21:21:23.481228712+00:00,1 +2023-10-24 21:21:23.597143492+00:00,1 +2023-10-24 21:21:23.713233078+00:00,1 +2023-10-24 21:21:23.828935586+00:00,1 +2023-10-24 21:21:23.945864350+00:00,1 +2023-10-24 21:21:24.061491259+00:00,1 +2023-10-24 21:21:24.177614644+00:00,1 +2023-10-24 21:21:24.293166920+00:00,1 +2023-10-24 21:21:24.409294370+00:00,1 +2023-10-24 21:21:24.525479367+00:00,1 +2023-10-24 21:21:24.641129708+00:00,1 +2023-10-24 21:21:24.756668307+00:00,1 +2023-10-24 21:21:24.872240121+00:00,1 +2023-10-24 21:21:24.987951287+00:00,1 +2023-10-24 21:21:25.104946914+00:00,1 +2023-10-24 21:21:25.220801640+00:00,1 +2023-10-24 21:21:25.336674851+00:00,1 +2023-10-24 21:21:25.451997558+00:00,1 +2023-10-24 21:21:25.567034864+00:00,1 +2023-10-24 21:21:25.682165047+00:00,1 +2023-10-24 21:21:25.797029036+00:00,1 +2023-10-24 21:21:25.912002882+00:00,1 +2023-10-24 21:21:26.027658945+00:00,1 +2023-10-24 21:21:26.142526647+00:00,1 +2023-10-24 21:21:26.258160739+00:00,1 +2023-10-24 21:21:26.373680371+00:00,1 +2023-10-24 21:21:26.490456413+00:00,1 +2023-10-24 21:21:26.604871812+00:00,1 +2023-10-24 21:21:26.719592672+00:00,1 +2023-10-24 21:21:27.887907439+00:00,1 +2023-10-24 21:21:28.002286223+00:00,1 +2023-10-24 21:21:28.117678382+00:00,1 +2023-10-24 21:21:28.232186340+00:00,1 +2023-10-24 21:21:28.346056471+00:00,1 +2023-10-24 21:21:28.460576459+00:00,1 +2023-10-24 21:21:28.576254073+00:00,1 +2023-10-24 21:21:28.691554184+00:00,1 +2023-10-24 21:21:28.805991200+00:00,1 +2023-10-24 21:21:28.920434534+00:00,1 +2023-10-24 21:21:29.035508179+00:00,1 +2023-10-24 21:21:29.149726863+00:00,1 +2023-10-24 21:21:29.264170071+00:00,1 +2023-10-24 21:21:29.378465726+00:00,1 +2023-10-24 21:21:29.492567444+00:00,1 +2023-10-24 21:21:29.606818882+00:00,1 +2023-10-24 21:21:29.721767103+00:00,1 +2023-10-24 21:21:29.836688143+00:00,1 +2023-10-24 21:21:29.951506875+00:00,1 +2023-10-24 21:21:30.065715422+00:00,1 +2023-10-24 21:21:30.179847730+00:00,1 +2023-10-24 21:21:30.294457275+00:00,1 +2023-10-24 21:21:30.409035474+00:00,1 +2023-10-24 21:21:33.584479869+00:00,1 +2023-10-24 21:21:33.698416734+00:00,1 +2023-10-24 21:21:33.813218135+00:00,1 +2023-10-24 21:21:33.927751989+00:00,1 +2023-10-24 21:21:34.042464681+00:00,1 +2023-10-24 21:21:34.158823804+00:00,1 +2023-10-24 21:21:34.274086290+00:00,1 +2023-10-24 21:21:34.388432458+00:00,1 +2023-10-24 21:21:34.502801541+00:00,1 +2023-10-24 21:21:34.617876277+00:00,1 +2023-10-24 21:21:34.732109538+00:00,1 +2023-10-24 21:21:34.846788744+00:00,1 +2023-10-24 21:21:34.961628402+00:00,1 +2023-10-24 21:21:35.077267431+00:00,1 +2023-10-24 21:21:35.192275734+00:00,1 +2023-10-24 21:21:35.307220268+00:00,1 +2023-10-24 21:21:35.422587102+00:00,1 +2023-10-24 21:21:35.537484172+00:00,1 +2023-10-24 21:21:35.652303703+00:00,1 +2023-10-24 21:21:35.766911255+00:00,1 +2023-10-24 21:21:35.881073996+00:00,1 +2023-10-24 21:21:35.996415225+00:00,1 +2023-10-24 21:21:36.111481598+00:00,1 +2023-10-24 21:21:36.225706055+00:00,1 +2023-10-24 21:21:36.340029294+00:00,1 +2023-10-24 21:21:36.454896400+00:00,1 +2023-10-24 21:21:36.569097227+00:00,1 +2023-10-24 21:21:36.684425416+00:00,1 +2023-10-24 21:21:36.798701672+00:00,1 +2023-10-24 21:21:36.912888293+00:00,1 +2023-10-24 21:21:37.028162866+00:00,1 +2023-10-24 21:21:37.143156121+00:00,1 +2023-10-24 21:21:37.257966477+00:00,1 +2023-10-24 21:21:37.372644072+00:00,1 +2023-10-24 21:21:37.487128113+00:00,1 +2023-10-24 21:21:37.602570893+00:00,1 +2023-10-24 21:21:37.716983701+00:00,1 +2023-10-24 21:21:37.831258179+00:00,1 +2023-10-24 21:21:37.945301905+00:00,1 +2023-10-24 21:21:38.059422940+00:00,1 +2023-10-24 21:21:38.174197381+00:00,1 +2023-10-24 21:21:38.288377806+00:00,1 +2023-10-24 21:21:38.402627254+00:00,1 +2023-10-24 21:21:38.517862530+00:00,1 +2023-10-24 21:21:38.632108466+00:00,1 +2023-10-24 21:21:38.746500365+00:00,1 +2023-10-24 21:21:38.860998686+00:00,1 +2023-10-24 21:21:38.976174944+00:00,1 +2023-10-24 21:21:39.090510137+00:00,1 +2023-10-24 21:21:39.205258527+00:00,1 +2023-10-24 21:21:39.320598306+00:00,1 +2023-10-24 21:21:39.435228721+00:00,1 +2023-10-24 21:21:39.550249486+00:00,1 +2023-10-24 21:21:39.664584431+00:00,1 +2023-10-24 21:21:39.778849631+00:00,1 +2023-10-24 21:21:39.892898098+00:00,1 +2023-10-24 21:21:40.007745436+00:00,1 +2023-10-24 21:21:40.121766347+00:00,1 +2023-10-24 21:21:40.235910943+00:00,1 +2023-10-24 21:21:40.349998117+00:00,1 +2023-10-24 21:21:40.464279023+00:00,1 +2023-10-24 21:21:40.578754542+00:00,1 +2023-10-24 21:21:40.692912340+00:00,1 +2023-10-24 21:21:40.807181267+00:00,1 +2023-10-24 21:21:40.922304788+00:00,1 +2023-10-24 21:21:41.037444794+00:00,1 +2023-10-24 21:21:41.152154874+00:00,1 +2023-10-24 21:21:41.266671424+00:00,1 +2023-10-24 21:21:41.382541080+00:00,1 +2023-10-24 21:21:41.498635555+00:00,1 +2023-10-24 21:21:41.615450949+00:00,1 +2023-10-24 21:21:41.730803826+00:00,1 +2023-10-24 21:21:41.846297234+00:00,1 +2023-10-24 21:21:41.962905949+00:00,1 +2023-10-24 21:21:42.078074189+00:00,1 +2023-10-24 21:21:42.193208562+00:00,1 +2023-10-24 21:21:42.308835809+00:00,1 +2023-10-24 21:21:42.423970587+00:00,1 +2023-10-24 21:21:42.538847875+00:00,1 +2023-10-24 21:21:42.654911144+00:00,1 +2023-10-24 21:21:42.769988230+00:00,1 +2023-10-24 21:21:42.885038116+00:00,1 +2023-10-24 21:21:43.002213926+00:00,1 +2023-10-24 21:21:43.117930370+00:00,1 +2023-10-24 21:21:43.233690306+00:00,1 +2023-10-24 21:21:43.350804327+00:00,1 +2023-10-24 21:21:43.466472759+00:00,1 +2023-10-24 21:21:43.582001203+00:00,1 +2023-10-24 21:21:43.697421322+00:00,1 +2023-10-24 21:21:43.813291929+00:00,1 +2023-10-24 21:21:43.929807751+00:00,1 +2023-10-24 21:21:44.044705712+00:00,1 +2023-10-24 21:21:44.160210651+00:00,1 +2023-10-24 21:21:44.275660468+00:00,1 +2023-10-24 21:21:44.391028073+00:00,1 +2023-10-24 21:21:44.506245677+00:00,1 +2023-10-24 21:21:44.621558441+00:00,1 +2023-10-24 21:21:44.736725809+00:00,1 +2023-10-24 21:21:44.851817930+00:00,1 +2023-10-24 21:21:44.967226179+00:00,1 +2023-10-24 21:21:45.082177201+00:00,1 +2023-10-24 21:21:45.198209305+00:00,1 +2023-10-24 21:21:45.314535130+00:00,1 +2023-10-24 21:21:45.430791342+00:00,1 +2023-10-24 21:21:45.546415219+00:00,1 +2023-10-24 21:21:45.661352459+00:00,1 +2023-10-24 21:21:45.775960996+00:00,1 +2023-10-24 21:21:45.891075548+00:00,1 +2023-10-24 21:21:46.006940352+00:00,1 +2023-10-24 21:21:46.122528914+00:00,1 +2023-10-24 21:21:46.238632436+00:00,1 +2023-10-24 21:21:46.354039576+00:00,1 +2023-10-24 21:21:46.469347669+00:00,1 +2023-10-24 21:21:46.585792739+00:00,1 +2023-10-24 21:21:46.700759091+00:00,1 +2023-10-24 21:21:46.815946265+00:00,1 +2023-10-24 21:21:46.931431095+00:00,1 +2023-10-24 21:21:47.047249608+00:00,1 +2023-10-24 21:21:47.163999792+00:00,1 +2023-10-24 21:21:47.279740363+00:00,1 +2023-10-24 21:21:47.395565163+00:00,1 +2023-10-24 21:21:47.510511061+00:00,1 +2023-10-24 21:21:47.625541274+00:00,1 +2023-10-24 21:21:47.740568660+00:00,1 +2023-10-24 21:21:47.856076203+00:00,1 +2023-10-24 21:21:47.971704570+00:00,1 +2023-10-24 21:21:48.087500520+00:00,1 +2023-10-24 21:21:48.203061887+00:00,1 +2023-10-24 21:21:48.317997996+00:00,1 +2023-10-24 21:21:48.433130079+00:00,1 +2023-10-24 21:21:48.548098379+00:00,1 +2023-10-24 21:21:48.663257691+00:00,1 +2023-10-24 21:21:48.777921603+00:00,1 +2023-10-24 21:21:48.893664804+00:00,1 +2023-10-24 21:21:49.010237852+00:00,1 +2023-10-24 21:21:49.125755093+00:00,1 +2023-10-24 21:21:49.240891268+00:00,1 +2023-10-24 21:21:49.357304129+00:00,1 +2023-10-24 21:21:49.472794977+00:00,1 +2023-10-24 21:21:49.587934779+00:00,1 +2023-10-24 21:21:49.702780615+00:00,1 +2023-10-24 21:21:49.817996803+00:00,1 +2023-10-24 21:21:49.934149830+00:00,1 +2023-10-24 21:21:50.050938867+00:00,1 +2023-10-24 21:21:50.166292542+00:00,1 +2023-10-24 21:21:50.282348817+00:00,1 +2023-10-24 21:21:50.397408435+00:00,1 +2023-10-24 21:21:50.512436938+00:00,1 +2023-10-24 21:21:50.627515654+00:00,1 +2023-10-24 21:21:50.742449664+00:00,1 +2023-10-24 21:21:50.857617133+00:00,1 +2023-10-24 21:21:50.972764613+00:00,1 +2023-10-24 21:21:51.088305944+00:00,1 +2023-10-24 21:21:51.204856724+00:00,1 +2023-10-24 21:21:51.320489072+00:00,1 +2023-10-24 21:21:51.436026706+00:00,1 +2023-10-24 21:21:51.551537867+00:00,1 +2023-10-24 21:21:51.666878620+00:00,1 +2023-10-24 21:21:51.782087359+00:00,1 +2023-10-24 21:21:51.897597247+00:00,1 +2023-10-24 21:21:52.012924823+00:00,1 +2023-10-24 21:21:52.128343615+00:00,1 +2023-10-24 21:21:52.243327796+00:00,1 +2023-10-24 21:21:52.358923624+00:00,1 +2023-10-24 21:21:52.474067451+00:00,1 +2023-10-24 21:21:52.589102472+00:00,1 +2023-10-24 21:21:52.703941008+00:00,1 +2023-10-24 21:21:52.819309421+00:00,1 +2023-10-24 21:21:52.935183119+00:00,1 +2023-10-24 21:21:53.050183681+00:00,1 +2023-10-24 21:21:53.164845743+00:00,1 +2023-10-24 21:21:53.280319506+00:00,1 +2023-10-24 21:21:53.395435878+00:00,1 +2023-10-24 21:21:53.510660244+00:00,1 +2023-10-24 21:21:53.626920259+00:00,1 +2023-10-24 21:21:53.743687224+00:00,1 +2023-10-24 21:21:53.859685488+00:00,1 +2023-10-24 21:21:53.976133842+00:00,1 +2023-10-24 21:21:54.092001322+00:00,1 +2023-10-24 21:21:54.207747766+00:00,1 +2023-10-24 21:21:54.322970848+00:00,1 +2023-10-24 21:21:54.438525411+00:00,1 +2023-10-24 21:21:54.553919598+00:00,1 +2023-10-24 21:21:54.670418505+00:00,1 +2023-10-24 21:21:54.786095078+00:00,1 +2023-10-24 21:21:54.902525329+00:00,1 +2023-10-24 21:21:55.017959789+00:00,1 +2023-10-24 21:21:55.133166951+00:00,1 +2023-10-24 21:21:55.248392422+00:00,1 +2023-10-24 21:21:55.363200857+00:00,1 +2023-10-24 21:21:55.478423502+00:00,1 +2023-10-24 21:21:55.594728628+00:00,1 +2023-10-24 21:21:55.709607501+00:00,1 +2023-10-24 21:21:55.824630567+00:00,1 +2023-10-24 21:21:55.940759153+00:00,1 +2023-10-24 21:21:56.056215026+00:00,1 +2023-10-24 21:21:56.171678143+00:00,1 +2023-10-24 21:21:56.287004923+00:00,1 +2023-10-24 21:21:56.403020112+00:00,1 +2023-10-24 21:21:56.518975241+00:00,1 +2023-10-24 21:21:56.634633355+00:00,1 +2023-10-24 21:21:56.749573276+00:00,1 +2023-10-24 21:21:56.865373610+00:00,1 +2023-10-24 21:21:56.981575371+00:00,1 +2023-10-24 21:21:57.098307160+00:00,1 +2023-10-24 21:21:57.214889186+00:00,1 +2023-10-24 21:21:57.330253675+00:00,1 +2023-10-24 21:21:57.445269286+00:00,1 +2023-10-24 21:21:57.560321638+00:00,1 +2023-10-24 21:21:57.675629982+00:00,1 +2023-10-24 21:21:57.790972678+00:00,1 +2023-10-24 21:21:57.906773387+00:00,1 +2023-10-24 21:21:58.022265616+00:00,1 +2023-10-24 21:21:58.137576013+00:00,1 +2023-10-24 21:21:58.252924898+00:00,1 +2023-10-24 21:21:58.368665200+00:00,1 +2023-10-24 21:21:58.484173652+00:00,1 +2023-10-24 21:21:58.599673895+00:00,1 +2023-10-24 21:21:58.714704588+00:00,1 +2023-10-24 21:21:58.829895573+00:00,1 +2023-10-24 21:21:58.945591609+00:00,1 +2023-10-24 21:21:59.060658551+00:00,1 +2023-10-24 21:21:59.175511853+00:00,1 +2023-10-24 21:21:59.291099128+00:00,1 +2023-10-24 21:21:59.406235808+00:00,1 +2023-10-24 21:21:59.521204290+00:00,1 +2023-10-24 21:21:59.636371407+00:00,1 +2023-10-24 21:21:59.751496007+00:00,1 +2023-10-24 21:21:59.867149712+00:00,1 +2023-10-24 21:21:59.983029795+00:00,1 +2023-10-24 21:22:00.098844012+00:00,1 +2023-10-24 21:22:00.214834756+00:00,1 +2023-10-24 21:22:00.330986896+00:00,1 +2023-10-24 21:22:00.446989170+00:00,1 +2023-10-24 21:22:00.563027318+00:00,1 +2023-10-24 21:22:00.678488923+00:00,1 +2023-10-24 21:22:00.793502896+00:00,1 +2023-10-24 21:22:00.908550331+00:00,1 +2023-10-24 21:22:01.024028126+00:00,1 +2023-10-24 21:22:01.139306304+00:00,1 +2023-10-24 21:22:01.254644172+00:00,1 +2023-10-24 21:22:01.370402625+00:00,1 +2023-10-24 21:22:01.486653810+00:00,1 +2023-10-24 21:22:01.603125276+00:00,1 +2023-10-24 21:22:01.718584095+00:00,1 +2023-10-24 21:22:01.834542917+00:00,1 +2023-10-24 21:22:01.950086553+00:00,1 +2023-10-24 21:22:02.065036290+00:00,1 +2023-10-24 21:22:02.181333084+00:00,1 +2023-10-24 21:22:02.297798181+00:00,1 +2023-10-24 21:22:02.414500810+00:00,1 +2023-10-24 21:22:02.530730256+00:00,1 +2023-10-24 21:22:02.647279096+00:00,1 +2023-10-24 21:22:02.762985674+00:00,1 +2023-10-24 21:22:02.879789238+00:00,1 +2023-10-24 21:22:02.995731892+00:00,1 +2023-10-24 21:22:03.112365140+00:00,1 +2023-10-24 21:22:03.228979788+00:00,1 +2023-10-24 21:22:03.344856896+00:00,1 +2023-10-24 21:22:03.460141029+00:00,1 +2023-10-24 21:22:03.576651988+00:00,1 +2023-10-24 21:22:03.693210576+00:00,1 +2023-10-24 21:22:03.808577166+00:00,1 +2023-10-24 21:22:03.924629893+00:00,1 +2023-10-24 21:22:04.040689397+00:00,1 +2023-10-24 21:22:04.157542298+00:00,1 +2023-10-24 21:22:04.273640605+00:00,1 +2023-10-24 21:22:04.390321954+00:00,1 +2023-10-24 21:22:04.506726872+00:00,1 +2023-10-24 21:22:04.623139268+00:00,1 +2023-10-24 21:22:04.740276902+00:00,1 +2023-10-24 21:22:04.857432902+00:00,1 +2023-10-24 21:22:04.973967244+00:00,1 +2023-10-24 21:22:05.089745689+00:00,1 +2023-10-24 21:22:05.205388206+00:00,1 +2023-10-24 21:22:05.321423700+00:00,1 +2023-10-24 21:22:05.436678456+00:00,1 +2023-10-24 21:22:05.552166505+00:00,1 +2023-10-24 21:22:05.667924039+00:00,1 +2023-10-24 21:22:05.783483519+00:00,1 +2023-10-24 21:22:05.899011828+00:00,1 +2023-10-24 21:22:06.015234213+00:00,1 +2023-10-24 21:22:06.132449042+00:00,1 +2023-10-24 21:22:06.248725033+00:00,1 +2023-10-24 21:22:06.365123062+00:00,1 +2023-10-24 21:22:06.480884292+00:00,1 +2023-10-24 21:22:06.597037974+00:00,1 +2023-10-24 21:22:06.713576157+00:00,1 +2023-10-24 21:22:06.830574178+00:00,1 +2023-10-24 21:22:06.947467695+00:00,1 +2023-10-24 21:22:07.063179867+00:00,1 +2023-10-24 21:22:07.179324329+00:00,1 +2023-10-24 21:22:07.294720119+00:00,1 +2023-10-24 21:22:07.413227894+00:00,1 +2023-10-24 21:22:07.529871082+00:00,1 +2023-10-24 21:22:07.646492558+00:00,1 +2023-10-24 21:22:07.762943163+00:00,1 +2023-10-24 21:22:07.879022188+00:00,1 +2023-10-24 21:22:07.995985274+00:00,1 +2023-10-24 21:22:08.112229863+00:00,1 +2023-10-24 21:22:08.228351897+00:00,1 +2023-10-24 21:22:08.344403151+00:00,1 +2023-10-24 21:22:08.460853555+00:00,1 +2023-10-24 21:22:08.576801376+00:00,1 +2023-10-24 21:22:08.692632853+00:00,1 +2023-10-24 21:22:08.808319035+00:00,1 +2023-10-24 21:22:08.923944530+00:00,1 +2023-10-24 21:22:09.040376750+00:00,1 +2023-10-24 21:22:09.156552094+00:00,1 +2023-10-24 21:22:09.272667443+00:00,1 +2023-10-24 21:22:09.389132449+00:00,1 +2023-10-24 21:22:09.505545957+00:00,1 +2023-10-24 21:22:09.621093987+00:00,1 +2023-10-24 21:22:09.736933867+00:00,1 +2023-10-24 21:22:09.851868411+00:00,1 +2023-10-24 21:22:09.967665017+00:00,1 +2023-10-24 21:22:10.083434668+00:00,1 +2023-10-24 21:22:10.199354855+00:00,1 +2023-10-24 21:22:10.314686486+00:00,1 +2023-10-24 21:22:10.430213306+00:00,1 +2023-10-24 21:22:10.545997481+00:00,1 +2023-10-24 21:22:10.662146220+00:00,1 +2023-10-24 21:22:10.777834431+00:00,1 +2023-10-24 21:22:10.894146738+00:00,1 +2023-10-24 21:22:11.011172654+00:00,1 +2023-10-24 21:22:11.128258727+00:00,1 +2023-10-24 21:22:11.244310165+00:00,1 +2023-10-24 21:22:11.360221737+00:00,1 +2023-10-24 21:22:11.475973500+00:00,1 +2023-10-24 21:22:11.591352342+00:00,1 +2023-10-24 21:22:11.708102148+00:00,1 +2023-10-24 21:22:11.824498316+00:00,1 +2023-10-24 21:22:11.941092230+00:00,1 +2023-10-24 21:22:12.057204098+00:00,1 +2023-10-24 21:22:12.172865922+00:00,1 +2023-10-24 21:22:12.289273579+00:00,1 +2023-10-24 21:22:12.405731578+00:00,1 +2023-10-24 21:22:12.521995863+00:00,1 +2023-10-24 21:22:12.638454591+00:00,1 +2023-10-24 21:22:12.754500470+00:00,1 +2023-10-24 21:22:12.870464560+00:00,1 +2023-10-24 21:22:12.986815127+00:00,1 +2023-10-24 21:22:13.103209658+00:00,1 +2023-10-24 21:22:13.219252540+00:00,1 +2023-10-24 21:22:13.336328413+00:00,1 +2023-10-24 21:22:13.453070063+00:00,1 +2023-10-24 21:22:13.568403032+00:00,1 +2023-10-24 21:22:13.685213685+00:00,1 +2023-10-24 21:22:13.800970706+00:00,1 +2023-10-24 21:22:13.917254098+00:00,1 +2023-10-24 21:22:14.034756981+00:00,1 +2023-10-24 21:22:14.150985550+00:00,1 +2023-10-24 21:22:14.267731242+00:00,1 +2023-10-24 21:22:14.383787224+00:00,1 +2023-10-24 21:22:14.500015257+00:00,1 +2023-10-24 21:22:14.616128978+00:00,1 +2023-10-24 21:22:14.732278269+00:00,1 +2023-10-24 21:22:14.848463529+00:00,1 +2023-10-24 21:22:14.963840333+00:00,1 +2023-10-24 21:22:15.079985966+00:00,1 +2023-10-24 21:22:15.195696898+00:00,1 +2023-10-24 21:22:15.312215611+00:00,1 +2023-10-24 21:22:15.429217778+00:00,1 +2023-10-24 21:22:15.544718105+00:00,1 +2023-10-24 21:22:15.660683765+00:00,1 +2023-10-24 21:22:15.776455911+00:00,1 +2023-10-24 21:22:15.891887966+00:00,1 +2023-10-24 21:22:16.007187745+00:00,1 +2023-10-24 21:22:16.123097751+00:00,1 +2023-10-24 21:22:16.238928864+00:00,1 +2023-10-24 21:22:16.355337998+00:00,1 +2023-10-24 21:22:16.470910521+00:00,1 +2023-10-24 21:22:16.587448107+00:00,1 +2023-10-24 21:22:16.703410595+00:00,1 +2023-10-24 21:22:16.819987627+00:00,1 +2023-10-24 21:22:16.936415975+00:00,1 +2023-10-24 21:22:17.052298620+00:00,1 +2023-10-24 21:22:17.168126533+00:00,1 +2023-10-24 21:22:17.284411597+00:00,1 +2023-10-24 21:22:17.400240777+00:00,1 +2023-10-24 21:22:17.517439267+00:00,1 +2023-10-24 21:22:17.633967166+00:00,1 +2023-10-24 21:22:17.750629838+00:00,1 +2023-10-24 21:22:17.867084277+00:00,1 +2023-10-24 21:22:17.983755337+00:00,1 +2023-10-24 21:22:18.099846058+00:00,1 +2023-10-24 21:22:18.215832553+00:00,1 +2023-10-24 21:22:18.332178630+00:00,1 +2023-10-24 21:22:18.448983842+00:00,1 +2023-10-24 21:22:18.565762446+00:00,1 +2023-10-24 21:22:18.681930598+00:00,1 +2023-10-24 21:22:18.797996989+00:00,1 +2023-10-24 21:22:18.913668442+00:00,1 +2023-10-24 21:22:19.029635207+00:00,1 +2023-10-24 21:22:19.145605531+00:00,1 +2023-10-24 21:22:19.261891852+00:00,1 +2023-10-24 21:22:19.377760511+00:00,1 +2023-10-24 21:22:19.494564733+00:00,1 +2023-10-24 21:22:19.610952239+00:00,1 +2023-10-24 21:22:19.727026161+00:00,1 +2023-10-24 21:22:19.842350001+00:00,1 +2023-10-24 21:22:19.958258017+00:00,1 +2023-10-24 21:22:20.074355039+00:00,1 +2023-10-24 21:22:20.191611969+00:00,1 +2023-10-24 21:22:20.307838809+00:00,1 +2023-10-24 21:22:20.424119807+00:00,1 +2023-10-24 21:22:20.540103568+00:00,1 +2023-10-24 21:22:20.656194651+00:00,1 +2023-10-24 21:22:20.772980186+00:00,1 +2023-10-24 21:22:20.889032404+00:00,1 +2023-10-24 21:22:21.004856842+00:00,1 +2023-10-24 21:22:21.120981797+00:00,1 +2023-10-24 21:22:21.236651726+00:00,1 +2023-10-24 21:22:21.352593626+00:00,1 +2023-10-24 21:22:21.468449322+00:00,1 +2023-10-24 21:22:21.585225301+00:00,1 +2023-10-24 21:22:21.701174149+00:00,1 +2023-10-24 21:22:21.817502202+00:00,1 +2023-10-24 21:22:21.934083923+00:00,1 +2023-10-24 21:22:22.050187087+00:00,1 +2023-10-24 21:22:22.166233475+00:00,1 +2023-10-24 21:22:22.282440272+00:00,1 +2023-10-24 21:22:22.398256551+00:00,1 +2023-10-24 21:22:22.514519748+00:00,1 +2023-10-24 21:22:22.630355771+00:00,1 +2023-10-24 21:22:22.746286967+00:00,1 +2023-10-24 21:22:22.862570581+00:00,1 +2023-10-24 21:22:22.978848541+00:00,1 +2023-10-24 21:22:23.094962695+00:00,1 +2023-10-24 21:22:23.210970763+00:00,1 +2023-10-24 21:22:23.327151176+00:00,1 +2023-10-24 21:22:23.443214924+00:00,1 +2023-10-24 21:22:23.559463509+00:00,1 +2023-10-24 21:22:23.675228387+00:00,1 +2023-10-24 21:22:23.791176357+00:00,1 +2023-10-24 21:22:23.907699888+00:00,1 +2023-10-24 21:22:24.024594185+00:00,1 +2023-10-24 21:22:24.141635893+00:00,1 +2023-10-24 21:22:24.259063790+00:00,1 +2023-10-24 21:22:24.375113556+00:00,1 +2023-10-24 21:22:24.491718489+00:00,1 +2023-10-24 21:22:24.608208761+00:00,1 +2023-10-24 21:22:24.723660102+00:00,1 +2023-10-24 21:22:24.839478437+00:00,1 +2023-10-24 21:22:24.955881311+00:00,1 +2023-10-24 21:22:25.071958508+00:00,1 +2023-10-24 21:22:25.189133725+00:00,1 +2023-10-24 21:22:25.305423107+00:00,1 +2023-10-24 21:22:25.420671549+00:00,1 +2023-10-24 21:22:25.536391895+00:00,1 +2023-10-24 21:22:25.652348092+00:00,1 +2023-10-24 21:22:25.768109614+00:00,1 +2023-10-24 21:22:25.884545558+00:00,1 +2023-10-24 21:22:26.001058909+00:00,1 +2023-10-24 21:22:26.117213599+00:00,1 +2023-10-24 21:22:26.233533895+00:00,1 +2023-10-24 21:22:26.349387610+00:00,1 +2023-10-24 21:22:26.465053407+00:00,1 +2023-10-24 21:22:26.580907157+00:00,1 +2023-10-24 21:22:26.697106129+00:00,1 +2023-10-24 21:22:26.813100254+00:00,1 +2023-10-24 21:22:26.928640645+00:00,1 +2023-10-24 21:22:27.046271831+00:00,1 +2023-10-24 21:22:27.162291271+00:00,1 +2023-10-24 21:22:27.277946788+00:00,1 +2023-10-24 21:22:27.394226935+00:00,1 +2023-10-24 21:22:27.510966924+00:00,1 +2023-10-24 21:22:27.627025183+00:00,1 +2023-10-24 21:22:27.743953449+00:00,1 +2023-10-24 21:22:27.860109045+00:00,1 +2023-10-24 21:22:27.976287631+00:00,1 +2023-10-24 21:22:28.092466427+00:00,1 +2023-10-24 21:22:28.208734191+00:00,1 +2023-10-24 21:22:28.324759379+00:00,1 +2023-10-24 21:22:28.441109471+00:00,1 +2023-10-24 21:22:28.556674939+00:00,1 +2023-10-24 21:22:28.672823442+00:00,1 +2023-10-24 21:22:28.788361700+00:00,1 +2023-10-24 21:22:28.905079310+00:00,1 +2023-10-24 21:22:29.021323529+00:00,1 +2023-10-24 21:22:29.137210032+00:00,1 +2023-10-24 21:22:29.253962611+00:00,1 +2023-10-24 21:22:29.370493393+00:00,1 +2023-10-24 21:22:29.486483711+00:00,1 +2023-10-24 21:22:29.601920414+00:00,1 +2023-10-24 21:22:29.717943715+00:00,1 +2023-10-24 21:22:29.833320049+00:00,1 +2023-10-24 21:22:29.949346034+00:00,1 +2023-10-24 21:22:30.065309163+00:00,1 +2023-10-24 21:22:30.182361292+00:00,1 +2023-10-24 21:22:30.298310962+00:00,1 +2023-10-24 21:22:30.414223485+00:00,1 +2023-10-24 21:22:30.530600120+00:00,1 +2023-10-24 21:22:30.646773211+00:00,1 +2023-10-24 21:22:30.763659396+00:00,1 +2023-10-24 21:22:30.879433501+00:00,1 +2023-10-24 21:22:30.995726680+00:00,1 +2023-10-24 21:22:31.111748192+00:00,1 +2023-10-24 21:22:31.227958229+00:00,1 +2023-10-24 21:22:31.344748061+00:00,1 +2023-10-24 21:22:31.460528382+00:00,1 +2023-10-24 21:22:31.576939303+00:00,1 +2023-10-24 21:22:31.693439054+00:00,1 +2023-10-24 21:22:31.809778977+00:00,1 +2023-10-24 21:22:31.926436052+00:00,1 +2023-10-24 21:22:32.042790197+00:00,1 +2023-10-24 21:22:32.159160824+00:00,1 +2023-10-24 21:22:32.274938822+00:00,1 +2023-10-24 21:22:32.390784250+00:00,1 +2023-10-24 21:22:32.506302149+00:00,1 +2023-10-24 21:22:32.622150808+00:00,1 +2023-10-24 21:22:32.742733942+00:00,1 +2023-10-24 21:22:32.859733372+00:00,1 +2023-10-24 21:22:32.974564886+00:00,1 +2023-10-24 21:22:33.089674094+00:00,1 +2023-10-24 21:22:33.205164238+00:00,1 +2023-10-24 21:22:33.322111754+00:00,1 +2023-10-24 21:22:33.438066622+00:00,1 +2023-10-24 21:22:33.553688563+00:00,1 +2023-10-24 21:22:33.669642807+00:00,1 +2023-10-24 21:22:33.785391421+00:00,1 +2023-10-24 21:22:33.901733859+00:00,1 +2023-10-24 21:22:34.018649420+00:00,1 +2023-10-24 21:22:34.136025762+00:00,1 +2023-10-24 21:22:34.252296231+00:00,1 +2023-10-24 21:22:34.368292030+00:00,1 +2023-10-24 21:22:34.484056367+00:00,1 +2023-10-24 21:22:34.600398424+00:00,1 +2023-10-24 21:22:34.717060650+00:00,1 +2023-10-24 21:22:34.834311145+00:00,1 +2023-10-24 21:22:34.956335695+00:00,1 +2023-10-24 21:22:35.072727631+00:00,1 +2023-10-24 21:22:35.189166717+00:00,1 +2023-10-24 21:22:35.305533640+00:00,1 +2023-10-24 21:22:35.421841988+00:00,1 +2023-10-24 21:22:35.538201114+00:00,1 +2023-10-24 21:22:35.654038738+00:00,1 +2023-10-24 21:22:35.769681532+00:00,1 +2023-10-24 21:22:35.889314629+00:00,1 +2023-10-24 21:22:36.005619044+00:00,1 +2023-10-24 21:22:36.122055557+00:00,1 +2023-10-24 21:22:36.238204350+00:00,1 +2023-10-24 21:22:36.353979224+00:00,1 +2023-10-24 21:22:36.470347724+00:00,1 +2023-10-24 21:22:36.587416459+00:00,1 +2023-10-24 21:22:36.704595342+00:00,1 +2023-10-24 21:22:36.820329512+00:00,1 +2023-10-24 21:22:36.936157650+00:00,1 +2023-10-24 21:22:37.052018417+00:00,1 +2023-10-24 21:22:37.167746514+00:00,1 +2023-10-24 21:22:37.283450275+00:00,1 +2023-10-24 21:22:37.399035193+00:00,1 +2023-10-24 21:22:37.515398057+00:00,1 +2023-10-24 21:22:37.632067718+00:00,1 +2023-10-24 21:22:37.748498225+00:00,1 +2023-10-24 21:22:37.863781032+00:00,1 +2023-10-24 21:22:37.980005753+00:00,1 +2023-10-24 21:22:38.096054062+00:00,1 +2023-10-24 21:22:38.212367864+00:00,1 +2023-10-24 21:22:38.328542356+00:00,1 +2023-10-24 21:22:38.445188562+00:00,1 +2023-10-24 21:22:38.561031862+00:00,1 +2023-10-24 21:22:38.676666838+00:00,1 +2023-10-24 21:22:38.792981330+00:00,1 +2023-10-24 21:22:38.908553104+00:00,1 +2023-10-24 21:22:39.024325264+00:00,1 +2023-10-24 21:22:39.140391198+00:00,1 +2023-10-24 21:22:39.256692897+00:00,1 +2023-10-24 21:22:39.374185116+00:00,1 +2023-10-24 21:22:39.490597515+00:00,1 +2023-10-24 21:22:39.607246579+00:00,1 +2023-10-24 21:22:39.723678819+00:00,1 +2023-10-24 21:22:39.840240364+00:00,1 +2023-10-24 21:22:39.956966178+00:00,1 +2023-10-24 21:22:40.074095926+00:00,1 +2023-10-24 21:22:40.189253447+00:00,1 +2023-10-24 21:22:40.304832897+00:00,1 +2023-10-24 21:22:40.420788639+00:00,1 +2023-10-24 21:22:40.536301688+00:00,1 +2023-10-24 21:22:40.651607648+00:00,1 +2023-10-24 21:22:40.767507597+00:00,1 +2023-10-24 21:22:40.884549703+00:00,1 +2023-10-24 21:22:41.000858288+00:00,1 +2023-10-24 21:22:41.117069236+00:00,1 +2023-10-24 21:22:41.233921028+00:00,1 +2023-10-24 21:22:41.349678222+00:00,1 +2023-10-24 21:22:41.466384828+00:00,1 +2023-10-24 21:22:41.582194038+00:00,1 +2023-10-24 21:22:41.697694132+00:00,1 +2023-10-24 21:22:41.814150257+00:00,1 +2023-10-24 21:22:41.930305571+00:00,1 +2023-10-24 21:22:42.046012649+00:00,1 +2023-10-24 21:22:42.161717746+00:00,1 +2023-10-24 21:22:42.278164252+00:00,1 +2023-10-24 21:22:42.394559578+00:00,1 +2023-10-24 21:22:42.511827688+00:00,1 +2023-10-24 21:22:42.628824006+00:00,1 +2023-10-24 21:22:42.744814827+00:00,1 +2023-10-24 21:22:42.860916677+00:00,1 +2023-10-24 21:22:42.976228364+00:00,1 +2023-10-24 21:22:43.091796596+00:00,1 +2023-10-24 21:22:43.207897656+00:00,1 +2023-10-24 21:22:43.323181486+00:00,1 +2023-10-24 21:22:43.439126969+00:00,1 +2023-10-24 21:22:43.555400876+00:00,1 +2023-10-24 21:22:43.671091440+00:00,1 +2023-10-24 21:22:43.786832193+00:00,1 +2023-10-24 21:22:43.902658410+00:00,1 +2023-10-24 21:22:44.018709383+00:00,1 +2023-10-24 21:22:44.134809895+00:00,1 +2023-10-24 21:22:44.250941916+00:00,1 +2023-10-24 21:22:44.367732032+00:00,1 +2023-10-24 21:22:44.483798372+00:00,1 +2023-10-24 21:22:44.599762287+00:00,1 +2023-10-24 21:22:44.716502581+00:00,1 +2023-10-24 21:22:44.832832047+00:00,1 +2023-10-24 21:22:44.949426183+00:00,1 +2023-10-24 21:22:45.064960522+00:00,1 +2023-10-24 21:22:45.181307026+00:00,1 +2023-10-24 21:22:45.297024690+00:00,1 +2023-10-24 21:22:45.412974767+00:00,1 +2023-10-24 21:22:45.529617435+00:00,1 +2023-10-24 21:22:45.645819508+00:00,1 +2023-10-24 21:22:45.762275484+00:00,1 +2023-10-24 21:22:45.878914690+00:00,1 +2023-10-24 21:22:45.995196115+00:00,1 +2023-10-24 21:22:46.111913534+00:00,1 +2023-10-24 21:22:46.227478288+00:00,1 +2023-10-24 21:22:46.343151752+00:00,1 +2023-10-24 21:22:46.459266905+00:00,1 +2023-10-24 21:22:46.576410918+00:00,1 +2023-10-24 21:22:46.693250076+00:00,1 +2023-10-24 21:22:46.811469525+00:00,1 +2023-10-24 21:22:46.927483033+00:00,1 +2023-10-24 21:22:47.043376199+00:00,1 +2023-10-24 21:22:47.158994187+00:00,1 +2023-10-24 21:22:47.275429367+00:00,1 +2023-10-24 21:22:47.392040312+00:00,1 +2023-10-24 21:22:47.508661678+00:00,1 +2023-10-24 21:22:47.624428615+00:00,1 +2023-10-24 21:22:47.740380780+00:00,1 +2023-10-24 21:22:47.856332171+00:00,1 +2023-10-24 21:22:47.972643659+00:00,1 +2023-10-24 21:22:48.089290984+00:00,1 +2023-10-24 21:22:48.205015528+00:00,1 +2023-10-24 21:22:48.320798944+00:00,1 +2023-10-24 21:22:48.436918057+00:00,1 +2023-10-24 21:22:48.553399456+00:00,1 +2023-10-24 21:22:48.669496522+00:00,1 +2023-10-24 21:22:48.785231899+00:00,1 +2023-10-24 21:22:48.902008504+00:00,1 +2023-10-24 21:22:49.018254282+00:00,1 +2023-10-24 21:22:49.134472489+00:00,1 +2023-10-24 21:22:49.251062294+00:00,1 +2023-10-24 21:22:49.368027987+00:00,1 +2023-10-24 21:22:49.486099500+00:00,1 +2023-10-24 21:22:49.602121091+00:00,1 +2023-10-24 21:22:49.719013607+00:00,1 +2023-10-24 21:22:49.836119886+00:00,1 +2023-10-24 21:22:49.952865798+00:00,1 +2023-10-24 21:22:50.068632947+00:00,1 +2023-10-24 21:22:50.184509959+00:00,1 +2023-10-24 21:22:50.301083140+00:00,1 +2023-10-24 21:22:50.417881595+00:00,1 +2023-10-24 21:22:50.533664580+00:00,1 +2023-10-24 21:22:50.650313840+00:00,1 +2023-10-24 21:22:50.765792382+00:00,1 +2023-10-24 21:22:50.882518400+00:00,1 +2023-10-24 21:22:50.999038839+00:00,1 +2023-10-24 21:22:51.115190513+00:00,1 +2023-10-24 21:22:51.230658550+00:00,1 +2023-10-24 21:22:51.346659939+00:00,1 +2023-10-24 21:22:51.462406143+00:00,1 +2023-10-24 21:22:51.578902141+00:00,1 +2023-10-24 21:22:51.694900948+00:00,1 +2023-10-24 21:22:51.811661969+00:00,1 +2023-10-24 21:22:51.928235758+00:00,1 +2023-10-24 21:22:52.044106636+00:00,1 +2023-10-24 21:22:52.160272462+00:00,1 +2023-10-24 21:22:52.276749214+00:00,1 +2023-10-24 21:22:52.392878382+00:00,1 +2023-10-24 21:22:52.509036069+00:00,1 +2023-10-24 21:22:52.625809826+00:00,1 +2023-10-24 21:22:52.742150133+00:00,1 +2023-10-24 21:22:52.858733780+00:00,1 +2023-10-24 21:22:52.974669560+00:00,1 +2023-10-24 21:22:53.090723967+00:00,1 +2023-10-24 21:22:53.206938601+00:00,1 +2023-10-24 21:22:53.323049203+00:00,1 +2023-10-24 21:22:53.439181753+00:00,1 +2023-10-24 21:22:56.633058271+00:00,1 +2023-10-24 21:22:56.747899769+00:00,1 +2023-10-24 21:22:56.863025532+00:00,1 +2023-10-24 21:22:56.977593212+00:00,1 +2023-10-24 21:22:57.092273962+00:00,1 +2023-10-24 21:22:57.207665015+00:00,1 +2023-10-24 21:22:57.322932136+00:00,1 +2023-10-24 21:22:57.438415818+00:00,1 +2023-10-24 21:22:58.577030769+00:00,1 +2023-10-24 21:22:58.691820446+00:00,1 +2023-10-24 21:22:58.806376930+00:00,1 +2023-10-24 21:22:58.921252027+00:00,1 +2023-10-24 21:22:59.036594708+00:00,1 +2023-10-24 21:22:59.150856260+00:00,1 +2023-10-24 21:23:00.273486392+00:00,1 +2023-10-24 21:23:00.388015768+00:00,1 +2023-10-24 21:23:00.503063518+00:00,1 +2023-10-24 21:23:00.617482297+00:00,1 +2023-10-24 21:23:00.731648554+00:00,1 +2023-10-24 21:23:00.846991887+00:00,1 +2023-10-24 21:23:00.962280518+00:00,1 +2023-10-24 21:23:01.076825793+00:00,1 +2023-10-24 21:23:01.191982709+00:00,1 +2023-10-24 21:23:01.306570276+00:00,1 +2023-10-24 21:23:01.420908243+00:00,1 +2023-10-24 21:23:01.536357422+00:00,0 +2023-10-24 21:23:03.549594884+00:00,1 +2023-10-24 21:23:03.665458518+00:00,1 +2023-10-24 21:23:03.787743747+00:00,1 +2023-10-24 21:23:03.901953130+00:00,1 +2023-10-24 21:23:04.016218234+00:00,1 +2023-10-24 21:23:04.131062174+00:00,1 +2023-10-24 21:23:04.245225898+00:00,1 +2023-10-24 21:23:04.360471659+00:00,1 +2023-10-24 21:23:04.474814183+00:00,1 +2023-10-24 21:23:04.590062638+00:00,1 +2023-10-24 21:23:04.705522605+00:00,1 +2023-10-24 21:23:04.821050975+00:00,1 +2023-10-24 21:23:05.937268959+00:00,1 +2023-10-24 21:23:06.051727454+00:00,1 +2023-10-24 21:23:06.166748271+00:00,0 +2023-10-24 21:23:08.179174631+00:00,1 +2023-10-24 21:23:08.294143937+00:00,1 +2023-10-24 21:23:08.409151314+00:00,1 +2023-10-24 21:23:09.553550415+00:00,1 +2023-10-24 21:23:09.668426641+00:00,1 +2023-10-24 21:23:09.782682084+00:00,1 +2023-10-24 21:23:10.905119921+00:00,1 +2023-10-24 21:23:11.019720030+00:00,1 +2023-10-24 21:23:11.134792031+00:00,1 +2023-10-24 21:23:11.248866732+00:00,1 +2023-10-24 21:23:11.363306986+00:00,1 +2023-10-24 21:23:11.478683535+00:00,1 +2023-10-24 21:23:11.593344567+00:00,1 +2023-10-24 21:23:11.708761322+00:00,1 +2023-10-24 21:23:11.823657145+00:00,1 +2023-10-24 21:23:11.938509114+00:00,1 +2023-10-24 21:23:13.071898402+00:00,1 +2023-10-24 21:23:13.186650156+00:00,1 +2023-10-24 21:23:13.301397944+00:00,1 +2023-10-24 21:23:13.416174014+00:00,1 +2023-10-24 21:23:13.530506568+00:00,1 +2023-10-24 21:23:13.646085334+00:00,1 +2023-10-24 21:23:13.761272573+00:00,1 +2023-10-24 21:23:13.875739415+00:00,1 +2023-10-24 21:23:13.991317652+00:00,1 +2023-10-24 21:23:15.165778837+00:00,1 +2023-10-24 21:23:15.280737604+00:00,1 +2023-10-24 21:23:15.395984947+00:00,1 +2023-10-24 21:23:15.510997185+00:00,1 +2023-10-24 21:23:15.626186956+00:00,0 +2023-10-24 21:23:17.638871361+00:00,1 +2023-10-24 21:23:17.754803094+00:00,1 +2023-10-24 21:23:17.869563837+00:00,1 +2023-10-24 21:23:17.985135007+00:00,1 +2023-10-24 21:23:18.100461251+00:00,1 +2023-10-24 21:23:19.218229247+00:00,1 +2023-10-24 21:23:19.334578608+00:00,1 +2023-10-24 21:23:19.450300239+00:00,1 +2023-10-24 21:23:19.565761032+00:00,1 +2023-10-24 21:23:19.681817685+00:00,1 +2023-10-24 21:23:19.797537977+00:00,1 +2023-10-24 21:23:19.913380039+00:00,1 +2023-10-24 21:23:20.028918008+00:00,1 +2023-10-24 21:23:20.144845196+00:00,1 +2023-10-24 21:23:20.260670172+00:00,1 +2023-10-24 21:23:20.375954190+00:00,1 +2023-10-24 21:23:20.491047888+00:00,1 +2023-10-24 21:23:20.606702677+00:00,1 +2023-10-24 21:23:20.722051978+00:00,1 +2023-10-24 21:23:20.837713470+00:00,1 +2023-10-24 21:23:20.952889216+00:00,1 +2023-10-24 21:23:21.068417198+00:00,1 +2023-10-24 21:23:21.183760843+00:00,1 +2023-10-24 21:23:21.298707352+00:00,1 +2023-10-24 21:23:21.414538410+00:00,1 +2023-10-24 21:23:21.529445516+00:00,1 +2023-10-24 21:23:21.644741368+00:00,1 +2023-10-24 21:23:21.759465000+00:00,1 +2023-10-24 21:23:21.875651560+00:00,1 +2023-10-24 21:23:21.991093095+00:00,1 +2023-10-24 21:23:22.106364584+00:00,1 +2023-10-24 21:23:22.221874469+00:00,1 +2023-10-24 21:23:22.337444087+00:00,1 +2023-10-24 21:23:22.452789189+00:00,1 +2023-10-24 21:23:22.568574326+00:00,1 +2023-10-24 21:23:22.683656134+00:00,1 +2023-10-24 21:23:22.800236674+00:00,1 +2023-10-24 21:23:22.916192171+00:00,1 +2023-10-24 21:23:23.031320312+00:00,1 +2023-10-24 21:23:23.146913965+00:00,1 +2023-10-24 21:23:23.262170398+00:00,1 +2023-10-24 21:23:23.378606896+00:00,1 +2023-10-24 21:23:23.494381416+00:00,1 +2023-10-24 21:23:23.609861770+00:00,1 +2023-10-24 21:23:23.725403582+00:00,1 +2023-10-24 21:23:23.841127120+00:00,1 +2023-10-24 21:23:23.956801873+00:00,1 +2023-10-24 21:23:24.072460015+00:00,1 +2023-10-24 21:23:24.188060716+00:00,1 +2023-10-24 21:23:24.303519333+00:00,1 +2023-10-24 21:23:24.419999298+00:00,1 +2023-10-24 21:23:24.535456292+00:00,1 +2023-10-24 21:23:24.651665000+00:00,1 +2023-10-24 21:23:24.767040620+00:00,1 +2023-10-24 21:23:24.882750123+00:00,1 +2023-10-24 21:23:24.998418972+00:00,1 +2023-10-24 21:23:25.113986449+00:00,1 +2023-10-24 21:23:25.229523536+00:00,1 +2023-10-24 21:23:25.344827552+00:00,1 +2023-10-24 21:23:25.460626150+00:00,1 +2023-10-24 21:23:25.576016366+00:00,1 +2023-10-24 21:23:25.691296431+00:00,1 +2023-10-24 21:23:25.806436598+00:00,1 +2023-10-24 21:23:25.921776315+00:00,1 +2023-10-24 21:23:26.037267179+00:00,1 +2023-10-24 21:23:26.152828277+00:00,1 +2023-10-24 21:23:26.268296031+00:00,1 +2023-10-24 21:23:26.383271494+00:00,1 +2023-10-24 21:23:26.499203528+00:00,1 +2023-10-24 21:23:26.614695821+00:00,1 +2023-10-24 21:23:26.730230696+00:00,1 +2023-10-24 21:23:26.845848468+00:00,1 +2023-10-24 21:23:26.961425774+00:00,1 +2023-10-24 21:23:27.076846255+00:00,1 +2023-10-24 21:23:27.192745154+00:00,1 +2023-10-24 21:23:27.308416033+00:00,1 +2023-10-24 21:23:27.424083682+00:00,1 +2023-10-24 21:23:27.539732983+00:00,1 +2023-10-24 21:23:27.655855144+00:00,1 +2023-10-24 21:23:27.771282580+00:00,1 +2023-10-24 21:23:27.886216263+00:00,1 +2023-10-24 21:23:28.001392825+00:00,1 +2023-10-24 21:23:28.116993082+00:00,1 +2023-10-24 21:23:28.232562439+00:00,1 +2023-10-24 21:23:28.347555357+00:00,1 +2023-10-24 21:23:28.462783233+00:00,1 +2023-10-24 21:23:28.578802331+00:00,1 +2023-10-24 21:23:28.693827415+00:00,1 +2023-10-24 21:23:28.809130520+00:00,1 +2023-10-24 21:23:28.924755254+00:00,1 +2023-10-24 21:23:29.040028825+00:00,1 +2023-10-24 21:23:29.155778836+00:00,1 +2023-10-24 21:23:29.271399704+00:00,1 +2023-10-24 21:23:29.386686774+00:00,1 +2023-10-24 21:23:29.502589385+00:00,1 +2023-10-24 21:23:29.618250125+00:00,1 +2023-10-24 21:23:29.733680148+00:00,1 +2023-10-24 21:23:29.849464055+00:00,1 +2023-10-24 21:23:29.966036569+00:00,1 +2023-10-24 21:23:30.082399297+00:00,1 +2023-10-24 21:23:30.198310951+00:00,1 +2023-10-24 21:23:30.314380058+00:00,1 +2023-10-24 21:23:30.430652808+00:00,1 +2023-10-24 21:23:30.546039711+00:00,1 +2023-10-24 21:23:30.661900331+00:00,1 +2023-10-24 21:23:30.777127566+00:00,1 +2023-10-24 21:23:30.893314131+00:00,1 +2023-10-24 21:23:31.009152798+00:00,1 +2023-10-24 21:23:31.125076318+00:00,1 +2023-10-24 21:23:31.240531161+00:00,1 +2023-10-24 21:23:31.357579279+00:00,1 +2023-10-24 21:23:31.473091161+00:00,1 +2023-10-24 21:23:31.588711779+00:00,1 +2023-10-24 21:23:31.705224176+00:00,1 +2023-10-24 21:23:31.820783630+00:00,1 +2023-10-24 21:23:31.937229613+00:00,1 +2023-10-24 21:23:32.052757837+00:00,1 +2023-10-24 21:23:32.168108422+00:00,1 +2023-10-24 21:23:32.283785039+00:00,1 +2023-10-24 21:23:32.398917662+00:00,1 +2023-10-24 21:23:32.514563001+00:00,1 +2023-10-24 21:23:32.629513793+00:00,1 +2023-10-24 21:23:32.744494189+00:00,1 +2023-10-24 21:23:32.859547395+00:00,1 +2023-10-24 21:23:32.974340948+00:00,1 +2023-10-24 21:23:33.090238825+00:00,1 +2023-10-24 21:23:33.205488360+00:00,1 +2023-10-24 21:23:33.320496211+00:00,1 +2023-10-24 21:23:33.435447182+00:00,1 +2023-10-24 21:23:33.551022831+00:00,1 +2023-10-24 21:23:33.666691200+00:00,1 +2023-10-24 21:23:33.782339446+00:00,1 +2023-10-24 21:23:33.897530340+00:00,1 +2023-10-24 21:23:34.013564111+00:00,1 +2023-10-24 21:23:34.128897482+00:00,1 +2023-10-24 21:23:34.244201008+00:00,1 +2023-10-24 21:23:34.359874834+00:00,1 +2023-10-24 21:23:34.475594149+00:00,1 +2023-10-24 21:23:34.591230372+00:00,1 +2023-10-24 21:23:34.706343493+00:00,1 +2023-10-24 21:23:34.821890070+00:00,1 +2023-10-24 21:23:34.937315443+00:00,1 +2023-10-24 21:23:35.053829334+00:00,1 +2023-10-24 21:23:35.169266859+00:00,1 +2023-10-24 21:23:35.284495786+00:00,1 +2023-10-24 21:23:35.400843301+00:00,1 +2023-10-24 21:23:35.516802935+00:00,1 +2023-10-24 21:23:35.632791789+00:00,1 +2023-10-24 21:23:35.748422257+00:00,1 +2023-10-24 21:23:35.864214599+00:00,1 +2023-10-24 21:23:35.979839065+00:00,1 +2023-10-24 21:23:36.095967515+00:00,1 +2023-10-24 21:23:36.211423671+00:00,0 +2023-10-24 21:23:38.223306882+00:00,1 +2023-10-24 21:23:38.337728985+00:00,1 +2023-10-24 21:23:38.452018061+00:00,1 +2023-10-24 21:23:38.566357939+00:00,0 +2023-10-24 21:23:40.579427633+00:00,1 +2023-10-24 21:23:40.693732096+00:00,1 +2023-10-24 21:23:40.808181541+00:00,1 +2023-10-24 21:23:40.923127911+00:00,0 +2023-10-24 21:23:42.935723998+00:00,1 +2023-10-24 21:23:43.050113300+00:00,0 +2023-10-24 21:23:45.063039734+00:00,1 +2023-10-24 21:23:45.177902493+00:00,1 +2023-10-24 21:23:45.292178939+00:00,1 +2023-10-24 21:23:45.407220237+00:00,1 +2023-10-24 21:23:45.522361026+00:00,1 +2023-10-24 21:23:45.637126201+00:00,1 +2023-10-24 21:23:45.751534755+00:00,1 +2023-10-24 21:23:45.866315518+00:00,1 +2023-10-24 21:23:49.094405239+00:00,1 +2023-10-24 21:23:49.208901069+00:00,1 +2023-10-24 21:23:49.323848337+00:00,1 +2023-10-24 21:23:49.438275118+00:00,0 +2023-10-24 21:23:51.451186002+00:00,1 +2023-10-24 21:23:51.565739012+00:00,1 +2023-10-24 21:23:51.680761132+00:00,1 +2023-10-24 21:23:51.795007640+00:00,1 +2023-10-24 21:23:51.910721464+00:00,1 +2023-10-24 21:23:52.026052344+00:00,1 +2023-10-24 21:23:52.140671633+00:00,1 +2023-10-24 21:23:52.255529494+00:00,1 +2023-10-24 21:23:52.370127925+00:00,1 +2023-10-24 21:23:52.484805847+00:00,1 +2023-10-24 21:23:52.599969992+00:00,0 +2023-10-24 21:23:54.613066990+00:00,1 +2023-10-24 21:23:56.775366021+00:00,1 +2023-10-24 21:23:56.890881476+00:00,1 +2023-10-24 21:23:57.006083643+00:00,1 +2023-10-24 21:23:57.121534478+00:00,1 +2023-10-24 21:23:57.236669745+00:00,1 +2023-10-24 21:23:58.374290249+00:00,1 +2023-10-24 21:23:58.489563694+00:00,1 +2023-10-24 21:23:58.604617954+00:00,1 +2023-10-24 21:23:58.719502698+00:00,1 +2023-10-24 21:23:58.834541869+00:00,1 +2023-10-24 21:24:03.046530880+00:00,1 +2023-10-24 21:24:03.161587038+00:00,1 +2023-10-24 21:24:03.276045452+00:00,1 +2023-10-24 21:24:03.391699398+00:00,1 +2023-10-24 21:24:03.507310178+00:00,1 +2023-10-24 21:24:03.622626311+00:00,1 +2023-10-24 21:24:03.738032664+00:00,0 +2023-10-24 21:24:05.750852486+00:00,1 +2023-10-24 21:24:05.866122352+00:00,1 +2023-10-24 21:24:05.981059781+00:00,1 +2023-10-24 21:24:06.095354053+00:00,1 +2023-10-24 21:24:06.209995904+00:00,1 +2023-10-24 21:24:06.324851742+00:00,1 +2023-10-24 21:24:06.439930275+00:00,1 +2023-10-24 21:24:06.554711100+00:00,1 +2023-10-24 21:24:07.717282109+00:00,1 +2023-10-24 21:24:07.831303287+00:00,1 +2023-10-24 21:24:09.007451591+00:00,1 +2023-10-24 21:24:09.123440172+00:00,1 +2023-10-24 21:24:09.238252995+00:00,1 +2023-10-24 21:24:09.352480565+00:00,1 +2023-10-24 21:24:09.466313302+00:00,1 +2023-10-24 21:24:09.581589241+00:00,1 +2023-10-24 21:24:09.696276174+00:00,1 +2023-10-24 21:24:09.810734065+00:00,1 +2023-10-24 21:24:09.925295983+00:00,1 +2023-10-24 21:24:10.039892956+00:00,1 +2023-10-24 21:24:10.153921074+00:00,1 +2023-10-24 21:24:10.268312636+00:00,1 +2023-10-24 21:24:10.382502023+00:00,1 +2023-10-24 21:24:10.496822854+00:00,1 +2023-10-24 21:24:10.611792575+00:00,1 +2023-10-24 21:24:10.725907219+00:00,1 +2023-10-24 21:24:10.840332925+00:00,1 +2023-10-24 21:24:10.955118024+00:00,1 +2023-10-24 21:24:11.069238147+00:00,1 +2023-10-24 21:24:11.183947116+00:00,1 +2023-10-24 21:24:11.299490301+00:00,1 +2023-10-24 21:24:11.414155409+00:00,1 +2023-10-24 21:24:14.639565898+00:00,1 +2023-10-24 21:24:14.753586311+00:00,1 +2023-10-24 21:24:14.869130628+00:00,1 +2023-10-24 21:24:14.984859864+00:00,1 +2023-10-24 21:24:15.100505280+00:00,1 +2023-10-24 21:24:15.215855130+00:00,1 +2023-10-24 21:24:15.331672602+00:00,1 +2023-10-24 21:24:15.447790831+00:00,1 +2023-10-24 21:24:15.563093309+00:00,1 +2023-10-24 21:24:15.678858375+00:00,1 +2023-10-24 21:24:15.794323293+00:00,1 +2023-10-24 21:24:15.910698223+00:00,1 +2023-10-24 21:24:16.026271541+00:00,1 +2023-10-24 21:24:16.142065464+00:00,1 +2023-10-24 21:24:16.257779099+00:00,1 +2023-10-24 21:24:16.373100545+00:00,1 +2023-10-24 21:24:16.489458002+00:00,1 +2023-10-24 21:24:16.605139820+00:00,1 +2023-10-24 21:24:16.720177718+00:00,1 +2023-10-24 21:24:16.835419881+00:00,1 +2023-10-24 21:24:16.950651703+00:00,1 +2023-10-24 21:24:17.065752400+00:00,1 +2023-10-24 21:24:17.181528113+00:00,1 +2023-10-24 21:24:17.296979694+00:00,1 +2023-10-24 21:24:17.412446451+00:00,1 +2023-10-24 21:24:17.528324247+00:00,1 +2023-10-24 21:24:17.645409054+00:00,1 +2023-10-24 21:24:17.760928246+00:00,1 +2023-10-24 21:24:17.876237851+00:00,1 +2023-10-24 21:24:17.991965606+00:00,1 +2023-10-24 21:24:18.107149111+00:00,1 +2023-10-24 21:24:18.222250232+00:00,1 +2023-10-24 21:24:18.336989854+00:00,1 +2023-10-24 21:24:18.451894004+00:00,1 +2023-10-24 21:24:18.566911175+00:00,1 +2023-10-24 21:24:18.682237246+00:00,1 +2023-10-24 21:24:18.797007480+00:00,1 +2023-10-24 21:24:18.912060035+00:00,1 +2023-10-24 21:24:19.028415862+00:00,1 +2023-10-24 21:24:19.144403593+00:00,1 +2023-10-24 21:24:19.259838511+00:00,1 +2023-10-24 21:24:19.375878879+00:00,1 +2023-10-24 21:24:19.491512759+00:00,1 +2023-10-24 21:24:19.607277918+00:00,1 +2023-10-24 21:24:19.722910681+00:00,1 +2023-10-24 21:24:19.838695709+00:00,1 +2023-10-24 21:24:19.954580663+00:00,1 +2023-10-24 21:24:20.070680297+00:00,1 +2023-10-24 21:24:20.185583110+00:00,1 +2023-10-24 21:24:20.301111093+00:00,1 +2023-10-24 21:24:20.416381239+00:00,1 +2023-10-24 21:24:20.531774290+00:00,1 +2023-10-24 21:24:20.647343034+00:00,1 +2023-10-24 21:24:20.763036999+00:00,1 +2023-10-24 21:24:20.878531448+00:00,1 +2023-10-24 21:24:20.994132980+00:00,1 +2023-10-24 21:24:21.109511505+00:00,1 +2023-10-24 21:24:21.224906858+00:00,1 +2023-10-24 21:24:21.339599961+00:00,1 +2023-10-24 21:24:21.455006654+00:00,1 +2023-10-24 21:24:21.569938562+00:00,1 +2023-10-24 21:24:21.684903060+00:00,1 +2023-10-24 21:24:21.800075403+00:00,1 +2023-10-24 21:24:21.915937626+00:00,1 +2023-10-24 21:24:22.031368803+00:00,1 +2023-10-24 21:24:22.146998584+00:00,1 +2023-10-24 21:24:22.262607580+00:00,1 +2023-10-24 21:24:22.378019479+00:00,1 +2023-10-24 21:24:22.493371408+00:00,1 +2023-10-24 21:24:22.608678989+00:00,1 +2023-10-24 21:24:22.724014087+00:00,1 +2023-10-24 21:24:22.839436075+00:00,1 +2023-10-24 21:24:22.955182999+00:00,1 +2023-10-24 21:24:23.070974943+00:00,1 +2023-10-24 21:24:23.186222171+00:00,1 +2023-10-24 21:24:23.301172928+00:00,1 +2023-10-24 21:24:23.417213356+00:00,1 +2023-10-24 21:24:23.532680584+00:00,1 +2023-10-24 21:24:23.648437806+00:00,1 +2023-10-24 21:24:23.763984304+00:00,1 +2023-10-24 21:24:23.879536722+00:00,1 +2023-10-24 21:24:23.995779424+00:00,1 +2023-10-24 21:24:24.111856738+00:00,1 +2023-10-24 21:24:24.227752314+00:00,1 +2023-10-24 21:24:24.343999274+00:00,1 +2023-10-24 21:24:24.459908241+00:00,1 +2023-10-24 21:24:24.575534037+00:00,1 +2023-10-24 21:24:24.690926595+00:00,1 +2023-10-24 21:24:24.806508371+00:00,1 +2023-10-24 21:24:24.921944737+00:00,1 +2023-10-24 21:24:25.038010304+00:00,1 +2023-10-24 21:24:25.154073447+00:00,1 +2023-10-24 21:24:25.269150158+00:00,1 +2023-10-24 21:24:25.384739079+00:00,1 +2023-10-24 21:24:25.500236150+00:00,1 +2023-10-24 21:24:25.615415310+00:00,1 +2023-10-24 21:24:25.730649190+00:00,1 +2023-10-24 21:24:25.846903563+00:00,1 +2023-10-24 21:24:25.962395949+00:00,1 +2023-10-24 21:24:26.078707337+00:00,1 +2023-10-24 21:24:26.194199979+00:00,1 +2023-10-24 21:24:26.309901814+00:00,1 +2023-10-24 21:24:26.425388853+00:00,1 +2023-10-24 21:24:26.540732475+00:00,1 +2023-10-24 21:24:26.656684594+00:00,1 +2023-10-24 21:24:26.771724727+00:00,1 +2023-10-24 21:24:26.887338336+00:00,1 +2023-10-24 21:24:27.003178726+00:00,1 +2023-10-24 21:24:27.118975816+00:00,1 +2023-10-24 21:24:27.233953172+00:00,1 +2023-10-24 21:24:27.349318068+00:00,1 +2023-10-24 21:24:27.464596609+00:00,1 +2023-10-24 21:24:27.579292722+00:00,1 +2023-10-24 21:24:27.694896487+00:00,1 +2023-10-24 21:24:27.811738252+00:00,1 +2023-10-24 21:24:27.927713528+00:00,1 +2023-10-24 21:24:28.043921277+00:00,1 +2023-10-24 21:24:28.159925775+00:00,1 +2023-10-24 21:24:28.275396978+00:00,1 +2023-10-24 21:24:28.390600956+00:00,1 +2023-10-24 21:24:28.505618091+00:00,1 +2023-10-24 21:24:28.620754321+00:00,1 +2023-10-24 21:24:28.736320836+00:00,1 +2023-10-24 21:24:28.852134445+00:00,1 +2023-10-24 21:24:28.967830807+00:00,1 +2023-10-24 21:24:29.083849460+00:00,1 +2023-10-24 21:24:29.199121561+00:00,1 +2023-10-24 21:24:29.314557097+00:00,1 +2023-10-24 21:24:29.429734174+00:00,1 +2023-10-24 21:24:29.544852624+00:00,1 +2023-10-24 21:24:29.660694836+00:00,1 +2023-10-24 21:24:29.776292337+00:00,1 +2023-10-24 21:24:29.891783984+00:00,1 +2023-10-24 21:24:30.008437464+00:00,1 +2023-10-24 21:24:30.124005313+00:00,1 +2023-10-24 21:24:30.239751415+00:00,1 +2023-10-24 21:24:30.355259763+00:00,1 +2023-10-24 21:24:30.470272567+00:00,1 +2023-10-24 21:24:30.585397257+00:00,1 +2023-10-24 21:24:30.700315891+00:00,1 +2023-10-24 21:24:30.815655971+00:00,1 +2023-10-24 21:24:30.930656574+00:00,1 +2023-10-24 21:24:31.046303976+00:00,1 +2023-10-24 21:24:31.162142816+00:00,1 +2023-10-24 21:24:31.277873394+00:00,1 +2023-10-24 21:24:31.393605615+00:00,1 +2023-10-24 21:24:31.509423596+00:00,1 +2023-10-24 21:24:31.624732698+00:00,1 +2023-10-24 21:24:31.740063354+00:00,1 +2023-10-24 21:24:31.856017104+00:00,1 +2023-10-24 21:24:31.971912206+00:00,1 +2023-10-24 21:24:32.086499215+00:00,1 +2023-10-24 21:24:32.202076264+00:00,1 +2023-10-24 21:24:32.317683166+00:00,1 +2023-10-24 21:24:32.433402510+00:00,1 +2023-10-24 21:24:32.548562228+00:00,1 +2023-10-24 21:24:32.664871027+00:00,1 +2023-10-24 21:24:32.780736729+00:00,1 +2023-10-24 21:24:32.896597493+00:00,1 +2023-10-24 21:24:33.012127999+00:00,1 +2023-10-24 21:24:33.128755505+00:00,1 +2023-10-24 21:24:33.246761498+00:00,1 +2023-10-24 21:24:33.362403660+00:00,1 +2023-10-24 21:24:33.477680592+00:00,1 +2023-10-24 21:24:33.593062706+00:00,1 +2023-10-24 21:24:33.708418860+00:00,1 +2023-10-24 21:24:33.824197784+00:00,1 +2023-10-24 21:24:33.939604373+00:00,1 +2023-10-24 21:24:34.054611408+00:00,1 +2023-10-24 21:24:34.169493859+00:00,1 +2023-10-24 21:24:34.284465372+00:00,1 +2023-10-24 21:24:34.399680640+00:00,1 +2023-10-24 21:24:34.515768069+00:00,1 +2023-10-24 21:24:34.631658225+00:00,1 +2023-10-24 21:24:34.747101308+00:00,1 +2023-10-24 21:24:34.862883779+00:00,1 +2023-10-24 21:24:34.978327643+00:00,1 +2023-10-24 21:24:35.094668589+00:00,1 +2023-10-24 21:24:35.210719745+00:00,1 +2023-10-24 21:24:35.325844424+00:00,1 +2023-10-24 21:24:35.442766733+00:00,1 +2023-10-24 21:24:35.558640923+00:00,1 +2023-10-24 21:24:35.674713113+00:00,1 +2023-10-24 21:24:35.790672976+00:00,1 +2023-10-24 21:24:35.906505385+00:00,1 +2023-10-24 21:24:36.021430516+00:00,1 +2023-10-24 21:24:36.136627082+00:00,1 +2023-10-24 21:24:36.252257878+00:00,1 +2023-10-24 21:24:36.367701705+00:00,1 +2023-10-24 21:24:36.482796514+00:00,1 +2023-10-24 21:24:36.598175483+00:00,1 +2023-10-24 21:24:36.713614356+00:00,1 +2023-10-24 21:24:36.829139067+00:00,1 +2023-10-24 21:24:36.944206629+00:00,1 +2023-10-24 21:24:37.059733286+00:00,1 +2023-10-24 21:24:37.176434150+00:00,1 +2023-10-24 21:24:37.291704456+00:00,1 +2023-10-24 21:24:37.407328230+00:00,1 +2023-10-24 21:24:37.522933975+00:00,1 +2023-10-24 21:24:37.638732132+00:00,1 +2023-10-24 21:24:37.754504198+00:00,1 +2023-10-24 21:24:37.870186119+00:00,1 +2023-10-24 21:24:37.986831043+00:00,1 +2023-10-24 21:24:38.102312130+00:00,1 +2023-10-24 21:24:38.218263953+00:00,1 +2023-10-24 21:24:38.333297227+00:00,1 +2023-10-24 21:24:38.448862068+00:00,1 +2023-10-24 21:24:38.564409469+00:00,1 +2023-10-24 21:24:38.680985335+00:00,1 +2023-10-24 21:24:38.796152180+00:00,1 +2023-10-24 21:24:38.911395250+00:00,1 +2023-10-24 21:24:39.026571316+00:00,1 +2023-10-24 21:24:39.141939488+00:00,1 +2023-10-24 21:24:39.257261431+00:00,1 +2023-10-24 21:24:39.372757829+00:00,1 +2023-10-24 21:24:39.488674373+00:00,1 +2023-10-24 21:24:39.604296717+00:00,1 +2023-10-24 21:24:39.719307456+00:00,1 +2023-10-24 21:24:39.834718821+00:00,1 +2023-10-24 21:24:39.950502114+00:00,1 +2023-10-24 21:24:40.065814089+00:00,1 +2023-10-24 21:24:40.181578640+00:00,1 +2023-10-24 21:24:40.296498429+00:00,1 +2023-10-24 21:24:40.411789623+00:00,1 +2023-10-24 21:24:40.527195798+00:00,1 +2023-10-24 21:24:40.643010323+00:00,1 +2023-10-24 21:24:40.759104208+00:00,1 +2023-10-24 21:24:40.874682870+00:00,1 +2023-10-24 21:24:40.990593283+00:00,1 +2023-10-24 21:24:41.106659608+00:00,1 +2023-10-24 21:24:41.222280590+00:00,1 +2023-10-24 21:24:41.337686372+00:00,1 +2023-10-24 21:24:41.452629504+00:00,1 +2023-10-24 21:24:41.567629947+00:00,1 +2023-10-24 21:24:41.683161667+00:00,1 +2023-10-24 21:24:41.798695205+00:00,1 +2023-10-24 21:24:41.913927299+00:00,1 +2023-10-24 21:24:42.029585963+00:00,1 +2023-10-24 21:24:42.144788874+00:00,1 +2023-10-24 21:24:42.260799422+00:00,1 +2023-10-24 21:24:42.377455350+00:00,1 +2023-10-24 21:24:42.493647871+00:00,1 +2023-10-24 21:24:42.609465680+00:00,1 +2023-10-24 21:24:42.725432963+00:00,1 +2023-10-24 21:24:42.840663731+00:00,1 +2023-10-24 21:24:42.955833282+00:00,1 +2023-10-24 21:24:43.071359536+00:00,1 +2023-10-24 21:24:43.188368853+00:00,1 +2023-10-24 21:24:43.304423935+00:00,1 +2023-10-24 21:24:43.419710664+00:00,1 +2023-10-24 21:24:43.534398706+00:00,1 +2023-10-24 21:24:43.649533524+00:00,1 +2023-10-24 21:24:43.764628221+00:00,1 +2023-10-24 21:24:43.880030818+00:00,1 +2023-10-24 21:24:43.996389338+00:00,1 +2023-10-24 21:24:44.111814848+00:00,1 +2023-10-24 21:24:44.228036892+00:00,1 +2023-10-24 21:24:44.343559819+00:00,1 +2023-10-24 21:24:44.459066348+00:00,1 +2023-10-24 21:24:44.574456334+00:00,1 +2023-10-24 21:24:44.690285542+00:00,1 +2023-10-24 21:24:44.805197546+00:00,1 +2023-10-24 21:24:44.920528901+00:00,1 +2023-10-24 21:24:45.036468934+00:00,1 +2023-10-24 21:24:45.152843505+00:00,1 +2023-10-24 21:24:45.268067211+00:00,1 +2023-10-24 21:24:45.383176477+00:00,1 +2023-10-24 21:24:45.498509489+00:00,1 +2023-10-24 21:24:45.614203186+00:00,1 +2023-10-24 21:24:45.729288480+00:00,1 +2023-10-24 21:24:45.844467791+00:00,1 +2023-10-24 21:24:45.959630476+00:00,1 +2023-10-24 21:24:46.074483918+00:00,1 +2023-10-24 21:24:46.189569284+00:00,1 +2023-10-24 21:24:46.304654018+00:00,1 +2023-10-24 21:24:46.422073290+00:00,1 +2023-10-24 21:24:46.537277817+00:00,1 +2023-10-24 21:24:46.653289980+00:00,1 +2023-10-24 21:24:46.768598369+00:00,1 +2023-10-24 21:24:46.883300943+00:00,1 +2023-10-24 21:24:46.998771897+00:00,1 +2023-10-24 21:24:47.114761713+00:00,1 +2023-10-24 21:24:47.229501531+00:00,1 +2023-10-24 21:24:47.344285669+00:00,1 +2023-10-24 21:24:47.459215130+00:00,1 +2023-10-24 21:24:47.574210111+00:00,1 +2023-10-24 21:24:47.689282442+00:00,1 +2023-10-24 21:24:47.804470710+00:00,1 +2023-10-24 21:24:47.921385400+00:00,1 +2023-10-24 21:24:48.036830068+00:00,1 +2023-10-24 21:24:48.152083834+00:00,1 +2023-10-24 21:24:48.267913405+00:00,1 +2023-10-24 21:24:48.383170848+00:00,1 +2023-10-24 21:24:48.499119320+00:00,1 +2023-10-24 21:24:48.614962712+00:00,1 +2023-10-24 21:24:48.734439538+00:00,1 +2023-10-24 21:24:48.849693412+00:00,1 +2023-10-24 21:24:48.965113678+00:00,1 +2023-10-24 21:24:49.080442746+00:00,1 +2023-10-24 21:24:49.195808436+00:00,1 +2023-10-24 21:24:49.311427752+00:00,1 +2023-10-24 21:24:49.426809036+00:00,1 +2023-10-24 21:24:49.542625879+00:00,1 +2023-10-24 21:24:49.658249693+00:00,1 +2023-10-24 21:24:49.773765143+00:00,1 +2023-10-24 21:24:49.889197250+00:00,1 +2023-10-24 21:24:50.004894297+00:00,1 +2023-10-24 21:24:50.120254246+00:00,1 +2023-10-24 21:24:50.235619079+00:00,1 +2023-10-24 21:24:50.352082939+00:00,1 +2023-10-24 21:24:50.467680891+00:00,1 +2023-10-24 21:24:50.583048677+00:00,1 +2023-10-24 21:24:50.698105397+00:00,1 +2023-10-24 21:24:50.813126318+00:00,1 +2023-10-24 21:24:50.928301751+00:00,1 +2023-10-24 21:24:51.043265281+00:00,1 +2023-10-24 21:24:51.158026433+00:00,1 +2023-10-24 21:24:51.273306538+00:00,1 +2023-10-24 21:24:51.388994199+00:00,1 +2023-10-24 21:24:51.504518929+00:00,1 +2023-10-24 21:24:51.620628535+00:00,1 +2023-10-24 21:24:51.736072253+00:00,1 +2023-10-24 21:24:51.851139936+00:00,1 +2023-10-24 21:24:51.966550920+00:00,1 +2023-10-24 21:24:52.081300471+00:00,1 +2023-10-24 21:24:52.200574437+00:00,1 +2023-10-24 21:24:52.315905097+00:00,1 +2023-10-24 21:24:52.430896365+00:00,1 +2023-10-24 21:24:52.545965367+00:00,1 +2023-10-24 21:24:52.661230267+00:00,1 +2023-10-24 21:24:52.776602043+00:00,1 +2023-10-24 21:24:52.892999199+00:00,1 +2023-10-24 21:24:53.008449888+00:00,1 +2023-10-24 21:24:53.123363168+00:00,1 +2023-10-24 21:24:53.238328748+00:00,1 +2023-10-24 21:24:53.354521257+00:00,1 +2023-10-24 21:24:53.470075465+00:00,1 +2023-10-24 21:24:53.585867161+00:00,1 +2023-10-24 21:24:53.703788387+00:00,1 +2023-10-24 21:24:53.818548367+00:00,1 +2023-10-24 21:24:53.934364148+00:00,1 +2023-10-24 21:24:54.049244484+00:00,1 +2023-10-24 21:24:54.164492417+00:00,1 +2023-10-24 21:24:54.278926769+00:00,1 +2023-10-24 21:24:54.393186402+00:00,1 +2023-10-24 21:24:54.507346869+00:00,1 +2023-10-24 21:24:54.621787905+00:00,1 +2023-10-24 21:24:54.736330270+00:00,1 +2023-10-24 21:24:58.928292563+00:00,1 +2023-10-24 21:24:59.042844564+00:00,1 +2023-10-24 21:24:59.157815187+00:00,1 +2023-10-24 21:24:59.272352857+00:00,1 +2023-10-24 21:25:00.401453198+00:00,1 +2023-10-24 21:25:03.599443333+00:00,1 +2023-10-24 21:25:03.714283036+00:00,1 +2023-10-24 21:25:03.829029747+00:00,1 +2023-10-24 21:25:03.943384555+00:00,1 +2023-10-24 21:25:04.058913211+00:00,1 +2023-10-24 21:25:04.173691723+00:00,1 +2023-10-24 21:25:04.288880853+00:00,1 +2023-10-24 21:25:04.405615788+00:00,1 +2023-10-24 21:25:04.520798086+00:00,1 +2023-10-24 21:25:04.635796131+00:00,1 +2023-10-24 21:25:04.750453367+00:00,1 +2023-10-24 21:25:04.865560054+00:00,1 +2023-10-24 21:25:04.981821214+00:00,1 +2023-10-24 21:25:05.096538301+00:00,1 +2023-10-24 21:25:05.211276355+00:00,1 +2023-10-24 21:25:05.326994772+00:00,1 +2023-10-24 21:25:05.441086740+00:00,1 +2023-10-24 21:25:05.556208710+00:00,1 +2023-10-24 21:25:05.671128056+00:00,1 +2023-10-24 21:25:06.801407611+00:00,1 +2023-10-24 21:25:06.916105905+00:00,1 +2023-10-24 21:25:08.079337617+00:00,0 +2023-10-24 21:25:10.092928718+00:00,1 +2023-10-24 21:25:10.207552786+00:00,1 +2023-10-24 21:25:10.322694746+00:00,0 +2023-10-24 21:25:12.335455278+00:00,0 +2023-10-24 21:25:14.347372242+00:00,1 +2023-10-24 21:25:14.462020241+00:00,1 +2023-10-24 21:25:14.577182161+00:00,1 +2023-10-24 21:25:14.692716475+00:00,1 +2023-10-24 21:25:14.808105280+00:00,1 +2023-10-24 21:25:14.924069143+00:00,1 +2023-10-24 21:25:15.039465341+00:00,1 +2023-10-24 21:25:15.154462529+00:00,1 +2023-10-24 21:25:15.269166696+00:00,1 +2023-10-24 21:25:15.384680927+00:00,1 +2023-10-24 21:25:15.499508560+00:00,1 +2023-10-24 21:25:15.613984805+00:00,1 +2023-10-24 21:25:15.728462038+00:00,1 +2023-10-24 21:25:15.843385641+00:00,1 +2023-10-24 21:25:15.958479826+00:00,1 +2023-10-24 21:25:16.074124931+00:00,1 +2023-10-24 21:25:16.189250432+00:00,1 +2023-10-24 21:25:16.303538137+00:00,1 +2023-10-24 21:25:16.419175349+00:00,1 +2023-10-24 21:25:16.534217573+00:00,1 +2023-10-24 21:25:16.648844978+00:00,1 +2023-10-24 21:25:16.764505130+00:00,1 +2023-10-24 21:25:16.879410254+00:00,1 +2023-10-24 21:25:16.994226519+00:00,1 +2023-10-24 21:25:17.109171172+00:00,1 +2023-10-24 21:25:17.224177632+00:00,1 +2023-10-24 21:25:17.339031609+00:00,1 +2023-10-24 21:25:17.454035806+00:00,1 +2023-10-24 21:25:17.568994221+00:00,1 +2023-10-24 21:25:17.684850430+00:00,1 +2023-10-24 21:25:17.800297734+00:00,1 +2023-10-24 21:25:17.916029372+00:00,1 +2023-10-24 21:25:18.030334948+00:00,1 +2023-10-24 21:25:18.145934489+00:00,1 +2023-10-24 21:25:18.262403051+00:00,1 +2023-10-24 21:25:18.378220509+00:00,1 +2023-10-24 21:25:18.494225117+00:00,1 +2023-10-24 21:25:18.609934561+00:00,1 +2023-10-24 21:25:18.725428606+00:00,1 +2023-10-24 21:25:18.841361926+00:00,1 +2023-10-24 21:25:18.957427371+00:00,1 +2023-10-24 21:25:19.072848350+00:00,1 +2023-10-24 21:25:19.187969569+00:00,1 +2023-10-24 21:25:19.303266804+00:00,1 +2023-10-24 21:25:19.418452348+00:00,1 +2023-10-24 21:25:19.533919056+00:00,1 +2023-10-24 21:25:19.649604261+00:00,1 +2023-10-24 21:25:19.765761730+00:00,1 +2023-10-24 21:25:19.882155222+00:00,1 +2023-10-24 21:25:19.998433417+00:00,1 +2023-10-24 21:25:20.114101334+00:00,1 +2023-10-24 21:25:20.229263275+00:00,1 +2023-10-24 21:25:20.345022707+00:00,1 +2023-10-24 21:25:20.460911327+00:00,1 +2023-10-24 21:25:20.577022458+00:00,1 +2023-10-24 21:25:20.693306500+00:00,1 +2023-10-24 21:25:20.809603566+00:00,1 +2023-10-24 21:25:20.924945727+00:00,1 +2023-10-24 21:25:21.041112860+00:00,1 +2023-10-24 21:25:21.157205632+00:00,1 +2023-10-24 21:25:21.273422711+00:00,1 +2023-10-24 21:25:21.389695587+00:00,1 +2023-10-24 21:25:21.505288984+00:00,1 +2023-10-24 21:25:21.621170487+00:00,1 +2023-10-24 21:25:21.737146626+00:00,1 +2023-10-24 21:25:21.853071034+00:00,1 +2023-10-24 21:25:21.968294131+00:00,1 +2023-10-24 21:25:22.084438537+00:00,1 +2023-10-24 21:25:22.199936087+00:00,1 +2023-10-24 21:25:22.315559408+00:00,1 +2023-10-24 21:25:22.430522215+00:00,1 +2023-10-24 21:25:22.546105543+00:00,1 +2023-10-24 21:25:22.661702576+00:00,1 +2023-10-24 21:25:22.776762644+00:00,1 +2023-10-24 21:25:22.891863193+00:00,1 +2023-10-24 21:25:23.007269038+00:00,1 +2023-10-24 21:25:23.122699027+00:00,1 +2023-10-24 21:25:23.237511688+00:00,1 +2023-10-24 21:25:23.352696552+00:00,1 +2023-10-24 21:25:23.468421476+00:00,1 +2023-10-24 21:25:23.583471393+00:00,1 +2023-10-24 21:25:23.698749615+00:00,1 +2023-10-24 21:25:23.814113174+00:00,1 +2023-10-24 21:25:23.929210073+00:00,1 +2023-10-24 21:25:24.044253056+00:00,1 +2023-10-24 21:25:24.160030459+00:00,1 +2023-10-24 21:25:24.275884157+00:00,1 +2023-10-24 21:25:24.392576669+00:00,1 +2023-10-24 21:25:24.508943460+00:00,1 +2023-10-24 21:25:24.625020586+00:00,1 +2023-10-24 21:25:24.740986826+00:00,1 +2023-10-24 21:25:24.859508398+00:00,1 +2023-10-24 21:25:24.976920294+00:00,1 +2023-10-24 21:25:25.094165279+00:00,1 +2023-10-24 21:25:25.210105210+00:00,1 +2023-10-24 21:25:25.326299591+00:00,1 +2023-10-24 21:25:25.442296252+00:00,1 +2023-10-24 21:25:25.559148021+00:00,1 +2023-10-24 21:25:25.676197466+00:00,1 +2023-10-24 21:25:25.792845315+00:00,1 +2023-10-24 21:25:25.909805101+00:00,1 +2023-10-24 21:25:26.025970610+00:00,1 +2023-10-24 21:25:26.142179325+00:00,1 +2023-10-24 21:25:26.257876229+00:00,1 +2023-10-24 21:25:26.373484819+00:00,1 +2023-10-24 21:25:26.489514903+00:00,1 +2023-10-24 21:25:26.606189548+00:00,1 +2023-10-24 21:25:26.722237082+00:00,1 +2023-10-24 21:25:26.837694848+00:00,1 +2023-10-24 21:25:26.954585661+00:00,1 +2023-10-24 21:25:27.071838979+00:00,1 +2023-10-24 21:25:27.187891351+00:00,1 +2023-10-24 21:25:27.304323315+00:00,1 +2023-10-24 21:25:27.420639646+00:00,1 +2023-10-24 21:25:27.536594756+00:00,1 +2023-10-24 21:25:27.652586193+00:00,1 +2023-10-24 21:25:27.768264382+00:00,1 +2023-10-24 21:25:31.001185254+00:00,0 +2023-10-24 21:25:33.014200063+00:00,1 +2023-10-24 21:25:33.130513274+00:00,1 +2023-10-24 21:25:34.266290972+00:00,1 +2023-10-24 21:25:34.381276352+00:00,0 +2023-10-24 21:25:36.394736469+00:00,1 diff --git a/tests/zero-downtime-scaling/results/1.0.0/10-node/gradual-down-http.png b/tests/zero-downtime-scaling/results/1.0.0/10-node/gradual-down-http.png new file mode 100644 index 0000000000000000000000000000000000000000..b42eb351451ceaad7cf6b9f130f902d5a9ddddd8 GIT binary patch literal 6496 zcmeHLX;f3m@~^=`eKLTIC?XIL-wX^eprS0YBy6H1o3bN|iim(LqK3sRpbQ`)VP*_b zQ8p1oHbDq`Kp7U<93p+CeK?Ibvw6u*^9Y6$92MBOD zbr@)F1|y$gq)q`MFm(~g{xcD`0WcAOL?A@u{Sy@x0W0Q@Hv+yrd-iB*YFb)aUbt|9 zNF?6BfB(gc7j<=YZEbB#CQ~p4_u#=qPGWw~7}uWr2ZC@0Zy?l{g&Ypj4T9O=yx>Vx zysfBy+wt@FZE5Ks0Th7tn2t%B_f!W6wV!suPO5@j~1Dq zA4rQ(K%M~S2Inqx4yFwz+FW1S`U@ycrg^!u&Rv6M_Z#00u zAKDK>n=4r@qgES9FJp+%$ow1-$Qp*8}i;2Q`h{F&Then~$3s*@Zr2 z4~hgQ9|N6VyumAEHfNOChb?Av^jfrCg>_kw}_@mLHyd%^Fq^#vW-e;)t!Ka`w~ zqWdM;lqTs)s?X}oJceAa<;~9N)r%q&d1`jlcI71&-^w04)Zvd}=x4Nyo@KnlR^d+i zyiiLtakPDwam&QPsh@Vul&l?%Z>_{+%H@k>rV{0=vRKi~Mr_}wtjhTl%&~m`=^pFr zBp!ZD>CmJy{tC)pnRC_fTtySE`z*?nAD)ffQy?d1QpH~<%=Mq`ei&2mqquuCOM~=8 z=jH$*l3jG1-qWGr*-0Ap30RuDd0n<@Qn;AS&T16pwcZ$6d-KtIQ3q*ea7s`IEJ7Y} ziUQ(Wc~5Nn#XC>ki7poysnEDuLZe>*Q6YH zkSmbr-+^Yd3cr(*DHF-mLmRme*XS{7ZgLbJy+~JIb{*S8bEAE9Lg8$egCkvuk!i%^ zX%}ApKM005-C&OCcdVvK-YR8OuZ z-bNPJxs;pj#FSDNXz*R3QQycGeAs3m`f10&uf^AAx1E_h9Wt-D9-Li9SLhb``1Vss zz17XZ_{Cx2U<2CRfJyoa^CRgHhH6x?BzlV-6$#l^7?DykRCEgQZM}e z!3mRA;*R1$AA^zEy{0p|&A0(726cyko?6az6XSD*en2Ich^HnUn+}TnT>pa`6LOD^ zEKhh9Ei;s(Hf`TaX#6U6yPkeLF`9dk*cw6(0>vni^W%T@pnW58wXt*R&1(&fbd9^B7E7^}F^wKo5XhsOhy z)gKRfxGjG4CwkNMCI3AKUR|6aMR`>@po67Mz9CcIsuv>sgj!;%+uk&X8yTMtuezcL zM`}vegL@}trMt@AhD*xh7tA|Ql=+#qZC{msD`{5P%bex@Hhjq7zDmK;b>H#Jq(za; zYW}L8tAcUQ_$>E!k-xh30z263-4>CL6D!k!E31pkJB9uRN%s^Tm!ViYM4yXv-F)P3 zH<6g^y?yW0m9V92^AEF%f=7!}R{SF`ZSt>TFoh&u8B$^bt5~{yMHQ|R1VY?l6h*jr zC`kI#m_RbmO-*8h@iM`Z#=l8+m7t}fH#@txgm=< zREl)@M_dMdL?~xVoTBhka+>m~2m$3w^NSt+a)RoimUO>l&Y^EJj$OZAL2kO>BHKjW zV)_eqF<7-ffRESb^OT7pnxgX;tC>mNwQt6SJsSInN2oKrNzKNZq0rH31l=aHsPizy z6`8phTW^`^^?t=+=(JRGo(HvZd9f%p1uNRn*mJl+v?=(pdW)^?a)Y7nQb=;bbXqZ) zG}j(9RH>Gj&T6WE6DTt}Hy-+cG*!7AUDWe5ZnkU3(nD)8{$SRq-cw(uNoPemn>3p4 zs^FIVX#CDRJz0(**{;sTyg-??#b+0pr=x8dZAvlzk%zK*pR#A^oh251 zSZ9ld#-Bw@Wq0P|ntHSvgrw<{Bh?4Aev#VO>X*oCY*@ZGdUbNOmKHvnLYeZAGm#Hr zjjAVf{*dXBVqO}UYIIJg_L4NUTcg!T9trj^2&1o1UlI%B91N)r$ou%t!g^eB=+d6d zs!IBxP`Fl$BYo%v&7aH2%^;IX2ZMH#c*Rab&n6f+smc8*R-HR?&$?P^Q|>$yo^6j? zc>S`r|0-^aeLn7@eyL@ry7vvw{;Q)ay3I^a(xtZ4@Dg6FxikN4%i6oq;*(O$TqUk_ zs_a^oWmAYvZwsBN#G;d?lvsgNBe-8_@-~t`VDi5<`$cGD<^0n8VuvqI@Ff_&tOWnf zia4U_5_V}N*Ps<2YPe=X!}Bh{RWjzLd0-ozsZo2P^B zbJ$5zS-OiqZdua&;plo@4^fQBze}v>TfQZ7o{-hGz#GGEmKG#!N#pKK*uJF|;aQ~* zcebq36yMXY-RJb5cHfh~`wu#qgcB*;TyD*K?VVWUCob5Xk_ocbyxiZ?b?B#{tk7~?Na;qcl zTKFeI2D)bikz-T;kayqfXl_v1~RjJ0rmO2{hTIYpj7c_AaazaStqxOz2kuzq@c)w32)$|t2#F@4Mb zJfN?0Q!V$UX7luw4T!XJCEswd{b)(nTLZ((k!pTvwSp8*y1rYXHc{j}S@@tq!yZz% zz(k+7L)z_my+P|aRdh58H<{ul?=i3bK?gaoz-v-)6ggj+@88#1-A^|nJYE%|&3b-% zsaWnTEx&v9t&l4ACLbS@nu%;C{OT?$X|`?S%%2GxhxRYcFLwCfJAntuc=w-)?yyjA z*w?19sRx8Ur^tV0#SEXw?P42g@fHQ+Deiv0^sC3~KQioJ3G!+|!Yux04=z_&aRxVE zocQ;}(%k8Iyx>q+tb5h+dU(m>9$ZLNdNMVEPTD_b$>Wxblb(wnNa@RBt48-2TdZUe zeWF@&297>`*fR3A+lr}W%C>W76kbqil~BnJ*7n!7^6=pwX&Te{PH$*hS(_nq_F`7k zRo@iU*-r`C7piMoZKbJuE3rD?_^^$J4nCQl~>x$uiD`VI76ouy5NmZLfMB|1#h%)g;D zosu~BAa0=?@2Gn8>7$mBlXh0jg-^NJ!7>?GmDbfROQzN<5!(t9%>W_z4)vT2Ae@P6 z4VkasC#zmlt}75j4VNGDF`%C|i)G#8JpWTnzr?ewgCssVM@{K@fQrUqZc0l$_mv&T za~;)opfZ3k5~8ovkKMqvpW4d1G2AO5Msb()6u|2e(k(#aCX6l6mC^H6E_%jnyMTSw z`^jN*g%)1XJyc&4!H4wl&p89;{e>PE^euFwXUYwGkC63R+C$9mrD$nczA(5)N_fuh zOSm2$70f8t$LEU{$vWX2RZ&NocDt%3vOgnh+urZsA1jqLyS9HKJ6N76bf4gEsX^jk zaiNiIg=$S~GV_GUN0vkjesI>t*F;TYjXExDFOnIcQs$;%;e}dPwRN^Q!?YVCXjm|p z&%U>28pdTiwRcJ7g~pW{#_xSMQSF_=S8 zp_BLm1APA+t8%4Qpuy~C4f>P4>gQkQjrb3(_4skHYprEr+341r&xXbf?xGh|HvX=E z)I?6T{>sX~c?+iUPj&`Z|91yLw zq|o4~dHn%$lY#ClEz_!id5tJ1J{9liw-E{c8zHeFD8S^sm6yc1FdMqHm##6>?x+8M d@x`7-=Ufimq7kBWP;gBQ$IYxv3yja)_!pS%>;wP+ literal 0 HcmV?d00001 diff --git a/tests/zero-downtime-scaling/results/1.0.0/10-node/gradual-down-https.csv b/tests/zero-downtime-scaling/results/1.0.0/10-node/gradual-down-https.csv new file mode 100644 index 000000000..b023601bd --- /dev/null +++ b/tests/zero-downtime-scaling/results/1.0.0/10-node/gradual-down-https.csv @@ -0,0 +1,6861 @@ +2023-10-24 21:07:26.019472489+00:00,1 +2023-10-24 21:07:26.147027354+00:00,1 +2023-10-24 21:07:26.273764923+00:00,1 +2023-10-24 21:07:26.400054127+00:00,1 +2023-10-24 21:07:26.526353150+00:00,1 +2023-10-24 21:07:26.652509432+00:00,1 +2023-10-24 21:07:26.777203299+00:00,1 +2023-10-24 21:07:26.902556723+00:00,1 +2023-10-24 21:07:27.028443376+00:00,1 +2023-10-24 21:07:27.153873648+00:00,1 +2023-10-24 21:07:27.280149711+00:00,1 +2023-10-24 21:07:27.405802047+00:00,1 +2023-10-24 21:07:27.531537282+00:00,1 +2023-10-24 21:07:27.657152413+00:00,1 +2023-10-24 21:07:27.782671539+00:00,1 +2023-10-24 21:07:27.908247866+00:00,1 +2023-10-24 21:07:28.033750732+00:00,1 +2023-10-24 21:07:28.159139311+00:00,1 +2023-10-24 21:07:28.284921464+00:00,1 +2023-10-24 21:07:28.410937341+00:00,1 +2023-10-24 21:07:28.537502414+00:00,1 +2023-10-24 21:07:28.662869809+00:00,1 +2023-10-24 21:07:28.788093181+00:00,1 +2023-10-24 21:07:28.914280006+00:00,1 +2023-10-24 21:07:29.040979475+00:00,1 +2023-10-24 21:07:29.166657884+00:00,1 +2023-10-24 21:07:29.292148259+00:00,1 +2023-10-24 21:07:29.417831075+00:00,1 +2023-10-24 21:07:29.543421855+00:00,1 +2023-10-24 21:07:29.668289637+00:00,1 +2023-10-24 21:07:29.793044023+00:00,1 +2023-10-24 21:07:29.918284610+00:00,1 +2023-10-24 21:07:30.043974705+00:00,1 +2023-10-24 21:07:30.169212337+00:00,1 +2023-10-24 21:07:30.295705905+00:00,1 +2023-10-24 21:07:30.421658645+00:00,1 +2023-10-24 21:07:30.547494664+00:00,1 +2023-10-24 21:07:30.672967260+00:00,1 +2023-10-24 21:07:30.799094037+00:00,1 +2023-10-24 21:07:30.924942100+00:00,1 +2023-10-24 21:07:31.050628333+00:00,1 +2023-10-24 21:07:31.175779707+00:00,1 +2023-10-24 21:07:31.301160668+00:00,1 +2023-10-24 21:07:31.426616187+00:00,1 +2023-10-24 21:07:31.552226917+00:00,1 +2023-10-24 21:07:31.678196307+00:00,1 +2023-10-24 21:07:31.804019311+00:00,1 +2023-10-24 21:07:31.930435135+00:00,1 +2023-10-24 21:07:32.055076603+00:00,1 +2023-10-24 21:07:32.180626178+00:00,1 +2023-10-24 21:07:32.306052067+00:00,1 +2023-10-24 21:07:32.432134666+00:00,1 +2023-10-24 21:07:32.557849084+00:00,1 +2023-10-24 21:07:32.683100040+00:00,1 +2023-10-24 21:07:32.808105370+00:00,1 +2023-10-24 21:07:32.933490809+00:00,1 +2023-10-24 21:07:33.059100474+00:00,1 +2023-10-24 21:07:33.185072168+00:00,1 +2023-10-24 21:07:33.310480449+00:00,1 +2023-10-24 21:07:33.436993296+00:00,1 +2023-10-24 21:07:33.562665407+00:00,1 +2023-10-24 21:07:33.688025067+00:00,1 +2023-10-24 21:07:33.814419731+00:00,1 +2023-10-24 21:07:33.940009831+00:00,1 +2023-10-24 21:07:34.065389636+00:00,1 +2023-10-24 21:07:34.190827676+00:00,1 +2023-10-24 21:07:34.316696975+00:00,1 +2023-10-24 21:07:34.442764926+00:00,1 +2023-10-24 21:07:34.569207477+00:00,1 +2023-10-24 21:07:34.697105546+00:00,1 +2023-10-24 21:07:34.825421535+00:00,1 +2023-10-24 21:07:34.954839257+00:00,1 +2023-10-24 21:07:35.083730353+00:00,1 +2023-10-24 21:07:35.212240958+00:00,1 +2023-10-24 21:07:35.340874243+00:00,1 +2023-10-24 21:07:35.470072342+00:00,1 +2023-10-24 21:07:35.599360716+00:00,1 +2023-10-24 21:07:35.727390056+00:00,1 +2023-10-24 21:07:35.857538071+00:00,1 +2023-10-24 21:07:35.985695129+00:00,1 +2023-10-24 21:07:36.114010094+00:00,1 +2023-10-24 21:07:36.242648411+00:00,1 +2023-10-24 21:07:36.370817462+00:00,1 +2023-10-24 21:07:36.499951398+00:00,1 +2023-10-24 21:07:36.628171297+00:00,1 +2023-10-24 21:07:36.755781128+00:00,1 +2023-10-24 21:07:36.884323833+00:00,1 +2023-10-24 21:07:37.012294642+00:00,1 +2023-10-24 21:07:37.140691119+00:00,1 +2023-10-24 21:07:37.267705633+00:00,1 +2023-10-24 21:07:37.395782151+00:00,1 +2023-10-24 21:07:37.523952191+00:00,1 +2023-10-24 21:07:37.652519929+00:00,1 +2023-10-24 21:07:37.780247532+00:00,1 +2023-10-24 21:07:37.907505639+00:00,1 +2023-10-24 21:07:38.034618895+00:00,1 +2023-10-24 21:07:38.163155444+00:00,1 +2023-10-24 21:07:38.291334757+00:00,1 +2023-10-24 21:07:38.419423807+00:00,1 +2023-10-24 21:07:38.548644242+00:00,1 +2023-10-24 21:07:38.676180941+00:00,1 +2023-10-24 21:07:38.804208975+00:00,1 +2023-10-24 21:07:38.932446902+00:00,1 +2023-10-24 21:07:39.060264297+00:00,1 +2023-10-24 21:07:39.188799289+00:00,1 +2023-10-24 21:07:39.317961733+00:00,1 +2023-10-24 21:07:39.446662962+00:00,1 +2023-10-24 21:07:39.574707124+00:00,1 +2023-10-24 21:07:39.702235084+00:00,1 +2023-10-24 21:07:39.831442141+00:00,1 +2023-10-24 21:07:39.959397684+00:00,1 +2023-10-24 21:07:40.087040917+00:00,1 +2023-10-24 21:07:40.218355538+00:00,1 +2023-10-24 21:07:40.347079060+00:00,1 +2023-10-24 21:07:40.474924272+00:00,1 +2023-10-24 21:07:40.603013625+00:00,1 +2023-10-24 21:07:40.732539104+00:00,1 +2023-10-24 21:07:40.861410909+00:00,1 +2023-10-24 21:07:40.989541372+00:00,1 +2023-10-24 21:07:41.117825689+00:00,1 +2023-10-24 21:07:41.246107409+00:00,1 +2023-10-24 21:07:41.373519124+00:00,1 +2023-10-24 21:07:41.502512395+00:00,1 +2023-10-24 21:07:41.631337660+00:00,1 +2023-10-24 21:07:41.758916990+00:00,1 +2023-10-24 21:07:41.887532224+00:00,1 +2023-10-24 21:07:42.015430450+00:00,1 +2023-10-24 21:07:42.143941783+00:00,1 +2023-10-24 21:07:42.271735152+00:00,1 +2023-10-24 21:07:42.399774964+00:00,1 +2023-10-24 21:07:42.528157098+00:00,1 +2023-10-24 21:07:42.657326456+00:00,1 +2023-10-24 21:07:42.785462576+00:00,1 +2023-10-24 21:07:42.914460553+00:00,1 +2023-10-24 21:07:43.044592865+00:00,1 +2023-10-24 21:07:43.172247856+00:00,1 +2023-10-24 21:07:43.299667045+00:00,1 +2023-10-24 21:07:43.427331182+00:00,1 +2023-10-24 21:07:43.556367939+00:00,1 +2023-10-24 21:07:43.683578717+00:00,1 +2023-10-24 21:07:43.810270567+00:00,1 +2023-10-24 21:07:43.937206111+00:00,1 +2023-10-24 21:07:44.065447982+00:00,1 +2023-10-24 21:07:44.194051960+00:00,1 +2023-10-24 21:07:44.322054419+00:00,1 +2023-10-24 21:07:44.449745396+00:00,1 +2023-10-24 21:07:44.576806082+00:00,1 +2023-10-24 21:07:44.705495552+00:00,1 +2023-10-24 21:07:44.834848929+00:00,1 +2023-10-24 21:07:44.961521408+00:00,1 +2023-10-24 21:07:45.089443790+00:00,1 +2023-10-24 21:07:45.217656141+00:00,1 +2023-10-24 21:07:45.346543846+00:00,1 +2023-10-24 21:07:45.474480670+00:00,1 +2023-10-24 21:07:45.602014128+00:00,1 +2023-10-24 21:07:45.730762977+00:00,1 +2023-10-24 21:07:45.859744177+00:00,1 +2023-10-24 21:07:45.987435616+00:00,1 +2023-10-24 21:07:46.114892439+00:00,1 +2023-10-24 21:07:46.244608718+00:00,1 +2023-10-24 21:07:46.373534685+00:00,1 +2023-10-24 21:07:46.502430236+00:00,1 +2023-10-24 21:07:46.629516551+00:00,1 +2023-10-24 21:07:46.758320172+00:00,1 +2023-10-24 21:07:46.887395100+00:00,1 +2023-10-24 21:07:47.015541243+00:00,1 +2023-10-24 21:07:47.143531345+00:00,1 +2023-10-24 21:07:47.271882076+00:00,1 +2023-10-24 21:07:47.399866917+00:00,1 +2023-10-24 21:07:47.528380598+00:00,1 +2023-10-24 21:07:47.656474361+00:00,1 +2023-10-24 21:07:47.784211305+00:00,1 +2023-10-24 21:07:47.913824831+00:00,1 +2023-10-24 21:07:48.041654445+00:00,1 +2023-10-24 21:07:48.170821957+00:00,1 +2023-10-24 21:07:48.298974008+00:00,1 +2023-10-24 21:07:48.426750995+00:00,1 +2023-10-24 21:07:48.555292597+00:00,1 +2023-10-24 21:07:48.683082621+00:00,1 +2023-10-24 21:07:48.810221533+00:00,1 +2023-10-24 21:07:48.939643611+00:00,1 +2023-10-24 21:07:49.068257080+00:00,1 +2023-10-24 21:07:49.195773823+00:00,1 +2023-10-24 21:07:49.323420975+00:00,1 +2023-10-24 21:07:49.452653447+00:00,1 +2023-10-24 21:07:49.582005872+00:00,1 +2023-10-24 21:07:49.710098256+00:00,1 +2023-10-24 21:07:49.837998196+00:00,1 +2023-10-24 21:07:49.964798407+00:00,1 +2023-10-24 21:07:50.092147915+00:00,1 +2023-10-24 21:07:50.220085401+00:00,1 +2023-10-24 21:07:50.347939025+00:00,1 +2023-10-24 21:07:50.476423883+00:00,1 +2023-10-24 21:07:50.605623657+00:00,1 +2023-10-24 21:07:50.734712890+00:00,1 +2023-10-24 21:07:50.862217473+00:00,1 +2023-10-24 21:07:50.990817252+00:00,1 +2023-10-24 21:07:51.119226471+00:00,1 +2023-10-24 21:07:51.247941937+00:00,1 +2023-10-24 21:07:51.375979540+00:00,1 +2023-10-24 21:07:51.505088030+00:00,1 +2023-10-24 21:07:51.632854406+00:00,1 +2023-10-24 21:07:51.761603944+00:00,1 +2023-10-24 21:07:51.889740530+00:00,1 +2023-10-24 21:07:52.017457714+00:00,1 +2023-10-24 21:07:52.143917522+00:00,1 +2023-10-24 21:07:52.271199514+00:00,1 +2023-10-24 21:07:52.400957377+00:00,1 +2023-10-24 21:07:52.529202486+00:00,1 +2023-10-24 21:07:52.655729798+00:00,1 +2023-10-24 21:07:52.784167178+00:00,1 +2023-10-24 21:07:52.911867546+00:00,1 +2023-10-24 21:07:53.039583875+00:00,1 +2023-10-24 21:07:53.169137960+00:00,1 +2023-10-24 21:07:53.297789814+00:00,1 +2023-10-24 21:07:53.426396242+00:00,1 +2023-10-24 21:07:53.555784858+00:00,1 +2023-10-24 21:07:53.684100046+00:00,1 +2023-10-24 21:07:53.814425204+00:00,1 +2023-10-24 21:07:53.944414388+00:00,1 +2023-10-24 21:07:54.072412485+00:00,1 +2023-10-24 21:07:54.200870962+00:00,1 +2023-10-24 21:07:54.329222659+00:00,1 +2023-10-24 21:07:54.457872606+00:00,1 +2023-10-24 21:07:54.586502943+00:00,1 +2023-10-24 21:07:54.713267580+00:00,1 +2023-10-24 21:07:54.841105729+00:00,1 +2023-10-24 21:07:54.971478172+00:00,1 +2023-10-24 21:07:55.103235945+00:00,1 +2023-10-24 21:07:55.229822834+00:00,1 +2023-10-24 21:07:55.358757298+00:00,1 +2023-10-24 21:07:55.486350258+00:00,1 +2023-10-24 21:07:55.613793972+00:00,1 +2023-10-24 21:07:55.743120300+00:00,1 +2023-10-24 21:07:55.870970142+00:00,1 +2023-10-24 21:07:56.000288806+00:00,1 +2023-10-24 21:07:56.129852531+00:00,1 +2023-10-24 21:07:56.257784758+00:00,1 +2023-10-24 21:07:56.386474027+00:00,1 +2023-10-24 21:07:56.515985486+00:00,1 +2023-10-24 21:07:56.643807194+00:00,1 +2023-10-24 21:07:56.774145507+00:00,1 +2023-10-24 21:07:56.901801138+00:00,1 +2023-10-24 21:07:57.031381992+00:00,1 +2023-10-24 21:07:57.159398344+00:00,1 +2023-10-24 21:07:57.286839143+00:00,1 +2023-10-24 21:07:57.414956370+00:00,1 +2023-10-24 21:07:57.542154187+00:00,1 +2023-10-24 21:07:57.670340443+00:00,1 +2023-10-24 21:07:57.797773468+00:00,1 +2023-10-24 21:07:57.924711426+00:00,1 +2023-10-24 21:07:58.052253449+00:00,1 +2023-10-24 21:07:58.180159871+00:00,1 +2023-10-24 21:07:58.308755707+00:00,1 +2023-10-24 21:07:58.436962470+00:00,1 +2023-10-24 21:07:58.565136582+00:00,1 +2023-10-24 21:07:58.694590595+00:00,1 +2023-10-24 21:07:58.823128469+00:00,1 +2023-10-24 21:07:58.951333308+00:00,1 +2023-10-24 21:07:59.078494809+00:00,1 +2023-10-24 21:07:59.206160888+00:00,1 +2023-10-24 21:07:59.334931787+00:00,1 +2023-10-24 21:07:59.464666043+00:00,1 +2023-10-24 21:07:59.592776460+00:00,1 +2023-10-24 21:07:59.721127336+00:00,1 +2023-10-24 21:07:59.849513414+00:00,1 +2023-10-24 21:07:59.979034040+00:00,1 +2023-10-24 21:08:00.107262725+00:00,1 +2023-10-24 21:08:00.236717852+00:00,1 +2023-10-24 21:08:00.365135773+00:00,1 +2023-10-24 21:08:00.495382908+00:00,1 +2023-10-24 21:08:00.624464243+00:00,1 +2023-10-24 21:08:00.752932888+00:00,1 +2023-10-24 21:08:00.881159432+00:00,1 +2023-10-24 21:08:01.008046460+00:00,1 +2023-10-24 21:08:01.136262403+00:00,1 +2023-10-24 21:08:01.263452697+00:00,1 +2023-10-24 21:08:01.391820090+00:00,1 +2023-10-24 21:08:01.520244140+00:00,1 +2023-10-24 21:08:01.649782979+00:00,1 +2023-10-24 21:08:01.778357681+00:00,1 +2023-10-24 21:08:01.906543070+00:00,1 +2023-10-24 21:08:02.033390602+00:00,1 +2023-10-24 21:08:02.160320790+00:00,1 +2023-10-24 21:08:02.289728104+00:00,1 +2023-10-24 21:08:02.416749543+00:00,1 +2023-10-24 21:08:02.546416410+00:00,1 +2023-10-24 21:08:02.674789097+00:00,1 +2023-10-24 21:08:02.802697956+00:00,1 +2023-10-24 21:08:02.930831231+00:00,1 +2023-10-24 21:08:03.060087520+00:00,1 +2023-10-24 21:08:03.188723067+00:00,1 +2023-10-24 21:08:03.318686811+00:00,1 +2023-10-24 21:08:03.447397592+00:00,1 +2023-10-24 21:08:03.576727403+00:00,1 +2023-10-24 21:08:03.705149347+00:00,1 +2023-10-24 21:08:03.835020897+00:00,1 +2023-10-24 21:08:03.962480244+00:00,1 +2023-10-24 21:08:04.089539145+00:00,1 +2023-10-24 21:08:04.216833550+00:00,1 +2023-10-24 21:08:04.344618617+00:00,1 +2023-10-24 21:08:04.474266448+00:00,1 +2023-10-24 21:08:04.601967270+00:00,1 +2023-10-24 21:08:04.730200173+00:00,1 +2023-10-24 21:08:04.857850881+00:00,1 +2023-10-24 21:08:04.985782889+00:00,1 +2023-10-24 21:08:05.112903249+00:00,1 +2023-10-24 21:08:05.243104039+00:00,1 +2023-10-24 21:08:05.371987955+00:00,1 +2023-10-24 21:08:05.500650411+00:00,1 +2023-10-24 21:08:05.629260602+00:00,1 +2023-10-24 21:08:05.758741868+00:00,1 +2023-10-24 21:08:05.887210286+00:00,1 +2023-10-24 21:08:06.015214037+00:00,1 +2023-10-24 21:08:06.143384298+00:00,1 +2023-10-24 21:08:06.272195343+00:00,1 +2023-10-24 21:08:06.400687916+00:00,1 +2023-10-24 21:08:06.529611944+00:00,1 +2023-10-24 21:08:06.658248665+00:00,1 +2023-10-24 21:08:06.786077956+00:00,1 +2023-10-24 21:08:06.913636334+00:00,1 +2023-10-24 21:08:07.041330481+00:00,1 +2023-10-24 21:08:07.168563927+00:00,1 +2023-10-24 21:08:07.296461516+00:00,1 +2023-10-24 21:08:07.423033184+00:00,1 +2023-10-24 21:08:07.550288697+00:00,1 +2023-10-24 21:08:07.679054549+00:00,1 +2023-10-24 21:08:07.807508429+00:00,1 +2023-10-24 21:08:07.935714341+00:00,1 +2023-10-24 21:08:08.062816786+00:00,1 +2023-10-24 21:08:08.189562582+00:00,1 +2023-10-24 21:08:08.317466737+00:00,1 +2023-10-24 21:08:08.447169792+00:00,1 +2023-10-24 21:08:08.576326366+00:00,1 +2023-10-24 21:08:08.704645032+00:00,1 +2023-10-24 21:08:08.833560706+00:00,1 +2023-10-24 21:08:08.961133556+00:00,1 +2023-10-24 21:08:09.090225545+00:00,1 +2023-10-24 21:08:09.219304311+00:00,1 +2023-10-24 21:08:09.347023422+00:00,1 +2023-10-24 21:08:09.474674081+00:00,1 +2023-10-24 21:08:09.602622571+00:00,1 +2023-10-24 21:08:09.732234880+00:00,1 +2023-10-24 21:08:09.862206845+00:00,1 +2023-10-24 21:08:09.989995836+00:00,1 +2023-10-24 21:08:10.119991683+00:00,1 +2023-10-24 21:08:10.249327810+00:00,1 +2023-10-24 21:08:10.377698269+00:00,1 +2023-10-24 21:08:10.505357787+00:00,1 +2023-10-24 21:08:10.633976023+00:00,1 +2023-10-24 21:08:10.761709282+00:00,1 +2023-10-24 21:08:10.890422176+00:00,1 +2023-10-24 21:08:11.018421843+00:00,1 +2023-10-24 21:08:11.148431491+00:00,1 +2023-10-24 21:08:11.275992962+00:00,1 +2023-10-24 21:08:11.403994307+00:00,1 +2023-10-24 21:08:11.532488754+00:00,1 +2023-10-24 21:08:11.661241657+00:00,1 +2023-10-24 21:08:11.787927597+00:00,1 +2023-10-24 21:08:11.915303025+00:00,1 +2023-10-24 21:08:12.043080778+00:00,1 +2023-10-24 21:08:12.170342944+00:00,1 +2023-10-24 21:08:12.297131920+00:00,1 +2023-10-24 21:08:12.425651871+00:00,1 +2023-10-24 21:08:12.554191696+00:00,1 +2023-10-24 21:08:12.681871413+00:00,1 +2023-10-24 21:08:12.809574241+00:00,1 +2023-10-24 21:08:12.937598580+00:00,1 +2023-10-24 21:08:13.066168456+00:00,1 +2023-10-24 21:08:13.193967342+00:00,1 +2023-10-24 21:08:13.321129004+00:00,1 +2023-10-24 21:08:13.448615253+00:00,1 +2023-10-24 21:08:13.577741842+00:00,1 +2023-10-24 21:08:13.706715671+00:00,1 +2023-10-24 21:08:13.834933392+00:00,1 +2023-10-24 21:08:13.963044464+00:00,1 +2023-10-24 21:08:14.090570719+00:00,1 +2023-10-24 21:08:14.220206020+00:00,1 +2023-10-24 21:08:14.349554308+00:00,1 +2023-10-24 21:08:14.478842758+00:00,1 +2023-10-24 21:08:14.607856303+00:00,1 +2023-10-24 21:08:14.736716116+00:00,1 +2023-10-24 21:08:14.864514501+00:00,1 +2023-10-24 21:08:14.995659286+00:00,1 +2023-10-24 21:08:15.130948139+00:00,1 +2023-10-24 21:08:15.259601435+00:00,1 +2023-10-24 21:08:15.388031753+00:00,1 +2023-10-24 21:08:15.515921372+00:00,1 +2023-10-24 21:08:15.642963395+00:00,1 +2023-10-24 21:08:15.771281454+00:00,1 +2023-10-24 21:08:15.899961224+00:00,1 +2023-10-24 21:08:16.027244728+00:00,1 +2023-10-24 21:08:16.155251596+00:00,1 +2023-10-24 21:08:16.282401992+00:00,1 +2023-10-24 21:08:16.410839057+00:00,1 +2023-10-24 21:08:16.539419352+00:00,1 +2023-10-24 21:08:16.667231527+00:00,1 +2023-10-24 21:08:16.796580083+00:00,1 +2023-10-24 21:08:16.925921618+00:00,1 +2023-10-24 21:08:17.054830911+00:00,1 +2023-10-24 21:08:17.181274784+00:00,1 +2023-10-24 21:08:17.309071268+00:00,1 +2023-10-24 21:08:17.436625048+00:00,1 +2023-10-24 21:08:17.564325785+00:00,1 +2023-10-24 21:08:17.693365248+00:00,1 +2023-10-24 21:08:17.822484549+00:00,1 +2023-10-24 21:08:17.950486953+00:00,1 +2023-10-24 21:08:18.078109542+00:00,1 +2023-10-24 21:08:18.207336586+00:00,1 +2023-10-24 21:08:18.336013581+00:00,1 +2023-10-24 21:08:18.463382728+00:00,1 +2023-10-24 21:08:18.591527014+00:00,1 +2023-10-24 21:08:18.719809972+00:00,1 +2023-10-24 21:08:18.848241912+00:00,1 +2023-10-24 21:08:18.976111449+00:00,1 +2023-10-24 21:08:19.104460541+00:00,1 +2023-10-24 21:08:19.235099935+00:00,1 +2023-10-24 21:08:19.364243266+00:00,1 +2023-10-24 21:08:19.493240977+00:00,1 +2023-10-24 21:08:19.621660435+00:00,1 +2023-10-24 21:08:19.749751174+00:00,1 +2023-10-24 21:08:19.878516789+00:00,1 +2023-10-24 21:08:20.008159339+00:00,1 +2023-10-24 21:08:20.136214289+00:00,1 +2023-10-24 21:08:20.263470968+00:00,1 +2023-10-24 21:08:20.391648925+00:00,1 +2023-10-24 21:08:20.519860115+00:00,1 +2023-10-24 21:08:20.648252483+00:00,1 +2023-10-24 21:08:20.776494682+00:00,1 +2023-10-24 21:08:20.904406703+00:00,1 +2023-10-24 21:08:21.032653089+00:00,1 +2023-10-24 21:08:21.161752377+00:00,1 +2023-10-24 21:08:21.289900066+00:00,1 +2023-10-24 21:08:21.420011868+00:00,1 +2023-10-24 21:08:21.548894415+00:00,1 +2023-10-24 21:08:21.677954955+00:00,1 +2023-10-24 21:08:21.807274932+00:00,1 +2023-10-24 21:08:21.936351546+00:00,1 +2023-10-24 21:08:22.065868129+00:00,1 +2023-10-24 21:08:22.193977978+00:00,1 +2023-10-24 21:08:22.323037744+00:00,1 +2023-10-24 21:08:22.451433687+00:00,1 +2023-10-24 21:08:22.579649160+00:00,1 +2023-10-24 21:08:22.707335436+00:00,1 +2023-10-24 21:08:22.836152409+00:00,1 +2023-10-24 21:08:22.963380618+00:00,1 +2023-10-24 21:08:23.091342888+00:00,1 +2023-10-24 21:08:23.220266223+00:00,1 +2023-10-24 21:08:23.349371533+00:00,1 +2023-10-24 21:08:23.478206121+00:00,1 +2023-10-24 21:08:23.608100015+00:00,1 +2023-10-24 21:08:23.736137153+00:00,1 +2023-10-24 21:08:23.864721334+00:00,1 +2023-10-24 21:08:23.992145495+00:00,1 +2023-10-24 21:08:24.120319434+00:00,1 +2023-10-24 21:08:24.248464649+00:00,1 +2023-10-24 21:08:24.376313954+00:00,1 +2023-10-24 21:08:24.505959857+00:00,1 +2023-10-24 21:08:24.634866262+00:00,1 +2023-10-24 21:08:24.763108173+00:00,1 +2023-10-24 21:08:24.891356748+00:00,1 +2023-10-24 21:08:25.019723007+00:00,1 +2023-10-24 21:08:25.147306106+00:00,1 +2023-10-24 21:08:25.275516347+00:00,1 +2023-10-24 21:08:25.404917586+00:00,1 +2023-10-24 21:08:25.534429230+00:00,1 +2023-10-24 21:08:25.662288669+00:00,1 +2023-10-24 21:08:25.791063503+00:00,1 +2023-10-24 21:08:25.920801710+00:00,1 +2023-10-24 21:08:26.049100110+00:00,1 +2023-10-24 21:08:26.178074287+00:00,1 +2023-10-24 21:08:26.306568245+00:00,1 +2023-10-24 21:08:26.435249590+00:00,1 +2023-10-24 21:08:26.565128256+00:00,1 +2023-10-24 21:08:26.693722950+00:00,1 +2023-10-24 21:08:26.824084185+00:00,1 +2023-10-24 21:08:26.954525120+00:00,1 +2023-10-24 21:08:27.085227139+00:00,1 +2023-10-24 21:08:27.214923671+00:00,1 +2023-10-24 21:08:27.346280886+00:00,1 +2023-10-24 21:08:27.474523670+00:00,1 +2023-10-24 21:08:27.603617910+00:00,1 +2023-10-24 21:08:27.732520985+00:00,1 +2023-10-24 21:08:27.861651113+00:00,1 +2023-10-24 21:08:27.991893894+00:00,1 +2023-10-24 21:08:28.121371447+00:00,1 +2023-10-24 21:08:28.251478757+00:00,1 +2023-10-24 21:08:28.380026453+00:00,1 +2023-10-24 21:08:28.508299356+00:00,1 +2023-10-24 21:08:28.636578657+00:00,1 +2023-10-24 21:08:28.766687550+00:00,1 +2023-10-24 21:08:28.895324680+00:00,1 +2023-10-24 21:08:29.025249294+00:00,1 +2023-10-24 21:08:29.153453091+00:00,1 +2023-10-24 21:08:29.283327204+00:00,1 +2023-10-24 21:08:29.411570410+00:00,1 +2023-10-24 21:08:29.540041082+00:00,1 +2023-10-24 21:08:29.670701427+00:00,1 +2023-10-24 21:08:29.802271920+00:00,1 +2023-10-24 21:08:29.931521029+00:00,1 +2023-10-24 21:08:30.060287881+00:00,1 +2023-10-24 21:08:30.188465920+00:00,1 +2023-10-24 21:08:30.318967619+00:00,1 +2023-10-24 21:08:30.448313027+00:00,1 +2023-10-24 21:08:30.577831045+00:00,1 +2023-10-24 21:08:30.708904085+00:00,1 +2023-10-24 21:08:30.837665081+00:00,1 +2023-10-24 21:08:30.966658392+00:00,1 +2023-10-24 21:08:31.095931748+00:00,1 +2023-10-24 21:08:31.224104824+00:00,1 +2023-10-24 21:08:31.352163877+00:00,1 +2023-10-24 21:08:31.480638714+00:00,1 +2023-10-24 21:08:31.610942927+00:00,1 +2023-10-24 21:08:31.739499094+00:00,1 +2023-10-24 21:08:31.869008001+00:00,1 +2023-10-24 21:08:32.000110141+00:00,1 +2023-10-24 21:08:32.129405803+00:00,1 +2023-10-24 21:08:32.258601962+00:00,1 +2023-10-24 21:08:32.388090438+00:00,1 +2023-10-24 21:08:32.516595808+00:00,1 +2023-10-24 21:08:32.644303641+00:00,1 +2023-10-24 21:08:32.771386479+00:00,1 +2023-10-24 21:08:32.901050139+00:00,1 +2023-10-24 21:08:33.030927406+00:00,1 +2023-10-24 21:08:33.160325104+00:00,1 +2023-10-24 21:08:33.288008609+00:00,1 +2023-10-24 21:08:33.415995086+00:00,1 +2023-10-24 21:08:33.543286394+00:00,1 +2023-10-24 21:08:33.671851916+00:00,1 +2023-10-24 21:08:33.799495972+00:00,1 +2023-10-24 21:08:33.929310206+00:00,1 +2023-10-24 21:08:34.057448240+00:00,1 +2023-10-24 21:08:34.185257522+00:00,1 +2023-10-24 21:08:34.313121420+00:00,1 +2023-10-24 21:08:34.440625639+00:00,1 +2023-10-24 21:08:34.569267220+00:00,1 +2023-10-24 21:08:34.698095531+00:00,1 +2023-10-24 21:08:34.825280009+00:00,1 +2023-10-24 21:08:34.954109672+00:00,1 +2023-10-24 21:08:35.084601114+00:00,1 +2023-10-24 21:08:35.212792488+00:00,1 +2023-10-24 21:08:35.343620834+00:00,1 +2023-10-24 21:08:35.471556991+00:00,1 +2023-10-24 21:08:35.601592567+00:00,1 +2023-10-24 21:08:35.731256514+00:00,1 +2023-10-24 21:08:35.859023098+00:00,1 +2023-10-24 21:08:35.988084123+00:00,1 +2023-10-24 21:08:36.119673016+00:00,1 +2023-10-24 21:08:36.249216548+00:00,1 +2023-10-24 21:08:36.378582014+00:00,1 +2023-10-24 21:08:36.508438729+00:00,1 +2023-10-24 21:08:36.636731511+00:00,1 +2023-10-24 21:08:36.765640799+00:00,1 +2023-10-24 21:08:36.895087508+00:00,1 +2023-10-24 21:08:37.024042699+00:00,1 +2023-10-24 21:08:37.152336846+00:00,1 +2023-10-24 21:08:37.281674133+00:00,1 +2023-10-24 21:08:37.408820774+00:00,1 +2023-10-24 21:08:37.538630211+00:00,1 +2023-10-24 21:08:37.667420751+00:00,1 +2023-10-24 21:08:37.796562289+00:00,1 +2023-10-24 21:08:37.925642671+00:00,1 +2023-10-24 21:08:38.055658084+00:00,1 +2023-10-24 21:08:38.183942893+00:00,1 +2023-10-24 21:08:38.312194904+00:00,1 +2023-10-24 21:08:38.442180764+00:00,1 +2023-10-24 21:08:38.571637025+00:00,1 +2023-10-24 21:08:38.700477073+00:00,1 +2023-10-24 21:08:38.828531781+00:00,1 +2023-10-24 21:08:38.956746344+00:00,1 +2023-10-24 21:08:39.085052290+00:00,1 +2023-10-24 21:08:39.213769230+00:00,1 +2023-10-24 21:08:39.343263141+00:00,1 +2023-10-24 21:08:39.471250518+00:00,1 +2023-10-24 21:08:39.598205948+00:00,1 +2023-10-24 21:08:39.726325412+00:00,1 +2023-10-24 21:08:39.855297585+00:00,1 +2023-10-24 21:08:39.982694062+00:00,1 +2023-10-24 21:08:40.110782957+00:00,1 +2023-10-24 21:08:40.238986463+00:00,1 +2023-10-24 21:08:40.367053581+00:00,1 +2023-10-24 21:08:40.494492517+00:00,1 +2023-10-24 21:08:40.623639178+00:00,1 +2023-10-24 21:08:40.752422057+00:00,1 +2023-10-24 21:08:40.880482908+00:00,1 +2023-10-24 21:08:41.009217969+00:00,1 +2023-10-24 21:08:41.138254375+00:00,1 +2023-10-24 21:08:41.268049010+00:00,1 +2023-10-24 21:08:41.396378141+00:00,1 +2023-10-24 21:08:41.526487275+00:00,1 +2023-10-24 21:08:41.654689458+00:00,1 +2023-10-24 21:08:41.783400121+00:00,1 +2023-10-24 21:08:41.912547085+00:00,1 +2023-10-24 21:08:42.040849484+00:00,1 +2023-10-24 21:08:42.168602359+00:00,1 +2023-10-24 21:08:42.297331467+00:00,1 +2023-10-24 21:08:42.425531968+00:00,1 +2023-10-24 21:08:42.553233756+00:00,1 +2023-10-24 21:08:42.681473716+00:00,1 +2023-10-24 21:08:42.810479752+00:00,1 +2023-10-24 21:08:42.939625638+00:00,1 +2023-10-24 21:08:43.068834807+00:00,1 +2023-10-24 21:08:43.196635435+00:00,1 +2023-10-24 21:08:43.326631817+00:00,1 +2023-10-24 21:08:43.455012547+00:00,1 +2023-10-24 21:08:43.584080940+00:00,1 +2023-10-24 21:08:43.712352585+00:00,1 +2023-10-24 21:08:43.840988215+00:00,1 +2023-10-24 21:08:43.970321763+00:00,1 +2023-10-24 21:08:44.098360868+00:00,1 +2023-10-24 21:08:44.226233516+00:00,1 +2023-10-24 21:08:44.355422907+00:00,1 +2023-10-24 21:08:44.484445752+00:00,1 +2023-10-24 21:08:44.612090724+00:00,1 +2023-10-24 21:08:44.740231173+00:00,1 +2023-10-24 21:08:44.868925230+00:00,1 +2023-10-24 21:08:44.997544231+00:00,1 +2023-10-24 21:08:45.124934269+00:00,1 +2023-10-24 21:08:45.259110232+00:00,1 +2023-10-24 21:08:45.385239335+00:00,1 +2023-10-24 21:08:45.513009379+00:00,1 +2023-10-24 21:08:45.641086428+00:00,1 +2023-10-24 21:08:45.768280584+00:00,1 +2023-10-24 21:08:45.895637013+00:00,1 +2023-10-24 21:08:46.025376541+00:00,1 +2023-10-24 21:08:46.155537776+00:00,1 +2023-10-24 21:08:46.285022176+00:00,1 +2023-10-24 21:08:46.412849534+00:00,1 +2023-10-24 21:08:46.543507713+00:00,1 +2023-10-24 21:08:46.672257074+00:00,1 +2023-10-24 21:08:46.800301008+00:00,1 +2023-10-24 21:08:46.929600153+00:00,1 +2023-10-24 21:08:47.059332136+00:00,1 +2023-10-24 21:08:47.188978262+00:00,1 +2023-10-24 21:08:47.317844719+00:00,1 +2023-10-24 21:08:47.446727401+00:00,1 +2023-10-24 21:08:47.575459719+00:00,1 +2023-10-24 21:08:47.703373207+00:00,1 +2023-10-24 21:08:47.832244609+00:00,1 +2023-10-24 21:08:47.960075771+00:00,1 +2023-10-24 21:08:48.089655164+00:00,1 +2023-10-24 21:08:48.217235541+00:00,1 +2023-10-24 21:08:48.345893494+00:00,1 +2023-10-24 21:08:48.474467486+00:00,1 +2023-10-24 21:08:48.602655978+00:00,1 +2023-10-24 21:08:48.731450963+00:00,1 +2023-10-24 21:08:48.858141988+00:00,1 +2023-10-24 21:08:48.989298679+00:00,1 +2023-10-24 21:08:49.117334864+00:00,1 +2023-10-24 21:08:49.245256542+00:00,1 +2023-10-24 21:08:49.373270663+00:00,1 +2023-10-24 21:08:49.501530672+00:00,1 +2023-10-24 21:08:49.629680581+00:00,1 +2023-10-24 21:08:49.758414034+00:00,1 +2023-10-24 21:08:49.886865463+00:00,1 +2023-10-24 21:08:50.015359350+00:00,1 +2023-10-24 21:08:50.143150814+00:00,1 +2023-10-24 21:08:50.271910795+00:00,1 +2023-10-24 21:08:50.400269873+00:00,1 +2023-10-24 21:08:50.529598799+00:00,1 +2023-10-24 21:08:50.659850885+00:00,1 +2023-10-24 21:08:50.787867157+00:00,1 +2023-10-24 21:08:50.916760351+00:00,1 +2023-10-24 21:08:51.046432941+00:00,1 +2023-10-24 21:08:51.173878057+00:00,1 +2023-10-24 21:08:51.301482650+00:00,1 +2023-10-24 21:08:51.429295081+00:00,1 +2023-10-24 21:08:51.558642495+00:00,1 +2023-10-24 21:08:51.687107244+00:00,1 +2023-10-24 21:08:51.816551496+00:00,1 +2023-10-24 21:08:51.944837240+00:00,1 +2023-10-24 21:08:52.073542257+00:00,1 +2023-10-24 21:08:52.203000145+00:00,1 +2023-10-24 21:08:52.332273571+00:00,1 +2023-10-24 21:08:52.460750919+00:00,1 +2023-10-24 21:08:52.589951590+00:00,1 +2023-10-24 21:08:52.717916374+00:00,1 +2023-10-24 21:08:52.847439264+00:00,1 +2023-10-24 21:08:52.976219864+00:00,1 +2023-10-24 21:08:53.105849831+00:00,1 +2023-10-24 21:08:53.236794220+00:00,1 +2023-10-24 21:08:53.364989239+00:00,1 +2023-10-24 21:08:53.493818657+00:00,1 +2023-10-24 21:08:53.621917607+00:00,1 +2023-10-24 21:08:53.749866059+00:00,1 +2023-10-24 21:08:53.882456549+00:00,1 +2023-10-24 21:08:54.012171480+00:00,1 +2023-10-24 21:08:54.140252154+00:00,1 +2023-10-24 21:08:54.269281074+00:00,1 +2023-10-24 21:08:54.398429883+00:00,1 +2023-10-24 21:08:54.529670666+00:00,1 +2023-10-24 21:08:54.658890637+00:00,1 +2023-10-24 21:08:54.787063198+00:00,1 +2023-10-24 21:08:54.915739478+00:00,1 +2023-10-24 21:08:55.043254444+00:00,1 +2023-10-24 21:08:55.172715640+00:00,1 +2023-10-24 21:08:55.301170775+00:00,1 +2023-10-24 21:08:55.428946221+00:00,1 +2023-10-24 21:08:55.557504812+00:00,1 +2023-10-24 21:08:55.686762528+00:00,1 +2023-10-24 21:08:55.816020456+00:00,1 +2023-10-24 21:08:55.943738336+00:00,1 +2023-10-24 21:08:56.071295560+00:00,1 +2023-10-24 21:08:56.201716798+00:00,1 +2023-10-24 21:08:56.330543785+00:00,1 +2023-10-24 21:08:56.458821174+00:00,1 +2023-10-24 21:08:56.587336099+00:00,1 +2023-10-24 21:08:56.715032362+00:00,1 +2023-10-24 21:08:56.842864450+00:00,1 +2023-10-24 21:08:56.972252802+00:00,1 +2023-10-24 21:08:57.100353333+00:00,1 +2023-10-24 21:08:57.228327921+00:00,1 +2023-10-24 21:08:57.358691149+00:00,1 +2023-10-24 21:08:57.487271703+00:00,1 +2023-10-24 21:08:57.616098148+00:00,1 +2023-10-24 21:08:57.744069143+00:00,1 +2023-10-24 21:08:57.872993597+00:00,1 +2023-10-24 21:08:58.000049895+00:00,1 +2023-10-24 21:08:58.127495600+00:00,1 +2023-10-24 21:08:58.255336760+00:00,1 +2023-10-24 21:08:58.382886645+00:00,1 +2023-10-24 21:08:58.513861868+00:00,1 +2023-10-24 21:08:58.643755067+00:00,1 +2023-10-24 21:08:58.773681257+00:00,1 +2023-10-24 21:08:58.901910284+00:00,1 +2023-10-24 21:08:59.031299474+00:00,1 +2023-10-24 21:08:59.162332470+00:00,1 +2023-10-24 21:08:59.291321050+00:00,1 +2023-10-24 21:08:59.421138898+00:00,1 +2023-10-24 21:08:59.549776845+00:00,1 +2023-10-24 21:08:59.679428145+00:00,1 +2023-10-24 21:08:59.808457606+00:00,1 +2023-10-24 21:08:59.936747867+00:00,1 +2023-10-24 21:09:00.066458820+00:00,1 +2023-10-24 21:09:00.194098194+00:00,1 +2023-10-24 21:09:00.322103705+00:00,1 +2023-10-24 21:09:00.449900590+00:00,1 +2023-10-24 21:09:00.577588785+00:00,1 +2023-10-24 21:09:00.705757754+00:00,1 +2023-10-24 21:09:00.834944848+00:00,1 +2023-10-24 21:09:00.964502030+00:00,1 +2023-10-24 21:09:01.094286893+00:00,1 +2023-10-24 21:09:01.223013938+00:00,1 +2023-10-24 21:09:01.350451132+00:00,1 +2023-10-24 21:09:01.480088886+00:00,1 +2023-10-24 21:09:01.608203907+00:00,1 +2023-10-24 21:09:01.737053341+00:00,1 +2023-10-24 21:09:01.868941220+00:00,1 +2023-10-24 21:09:01.999587766+00:00,1 +2023-10-24 21:09:02.129534452+00:00,1 +2023-10-24 21:09:02.258928569+00:00,1 +2023-10-24 21:09:02.386823841+00:00,1 +2023-10-24 21:09:02.515075042+00:00,1 +2023-10-24 21:09:02.643039523+00:00,1 +2023-10-24 21:09:02.772322272+00:00,1 +2023-10-24 21:09:02.900965594+00:00,1 +2023-10-24 21:09:03.030039816+00:00,1 +2023-10-24 21:09:03.157859672+00:00,1 +2023-10-24 21:09:03.286639082+00:00,1 +2023-10-24 21:09:03.412832315+00:00,1 +2023-10-24 21:09:03.541108725+00:00,1 +2023-10-24 21:09:03.668635789+00:00,1 +2023-10-24 21:09:03.798280595+00:00,1 +2023-10-24 21:09:03.927286541+00:00,1 +2023-10-24 21:09:04.059115214+00:00,1 +2023-10-24 21:09:04.187815382+00:00,1 +2023-10-24 21:09:04.317540601+00:00,1 +2023-10-24 21:09:04.446714775+00:00,1 +2023-10-24 21:09:04.574906360+00:00,1 +2023-10-24 21:09:04.702686220+00:00,1 +2023-10-24 21:09:04.831374416+00:00,1 +2023-10-24 21:09:04.958923786+00:00,1 +2023-10-24 21:09:05.087941605+00:00,1 +2023-10-24 21:09:05.216397468+00:00,1 +2023-10-24 21:09:05.344132457+00:00,1 +2023-10-24 21:09:05.473431676+00:00,1 +2023-10-24 21:09:05.600927796+00:00,1 +2023-10-24 21:09:05.728304256+00:00,1 +2023-10-24 21:09:05.856350458+00:00,1 +2023-10-24 21:09:05.984711031+00:00,1 +2023-10-24 21:09:06.112922576+00:00,1 +2023-10-24 21:09:06.241903073+00:00,1 +2023-10-24 21:09:06.370591303+00:00,1 +2023-10-24 21:09:06.499700313+00:00,1 +2023-10-24 21:09:06.629386943+00:00,1 +2023-10-24 21:09:06.757332643+00:00,1 +2023-10-24 21:09:06.884666595+00:00,1 +2023-10-24 21:09:07.013092511+00:00,1 +2023-10-24 21:09:07.141712764+00:00,1 +2023-10-24 21:09:07.269406087+00:00,1 +2023-10-24 21:09:07.396291090+00:00,1 +2023-10-24 21:09:07.523988404+00:00,1 +2023-10-24 21:09:07.652056399+00:00,1 +2023-10-24 21:09:07.779653618+00:00,1 +2023-10-24 21:09:07.907601522+00:00,1 +2023-10-24 21:09:08.035940311+00:00,1 +2023-10-24 21:09:08.163620065+00:00,1 +2023-10-24 21:09:08.292416022+00:00,1 +2023-10-24 21:09:08.420528310+00:00,1 +2023-10-24 21:09:08.549766019+00:00,1 +2023-10-24 21:09:08.680571002+00:00,1 +2023-10-24 21:09:08.810281817+00:00,1 +2023-10-24 21:09:08.939074764+00:00,1 +2023-10-24 21:09:09.066845641+00:00,1 +2023-10-24 21:09:09.194908934+00:00,1 +2023-10-24 21:09:09.321957658+00:00,1 +2023-10-24 21:09:09.451068247+00:00,1 +2023-10-24 21:09:09.579087080+00:00,1 +2023-10-24 21:09:09.706040079+00:00,1 +2023-10-24 21:09:09.835452671+00:00,1 +2023-10-24 21:09:09.963176150+00:00,1 +2023-10-24 21:09:10.091550840+00:00,1 +2023-10-24 21:09:10.220957222+00:00,1 +2023-10-24 21:09:10.350884771+00:00,1 +2023-10-24 21:09:10.478913126+00:00,1 +2023-10-24 21:09:10.608531445+00:00,1 +2023-10-24 21:09:10.738153704+00:00,1 +2023-10-24 21:09:10.868894116+00:00,1 +2023-10-24 21:09:10.997257258+00:00,1 +2023-10-24 21:09:11.127536842+00:00,1 +2023-10-24 21:09:11.257628458+00:00,1 +2023-10-24 21:09:11.386730445+00:00,1 +2023-10-24 21:09:11.515705083+00:00,1 +2023-10-24 21:09:11.643897639+00:00,1 +2023-10-24 21:09:11.773020970+00:00,1 +2023-10-24 21:09:11.903320410+00:00,1 +2023-10-24 21:09:12.031522328+00:00,1 +2023-10-24 21:09:12.163274864+00:00,1 +2023-10-24 21:09:12.292893028+00:00,1 +2023-10-24 21:09:12.422954763+00:00,1 +2023-10-24 21:09:12.552683290+00:00,1 +2023-10-24 21:09:12.683053700+00:00,1 +2023-10-24 21:09:12.811619381+00:00,1 +2023-10-24 21:09:12.941223354+00:00,1 +2023-10-24 21:09:13.070009404+00:00,1 +2023-10-24 21:09:13.199484234+00:00,1 +2023-10-24 21:09:13.329432311+00:00,1 +2023-10-24 21:09:13.458158787+00:00,1 +2023-10-24 21:09:13.586549150+00:00,1 +2023-10-24 21:09:13.715821902+00:00,1 +2023-10-24 21:09:13.845430880+00:00,1 +2023-10-24 21:09:13.974258587+00:00,1 +2023-10-24 21:09:14.102642130+00:00,1 +2023-10-24 21:09:14.229480256+00:00,1 +2023-10-24 21:09:14.357311284+00:00,1 +2023-10-24 21:09:14.484694632+00:00,1 +2023-10-24 21:09:14.613817004+00:00,1 +2023-10-24 21:09:14.743765053+00:00,1 +2023-10-24 21:09:14.874229711+00:00,1 +2023-10-24 21:09:15.002938456+00:00,1 +2023-10-24 21:09:15.133351791+00:00,1 +2023-10-24 21:09:15.262359120+00:00,1 +2023-10-24 21:09:15.391732945+00:00,1 +2023-10-24 21:09:15.521568498+00:00,1 +2023-10-24 21:09:15.651105888+00:00,1 +2023-10-24 21:09:15.779191462+00:00,1 +2023-10-24 21:09:15.906803906+00:00,1 +2023-10-24 21:09:16.036637120+00:00,1 +2023-10-24 21:09:16.166147246+00:00,1 +2023-10-24 21:09:16.294425037+00:00,1 +2023-10-24 21:09:16.423098718+00:00,1 +2023-10-24 21:09:16.550904033+00:00,1 +2023-10-24 21:09:16.679233991+00:00,1 +2023-10-24 21:09:16.808659719+00:00,1 +2023-10-24 21:09:16.936790488+00:00,1 +2023-10-24 21:09:17.065197566+00:00,1 +2023-10-24 21:09:17.195661408+00:00,1 +2023-10-24 21:09:17.325500001+00:00,1 +2023-10-24 21:09:17.455231267+00:00,1 +2023-10-24 21:09:17.583529419+00:00,1 +2023-10-24 21:09:17.713492656+00:00,1 +2023-10-24 21:09:17.842562450+00:00,1 +2023-10-24 21:09:17.971233501+00:00,1 +2023-10-24 21:09:18.100561858+00:00,1 +2023-10-24 21:09:18.231343017+00:00,1 +2023-10-24 21:09:18.360534975+00:00,1 +2023-10-24 21:09:18.488846429+00:00,1 +2023-10-24 21:09:18.619053258+00:00,1 +2023-10-24 21:09:18.747228713+00:00,1 +2023-10-24 21:09:18.874584097+00:00,1 +2023-10-24 21:09:19.004643763+00:00,1 +2023-10-24 21:09:19.133782549+00:00,1 +2023-10-24 21:09:19.263345445+00:00,1 +2023-10-24 21:09:19.392151566+00:00,1 +2023-10-24 21:09:19.522993346+00:00,1 +2023-10-24 21:09:19.652406727+00:00,1 +2023-10-24 21:09:19.780867020+00:00,1 +2023-10-24 21:09:19.909343788+00:00,1 +2023-10-24 21:09:20.038230571+00:00,1 +2023-10-24 21:09:20.168167426+00:00,1 +2023-10-24 21:09:20.296518606+00:00,1 +2023-10-24 21:09:20.424092101+00:00,1 +2023-10-24 21:09:20.553297618+00:00,1 +2023-10-24 21:09:20.687575711+00:00,1 +2023-10-24 21:09:20.816325548+00:00,1 +2023-10-24 21:09:20.945686680+00:00,1 +2023-10-24 21:09:21.075805493+00:00,1 +2023-10-24 21:09:21.203183163+00:00,1 +2023-10-24 21:09:21.331362229+00:00,1 +2023-10-24 21:09:21.460478942+00:00,1 +2023-10-24 21:09:21.587267315+00:00,1 +2023-10-24 21:09:21.715410470+00:00,1 +2023-10-24 21:09:21.844586504+00:00,1 +2023-10-24 21:09:21.973339539+00:00,1 +2023-10-24 21:09:22.100692463+00:00,1 +2023-10-24 21:09:22.227365094+00:00,1 +2023-10-24 21:09:22.355377043+00:00,1 +2023-10-24 21:09:22.484510539+00:00,1 +2023-10-24 21:09:22.612583188+00:00,1 +2023-10-24 21:09:22.740535301+00:00,1 +2023-10-24 21:09:22.868246530+00:00,1 +2023-10-24 21:09:22.998799482+00:00,1 +2023-10-24 21:09:23.126831897+00:00,1 +2023-10-24 21:09:23.255817100+00:00,1 +2023-10-24 21:09:23.384154320+00:00,1 +2023-10-24 21:09:23.513355397+00:00,1 +2023-10-24 21:09:23.642316579+00:00,1 +2023-10-24 21:09:23.769991898+00:00,1 +2023-10-24 21:09:23.899947203+00:00,1 +2023-10-24 21:09:24.028718351+00:00,1 +2023-10-24 21:09:24.157013246+00:00,1 +2023-10-24 21:09:24.286132260+00:00,1 +2023-10-24 21:09:24.415305934+00:00,1 +2023-10-24 21:09:24.543598886+00:00,1 +2023-10-24 21:09:24.670953799+00:00,1 +2023-10-24 21:09:24.800341692+00:00,1 +2023-10-24 21:09:24.929100613+00:00,1 +2023-10-24 21:09:25.059178139+00:00,1 +2023-10-24 21:09:25.187393531+00:00,1 +2023-10-24 21:09:25.316565192+00:00,1 +2023-10-24 21:09:25.443932417+00:00,1 +2023-10-24 21:09:25.571973953+00:00,1 +2023-10-24 21:09:25.700166139+00:00,1 +2023-10-24 21:09:25.830584219+00:00,1 +2023-10-24 21:09:25.959112296+00:00,1 +2023-10-24 21:09:26.087554453+00:00,1 +2023-10-24 21:09:26.215477781+00:00,1 +2023-10-24 21:09:26.344215238+00:00,1 +2023-10-24 21:09:26.472334702+00:00,1 +2023-10-24 21:09:26.600022806+00:00,1 +2023-10-24 21:09:26.727438100+00:00,1 +2023-10-24 21:09:26.855809491+00:00,1 +2023-10-24 21:09:26.985943765+00:00,1 +2023-10-24 21:09:27.114578293+00:00,1 +2023-10-24 21:09:27.241623204+00:00,1 +2023-10-24 21:09:27.371182085+00:00,1 +2023-10-24 21:09:27.499606711+00:00,1 +2023-10-24 21:09:27.627479415+00:00,1 +2023-10-24 21:09:27.756774054+00:00,1 +2023-10-24 21:09:27.885293972+00:00,1 +2023-10-24 21:09:28.013226025+00:00,1 +2023-10-24 21:09:28.141971592+00:00,1 +2023-10-24 21:09:28.269929112+00:00,1 +2023-10-24 21:09:28.398985430+00:00,1 +2023-10-24 21:09:28.527435197+00:00,1 +2023-10-24 21:09:28.656465567+00:00,1 +2023-10-24 21:09:28.786052660+00:00,1 +2023-10-24 21:09:28.914149321+00:00,1 +2023-10-24 21:09:29.042685547+00:00,1 +2023-10-24 21:09:29.171240254+00:00,1 +2023-10-24 21:09:29.300886186+00:00,1 +2023-10-24 21:09:29.429593409+00:00,1 +2023-10-24 21:09:29.557945234+00:00,1 +2023-10-24 21:09:29.684574645+00:00,1 +2023-10-24 21:09:29.814822701+00:00,1 +2023-10-24 21:09:29.943932492+00:00,1 +2023-10-24 21:09:30.072722861+00:00,1 +2023-10-24 21:09:30.200821685+00:00,1 +2023-10-24 21:09:30.329305559+00:00,1 +2023-10-24 21:09:30.459383495+00:00,1 +2023-10-24 21:09:30.586577650+00:00,1 +2023-10-24 21:09:30.716254961+00:00,1 +2023-10-24 21:09:30.844050936+00:00,1 +2023-10-24 21:09:30.971973194+00:00,1 +2023-10-24 21:09:31.100675697+00:00,1 +2023-10-24 21:09:31.229249105+00:00,1 +2023-10-24 21:09:31.360110710+00:00,1 +2023-10-24 21:09:31.488760209+00:00,1 +2023-10-24 21:09:31.616238666+00:00,1 +2023-10-24 21:09:31.746011039+00:00,1 +2023-10-24 21:09:31.874752456+00:00,1 +2023-10-24 21:09:32.002091352+00:00,1 +2023-10-24 21:09:32.131362333+00:00,1 +2023-10-24 21:09:32.258066406+00:00,1 +2023-10-24 21:09:32.386577966+00:00,1 +2023-10-24 21:09:32.515260300+00:00,1 +2023-10-24 21:09:32.644378651+00:00,1 +2023-10-24 21:09:32.773102006+00:00,1 +2023-10-24 21:09:32.901637474+00:00,1 +2023-10-24 21:09:33.030276635+00:00,1 +2023-10-24 21:09:33.158101446+00:00,1 +2023-10-24 21:09:33.286450821+00:00,1 +2023-10-24 21:09:33.414698721+00:00,1 +2023-10-24 21:09:33.542472007+00:00,1 +2023-10-24 21:09:33.671264498+00:00,1 +2023-10-24 21:09:33.799074879+00:00,1 +2023-10-24 21:09:33.927887773+00:00,1 +2023-10-24 21:09:34.057403522+00:00,1 +2023-10-24 21:09:34.184416257+00:00,1 +2023-10-24 21:09:34.311953135+00:00,1 +2023-10-24 21:09:34.440130388+00:00,1 +2023-10-24 21:09:34.568115967+00:00,1 +2023-10-24 21:09:34.697145505+00:00,1 +2023-10-24 21:09:34.826842791+00:00,1 +2023-10-24 21:09:34.955466175+00:00,1 +2023-10-24 21:09:35.083371859+00:00,1 +2023-10-24 21:09:35.212309023+00:00,1 +2023-10-24 21:09:35.341394826+00:00,1 +2023-10-24 21:09:35.468729427+00:00,1 +2023-10-24 21:09:35.594033448+00:00,0 +2023-10-24 21:09:37.606223682+00:00,1 +2023-10-24 21:09:37.731710976+00:00,1 +2023-10-24 21:09:37.857032006+00:00,1 +2023-10-24 21:09:37.983172291+00:00,1 +2023-10-24 21:09:38.108581671+00:00,1 +2023-10-24 21:09:38.235081152+00:00,1 +2023-10-24 21:09:38.360518131+00:00,1 +2023-10-24 21:09:38.485645597+00:00,1 +2023-10-24 21:09:38.610375103+00:00,1 +2023-10-24 21:09:38.736147055+00:00,1 +2023-10-24 21:09:38.862415054+00:00,1 +2023-10-24 21:09:38.987820929+00:00,0 +2023-10-24 21:09:41.000475473+00:00,1 +2023-10-24 21:09:41.125742676+00:00,0 +2023-10-24 21:09:43.138576381+00:00,0 +2023-10-24 21:09:45.151369266+00:00,0 +2023-10-24 21:09:47.164457135+00:00,1 +2023-10-24 21:09:47.290186094+00:00,1 +2023-10-24 21:09:47.416270414+00:00,1 +2023-10-24 21:09:47.542181136+00:00,1 +2023-10-24 21:09:47.669740627+00:00,1 +2023-10-24 21:09:47.795352152+00:00,1 +2023-10-24 21:09:47.921476459+00:00,1 +2023-10-24 21:09:48.047694301+00:00,1 +2023-10-24 21:09:48.175379137+00:00,0 +2023-10-24 21:09:50.188125080+00:00,1 +2023-10-24 21:09:50.313830835+00:00,1 +2023-10-24 21:09:50.439266646+00:00,1 +2023-10-24 21:09:50.564647615+00:00,1 +2023-10-24 21:09:50.689211217+00:00,1 +2023-10-24 21:09:50.815722106+00:00,0 +2023-10-24 21:09:52.828775702+00:00,1 +2023-10-24 21:09:52.956274432+00:00,1 +2023-10-24 21:09:53.084404686+00:00,1 +2023-10-24 21:09:53.212174747+00:00,1 +2023-10-24 21:09:53.339430256+00:00,1 +2023-10-24 21:09:53.467926839+00:00,1 +2023-10-24 21:09:53.598109465+00:00,1 +2023-10-24 21:09:53.726024414+00:00,1 +2023-10-24 21:09:53.855742557+00:00,1 +2023-10-24 21:09:53.984433878+00:00,1 +2023-10-24 21:09:54.115094635+00:00,1 +2023-10-24 21:09:54.244147222+00:00,1 +2023-10-24 21:09:54.372162270+00:00,1 +2023-10-24 21:09:54.500778703+00:00,1 +2023-10-24 21:09:54.625759513+00:00,1 +2023-10-24 21:09:54.751245885+00:00,1 +2023-10-24 21:09:54.877013191+00:00,1 +2023-10-24 21:09:55.003200108+00:00,1 +2023-10-24 21:09:56.159845005+00:00,1 +2023-10-24 21:09:56.285517097+00:00,1 +2023-10-24 21:09:56.411547361+00:00,1 +2023-10-24 21:09:56.538768816+00:00,1 +2023-10-24 21:09:56.667741971+00:00,1 +2023-10-24 21:09:56.797368378+00:00,1 +2023-10-24 21:09:56.925407399+00:00,1 +2023-10-24 21:09:57.053976197+00:00,1 +2023-10-24 21:09:57.183274777+00:00,1 +2023-10-24 21:09:57.311175189+00:00,1 +2023-10-24 21:09:57.440919465+00:00,1 +2023-10-24 21:09:57.570456845+00:00,1 +2023-10-24 21:09:57.700871222+00:00,1 +2023-10-24 21:09:57.831746287+00:00,1 +2023-10-24 21:09:57.960447884+00:00,1 +2023-10-24 21:09:58.088476025+00:00,1 +2023-10-24 21:09:58.217253780+00:00,1 +2023-10-24 21:09:58.345889205+00:00,1 +2023-10-24 21:09:58.474620393+00:00,1 +2023-10-24 21:09:58.602414255+00:00,1 +2023-10-24 21:09:58.733060411+00:00,1 +2023-10-24 21:09:58.861878743+00:00,1 +2023-10-24 21:09:58.990948467+00:00,1 +2023-10-24 21:09:59.119021187+00:00,1 +2023-10-24 21:09:59.247905505+00:00,1 +2023-10-24 21:09:59.376869435+00:00,1 +2023-10-24 21:09:59.505270155+00:00,1 +2023-10-24 21:09:59.633741378+00:00,1 +2023-10-24 21:09:59.763708182+00:00,1 +2023-10-24 21:09:59.893683565+00:00,1 +2023-10-24 21:10:00.023673759+00:00,1 +2023-10-24 21:10:00.152301861+00:00,1 +2023-10-24 21:10:00.280771425+00:00,1 +2023-10-24 21:10:00.409959895+00:00,1 +2023-10-24 21:10:00.539137726+00:00,1 +2023-10-24 21:10:00.668550401+00:00,1 +2023-10-24 21:10:00.796903699+00:00,1 +2023-10-24 21:10:00.923475958+00:00,1 +2023-10-24 21:10:01.051928491+00:00,1 +2023-10-24 21:10:01.180102047+00:00,1 +2023-10-24 21:10:01.308726189+00:00,1 +2023-10-24 21:10:01.437369629+00:00,1 +2023-10-24 21:10:01.565171049+00:00,1 +2023-10-24 21:10:01.696095640+00:00,1 +2023-10-24 21:10:01.824550613+00:00,1 +2023-10-24 21:10:01.954167637+00:00,1 +2023-10-24 21:10:02.081973110+00:00,1 +2023-10-24 21:10:02.210748114+00:00,1 +2023-10-24 21:10:02.342171689+00:00,1 +2023-10-24 21:10:02.472554299+00:00,1 +2023-10-24 21:10:02.600212705+00:00,1 +2023-10-24 21:10:02.729960035+00:00,1 +2023-10-24 21:10:02.857501111+00:00,1 +2023-10-24 21:10:02.986793193+00:00,1 +2023-10-24 21:10:03.114885735+00:00,1 +2023-10-24 21:10:03.243384194+00:00,1 +2023-10-24 21:10:03.371955512+00:00,1 +2023-10-24 21:10:03.501507930+00:00,1 +2023-10-24 21:10:03.630951395+00:00,1 +2023-10-24 21:10:03.758422328+00:00,1 +2023-10-24 21:10:03.886222154+00:00,1 +2023-10-24 21:10:04.014838672+00:00,1 +2023-10-24 21:10:04.142822173+00:00,1 +2023-10-24 21:10:04.270992693+00:00,1 +2023-10-24 21:10:04.401359986+00:00,1 +2023-10-24 21:10:04.530477732+00:00,1 +2023-10-24 21:10:04.658250891+00:00,1 +2023-10-24 21:10:04.786646492+00:00,1 +2023-10-24 21:10:04.914093286+00:00,1 +2023-10-24 21:10:05.041893600+00:00,1 +2023-10-24 21:10:05.170842656+00:00,1 +2023-10-24 21:10:05.299171817+00:00,1 +2023-10-24 21:10:05.427255669+00:00,1 +2023-10-24 21:10:05.555355362+00:00,1 +2023-10-24 21:10:05.685444566+00:00,1 +2023-10-24 21:10:05.823146386+00:00,1 +2023-10-24 21:10:05.951045462+00:00,1 +2023-10-24 21:10:06.079253548+00:00,1 +2023-10-24 21:10:06.208779793+00:00,1 +2023-10-24 21:10:06.337956898+00:00,1 +2023-10-24 21:10:06.465865617+00:00,1 +2023-10-24 21:10:06.594769532+00:00,1 +2023-10-24 21:10:06.721754577+00:00,1 +2023-10-24 21:10:06.852779409+00:00,1 +2023-10-24 21:10:06.981440293+00:00,1 +2023-10-24 21:10:07.109554170+00:00,1 +2023-10-24 21:10:07.238629059+00:00,1 +2023-10-24 21:10:07.366084479+00:00,1 +2023-10-24 21:10:07.494382280+00:00,1 +2023-10-24 21:10:07.622090243+00:00,1 +2023-10-24 21:10:07.749918460+00:00,1 +2023-10-24 21:10:07.879357333+00:00,1 +2023-10-24 21:10:08.007179485+00:00,1 +2023-10-24 21:10:08.135441906+00:00,1 +2023-10-24 21:10:08.264336994+00:00,1 +2023-10-24 21:10:08.392484129+00:00,1 +2023-10-24 21:10:08.520202384+00:00,1 +2023-10-24 21:10:08.648538600+00:00,1 +2023-10-24 21:10:08.779445819+00:00,1 +2023-10-24 21:10:08.907880787+00:00,1 +2023-10-24 21:10:09.038575379+00:00,1 +2023-10-24 21:10:09.168233772+00:00,1 +2023-10-24 21:10:09.295484137+00:00,1 +2023-10-24 21:10:09.424852785+00:00,1 +2023-10-24 21:10:09.556212597+00:00,1 +2023-10-24 21:10:09.685284360+00:00,1 +2023-10-24 21:10:09.812818508+00:00,1 +2023-10-24 21:10:09.941083170+00:00,1 +2023-10-24 21:10:10.068840171+00:00,1 +2023-10-24 21:10:10.196298242+00:00,1 +2023-10-24 21:10:10.322820626+00:00,1 +2023-10-24 21:10:10.450505185+00:00,1 +2023-10-24 21:10:10.577366652+00:00,1 +2023-10-24 21:10:10.706004047+00:00,1 +2023-10-24 21:10:10.832762777+00:00,1 +2023-10-24 21:10:10.961982391+00:00,1 +2023-10-24 21:10:11.091379273+00:00,1 +2023-10-24 21:10:11.220415690+00:00,1 +2023-10-24 21:10:11.347674591+00:00,1 +2023-10-24 21:10:11.477367976+00:00,1 +2023-10-24 21:10:11.604663993+00:00,1 +2023-10-24 21:10:11.733110012+00:00,1 +2023-10-24 21:10:11.863043486+00:00,1 +2023-10-24 21:10:11.992969837+00:00,1 +2023-10-24 21:10:12.120917389+00:00,1 +2023-10-24 21:10:12.250008251+00:00,1 +2023-10-24 21:10:12.379561517+00:00,1 +2023-10-24 21:10:12.508551182+00:00,1 +2023-10-24 21:10:12.637930176+00:00,1 +2023-10-24 21:10:12.767765230+00:00,1 +2023-10-24 21:10:12.896450424+00:00,1 +2023-10-24 21:10:13.026248470+00:00,1 +2023-10-24 21:10:13.153997578+00:00,1 +2023-10-24 21:10:13.282099759+00:00,1 +2023-10-24 21:10:13.410001817+00:00,1 +2023-10-24 21:10:13.538508924+00:00,1 +2023-10-24 21:10:13.666585550+00:00,1 +2023-10-24 21:10:13.796124696+00:00,1 +2023-10-24 21:10:13.925984582+00:00,1 +2023-10-24 21:10:14.054039947+00:00,1 +2023-10-24 21:10:14.182091401+00:00,1 +2023-10-24 21:10:14.311342607+00:00,1 +2023-10-24 21:10:14.440274381+00:00,1 +2023-10-24 21:10:14.568250768+00:00,1 +2023-10-24 21:10:14.696094095+00:00,1 +2023-10-24 21:10:15.882358434+00:00,1 +2023-10-24 21:10:16.008068631+00:00,1 +2023-10-24 21:10:16.133323622+00:00,1 +2023-10-24 21:10:16.258497057+00:00,1 +2023-10-24 21:10:16.383934217+00:00,1 +2023-10-24 21:10:16.509037296+00:00,1 +2023-10-24 21:10:16.634435408+00:00,1 +2023-10-24 21:10:16.758852169+00:00,1 +2023-10-24 21:10:16.884580165+00:00,1 +2023-10-24 21:10:17.010168214+00:00,1 +2023-10-24 21:10:20.206383723+00:00,1 +2023-10-24 21:10:20.330788667+00:00,1 +2023-10-24 21:10:20.456809514+00:00,1 +2023-10-24 21:10:20.582626921+00:00,1 +2023-10-24 21:10:20.707379499+00:00,1 +2023-10-24 21:10:20.833147322+00:00,1 +2023-10-24 21:10:20.959665058+00:00,1 +2023-10-24 21:10:21.085835436+00:00,1 +2023-10-24 21:10:21.210431161+00:00,1 +2023-10-24 21:10:21.337390810+00:00,1 +2023-10-24 21:10:21.463895179+00:00,1 +2023-10-24 21:10:36.954272177+00:00,1 +2023-10-24 21:10:37.080950789+00:00,1 +2023-10-24 21:10:37.208297725+00:00,1 +2023-10-24 21:10:37.334485196+00:00,1 +2023-10-24 21:10:37.461000788+00:00,1 +2023-10-24 21:10:37.586559179+00:00,1 +2023-10-24 21:10:37.713505209+00:00,1 +2023-10-24 21:10:37.838642646+00:00,1 +2023-10-24 21:10:37.964683345+00:00,1 +2023-10-24 21:10:38.090903596+00:00,1 +2023-10-24 21:10:38.216473987+00:00,1 +2023-10-24 21:10:38.342837086+00:00,1 +2023-10-24 21:10:38.468470568+00:00,1 +2023-10-24 21:10:38.594438005+00:00,1 +2023-10-24 21:10:38.719830346+00:00,1 +2023-10-24 21:10:38.846912580+00:00,1 +2023-10-24 21:10:38.972474476+00:00,1 +2023-10-24 21:10:40.122546202+00:00,1 +2023-10-24 21:10:40.250280356+00:00,1 +2023-10-24 21:10:40.377037189+00:00,1 +2023-10-24 21:10:40.503555641+00:00,1 +2023-10-24 21:10:40.630173197+00:00,1 +2023-10-24 21:10:40.757485134+00:00,1 +2023-10-24 21:10:40.885627261+00:00,1 +2023-10-24 21:10:41.012330051+00:00,1 +2023-10-24 21:10:41.140041873+00:00,1 +2023-10-24 21:10:41.268177314+00:00,1 +2023-10-24 21:10:41.395960910+00:00,1 +2023-10-24 21:10:41.523266670+00:00,1 +2023-10-24 21:10:41.650890000+00:00,1 +2023-10-24 21:10:41.778040293+00:00,1 +2023-10-24 21:10:41.905062652+00:00,1 +2023-10-24 21:10:42.030268239+00:00,1 +2023-10-24 21:10:42.157170479+00:00,1 +2023-10-24 21:10:42.284785583+00:00,1 +2023-10-24 21:10:42.411347724+00:00,1 +2023-10-24 21:10:42.538916573+00:00,1 +2023-10-24 21:10:42.665519072+00:00,1 +2023-10-24 21:10:42.792258062+00:00,1 +2023-10-24 21:10:42.919355906+00:00,1 +2023-10-24 21:10:43.045868232+00:00,1 +2023-10-24 21:10:43.171954106+00:00,1 +2023-10-24 21:10:43.298057284+00:00,1 +2023-10-24 21:10:43.425055577+00:00,1 +2023-10-24 21:10:43.552377680+00:00,1 +2023-10-24 21:10:43.679023311+00:00,1 +2023-10-24 21:10:43.806226390+00:00,1 +2023-10-24 21:10:43.933215415+00:00,1 +2023-10-24 21:10:44.059390751+00:00,1 +2023-10-24 21:10:44.185788896+00:00,1 +2023-10-24 21:10:44.312267259+00:00,1 +2023-10-24 21:10:44.438024272+00:00,1 +2023-10-24 21:10:44.564213701+00:00,1 +2023-10-24 21:10:44.690555886+00:00,1 +2023-10-24 21:10:44.817612658+00:00,1 +2023-10-24 21:10:44.944994346+00:00,1 +2023-10-24 21:10:45.070042856+00:00,1 +2023-10-24 21:10:45.195424909+00:00,1 +2023-10-24 21:10:45.321865134+00:00,1 +2023-10-24 21:10:45.449181253+00:00,1 +2023-10-24 21:10:45.576397051+00:00,1 +2023-10-24 21:10:45.703631751+00:00,1 +2023-10-24 21:10:45.830654000+00:00,1 +2023-10-24 21:10:45.960041273+00:00,1 +2023-10-24 21:10:46.087681142+00:00,1 +2023-10-24 21:10:46.215876075+00:00,1 +2023-10-24 21:10:46.344998865+00:00,1 +2023-10-24 21:10:46.475788695+00:00,1 +2023-10-24 21:10:46.606243598+00:00,1 +2023-10-24 21:10:46.735737099+00:00,1 +2023-10-24 21:10:46.865363422+00:00,1 +2023-10-24 21:10:46.994947844+00:00,1 +2023-10-24 21:10:47.125205465+00:00,1 +2023-10-24 21:10:47.254158420+00:00,1 +2023-10-24 21:10:47.382938919+00:00,1 +2023-10-24 21:10:47.511596711+00:00,1 +2023-10-24 21:10:47.641701961+00:00,1 +2023-10-24 21:10:47.772628565+00:00,1 +2023-10-24 21:10:47.901698884+00:00,1 +2023-10-24 21:10:48.031423995+00:00,1 +2023-10-24 21:10:48.161482256+00:00,1 +2023-10-24 21:10:48.291400923+00:00,1 +2023-10-24 21:10:48.422266500+00:00,1 +2023-10-24 21:10:48.552448296+00:00,1 +2023-10-24 21:10:48.682647170+00:00,1 +2023-10-24 21:10:48.811114589+00:00,1 +2023-10-24 21:10:48.940700024+00:00,1 +2023-10-24 21:10:49.070408007+00:00,1 +2023-10-24 21:10:49.199981542+00:00,1 +2023-10-24 21:10:49.329334117+00:00,1 +2023-10-24 21:10:49.458427871+00:00,1 +2023-10-24 21:10:49.588663924+00:00,1 +2023-10-24 21:10:49.716849944+00:00,1 +2023-10-24 21:10:49.847411308+00:00,1 +2023-10-24 21:10:49.977005118+00:00,1 +2023-10-24 21:10:50.109090411+00:00,1 +2023-10-24 21:10:50.237457894+00:00,1 +2023-10-24 21:10:50.365243417+00:00,1 +2023-10-24 21:10:50.493575896+00:00,1 +2023-10-24 21:10:50.622696307+00:00,1 +2023-10-24 21:10:50.751946316+00:00,1 +2023-10-24 21:10:50.879713036+00:00,1 +2023-10-24 21:10:51.008074909+00:00,1 +2023-10-24 21:10:51.136770050+00:00,1 +2023-10-24 21:10:51.264382201+00:00,1 +2023-10-24 21:10:51.392731130+00:00,1 +2023-10-24 21:10:51.522416051+00:00,1 +2023-10-24 21:10:51.650869953+00:00,1 +2023-10-24 21:10:51.778793505+00:00,1 +2023-10-24 21:10:51.907108561+00:00,1 +2023-10-24 21:10:52.034875295+00:00,1 +2023-10-24 21:10:52.162997717+00:00,1 +2023-10-24 21:10:52.291080026+00:00,1 +2023-10-24 21:10:52.419740849+00:00,1 +2023-10-24 21:10:52.549120491+00:00,1 +2023-10-24 21:10:52.677817853+00:00,1 +2023-10-24 21:10:52.805906063+00:00,1 +2023-10-24 21:10:52.935759577+00:00,1 +2023-10-24 21:10:53.064136956+00:00,1 +2023-10-24 21:10:53.194026602+00:00,1 +2023-10-24 21:10:53.322433720+00:00,1 +2023-10-24 21:10:53.452090308+00:00,1 +2023-10-24 21:10:53.582469723+00:00,1 +2023-10-24 21:10:53.711134910+00:00,1 +2023-10-24 21:10:53.840439481+00:00,1 +2023-10-24 21:10:53.969586651+00:00,1 +2023-10-24 21:10:54.098261309+00:00,1 +2023-10-24 21:10:54.228554944+00:00,1 +2023-10-24 21:10:54.357612572+00:00,1 +2023-10-24 21:10:54.485897284+00:00,1 +2023-10-24 21:10:54.615483176+00:00,1 +2023-10-24 21:10:54.747021565+00:00,1 +2023-10-24 21:10:54.876267759+00:00,1 +2023-10-24 21:10:55.005111422+00:00,1 +2023-10-24 21:10:55.132662802+00:00,1 +2023-10-24 21:10:55.260060285+00:00,1 +2023-10-24 21:10:55.388475946+00:00,1 +2023-10-24 21:10:55.516887743+00:00,1 +2023-10-24 21:10:55.644877630+00:00,1 +2023-10-24 21:10:55.772965663+00:00,1 +2023-10-24 21:10:55.901834836+00:00,1 +2023-10-24 21:10:56.029409942+00:00,1 +2023-10-24 21:10:56.158497089+00:00,1 +2023-10-24 21:10:56.287208661+00:00,1 +2023-10-24 21:10:56.416173415+00:00,1 +2023-10-24 21:10:56.546087073+00:00,1 +2023-10-24 21:10:56.675087013+00:00,1 +2023-10-24 21:10:56.804255503+00:00,1 +2023-10-24 21:10:56.931261324+00:00,1 +2023-10-24 21:10:57.059494005+00:00,1 +2023-10-24 21:10:57.190128163+00:00,1 +2023-10-24 21:10:57.320496617+00:00,1 +2023-10-24 21:10:57.448954507+00:00,1 +2023-10-24 21:10:57.577129938+00:00,1 +2023-10-24 21:10:57.705587472+00:00,1 +2023-10-24 21:10:57.834402722+00:00,1 +2023-10-24 21:10:57.962863970+00:00,1 +2023-10-24 21:10:58.090734591+00:00,1 +2023-10-24 21:10:58.218718390+00:00,1 +2023-10-24 21:10:58.348177804+00:00,1 +2023-10-24 21:10:58.477559515+00:00,1 +2023-10-24 21:10:58.605731911+00:00,1 +2023-10-24 21:10:58.734059218+00:00,1 +2023-10-24 21:10:58.861770718+00:00,1 +2023-10-24 21:10:58.990431398+00:00,1 +2023-10-24 21:10:59.119494346+00:00,1 +2023-10-24 21:10:59.248510272+00:00,1 +2023-10-24 21:10:59.378428054+00:00,1 +2023-10-24 21:10:59.508065018+00:00,1 +2023-10-24 21:10:59.635323468+00:00,1 +2023-10-24 21:10:59.763494371+00:00,1 +2023-10-24 21:10:59.892769628+00:00,1 +2023-10-24 21:11:00.021970128+00:00,1 +2023-10-24 21:11:00.149616462+00:00,1 +2023-10-24 21:11:00.276402056+00:00,1 +2023-10-24 21:11:00.405291293+00:00,1 +2023-10-24 21:11:00.533162477+00:00,1 +2023-10-24 21:11:00.660898394+00:00,1 +2023-10-24 21:11:00.789236266+00:00,1 +2023-10-24 21:11:00.917771220+00:00,1 +2023-10-24 21:11:01.045974951+00:00,1 +2023-10-24 21:11:01.173478817+00:00,1 +2023-10-24 21:11:01.301835775+00:00,1 +2023-10-24 21:11:01.430256947+00:00,1 +2023-10-24 21:11:01.557447017+00:00,1 +2023-10-24 21:11:01.685558331+00:00,1 +2023-10-24 21:11:01.814696781+00:00,1 +2023-10-24 21:11:01.943352221+00:00,1 +2023-10-24 21:11:02.071886726+00:00,1 +2023-10-24 21:11:02.201003304+00:00,1 +2023-10-24 21:11:02.329793905+00:00,1 +2023-10-24 21:11:02.457602524+00:00,1 +2023-10-24 21:11:02.584865538+00:00,1 +2023-10-24 21:11:02.713646290+00:00,1 +2023-10-24 21:11:02.842697281+00:00,1 +2023-10-24 21:11:02.971698047+00:00,1 +2023-10-24 21:11:03.099714818+00:00,1 +2023-10-24 21:11:03.227310933+00:00,1 +2023-10-24 21:11:03.354405447+00:00,1 +2023-10-24 21:11:03.482590262+00:00,1 +2023-10-24 21:11:03.612015203+00:00,1 +2023-10-24 21:11:03.740614133+00:00,1 +2023-10-24 21:11:03.868490414+00:00,1 +2023-10-24 21:11:03.996037508+00:00,1 +2023-10-24 21:11:04.125382758+00:00,1 +2023-10-24 21:11:04.253639636+00:00,1 +2023-10-24 21:11:04.382456248+00:00,1 +2023-10-24 21:11:04.510889316+00:00,1 +2023-10-24 21:11:04.639490398+00:00,1 +2023-10-24 21:11:04.768260814+00:00,1 +2023-10-24 21:11:04.896820041+00:00,1 +2023-10-24 21:11:05.025855081+00:00,1 +2023-10-24 21:11:05.153901262+00:00,1 +2023-10-24 21:11:05.282062891+00:00,1 +2023-10-24 21:11:05.411513330+00:00,1 +2023-10-24 21:11:05.540638588+00:00,1 +2023-10-24 21:11:05.669336759+00:00,1 +2023-10-24 21:11:05.797882189+00:00,1 +2023-10-24 21:11:05.926197754+00:00,1 +2023-10-24 21:11:06.054054719+00:00,1 +2023-10-24 21:11:06.182613923+00:00,1 +2023-10-24 21:11:06.310967920+00:00,1 +2023-10-24 21:11:06.439673998+00:00,1 +2023-10-24 21:11:06.569708624+00:00,1 +2023-10-24 21:11:06.697956147+00:00,1 +2023-10-24 21:11:06.827483216+00:00,1 +2023-10-24 21:11:06.957308739+00:00,1 +2023-10-24 21:11:07.087090439+00:00,1 +2023-10-24 21:11:07.215746368+00:00,1 +2023-10-24 21:11:07.344001901+00:00,1 +2023-10-24 21:11:07.471492069+00:00,1 +2023-10-24 21:11:07.599380921+00:00,1 +2023-10-24 21:11:07.726477583+00:00,1 +2023-10-24 21:11:07.854520957+00:00,1 +2023-10-24 21:11:07.982551230+00:00,1 +2023-10-24 21:11:08.110921967+00:00,1 +2023-10-24 21:11:08.239131463+00:00,1 +2023-10-24 21:11:08.368311245+00:00,1 +2023-10-24 21:11:08.496219916+00:00,1 +2023-10-24 21:11:08.623734076+00:00,1 +2023-10-24 21:11:08.751645241+00:00,1 +2023-10-24 21:11:08.880427371+00:00,1 +2023-10-24 21:11:09.008076798+00:00,1 +2023-10-24 21:11:09.137552506+00:00,1 +2023-10-24 21:11:09.265831245+00:00,1 +2023-10-24 21:11:09.393802014+00:00,1 +2023-10-24 21:11:09.524707274+00:00,1 +2023-10-24 21:11:09.652359802+00:00,1 +2023-10-24 21:11:09.780218932+00:00,1 +2023-10-24 21:11:09.908423476+00:00,1 +2023-10-24 21:11:10.036090516+00:00,1 +2023-10-24 21:11:10.164019076+00:00,1 +2023-10-24 21:11:10.292438964+00:00,1 +2023-10-24 21:11:10.421358899+00:00,1 +2023-10-24 21:11:10.551504640+00:00,1 +2023-10-24 21:11:10.679856564+00:00,1 +2023-10-24 21:11:10.807752285+00:00,1 +2023-10-24 21:11:10.938542038+00:00,1 +2023-10-24 21:11:11.067976653+00:00,1 +2023-10-24 21:11:11.195677296+00:00,1 +2023-10-24 21:11:11.324717432+00:00,1 +2023-10-24 21:11:11.452629769+00:00,1 +2023-10-24 21:11:11.580749143+00:00,1 +2023-10-24 21:11:11.708334893+00:00,1 +2023-10-24 21:11:11.836266618+00:00,1 +2023-10-24 21:11:11.965249195+00:00,1 +2023-10-24 21:11:12.093720298+00:00,1 +2023-10-24 21:11:12.221696217+00:00,1 +2023-10-24 21:11:12.350594730+00:00,1 +2023-10-24 21:11:12.478834683+00:00,1 +2023-10-24 21:11:12.607573469+00:00,1 +2023-10-24 21:11:12.735163499+00:00,1 +2023-10-24 21:11:12.863334391+00:00,1 +2023-10-24 21:11:12.992261983+00:00,1 +2023-10-24 21:11:13.120302485+00:00,1 +2023-10-24 21:11:13.252286904+00:00,1 +2023-10-24 21:11:13.380354620+00:00,1 +2023-10-24 21:11:13.508176921+00:00,1 +2023-10-24 21:11:13.636342051+00:00,1 +2023-10-24 21:11:13.765741710+00:00,1 +2023-10-24 21:11:13.894121548+00:00,1 +2023-10-24 21:11:14.022041149+00:00,1 +2023-10-24 21:11:14.151328801+00:00,1 +2023-10-24 21:11:14.278930404+00:00,1 +2023-10-24 21:11:14.406663207+00:00,1 +2023-10-24 21:11:14.535872953+00:00,1 +2023-10-24 21:11:14.669729564+00:00,1 +2023-10-24 21:11:14.799482063+00:00,1 +2023-10-24 21:11:14.928418270+00:00,1 +2023-10-24 21:11:15.057070033+00:00,1 +2023-10-24 21:11:15.185498495+00:00,1 +2023-10-24 21:11:15.312756038+00:00,1 +2023-10-24 21:11:15.440769735+00:00,1 +2023-10-24 21:11:15.568176607+00:00,1 +2023-10-24 21:11:15.695377152+00:00,1 +2023-10-24 21:11:15.822729141+00:00,1 +2023-10-24 21:11:15.949473230+00:00,1 +2023-10-24 21:11:16.078427619+00:00,1 +2023-10-24 21:11:16.206978781+00:00,1 +2023-10-24 21:11:16.336547411+00:00,1 +2023-10-24 21:11:16.464317819+00:00,1 +2023-10-24 21:11:16.592615457+00:00,1 +2023-10-24 21:11:16.722436540+00:00,1 +2023-10-24 21:11:16.851379180+00:00,1 +2023-10-24 21:11:16.980865244+00:00,1 +2023-10-24 21:11:17.108845326+00:00,1 +2023-10-24 21:11:17.237543348+00:00,1 +2023-10-24 21:11:17.366343542+00:00,1 +2023-10-24 21:11:17.493973188+00:00,1 +2023-10-24 21:11:17.622611064+00:00,1 +2023-10-24 21:11:17.750065717+00:00,1 +2023-10-24 21:11:17.879767919+00:00,1 +2023-10-24 21:11:18.008097943+00:00,1 +2023-10-24 21:11:18.136143905+00:00,1 +2023-10-24 21:11:18.265004261+00:00,1 +2023-10-24 21:11:18.392653841+00:00,1 +2023-10-24 21:11:18.520208170+00:00,1 +2023-10-24 21:11:18.648242122+00:00,1 +2023-10-24 21:11:18.777758937+00:00,1 +2023-10-24 21:11:18.906064311+00:00,1 +2023-10-24 21:11:19.034333110+00:00,1 +2023-10-24 21:11:19.163334682+00:00,1 +2023-10-24 21:11:19.293619670+00:00,1 +2023-10-24 21:11:19.421828051+00:00,1 +2023-10-24 21:11:19.550277555+00:00,1 +2023-10-24 21:11:19.679328286+00:00,1 +2023-10-24 21:11:19.808880007+00:00,1 +2023-10-24 21:11:19.937970036+00:00,1 +2023-10-24 21:11:20.065601516+00:00,1 +2023-10-24 21:11:20.193906673+00:00,1 +2023-10-24 21:11:20.325452785+00:00,1 +2023-10-24 21:11:20.454265826+00:00,1 +2023-10-24 21:11:20.583406362+00:00,1 +2023-10-24 21:11:20.713315849+00:00,1 +2023-10-24 21:11:20.841334167+00:00,1 +2023-10-24 21:11:20.971064458+00:00,1 +2023-10-24 21:11:21.101892401+00:00,1 +2023-10-24 21:11:21.230058256+00:00,1 +2023-10-24 21:11:21.357931505+00:00,1 +2023-10-24 21:11:21.485822829+00:00,1 +2023-10-24 21:11:21.615268797+00:00,1 +2023-10-24 21:11:21.743182647+00:00,1 +2023-10-24 21:11:21.870475966+00:00,1 +2023-10-24 21:11:21.998394628+00:00,1 +2023-10-24 21:11:22.126623989+00:00,1 +2023-10-24 21:11:22.254536913+00:00,1 +2023-10-24 21:11:22.381394801+00:00,1 +2023-10-24 21:11:22.509739457+00:00,1 +2023-10-24 21:11:22.638781865+00:00,1 +2023-10-24 21:11:22.767828607+00:00,1 +2023-10-24 21:11:22.896366852+00:00,1 +2023-10-24 21:11:23.025121518+00:00,1 +2023-10-24 21:11:23.153700170+00:00,1 +2023-10-24 21:11:23.281455271+00:00,1 +2023-10-24 21:11:23.409941728+00:00,1 +2023-10-24 21:11:23.540124886+00:00,1 +2023-10-24 21:11:23.669013023+00:00,1 +2023-10-24 21:11:23.797753176+00:00,1 +2023-10-24 21:11:23.925484576+00:00,1 +2023-10-24 21:11:24.053334040+00:00,1 +2023-10-24 21:11:24.181454110+00:00,1 +2023-10-24 21:11:24.309396811+00:00,1 +2023-10-24 21:11:24.440542673+00:00,1 +2023-10-24 21:11:24.569147119+00:00,1 +2023-10-24 21:11:24.696563071+00:00,1 +2023-10-24 21:11:24.825288164+00:00,1 +2023-10-24 21:11:24.952740512+00:00,1 +2023-10-24 21:11:25.080283854+00:00,1 +2023-10-24 21:11:25.208559631+00:00,1 +2023-10-24 21:11:25.337677432+00:00,1 +2023-10-24 21:11:25.465701138+00:00,1 +2023-10-24 21:11:25.593414855+00:00,1 +2023-10-24 21:11:25.720959902+00:00,1 +2023-10-24 21:11:25.850588622+00:00,1 +2023-10-24 21:11:25.978833222+00:00,1 +2023-10-24 21:11:26.108464093+00:00,1 +2023-10-24 21:11:26.238336797+00:00,1 +2023-10-24 21:11:26.367484068+00:00,1 +2023-10-24 21:11:26.497311150+00:00,1 +2023-10-24 21:11:26.626489548+00:00,1 +2023-10-24 21:11:26.755906973+00:00,1 +2023-10-24 21:11:26.882868531+00:00,1 +2023-10-24 21:11:27.011588094+00:00,1 +2023-10-24 21:11:27.140432112+00:00,1 +2023-10-24 21:11:27.269261307+00:00,1 +2023-10-24 21:11:27.397635883+00:00,1 +2023-10-24 21:11:27.527914376+00:00,1 +2023-10-24 21:11:27.656564410+00:00,1 +2023-10-24 21:11:27.785485635+00:00,1 +2023-10-24 21:11:27.916481022+00:00,1 +2023-10-24 21:11:28.045435076+00:00,1 +2023-10-24 21:11:28.174586733+00:00,1 +2023-10-24 21:11:28.302749606+00:00,1 +2023-10-24 21:11:28.431907757+00:00,1 +2023-10-24 21:11:28.560982792+00:00,1 +2023-10-24 21:11:28.690573501+00:00,1 +2023-10-24 21:11:28.819142689+00:00,1 +2023-10-24 21:11:28.947850303+00:00,1 +2023-10-24 21:11:29.076354546+00:00,1 +2023-10-24 21:11:29.205609409+00:00,1 +2023-10-24 21:11:29.335467382+00:00,1 +2023-10-24 21:11:29.463925127+00:00,1 +2023-10-24 21:11:29.592489628+00:00,1 +2023-10-24 21:11:29.721347546+00:00,1 +2023-10-24 21:11:29.849192198+00:00,1 +2023-10-24 21:11:29.981773000+00:00,1 +2023-10-24 21:11:30.109458684+00:00,1 +2023-10-24 21:11:30.237189866+00:00,1 +2023-10-24 21:11:30.364130978+00:00,1 +2023-10-24 21:11:30.491285036+00:00,1 +2023-10-24 21:11:30.618790598+00:00,1 +2023-10-24 21:11:30.746612068+00:00,1 +2023-10-24 21:11:30.874792303+00:00,1 +2023-10-24 21:11:31.004543273+00:00,1 +2023-10-24 21:11:31.131826324+00:00,1 +2023-10-24 21:11:31.259930505+00:00,1 +2023-10-24 21:11:31.388254157+00:00,1 +2023-10-24 21:11:31.516068864+00:00,1 +2023-10-24 21:11:31.644027947+00:00,1 +2023-10-24 21:11:31.772473642+00:00,1 +2023-10-24 21:11:31.901396072+00:00,1 +2023-10-24 21:11:32.029177915+00:00,1 +2023-10-24 21:11:32.158606305+00:00,1 +2023-10-24 21:11:32.288195417+00:00,1 +2023-10-24 21:11:32.417161237+00:00,1 +2023-10-24 21:11:32.547110687+00:00,1 +2023-10-24 21:11:32.674110390+00:00,1 +2023-10-24 21:11:32.802339953+00:00,1 +2023-10-24 21:11:32.930942065+00:00,1 +2023-10-24 21:11:33.059790730+00:00,1 +2023-10-24 21:11:33.189319466+00:00,1 +2023-10-24 21:11:33.318114039+00:00,1 +2023-10-24 21:11:33.446391830+00:00,1 +2023-10-24 21:11:33.575126979+00:00,1 +2023-10-24 21:11:33.702879029+00:00,1 +2023-10-24 21:11:33.832164254+00:00,1 +2023-10-24 21:11:33.961613974+00:00,1 +2023-10-24 21:11:34.089959833+00:00,1 +2023-10-24 21:11:34.218411585+00:00,1 +2023-10-24 21:11:34.355410974+00:00,1 +2023-10-24 21:11:34.484071182+00:00,1 +2023-10-24 21:11:34.612172129+00:00,1 +2023-10-24 21:11:34.741411131+00:00,1 +2023-10-24 21:11:34.869720478+00:00,1 +2023-10-24 21:11:34.997445489+00:00,1 +2023-10-24 21:11:35.124244213+00:00,1 +2023-10-24 21:11:35.251163323+00:00,1 +2023-10-24 21:11:35.380383823+00:00,1 +2023-10-24 21:11:35.508526768+00:00,1 +2023-10-24 21:11:35.636810527+00:00,1 +2023-10-24 21:11:35.764218966+00:00,1 +2023-10-24 21:11:35.892644592+00:00,1 +2023-10-24 21:11:36.020144997+00:00,1 +2023-10-24 21:11:36.148154191+00:00,1 +2023-10-24 21:11:36.275861043+00:00,1 +2023-10-24 21:11:36.403323235+00:00,1 +2023-10-24 21:11:36.533105060+00:00,1 +2023-10-24 21:11:36.662122582+00:00,1 +2023-10-24 21:11:36.791439379+00:00,1 +2023-10-24 21:11:36.920575372+00:00,1 +2023-10-24 21:11:37.048870073+00:00,1 +2023-10-24 21:11:37.177392478+00:00,1 +2023-10-24 21:11:37.306537238+00:00,1 +2023-10-24 21:11:37.434969321+00:00,1 +2023-10-24 21:11:37.565422724+00:00,1 +2023-10-24 21:11:37.694227256+00:00,1 +2023-10-24 21:11:37.822861128+00:00,1 +2023-10-24 21:11:37.951783154+00:00,1 +2023-10-24 21:11:38.080609326+00:00,1 +2023-10-24 21:11:38.211673110+00:00,1 +2023-10-24 21:11:38.341300691+00:00,1 +2023-10-24 21:11:38.470184597+00:00,1 +2023-10-24 21:11:38.600206514+00:00,1 +2023-10-24 21:11:38.729093528+00:00,1 +2023-10-24 21:11:38.858144891+00:00,1 +2023-10-24 21:11:38.986688117+00:00,1 +2023-10-24 21:11:39.116872373+00:00,1 +2023-10-24 21:11:39.245703765+00:00,1 +2023-10-24 21:11:39.375632091+00:00,1 +2023-10-24 21:11:39.505044954+00:00,1 +2023-10-24 21:11:39.634016770+00:00,1 +2023-10-24 21:11:39.763060045+00:00,1 +2023-10-24 21:11:39.893125046+00:00,1 +2023-10-24 21:11:40.022923205+00:00,1 +2023-10-24 21:11:40.153367271+00:00,1 +2023-10-24 21:11:40.283084660+00:00,1 +2023-10-24 21:11:40.413479459+00:00,1 +2023-10-24 21:11:40.544838044+00:00,1 +2023-10-24 21:11:40.675163633+00:00,1 +2023-10-24 21:11:40.804534171+00:00,1 +2023-10-24 21:11:40.934814958+00:00,1 +2023-10-24 21:11:41.064193679+00:00,1 +2023-10-24 21:11:41.192707307+00:00,1 +2023-10-24 21:11:41.322402993+00:00,1 +2023-10-24 21:11:41.452747908+00:00,1 +2023-10-24 21:11:41.581335365+00:00,1 +2023-10-24 21:11:41.711165705+00:00,1 +2023-10-24 21:11:41.840356626+00:00,1 +2023-10-24 21:11:41.969487342+00:00,1 +2023-10-24 21:11:42.098040606+00:00,1 +2023-10-24 21:11:42.226706756+00:00,1 +2023-10-24 21:11:42.355353530+00:00,1 +2023-10-24 21:11:42.484145389+00:00,1 +2023-10-24 21:11:42.611767379+00:00,1 +2023-10-24 21:11:42.741460806+00:00,1 +2023-10-24 21:11:42.872222756+00:00,1 +2023-10-24 21:11:43.001312095+00:00,1 +2023-10-24 21:11:43.130410517+00:00,1 +2023-10-24 21:11:43.259049509+00:00,1 +2023-10-24 21:11:43.388248736+00:00,1 +2023-10-24 21:11:43.516745026+00:00,1 +2023-10-24 21:11:43.647893872+00:00,1 +2023-10-24 21:11:43.777098845+00:00,1 +2023-10-24 21:11:43.905304251+00:00,1 +2023-10-24 21:11:44.034377587+00:00,1 +2023-10-24 21:11:44.163352071+00:00,1 +2023-10-24 21:11:44.293724094+00:00,1 +2023-10-24 21:11:44.424170615+00:00,1 +2023-10-24 21:11:44.553551396+00:00,1 +2023-10-24 21:11:44.683299572+00:00,1 +2023-10-24 21:11:44.814069248+00:00,1 +2023-10-24 21:11:44.944312833+00:00,1 +2023-10-24 21:11:45.072700205+00:00,1 +2023-10-24 21:11:45.201066944+00:00,1 +2023-10-24 21:11:45.329283731+00:00,1 +2023-10-24 21:11:45.459386196+00:00,1 +2023-10-24 21:11:45.587810156+00:00,1 +2023-10-24 21:11:45.716932897+00:00,1 +2023-10-24 21:11:45.845129086+00:00,1 +2023-10-24 21:11:45.975257097+00:00,1 +2023-10-24 21:11:46.106485854+00:00,1 +2023-10-24 21:11:46.236104493+00:00,1 +2023-10-24 21:11:46.364412381+00:00,1 +2023-10-24 21:11:46.494637257+00:00,1 +2023-10-24 21:11:46.625097739+00:00,1 +2023-10-24 21:11:46.753733293+00:00,1 +2023-10-24 21:11:46.882022661+00:00,1 +2023-10-24 21:11:47.009970435+00:00,1 +2023-10-24 21:11:47.139698276+00:00,1 +2023-10-24 21:11:47.269385240+00:00,1 +2023-10-24 21:11:47.400134270+00:00,1 +2023-10-24 21:11:47.528501463+00:00,1 +2023-10-24 21:11:47.657645542+00:00,1 +2023-10-24 21:11:47.786051579+00:00,1 +2023-10-24 21:11:47.914691907+00:00,1 +2023-10-24 21:11:48.043656136+00:00,1 +2023-10-24 21:11:48.174448788+00:00,1 +2023-10-24 21:11:48.303550822+00:00,1 +2023-10-24 21:11:48.431559760+00:00,1 +2023-10-24 21:11:48.560150278+00:00,1 +2023-10-24 21:11:48.688816650+00:00,1 +2023-10-24 21:11:48.817196740+00:00,1 +2023-10-24 21:11:48.945042528+00:00,1 +2023-10-24 21:11:49.072936152+00:00,1 +2023-10-24 21:11:49.200480141+00:00,1 +2023-10-24 21:11:49.327848650+00:00,1 +2023-10-24 21:11:49.456433440+00:00,1 +2023-10-24 21:11:49.584241870+00:00,1 +2023-10-24 21:11:49.713390336+00:00,1 +2023-10-24 21:11:49.840811830+00:00,1 +2023-10-24 21:11:49.969655824+00:00,1 +2023-10-24 21:11:50.097577028+00:00,1 +2023-10-24 21:11:50.225091203+00:00,1 +2023-10-24 21:11:50.353375050+00:00,1 +2023-10-24 21:11:50.482651819+00:00,1 +2023-10-24 21:11:50.611979222+00:00,1 +2023-10-24 21:11:50.741352637+00:00,1 +2023-10-24 21:11:50.870019045+00:00,1 +2023-10-24 21:11:50.999493306+00:00,1 +2023-10-24 21:11:51.127839623+00:00,1 +2023-10-24 21:11:51.255866747+00:00,1 +2023-10-24 21:11:51.382795147+00:00,1 +2023-10-24 21:11:51.512686183+00:00,1 +2023-10-24 21:11:51.642144233+00:00,1 +2023-10-24 21:11:51.771056454+00:00,1 +2023-10-24 21:11:51.899397441+00:00,1 +2023-10-24 21:11:52.028740291+00:00,1 +2023-10-24 21:11:52.157123415+00:00,1 +2023-10-24 21:11:52.284062999+00:00,1 +2023-10-24 21:11:52.412409485+00:00,1 +2023-10-24 21:11:52.541959926+00:00,1 +2023-10-24 21:11:52.670811530+00:00,1 +2023-10-24 21:11:52.799253139+00:00,1 +2023-10-24 21:11:52.927747014+00:00,1 +2023-10-24 21:11:53.056034625+00:00,1 +2023-10-24 21:11:53.183711734+00:00,1 +2023-10-24 21:11:53.311816950+00:00,1 +2023-10-24 21:11:53.442357056+00:00,1 +2023-10-24 21:11:53.571416908+00:00,1 +2023-10-24 21:11:53.700203874+00:00,1 +2023-10-24 21:11:53.829699484+00:00,1 +2023-10-24 21:11:53.958602291+00:00,1 +2023-10-24 21:11:54.087294602+00:00,1 +2023-10-24 21:11:54.215659920+00:00,1 +2023-10-24 21:11:54.344375166+00:00,1 +2023-10-24 21:11:54.471841418+00:00,1 +2023-10-24 21:11:54.599846503+00:00,1 +2023-10-24 21:11:54.728483451+00:00,1 +2023-10-24 21:11:54.857920029+00:00,1 +2023-10-24 21:11:54.985920050+00:00,1 +2023-10-24 21:11:55.114273322+00:00,1 +2023-10-24 21:11:55.243090917+00:00,1 +2023-10-24 21:11:55.371188313+00:00,1 +2023-10-24 21:11:55.498835886+00:00,1 +2023-10-24 21:11:55.626917501+00:00,1 +2023-10-24 21:11:55.756244598+00:00,1 +2023-10-24 21:11:55.883739973+00:00,1 +2023-10-24 21:11:56.013818885+00:00,1 +2023-10-24 21:11:56.141382087+00:00,1 +2023-10-24 21:11:56.269589892+00:00,1 +2023-10-24 21:11:56.398605708+00:00,1 +2023-10-24 21:11:56.526118880+00:00,1 +2023-10-24 21:11:56.655413170+00:00,1 +2023-10-24 21:11:56.784602094+00:00,1 +2023-10-24 21:11:56.915119813+00:00,1 +2023-10-24 21:11:57.042735550+00:00,1 +2023-10-24 21:11:57.171063383+00:00,1 +2023-10-24 21:11:57.298955369+00:00,1 +2023-10-24 21:11:57.427180662+00:00,1 +2023-10-24 21:11:57.555441658+00:00,1 +2023-10-24 21:11:57.683795628+00:00,1 +2023-10-24 21:11:57.812542679+00:00,1 +2023-10-24 21:11:57.941742492+00:00,1 +2023-10-24 21:11:58.070537959+00:00,1 +2023-10-24 21:11:58.198663703+00:00,1 +2023-10-24 21:11:58.327587991+00:00,1 +2023-10-24 21:11:58.455668483+00:00,1 +2023-10-24 21:11:58.584056941+00:00,1 +2023-10-24 21:11:58.711591526+00:00,1 +2023-10-24 21:11:58.840156176+00:00,1 +2023-10-24 21:11:58.970175921+00:00,1 +2023-10-24 21:11:59.099885067+00:00,1 +2023-10-24 21:11:59.229579365+00:00,1 +2023-10-24 21:11:59.357201690+00:00,1 +2023-10-24 21:11:59.485914419+00:00,1 +2023-10-24 21:11:59.614872260+00:00,1 +2023-10-24 21:11:59.743958859+00:00,1 +2023-10-24 21:11:59.872658251+00:00,1 +2023-10-24 21:12:00.000275366+00:00,1 +2023-10-24 21:12:00.128045942+00:00,1 +2023-10-24 21:12:00.256344775+00:00,1 +2023-10-24 21:12:00.384288289+00:00,1 +2023-10-24 21:12:00.512816758+00:00,1 +2023-10-24 21:12:00.641934794+00:00,1 +2023-10-24 21:12:00.771453437+00:00,1 +2023-10-24 21:12:00.901018098+00:00,1 +2023-10-24 21:12:01.029859781+00:00,1 +2023-10-24 21:12:01.160026123+00:00,1 +2023-10-24 21:12:01.289924722+00:00,1 +2023-10-24 21:12:01.417626932+00:00,1 +2023-10-24 21:12:01.546967094+00:00,1 +2023-10-24 21:12:01.674645854+00:00,1 +2023-10-24 21:12:01.803241886+00:00,1 +2023-10-24 21:12:01.931483124+00:00,1 +2023-10-24 21:12:02.060120779+00:00,1 +2023-10-24 21:12:02.187864554+00:00,1 +2023-10-24 21:12:02.315737406+00:00,1 +2023-10-24 21:12:02.444906579+00:00,1 +2023-10-24 21:12:02.573505627+00:00,1 +2023-10-24 21:12:02.705522419+00:00,1 +2023-10-24 21:12:02.833317910+00:00,1 +2023-10-24 21:12:02.961219419+00:00,1 +2023-10-24 21:12:03.089301890+00:00,1 +2023-10-24 21:12:03.219247778+00:00,1 +2023-10-24 21:12:03.348181655+00:00,1 +2023-10-24 21:12:03.476683286+00:00,1 +2023-10-24 21:12:03.604600024+00:00,1 +2023-10-24 21:12:03.733401488+00:00,1 +2023-10-24 21:12:03.861814217+00:00,1 +2023-10-24 21:12:03.990128329+00:00,1 +2023-10-24 21:12:04.119245162+00:00,1 +2023-10-24 21:12:04.248428481+00:00,1 +2023-10-24 21:12:04.377762055+00:00,1 +2023-10-24 21:12:04.506205761+00:00,1 +2023-10-24 21:12:04.633535809+00:00,1 +2023-10-24 21:12:04.763634344+00:00,1 +2023-10-24 21:12:04.892466864+00:00,1 +2023-10-24 21:12:05.019739082+00:00,1 +2023-10-24 21:12:05.147800513+00:00,1 +2023-10-24 21:12:05.274930384+00:00,1 +2023-10-24 21:12:05.404613271+00:00,1 +2023-10-24 21:12:05.534722803+00:00,1 +2023-10-24 21:12:05.664638019+00:00,1 +2023-10-24 21:12:05.793513615+00:00,1 +2023-10-24 21:12:05.921281354+00:00,1 +2023-10-24 21:12:06.050607570+00:00,1 +2023-10-24 21:12:06.179046845+00:00,1 +2023-10-24 21:12:06.308307129+00:00,1 +2023-10-24 21:12:06.437298039+00:00,1 +2023-10-24 21:12:06.565180221+00:00,1 +2023-10-24 21:12:06.691950863+00:00,1 +2023-10-24 21:12:06.819929654+00:00,1 +2023-10-24 21:12:06.948427255+00:00,1 +2023-10-24 21:12:07.077550316+00:00,1 +2023-10-24 21:12:07.205983652+00:00,1 +2023-10-24 21:12:07.334278982+00:00,1 +2023-10-24 21:12:07.462837045+00:00,1 +2023-10-24 21:12:07.592184740+00:00,1 +2023-10-24 21:12:07.720272568+00:00,1 +2023-10-24 21:12:07.850101583+00:00,1 +2023-10-24 21:12:07.978507417+00:00,1 +2023-10-24 21:12:08.106971098+00:00,1 +2023-10-24 21:12:08.235311932+00:00,1 +2023-10-24 21:12:08.363691323+00:00,1 +2023-10-24 21:12:08.492573388+00:00,1 +2023-10-24 21:12:08.620136230+00:00,1 +2023-10-24 21:12:08.747769677+00:00,1 +2023-10-24 21:12:08.875648530+00:00,1 +2023-10-24 21:12:09.004350483+00:00,1 +2023-10-24 21:12:09.134479862+00:00,1 +2023-10-24 21:12:09.265005974+00:00,1 +2023-10-24 21:12:09.392261141+00:00,1 +2023-10-24 21:12:09.520555919+00:00,1 +2023-10-24 21:12:09.649119643+00:00,1 +2023-10-24 21:12:09.777404390+00:00,1 +2023-10-24 21:12:09.905728698+00:00,1 +2023-10-24 21:12:10.033343015+00:00,1 +2023-10-24 21:12:10.160618506+00:00,1 +2023-10-24 21:12:10.288228883+00:00,1 +2023-10-24 21:12:10.417016052+00:00,1 +2023-10-24 21:12:10.545606150+00:00,1 +2023-10-24 21:12:10.674706821+00:00,1 +2023-10-24 21:12:10.802392173+00:00,1 +2023-10-24 21:12:10.929701258+00:00,1 +2023-10-24 21:12:11.057221466+00:00,1 +2023-10-24 21:12:11.184630061+00:00,1 +2023-10-24 21:12:11.312095041+00:00,1 +2023-10-24 21:12:11.440093123+00:00,1 +2023-10-24 21:12:11.567949212+00:00,1 +2023-10-24 21:12:11.696145903+00:00,1 +2023-10-24 21:12:11.824636211+00:00,1 +2023-10-24 21:12:11.954612143+00:00,1 +2023-10-24 21:12:12.082936564+00:00,1 +2023-10-24 21:12:12.210494883+00:00,1 +2023-10-24 21:12:12.337598085+00:00,1 +2023-10-24 21:12:12.464845582+00:00,1 +2023-10-24 21:12:12.593812673+00:00,1 +2023-10-24 21:12:12.721063234+00:00,1 +2023-10-24 21:12:12.850114736+00:00,1 +2023-10-24 21:12:12.978438787+00:00,1 +2023-10-24 21:12:13.108037845+00:00,1 +2023-10-24 21:12:13.237486266+00:00,1 +2023-10-24 21:12:13.366050274+00:00,1 +2023-10-24 21:12:13.494023897+00:00,1 +2023-10-24 21:12:13.621962065+00:00,1 +2023-10-24 21:12:13.749989442+00:00,1 +2023-10-24 21:12:13.878096349+00:00,1 +2023-10-24 21:12:14.007488621+00:00,1 +2023-10-24 21:12:14.136666953+00:00,1 +2023-10-24 21:12:14.266866353+00:00,1 +2023-10-24 21:12:14.394964784+00:00,1 +2023-10-24 21:12:14.523045262+00:00,1 +2023-10-24 21:12:14.653933992+00:00,1 +2023-10-24 21:12:14.783032294+00:00,1 +2023-10-24 21:12:14.911565812+00:00,1 +2023-10-24 21:12:15.040313946+00:00,1 +2023-10-24 21:12:15.170575339+00:00,1 +2023-10-24 21:12:15.297559815+00:00,1 +2023-10-24 21:12:15.425168552+00:00,1 +2023-10-24 21:12:15.553673891+00:00,1 +2023-10-24 21:12:15.682129580+00:00,1 +2023-10-24 21:12:15.814871320+00:00,1 +2023-10-24 21:12:15.942034052+00:00,1 +2023-10-24 21:12:16.071850366+00:00,1 +2023-10-24 21:12:16.199945759+00:00,1 +2023-10-24 21:12:16.327835780+00:00,1 +2023-10-24 21:12:16.456853609+00:00,1 +2023-10-24 21:12:16.584684010+00:00,1 +2023-10-24 21:12:16.712366488+00:00,1 +2023-10-24 21:12:16.839586664+00:00,1 +2023-10-24 21:12:16.966623617+00:00,1 +2023-10-24 21:12:17.094037215+00:00,1 +2023-10-24 21:12:17.222915625+00:00,1 +2023-10-24 21:12:17.351259182+00:00,1 +2023-10-24 21:12:17.478418223+00:00,1 +2023-10-24 21:12:17.607056439+00:00,1 +2023-10-24 21:12:17.736198889+00:00,1 +2023-10-24 21:12:17.863861691+00:00,1 +2023-10-24 21:12:17.992886871+00:00,1 +2023-10-24 21:12:18.121486490+00:00,1 +2023-10-24 21:12:18.249717318+00:00,1 +2023-10-24 21:12:18.379546411+00:00,1 +2023-10-24 21:12:18.507010616+00:00,1 +2023-10-24 21:12:18.634543496+00:00,1 +2023-10-24 21:12:18.763603165+00:00,1 +2023-10-24 21:12:18.891645038+00:00,1 +2023-10-24 21:12:19.019933266+00:00,1 +2023-10-24 21:12:19.148743889+00:00,1 +2023-10-24 21:12:19.278446075+00:00,1 +2023-10-24 21:12:19.406755011+00:00,1 +2023-10-24 21:12:19.535012571+00:00,1 +2023-10-24 21:12:19.662867771+00:00,1 +2023-10-24 21:12:19.790784146+00:00,1 +2023-10-24 21:12:19.918876999+00:00,1 +2023-10-24 21:12:20.048052149+00:00,1 +2023-10-24 21:12:20.176022274+00:00,1 +2023-10-24 21:12:20.303904148+00:00,1 +2023-10-24 21:12:20.432591745+00:00,1 +2023-10-24 21:12:20.561094103+00:00,1 +2023-10-24 21:12:20.690223827+00:00,1 +2023-10-24 21:12:20.820347263+00:00,1 +2023-10-24 21:12:20.950707788+00:00,1 +2023-10-24 21:12:21.079472739+00:00,1 +2023-10-24 21:12:21.208340242+00:00,1 +2023-10-24 21:12:21.338087456+00:00,1 +2023-10-24 21:12:21.467854591+00:00,1 +2023-10-24 21:12:21.596426100+00:00,1 +2023-10-24 21:12:21.724847040+00:00,1 +2023-10-24 21:12:21.853799430+00:00,1 +2023-10-24 21:12:21.982719525+00:00,1 +2023-10-24 21:12:22.112145832+00:00,1 +2023-10-24 21:12:22.241706993+00:00,1 +2023-10-24 21:12:22.370662416+00:00,1 +2023-10-24 21:12:22.498957537+00:00,1 +2023-10-24 21:12:22.626592135+00:00,1 +2023-10-24 21:12:22.755561809+00:00,1 +2023-10-24 21:12:22.884223296+00:00,1 +2023-10-24 21:12:23.013855122+00:00,1 +2023-10-24 21:12:23.140314774+00:00,1 +2023-10-24 21:12:23.267296229+00:00,1 +2023-10-24 21:12:23.396137793+00:00,1 +2023-10-24 21:12:23.523411449+00:00,1 +2023-10-24 21:12:23.655841752+00:00,1 +2023-10-24 21:12:23.785348865+00:00,1 +2023-10-24 21:12:23.914092857+00:00,1 +2023-10-24 21:12:24.043306332+00:00,1 +2023-10-24 21:12:24.173143770+00:00,1 +2023-10-24 21:12:24.303437247+00:00,1 +2023-10-24 21:12:24.432680472+00:00,1 +2023-10-24 21:12:24.561439923+00:00,1 +2023-10-24 21:12:24.690523043+00:00,1 +2023-10-24 21:12:24.821166331+00:00,1 +2023-10-24 21:12:24.951083547+00:00,1 +2023-10-24 21:12:25.080214672+00:00,1 +2023-10-24 21:12:25.209688572+00:00,1 +2023-10-24 21:12:25.338566659+00:00,1 +2023-10-24 21:12:25.467551653+00:00,1 +2023-10-24 21:12:25.595995022+00:00,1 +2023-10-24 21:12:25.724469783+00:00,1 +2023-10-24 21:12:25.853849311+00:00,1 +2023-10-24 21:12:25.983802773+00:00,1 +2023-10-24 21:12:26.112251373+00:00,1 +2023-10-24 21:12:26.242105466+00:00,1 +2023-10-24 21:12:26.371440097+00:00,1 +2023-10-24 21:12:26.499908724+00:00,1 +2023-10-24 21:12:26.628333758+00:00,1 +2023-10-24 21:12:26.756134400+00:00,1 +2023-10-24 21:12:26.884690752+00:00,1 +2023-10-24 21:12:27.013044561+00:00,1 +2023-10-24 21:12:27.141560966+00:00,1 +2023-10-24 21:12:27.270501457+00:00,1 +2023-10-24 21:12:27.399681223+00:00,1 +2023-10-24 21:12:27.531015032+00:00,1 +2023-10-24 21:12:27.660692950+00:00,1 +2023-10-24 21:12:27.790443196+00:00,1 +2023-10-24 21:12:27.920294809+00:00,1 +2023-10-24 21:12:28.049125728+00:00,1 +2023-10-24 21:12:28.175321483+00:00,0 +2023-10-24 21:12:30.187410253+00:00,1 +2023-10-24 21:12:30.312945706+00:00,1 +2023-10-24 21:12:30.438123183+00:00,1 +2023-10-24 21:12:30.564100657+00:00,1 +2023-10-24 21:12:30.690282206+00:00,1 +2023-10-24 21:12:30.816974713+00:00,1 +2023-10-24 21:12:30.942352754+00:00,1 +2023-10-24 21:12:31.068678146+00:00,1 +2023-10-24 21:12:31.193763991+00:00,1 +2023-10-24 21:12:31.320292188+00:00,1 +2023-10-24 21:12:32.497085153+00:00,1 +2023-10-24 21:12:32.622704330+00:00,1 +2023-10-24 21:12:32.748242208+00:00,1 +2023-10-24 21:12:35.950557756+00:00,1 +2023-10-24 21:12:36.074642882+00:00,1 +2023-10-24 21:12:37.232947011+00:00,1 +2023-10-24 21:12:37.358391398+00:00,1 +2023-10-24 21:12:37.484991279+00:00,1 +2023-10-24 21:12:37.610894416+00:00,0 +2023-10-24 21:12:39.623841802+00:00,1 +2023-10-24 21:12:39.750531801+00:00,1 +2023-10-24 21:12:39.876393508+00:00,1 +2023-10-24 21:12:40.001560734+00:00,1 +2023-10-24 21:12:40.127896875+00:00,1 +2023-10-24 21:12:40.253271902+00:00,1 +2023-10-24 21:12:40.378460209+00:00,1 +2023-10-24 21:12:40.503906856+00:00,1 +2023-10-24 21:12:40.629861731+00:00,1 +2023-10-24 21:12:40.754248148+00:00,1 +2023-10-24 21:12:40.880227580+00:00,1 +2023-10-24 21:12:41.006914964+00:00,1 +2023-10-24 21:12:41.135876281+00:00,1 +2023-10-24 21:12:41.261894301+00:00,1 +2023-10-24 21:12:41.388206543+00:00,1 +2023-10-24 21:12:41.512220145+00:00,1 +2023-10-24 21:12:41.637286379+00:00,1 +2023-10-24 21:12:41.763290850+00:00,1 +2023-10-24 21:12:41.889268341+00:00,1 +2023-10-24 21:12:42.016032854+00:00,1 +2023-10-24 21:12:42.141301180+00:00,1 +2023-10-24 21:12:42.267476845+00:00,1 +2023-10-24 21:12:42.393208492+00:00,1 +2023-10-24 21:12:42.519109797+00:00,1 +2023-10-24 21:12:42.645370214+00:00,1 +2023-10-24 21:12:42.770643778+00:00,1 +2023-10-24 21:12:42.896208959+00:00,1 +2023-10-24 21:12:43.022202632+00:00,1 +2023-10-24 21:12:43.147879324+00:00,1 +2023-10-24 21:12:43.273093726+00:00,1 +2023-10-24 21:12:43.398571632+00:00,1 +2023-10-24 21:12:43.523889647+00:00,0 +2023-10-24 21:12:45.537052561+00:00,1 +2023-10-24 21:12:45.663067326+00:00,1 +2023-10-24 21:12:45.788442687+00:00,1 +2023-10-24 21:12:45.913412959+00:00,1 +2023-10-24 21:12:47.098790677+00:00,1 +2023-10-24 21:12:47.224625848+00:00,1 +2023-10-24 21:12:47.349734065+00:00,1 +2023-10-24 21:12:47.475281552+00:00,1 +2023-10-24 21:12:47.601369164+00:00,1 +2023-10-24 21:12:47.726611790+00:00,1 +2023-10-24 21:12:47.851445138+00:00,1 +2023-10-24 21:12:47.977588512+00:00,1 +2023-10-24 21:12:48.104915170+00:00,1 +2023-10-24 21:12:49.246807459+00:00,1 +2023-10-24 21:12:49.372678040+00:00,1 +2023-10-24 21:12:49.498899350+00:00,1 +2023-10-24 21:12:49.624437836+00:00,1 +2023-10-24 21:12:49.749622417+00:00,1 +2023-10-24 21:12:49.875310794+00:00,1 +2023-10-24 21:12:50.000668379+00:00,1 +2023-10-24 21:12:50.126019571+00:00,1 +2023-10-24 21:12:50.252332356+00:00,1 +2023-10-24 21:12:50.377811873+00:00,1 +2023-10-24 21:12:50.502887296+00:00,0 +2023-10-24 21:12:52.514932553+00:00,1 +2023-10-24 21:12:52.640681493+00:00,1 +2023-10-24 21:12:52.768317354+00:00,1 +2023-10-24 21:12:52.895657044+00:00,1 +2023-10-24 21:12:53.023585352+00:00,1 +2023-10-24 21:12:53.149581247+00:00,1 +2023-10-24 21:12:53.275591412+00:00,1 +2023-10-24 21:12:53.402357039+00:00,1 +2023-10-24 21:12:53.529000047+00:00,1 +2023-10-24 21:12:53.655604939+00:00,1 +2023-10-24 21:12:53.781985469+00:00,1 +2023-10-24 21:12:53.908062741+00:00,1 +2023-10-24 21:12:54.034898907+00:00,1 +2023-10-24 21:12:54.160648946+00:00,1 +2023-10-24 21:12:54.287618301+00:00,1 +2023-10-24 21:12:54.413782087+00:00,1 +2023-10-24 21:12:54.541446568+00:00,1 +2023-10-24 21:12:54.667296277+00:00,1 +2023-10-24 21:12:54.794937294+00:00,1 +2023-10-24 21:12:54.920929955+00:00,1 +2023-10-24 21:12:55.048602558+00:00,1 +2023-10-24 21:12:55.174889439+00:00,1 +2023-10-24 21:12:55.300785894+00:00,1 +2023-10-24 21:12:55.427383206+00:00,1 +2023-10-24 21:12:55.554245809+00:00,1 +2023-10-24 21:12:55.681371262+00:00,1 +2023-10-24 21:12:55.810056659+00:00,1 +2023-10-24 21:12:55.936576389+00:00,1 +2023-10-24 21:12:56.063075680+00:00,1 +2023-10-24 21:12:56.189479102+00:00,1 +2023-10-24 21:12:56.315521318+00:00,1 +2023-10-24 21:12:56.442652202+00:00,1 +2023-10-24 21:12:56.569055172+00:00,1 +2023-10-24 21:12:56.695531860+00:00,1 +2023-10-24 21:12:56.822836506+00:00,1 +2023-10-24 21:12:56.950350368+00:00,1 +2023-10-24 21:12:57.076952173+00:00,1 +2023-10-24 21:12:57.202841974+00:00,1 +2023-10-24 21:12:57.329215335+00:00,1 +2023-10-24 21:12:57.456678796+00:00,1 +2023-10-24 21:12:57.583811534+00:00,1 +2023-10-24 21:12:57.709854705+00:00,1 +2023-10-24 21:12:57.836111057+00:00,1 +2023-10-24 21:12:57.962823285+00:00,1 +2023-10-24 21:12:58.089903793+00:00,1 +2023-10-24 21:12:58.216946633+00:00,1 +2023-10-24 21:12:58.343668974+00:00,1 +2023-10-24 21:12:58.470607253+00:00,1 +2023-10-24 21:12:58.596312703+00:00,1 +2023-10-24 21:12:58.722044358+00:00,1 +2023-10-24 21:12:58.848793957+00:00,1 +2023-10-24 21:12:58.975862697+00:00,1 +2023-10-24 21:12:59.103477124+00:00,1 +2023-10-24 21:12:59.230649032+00:00,1 +2023-10-24 21:12:59.357967801+00:00,1 +2023-10-24 21:12:59.484595752+00:00,1 +2023-10-24 21:12:59.611745125+00:00,1 +2023-10-24 21:12:59.738763963+00:00,1 +2023-10-24 21:12:59.865162695+00:00,1 +2023-10-24 21:12:59.991628001+00:00,1 +2023-10-24 21:13:00.119240966+00:00,1 +2023-10-24 21:13:00.246443695+00:00,1 +2023-10-24 21:13:00.372471842+00:00,1 +2023-10-24 21:13:00.500486396+00:00,1 +2023-10-24 21:13:00.626938518+00:00,1 +2023-10-24 21:13:00.753569725+00:00,1 +2023-10-24 21:13:00.879169695+00:00,1 +2023-10-24 21:13:01.006274054+00:00,1 +2023-10-24 21:13:01.132676260+00:00,1 +2023-10-24 21:13:01.259484124+00:00,1 +2023-10-24 21:13:01.385777302+00:00,1 +2023-10-24 21:13:01.512070761+00:00,1 +2023-10-24 21:13:01.639149906+00:00,1 +2023-10-24 21:13:01.765452170+00:00,1 +2023-10-24 21:13:01.892779297+00:00,1 +2023-10-24 21:13:02.020185844+00:00,1 +2023-10-24 21:13:02.147081572+00:00,1 +2023-10-24 21:13:02.274066434+00:00,1 +2023-10-24 21:13:02.399824753+00:00,1 +2023-10-24 21:13:02.526099164+00:00,1 +2023-10-24 21:13:02.652968874+00:00,1 +2023-10-24 21:13:02.779413787+00:00,1 +2023-10-24 21:13:02.905671954+00:00,1 +2023-10-24 21:13:03.032480687+00:00,1 +2023-10-24 21:13:03.161122534+00:00,1 +2023-10-24 21:13:03.289539453+00:00,1 +2023-10-24 21:13:03.416802285+00:00,1 +2023-10-24 21:13:03.543301926+00:00,1 +2023-10-24 21:13:03.671144105+00:00,1 +2023-10-24 21:13:03.798530961+00:00,1 +2023-10-24 21:13:03.926439370+00:00,1 +2023-10-24 21:13:04.057608609+00:00,1 +2023-10-24 21:13:04.184763537+00:00,1 +2023-10-24 21:13:04.311038148+00:00,1 +2023-10-24 21:13:04.436812846+00:00,1 +2023-10-24 21:13:04.563280610+00:00,1 +2023-10-24 21:13:04.689981418+00:00,1 +2023-10-24 21:13:04.817543148+00:00,1 +2023-10-24 21:13:04.945389437+00:00,1 +2023-10-24 21:13:05.071075146+00:00,1 +2023-10-24 21:13:05.198637156+00:00,1 +2023-10-24 21:13:05.324761959+00:00,1 +2023-10-24 21:13:05.451876292+00:00,1 +2023-10-24 21:13:05.578535077+00:00,1 +2023-10-24 21:13:05.706375904+00:00,1 +2023-10-24 21:13:05.833333413+00:00,1 +2023-10-24 21:13:05.960454801+00:00,1 +2023-10-24 21:13:06.087832615+00:00,1 +2023-10-24 21:13:06.216049453+00:00,1 +2023-10-24 21:13:06.342460364+00:00,1 +2023-10-24 21:13:06.469146423+00:00,1 +2023-10-24 21:13:06.596792285+00:00,1 +2023-10-24 21:13:06.723323155+00:00,1 +2023-10-24 21:13:06.849427099+00:00,1 +2023-10-24 21:13:06.975841017+00:00,1 +2023-10-24 21:13:07.103913322+00:00,1 +2023-10-24 21:13:07.229945519+00:00,1 +2023-10-24 21:13:07.356577896+00:00,1 +2023-10-24 21:13:07.483695507+00:00,1 +2023-10-24 21:13:07.611080505+00:00,1 +2023-10-24 21:13:07.737524931+00:00,1 +2023-10-24 21:13:07.864201921+00:00,1 +2023-10-24 21:13:07.991018450+00:00,1 +2023-10-24 21:13:08.117514885+00:00,1 +2023-10-24 21:13:08.248171968+00:00,1 +2023-10-24 21:13:08.376479023+00:00,1 +2023-10-24 21:13:08.504297171+00:00,1 +2023-10-24 21:13:08.633399951+00:00,1 +2023-10-24 21:13:08.761256847+00:00,1 +2023-10-24 21:13:08.888736627+00:00,1 +2023-10-24 21:13:09.016657448+00:00,1 +2023-10-24 21:13:09.145722314+00:00,1 +2023-10-24 21:13:09.273313709+00:00,1 +2023-10-24 21:13:09.402491976+00:00,1 +2023-10-24 21:13:09.531133594+00:00,1 +2023-10-24 21:13:09.660113349+00:00,1 +2023-10-24 21:13:09.789817688+00:00,1 +2023-10-24 21:13:09.918371840+00:00,1 +2023-10-24 21:13:10.048156159+00:00,1 +2023-10-24 21:13:10.176808967+00:00,1 +2023-10-24 21:13:10.305352536+00:00,1 +2023-10-24 21:13:10.432888484+00:00,1 +2023-10-24 21:13:10.561748945+00:00,1 +2023-10-24 21:13:10.690643190+00:00,1 +2023-10-24 21:13:10.820459763+00:00,1 +2023-10-24 21:13:10.949153184+00:00,1 +2023-10-24 21:13:11.076968074+00:00,1 +2023-10-24 21:13:11.207351081+00:00,1 +2023-10-24 21:13:11.335984225+00:00,1 +2023-10-24 21:13:11.464548251+00:00,1 +2023-10-24 21:13:11.594250267+00:00,1 +2023-10-24 21:13:11.725346696+00:00,1 +2023-10-24 21:13:11.852964618+00:00,1 +2023-10-24 21:13:11.983373742+00:00,1 +2023-10-24 21:13:12.112637656+00:00,1 +2023-10-24 21:13:12.240929866+00:00,1 +2023-10-24 21:13:12.369904443+00:00,1 +2023-10-24 21:13:12.497680104+00:00,1 +2023-10-24 21:13:12.626573481+00:00,1 +2023-10-24 21:13:12.755837679+00:00,1 +2023-10-24 21:13:12.883857392+00:00,1 +2023-10-24 21:13:13.014325603+00:00,1 +2023-10-24 21:13:13.142086758+00:00,1 +2023-10-24 21:13:13.270051153+00:00,1 +2023-10-24 21:13:13.399126377+00:00,1 +2023-10-24 21:13:13.526668721+00:00,1 +2023-10-24 21:13:13.655016794+00:00,1 +2023-10-24 21:13:13.783325551+00:00,1 +2023-10-24 21:13:13.911543334+00:00,1 +2023-10-24 21:13:14.039063110+00:00,1 +2023-10-24 21:13:14.165755563+00:00,1 +2023-10-24 21:13:14.293302586+00:00,1 +2023-10-24 21:13:14.423254870+00:00,1 +2023-10-24 21:13:14.550658694+00:00,1 +2023-10-24 21:13:14.678894642+00:00,1 +2023-10-24 21:13:14.807365457+00:00,1 +2023-10-24 21:13:14.936637658+00:00,1 +2023-10-24 21:13:15.073284020+00:00,1 +2023-10-24 21:13:15.201791871+00:00,1 +2023-10-24 21:13:15.329284138+00:00,1 +2023-10-24 21:13:15.456892002+00:00,1 +2023-10-24 21:13:15.584727999+00:00,1 +2023-10-24 21:13:15.712302942+00:00,1 +2023-10-24 21:13:15.840412778+00:00,1 +2023-10-24 21:13:15.969498616+00:00,1 +2023-10-24 21:13:16.098083318+00:00,1 +2023-10-24 21:13:16.226672209+00:00,1 +2023-10-24 21:13:16.354866892+00:00,1 +2023-10-24 21:13:16.482836058+00:00,1 +2023-10-24 21:13:16.611539924+00:00,1 +2023-10-24 21:13:16.741536420+00:00,1 +2023-10-24 21:13:16.870149538+00:00,1 +2023-10-24 21:13:16.996902783+00:00,1 +2023-10-24 21:13:17.125039980+00:00,1 +2023-10-24 21:13:17.252969423+00:00,1 +2023-10-24 21:13:17.380265708+00:00,1 +2023-10-24 21:13:17.507995109+00:00,1 +2023-10-24 21:13:17.637712276+00:00,1 +2023-10-24 21:13:17.765331647+00:00,1 +2023-10-24 21:13:17.892565410+00:00,1 +2023-10-24 21:13:18.020461052+00:00,1 +2023-10-24 21:13:18.149424589+00:00,1 +2023-10-24 21:13:18.276835094+00:00,1 +2023-10-24 21:13:18.404142660+00:00,1 +2023-10-24 21:13:18.531718158+00:00,1 +2023-10-24 21:13:18.660023588+00:00,1 +2023-10-24 21:13:18.788170170+00:00,1 +2023-10-24 21:13:18.917042075+00:00,1 +2023-10-24 21:13:19.046532682+00:00,1 +2023-10-24 21:13:19.174611192+00:00,1 +2023-10-24 21:13:19.303080787+00:00,1 +2023-10-24 21:13:19.431095156+00:00,1 +2023-10-24 21:13:19.559191579+00:00,1 +2023-10-24 21:13:19.686742241+00:00,1 +2023-10-24 21:13:19.814065964+00:00,1 +2023-10-24 21:13:19.943462360+00:00,1 +2023-10-24 21:13:20.071226949+00:00,1 +2023-10-24 21:13:20.198989329+00:00,1 +2023-10-24 21:13:20.327928527+00:00,1 +2023-10-24 21:13:20.455996454+00:00,1 +2023-10-24 21:13:20.583990813+00:00,1 +2023-10-24 21:13:20.711447617+00:00,1 +2023-10-24 21:13:20.840693533+00:00,1 +2023-10-24 21:13:20.968583158+00:00,1 +2023-10-24 21:13:21.096917432+00:00,1 +2023-10-24 21:13:21.226534898+00:00,1 +2023-10-24 21:13:21.355921200+00:00,1 +2023-10-24 21:13:21.484584412+00:00,1 +2023-10-24 21:13:21.612632994+00:00,1 +2023-10-24 21:13:21.741147138+00:00,1 +2023-10-24 21:13:21.870793024+00:00,1 +2023-10-24 21:13:21.998981201+00:00,1 +2023-10-24 21:13:22.126836016+00:00,1 +2023-10-24 21:13:22.253533033+00:00,1 +2023-10-24 21:13:22.380261716+00:00,1 +2023-10-24 21:13:22.508980484+00:00,1 +2023-10-24 21:13:22.636258741+00:00,1 +2023-10-24 21:13:22.763615358+00:00,1 +2023-10-24 21:13:22.892143694+00:00,1 +2023-10-24 21:13:23.020014036+00:00,1 +2023-10-24 21:13:23.148831877+00:00,1 +2023-10-24 21:13:23.276583519+00:00,1 +2023-10-24 21:13:23.404170829+00:00,1 +2023-10-24 21:13:23.532054277+00:00,1 +2023-10-24 21:13:23.660231001+00:00,1 +2023-10-24 21:13:23.789604406+00:00,1 +2023-10-24 21:13:23.917824907+00:00,1 +2023-10-24 21:13:24.045687964+00:00,1 +2023-10-24 21:13:24.173581641+00:00,1 +2023-10-24 21:13:24.301837434+00:00,1 +2023-10-24 21:13:24.429329606+00:00,1 +2023-10-24 21:13:24.557348271+00:00,1 +2023-10-24 21:13:24.684626237+00:00,1 +2023-10-24 21:13:24.812930918+00:00,1 +2023-10-24 21:13:24.940105517+00:00,1 +2023-10-24 21:13:25.067238000+00:00,1 +2023-10-24 21:13:25.194396303+00:00,1 +2023-10-24 21:13:25.322690077+00:00,1 +2023-10-24 21:13:25.451611653+00:00,1 +2023-10-24 21:13:25.579932533+00:00,1 +2023-10-24 21:13:25.707450950+00:00,1 +2023-10-24 21:13:25.835304811+00:00,1 +2023-10-24 21:13:25.962613090+00:00,1 +2023-10-24 21:13:26.089826632+00:00,1 +2023-10-24 21:13:26.217215540+00:00,1 +2023-10-24 21:13:26.345196445+00:00,1 +2023-10-24 21:13:26.472298659+00:00,1 +2023-10-24 21:13:26.599561574+00:00,1 +2023-10-24 21:13:26.727782725+00:00,1 +2023-10-24 21:13:26.856267106+00:00,1 +2023-10-24 21:13:26.982535067+00:00,1 +2023-10-24 21:13:27.109993285+00:00,1 +2023-10-24 21:13:27.237780017+00:00,1 +2023-10-24 21:13:27.365933480+00:00,1 +2023-10-24 21:13:27.495574811+00:00,1 +2023-10-24 21:13:27.623894054+00:00,1 +2023-10-24 21:13:27.752219410+00:00,1 +2023-10-24 21:13:27.880982897+00:00,1 +2023-10-24 21:13:28.009072527+00:00,1 +2023-10-24 21:13:28.135849683+00:00,1 +2023-10-24 21:13:28.263332846+00:00,1 +2023-10-24 21:13:28.390519079+00:00,1 +2023-10-24 21:13:28.518561232+00:00,1 +2023-10-24 21:13:28.646396651+00:00,1 +2023-10-24 21:13:28.774394931+00:00,1 +2023-10-24 21:13:28.902643921+00:00,1 +2023-10-24 21:13:30.086462575+00:00,1 +2023-10-24 21:13:30.212648533+00:00,1 +2023-10-24 21:13:30.337136761+00:00,1 +2023-10-24 21:13:30.463457501+00:00,1 +2023-10-24 21:13:30.590827200+00:00,1 +2023-10-24 21:13:30.716747205+00:00,1 +2023-10-24 21:13:30.842612818+00:00,1 +2023-10-24 21:13:30.969990511+00:00,1 +2023-10-24 21:13:31.095711080+00:00,1 +2023-10-24 21:13:31.220854101+00:00,1 +2023-10-24 21:13:31.345371129+00:00,1 +2023-10-24 21:13:31.470228908+00:00,1 +2023-10-24 21:13:31.594892756+00:00,1 +2023-10-24 21:13:31.720512643+00:00,1 +2023-10-24 21:13:32.881387744+00:00,1 +2023-10-24 21:13:33.006360014+00:00,1 +2023-10-24 21:13:33.132092158+00:00,1 +2023-10-24 21:13:33.257923711+00:00,1 +2023-10-24 21:13:33.382894672+00:00,1 +2023-10-24 21:13:33.508135507+00:00,1 +2023-10-24 21:13:33.633275437+00:00,1 +2023-10-24 21:13:33.758347571+00:00,1 +2023-10-24 21:13:34.942418605+00:00,1 +2023-10-24 21:13:35.067507291+00:00,1 +2023-10-24 21:13:35.192421000+00:00,1 +2023-10-24 21:13:35.318005299+00:00,1 +2023-10-24 21:13:35.443734998+00:00,1 +2023-10-24 21:13:35.568192515+00:00,1 +2023-10-24 21:13:35.693394724+00:00,1 +2023-10-24 21:13:35.818276941+00:00,1 +2023-10-24 21:13:35.943944920+00:00,1 +2023-10-24 21:13:36.069024582+00:00,1 +2023-10-24 21:13:36.194826697+00:00,1 +2023-10-24 21:13:36.320153756+00:00,1 +2023-10-24 21:13:36.446268556+00:00,1 +2023-10-24 21:13:36.572675748+00:00,1 +2023-10-24 21:13:36.697690798+00:00,1 +2023-10-24 21:13:36.823593780+00:00,1 +2023-10-24 21:13:36.948408756+00:00,1 +2023-10-24 21:13:37.073601665+00:00,1 +2023-10-24 21:13:37.199660689+00:00,1 +2023-10-24 21:13:38.335336370+00:00,1 +2023-10-24 21:13:38.463451394+00:00,1 +2023-10-24 21:13:38.592875972+00:00,1 +2023-10-24 21:13:38.720483834+00:00,1 +2023-10-24 21:13:38.849536700+00:00,1 +2023-10-24 21:13:38.978921464+00:00,1 +2023-10-24 21:13:39.107199532+00:00,1 +2023-10-24 21:13:39.236728515+00:00,1 +2023-10-24 21:13:39.364906519+00:00,1 +2023-10-24 21:13:39.494005624+00:00,1 +2023-10-24 21:13:39.621208249+00:00,1 +2023-10-24 21:13:39.750585773+00:00,1 +2023-10-24 21:13:39.879332641+00:00,1 +2023-10-24 21:13:40.006958648+00:00,1 +2023-10-24 21:13:40.136628465+00:00,1 +2023-10-24 21:13:40.265485708+00:00,1 +2023-10-24 21:13:40.395332104+00:00,1 +2023-10-24 21:13:40.524812412+00:00,1 +2023-10-24 21:13:40.652458596+00:00,1 +2023-10-24 21:13:40.780189813+00:00,1 +2023-10-24 21:13:40.908114512+00:00,1 +2023-10-24 21:13:41.037058433+00:00,1 +2023-10-24 21:13:41.166219276+00:00,1 +2023-10-24 21:13:41.294663803+00:00,1 +2023-10-24 21:13:41.422472396+00:00,1 +2023-10-24 21:13:41.551266648+00:00,1 +2023-10-24 21:13:41.679002197+00:00,1 +2023-10-24 21:13:41.807259446+00:00,1 +2023-10-24 21:13:41.935488545+00:00,1 +2023-10-24 21:13:42.062658338+00:00,1 +2023-10-24 21:13:42.192051510+00:00,1 +2023-10-24 21:13:42.320652537+00:00,1 +2023-10-24 21:13:42.449221757+00:00,1 +2023-10-24 21:13:42.580045988+00:00,1 +2023-10-24 21:13:42.707734425+00:00,1 +2023-10-24 21:13:42.834767863+00:00,1 +2023-10-24 21:13:42.963275966+00:00,1 +2023-10-24 21:13:43.091425394+00:00,1 +2023-10-24 21:13:43.219045502+00:00,1 +2023-10-24 21:13:43.347287388+00:00,1 +2023-10-24 21:13:43.474029347+00:00,1 +2023-10-24 21:13:43.603427665+00:00,1 +2023-10-24 21:13:43.730810313+00:00,1 +2023-10-24 21:13:43.859502926+00:00,1 +2023-10-24 21:13:43.988867306+00:00,1 +2023-10-24 21:13:44.117102526+00:00,1 +2023-10-24 21:13:44.244888256+00:00,1 +2023-10-24 21:13:44.372888906+00:00,1 +2023-10-24 21:13:44.500338717+00:00,1 +2023-10-24 21:13:44.627851494+00:00,1 +2023-10-24 21:13:44.756761322+00:00,1 +2023-10-24 21:13:44.885079060+00:00,1 +2023-10-24 21:13:45.012916571+00:00,1 +2023-10-24 21:13:45.141523862+00:00,1 +2023-10-24 21:13:45.270426696+00:00,1 +2023-10-24 21:13:45.399418972+00:00,1 +2023-10-24 21:13:45.528332780+00:00,1 +2023-10-24 21:13:45.656000831+00:00,1 +2023-10-24 21:13:45.785734093+00:00,1 +2023-10-24 21:13:45.913840108+00:00,1 +2023-10-24 21:13:46.042413445+00:00,1 +2023-10-24 21:13:46.169953588+00:00,1 +2023-10-24 21:13:46.296760790+00:00,1 +2023-10-24 21:13:46.424834287+00:00,1 +2023-10-24 21:13:46.553728962+00:00,1 +2023-10-24 21:13:46.682667391+00:00,1 +2023-10-24 21:13:46.809972081+00:00,1 +2023-10-24 21:13:46.938876657+00:00,1 +2023-10-24 21:13:47.068282675+00:00,1 +2023-10-24 21:13:47.196185791+00:00,1 +2023-10-24 21:13:47.324176019+00:00,1 +2023-10-24 21:13:47.451364317+00:00,1 +2023-10-24 21:13:47.578570099+00:00,1 +2023-10-24 21:13:47.706781640+00:00,1 +2023-10-24 21:13:47.834096173+00:00,1 +2023-10-24 21:13:47.961930776+00:00,1 +2023-10-24 21:13:48.089710422+00:00,1 +2023-10-24 21:13:48.217973400+00:00,1 +2023-10-24 21:13:48.345914608+00:00,1 +2023-10-24 21:13:48.473987893+00:00,1 +2023-10-24 21:13:48.601905707+00:00,1 +2023-10-24 21:13:48.730660022+00:00,1 +2023-10-24 21:13:48.859307096+00:00,1 +2023-10-24 21:13:48.988236535+00:00,1 +2023-10-24 21:13:49.116272297+00:00,1 +2023-10-24 21:13:49.244681819+00:00,1 +2023-10-24 21:13:49.373961151+00:00,1 +2023-10-24 21:13:49.502646875+00:00,1 +2023-10-24 21:13:49.630991324+00:00,1 +2023-10-24 21:13:49.758992919+00:00,1 +2023-10-24 21:13:49.887530814+00:00,1 +2023-10-24 21:13:50.015378452+00:00,1 +2023-10-24 21:13:50.142013525+00:00,1 +2023-10-24 21:13:50.269204976+00:00,1 +2023-10-24 21:13:50.397628323+00:00,1 +2023-10-24 21:13:50.528113837+00:00,1 +2023-10-24 21:13:50.654638166+00:00,1 +2023-10-24 21:13:50.783047316+00:00,1 +2023-10-24 21:13:50.911356091+00:00,1 +2023-10-24 21:13:51.038954189+00:00,1 +2023-10-24 21:13:51.166742536+00:00,1 +2023-10-24 21:13:51.295989924+00:00,1 +2023-10-24 21:13:51.423390257+00:00,1 +2023-10-24 21:13:51.549973854+00:00,1 +2023-10-24 21:13:51.677291915+00:00,1 +2023-10-24 21:13:51.806461996+00:00,1 +2023-10-24 21:13:51.936688996+00:00,1 +2023-10-24 21:13:52.065071235+00:00,1 +2023-10-24 21:13:52.193346426+00:00,1 +2023-10-24 21:13:52.320786405+00:00,1 +2023-10-24 21:13:52.448337253+00:00,1 +2023-10-24 21:13:52.576718085+00:00,1 +2023-10-24 21:13:52.704257413+00:00,1 +2023-10-24 21:13:52.833063612+00:00,1 +2023-10-24 21:13:52.962000419+00:00,1 +2023-10-24 21:13:53.090116376+00:00,1 +2023-10-24 21:13:53.218114747+00:00,1 +2023-10-24 21:13:53.348335776+00:00,1 +2023-10-24 21:13:53.479643520+00:00,1 +2023-10-24 21:13:53.607497846+00:00,1 +2023-10-24 21:13:53.736003209+00:00,1 +2023-10-24 21:13:53.865303875+00:00,1 +2023-10-24 21:13:53.995333633+00:00,1 +2023-10-24 21:13:54.124102284+00:00,1 +2023-10-24 21:13:54.254218412+00:00,1 +2023-10-24 21:13:54.384459371+00:00,1 +2023-10-24 21:13:54.513228724+00:00,1 +2023-10-24 21:13:54.642568618+00:00,1 +2023-10-24 21:13:54.770979128+00:00,1 +2023-10-24 21:13:54.899736283+00:00,1 +2023-10-24 21:13:55.028510595+00:00,1 +2023-10-24 21:13:55.158709488+00:00,1 +2023-10-24 21:13:55.287527831+00:00,1 +2023-10-24 21:13:55.415918685+00:00,1 +2023-10-24 21:13:55.546070719+00:00,1 +2023-10-24 21:13:55.676660349+00:00,1 +2023-10-24 21:13:55.805593691+00:00,1 +2023-10-24 21:13:55.936028550+00:00,1 +2023-10-24 21:13:56.064655360+00:00,1 +2023-10-24 21:13:56.194497992+00:00,1 +2023-10-24 21:13:56.322601122+00:00,1 +2023-10-24 21:13:56.450821157+00:00,1 +2023-10-24 21:13:56.579008147+00:00,1 +2023-10-24 21:13:56.707903374+00:00,1 +2023-10-24 21:13:56.836100956+00:00,1 +2023-10-24 21:13:56.964627590+00:00,1 +2023-10-24 21:13:57.093524044+00:00,1 +2023-10-24 21:13:57.222127993+00:00,1 +2023-10-24 21:13:57.350605912+00:00,1 +2023-10-24 21:13:57.479505820+00:00,1 +2023-10-24 21:13:57.607484703+00:00,1 +2023-10-24 21:13:57.737065754+00:00,1 +2023-10-24 21:13:57.867637655+00:00,1 +2023-10-24 21:13:57.995078215+00:00,1 +2023-10-24 21:13:58.123790075+00:00,1 +2023-10-24 21:13:58.252161383+00:00,1 +2023-10-24 21:13:58.381845076+00:00,1 +2023-10-24 21:13:58.511372806+00:00,1 +2023-10-24 21:13:58.638945429+00:00,1 +2023-10-24 21:13:58.766763968+00:00,1 +2023-10-24 21:13:58.893235874+00:00,1 +2023-10-24 21:13:59.022683954+00:00,1 +2023-10-24 21:13:59.150032485+00:00,1 +2023-10-24 21:13:59.278860533+00:00,1 +2023-10-24 21:13:59.406476502+00:00,1 +2023-10-24 21:13:59.534974676+00:00,1 +2023-10-24 21:13:59.662999098+00:00,1 +2023-10-24 21:13:59.793235868+00:00,1 +2023-10-24 21:13:59.924042387+00:00,1 +2023-10-24 21:14:00.051284729+00:00,1 +2023-10-24 21:14:00.180343839+00:00,1 +2023-10-24 21:14:00.308599122+00:00,1 +2023-10-24 21:14:00.438845329+00:00,1 +2023-10-24 21:14:00.568724183+00:00,1 +2023-10-24 21:14:00.698232111+00:00,1 +2023-10-24 21:14:00.828062923+00:00,1 +2023-10-24 21:14:00.956320974+00:00,1 +2023-10-24 21:14:01.085197083+00:00,1 +2023-10-24 21:14:01.213438206+00:00,1 +2023-10-24 21:14:01.341726133+00:00,1 +2023-10-24 21:14:01.470565015+00:00,1 +2023-10-24 21:14:01.597665207+00:00,1 +2023-10-24 21:14:01.725329216+00:00,1 +2023-10-24 21:14:01.853626885+00:00,1 +2023-10-24 21:14:01.981812922+00:00,1 +2023-10-24 21:14:02.109020157+00:00,1 +2023-10-24 21:14:02.236891124+00:00,1 +2023-10-24 21:14:02.366626490+00:00,1 +2023-10-24 21:14:02.494626731+00:00,1 +2023-10-24 21:14:02.622243075+00:00,1 +2023-10-24 21:14:02.749305380+00:00,1 +2023-10-24 21:14:02.877390046+00:00,1 +2023-10-24 21:14:03.006539301+00:00,1 +2023-10-24 21:14:03.135993408+00:00,1 +2023-10-24 21:14:03.263537048+00:00,1 +2023-10-24 21:14:03.389990546+00:00,1 +2023-10-24 21:14:03.518929088+00:00,1 +2023-10-24 21:14:03.647577276+00:00,1 +2023-10-24 21:14:03.776717182+00:00,1 +2023-10-24 21:14:03.907054431+00:00,1 +2023-10-24 21:14:04.035668632+00:00,1 +2023-10-24 21:14:04.162994764+00:00,1 +2023-10-24 21:14:04.290433342+00:00,1 +2023-10-24 21:14:04.418164715+00:00,1 +2023-10-24 21:14:04.545763832+00:00,1 +2023-10-24 21:14:04.675246313+00:00,1 +2023-10-24 21:14:04.803882681+00:00,1 +2023-10-24 21:14:04.931146483+00:00,1 +2023-10-24 21:14:05.058549637+00:00,1 +2023-10-24 21:14:05.186033082+00:00,1 +2023-10-24 21:14:05.313744509+00:00,1 +2023-10-24 21:14:05.441838987+00:00,1 +2023-10-24 21:14:05.571343909+00:00,1 +2023-10-24 21:14:05.699551618+00:00,1 +2023-10-24 21:14:05.830453992+00:00,1 +2023-10-24 21:14:05.959190309+00:00,1 +2023-10-24 21:14:06.087551808+00:00,1 +2023-10-24 21:14:06.216449514+00:00,1 +2023-10-24 21:14:06.344977842+00:00,1 +2023-10-24 21:14:06.472920173+00:00,1 +2023-10-24 21:14:06.602241952+00:00,1 +2023-10-24 21:14:06.731359064+00:00,1 +2023-10-24 21:14:06.859901279+00:00,1 +2023-10-24 21:14:06.987780253+00:00,1 +2023-10-24 21:14:07.116625112+00:00,1 +2023-10-24 21:14:07.243748277+00:00,1 +2023-10-24 21:14:07.370923157+00:00,1 +2023-10-24 21:14:07.498422621+00:00,1 +2023-10-24 21:14:07.626126101+00:00,1 +2023-10-24 21:14:07.753691044+00:00,1 +2023-10-24 21:14:07.882599040+00:00,1 +2023-10-24 21:14:08.011807994+00:00,1 +2023-10-24 21:14:08.140539292+00:00,1 +2023-10-24 21:14:08.268526173+00:00,1 +2023-10-24 21:14:08.396303067+00:00,1 +2023-10-24 21:14:08.523345097+00:00,1 +2023-10-24 21:14:08.650705171+00:00,1 +2023-10-24 21:14:08.778660287+00:00,1 +2023-10-24 21:14:08.906951605+00:00,1 +2023-10-24 21:14:09.035113335+00:00,1 +2023-10-24 21:14:09.162744577+00:00,1 +2023-10-24 21:14:09.291330361+00:00,1 +2023-10-24 21:14:09.419107710+00:00,1 +2023-10-24 21:14:09.546798059+00:00,1 +2023-10-24 21:14:09.674120616+00:00,1 +2023-10-24 21:14:09.803556325+00:00,1 +2023-10-24 21:14:09.931400135+00:00,1 +2023-10-24 21:14:10.058613793+00:00,1 +2023-10-24 21:14:10.186320558+00:00,1 +2023-10-24 21:14:10.314339063+00:00,1 +2023-10-24 21:14:10.441565612+00:00,1 +2023-10-24 21:14:10.569727941+00:00,1 +2023-10-24 21:14:10.697410498+00:00,1 +2023-10-24 21:14:10.826908744+00:00,1 +2023-10-24 21:14:10.955226141+00:00,1 +2023-10-24 21:14:11.083350744+00:00,1 +2023-10-24 21:14:11.211339754+00:00,1 +2023-10-24 21:14:11.341595303+00:00,1 +2023-10-24 21:14:11.468696513+00:00,1 +2023-10-24 21:14:11.596758454+00:00,1 +2023-10-24 21:14:11.724658516+00:00,1 +2023-10-24 21:14:11.853122097+00:00,1 +2023-10-24 21:14:11.980227573+00:00,1 +2023-10-24 21:14:12.108019886+00:00,1 +2023-10-24 21:14:12.235218634+00:00,1 +2023-10-24 21:14:12.362711883+00:00,1 +2023-10-24 21:14:12.491049111+00:00,1 +2023-10-24 21:14:12.619182126+00:00,1 +2023-10-24 21:14:12.747030820+00:00,1 +2023-10-24 21:14:12.874889351+00:00,1 +2023-10-24 21:14:13.003432800+00:00,1 +2023-10-24 21:14:13.133137883+00:00,1 +2023-10-24 21:14:13.261254582+00:00,1 +2023-10-24 21:14:13.388493996+00:00,1 +2023-10-24 21:14:13.515112122+00:00,1 +2023-10-24 21:14:13.643197654+00:00,1 +2023-10-24 21:14:13.770874560+00:00,1 +2023-10-24 21:14:13.899388517+00:00,1 +2023-10-24 21:14:14.027086805+00:00,1 +2023-10-24 21:14:14.156446860+00:00,1 +2023-10-24 21:14:14.284465207+00:00,1 +2023-10-24 21:14:14.411045075+00:00,1 +2023-10-24 21:14:14.537922453+00:00,1 +2023-10-24 21:14:14.667100150+00:00,1 +2023-10-24 21:14:14.795839377+00:00,1 +2023-10-24 21:14:14.923755069+00:00,1 +2023-10-24 21:14:15.051714966+00:00,1 +2023-10-24 21:14:15.179311043+00:00,1 +2023-10-24 21:14:15.306060986+00:00,1 +2023-10-24 21:14:15.434127324+00:00,1 +2023-10-24 21:14:15.561736641+00:00,1 +2023-10-24 21:14:15.689339114+00:00,1 +2023-10-24 21:14:15.817550436+00:00,1 +2023-10-24 21:14:15.945586518+00:00,1 +2023-10-24 21:14:16.073256368+00:00,1 +2023-10-24 21:14:16.201840650+00:00,1 +2023-10-24 21:14:16.329124795+00:00,1 +2023-10-24 21:14:16.457538914+00:00,1 +2023-10-24 21:14:16.585388073+00:00,1 +2023-10-24 21:14:16.713846368+00:00,1 +2023-10-24 21:14:16.841938528+00:00,1 +2023-10-24 21:14:16.969389178+00:00,1 +2023-10-24 21:14:17.096776326+00:00,1 +2023-10-24 21:14:17.225047010+00:00,1 +2023-10-24 21:14:17.354451762+00:00,1 +2023-10-24 21:14:17.482266990+00:00,1 +2023-10-24 21:14:17.609457763+00:00,1 +2023-10-24 21:14:17.736865463+00:00,1 +2023-10-24 21:14:17.864702123+00:00,1 +2023-10-24 21:14:17.992856454+00:00,1 +2023-10-24 21:14:18.121905587+00:00,1 +2023-10-24 21:14:18.249297105+00:00,1 +2023-10-24 21:14:18.377817983+00:00,1 +2023-10-24 21:14:18.505279492+00:00,1 +2023-10-24 21:14:18.633278054+00:00,1 +2023-10-24 21:14:18.762227713+00:00,1 +2023-10-24 21:14:18.890527767+00:00,1 +2023-10-24 21:14:19.019588998+00:00,1 +2023-10-24 21:14:19.148390074+00:00,1 +2023-10-24 21:14:19.277739963+00:00,1 +2023-10-24 21:14:19.408399591+00:00,1 +2023-10-24 21:14:19.536496491+00:00,1 +2023-10-24 21:14:19.663924939+00:00,1 +2023-10-24 21:14:19.791689064+00:00,1 +2023-10-24 21:14:19.919103639+00:00,1 +2023-10-24 21:14:20.046397192+00:00,1 +2023-10-24 21:14:20.173790253+00:00,1 +2023-10-24 21:14:20.301483044+00:00,1 +2023-10-24 21:14:20.429058398+00:00,1 +2023-10-24 21:14:20.556479577+00:00,1 +2023-10-24 21:14:20.684288063+00:00,1 +2023-10-24 21:14:20.812199371+00:00,1 +2023-10-24 21:14:20.940906875+00:00,1 +2023-10-24 21:14:21.069891028+00:00,1 +2023-10-24 21:14:21.197962790+00:00,1 +2023-10-24 21:14:21.325748584+00:00,1 +2023-10-24 21:14:21.453666829+00:00,1 +2023-10-24 21:14:21.582409076+00:00,1 +2023-10-24 21:14:21.710146859+00:00,1 +2023-10-24 21:14:21.839593179+00:00,1 +2023-10-24 21:14:21.967477344+00:00,1 +2023-10-24 21:14:22.095392125+00:00,1 +2023-10-24 21:14:22.223433914+00:00,1 +2023-10-24 21:14:22.351538411+00:00,1 +2023-10-24 21:14:22.480143673+00:00,1 +2023-10-24 21:14:22.609035835+00:00,1 +2023-10-24 21:14:22.736762771+00:00,1 +2023-10-24 21:14:22.864590162+00:00,1 +2023-10-24 21:14:22.992059890+00:00,1 +2023-10-24 21:14:23.120095938+00:00,1 +2023-10-24 21:14:23.247041538+00:00,1 +2023-10-24 21:14:23.374364131+00:00,1 +2023-10-24 21:14:23.500277610+00:00,1 +2023-10-24 21:14:23.627549518+00:00,1 +2023-10-24 21:14:23.754060852+00:00,1 +2023-10-24 21:14:23.881946308+00:00,1 +2023-10-24 21:14:24.008593357+00:00,1 +2023-10-24 21:14:24.135708001+00:00,1 +2023-10-24 21:14:24.262781964+00:00,1 +2023-10-24 21:14:24.390081947+00:00,1 +2023-10-24 21:14:24.517058141+00:00,1 +2023-10-24 21:14:24.645839856+00:00,1 +2023-10-24 21:14:24.773001592+00:00,1 +2023-10-24 21:14:24.900688806+00:00,1 +2023-10-24 21:14:25.028891595+00:00,1 +2023-10-24 21:14:25.158763515+00:00,1 +2023-10-24 21:14:25.285810067+00:00,1 +2023-10-24 21:14:25.415236089+00:00,1 +2023-10-24 21:14:25.542143985+00:00,1 +2023-10-24 21:14:25.669776655+00:00,1 +2023-10-24 21:14:25.798149775+00:00,1 +2023-10-24 21:14:25.925871661+00:00,1 +2023-10-24 21:14:26.053830108+00:00,1 +2023-10-24 21:14:26.181068870+00:00,1 +2023-10-24 21:14:26.309660447+00:00,1 +2023-10-24 21:14:26.437092219+00:00,1 +2023-10-24 21:14:26.565386515+00:00,1 +2023-10-24 21:14:26.692414875+00:00,1 +2023-10-24 21:14:26.821168434+00:00,1 +2023-10-24 21:14:26.948943234+00:00,1 +2023-10-24 21:14:27.076757308+00:00,1 +2023-10-24 21:14:27.206629101+00:00,1 +2023-10-24 21:14:27.334617876+00:00,1 +2023-10-24 21:14:27.462413128+00:00,1 +2023-10-24 21:14:27.589078082+00:00,1 +2023-10-24 21:14:27.717182511+00:00,1 +2023-10-24 21:14:27.844615644+00:00,1 +2023-10-24 21:14:27.972566057+00:00,1 +2023-10-24 21:14:28.100435579+00:00,1 +2023-10-24 21:14:28.227036245+00:00,1 +2023-10-24 21:14:28.354255765+00:00,1 +2023-10-24 21:14:28.480859160+00:00,1 +2023-10-24 21:14:28.607921928+00:00,1 +2023-10-24 21:14:28.735559041+00:00,1 +2023-10-24 21:14:28.863490656+00:00,1 +2023-10-24 21:14:28.991544436+00:00,1 +2023-10-24 21:14:29.118494805+00:00,1 +2023-10-24 21:14:29.246185505+00:00,1 +2023-10-24 21:14:29.374038284+00:00,1 +2023-10-24 21:14:29.502682229+00:00,1 +2023-10-24 21:14:29.631550267+00:00,1 +2023-10-24 21:14:29.760791487+00:00,1 +2023-10-24 21:14:29.889195717+00:00,1 +2023-10-24 21:14:30.016355913+00:00,1 +2023-10-24 21:14:30.143890544+00:00,1 +2023-10-24 21:14:30.271463133+00:00,1 +2023-10-24 21:14:30.401195206+00:00,1 +2023-10-24 21:14:30.528017313+00:00,1 +2023-10-24 21:14:30.655402770+00:00,1 +2023-10-24 21:14:30.783707387+00:00,1 +2023-10-24 21:14:30.911119971+00:00,1 +2023-10-24 21:14:31.039060951+00:00,1 +2023-10-24 21:14:31.167485286+00:00,1 +2023-10-24 21:14:31.294268303+00:00,1 +2023-10-24 21:14:31.421981741+00:00,1 +2023-10-24 21:14:31.549101758+00:00,1 +2023-10-24 21:14:31.676208418+00:00,1 +2023-10-24 21:14:31.804378501+00:00,1 +2023-10-24 21:14:31.931892233+00:00,1 +2023-10-24 21:14:32.060437172+00:00,1 +2023-10-24 21:14:32.189324581+00:00,1 +2023-10-24 21:14:32.318997318+00:00,1 +2023-10-24 21:14:32.446260179+00:00,1 +2023-10-24 21:14:32.572971245+00:00,1 +2023-10-24 21:14:32.699917145+00:00,1 +2023-10-24 21:14:32.828172264+00:00,1 +2023-10-24 21:14:32.955147204+00:00,1 +2023-10-24 21:14:33.082373963+00:00,1 +2023-10-24 21:14:33.209920909+00:00,1 +2023-10-24 21:14:33.337889641+00:00,1 +2023-10-24 21:14:33.465423037+00:00,1 +2023-10-24 21:14:33.593453981+00:00,1 +2023-10-24 21:14:33.721790962+00:00,1 +2023-10-24 21:14:33.848299922+00:00,1 +2023-10-24 21:14:33.976847771+00:00,1 +2023-10-24 21:14:34.105251366+00:00,1 +2023-10-24 21:14:34.232020321+00:00,1 +2023-10-24 21:14:34.359426711+00:00,1 +2023-10-24 21:14:34.486446720+00:00,1 +2023-10-24 21:14:34.613578128+00:00,1 +2023-10-24 21:14:34.741057255+00:00,1 +2023-10-24 21:14:34.868368256+00:00,1 +2023-10-24 21:14:34.995648875+00:00,1 +2023-10-24 21:14:35.123408973+00:00,1 +2023-10-24 21:14:35.250607994+00:00,1 +2023-10-24 21:14:35.380096017+00:00,1 +2023-10-24 21:14:35.508250990+00:00,1 +2023-10-24 21:14:35.636541650+00:00,1 +2023-10-24 21:14:35.764857374+00:00,1 +2023-10-24 21:14:35.893455547+00:00,1 +2023-10-24 21:14:36.019929801+00:00,1 +2023-10-24 21:14:36.148872827+00:00,1 +2023-10-24 21:14:36.276972969+00:00,1 +2023-10-24 21:14:36.404830593+00:00,1 +2023-10-24 21:14:36.533181886+00:00,1 +2023-10-24 21:14:36.660835833+00:00,1 +2023-10-24 21:14:36.791043097+00:00,1 +2023-10-24 21:14:36.919825266+00:00,1 +2023-10-24 21:14:37.047325143+00:00,1 +2023-10-24 21:14:37.175885185+00:00,1 +2023-10-24 21:14:37.303472972+00:00,1 +2023-10-24 21:14:37.431612010+00:00,1 +2023-10-24 21:14:37.560128067+00:00,1 +2023-10-24 21:14:37.688666614+00:00,1 +2023-10-24 21:14:37.818726218+00:00,1 +2023-10-24 21:14:37.946492832+00:00,1 +2023-10-24 21:14:38.075182261+00:00,1 +2023-10-24 21:14:38.203216043+00:00,1 +2023-10-24 21:14:38.331161450+00:00,1 +2023-10-24 21:14:38.461673394+00:00,1 +2023-10-24 21:14:38.590168814+00:00,1 +2023-10-24 21:14:38.719655417+00:00,1 +2023-10-24 21:14:38.849427899+00:00,1 +2023-10-24 21:14:38.977759849+00:00,1 +2023-10-24 21:14:39.108995938+00:00,1 +2023-10-24 21:14:39.237631007+00:00,1 +2023-10-24 21:14:39.365802133+00:00,1 +2023-10-24 21:14:39.493918625+00:00,1 +2023-10-24 21:14:39.621965354+00:00,1 +2023-10-24 21:14:39.750015802+00:00,1 +2023-10-24 21:14:39.879685490+00:00,1 +2023-10-24 21:14:40.008252871+00:00,1 +2023-10-24 21:14:40.136413626+00:00,1 +2023-10-24 21:14:40.264411686+00:00,1 +2023-10-24 21:14:40.391818237+00:00,1 +2023-10-24 21:14:40.519905685+00:00,1 +2023-10-24 21:14:40.647139494+00:00,1 +2023-10-24 21:14:40.776109930+00:00,1 +2023-10-24 21:14:40.903996219+00:00,1 +2023-10-24 21:14:41.032898037+00:00,1 +2023-10-24 21:14:41.160791954+00:00,1 +2023-10-24 21:14:41.289614770+00:00,1 +2023-10-24 21:14:41.416370212+00:00,1 +2023-10-24 21:14:41.543712697+00:00,1 +2023-10-24 21:14:41.672540417+00:00,1 +2023-10-24 21:14:41.799891884+00:00,1 +2023-10-24 21:14:41.928718588+00:00,1 +2023-10-24 21:14:42.057613446+00:00,1 +2023-10-24 21:14:42.185614255+00:00,1 +2023-10-24 21:14:42.315319683+00:00,1 +2023-10-24 21:14:42.446034985+00:00,1 +2023-10-24 21:14:42.574014480+00:00,1 +2023-10-24 21:14:42.703527033+00:00,1 +2023-10-24 21:14:42.830907401+00:00,1 +2023-10-24 21:14:42.959980495+00:00,1 +2023-10-24 21:14:43.087243200+00:00,1 +2023-10-24 21:14:43.214051639+00:00,1 +2023-10-24 21:14:43.343674657+00:00,1 +2023-10-24 21:14:43.471633402+00:00,1 +2023-10-24 21:14:43.599229308+00:00,1 +2023-10-24 21:14:43.726769466+00:00,1 +2023-10-24 21:14:43.856228139+00:00,1 +2023-10-24 21:14:43.982642751+00:00,1 +2023-10-24 21:14:44.110016820+00:00,1 +2023-10-24 21:14:44.237604944+00:00,1 +2023-10-24 21:14:44.365789012+00:00,1 +2023-10-24 21:14:44.494794462+00:00,1 +2023-10-24 21:14:44.622077570+00:00,1 +2023-10-24 21:14:44.750210588+00:00,1 +2023-10-24 21:14:44.877676779+00:00,1 +2023-10-24 21:14:45.005808407+00:00,1 +2023-10-24 21:14:45.132845678+00:00,1 +2023-10-24 21:14:45.260218079+00:00,1 +2023-10-24 21:14:45.390040447+00:00,1 +2023-10-24 21:14:45.518069540+00:00,1 +2023-10-24 21:14:45.645786772+00:00,1 +2023-10-24 21:14:45.772325244+00:00,1 +2023-10-24 21:14:45.899790934+00:00,1 +2023-10-24 21:14:46.026659986+00:00,1 +2023-10-24 21:14:46.154675242+00:00,1 +2023-10-24 21:14:46.282786684+00:00,1 +2023-10-24 21:14:46.411150798+00:00,1 +2023-10-24 21:14:46.538652722+00:00,1 +2023-10-24 21:14:46.666600212+00:00,1 +2023-10-24 21:14:46.794068678+00:00,1 +2023-10-24 21:14:46.923347987+00:00,1 +2023-10-24 21:14:47.050424864+00:00,1 +2023-10-24 21:14:47.181815907+00:00,1 +2023-10-24 21:14:47.310324712+00:00,1 +2023-10-24 21:14:47.438869141+00:00,1 +2023-10-24 21:14:47.566491674+00:00,1 +2023-10-24 21:14:47.694533950+00:00,1 +2023-10-24 21:14:47.822216771+00:00,1 +2023-10-24 21:14:47.950869492+00:00,1 +2023-10-24 21:14:48.078854506+00:00,1 +2023-10-24 21:14:48.210384201+00:00,1 +2023-10-24 21:14:48.340200729+00:00,1 +2023-10-24 21:14:48.468707501+00:00,1 +2023-10-24 21:14:48.597461143+00:00,1 +2023-10-24 21:14:48.725630545+00:00,1 +2023-10-24 21:14:48.852649618+00:00,1 +2023-10-24 21:14:48.983670630+00:00,1 +2023-10-24 21:14:49.112835019+00:00,1 +2023-10-24 21:14:49.240330537+00:00,1 +2023-10-24 21:14:49.368217370+00:00,1 +2023-10-24 21:14:49.496329202+00:00,1 +2023-10-24 21:14:49.623931650+00:00,1 +2023-10-24 21:14:49.752762584+00:00,1 +2023-10-24 21:14:49.880566993+00:00,1 +2023-10-24 21:14:50.007214868+00:00,1 +2023-10-24 21:14:50.134729979+00:00,1 +2023-10-24 21:14:50.263525849+00:00,1 +2023-10-24 21:14:50.391849610+00:00,1 +2023-10-24 21:14:50.518387557+00:00,1 +2023-10-24 21:14:50.645285918+00:00,1 +2023-10-24 21:14:50.772926208+00:00,1 +2023-10-24 21:14:50.900431821+00:00,1 +2023-10-24 21:14:51.029163294+00:00,1 +2023-10-24 21:14:51.158239817+00:00,1 +2023-10-24 21:14:51.287167828+00:00,1 +2023-10-24 21:14:51.414543787+00:00,1 +2023-10-24 21:14:51.542916974+00:00,1 +2023-10-24 21:14:51.670732220+00:00,1 +2023-10-24 21:14:51.798773742+00:00,1 +2023-10-24 21:14:51.926612539+00:00,1 +2023-10-24 21:14:52.054084219+00:00,1 +2023-10-24 21:14:52.181339462+00:00,1 +2023-10-24 21:14:52.309772547+00:00,1 +2023-10-24 21:14:52.437654159+00:00,1 +2023-10-24 21:14:52.565447982+00:00,1 +2023-10-24 21:14:52.694421351+00:00,1 +2023-10-24 21:14:52.822635773+00:00,1 +2023-10-24 21:14:52.951004179+00:00,1 +2023-10-24 21:14:53.078147989+00:00,1 +2023-10-24 21:14:53.204689813+00:00,1 +2023-10-24 21:14:53.332623191+00:00,1 +2023-10-24 21:14:53.459872946+00:00,1 +2023-10-24 21:14:53.587717536+00:00,1 +2023-10-24 21:14:53.716179847+00:00,1 +2023-10-24 21:14:53.844826597+00:00,1 +2023-10-24 21:14:53.972394687+00:00,1 +2023-10-24 21:14:54.100434419+00:00,1 +2023-10-24 21:14:54.228191270+00:00,1 +2023-10-24 21:14:54.355468425+00:00,1 +2023-10-24 21:14:54.482525534+00:00,1 +2023-10-24 21:14:54.609979680+00:00,1 +2023-10-24 21:14:54.737661134+00:00,1 +2023-10-24 21:14:54.864960843+00:00,1 +2023-10-24 21:14:54.992550006+00:00,1 +2023-10-24 21:14:55.121069106+00:00,1 +2023-10-24 21:14:55.248839507+00:00,1 +2023-10-24 21:14:55.376593385+00:00,1 +2023-10-24 21:14:55.504316095+00:00,1 +2023-10-24 21:14:55.632883823+00:00,1 +2023-10-24 21:14:55.761960181+00:00,1 +2023-10-24 21:14:55.889719180+00:00,1 +2023-10-24 21:14:56.017053043+00:00,1 +2023-10-24 21:14:56.144993270+00:00,1 +2023-10-24 21:14:56.272836428+00:00,1 +2023-10-24 21:14:56.400112548+00:00,1 +2023-10-24 21:14:56.527900586+00:00,1 +2023-10-24 21:14:56.654825169+00:00,1 +2023-10-24 21:14:56.781985798+00:00,1 +2023-10-24 21:14:56.909958859+00:00,1 +2023-10-24 21:14:57.037706360+00:00,1 +2023-10-24 21:14:57.165063584+00:00,1 +2023-10-24 21:14:57.293459080+00:00,1 +2023-10-24 21:14:57.422972972+00:00,1 +2023-10-24 21:14:57.550640003+00:00,1 +2023-10-24 21:14:57.678283770+00:00,1 +2023-10-24 21:14:57.805791821+00:00,1 +2023-10-24 21:14:57.934487178+00:00,1 +2023-10-24 21:14:58.061405431+00:00,1 +2023-10-24 21:14:58.188473782+00:00,1 +2023-10-24 21:14:58.316106335+00:00,1 +2023-10-24 21:14:58.445169399+00:00,1 +2023-10-24 21:14:58.573037258+00:00,1 +2023-10-24 21:14:58.699791613+00:00,1 +2023-10-24 21:14:58.831398188+00:00,1 +2023-10-24 21:14:58.960012902+00:00,1 +2023-10-24 21:14:59.087054162+00:00,1 +2023-10-24 21:14:59.213962324+00:00,1 +2023-10-24 21:14:59.342582455+00:00,1 +2023-10-24 21:14:59.469089072+00:00,1 +2023-10-24 21:14:59.596103494+00:00,1 +2023-10-24 21:14:59.722964580+00:00,1 +2023-10-24 21:14:59.849770557+00:00,1 +2023-10-24 21:14:59.977497141+00:00,1 +2023-10-24 21:15:00.104963471+00:00,1 +2023-10-24 21:15:00.232055847+00:00,1 +2023-10-24 21:15:00.360213739+00:00,1 +2023-10-24 21:15:00.487841696+00:00,1 +2023-10-24 21:15:00.614748520+00:00,1 +2023-10-24 21:15:00.741786260+00:00,1 +2023-10-24 21:15:00.870637100+00:00,1 +2023-10-24 21:15:01.000300056+00:00,1 +2023-10-24 21:15:01.127556291+00:00,1 +2023-10-24 21:15:01.255055931+00:00,1 +2023-10-24 21:15:01.381431575+00:00,1 +2023-10-24 21:15:01.508740931+00:00,1 +2023-10-24 21:15:01.635819194+00:00,1 +2023-10-24 21:15:01.763131685+00:00,1 +2023-10-24 21:15:01.891595440+00:00,1 +2023-10-24 21:15:02.019775443+00:00,1 +2023-10-24 21:15:02.148515338+00:00,1 +2023-10-24 21:15:02.276373240+00:00,1 +2023-10-24 21:15:02.403629630+00:00,1 +2023-10-24 21:15:02.531287427+00:00,1 +2023-10-24 21:15:02.660101592+00:00,1 +2023-10-24 21:15:02.787416373+00:00,1 +2023-10-24 21:15:02.914794315+00:00,1 +2023-10-24 21:15:03.042524740+00:00,1 +2023-10-24 21:15:03.169807115+00:00,1 +2023-10-24 21:15:03.297065902+00:00,1 +2023-10-24 21:15:03.425631624+00:00,1 +2023-10-24 21:15:03.554078296+00:00,1 +2023-10-24 21:15:03.681523071+00:00,1 +2023-10-24 21:15:03.809268957+00:00,1 +2023-10-24 21:15:03.936594020+00:00,1 +2023-10-24 21:15:04.064140657+00:00,1 +2023-10-24 21:15:04.191880152+00:00,1 +2023-10-24 21:15:04.320273682+00:00,1 +2023-10-24 21:15:04.447759128+00:00,1 +2023-10-24 21:15:04.574885925+00:00,1 +2023-10-24 21:15:04.702348558+00:00,1 +2023-10-24 21:15:04.830554832+00:00,1 +2023-10-24 21:15:04.958719702+00:00,1 +2023-10-24 21:15:05.086751072+00:00,1 +2023-10-24 21:15:05.214716048+00:00,1 +2023-10-24 21:15:05.342275000+00:00,1 +2023-10-24 21:15:05.469739791+00:00,1 +2023-10-24 21:15:05.597433383+00:00,1 +2023-10-24 21:15:05.725221380+00:00,1 +2023-10-24 21:15:05.853045004+00:00,1 +2023-10-24 21:15:05.981646671+00:00,1 +2023-10-24 21:15:06.109026819+00:00,1 +2023-10-24 21:15:06.237078594+00:00,1 +2023-10-24 21:15:06.364039174+00:00,1 +2023-10-24 21:15:06.491588926+00:00,1 +2023-10-24 21:15:06.619572998+00:00,1 +2023-10-24 21:15:06.749185447+00:00,1 +2023-10-24 21:15:06.877366414+00:00,1 +2023-10-24 21:15:07.005512716+00:00,1 +2023-10-24 21:15:07.134334179+00:00,1 +2023-10-24 21:15:07.262842013+00:00,1 +2023-10-24 21:15:07.390255896+00:00,1 +2023-10-24 21:15:07.517669930+00:00,1 +2023-10-24 21:15:07.645355217+00:00,1 +2023-10-24 21:15:07.770173109+00:00,1 +2023-10-24 21:15:07.895298635+00:00,1 +2023-10-24 21:15:08.020537187+00:00,1 +2023-10-24 21:15:08.145176659+00:00,1 +2023-10-24 21:15:08.270853289+00:00,1 +2023-10-24 21:15:09.407354648+00:00,1 +2023-10-24 21:15:09.533119492+00:00,1 +2023-10-24 21:15:09.658165147+00:00,1 +2023-10-24 21:15:09.783362769+00:00,1 +2023-10-24 21:15:09.910180821+00:00,1 +2023-10-24 21:15:17.130268615+00:00,1 +2023-10-24 21:15:17.256199523+00:00,1 +2023-10-24 21:15:17.381918696+00:00,1 +2023-10-24 21:15:17.508232607+00:00,1 +2023-10-24 21:15:17.634535229+00:00,1 +2023-10-24 21:15:17.761224186+00:00,1 +2023-10-24 21:15:17.886874607+00:00,1 +2023-10-24 21:15:18.012327960+00:00,1 +2023-10-24 21:15:18.137592496+00:00,1 +2023-10-24 21:15:18.264168773+00:00,1 +2023-10-24 21:15:18.390335773+00:00,1 +2023-10-24 21:15:18.516177735+00:00,1 +2023-10-24 21:15:18.642449987+00:00,1 +2023-10-24 21:15:18.768118596+00:00,1 +2023-10-24 21:15:18.894144249+00:00,1 +2023-10-24 21:15:19.020275051+00:00,1 +2023-10-24 21:15:19.146828112+00:00,1 +2023-10-24 21:15:19.272855659+00:00,1 +2023-10-24 21:15:19.400053439+00:00,1 +2023-10-24 21:15:19.526344017+00:00,1 +2023-10-24 21:15:19.653431751+00:00,1 +2023-10-24 21:15:19.779648583+00:00,1 +2023-10-24 21:15:19.905861920+00:00,1 +2023-10-24 21:15:21.097928457+00:00,1 +2023-10-24 21:15:21.224005959+00:00,1 +2023-10-24 21:15:21.349939894+00:00,1 +2023-10-24 21:15:21.475985463+00:00,1 +2023-10-24 21:15:21.602859118+00:00,1 +2023-10-24 21:15:21.730155385+00:00,1 +2023-10-24 21:15:21.857447273+00:00,1 +2023-10-24 21:15:21.984094869+00:00,1 +2023-10-24 21:15:22.110241592+00:00,1 +2023-10-24 21:15:22.236623044+00:00,1 +2023-10-24 21:15:22.362770435+00:00,1 +2023-10-24 21:15:22.488237616+00:00,1 +2023-10-24 21:15:22.614000140+00:00,1 +2023-10-24 21:15:22.740285084+00:00,1 +2023-10-24 21:15:22.866047617+00:00,1 +2023-10-24 21:15:22.992271239+00:00,1 +2023-10-24 21:15:23.117251648+00:00,1 +2023-10-24 21:15:23.244003806+00:00,1 +2023-10-24 21:15:23.369497327+00:00,1 +2023-10-24 21:15:23.496194919+00:00,1 +2023-10-24 21:15:23.622432865+00:00,1 +2023-10-24 21:15:23.747674758+00:00,1 +2023-10-24 21:15:23.875059161+00:00,1 +2023-10-24 21:15:24.001425366+00:00,1 +2023-10-24 21:15:24.127197777+00:00,1 +2023-10-24 21:15:24.251959211+00:00,1 +2023-10-24 21:15:24.379529150+00:00,1 +2023-10-24 21:15:24.507315886+00:00,1 +2023-10-24 21:15:24.633135281+00:00,1 +2023-10-24 21:15:24.759338064+00:00,1 +2023-10-24 21:15:24.885574079+00:00,1 +2023-10-24 21:15:25.012713118+00:00,1 +2023-10-24 21:15:25.141675723+00:00,1 +2023-10-24 21:15:25.267681665+00:00,1 +2023-10-24 21:15:26.400525305+00:00,1 +2023-10-24 21:15:26.527566100+00:00,1 +2023-10-24 21:15:26.653255778+00:00,1 +2023-10-24 21:15:26.778442415+00:00,1 +2023-10-24 21:15:26.903408206+00:00,1 +2023-10-24 21:15:27.029358631+00:00,1 +2023-10-24 21:15:27.155316651+00:00,1 +2023-10-24 21:15:27.281236025+00:00,1 +2023-10-24 21:15:27.407365796+00:00,1 +2023-10-24 21:15:28.586822653+00:00,1 +2023-10-24 21:15:28.713126822+00:00,1 +2023-10-24 21:15:28.838509949+00:00,1 +2023-10-24 21:15:28.965339089+00:00,1 +2023-10-24 21:15:29.091119764+00:00,1 +2023-10-24 21:15:29.216094021+00:00,1 +2023-10-24 21:15:29.341143314+00:00,1 +2023-10-24 21:15:29.465610442+00:00,1 +2023-10-24 21:15:29.592103104+00:00,1 +2023-10-24 21:15:29.717224809+00:00,1 +2023-10-24 21:15:29.842988211+00:00,1 +2023-10-24 21:15:29.968649964+00:00,1 +2023-10-24 21:15:30.093681068+00:00,1 +2023-10-24 21:15:30.219898811+00:00,1 +2023-10-24 21:15:30.345125178+00:00,1 +2023-10-24 21:15:30.470563800+00:00,1 +2023-10-24 21:15:30.596160479+00:00,1 +2023-10-24 21:15:30.722787852+00:00,1 +2023-10-24 21:15:30.848931534+00:00,1 +2023-10-24 21:15:30.974502032+00:00,1 +2023-10-24 21:15:31.102390697+00:00,1 +2023-10-24 21:15:31.227510566+00:00,1 +2023-10-24 21:15:31.353515052+00:00,1 +2023-10-24 21:15:31.478085097+00:00,1 +2023-10-24 21:15:31.605969805+00:00,1 +2023-10-24 21:15:31.731027885+00:00,1 +2023-10-24 21:15:31.857237939+00:00,1 +2023-10-24 21:15:31.982508869+00:00,1 +2023-10-24 21:15:32.108890254+00:00,1 +2023-10-24 21:15:32.235827458+00:00,1 +2023-10-24 21:15:32.362160844+00:00,1 +2023-10-24 21:15:32.487736395+00:00,1 +2023-10-24 21:15:32.613323858+00:00,1 +2023-10-24 21:15:32.740320719+00:00,1 +2023-10-24 21:15:32.866682474+00:00,1 +2023-10-24 21:15:32.993052007+00:00,1 +2023-10-24 21:15:33.118008147+00:00,1 +2023-10-24 21:15:33.246939560+00:00,1 +2023-10-24 21:15:33.372195890+00:00,1 +2023-10-24 21:15:33.497472938+00:00,1 +2023-10-24 21:15:33.624235256+00:00,1 +2023-10-24 21:15:33.750659931+00:00,1 +2023-10-24 21:15:33.876414437+00:00,1 +2023-10-24 21:15:34.002620833+00:00,1 +2023-10-24 21:15:34.129145364+00:00,1 +2023-10-24 21:15:34.254257006+00:00,1 +2023-10-24 21:15:34.380687177+00:00,1 +2023-10-24 21:15:34.505580095+00:00,1 +2023-10-24 21:15:34.630611542+00:00,1 +2023-10-24 21:15:34.756205329+00:00,1 +2023-10-24 21:15:34.881124421+00:00,1 +2023-10-24 21:15:35.007565418+00:00,1 +2023-10-24 21:15:35.132828744+00:00,1 +2023-10-24 21:15:35.258445476+00:00,1 +2023-10-24 21:15:35.384409783+00:00,1 +2023-10-24 21:15:36.561049556+00:00,1 +2023-10-24 21:15:36.689300536+00:00,1 +2023-10-24 21:15:36.816043751+00:00,1 +2023-10-24 21:15:36.942953335+00:00,1 +2023-10-24 21:15:37.069577824+00:00,1 +2023-10-24 21:15:37.197014009+00:00,1 +2023-10-24 21:15:37.324544932+00:00,1 +2023-10-24 21:15:37.454564292+00:00,1 +2023-10-24 21:15:37.583960429+00:00,1 +2023-10-24 21:15:37.710795768+00:00,1 +2023-10-24 21:15:37.838985908+00:00,1 +2023-10-24 21:15:37.970358486+00:00,1 +2023-10-24 21:15:38.100616315+00:00,1 +2023-10-24 21:15:38.229746545+00:00,1 +2023-10-24 21:15:38.359725665+00:00,1 +2023-10-24 21:15:38.488562471+00:00,1 +2023-10-24 21:15:38.617565738+00:00,1 +2023-10-24 21:15:38.745685018+00:00,1 +2023-10-24 21:15:38.873831398+00:00,1 +2023-10-24 21:15:39.002805046+00:00,1 +2023-10-24 21:15:39.130224125+00:00,1 +2023-10-24 21:15:39.259297618+00:00,1 +2023-10-24 21:15:39.386921801+00:00,1 +2023-10-24 21:15:39.515625289+00:00,1 +2023-10-24 21:15:39.645196654+00:00,1 +2023-10-24 21:15:39.773335541+00:00,1 +2023-10-24 21:15:39.901799240+00:00,1 +2023-10-24 21:15:40.030260116+00:00,1 +2023-10-24 21:15:40.158178624+00:00,1 +2023-10-24 21:15:40.286062452+00:00,1 +2023-10-24 21:15:40.415637387+00:00,1 +2023-10-24 21:15:40.544026432+00:00,1 +2023-10-24 21:15:40.673018814+00:00,1 +2023-10-24 21:15:40.800567073+00:00,1 +2023-10-24 21:15:40.928771080+00:00,1 +2023-10-24 21:15:41.057021483+00:00,1 +2023-10-24 21:15:41.184968476+00:00,1 +2023-10-24 21:15:41.313090100+00:00,1 +2023-10-24 21:15:41.440589350+00:00,1 +2023-10-24 21:15:41.570552903+00:00,1 +2023-10-24 21:15:41.697798879+00:00,1 +2023-10-24 21:15:41.825876619+00:00,1 +2023-10-24 21:15:41.955118431+00:00,1 +2023-10-24 21:15:42.082980525+00:00,1 +2023-10-24 21:15:42.211630044+00:00,1 +2023-10-24 21:15:42.340087931+00:00,1 +2023-10-24 21:15:42.467385018+00:00,1 +2023-10-24 21:15:42.594225673+00:00,1 +2023-10-24 21:15:42.721232242+00:00,1 +2023-10-24 21:15:42.848749129+00:00,1 +2023-10-24 21:15:42.976424576+00:00,1 +2023-10-24 21:15:43.103873469+00:00,1 +2023-10-24 21:15:43.232374795+00:00,1 +2023-10-24 21:15:43.360830039+00:00,1 +2023-10-24 21:15:43.491261217+00:00,1 +2023-10-24 21:15:43.618739329+00:00,1 +2023-10-24 21:15:43.746167481+00:00,1 +2023-10-24 21:15:43.874194495+00:00,1 +2023-10-24 21:15:44.003898550+00:00,1 +2023-10-24 21:15:44.131867388+00:00,1 +2023-10-24 21:15:44.260381592+00:00,1 +2023-10-24 21:15:44.388369716+00:00,1 +2023-10-24 21:15:44.516350410+00:00,1 +2023-10-24 21:15:44.644044712+00:00,1 +2023-10-24 21:15:44.772942488+00:00,1 +2023-10-24 21:15:44.902584150+00:00,1 +2023-10-24 21:15:45.030605224+00:00,1 +2023-10-24 21:15:45.160281641+00:00,1 +2023-10-24 21:15:45.288960417+00:00,1 +2023-10-24 21:15:45.415881313+00:00,1 +2023-10-24 21:15:45.542826503+00:00,1 +2023-10-24 21:15:45.670392075+00:00,1 +2023-10-24 21:15:45.797428655+00:00,1 +2023-10-24 21:15:45.925779914+00:00,1 +2023-10-24 21:15:46.053347955+00:00,1 +2023-10-24 21:15:46.180537600+00:00,1 +2023-10-24 21:15:46.309205160+00:00,1 +2023-10-24 21:15:46.437365416+00:00,1 +2023-10-24 21:15:46.565122576+00:00,1 +2023-10-24 21:15:46.692829284+00:00,1 +2023-10-24 21:15:46.819896931+00:00,1 +2023-10-24 21:15:46.947811259+00:00,1 +2023-10-24 21:15:47.075773524+00:00,1 +2023-10-24 21:15:47.203613525+00:00,1 +2023-10-24 21:15:47.332752223+00:00,1 +2023-10-24 21:15:47.459986723+00:00,1 +2023-10-24 21:15:47.588532227+00:00,1 +2023-10-24 21:15:47.716153137+00:00,1 +2023-10-24 21:15:47.844454663+00:00,1 +2023-10-24 21:15:47.972525802+00:00,1 +2023-10-24 21:15:48.100334725+00:00,1 +2023-10-24 21:15:48.227477007+00:00,1 +2023-10-24 21:15:48.355329533+00:00,1 +2023-10-24 21:15:48.484938593+00:00,1 +2023-10-24 21:15:48.612482791+00:00,1 +2023-10-24 21:15:48.740846937+00:00,1 +2023-10-24 21:15:48.869665455+00:00,1 +2023-10-24 21:15:48.997828801+00:00,1 +2023-10-24 21:15:49.125507451+00:00,1 +2023-10-24 21:15:49.253117909+00:00,1 +2023-10-24 21:15:49.380561106+00:00,1 +2023-10-24 21:15:49.508648844+00:00,1 +2023-10-24 21:15:49.635642567+00:00,1 +2023-10-24 21:15:49.764018414+00:00,1 +2023-10-24 21:15:49.892993970+00:00,1 +2023-10-24 21:15:50.021014206+00:00,1 +2023-10-24 21:15:50.149250074+00:00,1 +2023-10-24 21:15:50.278313744+00:00,1 +2023-10-24 21:15:50.406883145+00:00,1 +2023-10-24 21:15:50.534538177+00:00,1 +2023-10-24 21:15:50.662647444+00:00,1 +2023-10-24 21:15:50.791440070+00:00,1 +2023-10-24 21:15:50.918498926+00:00,1 +2023-10-24 21:15:51.046000879+00:00,1 +2023-10-24 21:15:51.175330324+00:00,1 +2023-10-24 21:15:51.303080793+00:00,1 +2023-10-24 21:15:51.430825661+00:00,1 +2023-10-24 21:15:51.558851890+00:00,1 +2023-10-24 21:15:51.685900899+00:00,1 +2023-10-24 21:15:51.813373232+00:00,1 +2023-10-24 21:15:51.941039002+00:00,1 +2023-10-24 21:15:52.068176522+00:00,1 +2023-10-24 21:15:52.196593050+00:00,1 +2023-10-24 21:15:52.324032083+00:00,1 +2023-10-24 21:15:52.451863525+00:00,1 +2023-10-24 21:15:52.580707298+00:00,1 +2023-10-24 21:15:52.709274945+00:00,1 +2023-10-24 21:15:52.837177972+00:00,1 +2023-10-24 21:15:52.965448631+00:00,1 +2023-10-24 21:15:53.095233840+00:00,1 +2023-10-24 21:15:53.222026637+00:00,1 +2023-10-24 21:15:53.349767279+00:00,1 +2023-10-24 21:15:53.478607689+00:00,1 +2023-10-24 21:15:53.606280785+00:00,1 +2023-10-24 21:15:53.734936953+00:00,1 +2023-10-24 21:15:53.863266111+00:00,1 +2023-10-24 21:15:53.990904479+00:00,1 +2023-10-24 21:15:54.118258460+00:00,1 +2023-10-24 21:15:54.246766361+00:00,1 +2023-10-24 21:15:54.374377636+00:00,1 +2023-10-24 21:15:54.502917436+00:00,1 +2023-10-24 21:15:54.630035104+00:00,1 +2023-10-24 21:15:54.757213836+00:00,1 +2023-10-24 21:15:54.885233242+00:00,1 +2023-10-24 21:15:55.015085855+00:00,1 +2023-10-24 21:15:55.142991074+00:00,1 +2023-10-24 21:15:55.271428794+00:00,1 +2023-10-24 21:15:55.400861272+00:00,1 +2023-10-24 21:15:55.529405177+00:00,1 +2023-10-24 21:15:55.660464783+00:00,1 +2023-10-24 21:15:55.788301851+00:00,1 +2023-10-24 21:15:55.916387689+00:00,1 +2023-10-24 21:15:56.046355300+00:00,1 +2023-10-24 21:15:56.173890112+00:00,1 +2023-10-24 21:15:56.300877225+00:00,1 +2023-10-24 21:15:56.428423062+00:00,1 +2023-10-24 21:15:56.555690287+00:00,1 +2023-10-24 21:15:56.684517992+00:00,1 +2023-10-24 21:15:56.812931190+00:00,1 +2023-10-24 21:15:56.940537398+00:00,1 +2023-10-24 21:15:57.069049722+00:00,1 +2023-10-24 21:15:57.197075145+00:00,1 +2023-10-24 21:15:57.324377974+00:00,1 +2023-10-24 21:15:57.452935309+00:00,1 +2023-10-24 21:15:57.580829748+00:00,1 +2023-10-24 21:15:57.709995223+00:00,1 +2023-10-24 21:15:57.839324234+00:00,1 +2023-10-24 21:15:57.969508724+00:00,1 +2023-10-24 21:15:58.097384334+00:00,1 +2023-10-24 21:15:58.224843323+00:00,1 +2023-10-24 21:15:58.353486392+00:00,1 +2023-10-24 21:15:58.480811555+00:00,1 +2023-10-24 21:15:58.607266906+00:00,1 +2023-10-24 21:15:58.734600466+00:00,1 +2023-10-24 21:15:58.863750985+00:00,1 +2023-10-24 21:15:58.992194832+00:00,1 +2023-10-24 21:15:59.120193548+00:00,1 +2023-10-24 21:15:59.250249494+00:00,1 +2023-10-24 21:15:59.378779920+00:00,1 +2023-10-24 21:15:59.509062214+00:00,1 +2023-10-24 21:15:59.638231691+00:00,1 +2023-10-24 21:15:59.767460869+00:00,1 +2023-10-24 21:15:59.896364546+00:00,1 +2023-10-24 21:16:00.024685187+00:00,1 +2023-10-24 21:16:00.154653209+00:00,1 +2023-10-24 21:16:00.282577357+00:00,1 +2023-10-24 21:16:00.411433270+00:00,1 +2023-10-24 21:16:00.540338774+00:00,1 +2023-10-24 21:16:00.669204640+00:00,1 +2023-10-24 21:16:00.797535978+00:00,1 +2023-10-24 21:16:00.926396905+00:00,1 +2023-10-24 21:16:01.053384899+00:00,1 +2023-10-24 21:16:01.181508333+00:00,1 +2023-10-24 21:16:01.308662456+00:00,1 +2023-10-24 21:16:01.436479528+00:00,1 +2023-10-24 21:16:01.564276317+00:00,1 +2023-10-24 21:16:01.694047047+00:00,1 +2023-10-24 21:16:01.821152299+00:00,1 +2023-10-24 21:16:01.949568149+00:00,1 +2023-10-24 21:16:02.078973465+00:00,1 +2023-10-24 21:16:02.206095782+00:00,1 +2023-10-24 21:16:02.333422273+00:00,1 +2023-10-24 21:16:02.461325863+00:00,1 +2023-10-24 21:16:02.589044257+00:00,1 +2023-10-24 21:16:02.717647300+00:00,1 +2023-10-24 21:16:02.845483360+00:00,1 +2023-10-24 21:16:02.975763498+00:00,1 +2023-10-24 21:16:03.102558853+00:00,1 +2023-10-24 21:16:03.229799201+00:00,1 +2023-10-24 21:16:03.357535095+00:00,1 +2023-10-24 21:16:03.486539235+00:00,1 +2023-10-24 21:16:03.614785360+00:00,1 +2023-10-24 21:16:03.743441300+00:00,1 +2023-10-24 21:16:03.871752090+00:00,1 +2023-10-24 21:16:04.001637979+00:00,1 +2023-10-24 21:16:04.131413817+00:00,1 +2023-10-24 21:16:04.258713375+00:00,1 +2023-10-24 21:16:04.387202725+00:00,1 +2023-10-24 21:16:04.516938581+00:00,1 +2023-10-24 21:16:04.644161645+00:00,1 +2023-10-24 21:16:04.772123525+00:00,1 +2023-10-24 21:16:04.905373073+00:00,1 +2023-10-24 21:16:05.035069338+00:00,1 +2023-10-24 21:16:05.164408811+00:00,1 +2023-10-24 21:16:05.292708624+00:00,1 +2023-10-24 21:16:05.420738143+00:00,1 +2023-10-24 21:16:05.549914469+00:00,1 +2023-10-24 21:16:05.679659119+00:00,1 +2023-10-24 21:16:05.811943486+00:00,1 +2023-10-24 21:16:05.940369945+00:00,1 +2023-10-24 21:16:06.068323942+00:00,1 +2023-10-24 21:16:06.197119678+00:00,1 +2023-10-24 21:16:06.325141573+00:00,1 +2023-10-24 21:16:06.451976957+00:00,1 +2023-10-24 21:16:06.579993951+00:00,1 +2023-10-24 21:16:06.708079264+00:00,1 +2023-10-24 21:16:06.836200331+00:00,1 +2023-10-24 21:16:06.963943091+00:00,1 +2023-10-24 21:16:07.092529506+00:00,1 +2023-10-24 21:16:07.219306651+00:00,1 +2023-10-24 21:16:07.346707825+00:00,1 +2023-10-24 21:16:07.474452419+00:00,1 +2023-10-24 21:16:07.602131147+00:00,1 +2023-10-24 21:16:07.731895938+00:00,1 +2023-10-24 21:16:07.860460049+00:00,1 +2023-10-24 21:16:07.989813622+00:00,1 +2023-10-24 21:16:08.117275503+00:00,1 +2023-10-24 21:16:08.243997538+00:00,1 +2023-10-24 21:16:08.370908666+00:00,1 +2023-10-24 21:16:08.502664941+00:00,1 +2023-10-24 21:16:08.630815197+00:00,1 +2023-10-24 21:16:08.759653265+00:00,1 +2023-10-24 21:16:08.887727819+00:00,1 +2023-10-24 21:16:09.015212272+00:00,1 +2023-10-24 21:16:09.142575656+00:00,1 +2023-10-24 21:16:09.271887862+00:00,1 +2023-10-24 21:16:09.401168639+00:00,1 +2023-10-24 21:16:09.528858272+00:00,1 +2023-10-24 21:16:09.656517640+00:00,1 +2023-10-24 21:16:09.784792279+00:00,1 +2023-10-24 21:16:09.913226106+00:00,1 +2023-10-24 21:16:10.040251637+00:00,1 +2023-10-24 21:16:10.169489897+00:00,1 +2023-10-24 21:16:10.297288771+00:00,1 +2023-10-24 21:16:10.424595815+00:00,1 +2023-10-24 21:16:10.553187343+00:00,1 +2023-10-24 21:16:10.680776921+00:00,1 +2023-10-24 21:16:10.808634025+00:00,1 +2023-10-24 21:16:10.936329551+00:00,1 +2023-10-24 21:16:11.064604708+00:00,1 +2023-10-24 21:16:11.192005502+00:00,1 +2023-10-24 21:16:11.319295560+00:00,1 +2023-10-24 21:16:11.446665178+00:00,1 +2023-10-24 21:16:11.574113781+00:00,1 +2023-10-24 21:16:11.701381736+00:00,1 +2023-10-24 21:16:11.828247373+00:00,1 +2023-10-24 21:16:11.955614611+00:00,1 +2023-10-24 21:16:12.083505086+00:00,1 +2023-10-24 21:16:12.212852008+00:00,1 +2023-10-24 21:16:12.339855080+00:00,1 +2023-10-24 21:16:12.467483847+00:00,1 +2023-10-24 21:16:12.595080471+00:00,1 +2023-10-24 21:16:12.722862691+00:00,1 +2023-10-24 21:16:12.851006092+00:00,1 +2023-10-24 21:16:12.981056714+00:00,1 +2023-10-24 21:16:13.109723636+00:00,1 +2023-10-24 21:16:13.243388620+00:00,1 +2023-10-24 21:16:13.371344783+00:00,1 +2023-10-24 21:16:13.499115029+00:00,1 +2023-10-24 21:16:13.629005947+00:00,1 +2023-10-24 21:16:13.757533591+00:00,1 +2023-10-24 21:16:13.884746350+00:00,1 +2023-10-24 21:16:14.013111896+00:00,1 +2023-10-24 21:16:14.139063129+00:00,1 +2023-10-24 21:16:14.264298951+00:00,1 +2023-10-24 21:16:15.390196947+00:00,1 +2023-10-24 21:16:15.516004648+00:00,1 +2023-10-24 21:16:15.642147721+00:00,1 +2023-10-24 21:16:15.766543807+00:00,1 +2023-10-24 21:16:15.892469749+00:00,1 +2023-10-24 21:16:17.069766009+00:00,1 +2023-10-24 21:16:17.195137552+00:00,1 +2023-10-24 21:16:17.320232440+00:00,1 +2023-10-24 21:16:17.446210207+00:00,1 +2023-10-24 21:16:17.571117079+00:00,1 +2023-10-24 21:16:17.697670441+00:00,1 +2023-10-24 21:16:17.824162958+00:00,1 +2023-10-24 21:16:17.949807098+00:00,1 +2023-10-24 21:16:18.074456620+00:00,1 +2023-10-24 21:16:18.199470802+00:00,1 +2023-10-24 21:16:18.325281051+00:00,1 +2023-10-24 21:16:18.450902796+00:00,1 +2023-10-24 21:16:18.576333753+00:00,1 +2023-10-24 21:16:18.701156276+00:00,1 +2023-10-24 21:16:18.827272061+00:00,1 +2023-10-24 21:16:19.967620407+00:00,1 +2023-10-24 21:16:20.093594749+00:00,1 +2023-10-24 21:16:20.219480979+00:00,1 +2023-10-24 21:16:20.344557371+00:00,1 +2023-10-24 21:16:20.469548935+00:00,1 +2023-10-24 21:16:21.613715601+00:00,1 +2023-10-24 21:16:21.740898590+00:00,1 +2023-10-24 21:16:21.867130632+00:00,1 +2023-10-24 21:16:21.992495492+00:00,1 +2023-10-24 21:16:22.117430858+00:00,1 +2023-10-24 21:16:22.244496112+00:00,1 +2023-10-24 21:16:22.370728631+00:00,1 +2023-10-24 21:16:22.497219867+00:00,1 +2023-10-24 21:16:22.622270142+00:00,1 +2023-10-24 21:16:22.748243611+00:00,1 +2023-10-24 21:16:23.898208021+00:00,1 +2023-10-24 21:16:24.024205183+00:00,1 +2023-10-24 21:16:24.150896962+00:00,1 +2023-10-24 21:16:24.277383549+00:00,1 +2023-10-24 21:16:24.403414306+00:00,1 +2023-10-24 21:16:24.529257792+00:00,1 +2023-10-24 21:16:24.654603555+00:00,1 +2023-10-24 21:16:24.780053334+00:00,1 +2023-10-24 21:16:24.905871213+00:00,1 +2023-10-24 21:16:25.031924276+00:00,1 +2023-10-24 21:16:25.157516918+00:00,1 +2023-10-24 21:16:25.283837682+00:00,1 +2023-10-24 21:16:25.409765696+00:00,1 +2023-10-24 21:16:25.535924973+00:00,1 +2023-10-24 21:16:25.662157371+00:00,1 +2023-10-24 21:16:25.787749253+00:00,1 +2023-10-24 21:16:25.914084895+00:00,1 +2023-10-24 21:16:26.040287368+00:00,1 +2023-10-24 21:16:26.165169247+00:00,1 +2023-10-24 21:16:26.290664868+00:00,1 +2023-10-24 21:16:26.415549588+00:00,1 +2023-10-24 21:16:26.543479215+00:00,1 +2023-10-24 21:16:26.669161228+00:00,1 +2023-10-24 21:16:26.794399470+00:00,1 +2023-10-24 21:16:26.919783250+00:00,1 +2023-10-24 21:16:27.045730421+00:00,1 +2023-10-24 21:16:27.171221243+00:00,1 +2023-10-24 21:16:27.295750912+00:00,1 +2023-10-24 21:16:27.421300913+00:00,1 +2023-10-24 21:16:27.547988649+00:00,1 +2023-10-24 21:16:27.675149129+00:00,1 +2023-10-24 21:16:27.799674951+00:00,1 +2023-10-24 21:16:27.926675625+00:00,1 +2023-10-24 21:16:28.052979053+00:00,1 +2023-10-24 21:16:28.177876595+00:00,1 +2023-10-24 21:16:28.303838689+00:00,1 +2023-10-24 21:16:28.429073595+00:00,1 +2023-10-24 21:16:28.555216245+00:00,1 +2023-10-24 21:16:28.681515188+00:00,1 +2023-10-24 21:16:28.808330247+00:00,1 +2023-10-24 21:16:28.935392247+00:00,1 +2023-10-24 21:16:29.061210486+00:00,1 +2023-10-24 21:16:29.187256420+00:00,1 +2023-10-24 21:16:29.312931113+00:00,1 +2023-10-24 21:16:29.438262003+00:00,1 +2023-10-24 21:16:29.564540017+00:00,1 +2023-10-24 21:16:29.690284736+00:00,1 +2023-10-24 21:16:29.816137320+00:00,1 +2023-10-24 21:16:29.942152385+00:00,1 +2023-10-24 21:16:30.067606791+00:00,1 +2023-10-24 21:16:30.193577794+00:00,1 +2023-10-24 21:16:30.318412388+00:00,1 +2023-10-24 21:16:30.444123937+00:00,1 +2023-10-24 21:16:30.569783624+00:00,1 +2023-10-24 21:16:30.696023582+00:00,1 +2023-10-24 21:16:30.825363270+00:00,1 +2023-10-24 21:16:30.953012665+00:00,1 +2023-10-24 21:16:31.084854791+00:00,1 +2023-10-24 21:16:31.212744813+00:00,1 +2023-10-24 21:16:31.340330094+00:00,1 +2023-10-24 21:16:31.469836784+00:00,1 +2023-10-24 21:16:31.598560310+00:00,1 +2023-10-24 21:16:31.727118196+00:00,1 +2023-10-24 21:16:31.854766947+00:00,1 +2023-10-24 21:16:31.982788737+00:00,1 +2023-10-24 21:16:32.111048466+00:00,1 +2023-10-24 21:16:32.239949034+00:00,1 +2023-10-24 21:16:32.368021382+00:00,1 +2023-10-24 21:16:32.496179729+00:00,1 +2023-10-24 21:16:32.624107611+00:00,1 +2023-10-24 21:16:32.751704807+00:00,1 +2023-10-24 21:16:32.880696479+00:00,1 +2023-10-24 21:16:33.010179141+00:00,1 +2023-10-24 21:16:33.137640288+00:00,1 +2023-10-24 21:16:33.265641751+00:00,1 +2023-10-24 21:16:33.394168114+00:00,1 +2023-10-24 21:16:33.522841910+00:00,1 +2023-10-24 21:16:33.651170576+00:00,1 +2023-10-24 21:16:33.778949901+00:00,1 +2023-10-24 21:16:33.906952826+00:00,1 +2023-10-24 21:16:34.036047157+00:00,1 +2023-10-24 21:16:34.164866607+00:00,1 +2023-10-24 21:16:34.294484870+00:00,1 +2023-10-24 21:16:34.423359422+00:00,1 +2023-10-24 21:16:34.554377912+00:00,1 +2023-10-24 21:16:34.684257914+00:00,1 +2023-10-24 21:16:34.813511541+00:00,1 +2023-10-24 21:16:34.940678031+00:00,1 +2023-10-24 21:16:35.068400833+00:00,1 +2023-10-24 21:16:35.198164474+00:00,1 +2023-10-24 21:16:35.326842712+00:00,1 +2023-10-24 21:16:35.455445832+00:00,1 +2023-10-24 21:16:35.584039367+00:00,1 +2023-10-24 21:16:35.712220686+00:00,1 +2023-10-24 21:16:35.841433565+00:00,1 +2023-10-24 21:16:35.969889649+00:00,1 +2023-10-24 21:16:36.100319276+00:00,1 +2023-10-24 21:16:36.228249937+00:00,1 +2023-10-24 21:16:36.355164607+00:00,1 +2023-10-24 21:16:36.483692905+00:00,1 +2023-10-24 21:16:36.611668749+00:00,1 +2023-10-24 21:16:36.740112012+00:00,1 +2023-10-24 21:16:36.867933088+00:00,1 +2023-10-24 21:16:36.995948722+00:00,1 +2023-10-24 21:16:37.126067947+00:00,1 +2023-10-24 21:16:37.253690361+00:00,1 +2023-10-24 21:16:37.381554814+00:00,1 +2023-10-24 21:16:37.509576868+00:00,1 +2023-10-24 21:16:37.637647889+00:00,1 +2023-10-24 21:16:37.767540278+00:00,1 +2023-10-24 21:16:37.897380898+00:00,1 +2023-10-24 21:16:38.025393116+00:00,1 +2023-10-24 21:16:38.153154880+00:00,1 +2023-10-24 21:16:38.280783369+00:00,1 +2023-10-24 21:16:38.409100677+00:00,1 +2023-10-24 21:16:38.536824826+00:00,1 +2023-10-24 21:16:38.664925170+00:00,1 +2023-10-24 21:16:38.792255210+00:00,1 +2023-10-24 21:16:38.920244401+00:00,1 +2023-10-24 21:16:39.048982453+00:00,1 +2023-10-24 21:16:39.176495082+00:00,1 +2023-10-24 21:16:39.304436736+00:00,1 +2023-10-24 21:16:39.433281082+00:00,1 +2023-10-24 21:16:39.561988305+00:00,1 +2023-10-24 21:16:39.694276206+00:00,1 +2023-10-24 21:16:39.822255187+00:00,1 +2023-10-24 21:16:39.950766348+00:00,1 +2023-10-24 21:16:40.078933076+00:00,1 +2023-10-24 21:16:40.208097917+00:00,1 +2023-10-24 21:16:40.336167326+00:00,1 +2023-10-24 21:16:40.466430397+00:00,1 +2023-10-24 21:16:40.594924458+00:00,1 +2023-10-24 21:16:40.722746048+00:00,1 +2023-10-24 21:16:40.851959493+00:00,1 +2023-10-24 21:16:40.978721847+00:00,1 +2023-10-24 21:16:41.106877169+00:00,1 +2023-10-24 21:16:41.235785037+00:00,1 +2023-10-24 21:16:41.363654846+00:00,1 +2023-10-24 21:16:41.492047393+00:00,1 +2023-10-24 21:16:41.619631234+00:00,1 +2023-10-24 21:16:41.747689264+00:00,1 +2023-10-24 21:16:41.876131780+00:00,1 +2023-10-24 21:16:42.003283377+00:00,1 +2023-10-24 21:16:42.132037462+00:00,1 +2023-10-24 21:16:42.260784913+00:00,1 +2023-10-24 21:16:42.389099615+00:00,1 +2023-10-24 21:16:42.517474963+00:00,1 +2023-10-24 21:16:42.646267469+00:00,1 +2023-10-24 21:16:42.775475855+00:00,1 +2023-10-24 21:16:42.905504524+00:00,1 +2023-10-24 21:16:43.033377233+00:00,1 +2023-10-24 21:16:43.161463325+00:00,1 +2023-10-24 21:16:43.289764482+00:00,1 +2023-10-24 21:16:43.418021517+00:00,1 +2023-10-24 21:16:43.545421420+00:00,1 +2023-10-24 21:16:43.674224865+00:00,1 +2023-10-24 21:16:43.802030494+00:00,1 +2023-10-24 21:16:43.930596969+00:00,1 +2023-10-24 21:16:44.059767932+00:00,1 +2023-10-24 21:16:44.187884162+00:00,1 +2023-10-24 21:16:44.316257173+00:00,1 +2023-10-24 21:16:44.443668885+00:00,1 +2023-10-24 21:16:44.571856246+00:00,1 +2023-10-24 21:16:44.701459517+00:00,1 +2023-10-24 21:16:44.829750385+00:00,1 +2023-10-24 21:16:44.963797307+00:00,1 +2023-10-24 21:16:45.093473532+00:00,1 +2023-10-24 21:16:45.222133565+00:00,1 +2023-10-24 21:16:45.349457864+00:00,1 +2023-10-24 21:16:45.477360223+00:00,1 +2023-10-24 21:16:45.605601310+00:00,1 +2023-10-24 21:16:45.734278924+00:00,1 +2023-10-24 21:16:45.862276521+00:00,1 +2023-10-24 21:16:45.990599396+00:00,1 +2023-10-24 21:16:46.118427109+00:00,1 +2023-10-24 21:16:46.247912062+00:00,1 +2023-10-24 21:16:46.376484893+00:00,1 +2023-10-24 21:16:46.507049497+00:00,1 +2023-10-24 21:16:46.638060070+00:00,1 +2023-10-24 21:16:46.766196649+00:00,1 +2023-10-24 21:16:46.895054189+00:00,1 +2023-10-24 21:16:47.025165649+00:00,1 +2023-10-24 21:16:47.154415777+00:00,1 +2023-10-24 21:16:47.283929604+00:00,1 +2023-10-24 21:16:47.412395728+00:00,1 +2023-10-24 21:16:47.540889153+00:00,1 +2023-10-24 21:16:47.667712670+00:00,1 +2023-10-24 21:16:47.796553029+00:00,1 +2023-10-24 21:16:47.925776787+00:00,1 +2023-10-24 21:16:48.055115475+00:00,1 +2023-10-24 21:16:48.182859809+00:00,1 +2023-10-24 21:16:48.310621623+00:00,1 +2023-10-24 21:16:48.439353955+00:00,1 +2023-10-24 21:16:48.568499467+00:00,1 +2023-10-24 21:16:48.698077683+00:00,1 +2023-10-24 21:16:48.827916755+00:00,1 +2023-10-24 21:16:48.958505630+00:00,1 +2023-10-24 21:16:49.087947856+00:00,1 +2023-10-24 21:16:49.216593375+00:00,1 +2023-10-24 21:16:49.345853152+00:00,1 +2023-10-24 21:16:49.476638660+00:00,1 +2023-10-24 21:16:49.605366854+00:00,1 +2023-10-24 21:16:49.733206635+00:00,1 +2023-10-24 21:16:49.861472623+00:00,1 +2023-10-24 21:16:49.989590092+00:00,1 +2023-10-24 21:16:50.118286894+00:00,1 +2023-10-24 21:16:50.245691170+00:00,1 +2023-10-24 21:16:50.373683951+00:00,1 +2023-10-24 21:16:50.502909692+00:00,1 +2023-10-24 21:16:50.631384968+00:00,1 +2023-10-24 21:16:50.760834127+00:00,1 +2023-10-24 21:16:50.891478634+00:00,1 +2023-10-24 21:16:51.020499600+00:00,1 +2023-10-24 21:16:51.149734110+00:00,1 +2023-10-24 21:16:51.277584770+00:00,1 +2023-10-24 21:16:51.404190091+00:00,1 +2023-10-24 21:16:51.531910651+00:00,1 +2023-10-24 21:16:51.660718764+00:00,1 +2023-10-24 21:16:51.788553643+00:00,1 +2023-10-24 21:16:51.915967796+00:00,1 +2023-10-24 21:16:52.043341134+00:00,1 +2023-10-24 21:16:52.170632330+00:00,1 +2023-10-24 21:16:52.298239250+00:00,1 +2023-10-24 21:16:52.427261162+00:00,1 +2023-10-24 21:16:52.556925802+00:00,1 +2023-10-24 21:16:52.685856167+00:00,1 +2023-10-24 21:16:52.813631201+00:00,1 +2023-10-24 21:16:52.943161854+00:00,1 +2023-10-24 21:16:53.071319060+00:00,1 +2023-10-24 21:16:53.198988475+00:00,1 +2023-10-24 21:16:53.329379538+00:00,1 +2023-10-24 21:16:53.458169219+00:00,1 +2023-10-24 21:16:53.586468426+00:00,1 +2023-10-24 21:16:53.714866204+00:00,1 +2023-10-24 21:16:53.843736122+00:00,1 +2023-10-24 21:16:53.971859496+00:00,1 +2023-10-24 21:16:54.100188851+00:00,1 +2023-10-24 21:16:54.228452234+00:00,1 +2023-10-24 21:16:54.358238577+00:00,1 +2023-10-24 21:16:54.486986583+00:00,1 +2023-10-24 21:16:54.615217674+00:00,1 +2023-10-24 21:16:54.741954766+00:00,1 +2023-10-24 21:16:54.869950510+00:00,1 +2023-10-24 21:16:54.996698396+00:00,1 +2023-10-24 21:16:55.123728223+00:00,1 +2023-10-24 21:16:55.252369932+00:00,1 +2023-10-24 21:16:55.380176765+00:00,1 +2023-10-24 21:16:55.507981957+00:00,1 +2023-10-24 21:16:55.635792686+00:00,1 +2023-10-24 21:16:55.763860663+00:00,1 +2023-10-24 21:16:55.892675326+00:00,1 +2023-10-24 21:16:56.020586567+00:00,1 +2023-10-24 21:16:56.148315717+00:00,1 +2023-10-24 21:16:56.276915747+00:00,1 +2023-10-24 21:16:56.406396622+00:00,1 +2023-10-24 21:16:56.534386361+00:00,1 +2023-10-24 21:16:56.661564399+00:00,1 +2023-10-24 21:16:56.789222298+00:00,1 +2023-10-24 21:16:56.917010548+00:00,1 +2023-10-24 21:16:57.046557637+00:00,1 +2023-10-24 21:16:57.174547095+00:00,1 +2023-10-24 21:16:57.302933080+00:00,1 +2023-10-24 21:16:57.431949308+00:00,1 +2023-10-24 21:16:57.561343699+00:00,1 +2023-10-24 21:16:57.689634381+00:00,1 +2023-10-24 21:16:57.818524408+00:00,1 +2023-10-24 21:16:57.946998266+00:00,1 +2023-10-24 21:16:58.075237051+00:00,1 +2023-10-24 21:16:58.203050684+00:00,1 +2023-10-24 21:16:58.331672357+00:00,1 +2023-10-24 21:16:58.459463892+00:00,1 +2023-10-24 21:16:58.588186153+00:00,1 +2023-10-24 21:16:58.716501187+00:00,1 +2023-10-24 21:16:58.846110296+00:00,1 +2023-10-24 21:16:58.974124253+00:00,1 +2023-10-24 21:16:59.102915268+00:00,1 +2023-10-24 21:16:59.232520780+00:00,1 +2023-10-24 21:16:59.361365844+00:00,1 +2023-10-24 21:16:59.489447082+00:00,1 +2023-10-24 21:16:59.617280493+00:00,1 +2023-10-24 21:16:59.745585693+00:00,1 +2023-10-24 21:16:59.873641407+00:00,1 +2023-10-24 21:17:00.002202407+00:00,1 +2023-10-24 21:17:00.130114269+00:00,1 +2023-10-24 21:17:00.260567133+00:00,1 +2023-10-24 21:17:00.388837269+00:00,1 +2023-10-24 21:17:00.516634967+00:00,1 +2023-10-24 21:17:00.644681310+00:00,1 +2023-10-24 21:17:00.772572777+00:00,1 +2023-10-24 21:17:00.901131212+00:00,1 +2023-10-24 21:17:01.028983707+00:00,1 +2023-10-24 21:17:01.158100978+00:00,1 +2023-10-24 21:17:01.285970529+00:00,1 +2023-10-24 21:17:01.414808285+00:00,1 +2023-10-24 21:17:01.544108773+00:00,1 +2023-10-24 21:17:01.672890824+00:00,1 +2023-10-24 21:17:01.800427834+00:00,1 +2023-10-24 21:17:01.927744705+00:00,1 +2023-10-24 21:17:02.055400720+00:00,1 +2023-10-24 21:17:02.183576709+00:00,1 +2023-10-24 21:17:02.312831193+00:00,1 +2023-10-24 21:17:02.440569001+00:00,1 +2023-10-24 21:17:02.568488929+00:00,1 +2023-10-24 21:17:02.696420977+00:00,1 +2023-10-24 21:17:02.824492027+00:00,1 +2023-10-24 21:17:02.953146479+00:00,1 +2023-10-24 21:17:03.082091516+00:00,1 +2023-10-24 21:17:03.209732011+00:00,1 +2023-10-24 21:17:03.337931132+00:00,1 +2023-10-24 21:17:03.468240947+00:00,1 +2023-10-24 21:17:03.597781073+00:00,1 +2023-10-24 21:17:03.726964623+00:00,1 +2023-10-24 21:17:03.857200034+00:00,1 +2023-10-24 21:17:03.986143520+00:00,1 +2023-10-24 21:17:04.115131974+00:00,1 +2023-10-24 21:17:04.243046864+00:00,1 +2023-10-24 21:17:04.371143094+00:00,1 +2023-10-24 21:17:04.499031757+00:00,1 +2023-10-24 21:17:04.628754571+00:00,1 +2023-10-24 21:17:04.757043731+00:00,1 +2023-10-24 21:17:04.886877253+00:00,1 +2023-10-24 21:17:05.015677903+00:00,1 +2023-10-24 21:17:05.144045406+00:00,1 +2023-10-24 21:17:05.272069792+00:00,1 +2023-10-24 21:17:05.401316541+00:00,1 +2023-10-24 21:17:05.529847411+00:00,1 +2023-10-24 21:17:05.659537168+00:00,1 +2023-10-24 21:17:05.788322916+00:00,1 +2023-10-24 21:17:05.916665927+00:00,1 +2023-10-24 21:17:06.046319472+00:00,1 +2023-10-24 21:17:06.173823184+00:00,1 +2023-10-24 21:17:06.302116261+00:00,1 +2023-10-24 21:17:06.429487900+00:00,1 +2023-10-24 21:17:06.558281554+00:00,1 +2023-10-24 21:17:06.686962967+00:00,1 +2023-10-24 21:17:06.815455770+00:00,1 +2023-10-24 21:17:06.942803229+00:00,1 +2023-10-24 21:17:07.078830952+00:00,1 +2023-10-24 21:17:07.207089453+00:00,1 +2023-10-24 21:17:07.335701008+00:00,1 +2023-10-24 21:17:07.463619567+00:00,1 +2023-10-24 21:17:07.591605205+00:00,1 +2023-10-24 21:17:07.718938146+00:00,1 +2023-10-24 21:17:07.846448118+00:00,1 +2023-10-24 21:17:07.974011487+00:00,1 +2023-10-24 21:17:08.102200434+00:00,1 +2023-10-24 21:17:08.229735928+00:00,1 +2023-10-24 21:17:08.357495866+00:00,1 +2023-10-24 21:17:08.485031815+00:00,1 +2023-10-24 21:17:08.611943072+00:00,1 +2023-10-24 21:17:08.740337052+00:00,1 +2023-10-24 21:17:08.869629146+00:00,1 +2023-10-24 21:17:08.997551229+00:00,1 +2023-10-24 21:17:09.126798974+00:00,1 +2023-10-24 21:17:09.256254449+00:00,1 +2023-10-24 21:17:09.384755601+00:00,1 +2023-10-24 21:17:09.513880328+00:00,1 +2023-10-24 21:17:09.643525711+00:00,1 +2023-10-24 21:17:09.772808514+00:00,1 +2023-10-24 21:17:09.900051325+00:00,1 +2023-10-24 21:17:10.028937023+00:00,1 +2023-10-24 21:17:10.157109553+00:00,1 +2023-10-24 21:17:10.284243595+00:00,1 +2023-10-24 21:17:10.411546463+00:00,1 +2023-10-24 21:17:10.538476423+00:00,1 +2023-10-24 21:17:10.666801972+00:00,1 +2023-10-24 21:17:10.794081673+00:00,1 +2023-10-24 21:17:10.922362008+00:00,1 +2023-10-24 21:17:11.051441653+00:00,1 +2023-10-24 21:17:11.180331443+00:00,1 +2023-10-24 21:17:11.309675956+00:00,1 +2023-10-24 21:17:11.437320014+00:00,1 +2023-10-24 21:17:11.565633132+00:00,1 +2023-10-24 21:17:11.693305452+00:00,1 +2023-10-24 21:17:11.821553789+00:00,1 +2023-10-24 21:17:11.949770285+00:00,1 +2023-10-24 21:17:12.078692868+00:00,1 +2023-10-24 21:17:12.205471056+00:00,1 +2023-10-24 21:17:12.332132608+00:00,1 +2023-10-24 21:17:12.460571804+00:00,1 +2023-10-24 21:17:12.590874400+00:00,1 +2023-10-24 21:17:12.719169517+00:00,1 +2023-10-24 21:17:12.847461493+00:00,1 +2023-10-24 21:17:12.977289192+00:00,1 +2023-10-24 21:17:13.106698648+00:00,1 +2023-10-24 21:17:13.234260972+00:00,1 +2023-10-24 21:17:13.361845059+00:00,1 +2023-10-24 21:17:13.490072367+00:00,1 +2023-10-24 21:17:13.618991613+00:00,1 +2023-10-24 21:17:13.747194199+00:00,1 +2023-10-24 21:17:13.876044510+00:00,1 +2023-10-24 21:17:14.006561947+00:00,1 +2023-10-24 21:17:14.135070947+00:00,1 +2023-10-24 21:17:14.262851804+00:00,1 +2023-10-24 21:17:14.391683254+00:00,1 +2023-10-24 21:17:14.519255909+00:00,1 +2023-10-24 21:17:14.647729106+00:00,1 +2023-10-24 21:17:14.777271560+00:00,1 +2023-10-24 21:17:14.905579054+00:00,1 +2023-10-24 21:17:15.032731019+00:00,1 +2023-10-24 21:17:15.162102588+00:00,1 +2023-10-24 21:17:15.290715507+00:00,1 +2023-10-24 21:17:15.418771287+00:00,1 +2023-10-24 21:17:15.547317481+00:00,1 +2023-10-24 21:17:15.676007233+00:00,1 +2023-10-24 21:17:15.804870754+00:00,1 +2023-10-24 21:17:15.934177895+00:00,1 +2023-10-24 21:17:16.063635452+00:00,1 +2023-10-24 21:17:16.192754734+00:00,1 +2023-10-24 21:17:16.320791841+00:00,1 +2023-10-24 21:17:16.448875202+00:00,1 +2023-10-24 21:17:16.577630079+00:00,1 +2023-10-24 21:17:16.707565390+00:00,1 +2023-10-24 21:17:16.836049106+00:00,1 +2023-10-24 21:17:16.965385532+00:00,1 +2023-10-24 21:17:17.093752353+00:00,1 +2023-10-24 21:17:17.221715098+00:00,1 +2023-10-24 21:17:17.351251031+00:00,1 +2023-10-24 21:17:17.481141470+00:00,1 +2023-10-24 21:17:17.608250203+00:00,1 +2023-10-24 21:17:17.734918644+00:00,1 +2023-10-24 21:17:17.864074205+00:00,1 +2023-10-24 21:17:17.992485688+00:00,1 +2023-10-24 21:17:18.120501485+00:00,1 +2023-10-24 21:17:18.248569924+00:00,1 +2023-10-24 21:17:18.376850586+00:00,1 +2023-10-24 21:17:18.505095566+00:00,1 +2023-10-24 21:17:18.633461132+00:00,1 +2023-10-24 21:17:18.761374434+00:00,1 +2023-10-24 21:17:18.889729413+00:00,1 +2023-10-24 21:17:19.019917330+00:00,1 +2023-10-24 21:17:19.148385896+00:00,1 +2023-10-24 21:17:19.276277165+00:00,1 +2023-10-24 21:17:19.405597339+00:00,1 +2023-10-24 21:17:19.533922883+00:00,1 +2023-10-24 21:17:19.662899268+00:00,1 +2023-10-24 21:17:19.791924932+00:00,1 +2023-10-24 21:17:19.919517192+00:00,1 +2023-10-24 21:17:20.047980322+00:00,1 +2023-10-24 21:17:20.176225412+00:00,1 +2023-10-24 21:17:20.303295445+00:00,1 +2023-10-24 21:17:20.431884296+00:00,1 +2023-10-24 21:17:20.559429779+00:00,1 +2023-10-24 21:17:20.688206887+00:00,1 +2023-10-24 21:17:20.818810024+00:00,1 +2023-10-24 21:17:20.947744260+00:00,1 +2023-10-24 21:17:21.075416888+00:00,1 +2023-10-24 21:17:21.203595209+00:00,1 +2023-10-24 21:17:21.330900965+00:00,1 +2023-10-24 21:17:21.459765634+00:00,1 +2023-10-24 21:17:21.588288741+00:00,1 +2023-10-24 21:17:21.717495669+00:00,1 +2023-10-24 21:17:21.845370357+00:00,1 +2023-10-24 21:17:21.973963606+00:00,1 +2023-10-24 21:17:22.101702353+00:00,1 +2023-10-24 21:17:22.228397624+00:00,1 +2023-10-24 21:17:22.356276718+00:00,1 +2023-10-24 21:17:22.482833202+00:00,1 +2023-10-24 21:17:22.611146999+00:00,1 +2023-10-24 21:17:22.739784185+00:00,1 +2023-10-24 21:17:22.867929336+00:00,1 +2023-10-24 21:17:22.997202740+00:00,1 +2023-10-24 21:17:23.127282175+00:00,1 +2023-10-24 21:17:23.256627594+00:00,1 +2023-10-24 21:17:23.384630176+00:00,1 +2023-10-24 21:17:23.513032059+00:00,1 +2023-10-24 21:17:23.641817932+00:00,1 +2023-10-24 21:17:23.769572532+00:00,1 +2023-10-24 21:17:23.898547769+00:00,1 +2023-10-24 21:17:24.026553676+00:00,1 +2023-10-24 21:17:24.155047623+00:00,1 +2023-10-24 21:17:24.282704414+00:00,1 +2023-10-24 21:17:24.410262116+00:00,1 +2023-10-24 21:17:24.537115683+00:00,1 +2023-10-24 21:17:24.663891337+00:00,1 +2023-10-24 21:17:24.791857898+00:00,1 +2023-10-24 21:17:24.919503224+00:00,1 +2023-10-24 21:17:25.047017754+00:00,1 +2023-10-24 21:17:25.175252869+00:00,1 +2023-10-24 21:17:25.303999123+00:00,1 +2023-10-24 21:17:25.431404054+00:00,1 +2023-10-24 21:17:25.559975071+00:00,1 +2023-10-24 21:17:25.688229637+00:00,1 +2023-10-24 21:17:25.816376392+00:00,1 +2023-10-24 21:17:25.944105703+00:00,1 +2023-10-24 21:17:26.071833926+00:00,1 +2023-10-24 21:17:26.198274497+00:00,1 +2023-10-24 21:17:26.325201723+00:00,1 +2023-10-24 21:17:26.452348519+00:00,1 +2023-10-24 21:17:26.580600100+00:00,1 +2023-10-24 21:17:26.709923566+00:00,1 +2023-10-24 21:17:26.839720594+00:00,1 +2023-10-24 21:17:26.969220855+00:00,1 +2023-10-24 21:17:27.097547251+00:00,1 +2023-10-24 21:17:27.227057162+00:00,1 +2023-10-24 21:17:27.354703365+00:00,1 +2023-10-24 21:17:27.483336153+00:00,1 +2023-10-24 21:17:27.610932450+00:00,1 +2023-10-24 21:17:27.739322233+00:00,1 +2023-10-24 21:17:27.867356660+00:00,1 +2023-10-24 21:17:27.994439013+00:00,1 +2023-10-24 21:17:28.121579943+00:00,1 +2023-10-24 21:17:28.249944483+00:00,1 +2023-10-24 21:17:28.378702312+00:00,1 +2023-10-24 21:17:28.507700466+00:00,1 +2023-10-24 21:17:28.635223645+00:00,1 +2023-10-24 21:17:28.763338219+00:00,1 +2023-10-24 21:17:28.891535831+00:00,1 +2023-10-24 21:17:29.020075080+00:00,1 +2023-10-24 21:17:29.148162595+00:00,1 +2023-10-24 21:17:29.276569260+00:00,1 +2023-10-24 21:17:29.405467570+00:00,1 +2023-10-24 21:17:29.533793831+00:00,1 +2023-10-24 21:17:29.661511312+00:00,1 +2023-10-24 21:17:29.790276763+00:00,1 +2023-10-24 21:17:29.919493939+00:00,1 +2023-10-24 21:17:30.048828397+00:00,1 +2023-10-24 21:17:30.177754618+00:00,1 +2023-10-24 21:17:30.306616932+00:00,1 +2023-10-24 21:17:30.436328989+00:00,1 +2023-10-24 21:17:30.566089001+00:00,1 +2023-10-24 21:17:30.695246211+00:00,1 +2023-10-24 21:17:30.825128515+00:00,1 +2023-10-24 21:17:30.955480634+00:00,1 +2023-10-24 21:17:31.085146066+00:00,1 +2023-10-24 21:17:31.215361535+00:00,1 +2023-10-24 21:17:31.344836963+00:00,1 +2023-10-24 21:17:31.474946087+00:00,1 +2023-10-24 21:17:31.605265567+00:00,1 +2023-10-24 21:17:31.734506395+00:00,1 +2023-10-24 21:17:31.863591032+00:00,1 +2023-10-24 21:17:31.993498908+00:00,1 +2023-10-24 21:17:32.122867678+00:00,1 +2023-10-24 21:17:32.252344702+00:00,1 +2023-10-24 21:17:32.380894085+00:00,1 +2023-10-24 21:17:32.511104513+00:00,1 +2023-10-24 21:17:32.639293761+00:00,1 +2023-10-24 21:17:32.769042574+00:00,1 +2023-10-24 21:17:32.898401592+00:00,1 +2023-10-24 21:17:33.026156700+00:00,1 +2023-10-24 21:17:33.156202077+00:00,1 +2023-10-24 21:17:33.286403737+00:00,1 +2023-10-24 21:17:33.413737083+00:00,1 +2023-10-24 21:17:33.542465388+00:00,1 +2023-10-24 21:17:33.670913735+00:00,1 +2023-10-24 21:17:33.798064298+00:00,1 +2023-10-24 21:17:33.925131757+00:00,1 +2023-10-24 21:17:34.055297966+00:00,1 +2023-10-24 21:17:34.183648759+00:00,1 +2023-10-24 21:17:34.312802336+00:00,1 +2023-10-24 21:17:34.441701781+00:00,1 +2023-10-24 21:17:34.570184587+00:00,1 +2023-10-24 21:17:34.699049673+00:00,1 +2023-10-24 21:17:34.828593900+00:00,1 +2023-10-24 21:17:34.957153252+00:00,1 +2023-10-24 21:17:35.085207224+00:00,1 +2023-10-24 21:17:35.213084260+00:00,1 +2023-10-24 21:17:35.342771162+00:00,1 +2023-10-24 21:17:35.473682596+00:00,1 +2023-10-24 21:17:35.602342168+00:00,1 +2023-10-24 21:17:35.730734098+00:00,1 +2023-10-24 21:17:35.860235719+00:00,1 +2023-10-24 21:17:35.989222967+00:00,1 +2023-10-24 21:17:36.117912099+00:00,1 +2023-10-24 21:17:36.246007877+00:00,1 +2023-10-24 21:17:36.373927260+00:00,1 +2023-10-24 21:17:36.503390055+00:00,1 +2023-10-24 21:17:36.632392736+00:00,1 +2023-10-24 21:17:36.761736050+00:00,1 +2023-10-24 21:17:36.890064694+00:00,1 +2023-10-24 21:17:37.020665986+00:00,1 +2023-10-24 21:17:37.149802977+00:00,1 +2023-10-24 21:17:37.277337895+00:00,1 +2023-10-24 21:17:37.405997829+00:00,1 +2023-10-24 21:17:37.533518882+00:00,1 +2023-10-24 21:17:37.661947679+00:00,1 +2023-10-24 21:17:37.789961868+00:00,1 +2023-10-24 21:17:37.918191708+00:00,1 +2023-10-24 21:17:38.046978909+00:00,1 +2023-10-24 21:17:38.175530124+00:00,1 +2023-10-24 21:17:38.303875085+00:00,1 +2023-10-24 21:17:38.433336431+00:00,1 +2023-10-24 21:17:38.561134771+00:00,1 +2023-10-24 21:17:38.688760804+00:00,1 +2023-10-24 21:17:38.816772447+00:00,1 +2023-10-24 21:17:38.944281651+00:00,1 +2023-10-24 21:17:39.072241768+00:00,1 +2023-10-24 21:17:39.200412417+00:00,1 +2023-10-24 21:17:39.328996457+00:00,1 +2023-10-24 21:17:39.458388578+00:00,1 +2023-10-24 21:17:39.586628781+00:00,1 +2023-10-24 21:17:39.714881882+00:00,1 +2023-10-24 21:17:39.842544759+00:00,1 +2023-10-24 21:17:39.969741251+00:00,1 +2023-10-24 21:17:40.098139748+00:00,1 +2023-10-24 21:17:40.226906363+00:00,1 +2023-10-24 21:17:40.355290786+00:00,1 +2023-10-24 21:17:40.484137462+00:00,1 +2023-10-24 21:17:40.612328189+00:00,1 +2023-10-24 21:17:40.740383601+00:00,1 +2023-10-24 21:17:40.868693807+00:00,1 +2023-10-24 21:17:40.998228460+00:00,1 +2023-10-24 21:17:41.127381728+00:00,1 +2023-10-24 21:17:41.255336129+00:00,1 +2023-10-24 21:17:41.384696723+00:00,1 +2023-10-24 21:17:41.511967256+00:00,1 +2023-10-24 21:17:41.641445680+00:00,1 +2023-10-24 21:17:41.769982767+00:00,1 +2023-10-24 21:17:41.898181340+00:00,1 +2023-10-24 21:17:42.026997707+00:00,1 +2023-10-24 21:17:42.155817558+00:00,1 +2023-10-24 21:17:42.283428735+00:00,1 +2023-10-24 21:17:42.413191838+00:00,1 +2023-10-24 21:17:42.540960590+00:00,1 +2023-10-24 21:17:42.670444082+00:00,1 +2023-10-24 21:17:42.798947181+00:00,1 +2023-10-24 21:17:42.929822165+00:00,1 +2023-10-24 21:17:43.057253927+00:00,1 +2023-10-24 21:17:43.186338692+00:00,1 +2023-10-24 21:17:43.314395034+00:00,1 +2023-10-24 21:17:43.442053078+00:00,1 +2023-10-24 21:17:43.570021248+00:00,1 +2023-10-24 21:17:43.697490179+00:00,1 +2023-10-24 21:17:43.824837736+00:00,1 +2023-10-24 21:17:43.953326863+00:00,1 +2023-10-24 21:17:44.080825828+00:00,1 +2023-10-24 21:17:44.208706897+00:00,1 +2023-10-24 21:17:44.337126561+00:00,1 +2023-10-24 21:17:44.465314759+00:00,1 +2023-10-24 21:17:44.594389652+00:00,1 +2023-10-24 21:17:44.722866157+00:00,1 +2023-10-24 21:17:44.852212427+00:00,1 +2023-10-24 21:17:44.980343394+00:00,1 +2023-10-24 21:17:45.111004182+00:00,1 +2023-10-24 21:17:45.239314488+00:00,1 +2023-10-24 21:17:45.367339572+00:00,1 +2023-10-24 21:17:45.494066249+00:00,1 +2023-10-24 21:17:45.622427752+00:00,1 +2023-10-24 21:17:45.749952799+00:00,1 +2023-10-24 21:17:45.877596146+00:00,1 +2023-10-24 21:17:46.004798913+00:00,1 +2023-10-24 21:17:46.132828144+00:00,1 +2023-10-24 21:17:46.262850933+00:00,1 +2023-10-24 21:17:46.390380516+00:00,1 +2023-10-24 21:17:46.518470559+00:00,1 +2023-10-24 21:17:46.646551943+00:00,1 +2023-10-24 21:17:46.774962498+00:00,1 +2023-10-24 21:17:46.903614630+00:00,1 +2023-10-24 21:17:47.032024872+00:00,1 +2023-10-24 21:17:47.160184512+00:00,1 +2023-10-24 21:17:47.288009896+00:00,1 +2023-10-24 21:17:47.416191716+00:00,1 +2023-10-24 21:17:47.543905664+00:00,1 +2023-10-24 21:17:47.671701950+00:00,1 +2023-10-24 21:17:47.799946638+00:00,1 +2023-10-24 21:17:47.928527429+00:00,1 +2023-10-24 21:17:48.056965420+00:00,1 +2023-10-24 21:17:48.185202529+00:00,1 +2023-10-24 21:17:48.313394908+00:00,1 +2023-10-24 21:17:48.441567484+00:00,1 +2023-10-24 21:17:48.570632149+00:00,1 +2023-10-24 21:17:48.697690703+00:00,1 +2023-10-24 21:17:48.826002248+00:00,1 +2023-10-24 21:17:48.953458463+00:00,1 +2023-10-24 21:17:49.081214484+00:00,1 +2023-10-24 21:17:49.209400999+00:00,1 +2023-10-24 21:17:49.339026047+00:00,1 +2023-10-24 21:17:49.467808643+00:00,1 +2023-10-24 21:17:49.596691173+00:00,1 +2023-10-24 21:17:49.724877968+00:00,1 +2023-10-24 21:17:49.854195124+00:00,1 +2023-10-24 21:17:49.982911878+00:00,1 +2023-10-24 21:17:50.111209172+00:00,1 +2023-10-24 21:17:50.241492128+00:00,1 +2023-10-24 21:17:50.370228827+00:00,1 +2023-10-24 21:17:50.498158465+00:00,1 +2023-10-24 21:17:50.626861005+00:00,1 +2023-10-24 21:17:50.755183432+00:00,1 +2023-10-24 21:17:50.883507840+00:00,1 +2023-10-24 21:17:51.011479236+00:00,1 +2023-10-24 21:17:51.139788432+00:00,1 +2023-10-24 21:17:51.267155136+00:00,1 +2023-10-24 21:17:51.396420432+00:00,1 +2023-10-24 21:17:51.525023045+00:00,1 +2023-10-24 21:17:51.654172168+00:00,1 +2023-10-24 21:17:51.782404177+00:00,1 +2023-10-24 21:17:51.912028043+00:00,1 +2023-10-24 21:17:52.040529620+00:00,1 +2023-10-24 21:17:52.170520242+00:00,1 +2023-10-24 21:17:52.299143634+00:00,1 +2023-10-24 21:17:52.427775699+00:00,1 +2023-10-24 21:17:52.556786804+00:00,1 +2023-10-24 21:17:52.686209374+00:00,1 +2023-10-24 21:17:52.813827323+00:00,1 +2023-10-24 21:17:52.942530108+00:00,1 +2023-10-24 21:17:53.070860338+00:00,1 +2023-10-24 21:17:53.198069838+00:00,1 +2023-10-24 21:17:53.326400629+00:00,1 +2023-10-24 21:17:53.455765066+00:00,1 +2023-10-24 21:17:53.583099595+00:00,1 +2023-10-24 21:17:53.712157099+00:00,1 +2023-10-24 21:17:53.840575026+00:00,1 +2023-10-24 21:17:53.968369278+00:00,1 +2023-10-24 21:17:54.097228510+00:00,1 +2023-10-24 21:17:54.224511667+00:00,1 +2023-10-24 21:17:54.351915252+00:00,1 +2023-10-24 21:17:54.479939452+00:00,1 +2023-10-24 21:17:54.608073309+00:00,1 +2023-10-24 21:17:54.736993395+00:00,1 +2023-10-24 21:17:54.865186345+00:00,1 +2023-10-24 21:17:54.996797019+00:00,1 +2023-10-24 21:17:55.124853377+00:00,1 +2023-10-24 21:17:55.252801724+00:00,1 +2023-10-24 21:17:55.380437760+00:00,1 +2023-10-24 21:17:55.509918972+00:00,1 +2023-10-24 21:17:55.639023032+00:00,1 +2023-10-24 21:17:55.768352803+00:00,1 +2023-10-24 21:17:55.895863292+00:00,1 +2023-10-24 21:17:56.022817951+00:00,1 +2023-10-24 21:17:56.151232946+00:00,1 +2023-10-24 21:17:56.280604231+00:00,1 +2023-10-24 21:17:56.408642621+00:00,1 +2023-10-24 21:17:56.536744816+00:00,1 +2023-10-24 21:17:56.665772829+00:00,1 +2023-10-24 21:17:56.795133097+00:00,1 +2023-10-24 21:17:56.924043847+00:00,1 +2023-10-24 21:17:57.052702672+00:00,1 +2023-10-24 21:17:57.181702224+00:00,1 +2023-10-24 21:17:57.310264077+00:00,1 +2023-10-24 21:17:57.438121722+00:00,1 +2023-10-24 21:17:57.567147383+00:00,1 +2023-10-24 21:17:57.697011979+00:00,1 +2023-10-24 21:17:57.826593888+00:00,1 +2023-10-24 21:17:57.955132521+00:00,1 +2023-10-24 21:17:58.084066341+00:00,1 +2023-10-24 21:17:58.211911596+00:00,1 +2023-10-24 21:17:58.339505926+00:00,1 +2023-10-24 21:17:58.467185496+00:00,1 +2023-10-24 21:17:58.594833272+00:00,1 +2023-10-24 21:17:58.727722800+00:00,1 +2023-10-24 21:17:58.856719312+00:00,1 +2023-10-24 21:17:58.985597875+00:00,1 +2023-10-24 21:17:59.114142843+00:00,1 +2023-10-24 21:17:59.242374064+00:00,1 +2023-10-24 21:17:59.371143657+00:00,1 +2023-10-24 21:17:59.499377343+00:00,1 +2023-10-24 21:17:59.628025528+00:00,1 +2023-10-24 21:17:59.756387939+00:00,1 +2023-10-24 21:17:59.884843573+00:00,1 +2023-10-24 21:18:00.013047168+00:00,1 +2023-10-24 21:18:00.141371471+00:00,1 +2023-10-24 21:18:00.271013521+00:00,1 +2023-10-24 21:18:00.399443314+00:00,1 +2023-10-24 21:18:00.528260651+00:00,1 +2023-10-24 21:18:00.657237465+00:00,1 +2023-10-24 21:18:00.784414049+00:00,1 +2023-10-24 21:18:00.912416976+00:00,1 +2023-10-24 21:18:01.040630611+00:00,1 +2023-10-24 21:18:01.167350671+00:00,1 +2023-10-24 21:18:01.296364556+00:00,1 +2023-10-24 21:18:01.424893183+00:00,1 +2023-10-24 21:18:01.553671077+00:00,1 +2023-10-24 21:18:01.681104729+00:00,1 +2023-10-24 21:18:01.808257068+00:00,1 +2023-10-24 21:18:01.936426099+00:00,1 +2023-10-24 21:18:02.064417050+00:00,1 +2023-10-24 21:18:02.192027947+00:00,1 +2023-10-24 21:18:02.319427700+00:00,1 +2023-10-24 21:18:02.447256828+00:00,1 +2023-10-24 21:18:02.575283235+00:00,1 +2023-10-24 21:18:02.702644660+00:00,1 +2023-10-24 21:18:02.831240795+00:00,1 +2023-10-24 21:18:02.960028177+00:00,1 +2023-10-24 21:18:03.088967029+00:00,1 +2023-10-24 21:18:03.217761078+00:00,1 +2023-10-24 21:18:03.345594313+00:00,1 +2023-10-24 21:18:03.474500226+00:00,1 +2023-10-24 21:18:03.603363307+00:00,1 +2023-10-24 21:18:03.731083288+00:00,1 +2023-10-24 21:18:03.859071523+00:00,1 +2023-10-24 21:18:03.986988844+00:00,1 +2023-10-24 21:18:04.117481707+00:00,1 +2023-10-24 21:18:04.244714166+00:00,1 +2023-10-24 21:18:04.371795612+00:00,1 +2023-10-24 21:18:04.498843992+00:00,1 +2023-10-24 21:18:04.626200091+00:00,1 +2023-10-24 21:18:04.755220066+00:00,1 +2023-10-24 21:18:04.883061536+00:00,1 +2023-10-24 21:18:05.013007820+00:00,1 +2023-10-24 21:18:05.140056033+00:00,1 +2023-10-24 21:18:06.271280142+00:00,1 +2023-10-24 21:18:06.396468082+00:00,1 +2023-10-24 21:18:06.522041055+00:00,1 +2023-10-24 21:18:06.648090628+00:00,1 +2023-10-24 21:18:06.773360218+00:00,1 +2023-10-24 21:18:06.899471796+00:00,1 +2023-10-24 21:18:07.025273220+00:00,1 +2023-10-24 21:18:07.152273742+00:00,1 +2023-10-24 21:18:07.279248271+00:00,1 +2023-10-24 21:18:07.405384164+00:00,1 +2023-10-24 21:18:07.531509364+00:00,1 +2023-10-24 21:18:07.657274148+00:00,1 +2023-10-24 21:18:07.784204172+00:00,1 +2023-10-24 21:18:07.910185338+00:00,1 +2023-10-24 21:18:08.036039630+00:00,1 +2023-10-24 21:18:08.161885665+00:00,1 +2023-10-24 21:18:08.287306885+00:00,1 +2023-10-24 21:18:08.413142004+00:00,1 +2023-10-24 21:18:08.539093286+00:00,1 +2023-10-24 21:18:08.665799479+00:00,1 +2023-10-24 21:18:08.790347127+00:00,1 +2023-10-24 21:18:08.915814256+00:00,1 +2023-10-24 21:18:09.041335696+00:00,1 +2023-10-24 21:18:09.166073795+00:00,1 +2023-10-24 21:18:09.292179122+00:00,1 +2023-10-24 21:18:09.418401458+00:00,1 +2023-10-24 21:18:09.543768514+00:00,1 +2023-10-24 21:18:09.670588698+00:00,1 +2023-10-24 21:18:09.797677797+00:00,1 +2023-10-24 21:18:09.925832959+00:00,1 +2023-10-24 21:18:10.051105450+00:00,1 +2023-10-24 21:18:10.175796216+00:00,1 +2023-10-24 21:18:10.301152607+00:00,1 +2023-10-24 21:18:10.426756111+00:00,1 +2023-10-24 21:18:10.552874780+00:00,1 +2023-10-24 21:18:10.678888587+00:00,1 +2023-10-24 21:18:11.807220322+00:00,1 +2023-10-24 21:18:11.933202833+00:00,1 +2023-10-24 21:18:12.059215708+00:00,1 +2023-10-24 21:18:12.184654878+00:00,1 +2023-10-24 21:18:12.309360099+00:00,1 +2023-10-24 21:18:12.434975813+00:00,1 +2023-10-24 21:18:12.561008188+00:00,1 +2023-10-24 21:18:12.685784827+00:00,1 +2023-10-24 21:18:12.811604515+00:00,1 +2023-10-24 21:18:12.938348499+00:00,1 +2023-10-24 21:18:14.126121450+00:00,1 +2023-10-24 21:18:14.253129929+00:00,1 +2023-10-24 21:18:14.377741661+00:00,1 +2023-10-24 21:18:14.503403749+00:00,1 +2023-10-24 21:18:15.655336289+00:00,1 +2023-10-24 21:18:15.782000367+00:00,1 +2023-10-24 21:18:15.908268506+00:00,1 +2023-10-24 21:18:16.034841980+00:00,1 +2023-10-24 21:18:16.160854927+00:00,1 +2023-10-24 21:18:16.286343341+00:00,1 +2023-10-24 21:18:16.411659114+00:00,1 +2023-10-24 21:18:16.537748183+00:00,1 +2023-10-24 21:18:16.665482365+00:00,1 +2023-10-24 21:18:16.791156006+00:00,1 +2023-10-24 21:18:16.917463955+00:00,1 +2023-10-24 21:18:17.043400653+00:00,1 +2023-10-24 21:18:17.169206855+00:00,1 +2023-10-24 21:18:17.296142692+00:00,1 +2023-10-24 21:18:17.424070739+00:00,1 +2023-10-24 21:18:17.549972822+00:00,1 +2023-10-24 21:18:17.676717454+00:00,1 +2023-10-24 21:18:17.802184717+00:00,1 +2023-10-24 21:18:17.927474387+00:00,1 +2023-10-24 21:18:18.053228430+00:00,1 +2023-10-24 21:18:18.179018255+00:00,1 +2023-10-24 21:18:18.304872250+00:00,1 +2023-10-24 21:18:18.431114855+00:00,1 +2023-10-24 21:18:18.556925162+00:00,1 +2023-10-24 21:18:18.683370551+00:00,1 +2023-10-24 21:18:18.810161744+00:00,1 +2023-10-24 21:18:18.936075654+00:00,1 +2023-10-24 21:18:19.062602540+00:00,1 +2023-10-24 21:18:19.187829749+00:00,1 +2023-10-24 21:18:19.313091139+00:00,1 +2023-10-24 21:18:19.439267471+00:00,1 +2023-10-24 21:18:19.563830779+00:00,1 +2023-10-24 21:18:19.688958972+00:00,1 +2023-10-24 21:18:19.813411045+00:00,1 +2023-10-24 21:18:19.939726789+00:00,1 +2023-10-24 21:18:20.066131982+00:00,1 +2023-10-24 21:18:20.191579505+00:00,1 +2023-10-24 21:18:20.317476314+00:00,1 +2023-10-24 21:18:20.442682016+00:00,1 +2023-10-24 21:18:20.569347868+00:00,1 +2023-10-24 21:18:20.694826871+00:00,1 +2023-10-24 21:18:20.820288701+00:00,1 +2023-10-24 21:18:20.945853618+00:00,1 +2023-10-24 21:18:21.071401324+00:00,1 +2023-10-24 21:18:21.197546670+00:00,1 +2023-10-24 21:18:21.323374436+00:00,1 +2023-10-24 21:18:21.448030617+00:00,1 +2023-10-24 21:18:21.573127355+00:00,1 +2023-10-24 21:18:21.700095867+00:00,1 +2023-10-24 21:18:21.825135718+00:00,1 +2023-10-24 21:18:21.950936057+00:00,1 +2023-10-24 21:18:22.076991109+00:00,1 +2023-10-24 21:18:22.201924634+00:00,1 +2023-10-24 21:18:22.327993385+00:00,1 +2023-10-24 21:18:22.453316158+00:00,1 +2023-10-24 21:18:22.579308884+00:00,1 +2023-10-24 21:18:22.705322928+00:00,1 +2023-10-24 21:18:22.832953108+00:00,1 +2023-10-24 21:18:22.957643893+00:00,1 +2023-10-24 21:18:23.082900039+00:00,1 +2023-10-24 21:18:23.208024093+00:00,1 +2023-10-24 21:18:23.333575356+00:00,1 +2023-10-24 21:18:38.895346222+00:00,1 +2023-10-24 21:18:39.024068131+00:00,1 +2023-10-24 21:18:39.152514108+00:00,1 +2023-10-24 21:18:39.280309591+00:00,1 +2023-10-24 21:18:39.408236741+00:00,1 +2023-10-24 21:18:39.536413657+00:00,1 +2023-10-24 21:18:39.664612401+00:00,1 +2023-10-24 21:18:39.793701099+00:00,1 +2023-10-24 21:18:39.921977044+00:00,1 +2023-10-24 21:18:40.051432011+00:00,1 +2023-10-24 21:18:40.181510833+00:00,1 +2023-10-24 21:18:40.309943845+00:00,1 +2023-10-24 21:18:40.437688526+00:00,1 +2023-10-24 21:18:40.566377775+00:00,1 +2023-10-24 21:18:40.694202683+00:00,1 +2023-10-24 21:18:40.823297503+00:00,1 +2023-10-24 21:18:40.952795407+00:00,1 +2023-10-24 21:18:41.082071446+00:00,1 +2023-10-24 21:18:41.210611536+00:00,1 +2023-10-24 21:18:41.339708325+00:00,1 +2023-10-24 21:18:41.468347226+00:00,1 +2023-10-24 21:18:41.595806289+00:00,1 +2023-10-24 21:18:41.723325410+00:00,1 +2023-10-24 21:18:41.851732289+00:00,1 +2023-10-24 21:18:41.980434522+00:00,1 +2023-10-24 21:18:42.108622862+00:00,1 +2023-10-24 21:18:42.236837751+00:00,1 +2023-10-24 21:18:42.364521040+00:00,1 +2023-10-24 21:18:42.493438693+00:00,1 +2023-10-24 21:18:42.621181578+00:00,1 +2023-10-24 21:18:42.750511340+00:00,1 +2023-10-24 21:18:42.881265516+00:00,1 +2023-10-24 21:18:43.009160395+00:00,1 +2023-10-24 21:18:43.136642917+00:00,1 +2023-10-24 21:18:43.264886912+00:00,1 +2023-10-24 21:18:43.393580981+00:00,1 +2023-10-24 21:18:43.521761669+00:00,1 +2023-10-24 21:18:43.652277925+00:00,1 +2023-10-24 21:18:43.780755730+00:00,1 +2023-10-24 21:18:43.909936821+00:00,1 +2023-10-24 21:18:44.039951949+00:00,1 +2023-10-24 21:18:44.168425414+00:00,1 +2023-10-24 21:18:44.296613965+00:00,1 +2023-10-24 21:18:44.424089429+00:00,1 +2023-10-24 21:18:44.553105155+00:00,1 +2023-10-24 21:18:44.681345266+00:00,1 +2023-10-24 21:18:44.811190364+00:00,1 +2023-10-24 21:18:44.939581978+00:00,1 +2023-10-24 21:18:45.068231771+00:00,1 +2023-10-24 21:18:45.196800357+00:00,1 +2023-10-24 21:18:45.326684685+00:00,1 +2023-10-24 21:18:45.455051099+00:00,1 +2023-10-24 21:18:45.583117346+00:00,1 +2023-10-24 21:18:45.711643688+00:00,1 +2023-10-24 21:18:45.840210937+00:00,1 +2023-10-24 21:18:45.967456481+00:00,1 +2023-10-24 21:18:46.094650900+00:00,1 +2023-10-24 21:18:46.222642464+00:00,1 +2023-10-24 21:18:46.354470157+00:00,1 +2023-10-24 21:18:46.484741292+00:00,1 +2023-10-24 21:18:46.615756687+00:00,1 +2023-10-24 21:18:46.744388318+00:00,1 +2023-10-24 21:18:46.873737801+00:00,1 +2023-10-24 21:18:47.002647427+00:00,1 +2023-10-24 21:18:47.131039266+00:00,1 +2023-10-24 21:18:47.259433897+00:00,1 +2023-10-24 21:18:47.388880268+00:00,1 +2023-10-24 21:18:47.517273037+00:00,1 +2023-10-24 21:18:47.646874243+00:00,1 +2023-10-24 21:18:47.775551840+00:00,1 +2023-10-24 21:18:47.907594757+00:00,1 +2023-10-24 21:18:48.035967496+00:00,1 +2023-10-24 21:18:48.163622319+00:00,1 +2023-10-24 21:18:48.293159430+00:00,1 +2023-10-24 21:18:48.421295480+00:00,1 +2023-10-24 21:18:48.550652213+00:00,1 +2023-10-24 21:18:48.679569579+00:00,1 +2023-10-24 21:18:48.809080888+00:00,1 +2023-10-24 21:18:48.936931624+00:00,1 +2023-10-24 21:18:49.065740092+00:00,1 +2023-10-24 21:18:49.193948792+00:00,1 +2023-10-24 21:18:49.321850525+00:00,1 +2023-10-24 21:18:49.450501887+00:00,1 +2023-10-24 21:18:49.578136267+00:00,1 +2023-10-24 21:18:49.707098941+00:00,1 +2023-10-24 21:18:49.836372765+00:00,1 +2023-10-24 21:18:49.965153486+00:00,1 +2023-10-24 21:18:50.094121011+00:00,1 +2023-10-24 21:18:50.222091027+00:00,1 +2023-10-24 21:18:50.349868305+00:00,1 +2023-10-24 21:18:50.479308239+00:00,1 +2023-10-24 21:18:50.607906429+00:00,1 +2023-10-24 21:18:50.736585318+00:00,1 +2023-10-24 21:18:50.865404216+00:00,1 +2023-10-24 21:18:50.994166818+00:00,1 +2023-10-24 21:18:51.122783453+00:00,1 +2023-10-24 21:18:51.251167754+00:00,1 +2023-10-24 21:18:51.379904504+00:00,1 +2023-10-24 21:18:51.508282412+00:00,1 +2023-10-24 21:18:51.636473360+00:00,1 +2023-10-24 21:18:51.765326900+00:00,1 +2023-10-24 21:18:51.893461863+00:00,1 +2023-10-24 21:18:52.021708488+00:00,1 +2023-10-24 21:18:52.149615810+00:00,1 +2023-10-24 21:18:52.277402849+00:00,1 +2023-10-24 21:18:52.405531541+00:00,1 +2023-10-24 21:18:52.533297712+00:00,1 +2023-10-24 21:18:52.660962028+00:00,1 +2023-10-24 21:18:52.788812484+00:00,1 +2023-10-24 21:18:52.917793943+00:00,1 +2023-10-24 21:18:53.045878120+00:00,1 +2023-10-24 21:18:53.174616951+00:00,1 +2023-10-24 21:18:53.302931920+00:00,1 +2023-10-24 21:18:53.431586572+00:00,1 +2023-10-24 21:18:53.559337699+00:00,1 +2023-10-24 21:18:53.688898422+00:00,1 +2023-10-24 21:18:53.817962415+00:00,1 +2023-10-24 21:18:53.946490172+00:00,1 +2023-10-24 21:18:54.074481291+00:00,1 +2023-10-24 21:18:54.202198809+00:00,1 +2023-10-24 21:18:54.332334602+00:00,1 +2023-10-24 21:18:54.461059633+00:00,1 +2023-10-24 21:18:54.587952628+00:00,1 +2023-10-24 21:18:54.715313248+00:00,1 +2023-10-24 21:18:54.842175629+00:00,1 +2023-10-24 21:18:54.971804997+00:00,1 +2023-10-24 21:18:55.100285600+00:00,1 +2023-10-24 21:18:55.227506331+00:00,1 +2023-10-24 21:18:55.356830052+00:00,1 +2023-10-24 21:18:55.485076349+00:00,1 +2023-10-24 21:18:55.612095798+00:00,1 +2023-10-24 21:18:55.742474539+00:00,1 +2023-10-24 21:18:55.873135292+00:00,1 +2023-10-24 21:18:56.003527129+00:00,1 +2023-10-24 21:18:56.132825431+00:00,1 +2023-10-24 21:18:56.262870891+00:00,1 +2023-10-24 21:18:56.391425797+00:00,1 +2023-10-24 21:18:56.522052235+00:00,1 +2023-10-24 21:18:56.649778659+00:00,1 +2023-10-24 21:18:56.779529176+00:00,1 +2023-10-24 21:18:56.908406305+00:00,1 +2023-10-24 21:18:57.038098960+00:00,1 +2023-10-24 21:18:57.170270126+00:00,1 +2023-10-24 21:18:57.299702932+00:00,1 +2023-10-24 21:18:57.429432648+00:00,1 +2023-10-24 21:18:57.558143219+00:00,1 +2023-10-24 21:18:57.687096415+00:00,1 +2023-10-24 21:18:57.816602175+00:00,1 +2023-10-24 21:18:57.946020855+00:00,1 +2023-10-24 21:18:58.073826594+00:00,1 +2023-10-24 21:18:58.201680203+00:00,1 +2023-10-24 21:18:58.329351168+00:00,1 +2023-10-24 21:18:58.458635387+00:00,1 +2023-10-24 21:18:58.588944630+00:00,1 +2023-10-24 21:18:58.718695476+00:00,1 +2023-10-24 21:18:58.847763789+00:00,1 +2023-10-24 21:18:58.978708433+00:00,1 +2023-10-24 21:18:59.107397526+00:00,1 +2023-10-24 21:18:59.235814780+00:00,1 +2023-10-24 21:18:59.365257518+00:00,1 +2023-10-24 21:18:59.495233897+00:00,1 +2023-10-24 21:18:59.623085143+00:00,1 +2023-10-24 21:18:59.753977891+00:00,1 +2023-10-24 21:18:59.882904079+00:00,1 +2023-10-24 21:19:00.011798913+00:00,1 +2023-10-24 21:19:00.140471417+00:00,1 +2023-10-24 21:19:00.269825224+00:00,1 +2023-10-24 21:19:00.397777100+00:00,1 +2023-10-24 21:19:00.528055000+00:00,1 +2023-10-24 21:19:00.658097969+00:00,1 +2023-10-24 21:19:00.787254925+00:00,1 +2023-10-24 21:19:00.915878178+00:00,1 +2023-10-24 21:19:01.043910041+00:00,1 +2023-10-24 21:19:01.172248232+00:00,1 +2023-10-24 21:19:01.301363582+00:00,1 +2023-10-24 21:19:01.430814330+00:00,1 +2023-10-24 21:19:01.558288760+00:00,1 +2023-10-24 21:19:01.686581126+00:00,1 +2023-10-24 21:19:01.814519934+00:00,1 +2023-10-24 21:19:01.942875398+00:00,1 +2023-10-24 21:19:02.071718265+00:00,1 +2023-10-24 21:19:02.199654177+00:00,1 +2023-10-24 21:19:02.326958746+00:00,1 +2023-10-24 21:19:02.455440387+00:00,1 +2023-10-24 21:19:02.585395163+00:00,1 +2023-10-24 21:19:02.713989601+00:00,1 +2023-10-24 21:19:02.843024817+00:00,1 +2023-10-24 21:19:02.971322819+00:00,1 +2023-10-24 21:19:03.100525697+00:00,1 +2023-10-24 21:19:03.229753502+00:00,1 +2023-10-24 21:19:03.357413966+00:00,1 +2023-10-24 21:19:03.485964847+00:00,1 +2023-10-24 21:19:03.614235876+00:00,1 +2023-10-24 21:19:03.741944362+00:00,1 +2023-10-24 21:19:03.871706471+00:00,1 +2023-10-24 21:19:04.000507515+00:00,1 +2023-10-24 21:19:04.129920307+00:00,1 +2023-10-24 21:19:04.258191045+00:00,1 +2023-10-24 21:19:04.387246747+00:00,1 +2023-10-24 21:19:04.514843711+00:00,1 +2023-10-24 21:19:04.642821719+00:00,1 +2023-10-24 21:19:04.770725993+00:00,1 +2023-10-24 21:19:04.899170349+00:00,1 +2023-10-24 21:19:05.026469854+00:00,1 +2023-10-24 21:19:05.155341707+00:00,1 +2023-10-24 21:19:05.283378262+00:00,1 +2023-10-24 21:19:05.411338448+00:00,1 +2023-10-24 21:19:05.539027204+00:00,1 +2023-10-24 21:19:05.668015794+00:00,1 +2023-10-24 21:19:05.797149421+00:00,1 +2023-10-24 21:19:05.926513593+00:00,1 +2023-10-24 21:19:06.054516675+00:00,1 +2023-10-24 21:19:06.183724921+00:00,1 +2023-10-24 21:19:06.311229087+00:00,1 +2023-10-24 21:19:06.439926137+00:00,1 +2023-10-24 21:19:06.568381507+00:00,1 +2023-10-24 21:19:06.697293442+00:00,1 +2023-10-24 21:19:06.825668579+00:00,1 +2023-10-24 21:19:06.953770727+00:00,1 +2023-10-24 21:19:07.082911902+00:00,1 +2023-10-24 21:19:07.211351705+00:00,1 +2023-10-24 21:19:07.339870301+00:00,1 +2023-10-24 21:19:07.468257100+00:00,1 +2023-10-24 21:19:07.595259667+00:00,1 +2023-10-24 21:19:07.723366163+00:00,1 +2023-10-24 21:19:07.851409165+00:00,1 +2023-10-24 21:19:07.980383712+00:00,1 +2023-10-24 21:19:08.109518299+00:00,1 +2023-10-24 21:19:08.237524997+00:00,1 +2023-10-24 21:19:08.365387630+00:00,1 +2023-10-24 21:19:08.493926882+00:00,1 +2023-10-24 21:19:08.622050582+00:00,1 +2023-10-24 21:19:08.750669218+00:00,1 +2023-10-24 21:19:08.879494664+00:00,1 +2023-10-24 21:19:09.007339123+00:00,1 +2023-10-24 21:19:09.134740413+00:00,1 +2023-10-24 21:19:09.263067058+00:00,1 +2023-10-24 21:19:09.392430771+00:00,1 +2023-10-24 21:19:09.519885455+00:00,1 +2023-10-24 21:19:09.648179544+00:00,1 +2023-10-24 21:19:09.776973532+00:00,1 +2023-10-24 21:19:09.904301135+00:00,1 +2023-10-24 21:19:10.033524447+00:00,1 +2023-10-24 21:19:10.161214649+00:00,1 +2023-10-24 21:19:10.290154243+00:00,1 +2023-10-24 21:19:10.418914993+00:00,1 +2023-10-24 21:19:10.546991072+00:00,1 +2023-10-24 21:19:10.675152002+00:00,1 +2023-10-24 21:19:10.804162448+00:00,1 +2023-10-24 21:19:10.932160858+00:00,1 +2023-10-24 21:19:11.060334218+00:00,1 +2023-10-24 21:19:11.189103595+00:00,1 +2023-10-24 21:19:11.317346232+00:00,1 +2023-10-24 21:19:11.444476388+00:00,1 +2023-10-24 21:19:11.572308196+00:00,1 +2023-10-24 21:19:11.699620023+00:00,1 +2023-10-24 21:19:11.827845834+00:00,1 +2023-10-24 21:19:11.954389129+00:00,1 +2023-10-24 21:19:12.081147682+00:00,1 +2023-10-24 21:19:12.208298094+00:00,1 +2023-10-24 21:19:12.336206266+00:00,1 +2023-10-24 21:19:12.464889132+00:00,1 +2023-10-24 21:19:12.593556230+00:00,1 +2023-10-24 21:19:12.721620255+00:00,1 +2023-10-24 21:19:12.848988376+00:00,1 +2023-10-24 21:19:12.978930979+00:00,1 +2023-10-24 21:19:13.107709993+00:00,1 +2023-10-24 21:19:13.235233605+00:00,1 +2023-10-24 21:19:13.362980906+00:00,1 +2023-10-24 21:19:13.490444219+00:00,1 +2023-10-24 21:19:13.619208838+00:00,1 +2023-10-24 21:19:13.745807884+00:00,1 +2023-10-24 21:19:13.874262799+00:00,1 +2023-10-24 21:19:14.002100404+00:00,1 +2023-10-24 21:19:14.129791526+00:00,1 +2023-10-24 21:19:14.258142970+00:00,1 +2023-10-24 21:19:14.385412476+00:00,1 +2023-10-24 21:19:14.512958187+00:00,1 +2023-10-24 21:19:14.642213145+00:00,1 +2023-10-24 21:19:14.771333440+00:00,1 +2023-10-24 21:19:14.899542085+00:00,1 +2023-10-24 21:19:15.027092848+00:00,1 +2023-10-24 21:19:15.155820539+00:00,1 +2023-10-24 21:19:15.283375796+00:00,1 +2023-10-24 21:19:15.411807610+00:00,1 +2023-10-24 21:19:15.538844531+00:00,1 +2023-10-24 21:19:15.668171747+00:00,1 +2023-10-24 21:19:15.796388360+00:00,1 +2023-10-24 21:19:15.925789226+00:00,1 +2023-10-24 21:19:16.052995479+00:00,1 +2023-10-24 21:19:16.182041123+00:00,1 +2023-10-24 21:19:16.310435137+00:00,1 +2023-10-24 21:19:16.437781393+00:00,1 +2023-10-24 21:19:16.563182539+00:00,1 +2023-10-24 21:19:16.687830308+00:00,1 +2023-10-24 21:19:16.813403131+00:00,1 +2023-10-24 21:19:16.939498125+00:00,1 +2023-10-24 21:19:17.064757590+00:00,1 +2023-10-24 21:19:17.189824083+00:00,1 +2023-10-24 21:19:17.314987211+00:00,1 +2023-10-24 21:19:17.441278156+00:00,1 +2023-10-24 21:19:17.567694378+00:00,0 +2023-10-24 21:19:19.579769897+00:00,1 +2023-10-24 21:19:21.758055653+00:00,1 +2023-10-24 21:19:21.882546569+00:00,1 +2023-10-24 21:19:22.007787439+00:00,1 +2023-10-24 21:19:22.133276545+00:00,1 +2023-10-24 21:19:22.259871242+00:00,1 +2023-10-24 21:19:22.384667527+00:00,1 +2023-10-24 21:19:22.509728874+00:00,1 +2023-10-24 21:19:22.638733260+00:00,1 +2023-10-24 21:19:22.766558988+00:00,1 +2023-10-24 21:19:22.894805821+00:00,1 +2023-10-24 21:19:23.023257167+00:00,1 +2023-10-24 21:19:23.154735352+00:00,1 +2023-10-24 21:19:23.283498745+00:00,1 +2023-10-24 21:19:23.411325191+00:00,1 +2023-10-24 21:19:23.538727120+00:00,1 +2023-10-24 21:19:23.667265250+00:00,1 +2023-10-24 21:19:23.796238034+00:00,1 +2023-10-24 21:19:23.923500627+00:00,1 +2023-10-24 21:19:24.051429530+00:00,1 +2023-10-24 21:19:24.178285628+00:00,1 +2023-10-24 21:19:24.306589282+00:00,1 +2023-10-24 21:19:24.433535387+00:00,1 +2023-10-24 21:19:24.561137506+00:00,1 +2023-10-24 21:19:24.687990189+00:00,1 +2023-10-24 21:19:24.816000378+00:00,1 +2023-10-24 21:19:24.944378478+00:00,1 +2023-10-24 21:19:25.071394632+00:00,1 +2023-10-24 21:19:25.198629217+00:00,1 +2023-10-24 21:19:25.325754070+00:00,1 +2023-10-24 21:19:25.453002124+00:00,1 +2023-10-24 21:19:25.581154931+00:00,1 +2023-10-24 21:19:25.709211432+00:00,1 +2023-10-24 21:19:25.837525643+00:00,1 +2023-10-24 21:19:25.964634548+00:00,1 +2023-10-24 21:19:26.092537320+00:00,1 +2023-10-24 21:19:26.220204958+00:00,1 +2023-10-24 21:19:26.347140783+00:00,1 +2023-10-24 21:19:26.475038535+00:00,1 +2023-10-24 21:19:26.602530140+00:00,1 +2023-10-24 21:19:26.730386401+00:00,1 +2023-10-24 21:19:26.857410098+00:00,1 +2023-10-24 21:19:26.984350652+00:00,1 +2023-10-24 21:19:27.111983621+00:00,1 +2023-10-24 21:19:27.240569439+00:00,1 +2023-10-24 21:19:27.367815992+00:00,1 +2023-10-24 21:19:27.496476079+00:00,1 +2023-10-24 21:19:27.623955748+00:00,1 +2023-10-24 21:19:27.752160395+00:00,1 +2023-10-24 21:19:27.880734777+00:00,1 +2023-10-24 21:19:28.008517602+00:00,1 +2023-10-24 21:19:28.135864960+00:00,1 +2023-10-24 21:19:28.263824460+00:00,1 +2023-10-24 21:19:28.391261232+00:00,1 +2023-10-24 21:19:28.517618083+00:00,1 +2023-10-24 21:19:28.645874365+00:00,1 +2023-10-24 21:19:28.774973113+00:00,1 +2023-10-24 21:19:28.905320354+00:00,1 +2023-10-24 21:19:29.033509500+00:00,1 +2023-10-24 21:19:29.161769624+00:00,1 +2023-10-24 21:19:29.290277850+00:00,1 +2023-10-24 21:19:29.417464717+00:00,1 +2023-10-24 21:19:29.545142884+00:00,1 +2023-10-24 21:19:29.673134191+00:00,1 +2023-10-24 21:19:29.802217353+00:00,1 +2023-10-24 21:19:29.929406617+00:00,1 +2023-10-24 21:19:30.057400891+00:00,1 +2023-10-24 21:19:30.185509065+00:00,1 +2023-10-24 21:19:30.313212264+00:00,1 +2023-10-24 21:19:30.441887883+00:00,1 +2023-10-24 21:19:30.570460748+00:00,1 +2023-10-24 21:19:30.698281124+00:00,1 +2023-10-24 21:19:30.825932542+00:00,1 +2023-10-24 21:19:30.953695633+00:00,1 +2023-10-24 21:19:31.082632712+00:00,1 +2023-10-24 21:19:31.211114145+00:00,1 +2023-10-24 21:19:31.339660215+00:00,1 +2023-10-24 21:19:31.468802477+00:00,1 +2023-10-24 21:19:31.598239104+00:00,1 +2023-10-24 21:19:31.726480634+00:00,1 +2023-10-24 21:19:31.854030517+00:00,1 +2023-10-24 21:19:31.981215526+00:00,1 +2023-10-24 21:19:32.107536440+00:00,1 +2023-10-24 21:19:32.235001395+00:00,1 +2023-10-24 21:19:32.362450152+00:00,1 +2023-10-24 21:19:32.489956728+00:00,1 +2023-10-24 21:19:32.617879198+00:00,1 +2023-10-24 21:19:32.745026505+00:00,1 +2023-10-24 21:19:32.871153954+00:00,1 +2023-10-24 21:19:32.997864263+00:00,1 +2023-10-24 21:19:33.125662103+00:00,1 +2023-10-24 21:19:33.253183269+00:00,1 +2023-10-24 21:19:33.379895626+00:00,1 +2023-10-24 21:19:33.507408350+00:00,1 +2023-10-24 21:19:33.634267743+00:00,1 +2023-10-24 21:19:33.761161479+00:00,1 +2023-10-24 21:19:33.888154961+00:00,1 +2023-10-24 21:19:34.014656847+00:00,1 +2023-10-24 21:19:34.142432019+00:00,1 +2023-10-24 21:19:34.270062424+00:00,1 +2023-10-24 21:19:34.397894376+00:00,1 +2023-10-24 21:19:34.524699530+00:00,1 +2023-10-24 21:19:34.652717474+00:00,1 +2023-10-24 21:19:34.780259964+00:00,1 +2023-10-24 21:19:34.908348261+00:00,1 +2023-10-24 21:19:35.035112081+00:00,1 +2023-10-24 21:19:35.161791578+00:00,1 +2023-10-24 21:19:35.291112760+00:00,1 +2023-10-24 21:19:35.418643655+00:00,1 +2023-10-24 21:19:35.547201747+00:00,1 +2023-10-24 21:19:35.675448615+00:00,1 +2023-10-24 21:19:35.803384726+00:00,1 +2023-10-24 21:19:35.930903308+00:00,1 +2023-10-24 21:19:36.059087492+00:00,1 +2023-10-24 21:19:36.186072879+00:00,1 +2023-10-24 21:19:36.313561185+00:00,1 +2023-10-24 21:19:36.441639482+00:00,1 +2023-10-24 21:19:36.569611845+00:00,1 +2023-10-24 21:19:36.696773268+00:00,1 +2023-10-24 21:19:36.825440784+00:00,1 +2023-10-24 21:19:36.955192348+00:00,1 +2023-10-24 21:19:37.082532556+00:00,1 +2023-10-24 21:19:37.211073853+00:00,1 +2023-10-24 21:19:37.338572970+00:00,1 +2023-10-24 21:19:37.465804290+00:00,1 +2023-10-24 21:19:37.594368763+00:00,1 +2023-10-24 21:19:37.721920750+00:00,1 +2023-10-24 21:19:37.849612931+00:00,1 +2023-10-24 21:19:37.977227363+00:00,1 +2023-10-24 21:19:38.104793873+00:00,1 +2023-10-24 21:19:38.232529403+00:00,1 +2023-10-24 21:19:38.361023452+00:00,1 +2023-10-24 21:19:38.488192967+00:00,1 +2023-10-24 21:19:38.615940968+00:00,1 +2023-10-24 21:19:38.743788347+00:00,1 +2023-10-24 21:19:38.871397666+00:00,1 +2023-10-24 21:19:39.000276242+00:00,1 +2023-10-24 21:19:39.129848176+00:00,1 +2023-10-24 21:19:39.258445129+00:00,1 +2023-10-24 21:19:39.386624414+00:00,1 +2023-10-24 21:19:39.515812752+00:00,1 +2023-10-24 21:19:39.644777973+00:00,1 +2023-10-24 21:19:39.772963847+00:00,1 +2023-10-24 21:19:39.902380988+00:00,1 +2023-10-24 21:19:40.030883345+00:00,1 +2023-10-24 21:19:40.160048298+00:00,1 +2023-10-24 21:19:40.289048795+00:00,1 +2023-10-24 21:19:40.418334417+00:00,1 +2023-10-24 21:19:40.546760097+00:00,1 +2023-10-24 21:19:40.675910754+00:00,1 +2023-10-24 21:19:40.804168256+00:00,1 +2023-10-24 21:19:40.931006943+00:00,1 +2023-10-24 21:19:41.060406250+00:00,1 +2023-10-24 21:19:41.188639882+00:00,1 +2023-10-24 21:19:41.317001964+00:00,1 +2023-10-24 21:19:41.445171638+00:00,1 +2023-10-24 21:19:41.572474460+00:00,1 +2023-10-24 21:19:41.699985800+00:00,1 +2023-10-24 21:19:41.828052675+00:00,1 +2023-10-24 21:19:41.957617816+00:00,1 +2023-10-24 21:19:42.087782254+00:00,1 +2023-10-24 21:19:42.217498433+00:00,1 +2023-10-24 21:19:42.344939368+00:00,1 +2023-10-24 21:19:42.473236912+00:00,1 +2023-10-24 21:19:42.601199979+00:00,1 +2023-10-24 21:19:42.730705796+00:00,1 +2023-10-24 21:19:42.859601507+00:00,1 +2023-10-24 21:19:42.987579308+00:00,1 +2023-10-24 21:19:43.115478898+00:00,1 +2023-10-24 21:19:43.242858772+00:00,1 +2023-10-24 21:19:43.370791548+00:00,1 +2023-10-24 21:19:43.497525222+00:00,1 +2023-10-24 21:19:43.624393249+00:00,1 +2023-10-24 21:19:43.751634979+00:00,1 +2023-10-24 21:19:43.880987682+00:00,1 +2023-10-24 21:19:44.008351039+00:00,1 +2023-10-24 21:19:44.135354376+00:00,1 +2023-10-24 21:19:44.262907195+00:00,1 +2023-10-24 21:19:44.389934258+00:00,1 +2023-10-24 21:19:44.517143048+00:00,1 +2023-10-24 21:19:44.645360935+00:00,1 +2023-10-24 21:19:44.773818895+00:00,1 +2023-10-24 21:19:44.900873342+00:00,1 +2023-10-24 21:19:45.027628041+00:00,1 +2023-10-24 21:19:45.156135615+00:00,1 +2023-10-24 21:19:45.288031587+00:00,1 +2023-10-24 21:19:45.414889930+00:00,1 +2023-10-24 21:19:45.543293685+00:00,1 +2023-10-24 21:19:45.671048528+00:00,1 +2023-10-24 21:19:45.799288865+00:00,1 +2023-10-24 21:19:45.927294987+00:00,1 +2023-10-24 21:19:46.054511732+00:00,1 +2023-10-24 21:19:46.183019181+00:00,1 +2023-10-24 21:19:46.311210347+00:00,1 +2023-10-24 21:19:46.439061478+00:00,1 +2023-10-24 21:19:46.566420801+00:00,1 +2023-10-24 21:19:46.694073595+00:00,1 +2023-10-24 21:19:46.821731655+00:00,1 +2023-10-24 21:19:46.949861959+00:00,1 +2023-10-24 21:19:47.077713940+00:00,1 +2023-10-24 21:19:47.205884892+00:00,1 +2023-10-24 21:19:47.334713725+00:00,1 +2023-10-24 21:19:47.462389123+00:00,1 +2023-10-24 21:19:47.590096311+00:00,1 +2023-10-24 21:19:47.717723126+00:00,1 +2023-10-24 21:19:47.845457313+00:00,1 +2023-10-24 21:19:47.973412871+00:00,1 +2023-10-24 21:19:48.100820854+00:00,1 +2023-10-24 21:19:48.228912704+00:00,1 +2023-10-24 21:19:48.356801024+00:00,1 +2023-10-24 21:19:48.484068139+00:00,1 +2023-10-24 21:19:48.611607368+00:00,1 +2023-10-24 21:19:48.739454061+00:00,1 +2023-10-24 21:19:48.867653954+00:00,1 +2023-10-24 21:19:48.996337242+00:00,1 +2023-10-24 21:19:49.124936807+00:00,1 +2023-10-24 21:19:49.252220372+00:00,1 +2023-10-24 21:19:49.380058373+00:00,1 +2023-10-24 21:19:49.507958680+00:00,1 +2023-10-24 21:19:49.635221755+00:00,1 +2023-10-24 21:19:49.761312213+00:00,1 +2023-10-24 21:19:49.888209093+00:00,1 +2023-10-24 21:19:50.015191769+00:00,1 +2023-10-24 21:19:50.142638672+00:00,1 +2023-10-24 21:19:50.270046478+00:00,1 +2023-10-24 21:19:50.397767866+00:00,1 +2023-10-24 21:19:50.525040930+00:00,1 +2023-10-24 21:19:50.652164385+00:00,1 +2023-10-24 21:19:50.779785304+00:00,1 +2023-10-24 21:19:50.907474052+00:00,1 +2023-10-24 21:19:51.035177152+00:00,1 +2023-10-24 21:19:51.162527302+00:00,1 +2023-10-24 21:19:51.291571355+00:00,1 +2023-10-24 21:19:51.419971317+00:00,1 +2023-10-24 21:19:51.547264809+00:00,1 +2023-10-24 21:19:51.674825314+00:00,1 +2023-10-24 21:19:51.804704071+00:00,1 +2023-10-24 21:19:51.932234114+00:00,1 +2023-10-24 21:19:52.059562347+00:00,1 +2023-10-24 21:19:52.188050383+00:00,1 +2023-10-24 21:19:52.315132072+00:00,1 +2023-10-24 21:19:52.442457518+00:00,1 +2023-10-24 21:19:52.569660585+00:00,1 +2023-10-24 21:19:52.697047083+00:00,1 +2023-10-24 21:19:52.824311275+00:00,1 +2023-10-24 21:19:52.951146266+00:00,1 +2023-10-24 21:19:53.079239580+00:00,1 +2023-10-24 21:19:53.206598210+00:00,1 +2023-10-24 21:19:53.334713688+00:00,1 +2023-10-24 21:19:53.463435613+00:00,1 +2023-10-24 21:19:53.590586413+00:00,1 +2023-10-24 21:19:53.719917005+00:00,1 +2023-10-24 21:19:53.848066565+00:00,1 +2023-10-24 21:19:53.976778915+00:00,1 +2023-10-24 21:19:54.105496467+00:00,1 +2023-10-24 21:19:54.233047880+00:00,1 +2023-10-24 21:19:54.360717854+00:00,1 +2023-10-24 21:19:54.489021630+00:00,1 +2023-10-24 21:19:54.615845611+00:00,1 +2023-10-24 21:19:54.743559173+00:00,1 +2023-10-24 21:19:54.871736241+00:00,1 +2023-10-24 21:19:55.000358364+00:00,1 +2023-10-24 21:19:55.130799786+00:00,1 +2023-10-24 21:19:55.258109357+00:00,1 +2023-10-24 21:19:55.387303330+00:00,1 +2023-10-24 21:19:55.516006702+00:00,1 +2023-10-24 21:19:55.643790514+00:00,1 +2023-10-24 21:19:55.770222742+00:00,1 +2023-10-24 21:19:55.897899163+00:00,1 +2023-10-24 21:19:56.024587797+00:00,1 +2023-10-24 21:19:56.152760539+00:00,1 +2023-10-24 21:19:56.280584139+00:00,1 +2023-10-24 21:19:56.408776295+00:00,1 +2023-10-24 21:19:56.537979209+00:00,1 +2023-10-24 21:19:56.665761019+00:00,1 +2023-10-24 21:19:56.794065746+00:00,1 +2023-10-24 21:19:56.921375916+00:00,1 +2023-10-24 21:19:57.050510718+00:00,1 +2023-10-24 21:19:57.177756880+00:00,1 +2023-10-24 21:19:57.303992771+00:00,1 +2023-10-24 21:19:57.430730500+00:00,1 +2023-10-24 21:19:57.560174659+00:00,1 +2023-10-24 21:19:57.688022899+00:00,1 +2023-10-24 21:19:57.816008215+00:00,1 +2023-10-24 21:19:57.944027989+00:00,1 +2023-10-24 21:19:58.071391486+00:00,1 +2023-10-24 21:19:58.198465179+00:00,1 +2023-10-24 21:19:58.327787118+00:00,1 +2023-10-24 21:19:58.454880031+00:00,1 +2023-10-24 21:19:58.582319832+00:00,1 +2023-10-24 21:19:58.709815841+00:00,1 +2023-10-24 21:19:58.838811076+00:00,1 +2023-10-24 21:19:58.967703310+00:00,1 +2023-10-24 21:19:59.095314360+00:00,1 +2023-10-24 21:19:59.222239512+00:00,1 +2023-10-24 21:19:59.350488397+00:00,1 +2023-10-24 21:19:59.477887550+00:00,1 +2023-10-24 21:19:59.604831402+00:00,1 +2023-10-24 21:19:59.733678957+00:00,1 +2023-10-24 21:19:59.860929241+00:00,1 +2023-10-24 21:19:59.987704004+00:00,1 +2023-10-24 21:20:00.116218714+00:00,1 +2023-10-24 21:20:00.243852514+00:00,1 +2023-10-24 21:20:00.371303809+00:00,1 +2023-10-24 21:20:00.498600520+00:00,1 +2023-10-24 21:20:00.625511821+00:00,1 +2023-10-24 21:20:00.753664508+00:00,1 +2023-10-24 21:20:00.880858398+00:00,1 +2023-10-24 21:20:01.007951181+00:00,1 +2023-10-24 21:20:01.135913111+00:00,1 +2023-10-24 21:20:01.264211328+00:00,1 +2023-10-24 21:20:01.392473566+00:00,1 +2023-10-24 21:20:01.520519368+00:00,1 +2023-10-24 21:20:01.648083082+00:00,1 +2023-10-24 21:20:01.776566162+00:00,1 +2023-10-24 21:20:01.905714242+00:00,1 +2023-10-24 21:20:02.033155905+00:00,1 +2023-10-24 21:20:02.161165451+00:00,1 +2023-10-24 21:20:02.288214613+00:00,1 +2023-10-24 21:20:02.414565174+00:00,1 +2023-10-24 21:20:02.542383342+00:00,1 +2023-10-24 21:20:02.670465938+00:00,1 +2023-10-24 21:20:02.801515830+00:00,1 +2023-10-24 21:20:02.928868965+00:00,1 +2023-10-24 21:20:03.057692437+00:00,1 +2023-10-24 21:20:03.186072793+00:00,1 +2023-10-24 21:20:03.313542956+00:00,1 +2023-10-24 21:20:03.441763763+00:00,1 +2023-10-24 21:20:03.570843838+00:00,1 +2023-10-24 21:20:03.698765191+00:00,1 +2023-10-24 21:20:03.827083037+00:00,1 +2023-10-24 21:20:03.955046849+00:00,1 +2023-10-24 21:20:04.083542137+00:00,1 +2023-10-24 21:20:04.211742502+00:00,1 +2023-10-24 21:20:04.339415052+00:00,1 +2023-10-24 21:20:04.467575364+00:00,1 +2023-10-24 21:20:04.596726623+00:00,1 +2023-10-24 21:20:04.725611728+00:00,1 +2023-10-24 21:20:04.853973556+00:00,1 +2023-10-24 21:20:04.981449038+00:00,1 +2023-10-24 21:20:05.110000931+00:00,1 +2023-10-24 21:20:05.237170400+00:00,1 +2023-10-24 21:20:05.366339107+00:00,1 +2023-10-24 21:20:05.494365638+00:00,1 +2023-10-24 21:20:05.622019457+00:00,1 +2023-10-24 21:20:05.749853764+00:00,1 +2023-10-24 21:20:05.878816362+00:00,1 +2023-10-24 21:20:06.007399113+00:00,1 +2023-10-24 21:20:06.137705067+00:00,1 +2023-10-24 21:20:06.265980196+00:00,1 +2023-10-24 21:20:06.395147241+00:00,1 +2023-10-24 21:20:06.523641500+00:00,1 +2023-10-24 21:20:06.651691819+00:00,1 +2023-10-24 21:20:06.780509093+00:00,1 +2023-10-24 21:20:06.908752270+00:00,1 +2023-10-24 21:20:07.036363671+00:00,1 +2023-10-24 21:20:07.164129201+00:00,1 +2023-10-24 21:20:07.291742626+00:00,1 +2023-10-24 21:20:07.418315233+00:00,1 +2023-10-24 21:20:07.545561256+00:00,1 +2023-10-24 21:20:07.673629135+00:00,1 +2023-10-24 21:20:07.802079671+00:00,1 +2023-10-24 21:20:07.929696330+00:00,1 +2023-10-24 21:20:08.058694938+00:00,1 +2023-10-24 21:20:08.186869173+00:00,1 +2023-10-24 21:20:08.315305536+00:00,1 +2023-10-24 21:20:08.442547607+00:00,1 +2023-10-24 21:20:08.571277803+00:00,1 +2023-10-24 21:20:08.699476418+00:00,1 +2023-10-24 21:20:08.827292897+00:00,1 +2023-10-24 21:20:08.956620667+00:00,1 +2023-10-24 21:20:09.084430634+00:00,1 +2023-10-24 21:20:09.213294483+00:00,1 +2023-10-24 21:20:09.340666685+00:00,1 +2023-10-24 21:20:09.468580854+00:00,1 +2023-10-24 21:20:09.596797885+00:00,1 +2023-10-24 21:20:09.725030740+00:00,1 +2023-10-24 21:20:09.852886584+00:00,1 +2023-10-24 21:20:09.982200011+00:00,1 +2023-10-24 21:20:10.110326959+00:00,1 +2023-10-24 21:20:10.237270313+00:00,1 +2023-10-24 21:20:10.365009145+00:00,1 +2023-10-24 21:20:10.491892635+00:00,1 +2023-10-24 21:20:10.618404063+00:00,1 +2023-10-24 21:20:10.746802324+00:00,1 +2023-10-24 21:20:10.874514102+00:00,1 +2023-10-24 21:20:11.002850400+00:00,1 +2023-10-24 21:20:11.131801199+00:00,1 +2023-10-24 21:20:11.259505990+00:00,1 +2023-10-24 21:20:11.386821110+00:00,1 +2023-10-24 21:20:11.514583831+00:00,1 +2023-10-24 21:20:11.642794752+00:00,1 +2023-10-24 21:20:11.771137771+00:00,1 +2023-10-24 21:20:11.898183113+00:00,1 +2023-10-24 21:20:12.027160330+00:00,1 +2023-10-24 21:20:12.153893395+00:00,1 +2023-10-24 21:20:12.281595019+00:00,1 +2023-10-24 21:20:12.408858511+00:00,1 +2023-10-24 21:20:12.536229072+00:00,1 +2023-10-24 21:20:12.663332772+00:00,1 +2023-10-24 21:20:12.792122281+00:00,1 +2023-10-24 21:20:12.922902871+00:00,1 +2023-10-24 21:20:13.050977616+00:00,1 +2023-10-24 21:20:13.179465723+00:00,1 +2023-10-24 21:20:13.306008978+00:00,1 +2023-10-24 21:20:13.433369880+00:00,1 +2023-10-24 21:20:13.560657149+00:00,1 +2023-10-24 21:20:13.687738438+00:00,1 +2023-10-24 21:20:13.815945036+00:00,1 +2023-10-24 21:20:13.941783483+00:00,1 +2023-10-24 21:20:14.067188401+00:00,1 +2023-10-24 21:20:14.193513988+00:00,1 +2023-10-24 21:20:14.318155078+00:00,1 +2023-10-24 21:20:14.443365549+00:00,1 +2023-10-24 21:20:14.567996632+00:00,1 +2023-10-24 21:20:14.693309748+00:00,1 +2023-10-24 21:20:14.819031110+00:00,1 +2023-10-24 21:20:14.945822963+00:00,1 +2023-10-24 21:20:15.071435231+00:00,1 +2023-10-24 21:20:15.197181453+00:00,1 +2023-10-24 21:20:15.322580522+00:00,1 +2023-10-24 21:20:15.447593630+00:00,1 +2023-10-24 21:20:15.571884466+00:00,1 +2023-10-24 21:20:15.697215999+00:00,1 +2023-10-24 21:20:16.880908269+00:00,1 +2023-10-24 21:20:17.007157105+00:00,1 +2023-10-24 21:20:17.133667565+00:00,1 +2023-10-24 21:20:17.259832649+00:00,1 +2023-10-24 21:20:17.384121504+00:00,1 +2023-10-24 21:20:17.509416594+00:00,1 +2023-10-24 21:20:17.635588923+00:00,1 +2023-10-24 21:20:17.762081592+00:00,1 +2023-10-24 21:20:17.888235560+00:00,1 +2023-10-24 21:20:18.013735962+00:00,1 +2023-10-24 21:20:18.138573372+00:00,1 +2023-10-24 21:20:18.265100515+00:00,1 +2023-10-24 21:20:18.390796220+00:00,1 +2023-10-24 21:20:18.517413750+00:00,1 +2023-10-24 21:20:18.643413287+00:00,1 +2023-10-24 21:20:18.768257733+00:00,1 +2023-10-24 21:20:18.894054139+00:00,1 +2023-10-24 21:20:19.019757119+00:00,1 +2023-10-24 21:20:19.143979300+00:00,1 +2023-10-24 21:20:19.268794504+00:00,1 +2023-10-24 21:20:19.393874214+00:00,1 +2023-10-24 21:20:19.520485176+00:00,1 +2023-10-24 21:20:19.645598094+00:00,1 +2023-10-24 21:20:19.771376918+00:00,1 +2023-10-24 21:20:19.896451900+00:00,1 +2023-10-24 21:20:20.021394849+00:00,1 +2023-10-24 21:20:20.146929746+00:00,1 +2023-10-24 21:20:20.271798334+00:00,1 +2023-10-24 21:20:20.398103811+00:00,1 +2023-10-24 21:20:20.523582439+00:00,1 +2023-10-24 21:20:20.649334176+00:00,1 +2023-10-24 21:20:20.774839129+00:00,1 +2023-10-24 21:20:20.900894719+00:00,1 +2023-10-24 21:20:21.026428731+00:00,1 +2023-10-24 21:20:21.153090179+00:00,1 +2023-10-24 21:20:21.279172034+00:00,1 +2023-10-24 21:20:21.405427919+00:00,1 +2023-10-24 21:20:21.531611348+00:00,1 +2023-10-24 21:20:21.658666625+00:00,1 +2023-10-24 21:20:21.785974572+00:00,1 +2023-10-24 21:20:21.912692012+00:00,1 +2023-10-24 21:20:22.040078913+00:00,1 +2023-10-24 21:20:22.168301515+00:00,1 +2023-10-24 21:20:22.295482772+00:00,1 +2023-10-24 21:20:22.425899679+00:00,1 +2023-10-24 21:20:22.553985078+00:00,1 +2023-10-24 21:20:22.681544158+00:00,1 +2023-10-24 21:20:22.810201751+00:00,1 +2023-10-24 21:20:22.938232396+00:00,1 +2023-10-24 21:20:23.066067701+00:00,1 +2023-10-24 21:20:23.196101144+00:00,1 +2023-10-24 21:20:23.323551600+00:00,1 +2023-10-24 21:20:23.453382338+00:00,1 +2023-10-24 21:20:23.580794400+00:00,1 +2023-10-24 21:20:23.709832639+00:00,1 +2023-10-24 21:20:23.838108895+00:00,1 +2023-10-24 21:20:23.967007020+00:00,1 +2023-10-24 21:20:24.098602003+00:00,1 +2023-10-24 21:20:24.228074288+00:00,1 +2023-10-24 21:20:24.357196471+00:00,1 +2023-10-24 21:20:24.487112710+00:00,1 +2023-10-24 21:20:24.614555364+00:00,1 +2023-10-24 21:20:24.745274393+00:00,1 +2023-10-24 21:20:24.872202588+00:00,1 +2023-10-24 21:20:25.001253930+00:00,1 +2023-10-24 21:20:25.130723076+00:00,1 +2023-10-24 21:20:25.258542571+00:00,1 +2023-10-24 21:20:25.386480405+00:00,1 +2023-10-24 21:20:25.514054071+00:00,1 +2023-10-24 21:20:25.642266100+00:00,1 +2023-10-24 21:20:25.770733251+00:00,1 +2023-10-24 21:20:25.899384161+00:00,1 +2023-10-24 21:20:26.028001990+00:00,1 +2023-10-24 21:20:26.155072704+00:00,1 +2023-10-24 21:20:26.284017217+00:00,1 +2023-10-24 21:20:26.411189499+00:00,1 +2023-10-24 21:20:26.539001473+00:00,1 +2023-10-24 21:20:26.666661987+00:00,1 +2023-10-24 21:20:26.793710577+00:00,1 +2023-10-24 21:20:26.920305556+00:00,1 +2023-10-24 21:20:27.046638683+00:00,1 +2023-10-24 21:20:27.174089033+00:00,1 +2023-10-24 21:20:27.302094843+00:00,1 +2023-10-24 21:20:27.430485299+00:00,1 +2023-10-24 21:20:27.561027175+00:00,1 +2023-10-24 21:20:27.688899277+00:00,1 +2023-10-24 21:20:27.817870142+00:00,1 +2023-10-24 21:20:27.946673751+00:00,1 +2023-10-24 21:20:28.076694242+00:00,1 +2023-10-24 21:20:28.205637528+00:00,1 +2023-10-24 21:20:28.332808088+00:00,1 +2023-10-24 21:20:28.460621739+00:00,1 +2023-10-24 21:20:28.588969071+00:00,1 +2023-10-24 21:20:28.716664559+00:00,1 +2023-10-24 21:20:28.844078275+00:00,1 +2023-10-24 21:20:28.973164553+00:00,1 +2023-10-24 21:20:29.100224501+00:00,1 +2023-10-24 21:20:29.227701655+00:00,1 +2023-10-24 21:20:29.355865602+00:00,1 +2023-10-24 21:20:29.483647041+00:00,1 +2023-10-24 21:20:29.611648249+00:00,1 +2023-10-24 21:20:29.740868640+00:00,1 +2023-10-24 21:20:29.868786397+00:00,1 +2023-10-24 21:20:29.996687775+00:00,1 +2023-10-24 21:20:30.125076906+00:00,1 +2023-10-24 21:20:30.253181977+00:00,1 +2023-10-24 21:20:30.380837391+00:00,1 +2023-10-24 21:20:30.509514804+00:00,1 +2023-10-24 21:20:30.637008026+00:00,1 +2023-10-24 21:20:30.766549878+00:00,1 +2023-10-24 21:20:30.895455694+00:00,1 +2023-10-24 21:20:31.024312052+00:00,1 +2023-10-24 21:20:31.151904813+00:00,1 +2023-10-24 21:20:31.280328679+00:00,1 +2023-10-24 21:20:31.408292025+00:00,1 +2023-10-24 21:20:31.536169626+00:00,1 +2023-10-24 21:20:31.663727541+00:00,1 +2023-10-24 21:20:31.791547395+00:00,1 +2023-10-24 21:20:31.919295682+00:00,1 +2023-10-24 21:20:32.047129756+00:00,1 +2023-10-24 21:20:32.174860255+00:00,1 +2023-10-24 21:20:32.301491602+00:00,1 +2023-10-24 21:20:32.429147376+00:00,1 +2023-10-24 21:20:32.556794830+00:00,1 +2023-10-24 21:20:32.685019284+00:00,1 +2023-10-24 21:20:32.814643986+00:00,1 +2023-10-24 21:20:32.945004218+00:00,1 +2023-10-24 21:20:33.072952925+00:00,1 +2023-10-24 21:20:33.201409443+00:00,1 +2023-10-24 21:20:33.329053071+00:00,1 +2023-10-24 21:20:33.457743926+00:00,1 +2023-10-24 21:20:33.585738394+00:00,1 +2023-10-24 21:20:33.713738902+00:00,1 +2023-10-24 21:20:33.841815704+00:00,1 +2023-10-24 21:20:33.970142191+00:00,1 +2023-10-24 21:20:34.099603036+00:00,1 +2023-10-24 21:20:34.229192141+00:00,1 +2023-10-24 21:20:34.357318819+00:00,1 +2023-10-24 21:20:34.484964143+00:00,1 +2023-10-24 21:20:34.612551016+00:00,1 +2023-10-24 21:20:34.740282229+00:00,1 +2023-10-24 21:20:34.867455891+00:00,1 +2023-10-24 21:20:34.994256738+00:00,1 +2023-10-24 21:20:35.121065351+00:00,0 +2023-10-24 21:20:37.133130808+00:00,1 +2023-10-24 21:20:37.258875422+00:00,1 +2023-10-24 21:20:40.494529983+00:00,1 +2023-10-24 21:20:40.620677357+00:00,1 +2023-10-24 21:20:40.747153397+00:00,0 +2023-10-24 21:20:42.759551580+00:00,1 +2023-10-24 21:20:42.888604580+00:00,0 +2023-10-24 21:20:44.903028385+00:00,1 +2023-10-24 21:20:45.029620285+00:00,1 +2023-10-24 21:20:45.157297953+00:00,1 +2023-10-24 21:20:45.284983015+00:00,1 +2023-10-24 21:20:45.411823718+00:00,1 +2023-10-24 21:20:45.537272777+00:00,1 +2023-10-24 21:20:45.661792799+00:00,1 +2023-10-24 21:20:45.787042160+00:00,1 +2023-10-24 21:20:45.911808330+00:00,1 +2023-10-24 21:20:46.036670809+00:00,1 +2023-10-24 21:20:46.161279724+00:00,1 +2023-10-24 21:20:46.286269927+00:00,1 +2023-10-24 21:20:46.411320564+00:00,1 +2023-10-24 21:20:46.537234745+00:00,1 +2023-10-24 21:20:46.662255707+00:00,1 +2023-10-24 21:20:46.787768871+00:00,0 +2023-10-24 21:20:48.800756638+00:00,1 +2023-10-24 21:20:48.927154215+00:00,1 +2023-10-24 21:20:49.052681359+00:00,1 +2023-10-24 21:20:49.177462911+00:00,1 +2023-10-24 21:20:49.302347888+00:00,1 +2023-10-24 21:20:49.428111619+00:00,1 +2023-10-24 21:20:49.554362745+00:00,1 +2023-10-24 21:20:49.678987685+00:00,1 +2023-10-24 21:20:49.803981380+00:00,1 +2023-10-24 21:20:49.930264980+00:00,1 +2023-10-24 21:20:50.055249200+00:00,1 +2023-10-24 21:20:50.179929316+00:00,1 +2023-10-24 21:20:50.304857987+00:00,1 +2023-10-24 21:20:50.430848656+00:00,1 +2023-10-24 21:20:50.556943063+00:00,1 +2023-10-24 21:20:50.681453390+00:00,1 +2023-10-24 21:20:50.807767182+00:00,1 +2023-10-24 21:20:50.933076291+00:00,1 +2023-10-24 21:20:51.059724106+00:00,1 +2023-10-24 21:20:51.187618657+00:00,1 +2023-10-24 21:20:51.313728690+00:00,1 +2023-10-24 21:20:51.440366236+00:00,1 +2023-10-24 21:20:51.569010293+00:00,1 +2023-10-24 21:20:51.697264220+00:00,1 +2023-10-24 21:20:51.826193603+00:00,1 +2023-10-24 21:20:51.952931527+00:00,1 +2023-10-24 21:20:52.080012556+00:00,1 +2023-10-24 21:20:52.206800423+00:00,1 +2023-10-24 21:20:52.335815806+00:00,1 +2023-10-24 21:20:52.463880924+00:00,1 +2023-10-24 21:20:52.590718006+00:00,1 +2023-10-24 21:20:52.719661874+00:00,1 +2023-10-24 21:20:52.848440131+00:00,1 +2023-10-24 21:20:52.977057812+00:00,1 +2023-10-24 21:20:53.106232390+00:00,1 +2023-10-24 21:20:53.234486422+00:00,1 +2023-10-24 21:20:53.362965450+00:00,1 +2023-10-24 21:20:53.490425571+00:00,1 +2023-10-24 21:20:53.618836630+00:00,1 +2023-10-24 21:20:53.747750001+00:00,1 +2023-10-24 21:20:53.876881945+00:00,1 +2023-10-24 21:20:54.005785042+00:00,1 +2023-10-24 21:20:54.132641690+00:00,1 +2023-10-24 21:20:54.260365282+00:00,1 +2023-10-24 21:20:54.388575004+00:00,1 +2023-10-24 21:20:54.516122386+00:00,1 +2023-10-24 21:20:54.644060098+00:00,1 +2023-10-24 21:20:54.771387547+00:00,1 +2023-10-24 21:20:54.898997413+00:00,1 +2023-10-24 21:20:55.026967461+00:00,1 +2023-10-24 21:20:55.154437368+00:00,1 +2023-10-24 21:20:55.283412032+00:00,1 +2023-10-24 21:20:55.411112794+00:00,1 +2023-10-24 21:20:55.540649445+00:00,1 +2023-10-24 21:20:55.668428983+00:00,1 +2023-10-24 21:20:55.797190568+00:00,1 +2023-10-24 21:20:55.926721237+00:00,1 +2023-10-24 21:20:56.055276573+00:00,1 +2023-10-24 21:20:56.183007986+00:00,1 +2023-10-24 21:20:56.311656887+00:00,1 +2023-10-24 21:20:56.440757770+00:00,1 +2023-10-24 21:20:56.570338479+00:00,1 +2023-10-24 21:20:56.698265908+00:00,1 +2023-10-24 21:20:56.828245464+00:00,1 +2023-10-24 21:20:56.955931017+00:00,1 +2023-10-24 21:20:57.084471993+00:00,1 +2023-10-24 21:20:57.212129554+00:00,1 +2023-10-24 21:20:57.340361458+00:00,1 +2023-10-24 21:20:57.469637664+00:00,1 +2023-10-24 21:20:57.598265447+00:00,1 +2023-10-24 21:20:57.726514419+00:00,1 +2023-10-24 21:20:57.855309555+00:00,1 +2023-10-24 21:20:57.984410378+00:00,1 +2023-10-24 21:20:58.112879328+00:00,1 +2023-10-24 21:20:58.240422037+00:00,1 +2023-10-24 21:20:58.367598947+00:00,1 +2023-10-24 21:20:58.495491971+00:00,1 +2023-10-24 21:20:58.622804075+00:00,1 +2023-10-24 21:20:58.750913751+00:00,1 +2023-10-24 21:20:58.879889315+00:00,1 +2023-10-24 21:20:59.008747636+00:00,1 +2023-10-24 21:20:59.135698867+00:00,1 +2023-10-24 21:20:59.262472661+00:00,1 +2023-10-24 21:20:59.389376645+00:00,1 +2023-10-24 21:20:59.515964514+00:00,1 +2023-10-24 21:20:59.643288268+00:00,1 +2023-10-24 21:20:59.772269140+00:00,1 +2023-10-24 21:20:59.900413174+00:00,1 +2023-10-24 21:21:00.028880095+00:00,1 +2023-10-24 21:21:00.157116740+00:00,1 +2023-10-24 21:21:00.285457475+00:00,1 +2023-10-24 21:21:00.413624754+00:00,1 +2023-10-24 21:21:00.541140499+00:00,1 +2023-10-24 21:21:00.670150825+00:00,1 +2023-10-24 21:21:00.798636341+00:00,1 +2023-10-24 21:21:00.927610349+00:00,1 +2023-10-24 21:21:01.059283499+00:00,1 +2023-10-24 21:21:01.187715050+00:00,1 +2023-10-24 21:21:01.312120481+00:00,1 +2023-10-24 21:21:01.438269298+00:00,1 +2023-10-24 21:21:04.670558513+00:00,1 +2023-10-24 21:21:04.797376858+00:00,1 +2023-10-24 21:21:04.925020297+00:00,1 +2023-10-24 21:21:05.051176445+00:00,1 +2023-10-24 21:21:05.177444630+00:00,1 +2023-10-24 21:21:05.304163948+00:00,1 +2023-10-24 21:21:05.430039982+00:00,1 +2023-10-24 21:21:05.555855082+00:00,1 +2023-10-24 21:21:05.681328005+00:00,1 +2023-10-24 21:21:12.945439738+00:00,1 +2023-10-24 21:21:14.143204676+00:00,1 +2023-10-24 21:21:14.269344244+00:00,1 +2023-10-24 21:21:15.409505136+00:00,1 +2023-10-24 21:21:16.583212514+00:00,1 +2023-10-24 21:21:16.709673250+00:00,1 +2023-10-24 21:21:16.836625219+00:00,1 +2023-10-24 21:21:16.962925895+00:00,1 +2023-10-24 21:21:17.088317442+00:00,1 +2023-10-24 21:21:17.213072969+00:00,1 +2023-10-24 21:21:17.337342214+00:00,1 +2023-10-24 21:21:17.464106694+00:00,1 +2023-10-24 21:21:17.590506715+00:00,1 +2023-10-24 21:21:17.716283522+00:00,1 +2023-10-24 21:21:18.878237241+00:00,1 +2023-10-24 21:21:19.005067078+00:00,1 +2023-10-24 21:21:19.130950545+00:00,1 +2023-10-24 21:21:19.258792627+00:00,1 +2023-10-24 21:21:20.414192273+00:00,1 +2023-10-24 21:21:21.566809728+00:00,1 +2023-10-24 21:21:21.692441657+00:00,1 +2023-10-24 21:21:21.818680782+00:00,1 +2023-10-24 21:21:21.947846364+00:00,1 +2023-10-24 21:21:22.073998520+00:00,1 +2023-10-24 21:21:22.201173305+00:00,1 +2023-10-24 21:21:22.328288157+00:00,1 +2023-10-24 21:21:22.455160495+00:00,1 +2023-10-24 21:21:22.581423750+00:00,1 +2023-10-24 21:21:22.709943488+00:00,1 +2023-10-24 21:21:22.837722065+00:00,1 +2023-10-24 21:21:22.966131633+00:00,1 +2023-10-24 21:21:23.096612561+00:00,1 +2023-10-24 21:21:23.225571598+00:00,1 +2023-10-24 21:21:23.353522680+00:00,1 +2023-10-24 21:21:23.480857504+00:00,1 +2023-10-24 21:21:23.609265067+00:00,1 +2023-10-24 21:21:23.738482027+00:00,1 +2023-10-24 21:21:23.865456095+00:00,1 +2023-10-24 21:21:23.993436429+00:00,1 +2023-10-24 21:21:24.121796444+00:00,1 +2023-10-24 21:21:24.249454070+00:00,1 +2023-10-24 21:21:24.376518558+00:00,1 +2023-10-24 21:21:24.504593390+00:00,1 +2023-10-24 21:21:24.632201525+00:00,1 +2023-10-24 21:21:24.760765281+00:00,1 +2023-10-24 21:21:24.890425970+00:00,1 +2023-10-24 21:21:25.018056125+00:00,1 +2023-10-24 21:21:25.146830976+00:00,1 +2023-10-24 21:21:25.275708896+00:00,1 +2023-10-24 21:21:25.404101825+00:00,1 +2023-10-24 21:21:25.532398211+00:00,1 +2023-10-24 21:21:25.660169786+00:00,1 +2023-10-24 21:21:25.788446404+00:00,1 +2023-10-24 21:21:25.916807161+00:00,1 +2023-10-24 21:21:26.044743503+00:00,1 +2023-10-24 21:21:26.174760604+00:00,1 +2023-10-24 21:21:26.302744456+00:00,1 +2023-10-24 21:21:26.430766005+00:00,1 +2023-10-24 21:21:26.556590728+00:00,1 +2023-10-24 21:21:26.681405672+00:00,1 +2023-10-24 21:21:26.806921109+00:00,1 +2023-10-24 21:21:26.931973055+00:00,1 +2023-10-24 21:21:27.057305571+00:00,1 +2023-10-24 21:21:27.181597729+00:00,1 +2023-10-24 21:21:27.306002310+00:00,1 +2023-10-24 21:21:27.431588779+00:00,1 +2023-10-24 21:21:27.557797340+00:00,1 +2023-10-24 21:21:27.683209694+00:00,1 +2023-10-24 21:21:27.808084596+00:00,1 +2023-10-24 21:21:27.933144880+00:00,1 +2023-10-24 21:21:28.058396942+00:00,1 +2023-10-24 21:21:28.184004679+00:00,1 +2023-10-24 21:21:28.309127809+00:00,1 +2023-10-24 21:21:28.433930082+00:00,1 +2023-10-24 21:21:28.558768577+00:00,1 +2023-10-24 21:21:35.795790927+00:00,1 +2023-10-24 21:21:35.920995120+00:00,1 +2023-10-24 21:21:36.047098030+00:00,1 +2023-10-24 21:21:36.172752521+00:00,1 +2023-10-24 21:21:36.297656689+00:00,1 +2023-10-24 21:21:36.423743966+00:00,1 +2023-10-24 21:21:36.548466681+00:00,1 +2023-10-24 21:21:36.674794977+00:00,1 +2023-10-24 21:21:36.801651527+00:00,1 +2023-10-24 21:21:36.927686578+00:00,1 +2023-10-24 21:21:37.052610068+00:00,1 +2023-10-24 21:21:37.178133349+00:00,1 +2023-10-24 21:21:37.303965329+00:00,1 +2023-10-24 21:21:37.430403378+00:00,1 +2023-10-24 21:21:37.555048660+00:00,1 +2023-10-24 21:21:37.681231874+00:00,1 +2023-10-24 21:21:37.807375334+00:00,1 +2023-10-24 21:21:37.933146048+00:00,1 +2023-10-24 21:21:38.058625228+00:00,1 +2023-10-24 21:21:38.183650015+00:00,1 +2023-10-24 21:21:38.309311379+00:00,1 +2023-10-24 21:21:38.434798413+00:00,1 +2023-10-24 21:21:38.560638618+00:00,1 +2023-10-24 21:21:38.686403553+00:00,1 +2023-10-24 21:21:38.811763009+00:00,1 +2023-10-24 21:21:38.937729428+00:00,1 +2023-10-24 21:21:39.063363827+00:00,1 +2023-10-24 21:21:39.188617569+00:00,1 +2023-10-24 21:21:39.314109536+00:00,1 +2023-10-24 21:21:39.440535227+00:00,1 +2023-10-24 21:21:39.565380307+00:00,1 +2023-10-24 21:21:39.690106198+00:00,1 +2023-10-24 21:21:39.815852717+00:00,1 +2023-10-24 21:21:39.942542636+00:00,1 +2023-10-24 21:21:40.067799055+00:00,1 +2023-10-24 21:21:40.193147904+00:00,1 +2023-10-24 21:21:40.319624968+00:00,1 +2023-10-24 21:21:40.445729335+00:00,1 +2023-10-24 21:21:40.570582617+00:00,1 +2023-10-24 21:21:40.696071772+00:00,1 +2023-10-24 21:21:40.820964880+00:00,1 +2023-10-24 21:21:40.946939126+00:00,1 +2023-10-24 21:21:41.072158757+00:00,1 +2023-10-24 21:21:41.197637380+00:00,1 +2023-10-24 21:21:41.322872686+00:00,1 +2023-10-24 21:21:41.449043900+00:00,1 +2023-10-24 21:21:41.573772522+00:00,1 +2023-10-24 21:21:41.698264799+00:00,1 +2023-10-24 21:21:41.823650631+00:00,1 +2023-10-24 21:21:41.949190160+00:00,1 +2023-10-24 21:21:42.075642972+00:00,1 +2023-10-24 21:21:42.203177370+00:00,1 +2023-10-24 21:21:42.330280365+00:00,1 +2023-10-24 21:21:42.456677926+00:00,1 +2023-10-24 21:21:42.582596789+00:00,1 +2023-10-24 21:21:42.711133849+00:00,1 +2023-10-24 21:21:42.840020488+00:00,1 +2023-10-24 21:21:42.966812484+00:00,1 +2023-10-24 21:21:43.094061838+00:00,1 +2023-10-24 21:21:43.222873651+00:00,1 +2023-10-24 21:21:43.350937180+00:00,1 +2023-10-24 21:21:43.478659879+00:00,1 +2023-10-24 21:21:43.606083188+00:00,1 +2023-10-24 21:21:43.734063817+00:00,1 +2023-10-24 21:21:43.861594123+00:00,1 +2023-10-24 21:21:43.989276343+00:00,1 +2023-10-24 21:21:44.117442970+00:00,1 +2023-10-24 21:21:44.247292470+00:00,1 +2023-10-24 21:21:44.374182026+00:00,1 +2023-10-24 21:21:44.502413139+00:00,1 +2023-10-24 21:21:44.630721807+00:00,1 +2023-10-24 21:21:44.758337340+00:00,1 +2023-10-24 21:21:44.886525159+00:00,1 +2023-10-24 21:21:45.015143536+00:00,1 +2023-10-24 21:21:45.143292015+00:00,1 +2023-10-24 21:21:45.271806660+00:00,1 +2023-10-24 21:21:45.399350719+00:00,1 +2023-10-24 21:21:45.527177327+00:00,1 +2023-10-24 21:21:45.656850465+00:00,1 +2023-10-24 21:21:45.783684048+00:00,1 +2023-10-24 21:21:45.911209093+00:00,1 +2023-10-24 21:21:46.038693388+00:00,1 +2023-10-24 21:21:46.167549376+00:00,1 +2023-10-24 21:21:46.295136184+00:00,1 +2023-10-24 21:21:46.422398408+00:00,1 +2023-10-24 21:21:46.551308000+00:00,1 +2023-10-24 21:21:46.679356103+00:00,1 +2023-10-24 21:21:46.808383133+00:00,1 +2023-10-24 21:21:46.937663469+00:00,1 +2023-10-24 21:21:47.066228595+00:00,1 +2023-10-24 21:21:47.194010704+00:00,1 +2023-10-24 21:21:47.322100133+00:00,1 +2023-10-24 21:21:47.450005144+00:00,1 +2023-10-24 21:21:47.578754264+00:00,1 +2023-10-24 21:21:47.706670653+00:00,1 +2023-10-24 21:21:47.834644549+00:00,1 +2023-10-24 21:21:47.962739800+00:00,1 +2023-10-24 21:21:48.094050217+00:00,1 +2023-10-24 21:21:48.224178664+00:00,1 +2023-10-24 21:21:48.354250425+00:00,1 +2023-10-24 21:21:48.482453792+00:00,1 +2023-10-24 21:21:48.610837291+00:00,1 +2023-10-24 21:21:48.739827705+00:00,1 +2023-10-24 21:21:48.867253060+00:00,1 +2023-10-24 21:21:48.994696842+00:00,1 +2023-10-24 21:21:49.123227638+00:00,1 +2023-10-24 21:21:49.250131009+00:00,1 +2023-10-24 21:21:49.378273629+00:00,1 +2023-10-24 21:21:49.506283139+00:00,1 +2023-10-24 21:21:49.636187461+00:00,1 +2023-10-24 21:21:49.766179435+00:00,1 +2023-10-24 21:21:49.895253684+00:00,1 +2023-10-24 21:21:50.022897799+00:00,1 +2023-10-24 21:21:50.150802977+00:00,1 +2023-10-24 21:21:50.279485221+00:00,1 +2023-10-24 21:21:50.407138300+00:00,1 +2023-10-24 21:21:50.535694194+00:00,1 +2023-10-24 21:21:50.663467691+00:00,1 +2023-10-24 21:21:50.792251999+00:00,1 +2023-10-24 21:21:50.920056046+00:00,1 +2023-10-24 21:21:51.048876588+00:00,1 +2023-10-24 21:21:51.178558787+00:00,1 +2023-10-24 21:21:51.307221657+00:00,1 +2023-10-24 21:21:51.435845242+00:00,1 +2023-10-24 21:21:51.563789885+00:00,1 +2023-10-24 21:21:51.691427666+00:00,1 +2023-10-24 21:21:51.819029290+00:00,1 +2023-10-24 21:21:51.946988114+00:00,1 +2023-10-24 21:21:52.075522622+00:00,1 +2023-10-24 21:21:52.203021497+00:00,1 +2023-10-24 21:21:52.329852660+00:00,1 +2023-10-24 21:21:52.458211908+00:00,1 +2023-10-24 21:21:52.585698672+00:00,1 +2023-10-24 21:21:52.713220284+00:00,1 +2023-10-24 21:21:52.840112726+00:00,1 +2023-10-24 21:21:52.967919121+00:00,1 +2023-10-24 21:21:53.095338920+00:00,1 +2023-10-24 21:21:53.222856858+00:00,1 +2023-10-24 21:21:53.351841950+00:00,1 +2023-10-24 21:21:53.480827587+00:00,1 +2023-10-24 21:21:53.609294666+00:00,1 +2023-10-24 21:21:53.738567374+00:00,1 +2023-10-24 21:21:53.865853099+00:00,1 +2023-10-24 21:21:53.992977060+00:00,1 +2023-10-24 21:21:54.119930031+00:00,1 +2023-10-24 21:21:54.247190234+00:00,1 +2023-10-24 21:21:54.374548255+00:00,1 +2023-10-24 21:21:54.502850088+00:00,1 +2023-10-24 21:21:54.630319171+00:00,1 +2023-10-24 21:21:54.758409000+00:00,1 +2023-10-24 21:21:54.886487415+00:00,1 +2023-10-24 21:21:55.014934088+00:00,1 +2023-10-24 21:21:55.143736314+00:00,1 +2023-10-24 21:21:55.270905578+00:00,1 +2023-10-24 21:21:55.398772560+00:00,1 +2023-10-24 21:21:55.526879626+00:00,1 +2023-10-24 21:21:55.654058626+00:00,1 +2023-10-24 21:21:55.781833318+00:00,1 +2023-10-24 21:21:55.909451813+00:00,1 +2023-10-24 21:21:56.036272126+00:00,1 +2023-10-24 21:21:56.163861436+00:00,1 +2023-10-24 21:21:56.291349028+00:00,1 +2023-10-24 21:21:56.419625179+00:00,1 +2023-10-24 21:21:56.548509886+00:00,1 +2023-10-24 21:21:56.676491393+00:00,1 +2023-10-24 21:21:56.804147772+00:00,1 +2023-10-24 21:21:56.931336830+00:00,1 +2023-10-24 21:21:57.057200617+00:00,1 +2023-10-24 21:21:57.183965557+00:00,1 +2023-10-24 21:21:57.311437462+00:00,1 +2023-10-24 21:21:57.439241399+00:00,1 +2023-10-24 21:21:57.566733062+00:00,1 +2023-10-24 21:21:57.694659893+00:00,1 +2023-10-24 21:21:57.823002103+00:00,1 +2023-10-24 21:21:57.951249081+00:00,1 +2023-10-24 21:21:58.080857371+00:00,1 +2023-10-24 21:21:58.209014378+00:00,1 +2023-10-24 21:21:58.338484416+00:00,1 +2023-10-24 21:21:58.466363119+00:00,1 +2023-10-24 21:21:58.593307528+00:00,1 +2023-10-24 21:21:58.719984544+00:00,1 +2023-10-24 21:21:58.847530211+00:00,1 +2023-10-24 21:21:58.976904817+00:00,1 +2023-10-24 21:21:59.106214742+00:00,1 +2023-10-24 21:21:59.234058764+00:00,1 +2023-10-24 21:21:59.361516895+00:00,1 +2023-10-24 21:21:59.489189803+00:00,1 +2023-10-24 21:21:59.616639343+00:00,1 +2023-10-24 21:21:59.745060327+00:00,1 +2023-10-24 21:21:59.873119994+00:00,1 +2023-10-24 21:22:00.000940993+00:00,1 +2023-10-24 21:22:00.128210590+00:00,1 +2023-10-24 21:22:00.256081093+00:00,1 +2023-10-24 21:22:00.383356553+00:00,1 +2023-10-24 21:22:00.512108037+00:00,1 +2023-10-24 21:22:00.639738134+00:00,1 +2023-10-24 21:22:00.767208910+00:00,1 +2023-10-24 21:22:00.896355458+00:00,1 +2023-10-24 21:22:01.024736213+00:00,1 +2023-10-24 21:22:01.152600488+00:00,1 +2023-10-24 21:22:01.280191901+00:00,1 +2023-10-24 21:22:01.407857807+00:00,1 +2023-10-24 21:22:01.535078416+00:00,1 +2023-10-24 21:22:01.663266052+00:00,1 +2023-10-24 21:22:01.791058684+00:00,1 +2023-10-24 21:22:01.918752079+00:00,1 +2023-10-24 21:22:02.046488599+00:00,1 +2023-10-24 21:22:02.173967173+00:00,1 +2023-10-24 21:22:02.301361091+00:00,1 +2023-10-24 21:22:02.429485828+00:00,1 +2023-10-24 21:22:02.555987340+00:00,1 +2023-10-24 21:22:02.682561244+00:00,1 +2023-10-24 21:22:02.812138094+00:00,1 +2023-10-24 21:22:02.941228675+00:00,1 +2023-10-24 21:22:03.070287162+00:00,1 +2023-10-24 21:22:03.198969941+00:00,1 +2023-10-24 21:22:03.326903422+00:00,1 +2023-10-24 21:22:03.453924798+00:00,1 +2023-10-24 21:22:03.580869328+00:00,1 +2023-10-24 21:22:03.709373069+00:00,1 +2023-10-24 21:22:03.836485154+00:00,1 +2023-10-24 21:22:03.963737966+00:00,1 +2023-10-24 21:22:04.092195432+00:00,1 +2023-10-24 21:22:04.220247537+00:00,1 +2023-10-24 21:22:04.349668655+00:00,1 +2023-10-24 21:22:04.476687260+00:00,1 +2023-10-24 21:22:04.603866259+00:00,1 +2023-10-24 21:22:04.730909195+00:00,1 +2023-10-24 21:22:04.858418170+00:00,1 +2023-10-24 21:22:04.986176508+00:00,1 +2023-10-24 21:22:05.114216824+00:00,1 +2023-10-24 21:22:05.241189736+00:00,1 +2023-10-24 21:22:05.368917088+00:00,1 +2023-10-24 21:22:05.497911782+00:00,1 +2023-10-24 21:22:05.627197183+00:00,1 +2023-10-24 21:22:05.756048476+00:00,1 +2023-10-24 21:22:05.884736865+00:00,1 +2023-10-24 21:22:06.012781193+00:00,1 +2023-10-24 21:22:06.141481828+00:00,1 +2023-10-24 21:22:06.270101707+00:00,1 +2023-10-24 21:22:06.396919991+00:00,1 +2023-10-24 21:22:06.525599624+00:00,1 +2023-10-24 21:22:06.653127292+00:00,1 +2023-10-24 21:22:06.781432279+00:00,1 +2023-10-24 21:22:06.908881633+00:00,1 +2023-10-24 21:22:07.035499022+00:00,1 +2023-10-24 21:22:07.163539974+00:00,1 +2023-10-24 21:22:07.290764052+00:00,1 +2023-10-24 21:22:07.417193474+00:00,1 +2023-10-24 21:22:07.544269907+00:00,1 +2023-10-24 21:22:07.670640541+00:00,1 +2023-10-24 21:22:07.798530514+00:00,1 +2023-10-24 21:22:07.925530086+00:00,1 +2023-10-24 21:22:08.052927091+00:00,1 +2023-10-24 21:22:08.180873604+00:00,1 +2023-10-24 21:22:08.308452626+00:00,1 +2023-10-24 21:22:08.437521125+00:00,1 +2023-10-24 21:22:08.565957796+00:00,1 +2023-10-24 21:22:08.694913489+00:00,1 +2023-10-24 21:22:08.822272013+00:00,1 +2023-10-24 21:22:08.949734249+00:00,1 +2023-10-24 21:22:09.078825707+00:00,1 +2023-10-24 21:22:09.205596984+00:00,1 +2023-10-24 21:22:09.333185897+00:00,1 +2023-10-24 21:22:09.461561388+00:00,1 +2023-10-24 21:22:09.589059923+00:00,1 +2023-10-24 21:22:09.716869708+00:00,1 +2023-10-24 21:22:09.845479564+00:00,1 +2023-10-24 21:22:09.972823358+00:00,1 +2023-10-24 21:22:10.100381666+00:00,1 +2023-10-24 21:22:10.228372315+00:00,1 +2023-10-24 21:22:10.356149872+00:00,1 +2023-10-24 21:22:10.484701752+00:00,1 +2023-10-24 21:22:10.613160426+00:00,1 +2023-10-24 21:22:10.740684604+00:00,1 +2023-10-24 21:22:10.868268836+00:00,1 +2023-10-24 21:22:10.997073722+00:00,1 +2023-10-24 21:22:11.125182949+00:00,1 +2023-10-24 21:22:11.253708877+00:00,1 +2023-10-24 21:22:11.381121648+00:00,1 +2023-10-24 21:22:11.508393499+00:00,1 +2023-10-24 21:22:11.636048751+00:00,1 +2023-10-24 21:22:11.763054847+00:00,1 +2023-10-24 21:22:11.890836896+00:00,1 +2023-10-24 21:22:12.019603030+00:00,1 +2023-10-24 21:22:12.147577183+00:00,1 +2023-10-24 21:22:12.275634779+00:00,1 +2023-10-24 21:22:12.403246387+00:00,1 +2023-10-24 21:22:12.531298659+00:00,1 +2023-10-24 21:22:12.660321888+00:00,1 +2023-10-24 21:22:12.787890939+00:00,1 +2023-10-24 21:22:12.916698413+00:00,1 +2023-10-24 21:22:13.044856631+00:00,1 +2023-10-24 21:22:13.172518281+00:00,1 +2023-10-24 21:22:13.300066816+00:00,1 +2023-10-24 21:22:13.428236214+00:00,1 +2023-10-24 21:22:13.555229187+00:00,1 +2023-10-24 21:22:13.682654731+00:00,1 +2023-10-24 21:22:13.810808959+00:00,1 +2023-10-24 21:22:13.939422630+00:00,1 +2023-10-24 21:22:14.067589957+00:00,1 +2023-10-24 21:22:14.195768383+00:00,1 +2023-10-24 21:22:14.322750869+00:00,1 +2023-10-24 21:22:14.452042930+00:00,1 +2023-10-24 21:22:14.580294102+00:00,1 +2023-10-24 21:22:14.710474746+00:00,1 +2023-10-24 21:22:14.839065638+00:00,1 +2023-10-24 21:22:14.967679179+00:00,1 +2023-10-24 21:22:15.095652783+00:00,1 +2023-10-24 21:22:15.224598177+00:00,1 +2023-10-24 21:22:15.352258284+00:00,1 +2023-10-24 21:22:15.479471387+00:00,1 +2023-10-24 21:22:15.608312947+00:00,1 +2023-10-24 21:22:15.736945982+00:00,1 +2023-10-24 21:22:15.865695536+00:00,1 +2023-10-24 21:22:15.994260423+00:00,1 +2023-10-24 21:22:16.125406701+00:00,1 +2023-10-24 21:22:16.254508928+00:00,1 +2023-10-24 21:22:16.384524794+00:00,1 +2023-10-24 21:22:16.513219741+00:00,1 +2023-10-24 21:22:16.641052464+00:00,1 +2023-10-24 21:22:16.768074521+00:00,1 +2023-10-24 21:22:16.896103656+00:00,1 +2023-10-24 21:22:17.024273646+00:00,1 +2023-10-24 21:22:17.151423338+00:00,1 +2023-10-24 21:22:17.279724477+00:00,1 +2023-10-24 21:22:17.407442091+00:00,1 +2023-10-24 21:22:17.534769521+00:00,1 +2023-10-24 21:22:17.661807053+00:00,1 +2023-10-24 21:22:17.789839978+00:00,1 +2023-10-24 21:22:17.920684542+00:00,1 +2023-10-24 21:22:18.049453943+00:00,1 +2023-10-24 21:22:18.178914252+00:00,1 +2023-10-24 21:22:18.308577106+00:00,1 +2023-10-24 21:22:18.436519291+00:00,1 +2023-10-24 21:22:18.565332547+00:00,1 +2023-10-24 21:22:18.692661036+00:00,1 +2023-10-24 21:22:18.820953948+00:00,1 +2023-10-24 21:22:18.949261775+00:00,1 +2023-10-24 21:22:19.077410021+00:00,1 +2023-10-24 21:22:19.205420532+00:00,1 +2023-10-24 21:22:19.333055946+00:00,1 +2023-10-24 21:22:19.461069274+00:00,1 +2023-10-24 21:22:19.588951237+00:00,1 +2023-10-24 21:22:19.716302145+00:00,1 +2023-10-24 21:22:19.844921111+00:00,1 +2023-10-24 21:22:19.972932144+00:00,1 +2023-10-24 21:22:20.102277933+00:00,1 +2023-10-24 21:22:20.231275126+00:00,1 +2023-10-24 21:22:20.359739385+00:00,1 +2023-10-24 21:22:20.487380476+00:00,1 +2023-10-24 21:22:20.615431843+00:00,1 +2023-10-24 21:22:20.744154517+00:00,1 +2023-10-24 21:22:20.873415961+00:00,1 +2023-10-24 21:22:21.002056224+00:00,1 +2023-10-24 21:22:21.130528718+00:00,1 +2023-10-24 21:22:21.258202978+00:00,1 +2023-10-24 21:22:21.385056471+00:00,1 +2023-10-24 21:22:21.511518567+00:00,1 +2023-10-24 21:22:21.640667599+00:00,1 +2023-10-24 21:22:21.770869354+00:00,1 +2023-10-24 21:22:21.898988930+00:00,1 +2023-10-24 21:22:22.028828012+00:00,1 +2023-10-24 21:22:22.156967194+00:00,1 +2023-10-24 21:22:22.285750265+00:00,1 +2023-10-24 21:22:22.413907439+00:00,1 +2023-10-24 21:22:22.542518600+00:00,1 +2023-10-24 21:22:22.669668747+00:00,1 +2023-10-24 21:22:22.796823147+00:00,1 +2023-10-24 21:22:22.924203747+00:00,1 +2023-10-24 21:22:23.054739682+00:00,1 +2023-10-24 21:22:23.182794938+00:00,1 +2023-10-24 21:22:23.311172454+00:00,1 +2023-10-24 21:22:23.439231660+00:00,1 +2023-10-24 21:22:23.567424496+00:00,1 +2023-10-24 21:22:23.696416485+00:00,1 +2023-10-24 21:22:23.824190566+00:00,1 +2023-10-24 21:22:23.951873794+00:00,1 +2023-10-24 21:22:24.080910533+00:00,1 +2023-10-24 21:22:24.209948444+00:00,1 +2023-10-24 21:22:24.337213598+00:00,1 +2023-10-24 21:22:24.464385615+00:00,1 +2023-10-24 21:22:24.592807426+00:00,1 +2023-10-24 21:22:24.720228028+00:00,1 +2023-10-24 21:22:24.848876982+00:00,1 +2023-10-24 21:22:24.976690086+00:00,1 +2023-10-24 21:22:25.107114615+00:00,1 +2023-10-24 21:22:25.235846853+00:00,1 +2023-10-24 21:22:25.363707651+00:00,1 +2023-10-24 21:22:25.492438663+00:00,1 +2023-10-24 21:22:25.621515060+00:00,1 +2023-10-24 21:22:25.749609937+00:00,1 +2023-10-24 21:22:25.876995767+00:00,1 +2023-10-24 21:22:26.004331949+00:00,1 +2023-10-24 21:22:26.132421615+00:00,1 +2023-10-24 21:22:26.259895039+00:00,1 +2023-10-24 21:22:26.388475017+00:00,1 +2023-10-24 21:22:26.516713723+00:00,1 +2023-10-24 21:22:26.643921838+00:00,1 +2023-10-24 21:22:26.771351507+00:00,1 +2023-10-24 21:22:26.898375335+00:00,1 +2023-10-24 21:22:27.025936044+00:00,1 +2023-10-24 21:22:27.153544355+00:00,1 +2023-10-24 21:22:27.281127540+00:00,1 +2023-10-24 21:22:27.409327730+00:00,1 +2023-10-24 21:22:27.536448796+00:00,1 +2023-10-24 21:22:27.663959472+00:00,1 +2023-10-24 21:22:27.791680627+00:00,1 +2023-10-24 21:22:27.919754147+00:00,1 +2023-10-24 21:22:28.047521240+00:00,1 +2023-10-24 21:22:28.175711551+00:00,1 +2023-10-24 21:22:28.304214272+00:00,1 +2023-10-24 21:22:28.432419273+00:00,1 +2023-10-24 21:22:28.559458688+00:00,1 +2023-10-24 21:22:28.687463149+00:00,1 +2023-10-24 21:22:28.815580806+00:00,1 +2023-10-24 21:22:28.943624542+00:00,1 +2023-10-24 21:22:29.071487791+00:00,1 +2023-10-24 21:22:29.198848995+00:00,1 +2023-10-24 21:22:29.326144934+00:00,1 +2023-10-24 21:22:29.453239126+00:00,1 +2023-10-24 21:22:29.580089210+00:00,1 +2023-10-24 21:22:29.707924737+00:00,1 +2023-10-24 21:22:29.835800650+00:00,1 +2023-10-24 21:22:29.964194451+00:00,1 +2023-10-24 21:22:30.090953011+00:00,1 +2023-10-24 21:22:30.218983557+00:00,1 +2023-10-24 21:22:30.347059935+00:00,1 +2023-10-24 21:22:30.474845503+00:00,1 +2023-10-24 21:22:30.603607717+00:00,1 +2023-10-24 21:22:30.732664559+00:00,1 +2023-10-24 21:22:30.860948231+00:00,1 +2023-10-24 21:22:30.990472324+00:00,1 +2023-10-24 21:22:31.118537507+00:00,1 +2023-10-24 21:22:31.248162042+00:00,1 +2023-10-24 21:22:31.375431910+00:00,1 +2023-10-24 21:22:31.503149813+00:00,1 +2023-10-24 21:22:31.632592471+00:00,1 +2023-10-24 21:22:31.761713101+00:00,1 +2023-10-24 21:22:31.889794775+00:00,1 +2023-10-24 21:22:32.018915539+00:00,1 +2023-10-24 21:22:32.148882494+00:00,1 +2023-10-24 21:22:32.276852768+00:00,1 +2023-10-24 21:22:32.405023452+00:00,1 +2023-10-24 21:22:32.531593761+00:00,1 +2023-10-24 21:22:32.659520199+00:00,1 +2023-10-24 21:22:32.786831529+00:00,1 +2023-10-24 21:22:32.913598441+00:00,1 +2023-10-24 21:22:33.042097019+00:00,1 +2023-10-24 21:22:33.172584361+00:00,1 +2023-10-24 21:22:33.300314071+00:00,1 +2023-10-24 21:22:33.429369530+00:00,1 +2023-10-24 21:22:33.557754239+00:00,1 +2023-10-24 21:22:33.685610899+00:00,1 +2023-10-24 21:22:33.813926926+00:00,1 +2023-10-24 21:22:33.941996437+00:00,1 +2023-10-24 21:22:34.070276865+00:00,1 +2023-10-24 21:22:34.198836327+00:00,1 +2023-10-24 21:22:34.326725610+00:00,1 +2023-10-24 21:22:34.455390506+00:00,1 +2023-10-24 21:22:34.583174178+00:00,1 +2023-10-24 21:22:34.711223385+00:00,1 +2023-10-24 21:22:34.838915009+00:00,1 +2023-10-24 21:22:34.968480457+00:00,1 +2023-10-24 21:22:35.095407130+00:00,1 +2023-10-24 21:22:35.224421846+00:00,1 +2023-10-24 21:22:35.351645799+00:00,1 +2023-10-24 21:22:35.479723930+00:00,1 +2023-10-24 21:22:35.607525788+00:00,1 +2023-10-24 21:22:35.735304475+00:00,1 +2023-10-24 21:22:35.863801269+00:00,1 +2023-10-24 21:22:35.992013518+00:00,1 +2023-10-24 21:22:36.120618376+00:00,1 +2023-10-24 21:22:36.248799083+00:00,1 +2023-10-24 21:22:36.375935302+00:00,1 +2023-10-24 21:22:36.503186408+00:00,1 +2023-10-24 21:22:36.631599582+00:00,1 +2023-10-24 21:22:36.759123603+00:00,1 +2023-10-24 21:22:36.886800744+00:00,1 +2023-10-24 21:22:37.014901494+00:00,1 +2023-10-24 21:22:37.142687568+00:00,1 +2023-10-24 21:22:37.270570608+00:00,1 +2023-10-24 21:22:37.397426779+00:00,1 +2023-10-24 21:22:37.526970319+00:00,1 +2023-10-24 21:22:37.656497148+00:00,1 +2023-10-24 21:22:37.784849061+00:00,1 +2023-10-24 21:22:37.913220360+00:00,1 +2023-10-24 21:22:38.041595697+00:00,1 +2023-10-24 21:22:38.169567264+00:00,1 +2023-10-24 21:22:38.297450419+00:00,1 +2023-10-24 21:22:38.425910748+00:00,1 +2023-10-24 21:22:38.552523030+00:00,1 +2023-10-24 21:22:38.680716499+00:00,1 +2023-10-24 21:22:38.808544501+00:00,1 +2023-10-24 21:22:38.936341653+00:00,1 +2023-10-24 21:22:39.064204020+00:00,1 +2023-10-24 21:22:39.191137725+00:00,1 +2023-10-24 21:22:39.318523751+00:00,1 +2023-10-24 21:22:39.447146778+00:00,1 +2023-10-24 21:22:39.574783235+00:00,1 +2023-10-24 21:22:39.704123031+00:00,1 +2023-10-24 21:22:39.832398348+00:00,1 +2023-10-24 21:22:39.960270791+00:00,1 +2023-10-24 21:22:40.088181344+00:00,1 +2023-10-24 21:22:40.215397812+00:00,1 +2023-10-24 21:22:40.343161352+00:00,1 +2023-10-24 21:22:40.471594125+00:00,1 +2023-10-24 21:22:40.598539167+00:00,1 +2023-10-24 21:22:40.725553730+00:00,1 +2023-10-24 21:22:40.853346469+00:00,1 +2023-10-24 21:22:40.982123381+00:00,1 +2023-10-24 21:22:41.112184586+00:00,1 +2023-10-24 21:22:41.240043386+00:00,1 +2023-10-24 21:22:41.368232450+00:00,1 +2023-10-24 21:22:41.495953155+00:00,1 +2023-10-24 21:22:41.624520914+00:00,1 +2023-10-24 21:22:41.753304276+00:00,1 +2023-10-24 21:22:41.881164557+00:00,1 +2023-10-24 21:22:42.008901401+00:00,1 +2023-10-24 21:22:42.138092796+00:00,1 +2023-10-24 21:22:42.265580203+00:00,1 +2023-10-24 21:22:42.393018238+00:00,1 +2023-10-24 21:22:42.520190689+00:00,1 +2023-10-24 21:22:42.648683568+00:00,1 +2023-10-24 21:22:42.776210258+00:00,1 +2023-10-24 21:22:42.905128973+00:00,1 +2023-10-24 21:22:43.033661807+00:00,1 +2023-10-24 21:22:43.162510560+00:00,1 +2023-10-24 21:22:43.292382055+00:00,1 +2023-10-24 21:22:43.420271108+00:00,1 +2023-10-24 21:22:43.547749342+00:00,1 +2023-10-24 21:22:43.677200435+00:00,1 +2023-10-24 21:22:43.804727057+00:00,1 +2023-10-24 21:22:43.931471514+00:00,1 +2023-10-24 21:22:44.060347825+00:00,1 +2023-10-24 21:22:44.189011184+00:00,1 +2023-10-24 21:22:44.315719745+00:00,1 +2023-10-24 21:22:44.442882837+00:00,1 +2023-10-24 21:22:44.571219895+00:00,1 +2023-10-24 21:22:44.698970029+00:00,1 +2023-10-24 21:22:44.827768859+00:00,1 +2023-10-24 21:22:44.956532388+00:00,1 +2023-10-24 21:22:45.084956533+00:00,1 +2023-10-24 21:22:45.213527806+00:00,1 +2023-10-24 21:22:45.342489730+00:00,1 +2023-10-24 21:22:45.470622212+00:00,1 +2023-10-24 21:22:45.598234481+00:00,1 +2023-10-24 21:22:45.726492191+00:00,1 +2023-10-24 21:22:45.853928665+00:00,1 +2023-10-24 21:22:45.982707552+00:00,1 +2023-10-24 21:22:46.111811612+00:00,1 +2023-10-24 21:22:46.239746319+00:00,1 +2023-10-24 21:22:46.365951930+00:00,1 +2023-10-24 21:22:46.494286323+00:00,1 +2023-10-24 21:22:46.621531817+00:00,1 +2023-10-24 21:22:46.749486458+00:00,1 +2023-10-24 21:22:46.877214739+00:00,1 +2023-10-24 21:22:47.007391570+00:00,1 +2023-10-24 21:22:47.136664641+00:00,1 +2023-10-24 21:22:47.264515431+00:00,1 +2023-10-24 21:22:47.393904531+00:00,1 +2023-10-24 21:22:47.523611756+00:00,1 +2023-10-24 21:22:47.651011420+00:00,1 +2023-10-24 21:22:47.779774648+00:00,1 +2023-10-24 21:22:47.908730353+00:00,1 +2023-10-24 21:22:48.036397453+00:00,1 +2023-10-24 21:22:48.164155121+00:00,1 +2023-10-24 21:22:48.292076162+00:00,1 +2023-10-24 21:22:48.418952264+00:00,1 +2023-10-24 21:22:48.546597845+00:00,1 +2023-10-24 21:22:48.674523658+00:00,1 +2023-10-24 21:22:48.803211015+00:00,1 +2023-10-24 21:22:48.932042433+00:00,1 +2023-10-24 21:22:49.059613766+00:00,1 +2023-10-24 21:22:49.188141393+00:00,1 +2023-10-24 21:22:49.318416965+00:00,1 +2023-10-24 21:22:49.446062265+00:00,1 +2023-10-24 21:22:49.573077923+00:00,1 +2023-10-24 21:22:49.701086231+00:00,1 +2023-10-24 21:22:49.829890239+00:00,1 +2023-10-24 21:22:49.958787583+00:00,1 +2023-10-24 21:22:50.086425458+00:00,1 +2023-10-24 21:22:50.216067891+00:00,1 +2023-10-24 21:22:50.343529309+00:00,1 +2023-10-24 21:22:50.471323055+00:00,1 +2023-10-24 21:22:50.600231569+00:00,1 +2023-10-24 21:22:50.729024174+00:00,1 +2023-10-24 21:22:50.857917977+00:00,1 +2023-10-24 21:22:50.987271684+00:00,1 +2023-10-24 21:22:51.115989409+00:00,1 +2023-10-24 21:22:51.244073469+00:00,1 +2023-10-24 21:22:51.372528491+00:00,1 +2023-10-24 21:22:51.500279535+00:00,1 +2023-10-24 21:22:51.627313352+00:00,1 +2023-10-24 21:22:51.754876415+00:00,1 +2023-10-24 21:22:51.883408922+00:00,1 +2023-10-24 21:22:52.012381737+00:00,1 +2023-10-24 21:22:52.140559544+00:00,1 +2023-10-24 21:22:52.268204570+00:00,1 +2023-10-24 21:22:52.396806801+00:00,1 +2023-10-24 21:22:52.524232347+00:00,1 +2023-10-24 21:22:52.650821214+00:00,1 +2023-10-24 21:22:52.778181912+00:00,1 +2023-10-24 21:22:52.906096737+00:00,1 +2023-10-24 21:22:53.033785414+00:00,1 +2023-10-24 21:22:53.163577153+00:00,1 +2023-10-24 21:22:53.292501832+00:00,1 +2023-10-24 21:22:53.420958683+00:00,1 +2023-10-24 21:22:53.550040828+00:00,1 +2023-10-24 21:22:53.676252116+00:00,1 +2023-10-24 21:22:53.803384524+00:00,1 +2023-10-24 21:22:53.929550331+00:00,1 +2023-10-24 21:22:54.055784115+00:00,1 +2023-10-24 21:22:54.181821213+00:00,1 +2023-10-24 21:22:54.308828075+00:00,1 +2023-10-24 21:22:54.436699134+00:00,1 +2023-10-24 21:22:54.564542983+00:00,1 +2023-10-24 21:22:55.710184668+00:00,1 +2023-10-24 21:22:55.838282101+00:00,1 +2023-10-24 21:22:55.964188489+00:00,1 +2023-10-24 21:22:56.089815730+00:00,1 +2023-10-24 21:22:56.216856761+00:00,1 +2023-10-24 21:22:56.342119458+00:00,1 +2023-10-24 21:22:57.472075959+00:00,1 +2023-10-24 21:22:57.597634140+00:00,1 +2023-10-24 21:22:57.722870456+00:00,1 +2023-10-24 21:22:57.848937183+00:00,1 +2023-10-24 21:22:57.975547096+00:00,1 +2023-10-24 21:22:58.101388564+00:00,1 +2023-10-24 21:22:58.226431622+00:00,1 +2023-10-24 21:22:58.351818023+00:00,1 +2023-10-24 21:22:58.477632914+00:00,1 +2023-10-24 21:22:59.643215370+00:00,1 +2023-10-24 21:22:59.769313396+00:00,1 +2023-10-24 21:23:15.514899549+00:00,0 +2023-10-24 21:23:17.528418411+00:00,1 +2023-10-24 21:23:17.654444246+00:00,1 +2023-10-24 21:23:17.780097285+00:00,1 +2023-10-24 21:23:17.906677689+00:00,1 +2023-10-24 21:23:18.032101063+00:00,1 +2023-10-24 21:23:18.158054142+00:00,1 +2023-10-24 21:23:19.296096065+00:00,1 +2023-10-24 21:23:19.422184556+00:00,1 +2023-10-24 21:23:19.548028479+00:00,1 +2023-10-24 21:23:19.674236528+00:00,1 +2023-10-24 21:23:19.802353213+00:00,1 +2023-10-24 21:23:19.930124778+00:00,1 +2023-10-24 21:23:20.057319621+00:00,1 +2023-10-24 21:23:20.184823775+00:00,1 +2023-10-24 21:23:20.311813380+00:00,1 +2023-10-24 21:23:20.437950551+00:00,1 +2023-10-24 21:23:20.564069782+00:00,1 +2023-10-24 21:23:20.690185789+00:00,1 +2023-10-24 21:23:20.815883182+00:00,1 +2023-10-24 21:23:20.944148970+00:00,1 +2023-10-24 21:23:21.071537333+00:00,1 +2023-10-24 21:23:21.197457024+00:00,1 +2023-10-24 21:23:21.322948533+00:00,1 +2023-10-24 21:23:21.449558230+00:00,1 +2023-10-24 21:23:21.576733151+00:00,1 +2023-10-24 21:23:21.703061713+00:00,1 +2023-10-24 21:23:21.831457223+00:00,1 +2023-10-24 21:23:21.958013234+00:00,1 +2023-10-24 21:23:22.085782118+00:00,1 +2023-10-24 21:23:22.212348053+00:00,1 +2023-10-24 21:23:22.338336116+00:00,1 +2023-10-24 21:23:22.466515349+00:00,1 +2023-10-24 21:23:22.594856268+00:00,1 +2023-10-24 21:23:22.722412838+00:00,1 +2023-10-24 21:23:22.850761925+00:00,1 +2023-10-24 21:23:22.978970800+00:00,1 +2023-10-24 21:23:23.107519275+00:00,1 +2023-10-24 21:23:23.237388061+00:00,1 +2023-10-24 21:23:23.365024659+00:00,1 +2023-10-24 21:23:23.492636157+00:00,1 +2023-10-24 21:23:23.620583716+00:00,1 +2023-10-24 21:23:23.749594223+00:00,1 +2023-10-24 21:23:23.879297061+00:00,1 +2023-10-24 21:23:24.008338474+00:00,1 +2023-10-24 21:23:24.136820102+00:00,1 +2023-10-24 21:23:24.265813638+00:00,1 +2023-10-24 21:23:24.394161978+00:00,1 +2023-10-24 21:23:24.523556690+00:00,1 +2023-10-24 21:23:24.651253320+00:00,1 +2023-10-24 21:23:24.780189972+00:00,1 +2023-10-24 21:23:24.910517750+00:00,1 +2023-10-24 21:23:25.047007956+00:00,1 +2023-10-24 21:23:25.175215307+00:00,1 +2023-10-24 21:23:25.303487304+00:00,1 +2023-10-24 21:23:25.431951278+00:00,1 +2023-10-24 21:23:25.560134278+00:00,1 +2023-10-24 21:23:25.687226631+00:00,1 +2023-10-24 21:23:25.814416747+00:00,1 +2023-10-24 21:23:25.941575071+00:00,1 +2023-10-24 21:23:26.070183573+00:00,1 +2023-10-24 21:23:26.198662211+00:00,1 +2023-10-24 21:23:26.326271044+00:00,1 +2023-10-24 21:23:26.453843561+00:00,1 +2023-10-24 21:23:26.582368800+00:00,1 +2023-10-24 21:23:26.710850702+00:00,1 +2023-10-24 21:23:26.838496641+00:00,1 +2023-10-24 21:23:26.967725963+00:00,1 +2023-10-24 21:23:27.096112250+00:00,1 +2023-10-24 21:23:27.225365501+00:00,1 +2023-10-24 21:23:27.353289798+00:00,1 +2023-10-24 21:23:27.482492830+00:00,1 +2023-10-24 21:23:27.611285877+00:00,1 +2023-10-24 21:23:27.739253922+00:00,1 +2023-10-24 21:23:27.868028614+00:00,1 +2023-10-24 21:23:27.995626901+00:00,1 +2023-10-24 21:23:28.123799446+00:00,1 +2023-10-24 21:23:28.253222471+00:00,1 +2023-10-24 21:23:28.381210506+00:00,1 +2023-10-24 21:23:28.510258831+00:00,1 +2023-10-24 21:23:28.637879633+00:00,1 +2023-10-24 21:23:28.767190236+00:00,1 +2023-10-24 21:23:28.895320840+00:00,1 +2023-10-24 21:23:29.024575221+00:00,1 +2023-10-24 21:23:29.153320638+00:00,1 +2023-10-24 21:23:29.283416516+00:00,1 +2023-10-24 21:23:29.412152034+00:00,1 +2023-10-24 21:23:29.541980815+00:00,1 +2023-10-24 21:23:29.670735822+00:00,1 +2023-10-24 21:23:29.798579894+00:00,1 +2023-10-24 21:23:29.925226253+00:00,1 +2023-10-24 21:23:30.053356332+00:00,1 +2023-10-24 21:23:30.181536159+00:00,1 +2023-10-24 21:23:30.309621701+00:00,1 +2023-10-24 21:23:30.438521639+00:00,1 +2023-10-24 21:23:30.567215344+00:00,1 +2023-10-24 21:23:30.695678074+00:00,1 +2023-10-24 21:23:30.823430973+00:00,1 +2023-10-24 21:23:30.951917272+00:00,1 +2023-10-24 21:23:31.080475911+00:00,1 +2023-10-24 21:23:31.209959426+00:00,1 +2023-10-24 21:23:31.338425242+00:00,1 +2023-10-24 21:23:31.466513756+00:00,1 +2023-10-24 21:23:31.596355855+00:00,1 +2023-10-24 21:23:31.723867252+00:00,1 +2023-10-24 21:23:31.854446585+00:00,1 +2023-10-24 21:23:31.982613726+00:00,1 +2023-10-24 21:23:32.110742721+00:00,1 +2023-10-24 21:23:32.239354969+00:00,1 +2023-10-24 21:23:32.367664420+00:00,1 +2023-10-24 21:23:32.495746845+00:00,1 +2023-10-24 21:23:32.624542975+00:00,1 +2023-10-24 21:23:32.752414352+00:00,1 +2023-10-24 21:23:32.880358672+00:00,1 +2023-10-24 21:23:33.008855313+00:00,1 +2023-10-24 21:23:33.136797113+00:00,1 +2023-10-24 21:23:33.268591445+00:00,1 +2023-10-24 21:23:33.396988600+00:00,1 +2023-10-24 21:23:33.525609627+00:00,1 +2023-10-24 21:23:33.652977307+00:00,1 +2023-10-24 21:23:33.781294656+00:00,1 +2023-10-24 21:23:33.909326375+00:00,1 +2023-10-24 21:23:34.036428283+00:00,1 +2023-10-24 21:23:34.164483105+00:00,1 +2023-10-24 21:23:34.293560086+00:00,1 +2023-10-24 21:23:34.422493517+00:00,1 +2023-10-24 21:23:34.551029587+00:00,1 +2023-10-24 21:23:34.679465767+00:00,1 +2023-10-24 21:23:34.808228008+00:00,1 +2023-10-24 21:23:34.936038860+00:00,1 +2023-10-24 21:23:35.063213846+00:00,1 +2023-10-24 21:23:35.190458725+00:00,1 +2023-10-24 21:23:35.319526334+00:00,1 +2023-10-24 21:23:35.448164044+00:00,1 +2023-10-24 21:23:35.577556157+00:00,1 +2023-10-24 21:23:35.706110954+00:00,1 +2023-10-24 21:23:35.834242512+00:00,1 +2023-10-24 21:23:35.962659451+00:00,1 +2023-10-24 21:23:36.092350163+00:00,1 +2023-10-24 21:23:36.221092865+00:00,1 +2023-10-24 21:23:36.345938320+00:00,1 +2023-10-24 21:23:36.472354621+00:00,1 +2023-10-24 21:23:36.597445401+00:00,1 +2023-10-24 21:23:36.723455730+00:00,1 +2023-10-24 21:23:36.849678479+00:00,1 +2023-10-24 21:23:36.975802325+00:00,1 +2023-10-24 21:23:37.101351379+00:00,1 +2023-10-24 21:23:37.226255817+00:00,1 +2023-10-24 21:24:09.328688525+00:00,1 +2023-10-24 21:24:09.454331525+00:00,1 +2023-10-24 21:24:09.579811514+00:00,1 +2023-10-24 21:24:10.720410255+00:00,1 +2023-10-24 21:24:10.846203217+00:00,1 +2023-10-24 21:24:10.971439182+00:00,1 +2023-10-24 21:24:11.099334371+00:00,1 +2023-10-24 21:24:11.225975387+00:00,1 +2023-10-24 21:24:11.352328124+00:00,1 +2023-10-24 21:24:11.477496665+00:00,1 +2023-10-24 21:24:11.602073843+00:00,1 +2023-10-24 21:24:12.734953871+00:00,1 +2023-10-24 21:24:12.862327178+00:00,1 +2023-10-24 21:24:12.989338698+00:00,1 +2023-10-24 21:24:13.115414609+00:00,1 +2023-10-24 21:24:13.242375782+00:00,1 +2023-10-24 21:24:13.369746188+00:00,1 +2023-10-24 21:24:13.496440977+00:00,1 +2023-10-24 21:24:13.621051498+00:00,1 +2023-10-24 21:24:13.745713214+00:00,1 +2023-10-24 21:24:13.871757099+00:00,1 +2023-10-24 21:24:13.997507934+00:00,1 +2023-10-24 21:24:14.124122611+00:00,1 +2023-10-24 21:24:14.250128009+00:00,1 +2023-10-24 21:24:14.375360134+00:00,1 +2023-10-24 21:24:14.500467839+00:00,1 +2023-10-24 21:24:14.625284522+00:00,1 +2023-10-24 21:24:14.750916003+00:00,1 +2023-10-24 21:24:14.876139326+00:00,1 +2023-10-24 21:24:15.001199980+00:00,1 +2023-10-24 21:24:15.126285485+00:00,1 +2023-10-24 21:24:15.252524076+00:00,1 +2023-10-24 21:24:15.377744797+00:00,1 +2023-10-24 21:24:15.502630177+00:00,1 +2023-10-24 21:24:15.629006118+00:00,1 +2023-10-24 21:24:15.756614514+00:00,1 +2023-10-24 21:24:15.883005987+00:00,1 +2023-10-24 21:24:16.009794815+00:00,1 +2023-10-24 21:24:16.136908570+00:00,1 +2023-10-24 21:24:16.263312424+00:00,1 +2023-10-24 21:24:16.391871909+00:00,1 +2023-10-24 21:24:16.519148681+00:00,1 +2023-10-24 21:24:16.645571700+00:00,1 +2023-10-24 21:24:16.772009065+00:00,1 +2023-10-24 21:24:16.899815784+00:00,1 +2023-10-24 21:24:17.025621084+00:00,1 +2023-10-24 21:24:17.152950975+00:00,1 +2023-10-24 21:24:17.279687078+00:00,1 +2023-10-24 21:24:17.406118677+00:00,1 +2023-10-24 21:24:17.532378685+00:00,1 +2023-10-24 21:24:17.660650561+00:00,1 +2023-10-24 21:24:17.787030903+00:00,1 +2023-10-24 21:24:17.913274368+00:00,1 +2023-10-24 21:24:18.039940659+00:00,1 +2023-10-24 21:24:18.166964470+00:00,1 +2023-10-24 21:24:18.293761392+00:00,1 +2023-10-24 21:24:18.420660519+00:00,1 +2023-10-24 21:24:18.547331579+00:00,1 +2023-10-24 21:24:18.674460330+00:00,1 +2023-10-24 21:24:18.800746305+00:00,1 +2023-10-24 21:24:18.928264170+00:00,1 +2023-10-24 21:24:19.055563127+00:00,1 +2023-10-24 21:24:19.182202401+00:00,1 +2023-10-24 21:24:19.310245182+00:00,1 +2023-10-24 21:24:19.437985040+00:00,1 +2023-10-24 21:24:19.565070799+00:00,1 +2023-10-24 21:24:19.691153883+00:00,1 +2023-10-24 21:24:19.818034301+00:00,1 +2023-10-24 21:24:19.946262046+00:00,1 +2023-10-24 21:24:20.073515475+00:00,1 +2023-10-24 21:24:20.200478147+00:00,1 +2023-10-24 21:24:20.326440794+00:00,1 +2023-10-24 21:24:20.453469359+00:00,1 +2023-10-24 21:24:20.580144717+00:00,1 +2023-10-24 21:24:20.706621315+00:00,1 +2023-10-24 21:24:20.835034516+00:00,1 +2023-10-24 21:24:20.962259688+00:00,1 +2023-10-24 21:24:21.088768172+00:00,1 +2023-10-24 21:24:21.215851127+00:00,1 +2023-10-24 21:24:21.342550283+00:00,1 +2023-10-24 21:24:21.470650699+00:00,1 +2023-10-24 21:24:21.597812011+00:00,1 +2023-10-24 21:24:21.724268598+00:00,1 +2023-10-24 21:24:21.850761833+00:00,1 +2023-10-24 21:24:21.977793405+00:00,1 +2023-10-24 21:24:22.105226145+00:00,1 +2023-10-24 21:24:22.233110000+00:00,1 +2023-10-24 21:24:22.359787420+00:00,1 +2023-10-24 21:24:22.486489693+00:00,1 +2023-10-24 21:24:22.612880031+00:00,1 +2023-10-24 21:24:22.739767757+00:00,1 +2023-10-24 21:24:22.866390852+00:00,1 +2023-10-24 21:24:22.992979931+00:00,1 +2023-10-24 21:24:23.119636497+00:00,1 +2023-10-24 21:24:23.245633511+00:00,1 +2023-10-24 21:24:23.372599526+00:00,1 +2023-10-24 21:24:23.498718507+00:00,1 +2023-10-24 21:24:23.626188206+00:00,1 +2023-10-24 21:24:23.752639677+00:00,1 +2023-10-24 21:24:23.878808707+00:00,1 +2023-10-24 21:24:24.005493976+00:00,1 +2023-10-24 21:24:24.131731324+00:00,1 +2023-10-24 21:24:24.258956239+00:00,1 +2023-10-24 21:24:24.386272033+00:00,1 +2023-10-24 21:24:24.513112647+00:00,1 +2023-10-24 21:24:24.639235704+00:00,1 +2023-10-24 21:24:24.766882350+00:00,1 +2023-10-24 21:24:24.893514639+00:00,1 +2023-10-24 21:24:25.020312845+00:00,1 +2023-10-24 21:24:25.146221071+00:00,1 +2023-10-24 21:24:25.274352637+00:00,1 +2023-10-24 21:24:25.401143475+00:00,1 +2023-10-24 21:24:25.528460740+00:00,1 +2023-10-24 21:24:25.654214284+00:00,1 +2023-10-24 21:24:25.780807498+00:00,1 +2023-10-24 21:24:25.907447984+00:00,1 +2023-10-24 21:24:26.033949371+00:00,1 +2023-10-24 21:24:26.161066687+00:00,1 +2023-10-24 21:24:26.287589551+00:00,1 +2023-10-24 21:24:26.414541213+00:00,1 +2023-10-24 21:24:26.540805428+00:00,1 +2023-10-24 21:24:26.669817804+00:00,1 +2023-10-24 21:24:26.796234240+00:00,1 +2023-10-24 21:24:26.923247885+00:00,1 +2023-10-24 21:24:27.050513236+00:00,1 +2023-10-24 21:24:27.177344516+00:00,1 +2023-10-24 21:24:27.304103284+00:00,1 +2023-10-24 21:24:27.430917270+00:00,1 +2023-10-24 21:24:27.558876708+00:00,1 +2023-10-24 21:24:27.686246296+00:00,1 +2023-10-24 21:24:27.812846108+00:00,1 +2023-10-24 21:24:27.940212289+00:00,1 +2023-10-24 21:24:28.066945091+00:00,1 +2023-10-24 21:24:28.193292936+00:00,1 +2023-10-24 21:24:28.319653632+00:00,1 +2023-10-24 21:24:28.446808821+00:00,1 +2023-10-24 21:24:28.574645647+00:00,1 +2023-10-24 21:24:28.700691941+00:00,1 +2023-10-24 21:24:28.826924584+00:00,1 +2023-10-24 21:24:28.955134486+00:00,1 +2023-10-24 21:24:29.082478286+00:00,1 +2023-10-24 21:24:29.209309034+00:00,1 +2023-10-24 21:24:29.335617938+00:00,1 +2023-10-24 21:24:29.462118562+00:00,1 +2023-10-24 21:24:29.588758317+00:00,1 +2023-10-24 21:24:29.715677944+00:00,1 +2023-10-24 21:24:29.843318787+00:00,1 +2023-10-24 21:24:29.969246257+00:00,1 +2023-10-24 21:24:30.096052920+00:00,1 +2023-10-24 21:24:30.223754158+00:00,1 +2023-10-24 21:24:30.350509296+00:00,1 +2023-10-24 21:24:30.477198399+00:00,1 +2023-10-24 21:24:30.605644774+00:00,1 +2023-10-24 21:24:30.733444261+00:00,1 +2023-10-24 21:24:30.859965562+00:00,1 +2023-10-24 21:24:30.986400824+00:00,1 +2023-10-24 21:24:31.113782513+00:00,1 +2023-10-24 21:24:31.240246704+00:00,1 +2023-10-24 21:24:31.366884914+00:00,1 +2023-10-24 21:24:31.493680538+00:00,1 +2023-10-24 21:24:31.620396907+00:00,1 +2023-10-24 21:24:31.749792143+00:00,1 +2023-10-24 21:24:31.877547227+00:00,1 +2023-10-24 21:24:32.003767724+00:00,1 +2023-10-24 21:24:32.131418281+00:00,1 +2023-10-24 21:24:32.258569173+00:00,1 +2023-10-24 21:24:32.385262492+00:00,1 +2023-10-24 21:24:32.512998721+00:00,1 +2023-10-24 21:24:32.639899050+00:00,1 +2023-10-24 21:24:32.766548504+00:00,1 +2023-10-24 21:24:32.893073547+00:00,1 +2023-10-24 21:24:33.019667216+00:00,1 +2023-10-24 21:24:33.145979662+00:00,1 +2023-10-24 21:24:33.272667233+00:00,1 +2023-10-24 21:24:33.398757401+00:00,1 +2023-10-24 21:24:33.526504106+00:00,1 +2023-10-24 21:24:33.652754946+00:00,1 +2023-10-24 21:24:33.778268866+00:00,1 +2023-10-24 21:24:33.904836461+00:00,1 +2023-10-24 21:24:34.031777113+00:00,1 +2023-10-24 21:24:34.158406063+00:00,1 +2023-10-24 21:24:34.286220788+00:00,1 +2023-10-24 21:24:34.413899273+00:00,1 +2023-10-24 21:24:34.541656084+00:00,1 +2023-10-24 21:24:34.669442110+00:00,1 +2023-10-24 21:24:34.796407730+00:00,1 +2023-10-24 21:24:34.923179905+00:00,1 +2023-10-24 21:24:35.050240795+00:00,1 +2023-10-24 21:24:35.176574461+00:00,1 +2023-10-24 21:24:35.302674741+00:00,1 +2023-10-24 21:24:35.429116733+00:00,1 +2023-10-24 21:24:35.556138277+00:00,1 +2023-10-24 21:24:35.683338435+00:00,1 +2023-10-24 21:24:35.811409844+00:00,1 +2023-10-24 21:24:35.937965002+00:00,1 +2023-10-24 21:24:36.064923557+00:00,1 +2023-10-24 21:24:36.191898879+00:00,1 +2023-10-24 21:24:36.318574051+00:00,1 +2023-10-24 21:24:36.445216421+00:00,1 +2023-10-24 21:24:36.572622049+00:00,1 +2023-10-24 21:24:36.699717341+00:00,1 +2023-10-24 21:24:36.826199671+00:00,1 +2023-10-24 21:24:36.952239072+00:00,1 +2023-10-24 21:24:37.079089270+00:00,1 +2023-10-24 21:24:37.205661247+00:00,1 +2023-10-24 21:24:37.332392524+00:00,1 +2023-10-24 21:24:37.459205640+00:00,1 +2023-10-24 21:24:37.585677481+00:00,1 +2023-10-24 21:24:37.713391804+00:00,1 +2023-10-24 21:24:37.839983866+00:00,1 +2023-10-24 21:24:37.966685364+00:00,1 +2023-10-24 21:24:38.092779546+00:00,1 +2023-10-24 21:24:38.219631557+00:00,1 +2023-10-24 21:24:38.346282820+00:00,1 +2023-10-24 21:24:38.473376490+00:00,1 +2023-10-24 21:24:38.600762591+00:00,1 +2023-10-24 21:24:38.727605075+00:00,1 +2023-10-24 21:24:38.855005962+00:00,1 +2023-10-24 21:24:38.984543463+00:00,1 +2023-10-24 21:24:39.111067415+00:00,1 +2023-10-24 21:24:39.239345288+00:00,1 +2023-10-24 21:24:39.366599307+00:00,1 +2023-10-24 21:24:39.494005866+00:00,1 +2023-10-24 21:24:39.621835211+00:00,1 +2023-10-24 21:24:39.749143368+00:00,1 +2023-10-24 21:24:39.878738935+00:00,1 +2023-10-24 21:24:40.007068534+00:00,1 +2023-10-24 21:24:40.133535599+00:00,1 +2023-10-24 21:24:40.262563145+00:00,1 +2023-10-24 21:24:40.394206225+00:00,1 +2023-10-24 21:24:40.523893144+00:00,1 +2023-10-24 21:24:40.651973698+00:00,1 +2023-10-24 21:24:40.780114102+00:00,1 +2023-10-24 21:24:40.907792002+00:00,1 +2023-10-24 21:24:41.035211600+00:00,1 +2023-10-24 21:24:41.163437158+00:00,1 +2023-10-24 21:24:41.289750489+00:00,1 +2023-10-24 21:24:41.416837667+00:00,1 +2023-10-24 21:24:41.543804336+00:00,1 +2023-10-24 21:24:41.672398786+00:00,1 +2023-10-24 21:24:41.799364291+00:00,1 +2023-10-24 21:24:41.926136194+00:00,1 +2023-10-24 21:24:42.055619739+00:00,1 +2023-10-24 21:24:42.184175484+00:00,1 +2023-10-24 21:24:42.314827718+00:00,1 +2023-10-24 21:24:42.443331348+00:00,1 +2023-10-24 21:24:42.573534471+00:00,1 +2023-10-24 21:24:42.702588687+00:00,1 +2023-10-24 21:24:42.831666575+00:00,1 +2023-10-24 21:24:42.960428145+00:00,1 +2023-10-24 21:24:43.088614452+00:00,1 +2023-10-24 21:24:43.218348520+00:00,1 +2023-10-24 21:24:43.346109157+00:00,1 +2023-10-24 21:24:43.474359750+00:00,1 +2023-10-24 21:24:43.601822826+00:00,1 +2023-10-24 21:24:43.728475889+00:00,1 +2023-10-24 21:24:43.857606625+00:00,1 +2023-10-24 21:24:43.987358261+00:00,1 +2023-10-24 21:24:44.114433756+00:00,1 +2023-10-24 21:24:44.241801618+00:00,1 +2023-10-24 21:24:44.368505539+00:00,1 +2023-10-24 21:24:44.496081904+00:00,1 +2023-10-24 21:24:44.624378239+00:00,1 +2023-10-24 21:24:44.752395299+00:00,1 +2023-10-24 21:24:44.879812563+00:00,1 +2023-10-24 21:24:45.007493436+00:00,1 +2023-10-24 21:24:45.135588525+00:00,1 +2023-10-24 21:24:45.263915024+00:00,1 +2023-10-24 21:24:45.392662960+00:00,1 +2023-10-24 21:24:45.519940572+00:00,1 +2023-10-24 21:24:45.646689023+00:00,1 +2023-10-24 21:24:45.775611356+00:00,1 +2023-10-24 21:24:45.904341709+00:00,1 +2023-10-24 21:24:46.031962535+00:00,1 +2023-10-24 21:24:46.160643262+00:00,1 +2023-10-24 21:24:46.289356304+00:00,1 +2023-10-24 21:24:46.416809356+00:00,1 +2023-10-24 21:24:46.544546816+00:00,1 +2023-10-24 21:24:46.672763495+00:00,1 +2023-10-24 21:24:46.800902221+00:00,1 +2023-10-24 21:24:46.929495242+00:00,1 +2023-10-24 21:24:47.056883507+00:00,1 +2023-10-24 21:24:47.185626104+00:00,1 +2023-10-24 21:24:47.314001215+00:00,1 +2023-10-24 21:24:47.440693322+00:00,1 +2023-10-24 21:24:47.567979127+00:00,1 +2023-10-24 21:24:47.695504657+00:00,1 +2023-10-24 21:24:47.823826876+00:00,1 +2023-10-24 21:24:47.952105129+00:00,1 +2023-10-24 21:24:48.081855769+00:00,1 +2023-10-24 21:24:48.210844694+00:00,1 +2023-10-24 21:24:48.339351818+00:00,1 +2023-10-24 21:24:48.468479781+00:00,1 +2023-10-24 21:24:48.596942078+00:00,1 +2023-10-24 21:24:48.724244621+00:00,1 +2023-10-24 21:24:48.852397255+00:00,1 +2023-10-24 21:24:48.979799122+00:00,1 +2023-10-24 21:24:49.108239980+00:00,1 +2023-10-24 21:24:49.236964994+00:00,1 +2023-10-24 21:24:49.364133334+00:00,1 +2023-10-24 21:24:49.491553419+00:00,1 +2023-10-24 21:24:49.620930897+00:00,1 +2023-10-24 21:24:49.749638518+00:00,1 +2023-10-24 21:24:49.878028833+00:00,1 +2023-10-24 21:24:50.005629718+00:00,1 +2023-10-24 21:24:50.133173496+00:00,1 +2023-10-24 21:24:50.260213314+00:00,1 +2023-10-24 21:24:50.388324508+00:00,1 +2023-10-24 21:24:50.516320964+00:00,1 +2023-10-24 21:24:50.643479310+00:00,1 +2023-10-24 21:24:50.770458152+00:00,1 +2023-10-24 21:24:50.898148779+00:00,1 +2023-10-24 21:24:51.025286274+00:00,1 +2023-10-24 21:24:51.154118003+00:00,1 +2023-10-24 21:24:51.281072535+00:00,1 +2023-10-24 21:24:51.409677555+00:00,1 +2023-10-24 21:24:51.538208098+00:00,1 +2023-10-24 21:24:51.664819853+00:00,1 +2023-10-24 21:24:51.792056867+00:00,1 +2023-10-24 21:24:51.919070292+00:00,1 +2023-10-24 21:24:52.046820967+00:00,1 +2023-10-24 21:24:52.174779553+00:00,1 +2023-10-24 21:24:52.302852980+00:00,1 +2023-10-24 21:24:52.429904461+00:00,1 +2023-10-24 21:24:52.557690964+00:00,1 +2023-10-24 21:24:52.686584096+00:00,1 +2023-10-24 21:24:52.814267197+00:00,1 +2023-10-24 21:24:52.941802453+00:00,1 +2023-10-24 21:24:53.070694796+00:00,1 +2023-10-24 21:24:53.198610271+00:00,1 +2023-10-24 21:24:53.325813853+00:00,1 +2023-10-24 21:24:53.454242284+00:00,1 +2023-10-24 21:24:53.583062922+00:00,0 +2023-10-24 21:24:55.595412833+00:00,1 +2023-10-24 21:24:55.720360204+00:00,1 +2023-10-24 21:24:55.845371976+00:00,1 +2023-10-24 21:24:59.058558371+00:00,1 +2023-10-24 21:24:59.185071683+00:00,1 +2023-10-24 21:24:59.309774103+00:00,1 +2023-10-24 21:25:00.447106553+00:00,1 +2023-10-24 21:25:00.573369040+00:00,1 +2023-10-24 21:25:00.700264471+00:00,0 +2023-10-24 21:25:02.713193588+00:00,1 +2023-10-24 21:25:03.839689398+00:00,1 +2023-10-24 21:25:03.964517855+00:00,1 +2023-10-24 21:25:04.089254221+00:00,1 +2023-10-24 21:25:04.214081380+00:00,1 +2023-10-24 21:25:08.400428406+00:00,0 +2023-10-24 21:25:10.413780782+00:00,1 +2023-10-24 21:25:10.542392474+00:00,0 +2023-10-24 21:25:12.555194647+00:00,0 +2023-10-24 21:25:14.567365008+00:00,1 +2023-10-24 21:25:14.692816511+00:00,1 +2023-10-24 21:25:14.818068591+00:00,1 +2023-10-24 21:25:14.943771466+00:00,1 +2023-10-24 21:25:15.068980238+00:00,1 +2023-10-24 21:25:15.193926737+00:00,1 +2023-10-24 21:25:15.319492974+00:00,1 +2023-10-24 21:25:15.444263103+00:00,1 +2023-10-24 21:25:15.571019912+00:00,1 +2023-10-24 21:25:15.696272714+00:00,1 +2023-10-24 21:25:15.821565508+00:00,1 +2023-10-24 21:25:15.947635913+00:00,1 +2023-10-24 21:25:16.072213845+00:00,1 +2023-10-24 21:25:16.197609485+00:00,1 +2023-10-24 21:25:16.322873109+00:00,1 +2023-10-24 21:25:16.448168581+00:00,1 +2023-10-24 21:25:16.572991312+00:00,1 +2023-10-24 21:25:16.698079813+00:00,1 +2023-10-24 21:25:16.822917658+00:00,1 +2023-10-24 21:25:16.948036524+00:00,1 +2023-10-24 21:25:17.072872863+00:00,1 +2023-10-24 21:25:17.197751610+00:00,1 +2023-10-24 21:25:17.323247214+00:00,1 +2023-10-24 21:25:17.448147524+00:00,1 +2023-10-24 21:25:17.573458223+00:00,1 +2023-10-24 21:25:17.698162800+00:00,1 +2023-10-24 21:25:17.823134435+00:00,1 +2023-10-24 21:25:17.948201257+00:00,1 +2023-10-24 21:25:18.072713301+00:00,1 +2023-10-24 21:25:18.198962450+00:00,1 +2023-10-24 21:25:18.325800921+00:00,1 +2023-10-24 21:25:18.452194351+00:00,1 +2023-10-24 21:25:18.578949065+00:00,1 +2023-10-24 21:25:18.706287305+00:00,1 +2023-10-24 21:25:18.834424884+00:00,1 +2023-10-24 21:25:18.963069664+00:00,1 +2023-10-24 21:25:19.090197449+00:00,1 +2023-10-24 21:25:19.216713081+00:00,1 +2023-10-24 21:25:19.344131010+00:00,1 +2023-10-24 21:25:19.471674104+00:00,1 +2023-10-24 21:25:19.598002344+00:00,1 +2023-10-24 21:25:19.725282108+00:00,1 +2023-10-24 21:25:19.852186664+00:00,1 +2023-10-24 21:25:19.980043455+00:00,1 +2023-10-24 21:25:20.108171538+00:00,1 +2023-10-24 21:25:20.235103701+00:00,1 +2023-10-24 21:25:20.361940733+00:00,1 +2023-10-24 21:25:20.489465816+00:00,1 +2023-10-24 21:25:20.615908855+00:00,1 +2023-10-24 21:25:20.743214353+00:00,1 +2023-10-24 21:25:20.870068421+00:00,1 +2023-10-24 21:25:20.996801602+00:00,1 +2023-10-24 21:25:21.125084183+00:00,1 +2023-10-24 21:25:21.253078499+00:00,1 +2023-10-24 21:25:21.379492819+00:00,1 +2023-10-24 21:25:21.507126057+00:00,1 +2023-10-24 21:25:21.634481741+00:00,1 +2023-10-24 21:25:21.761699849+00:00,1 +2023-10-24 21:25:21.889823692+00:00,1 +2023-10-24 21:25:22.017913664+00:00,1 +2023-10-24 21:25:22.145923973+00:00,1 +2023-10-24 21:25:22.273214180+00:00,1 +2023-10-24 21:25:22.399719638+00:00,1 +2023-10-24 21:25:22.526791251+00:00,1 +2023-10-24 21:25:22.652919615+00:00,1 +2023-10-24 21:25:22.780917069+00:00,1 +2023-10-24 21:25:22.909006946+00:00,1 +2023-10-24 21:25:23.036375142+00:00,1 +2023-10-24 21:25:23.165451790+00:00,1 +2023-10-24 21:25:23.292510599+00:00,1 +2023-10-24 21:25:23.419259151+00:00,1 +2023-10-24 21:25:23.545629273+00:00,1 +2023-10-24 21:25:23.674063825+00:00,1 +2023-10-24 21:25:23.800498407+00:00,1 +2023-10-24 21:25:23.926786847+00:00,1 +2023-10-24 21:25:24.053528903+00:00,1 +2023-10-24 21:25:24.180338724+00:00,1 +2023-10-24 21:25:24.307368868+00:00,1 +2023-10-24 21:25:24.435069183+00:00,1 +2023-10-24 21:25:24.561877633+00:00,1 +2023-10-24 21:25:24.690458616+00:00,1 +2023-10-24 21:25:24.818895666+00:00,1 +2023-10-24 21:25:24.946890955+00:00,1 +2023-10-24 21:25:25.076591686+00:00,1 +2023-10-24 21:25:25.205242618+00:00,1 +2023-10-24 21:25:25.332123401+00:00,1 +2023-10-24 21:25:25.460210569+00:00,1 +2023-10-24 21:25:25.588125584+00:00,1 +2023-10-24 21:25:25.716206949+00:00,1 +2023-10-24 21:25:25.845271556+00:00,1 +2023-10-24 21:25:25.974715719+00:00,1 +2023-10-24 21:25:26.105078449+00:00,1 +2023-10-24 21:25:26.234325417+00:00,1 +2023-10-24 21:25:26.362595406+00:00,1 +2023-10-24 21:25:26.490699778+00:00,1 +2023-10-24 21:25:26.620207710+00:00,1 +2023-10-24 21:25:26.749999116+00:00,1 +2023-10-24 21:25:26.879559361+00:00,1 +2023-10-24 21:25:27.008359922+00:00,1 +2023-10-24 21:25:27.137205567+00:00,1 +2023-10-24 21:25:27.265809018+00:00,1 +2023-10-24 21:25:27.393469232+00:00,1 +2023-10-24 21:25:27.523158958+00:00,1 +2023-10-24 21:25:27.651994895+00:00,1 +2023-10-24 21:25:30.874203296+00:00,1 diff --git a/tests/zero-downtime-scaling/results/1.0.0/10-node/gradual-down-https.png b/tests/zero-downtime-scaling/results/1.0.0/10-node/gradual-down-https.png new file mode 100644 index 0000000000000000000000000000000000000000..33f5cd093eae7b2d25544a18a28feb2e6b0f3526 GIT binary patch literal 6462 zcmeHLdpwj|_h0EKZ;nfy?(R9NS4B}N*NM=DI8lgPau2y3mmy|2LJ02(k?T<*hup7W z9FxWwB-g5suirm?K6^jUv)A5hukTuW?X{n^ADUh> z6xnfb2LOm%zI5?Az*boR0ZXB+D5bQ>PZuSCsgb!pf*>d*FE4NN)e3+|S^)tjvlRm! z9dN;Y5^0qMJf;{AwzhV4bxluCqaqenRFav=rNc9eHx@r22$L3x)c#S%WFizmrGXRr#2t!1q!e%Q zwH<%pfDZ}JZwTl;9W1W`!RwuUBu%Nec<8!=F&nIXA+w0JnEx`+3c}Aye#qp zn32pB=%?k;l1(u;Je2Xf0l#}U9)lJ<-o6!YkKi})V~{+w*duv9NNX#C>Vvd)*X1lC zi+Q!(e;|K!x0c^WFnNe=O5tH z9+=w;v-@HCAbga7DJhtgh6!1q9fC1=7*&9g!$3I-gNiV44Ej#Mdu8Z33Ee8tr3&OT z(4hvTbI`61Z#1Ay3tDx6fPrRRXwrj5eW*8tx=T=V1*)$?r7@J7K$$6&UWXDhD82zj z7EovjFK)qeYskM1d3KO%57~Dh%MqSBL%J(Gaf8&mkm3QqdO@-`B>BK2KS=P0xB!R^ zf|y`<5CT!55E%w|9N_Q}773wI5b^+mV<0FN0^-0w0sJ0;PZD@1gV(R%kpg#9!R-mS zri1fSaLj@`*J0*6OH zVHD)Y;1CUDCqQ}I)#Zk&1b?|?{&%d=9niuK()6wm1;WM0MV116AbYysN(n>i- zTH3xjzWUGm+YYR~yiaHN_qls;Pi!pi@@QuB{KCiSG0GKhsRDo2ue|(lYmgNbtj;TR zC~SVRGcH@_^v0yZO)j+Ger~)h{rp6D?-SSL)mrxAg~j*E3oz6YAm-h-5X9qszg&;W zd9>j^>|QQL=Lbhjm6 z6C3|rzL(#iR=utvH=q3~bc_&nv}Jn+$9i8!Rj-a%XlV7?CWQ8i%cMo;hb)nOv77b3 zxbhsK_#eR=tCg1giK9_c;&S7T+b_m$6{RQ1NiuNLRtlf-LX!gLgHa-9c+1YI(!Cuz zrvwhY2~GHm{vAr+zh!5epx>fUtoXuam-PwpIk&uilWe40l$9O?Ad|ziGCd1hgV#+PYii-h zc%$zB4hUCouIBrVd|KW!SZ_O7U7xUO@=lt=u5f;UzxB7c{4mi5&2^`GBjtj)V;i=k z*s+ya!RxjNUqVS-PSPLyrG5A;M`o4br{8x(_~RsR!H&ldUE8sxX4h{0watF2C6N)+ zsdh}S0>j*zO`a#aMv6VXWn*fs?f%S2}__Pl`A_FLW?X~GwUHW4!lC~mVe;rd^= z3PZuRdpp?MIT6}62;U<-P9YLChR(Z%Kg)0q3Kmfdvt<|3)Kn=lW7~N?d`=lxEB5`y zMtd0l@NIh>F2eJ>y9!6+Y}*B|i|y9mv1#PzunFwj=Qlh2%L#@j$iI1HGF5ivUoxc9 z$o{G)68))L^Do7qjoM5^vInP0Uf8N7!CQvUI*7HtMY7PZ2cNj zuuqNXHQ$1XE|4+NBiu{qCy+XuTq)f;`{N%KA2l>$^vrxR(b^>ycsM7A&pGqLbCfBl zk}Wa1p_xM#?5k;5s`ce_?wk2*xS!6oP4SAY47$#q2|WAaRjS3`<$8Mxx0Dq2Oo=@1 z&gUBOGYs>I@7`3|Yh*6_1ihbFSj=QS`h{!EBP<&8d@%N`&|JNU$ zIE(7#vE$KeVoKeNB(X+j`%llqY^yMDNiy{qRvAxT*y+M;S;95K;eMI2gW9-t@+y^E z<4(aABQ8;5oLfxpeC844fv{8fi^0{EnUHMs?+Lw0=J9$p==t=g1ucMk!Vknw1FPWSWe>m%{ zEc~CVBV>=`#93Osr|9i|+Z>vyXShb&dt>WahWz(o{hG7|l6;9?!V~l|DNb%k{Bg@% z&?D3Hsq;dqW>%764D(ld1J|bM{JRB}lE3*WiuDK5S(jGmS(z&-pVzt3ek-qcM!TpN zT&==J{ib2}bcufZtg~gzKSw7|S2G^d*L-8$6-TG6O829@l%01AE6?#pU)sbJWs_sp zZWueC()Bu)igiw!3_rd{ zuHdCx&wSObQ@RZEy@o%bFncXbrqwSp%+ol(XOaV=q|C4hEzNwadrSRqW9xqiaa`FX z`7CDhm-30UokJnHGw#jZ*7~vTxy)+q-}lI)s*!dU7pNE#TopV2R+33x;};jI$bU{J zJKE&_a^8T_t-SuO&T0NDtOUk#qy4aY+uV5kosv>{&Ev@{>?bC-W9KX=K4CXK3{j;v z0c1RzP)$8>hgK|7;i#zEmiSWBfNCe>qG^0Sdg*>xMZn*^kE#)*970BhPj`o$)RA&% zcBgr-2u*v@mzQhKzNvIvD!D0XFm1k9ZP3IyF}%mzB{tyqvu_e#Hc1)q&845&$o4P% zKF8=Sln8Ia%mk&;dGGuv0wbEbSnE2;D_*hFk0yAHd3PfQjHg5T6JK`qE@Y7J2plU^ z;ZRSd))9+x$&R~~E1t$|FA07apq0S3Uu}9bs;PVGM%dEZd!e!O)HZazf*;;EpV}_O z{!5$r?}n~9=T_PA&1e1*WHfzhs7{^lm=dQpSJz=}Xu0rnM<(kk_YcylIFW%PoE?xs z(Z32R&LvZO7t+ZA0v>+Jk!vU zGVDbz*6SJyN;`uttF!O!0J8?^Ft&M4y#5Wf)LGKdO(WFZPy;%B&ZO>J4dX`K!s=CU z8A2R_OoeaMJhuKAhkC9}{bDHXQ&5!Uh6lQ&21Qxul9FHAB(;PnQshwg6{?UNSbcfi nuqf-wfA-hrHSKdcU#yDxN$Zg39Rc(b7%uByyZB1iKJtG6+$Mn7 literal 0 HcmV?d00001 diff --git a/tests/zero-downtime-scaling/results/1.0.0/10-node/gradual-up-http.csv b/tests/zero-downtime-scaling/results/1.0.0/10-node/gradual-up-http.csv new file mode 100644 index 000000000..06a14b27e --- /dev/null +++ b/tests/zero-downtime-scaling/results/1.0.0/10-node/gradual-up-http.csv @@ -0,0 +1,1823 @@ +2023-10-24 20:43:20.391745870+00:00,1 +2023-10-24 20:43:20.506975203+00:00,1 +2023-10-24 20:43:20.623512318+00:00,1 +2023-10-24 20:43:20.739073090+00:00,1 +2023-10-24 20:43:20.855078166+00:00,1 +2023-10-24 20:43:20.972241710+00:00,1 +2023-10-24 20:43:21.088313786+00:00,1 +2023-10-24 20:43:21.203742097+00:00,1 +2023-10-24 20:43:21.319256574+00:00,1 +2023-10-24 20:43:21.434435383+00:00,1 +2023-10-24 20:43:21.549259372+00:00,1 +2023-10-24 20:43:21.667502858+00:00,1 +2023-10-24 20:43:21.782624948+00:00,1 +2023-10-24 20:43:21.898479314+00:00,1 +2023-10-24 20:43:22.014601018+00:00,1 +2023-10-24 20:43:22.129762149+00:00,1 +2023-10-24 20:43:22.246001730+00:00,1 +2023-10-24 20:43:22.361815274+00:00,1 +2023-10-24 20:43:22.477237353+00:00,1 +2023-10-24 20:43:22.592893692+00:00,1 +2023-10-24 20:43:22.708025648+00:00,1 +2023-10-24 20:43:22.823957159+00:00,1 +2023-10-24 20:43:22.939470914+00:00,1 +2023-10-24 20:43:23.055041851+00:00,1 +2023-10-24 20:43:23.171003897+00:00,1 +2023-10-24 20:43:23.287129282+00:00,1 +2023-10-24 20:43:23.402528299+00:00,1 +2023-10-24 20:43:23.518089350+00:00,1 +2023-10-24 20:43:23.633794316+00:00,1 +2023-10-24 20:43:23.748825664+00:00,1 +2023-10-24 20:43:23.864701783+00:00,1 +2023-10-24 20:43:23.980305639+00:00,1 +2023-10-24 20:43:24.095489545+00:00,1 +2023-10-24 20:43:24.210980054+00:00,1 +2023-10-24 20:43:24.326202439+00:00,1 +2023-10-24 20:43:24.441792145+00:00,1 +2023-10-24 20:43:24.558518714+00:00,1 +2023-10-24 20:43:24.673744648+00:00,1 +2023-10-24 20:43:24.792936315+00:00,1 +2023-10-24 20:43:24.907839932+00:00,1 +2023-10-24 20:43:25.023297805+00:00,1 +2023-10-24 20:43:25.138869377+00:00,1 +2023-10-24 20:43:25.257253314+00:00,1 +2023-10-24 20:43:25.373772229+00:00,1 +2023-10-24 20:43:25.489157653+00:00,1 +2023-10-24 20:43:25.604344265+00:00,1 +2023-10-24 20:43:25.719648059+00:00,1 +2023-10-24 20:43:25.834936155+00:00,1 +2023-10-24 20:43:25.950250554+00:00,1 +2023-10-24 20:43:26.066176963+00:00,1 +2023-10-24 20:43:26.183017130+00:00,1 +2023-10-24 20:43:26.298136810+00:00,1 +2023-10-24 20:43:26.413586005+00:00,1 +2023-10-24 20:43:26.530155250+00:00,1 +2023-10-24 20:43:26.646035785+00:00,1 +2023-10-24 20:43:26.761432044+00:00,1 +2023-10-24 20:43:26.876936570+00:00,1 +2023-10-24 20:43:26.993333662+00:00,1 +2023-10-24 20:43:27.109099885+00:00,1 +2023-10-24 20:43:27.224812079+00:00,1 +2023-10-24 20:43:27.340214060+00:00,1 +2023-10-24 20:43:27.455192909+00:00,1 +2023-10-24 20:43:27.570428279+00:00,1 +2023-10-24 20:43:27.685508003+00:00,1 +2023-10-24 20:43:27.800717323+00:00,1 +2023-10-24 20:43:27.916269037+00:00,1 +2023-10-24 20:43:28.032937779+00:00,1 +2023-10-24 20:43:28.148705022+00:00,1 +2023-10-24 20:43:28.264304237+00:00,1 +2023-10-24 20:43:28.379658067+00:00,1 +2023-10-24 20:43:28.495120449+00:00,1 +2023-10-24 20:43:28.611193504+00:00,1 +2023-10-24 20:43:28.726439418+00:00,1 +2023-10-24 20:43:28.841644691+00:00,1 +2023-10-24 20:43:28.956309930+00:00,1 +2023-10-24 20:43:29.071462810+00:00,1 +2023-10-24 20:43:29.186609649+00:00,1 +2023-10-24 20:43:29.302529457+00:00,1 +2023-10-24 20:43:29.417996738+00:00,1 +2023-10-24 20:43:29.534601986+00:00,1 +2023-10-24 20:43:29.650249960+00:00,1 +2023-10-24 20:43:29.765324490+00:00,1 +2023-10-24 20:43:29.881175507+00:00,1 +2023-10-24 20:43:29.997167839+00:00,1 +2023-10-24 20:43:30.113802640+00:00,1 +2023-10-24 20:43:30.230492783+00:00,1 +2023-10-24 20:43:30.346803486+00:00,1 +2023-10-24 20:43:30.462759416+00:00,1 +2023-10-24 20:43:30.582587745+00:00,1 +2023-10-24 20:43:30.698654927+00:00,1 +2023-10-24 20:43:30.814031612+00:00,1 +2023-10-24 20:43:30.930480256+00:00,1 +2023-10-24 20:43:31.046337653+00:00,1 +2023-10-24 20:43:31.162332691+00:00,1 +2023-10-24 20:43:31.277680125+00:00,1 +2023-10-24 20:43:31.393572350+00:00,1 +2023-10-24 20:43:31.509558445+00:00,1 +2023-10-24 20:43:31.625514044+00:00,1 +2023-10-24 20:43:31.741309899+00:00,1 +2023-10-24 20:43:31.857647202+00:00,1 +2023-10-24 20:43:31.972725016+00:00,1 +2023-10-24 20:43:32.088211674+00:00,1 +2023-10-24 20:43:32.203842619+00:00,1 +2023-10-24 20:43:32.320038771+00:00,1 +2023-10-24 20:43:32.435718828+00:00,1 +2023-10-24 20:43:32.551774591+00:00,1 +2023-10-24 20:43:32.667438290+00:00,1 +2023-10-24 20:43:32.783228028+00:00,1 +2023-10-24 20:43:32.898859275+00:00,1 +2023-10-24 20:43:33.013856804+00:00,1 +2023-10-24 20:43:33.129295200+00:00,1 +2023-10-24 20:43:33.244468301+00:00,1 +2023-10-24 20:43:33.360186317+00:00,1 +2023-10-24 20:43:33.475432078+00:00,1 +2023-10-24 20:43:33.591146022+00:00,1 +2023-10-24 20:43:33.706497778+00:00,1 +2023-10-24 20:43:33.822166942+00:00,1 +2023-10-24 20:43:33.937538526+00:00,1 +2023-10-24 20:43:34.052892526+00:00,1 +2023-10-24 20:43:34.168501920+00:00,1 +2023-10-24 20:43:34.284190657+00:00,1 +2023-10-24 20:43:34.399629361+00:00,1 +2023-10-24 20:43:34.514650633+00:00,1 +2023-10-24 20:43:34.630058769+00:00,1 +2023-10-24 20:43:34.745485812+00:00,1 +2023-10-24 20:43:34.860714824+00:00,1 +2023-10-24 20:43:34.977235821+00:00,1 +2023-10-24 20:43:35.093115146+00:00,1 +2023-10-24 20:43:35.208854436+00:00,1 +2023-10-24 20:43:35.324623038+00:00,1 +2023-10-24 20:43:35.440518122+00:00,1 +2023-10-24 20:43:35.556355959+00:00,1 +2023-10-24 20:43:35.672123525+00:00,1 +2023-10-24 20:43:35.787943661+00:00,1 +2023-10-24 20:43:35.904763718+00:00,1 +2023-10-24 20:43:36.020475363+00:00,1 +2023-10-24 20:43:36.135660408+00:00,1 +2023-10-24 20:43:36.250691566+00:00,1 +2023-10-24 20:43:36.366593538+00:00,1 +2023-10-24 20:43:36.482923940+00:00,1 +2023-10-24 20:43:36.598726555+00:00,1 +2023-10-24 20:43:36.714668386+00:00,1 +2023-10-24 20:43:36.830471761+00:00,1 +2023-10-24 20:43:36.945814367+00:00,1 +2023-10-24 20:43:37.061708689+00:00,1 +2023-10-24 20:43:37.176916007+00:00,1 +2023-10-24 20:43:37.292463226+00:00,1 +2023-10-24 20:43:37.408101154+00:00,1 +2023-10-24 20:43:37.524585517+00:00,1 +2023-10-24 20:43:37.640864002+00:00,1 +2023-10-24 20:43:37.756584124+00:00,1 +2023-10-24 20:43:37.871774633+00:00,1 +2023-10-24 20:43:37.987520800+00:00,1 +2023-10-24 20:43:38.102615750+00:00,1 +2023-10-24 20:43:38.217678372+00:00,1 +2023-10-24 20:43:38.333237747+00:00,1 +2023-10-24 20:43:38.449382958+00:00,1 +2023-10-24 20:43:38.565775523+00:00,1 +2023-10-24 20:43:38.681440597+00:00,1 +2023-10-24 20:43:38.797994536+00:00,1 +2023-10-24 20:43:38.914363112+00:00,1 +2023-10-24 20:43:39.029668841+00:00,1 +2023-10-24 20:43:39.144732079+00:00,1 +2023-10-24 20:43:39.260314730+00:00,1 +2023-10-24 20:43:39.376380764+00:00,1 +2023-10-24 20:43:39.492388891+00:00,1 +2023-10-24 20:43:39.607659525+00:00,1 +2023-10-24 20:43:39.723679156+00:00,1 +2023-10-24 20:43:39.839954932+00:00,1 +2023-10-24 20:43:39.955603287+00:00,1 +2023-10-24 20:43:40.071881825+00:00,1 +2023-10-24 20:43:40.187820641+00:00,1 +2023-10-24 20:43:40.303442643+00:00,1 +2023-10-24 20:43:40.418594746+00:00,1 +2023-10-24 20:43:40.533902600+00:00,1 +2023-10-24 20:43:40.648755450+00:00,1 +2023-10-24 20:43:40.763452716+00:00,1 +2023-10-24 20:43:40.879382688+00:00,1 +2023-10-24 20:43:40.994808281+00:00,1 +2023-10-24 20:43:41.110409419+00:00,1 +2023-10-24 20:43:41.225936804+00:00,1 +2023-10-24 20:43:41.341097106+00:00,1 +2023-10-24 20:43:41.456416142+00:00,1 +2023-10-24 20:43:41.571797250+00:00,1 +2023-10-24 20:43:41.687182446+00:00,1 +2023-10-24 20:43:41.802648651+00:00,1 +2023-10-24 20:43:41.918223162+00:00,1 +2023-10-24 20:43:42.034850861+00:00,1 +2023-10-24 20:43:42.152081056+00:00,1 +2023-10-24 20:43:42.267447571+00:00,1 +2023-10-24 20:43:42.383443011+00:00,1 +2023-10-24 20:43:42.498897576+00:00,1 +2023-10-24 20:43:42.614584761+00:00,1 +2023-10-24 20:43:42.730509487+00:00,1 +2023-10-24 20:43:42.846188519+00:00,1 +2023-10-24 20:43:42.961672447+00:00,1 +2023-10-24 20:43:43.077098303+00:00,1 +2023-10-24 20:43:43.192506789+00:00,1 +2023-10-24 20:43:43.308143350+00:00,1 +2023-10-24 20:43:43.423622158+00:00,1 +2023-10-24 20:43:43.539070182+00:00,1 +2023-10-24 20:43:43.654687823+00:00,1 +2023-10-24 20:43:43.770086510+00:00,1 +2023-10-24 20:43:43.885642985+00:00,1 +2023-10-24 20:43:44.001304510+00:00,1 +2023-10-24 20:43:44.116439308+00:00,1 +2023-10-24 20:43:44.232069559+00:00,1 +2023-10-24 20:43:44.347907637+00:00,1 +2023-10-24 20:43:44.463646185+00:00,1 +2023-10-24 20:43:44.579156312+00:00,1 +2023-10-24 20:43:44.694895802+00:00,1 +2023-10-24 20:43:44.810727538+00:00,1 +2023-10-24 20:43:44.926612201+00:00,1 +2023-10-24 20:43:45.042072787+00:00,1 +2023-10-24 20:43:45.157886496+00:00,1 +2023-10-24 20:43:45.273561502+00:00,1 +2023-10-24 20:43:45.389846282+00:00,1 +2023-10-24 20:43:45.504825208+00:00,1 +2023-10-24 20:43:45.620206633+00:00,1 +2023-10-24 20:43:45.735922129+00:00,1 +2023-10-24 20:43:45.851626208+00:00,1 +2023-10-24 20:43:45.967168389+00:00,1 +2023-10-24 20:43:46.082628475+00:00,1 +2023-10-24 20:43:46.198585669+00:00,1 +2023-10-24 20:43:46.313841549+00:00,1 +2023-10-24 20:43:46.429747617+00:00,1 +2023-10-24 20:43:46.545703640+00:00,1 +2023-10-24 20:43:46.662064032+00:00,1 +2023-10-24 20:43:46.777413665+00:00,1 +2023-10-24 20:43:46.892808909+00:00,1 +2023-10-24 20:43:47.009263410+00:00,1 +2023-10-24 20:43:47.125244789+00:00,1 +2023-10-24 20:43:47.240868699+00:00,1 +2023-10-24 20:43:47.356717645+00:00,1 +2023-10-24 20:43:47.472229222+00:00,1 +2023-10-24 20:43:47.588041886+00:00,1 +2023-10-24 20:43:47.704117680+00:00,1 +2023-10-24 20:43:47.819494164+00:00,1 +2023-10-24 20:43:47.935375874+00:00,1 +2023-10-24 20:43:48.050665489+00:00,1 +2023-10-24 20:43:48.165537664+00:00,1 +2023-10-24 20:43:48.280786115+00:00,1 +2023-10-24 20:43:48.396287118+00:00,1 +2023-10-24 20:43:48.511681128+00:00,1 +2023-10-24 20:43:48.627142390+00:00,1 +2023-10-24 20:43:48.742553069+00:00,1 +2023-10-24 20:43:48.857954736+00:00,1 +2023-10-24 20:43:48.973368144+00:00,1 +2023-10-24 20:43:49.089420656+00:00,1 +2023-10-24 20:43:49.204927244+00:00,1 +2023-10-24 20:43:49.320828643+00:00,1 +2023-10-24 20:43:49.436787571+00:00,1 +2023-10-24 20:43:49.552185854+00:00,1 +2023-10-24 20:43:49.667119500+00:00,1 +2023-10-24 20:43:49.782513820+00:00,1 +2023-10-24 20:43:49.898021509+00:00,1 +2023-10-24 20:43:50.014175628+00:00,1 +2023-10-24 20:43:50.129826583+00:00,1 +2023-10-24 20:43:50.245376819+00:00,1 +2023-10-24 20:43:50.361510928+00:00,1 +2023-10-24 20:43:50.476972848+00:00,1 +2023-10-24 20:43:50.592166875+00:00,1 +2023-10-24 20:43:50.708215470+00:00,1 +2023-10-24 20:43:50.824762311+00:00,1 +2023-10-24 20:43:50.940439748+00:00,1 +2023-10-24 20:43:51.055731432+00:00,1 +2023-10-24 20:43:51.171215583+00:00,1 +2023-10-24 20:43:51.286864655+00:00,1 +2023-10-24 20:43:51.402413794+00:00,1 +2023-10-24 20:43:51.517505301+00:00,1 +2023-10-24 20:43:51.632832973+00:00,1 +2023-10-24 20:43:51.748106184+00:00,1 +2023-10-24 20:43:51.863474326+00:00,1 +2023-10-24 20:43:51.978650657+00:00,1 +2023-10-24 20:43:52.094050654+00:00,1 +2023-10-24 20:43:52.209617751+00:00,1 +2023-10-24 20:43:52.324940389+00:00,1 +2023-10-24 20:43:52.440362713+00:00,1 +2023-10-24 20:43:52.556576039+00:00,1 +2023-10-24 20:43:52.672103666+00:00,1 +2023-10-24 20:43:52.788094364+00:00,1 +2023-10-24 20:43:52.903434615+00:00,1 +2023-10-24 20:43:53.018977502+00:00,1 +2023-10-24 20:43:53.134529513+00:00,1 +2023-10-24 20:43:53.250128306+00:00,1 +2023-10-24 20:43:53.366089128+00:00,1 +2023-10-24 20:43:53.482133644+00:00,1 +2023-10-24 20:43:53.597919355+00:00,1 +2023-10-24 20:43:53.714603958+00:00,1 +2023-10-24 20:43:53.829490988+00:00,1 +2023-10-24 20:43:53.944586115+00:00,1 +2023-10-24 20:43:54.060013341+00:00,1 +2023-10-24 20:43:54.175365391+00:00,1 +2023-10-24 20:43:54.290854640+00:00,1 +2023-10-24 20:43:54.406791557+00:00,1 +2023-10-24 20:43:54.522688318+00:00,1 +2023-10-24 20:43:54.639249109+00:00,1 +2023-10-24 20:43:54.754538375+00:00,1 +2023-10-24 20:43:54.870286048+00:00,1 +2023-10-24 20:43:54.985305120+00:00,1 +2023-10-24 20:43:55.100763198+00:00,1 +2023-10-24 20:43:55.216135613+00:00,1 +2023-10-24 20:43:55.331987959+00:00,1 +2023-10-24 20:43:55.448384836+00:00,1 +2023-10-24 20:43:55.564601929+00:00,1 +2023-10-24 20:43:55.679862253+00:00,1 +2023-10-24 20:43:55.795872799+00:00,1 +2023-10-24 20:43:55.910580114+00:00,1 +2023-10-24 20:43:56.026807401+00:00,1 +2023-10-24 20:43:56.141888736+00:00,1 +2023-10-24 20:43:56.257953321+00:00,1 +2023-10-24 20:43:56.372925390+00:00,1 +2023-10-24 20:43:56.488311986+00:00,1 +2023-10-24 20:43:56.603278049+00:00,1 +2023-10-24 20:43:56.718620237+00:00,1 +2023-10-24 20:43:56.834137222+00:00,1 +2023-10-24 20:43:56.949510847+00:00,1 +2023-10-24 20:43:57.064883351+00:00,1 +2023-10-24 20:43:57.180553902+00:00,1 +2023-10-24 20:43:57.295810523+00:00,1 +2023-10-24 20:43:57.411260527+00:00,1 +2023-10-24 20:43:57.526967368+00:00,1 +2023-10-24 20:43:57.642471644+00:00,1 +2023-10-24 20:43:57.759053230+00:00,1 +2023-10-24 20:43:57.874853823+00:00,1 +2023-10-24 20:43:57.991596028+00:00,1 +2023-10-24 20:43:58.108403149+00:00,1 +2023-10-24 20:43:58.224571342+00:00,1 +2023-10-24 20:43:58.340384503+00:00,1 +2023-10-24 20:43:58.455986292+00:00,1 +2023-10-24 20:43:58.571776529+00:00,1 +2023-10-24 20:43:58.686805491+00:00,1 +2023-10-24 20:43:58.802538189+00:00,1 +2023-10-24 20:43:58.918259011+00:00,1 +2023-10-24 20:43:59.035173046+00:00,1 +2023-10-24 20:43:59.151353011+00:00,1 +2023-10-24 20:43:59.267200229+00:00,1 +2023-10-24 20:43:59.382769356+00:00,1 +2023-10-24 20:43:59.498575393+00:00,1 +2023-10-24 20:43:59.614182454+00:00,1 +2023-10-24 20:43:59.730218329+00:00,1 +2023-10-24 20:43:59.846180468+00:00,1 +2023-10-24 20:43:59.961390907+00:00,1 +2023-10-24 20:44:00.077002995+00:00,1 +2023-10-24 20:44:00.192773581+00:00,1 +2023-10-24 20:44:00.308704879+00:00,1 +2023-10-24 20:44:00.424716835+00:00,1 +2023-10-24 20:44:00.539618005+00:00,1 +2023-10-24 20:44:00.654765600+00:00,1 +2023-10-24 20:44:00.769888642+00:00,1 +2023-10-24 20:44:00.885033390+00:00,1 +2023-10-24 20:44:01.000766684+00:00,1 +2023-10-24 20:44:01.116500871+00:00,1 +2023-10-24 20:44:01.232772057+00:00,1 +2023-10-24 20:44:01.348427470+00:00,1 +2023-10-24 20:44:01.464747368+00:00,1 +2023-10-24 20:44:01.582607646+00:00,1 +2023-10-24 20:44:01.699631911+00:00,1 +2023-10-24 20:44:01.815250444+00:00,1 +2023-10-24 20:44:01.930773736+00:00,1 +2023-10-24 20:44:02.046624155+00:00,1 +2023-10-24 20:44:02.162795729+00:00,1 +2023-10-24 20:44:02.278251113+00:00,1 +2023-10-24 20:44:02.393882915+00:00,1 +2023-10-24 20:44:02.508894244+00:00,1 +2023-10-24 20:44:02.624477475+00:00,1 +2023-10-24 20:44:02.740025728+00:00,1 +2023-10-24 20:44:02.855183884+00:00,1 +2023-10-24 20:44:02.970815840+00:00,1 +2023-10-24 20:44:03.086319938+00:00,1 +2023-10-24 20:44:03.201823152+00:00,1 +2023-10-24 20:44:03.317968203+00:00,1 +2023-10-24 20:44:03.434321318+00:00,1 +2023-10-24 20:44:03.549908247+00:00,1 +2023-10-24 20:44:03.665543103+00:00,1 +2023-10-24 20:44:03.781696172+00:00,1 +2023-10-24 20:44:03.897688230+00:00,1 +2023-10-24 20:44:04.013518364+00:00,1 +2023-10-24 20:44:04.130218007+00:00,1 +2023-10-24 20:44:04.245743671+00:00,1 +2023-10-24 20:44:04.362045084+00:00,1 +2023-10-24 20:44:04.477600852+00:00,1 +2023-10-24 20:44:04.592506995+00:00,1 +2023-10-24 20:44:04.707466478+00:00,1 +2023-10-24 20:44:04.822451774+00:00,1 +2023-10-24 20:44:04.937717730+00:00,1 +2023-10-24 20:44:05.052839804+00:00,1 +2023-10-24 20:44:05.168158023+00:00,1 +2023-10-24 20:44:05.283277240+00:00,1 +2023-10-24 20:44:05.398695059+00:00,1 +2023-10-24 20:44:05.513896720+00:00,1 +2023-10-24 20:44:05.629422081+00:00,1 +2023-10-24 20:44:05.744763270+00:00,1 +2023-10-24 20:44:05.860797556+00:00,1 +2023-10-24 20:44:05.976325040+00:00,1 +2023-10-24 20:44:06.091978860+00:00,1 +2023-10-24 20:44:06.207937271+00:00,1 +2023-10-24 20:44:06.323724714+00:00,1 +2023-10-24 20:44:06.439854056+00:00,1 +2023-10-24 20:44:06.555757638+00:00,1 +2023-10-24 20:44:06.671307971+00:00,1 +2023-10-24 20:44:06.787015748+00:00,1 +2023-10-24 20:44:06.903384296+00:00,1 +2023-10-24 20:44:07.019554198+00:00,1 +2023-10-24 20:44:07.135297748+00:00,1 +2023-10-24 20:44:07.251001850+00:00,1 +2023-10-24 20:44:07.366867561+00:00,1 +2023-10-24 20:44:07.482320805+00:00,1 +2023-10-24 20:44:07.598952623+00:00,1 +2023-10-24 20:44:07.714428174+00:00,1 +2023-10-24 20:44:07.830156909+00:00,1 +2023-10-24 20:44:07.945639471+00:00,1 +2023-10-24 20:44:08.061904859+00:00,1 +2023-10-24 20:44:08.177609735+00:00,1 +2023-10-24 20:44:08.293879212+00:00,1 +2023-10-24 20:44:08.409213081+00:00,1 +2023-10-24 20:44:08.524828076+00:00,1 +2023-10-24 20:44:08.640378921+00:00,1 +2023-10-24 20:44:08.756341031+00:00,1 +2023-10-24 20:44:08.871478129+00:00,1 +2023-10-24 20:44:08.987400400+00:00,1 +2023-10-24 20:44:09.102992828+00:00,1 +2023-10-24 20:44:09.219675271+00:00,1 +2023-10-24 20:44:09.335547878+00:00,1 +2023-10-24 20:44:09.451541023+00:00,1 +2023-10-24 20:44:09.567718134+00:00,1 +2023-10-24 20:44:09.682866348+00:00,1 +2023-10-24 20:44:09.798100942+00:00,1 +2023-10-24 20:44:09.913756512+00:00,1 +2023-10-24 20:44:10.028915122+00:00,1 +2023-10-24 20:44:10.144591183+00:00,1 +2023-10-24 20:44:10.260688302+00:00,1 +2023-10-24 20:44:10.376486836+00:00,1 +2023-10-24 20:44:10.492051257+00:00,1 +2023-10-24 20:44:10.608010095+00:00,1 +2023-10-24 20:44:10.723786385+00:00,1 +2023-10-24 20:44:10.840930247+00:00,1 +2023-10-24 20:44:10.956639204+00:00,1 +2023-10-24 20:44:11.072129705+00:00,1 +2023-10-24 20:44:11.187315763+00:00,1 +2023-10-24 20:44:11.303356416+00:00,1 +2023-10-24 20:44:11.418610877+00:00,1 +2023-10-24 20:44:11.533433398+00:00,1 +2023-10-24 20:44:11.649224298+00:00,1 +2023-10-24 20:44:11.764697825+00:00,1 +2023-10-24 20:44:11.880877046+00:00,1 +2023-10-24 20:44:11.996265184+00:00,1 +2023-10-24 20:44:12.112372949+00:00,1 +2023-10-24 20:44:12.228285550+00:00,1 +2023-10-24 20:44:12.343868286+00:00,1 +2023-10-24 20:44:12.459258016+00:00,1 +2023-10-24 20:44:12.574970356+00:00,1 +2023-10-24 20:44:12.690656320+00:00,1 +2023-10-24 20:44:12.806225080+00:00,1 +2023-10-24 20:44:12.921595974+00:00,1 +2023-10-24 20:44:13.036782731+00:00,1 +2023-10-24 20:44:13.152894862+00:00,1 +2023-10-24 20:44:13.268602570+00:00,1 +2023-10-24 20:44:13.384482268+00:00,1 +2023-10-24 20:44:13.500011380+00:00,1 +2023-10-24 20:44:13.616315238+00:00,1 +2023-10-24 20:44:13.732552863+00:00,1 +2023-10-24 20:44:13.848462504+00:00,1 +2023-10-24 20:44:13.963885079+00:00,1 +2023-10-24 20:44:14.080109070+00:00,1 +2023-10-24 20:44:14.196002107+00:00,1 +2023-10-24 20:44:14.310976815+00:00,1 +2023-10-24 20:44:14.426296887+00:00,1 +2023-10-24 20:44:14.541814642+00:00,1 +2023-10-24 20:44:14.656756529+00:00,1 +2023-10-24 20:44:14.772341690+00:00,1 +2023-10-24 20:44:14.888517699+00:00,1 +2023-10-24 20:44:15.004387322+00:00,1 +2023-10-24 20:44:15.120500044+00:00,1 +2023-10-24 20:44:15.236149222+00:00,1 +2023-10-24 20:44:15.351972229+00:00,1 +2023-10-24 20:44:15.467392876+00:00,1 +2023-10-24 20:44:15.583071017+00:00,1 +2023-10-24 20:44:15.698173596+00:00,1 +2023-10-24 20:44:15.815079630+00:00,1 +2023-10-24 20:44:15.930213935+00:00,1 +2023-10-24 20:44:16.046411669+00:00,1 +2023-10-24 20:44:16.161641209+00:00,1 +2023-10-24 20:44:16.277565544+00:00,1 +2023-10-24 20:44:16.393884936+00:00,1 +2023-10-24 20:44:16.510297607+00:00,1 +2023-10-24 20:44:16.626067029+00:00,1 +2023-10-24 20:44:16.741510807+00:00,1 +2023-10-24 20:44:16.857543656+00:00,1 +2023-10-24 20:44:16.973708041+00:00,1 +2023-10-24 20:44:17.089489204+00:00,1 +2023-10-24 20:44:17.205304950+00:00,1 +2023-10-24 20:44:17.320989527+00:00,1 +2023-10-24 20:44:17.436550988+00:00,1 +2023-10-24 20:44:17.551562530+00:00,1 +2023-10-24 20:44:17.667436806+00:00,1 +2023-10-24 20:44:17.782989743+00:00,1 +2023-10-24 20:44:17.898558728+00:00,1 +2023-10-24 20:44:18.014498294+00:00,1 +2023-10-24 20:44:18.129881449+00:00,1 +2023-10-24 20:44:18.245645822+00:00,1 +2023-10-24 20:44:18.361283296+00:00,1 +2023-10-24 20:44:18.476636352+00:00,1 +2023-10-24 20:44:18.592792366+00:00,1 +2023-10-24 20:44:18.708365778+00:00,1 +2023-10-24 20:44:18.824689437+00:00,1 +2023-10-24 20:44:18.940028207+00:00,1 +2023-10-24 20:44:19.055526851+00:00,1 +2023-10-24 20:44:19.170885168+00:00,1 +2023-10-24 20:44:19.285960642+00:00,1 +2023-10-24 20:44:19.401423857+00:00,1 +2023-10-24 20:44:19.516959868+00:00,1 +2023-10-24 20:44:19.633370101+00:00,1 +2023-10-24 20:44:19.749072677+00:00,1 +2023-10-24 20:44:19.864929095+00:00,1 +2023-10-24 20:44:19.980919215+00:00,1 +2023-10-24 20:44:20.096855299+00:00,1 +2023-10-24 20:44:20.211952047+00:00,1 +2023-10-24 20:44:20.327217363+00:00,1 +2023-10-24 20:44:20.442542442+00:00,1 +2023-10-24 20:44:20.557617096+00:00,1 +2023-10-24 20:44:20.672903744+00:00,1 +2023-10-24 20:44:20.788265962+00:00,1 +2023-10-24 20:44:20.903809483+00:00,1 +2023-10-24 20:44:21.019196107+00:00,1 +2023-10-24 20:44:21.134726050+00:00,1 +2023-10-24 20:44:21.249616019+00:00,1 +2023-10-24 20:44:21.365197722+00:00,1 +2023-10-24 20:44:21.480777968+00:00,1 +2023-10-24 20:44:21.597080432+00:00,1 +2023-10-24 20:44:21.712656717+00:00,1 +2023-10-24 20:44:21.828562267+00:00,1 +2023-10-24 20:44:21.944298157+00:00,1 +2023-10-24 20:44:22.059920311+00:00,1 +2023-10-24 20:44:22.176278278+00:00,1 +2023-10-24 20:44:22.292132745+00:00,1 +2023-10-24 20:44:22.408198044+00:00,1 +2023-10-24 20:44:22.525158391+00:00,1 +2023-10-24 20:44:22.640946830+00:00,0 +2023-10-24 20:44:24.654043772+00:00,1 +2023-10-24 20:44:24.768885028+00:00,1 +2023-10-24 20:44:24.883874153+00:00,0 +2023-10-24 20:44:26.896568506+00:00,1 +2023-10-24 20:44:27.010954177+00:00,1 +2023-10-24 20:44:27.125496046+00:00,1 +2023-10-24 20:44:27.240525386+00:00,1 +2023-10-24 20:44:27.355907948+00:00,1 +2023-10-24 20:44:27.470240270+00:00,1 +2023-10-24 20:44:43.238696402+00:00,1 +2023-10-24 20:44:43.355021475+00:00,1 +2023-10-24 20:44:43.470614383+00:00,1 +2023-10-24 20:44:43.586355334+00:00,1 +2023-10-24 20:44:43.701614884+00:00,1 +2023-10-24 20:44:43.817872102+00:00,1 +2023-10-24 20:44:43.934297691+00:00,1 +2023-10-24 20:44:44.048758736+00:00,1 +2023-10-24 20:44:44.164801388+00:00,1 +2023-10-24 20:44:44.279567443+00:00,1 +2023-10-24 20:44:44.395038958+00:00,1 +2023-10-24 20:44:44.510187980+00:00,1 +2023-10-24 20:44:44.624581092+00:00,1 +2023-10-24 20:44:44.739163040+00:00,1 +2023-10-24 20:44:44.854851466+00:00,1 +2023-10-24 20:44:44.969719869+00:00,1 +2023-10-24 20:44:45.084522919+00:00,1 +2023-10-24 20:44:45.199450979+00:00,1 +2023-10-24 20:44:45.314747948+00:00,1 +2023-10-24 20:44:45.430873905+00:00,1 +2023-10-24 20:44:45.545830035+00:00,1 +2023-10-24 20:44:45.661063005+00:00,1 +2023-10-24 20:44:45.775292497+00:00,1 +2023-10-24 20:44:45.891197202+00:00,1 +2023-10-24 20:44:46.006981853+00:00,1 +2023-10-24 20:44:46.122580756+00:00,1 +2023-10-24 20:44:46.237840035+00:00,1 +2023-10-24 20:44:46.352266531+00:00,1 +2023-10-24 20:44:46.467391746+00:00,1 +2023-10-24 20:44:46.583292524+00:00,1 +2023-10-24 20:44:46.698179261+00:00,1 +2023-10-24 20:44:46.812555159+00:00,1 +2023-10-24 20:44:46.927393438+00:00,1 +2023-10-24 20:44:47.042525885+00:00,1 +2023-10-24 20:44:47.157735770+00:00,1 +2023-10-24 20:44:47.272140815+00:00,1 +2023-10-24 20:44:47.387381655+00:00,1 +2023-10-24 20:44:47.501776717+00:00,1 +2023-10-24 20:44:47.617189813+00:00,1 +2023-10-24 20:44:47.731644241+00:00,1 +2023-10-24 20:44:47.846991033+00:00,1 +2023-10-24 20:44:47.963683436+00:00,1 +2023-10-24 20:44:48.077826536+00:00,1 +2023-10-24 20:44:48.192596150+00:00,1 +2023-10-24 20:44:48.308484559+00:00,1 +2023-10-24 20:44:48.423628991+00:00,1 +2023-10-24 20:44:48.538205584+00:00,1 +2023-10-24 20:44:48.653618940+00:00,1 +2023-10-24 20:44:48.768078928+00:00,1 +2023-10-24 20:44:48.883285213+00:00,1 +2023-10-24 20:44:48.998447930+00:00,1 +2023-10-24 20:44:49.113455614+00:00,1 +2023-10-24 20:44:49.229382533+00:00,1 +2023-10-24 20:44:49.344732588+00:00,1 +2023-10-24 20:44:49.459751837+00:00,1 +2023-10-24 20:44:49.574232451+00:00,1 +2023-10-24 20:44:49.688579690+00:00,1 +2023-10-24 20:44:49.803814528+00:00,1 +2023-10-24 20:44:49.919153209+00:00,1 +2023-10-24 20:44:50.033449477+00:00,1 +2023-10-24 20:44:50.149484595+00:00,1 +2023-10-24 20:44:50.264444775+00:00,1 +2023-10-24 20:44:50.379672276+00:00,1 +2023-10-24 20:44:50.494428844+00:00,1 +2023-10-24 20:44:50.609312663+00:00,1 +2023-10-24 20:44:50.724637999+00:00,1 +2023-10-24 20:44:50.840119129+00:00,1 +2023-10-24 20:44:50.955228139+00:00,1 +2023-10-24 20:44:51.069791495+00:00,1 +2023-10-24 20:44:51.184451911+00:00,1 +2023-10-24 20:44:51.299524110+00:00,1 +2023-10-24 20:44:51.414618445+00:00,1 +2023-10-24 20:44:51.529780030+00:00,1 +2023-10-24 20:44:51.644414403+00:00,1 +2023-10-24 20:44:51.760478213+00:00,1 +2023-10-24 20:44:51.875059797+00:00,1 +2023-10-24 20:44:51.990037449+00:00,1 +2023-10-24 20:44:52.105305240+00:00,1 +2023-10-24 20:44:52.220441798+00:00,1 +2023-10-24 20:44:52.334989086+00:00,1 +2023-10-24 20:44:52.449541538+00:00,1 +2023-10-24 20:44:52.564322619+00:00,1 +2023-10-24 20:44:52.679723508+00:00,1 +2023-10-24 20:44:52.794386721+00:00,1 +2023-10-24 20:44:52.910246646+00:00,1 +2023-10-24 20:44:53.025104428+00:00,1 +2023-10-24 20:44:53.140180504+00:00,1 +2023-10-24 20:44:53.254307186+00:00,1 +2023-10-24 20:44:53.369124729+00:00,1 +2023-10-24 20:44:53.483731627+00:00,1 +2023-10-24 20:44:53.598142375+00:00,1 +2023-10-24 20:44:53.713451773+00:00,1 +2023-10-24 20:44:53.828351605+00:00,1 +2023-10-24 20:44:53.943683710+00:00,1 +2023-10-24 20:44:54.058824870+00:00,1 +2023-10-24 20:44:54.174783395+00:00,1 +2023-10-24 20:44:54.289842592+00:00,1 +2023-10-24 20:44:54.404639490+00:00,1 +2023-10-24 20:44:54.519935269+00:00,1 +2023-10-24 20:44:54.635328729+00:00,1 +2023-10-24 20:44:54.750971099+00:00,0 +2023-10-24 20:44:56.764414213+00:00,1 +2023-10-24 20:44:56.878802234+00:00,0 +2023-10-24 20:44:58.891820716+00:00,1 +2023-10-24 20:44:59.006835532+00:00,0 +2023-10-24 20:45:01.018851066+00:00,1 +2023-10-24 20:45:32.696684091+00:00,1 +2023-10-24 20:45:32.811184020+00:00,1 +2023-10-24 20:45:32.926287342+00:00,1 +2023-10-24 20:45:33.041920604+00:00,1 +2023-10-24 20:45:33.157503550+00:00,1 +2023-10-24 20:45:33.271553435+00:00,1 +2023-10-24 20:45:33.386936543+00:00,1 +2023-10-24 20:45:33.502227521+00:00,1 +2023-10-24 20:45:33.617305485+00:00,1 +2023-10-24 20:45:33.732593639+00:00,1 +2023-10-24 20:45:33.848235679+00:00,1 +2023-10-24 20:45:33.963361614+00:00,1 +2023-10-24 20:45:34.078189133+00:00,1 +2023-10-24 20:45:34.194036944+00:00,1 +2023-10-24 20:45:34.309504338+00:00,1 +2023-10-24 20:45:34.424770356+00:00,1 +2023-10-24 20:45:34.539713419+00:00,1 +2023-10-24 20:45:34.655107031+00:00,1 +2023-10-24 20:45:34.770238288+00:00,1 +2023-10-24 20:45:34.885770012+00:00,1 +2023-10-24 20:45:35.001374156+00:00,1 +2023-10-24 20:45:35.116648207+00:00,1 +2023-10-24 20:45:35.231688643+00:00,1 +2023-10-24 20:45:35.346709944+00:00,1 +2023-10-24 20:45:35.461462029+00:00,1 +2023-10-24 20:45:35.576206079+00:00,1 +2023-10-24 20:45:35.690544444+00:00,1 +2023-10-24 20:45:35.804926073+00:00,1 +2023-10-24 20:45:35.920200361+00:00,1 +2023-10-24 20:45:36.036311216+00:00,1 +2023-10-24 20:45:36.151339311+00:00,1 +2023-10-24 20:45:36.266694791+00:00,1 +2023-10-24 20:45:36.384375709+00:00,1 +2023-10-24 20:45:36.499211807+00:00,1 +2023-10-24 20:45:36.614469097+00:00,1 +2023-10-24 20:45:36.729073445+00:00,1 +2023-10-24 20:45:36.843984703+00:00,1 +2023-10-24 20:45:36.960126769+00:00,1 +2023-10-24 20:45:37.075897787+00:00,1 +2023-10-24 20:45:38.256632148+00:00,1 +2023-10-24 20:45:38.371091584+00:00,1 +2023-10-24 20:45:38.485919089+00:00,1 +2023-10-24 20:45:38.600371019+00:00,1 +2023-10-24 20:45:38.715038762+00:00,1 +2023-10-24 20:45:38.830229810+00:00,1 +2023-10-24 20:45:38.945152630+00:00,1 +2023-10-24 20:45:39.059362947+00:00,1 +2023-10-24 20:45:39.173890369+00:00,1 +2023-10-24 20:45:39.289424999+00:00,1 +2023-10-24 20:45:39.403718919+00:00,1 +2023-10-24 20:45:39.518883051+00:00,1 +2023-10-24 20:45:39.633038508+00:00,1 +2023-10-24 20:45:39.747981613+00:00,1 +2023-10-24 20:45:39.862763887+00:00,1 +2023-10-24 20:45:39.977130370+00:00,1 +2023-10-24 20:45:40.091766927+00:00,1 +2023-10-24 20:45:40.205797475+00:00,1 +2023-10-24 20:45:40.320775686+00:00,1 +2023-10-24 20:45:40.436859466+00:00,1 +2023-10-24 20:45:40.552479252+00:00,1 +2023-10-24 20:45:40.668518806+00:00,1 +2023-10-24 20:45:40.784253027+00:00,1 +2023-10-24 20:45:40.900239902+00:00,1 +2023-10-24 20:45:41.016846445+00:00,1 +2023-10-24 20:45:41.133373091+00:00,1 +2023-10-24 20:45:41.249232385+00:00,1 +2023-10-24 20:45:41.365346315+00:00,1 +2023-10-24 20:45:41.481065884+00:00,1 +2023-10-24 20:45:41.596430791+00:00,1 +2023-10-24 20:45:41.712015880+00:00,1 +2023-10-24 20:45:41.827773802+00:00,1 +2023-10-24 20:45:41.943557266+00:00,1 +2023-10-24 20:45:42.060112216+00:00,1 +2023-10-24 20:45:42.175203224+00:00,1 +2023-10-24 20:45:42.291211913+00:00,1 +2023-10-24 20:45:42.407261149+00:00,1 +2023-10-24 20:45:42.523256844+00:00,1 +2023-10-24 20:45:42.638557324+00:00,1 +2023-10-24 20:45:42.753633865+00:00,1 +2023-10-24 20:45:42.869513302+00:00,1 +2023-10-24 20:45:42.985701799+00:00,1 +2023-10-24 20:45:43.101435727+00:00,1 +2023-10-24 20:45:43.217068164+00:00,1 +2023-10-24 20:45:43.332854028+00:00,1 +2023-10-24 20:45:43.448650329+00:00,1 +2023-10-24 20:45:43.564219760+00:00,1 +2023-10-24 20:45:43.680226353+00:00,1 +2023-10-24 20:45:43.795861156+00:00,1 +2023-10-24 20:45:43.912798803+00:00,1 +2023-10-24 20:45:44.028705812+00:00,1 +2023-10-24 20:45:44.144435795+00:00,1 +2023-10-24 20:45:44.260197516+00:00,1 +2023-10-24 20:45:44.375643175+00:00,1 +2023-10-24 20:45:44.491058372+00:00,1 +2023-10-24 20:45:44.607240697+00:00,1 +2023-10-24 20:45:44.723054528+00:00,1 +2023-10-24 20:45:44.838874768+00:00,1 +2023-10-24 20:45:44.954633217+00:00,1 +2023-10-24 20:45:45.069778697+00:00,1 +2023-10-24 20:45:45.184957530+00:00,1 +2023-10-24 20:45:45.300143210+00:00,1 +2023-10-24 20:45:45.415290761+00:00,1 +2023-10-24 20:45:45.531283396+00:00,1 +2023-10-24 20:45:45.648336598+00:00,1 +2023-10-24 20:45:45.764764907+00:00,1 +2023-10-24 20:45:45.880448411+00:00,1 +2023-10-24 20:45:45.997109054+00:00,1 +2023-10-24 20:45:46.113828977+00:00,1 +2023-10-24 20:45:46.229862083+00:00,1 +2023-10-24 20:45:46.346047374+00:00,1 +2023-10-24 20:45:46.461657786+00:00,1 +2023-10-24 20:45:46.577799643+00:00,1 +2023-10-24 20:45:46.693585845+00:00,1 +2023-10-24 20:45:46.809369969+00:00,1 +2023-10-24 20:45:46.925419956+00:00,1 +2023-10-24 20:45:47.040994929+00:00,1 +2023-10-24 20:45:47.157153706+00:00,1 +2023-10-24 20:45:47.273251521+00:00,1 +2023-10-24 20:45:47.389588394+00:00,1 +2023-10-24 20:45:47.504459377+00:00,1 +2023-10-24 20:45:47.619875682+00:00,1 +2023-10-24 20:45:47.736340191+00:00,1 +2023-10-24 20:45:47.852375204+00:00,1 +2023-10-24 20:45:47.968223793+00:00,1 +2023-10-24 20:45:48.083998316+00:00,1 +2023-10-24 20:45:48.200529519+00:00,1 +2023-10-24 20:45:48.316258979+00:00,1 +2023-10-24 20:45:48.432132990+00:00,1 +2023-10-24 20:45:48.547639092+00:00,1 +2023-10-24 20:45:48.663502659+00:00,1 +2023-10-24 20:45:48.779962617+00:00,1 +2023-10-24 20:45:48.895846137+00:00,1 +2023-10-24 20:45:49.011418291+00:00,1 +2023-10-24 20:45:49.127042626+00:00,1 +2023-10-24 20:45:49.242544270+00:00,1 +2023-10-24 20:45:49.358770573+00:00,1 +2023-10-24 20:45:49.473812517+00:00,1 +2023-10-24 20:45:49.588735197+00:00,1 +2023-10-24 20:45:49.704380672+00:00,1 +2023-10-24 20:45:49.820503379+00:00,1 +2023-10-24 20:45:49.936347905+00:00,1 +2023-10-24 20:45:50.051843616+00:00,1 +2023-10-24 20:45:50.167418041+00:00,1 +2023-10-24 20:45:50.282737234+00:00,1 +2023-10-24 20:45:50.398548129+00:00,1 +2023-10-24 20:45:50.514211342+00:00,1 +2023-10-24 20:45:50.629403296+00:00,1 +2023-10-24 20:45:50.744806379+00:00,1 +2023-10-24 20:45:50.860981680+00:00,1 +2023-10-24 20:45:50.976775101+00:00,1 +2023-10-24 20:45:51.092422420+00:00,1 +2023-10-24 20:45:51.207557555+00:00,1 +2023-10-24 20:45:51.322759953+00:00,1 +2023-10-24 20:45:51.438040214+00:00,1 +2023-10-24 20:45:51.553593909+00:00,1 +2023-10-24 20:45:51.670036747+00:00,1 +2023-10-24 20:45:51.785524365+00:00,1 +2023-10-24 20:45:51.901491820+00:00,1 +2023-10-24 20:45:52.018122765+00:00,1 +2023-10-24 20:45:52.133647773+00:00,1 +2023-10-24 20:45:52.248808863+00:00,1 +2023-10-24 20:45:52.363820589+00:00,1 +2023-10-24 20:45:52.479192964+00:00,1 +2023-10-24 20:45:52.594875153+00:00,1 +2023-10-24 20:45:52.710324963+00:00,1 +2023-10-24 20:45:52.825466054+00:00,1 +2023-10-24 20:45:52.941347361+00:00,1 +2023-10-24 20:45:53.056785861+00:00,1 +2023-10-24 20:45:53.171995373+00:00,1 +2023-10-24 20:45:53.287233030+00:00,1 +2023-10-24 20:45:53.404187315+00:00,1 +2023-10-24 20:45:53.520799082+00:00,1 +2023-10-24 20:45:53.636613815+00:00,1 +2023-10-24 20:45:53.752396658+00:00,1 +2023-10-24 20:45:53.867818066+00:00,1 +2023-10-24 20:45:53.984024498+00:00,1 +2023-10-24 20:45:54.099765881+00:00,1 +2023-10-24 20:45:54.215398078+00:00,1 +2023-10-24 20:45:54.330852647+00:00,1 +2023-10-24 20:45:54.446877536+00:00,1 +2023-10-24 20:45:54.564218321+00:00,1 +2023-10-24 20:45:54.679433372+00:00,1 +2023-10-24 20:45:54.795123892+00:00,1 +2023-10-24 20:45:54.910343774+00:00,1 +2023-10-24 20:45:55.026068275+00:00,1 +2023-10-24 20:45:55.142356255+00:00,1 +2023-10-24 20:45:55.257765957+00:00,1 +2023-10-24 20:45:55.373556796+00:00,1 +2023-10-24 20:45:55.488836224+00:00,1 +2023-10-24 20:45:55.604190667+00:00,1 +2023-10-24 20:45:55.719556046+00:00,1 +2023-10-24 20:45:55.835295631+00:00,1 +2023-10-24 20:45:55.952289150+00:00,1 +2023-10-24 20:45:56.068839624+00:00,1 +2023-10-24 20:45:56.184573229+00:00,1 +2023-10-24 20:45:56.300453134+00:00,1 +2023-10-24 20:45:56.415904861+00:00,1 +2023-10-24 20:45:56.531813286+00:00,1 +2023-10-24 20:45:56.647851692+00:00,1 +2023-10-24 20:45:56.763233586+00:00,1 +2023-10-24 20:45:56.879646406+00:00,1 +2023-10-24 20:45:56.995308066+00:00,1 +2023-10-24 20:45:57.111147440+00:00,1 +2023-10-24 20:45:57.227014837+00:00,1 +2023-10-24 20:45:57.342342817+00:00,1 +2023-10-24 20:45:57.457231520+00:00,1 +2023-10-24 20:45:57.572579483+00:00,1 +2023-10-24 20:45:57.687694933+00:00,1 +2023-10-24 20:45:57.803966327+00:00,1 +2023-10-24 20:45:57.920000394+00:00,1 +2023-10-24 20:45:58.035047954+00:00,1 +2023-10-24 20:45:58.150984557+00:00,1 +2023-10-24 20:45:58.267693061+00:00,1 +2023-10-24 20:45:58.382837971+00:00,1 +2023-10-24 20:45:58.498043172+00:00,1 +2023-10-24 20:45:58.613554002+00:00,1 +2023-10-24 20:45:58.729134313+00:00,1 +2023-10-24 20:45:58.845323128+00:00,1 +2023-10-24 20:45:58.961870714+00:00,1 +2023-10-24 20:45:59.077243131+00:00,1 +2023-10-24 20:45:59.194783224+00:00,1 +2023-10-24 20:45:59.310793080+00:00,1 +2023-10-24 20:45:59.426552404+00:00,1 +2023-10-24 20:45:59.542684914+00:00,1 +2023-10-24 20:45:59.659203059+00:00,1 +2023-10-24 20:45:59.775470860+00:00,1 +2023-10-24 20:45:59.891222060+00:00,1 +2023-10-24 20:46:00.007537288+00:00,1 +2023-10-24 20:46:00.123664904+00:00,1 +2023-10-24 20:46:00.239677765+00:00,1 +2023-10-24 20:46:00.354864419+00:00,1 +2023-10-24 20:46:00.469685429+00:00,1 +2023-10-24 20:46:00.585189667+00:00,1 +2023-10-24 20:46:00.701210522+00:00,1 +2023-10-24 20:46:00.817271732+00:00,1 +2023-10-24 20:46:00.933713690+00:00,1 +2023-10-24 20:46:01.050127866+00:00,1 +2023-10-24 20:46:01.167231740+00:00,1 +2023-10-24 20:46:01.283157379+00:00,1 +2023-10-24 20:46:01.399875131+00:00,1 +2023-10-24 20:46:01.516410965+00:00,1 +2023-10-24 20:46:01.631827993+00:00,1 +2023-10-24 20:46:01.749914722+00:00,1 +2023-10-24 20:46:01.865545244+00:00,1 +2023-10-24 20:46:01.982470244+00:00,1 +2023-10-24 20:46:02.098574692+00:00,1 +2023-10-24 20:46:02.214677335+00:00,1 +2023-10-24 20:46:02.330472344+00:00,1 +2023-10-24 20:46:02.445499775+00:00,1 +2023-10-24 20:46:02.561838502+00:00,1 +2023-10-24 20:46:02.676895613+00:00,1 +2023-10-24 20:46:02.794283444+00:00,1 +2023-10-24 20:46:02.910064632+00:00,1 +2023-10-24 20:46:03.025885884+00:00,1 +2023-10-24 20:46:03.141883870+00:00,1 +2023-10-24 20:46:03.257066236+00:00,1 +2023-10-24 20:46:03.372081273+00:00,1 +2023-10-24 20:46:03.487716359+00:00,1 +2023-10-24 20:46:03.604112574+00:00,1 +2023-10-24 20:46:03.722382118+00:00,1 +2023-10-24 20:46:03.838012387+00:00,1 +2023-10-24 20:46:03.953220413+00:00,1 +2023-10-24 20:46:04.070099380+00:00,1 +2023-10-24 20:46:04.186002965+00:00,1 +2023-10-24 20:46:04.302406070+00:00,1 +2023-10-24 20:46:04.418608940+00:00,1 +2023-10-24 20:46:04.535241393+00:00,1 +2023-10-24 20:46:04.653280206+00:00,1 +2023-10-24 20:46:04.769689981+00:00,1 +2023-10-24 20:46:04.885680312+00:00,1 +2023-10-24 20:46:05.002547855+00:00,1 +2023-10-24 20:46:05.118908462+00:00,1 +2023-10-24 20:46:05.234923885+00:00,1 +2023-10-24 20:46:05.350599226+00:00,1 +2023-10-24 20:46:05.467242989+00:00,1 +2023-10-24 20:46:05.583877056+00:00,1 +2023-10-24 20:46:05.699492698+00:00,1 +2023-10-24 20:46:05.814946113+00:00,1 +2023-10-24 20:46:05.931250376+00:00,1 +2023-10-24 20:46:06.047167999+00:00,1 +2023-10-24 20:46:06.163487028+00:00,1 +2023-10-24 20:46:06.279470272+00:00,1 +2023-10-24 20:46:06.395813076+00:00,1 +2023-10-24 20:46:06.511129952+00:00,1 +2023-10-24 20:46:06.626663280+00:00,1 +2023-10-24 20:46:06.741898207+00:00,1 +2023-10-24 20:46:06.857992292+00:00,1 +2023-10-24 20:46:06.974462657+00:00,1 +2023-10-24 20:46:07.089405482+00:00,1 +2023-10-24 20:46:07.205060441+00:00,1 +2023-10-24 20:46:07.320353246+00:00,1 +2023-10-24 20:46:07.436546825+00:00,1 +2023-10-24 20:46:07.553330978+00:00,1 +2023-10-24 20:46:07.668545396+00:00,1 +2023-10-24 20:46:07.783919876+00:00,1 +2023-10-24 20:46:07.900434510+00:00,1 +2023-10-24 20:46:08.016811887+00:00,1 +2023-10-24 20:46:08.132703481+00:00,1 +2023-10-24 20:46:08.248776877+00:00,1 +2023-10-24 20:46:08.365073969+00:00,1 +2023-10-24 20:46:08.480835461+00:00,1 +2023-10-24 20:46:08.597184469+00:00,1 +2023-10-24 20:46:08.712812663+00:00,1 +2023-10-24 20:46:08.828974549+00:00,1 +2023-10-24 20:46:08.945290570+00:00,1 +2023-10-24 20:46:09.061123500+00:00,1 +2023-10-24 20:46:09.176745978+00:00,1 +2023-10-24 20:46:09.292345225+00:00,1 +2023-10-24 20:46:09.408041395+00:00,1 +2023-10-24 20:46:09.523144023+00:00,1 +2023-10-24 20:46:09.639692697+00:00,1 +2023-10-24 20:46:09.756115623+00:00,1 +2023-10-24 20:46:09.873314027+00:00,1 +2023-10-24 20:46:09.990482678+00:00,1 +2023-10-24 20:46:10.106268467+00:00,1 +2023-10-24 20:46:10.222471202+00:00,1 +2023-10-24 20:46:10.337624681+00:00,1 +2023-10-24 20:46:10.452978918+00:00,1 +2023-10-24 20:46:10.569406350+00:00,1 +2023-10-24 20:46:10.685363798+00:00,1 +2023-10-24 20:46:10.801303283+00:00,1 +2023-10-24 20:46:10.917406123+00:00,1 +2023-10-24 20:46:11.033684459+00:00,1 +2023-10-24 20:46:11.149384670+00:00,1 +2023-10-24 20:46:11.264499040+00:00,1 +2023-10-24 20:46:11.380878492+00:00,1 +2023-10-24 20:46:11.497332151+00:00,1 +2023-10-24 20:46:11.615072143+00:00,1 +2023-10-24 20:46:11.731222705+00:00,1 +2023-10-24 20:46:11.846264976+00:00,1 +2023-10-24 20:46:11.961390543+00:00,1 +2023-10-24 20:46:12.078054799+00:00,1 +2023-10-24 20:46:12.193944945+00:00,1 +2023-10-24 20:46:12.309629780+00:00,1 +2023-10-24 20:46:12.425723449+00:00,1 +2023-10-24 20:46:12.541163908+00:00,1 +2023-10-24 20:46:12.657413956+00:00,1 +2023-10-24 20:46:12.774007672+00:00,1 +2023-10-24 20:46:12.890248020+00:00,1 +2023-10-24 20:46:13.005745040+00:00,1 +2023-10-24 20:46:13.121531951+00:00,1 +2023-10-24 20:46:13.236997265+00:00,1 +2023-10-24 20:46:13.353152159+00:00,1 +2023-10-24 20:46:13.468418470+00:00,1 +2023-10-24 20:46:13.584448592+00:00,1 +2023-10-24 20:46:13.699199672+00:00,1 +2023-10-24 20:46:13.815698081+00:00,1 +2023-10-24 20:46:13.932006678+00:00,1 +2023-10-24 20:46:14.047951255+00:00,1 +2023-10-24 20:46:14.163387558+00:00,1 +2023-10-24 20:46:14.280117440+00:00,1 +2023-10-24 20:46:14.396338561+00:00,1 +2023-10-24 20:46:14.512286116+00:00,1 +2023-10-24 20:46:14.627667412+00:00,1 +2023-10-24 20:46:14.743476795+00:00,1 +2023-10-24 20:46:14.858477123+00:00,1 +2023-10-24 20:46:14.973797211+00:00,1 +2023-10-24 20:46:15.089896798+00:00,1 +2023-10-24 20:46:15.205692445+00:00,1 +2023-10-24 20:46:15.321308572+00:00,1 +2023-10-24 20:46:15.436736854+00:00,1 +2023-10-24 20:46:15.552605816+00:00,1 +2023-10-24 20:46:15.668531082+00:00,1 +2023-10-24 20:46:15.783957726+00:00,1 +2023-10-24 20:46:15.899391139+00:00,1 +2023-10-24 20:46:16.014828950+00:00,1 +2023-10-24 20:46:16.131220481+00:00,1 +2023-10-24 20:46:16.247020298+00:00,1 +2023-10-24 20:46:16.363104022+00:00,1 +2023-10-24 20:46:16.478200335+00:00,1 +2023-10-24 20:46:16.593370073+00:00,1 +2023-10-24 20:46:16.709310696+00:00,1 +2023-10-24 20:46:16.825090313+00:00,1 +2023-10-24 20:46:16.942157027+00:00,1 +2023-10-24 20:46:17.057287121+00:00,1 +2023-10-24 20:46:17.173127573+00:00,1 +2023-10-24 20:46:17.290379851+00:00,1 +2023-10-24 20:46:17.406267028+00:00,1 +2023-10-24 20:46:17.522214781+00:00,1 +2023-10-24 20:46:17.637929431+00:00,1 +2023-10-24 20:46:17.753613582+00:00,1 +2023-10-24 20:46:17.869503409+00:00,1 +2023-10-24 20:46:17.985531526+00:00,1 +2023-10-24 20:46:18.101718903+00:00,1 +2023-10-24 20:46:18.217218121+00:00,1 +2023-10-24 20:46:18.333426164+00:00,1 +2023-10-24 20:46:18.448532582+00:00,1 +2023-10-24 20:46:18.564079251+00:00,1 +2023-10-24 20:46:18.680235110+00:00,1 +2023-10-24 20:46:18.795962945+00:00,1 +2023-10-24 20:46:18.912059998+00:00,1 +2023-10-24 20:46:19.027601151+00:00,1 +2023-10-24 20:46:19.143426160+00:00,1 +2023-10-24 20:46:19.259064376+00:00,1 +2023-10-24 20:46:19.374366472+00:00,1 +2023-10-24 20:46:19.489359014+00:00,1 +2023-10-24 20:46:19.604844079+00:00,1 +2023-10-24 20:46:19.719749114+00:00,1 +2023-10-24 20:46:19.836415653+00:00,1 +2023-10-24 20:46:19.951278311+00:00,1 +2023-10-24 20:46:20.066690512+00:00,1 +2023-10-24 20:46:20.182072487+00:00,1 +2023-10-24 20:46:20.297712780+00:00,1 +2023-10-24 20:46:20.413438265+00:00,1 +2023-10-24 20:46:20.528754123+00:00,1 +2023-10-24 20:46:20.644608023+00:00,1 +2023-10-24 20:46:20.761050421+00:00,1 +2023-10-24 20:46:20.877033805+00:00,1 +2023-10-24 20:46:20.992929666+00:00,1 +2023-10-24 20:46:21.110387220+00:00,1 +2023-10-24 20:46:21.225891626+00:00,1 +2023-10-24 20:46:21.341365806+00:00,1 +2023-10-24 20:46:21.458078227+00:00,1 +2023-10-24 20:46:21.573930428+00:00,1 +2023-10-24 20:46:21.691187683+00:00,1 +2023-10-24 20:46:21.806916534+00:00,1 +2023-10-24 20:46:21.923891593+00:00,1 +2023-10-24 20:46:22.039243762+00:00,1 +2023-10-24 20:46:22.155703189+00:00,1 +2023-10-24 20:46:22.271877501+00:00,1 +2023-10-24 20:46:22.388131619+00:00,1 +2023-10-24 20:46:22.503376853+00:00,1 +2023-10-24 20:46:22.623524690+00:00,1 +2023-10-24 20:46:22.739058220+00:00,1 +2023-10-24 20:46:22.854284621+00:00,1 +2023-10-24 20:46:22.970774475+00:00,1 +2023-10-24 20:46:23.086863109+00:00,1 +2023-10-24 20:46:23.204503138+00:00,1 +2023-10-24 20:46:23.320351767+00:00,1 +2023-10-24 20:46:23.435821192+00:00,1 +2023-10-24 20:46:23.551599359+00:00,1 +2023-10-24 20:46:23.667501833+00:00,1 +2023-10-24 20:46:23.782928623+00:00,1 +2023-10-24 20:46:23.898906869+00:00,1 +2023-10-24 20:46:24.014898155+00:00,1 +2023-10-24 20:46:24.130596400+00:00,1 +2023-10-24 20:46:24.246649688+00:00,1 +2023-10-24 20:46:24.363055846+00:00,1 +2023-10-24 20:46:24.478720803+00:00,1 +2023-10-24 20:46:24.593751539+00:00,1 +2023-10-24 20:46:24.708972504+00:00,1 +2023-10-24 20:46:24.825710893+00:00,1 +2023-10-24 20:46:24.941462857+00:00,1 +2023-10-24 20:46:25.057488122+00:00,1 +2023-10-24 20:46:25.172848771+00:00,1 +2023-10-24 20:46:25.288907823+00:00,1 +2023-10-24 20:46:25.404845241+00:00,1 +2023-10-24 20:46:25.520682570+00:00,1 +2023-10-24 20:46:25.636655855+00:00,1 +2023-10-24 20:46:25.752376582+00:00,1 +2023-10-24 20:46:25.868203133+00:00,1 +2023-10-24 20:46:25.984355392+00:00,1 +2023-10-24 20:46:26.100301565+00:00,1 +2023-10-24 20:46:26.216714791+00:00,1 +2023-10-24 20:46:26.332115725+00:00,1 +2023-10-24 20:46:26.447712207+00:00,1 +2023-10-24 20:46:26.562843081+00:00,1 +2023-10-24 20:46:26.679363438+00:00,1 +2023-10-24 20:46:26.794951730+00:00,1 +2023-10-24 20:46:26.911525380+00:00,1 +2023-10-24 20:46:27.027668615+00:00,1 +2023-10-24 20:46:27.143323063+00:00,1 +2023-10-24 20:46:27.259096710+00:00,1 +2023-10-24 20:46:27.375766798+00:00,1 +2023-10-24 20:46:27.492174014+00:00,1 +2023-10-24 20:46:27.609773297+00:00,1 +2023-10-24 20:46:27.725608316+00:00,1 +2023-10-24 20:46:27.841139857+00:00,1 +2023-10-24 20:46:27.957248510+00:00,1 +2023-10-24 20:46:28.073150841+00:00,1 +2023-10-24 20:46:28.188103111+00:00,1 +2023-10-24 20:46:28.303122947+00:00,1 +2023-10-24 20:46:28.418693745+00:00,1 +2023-10-24 20:46:28.534472354+00:00,1 +2023-10-24 20:46:28.650413005+00:00,1 +2023-10-24 20:46:28.765668042+00:00,1 +2023-10-24 20:46:28.881010236+00:00,1 +2023-10-24 20:46:28.997453503+00:00,1 +2023-10-24 20:46:29.112920525+00:00,1 +2023-10-24 20:46:29.228837397+00:00,1 +2023-10-24 20:46:29.344570827+00:00,1 +2023-10-24 20:46:29.460779554+00:00,1 +2023-10-24 20:46:29.575913478+00:00,1 +2023-10-24 20:46:29.692488729+00:00,1 +2023-10-24 20:46:29.808157339+00:00,1 +2023-10-24 20:46:29.924099857+00:00,1 +2023-10-24 20:46:30.040169151+00:00,1 +2023-10-24 20:46:30.156924555+00:00,1 +2023-10-24 20:46:30.272937454+00:00,1 +2023-10-24 20:46:30.390201935+00:00,1 +2023-10-24 20:46:30.506072570+00:00,1 +2023-10-24 20:46:30.621878996+00:00,1 +2023-10-24 20:46:30.738532063+00:00,1 +2023-10-24 20:46:30.854506079+00:00,1 +2023-10-24 20:46:30.971800061+00:00,1 +2023-10-24 20:46:31.088310052+00:00,1 +2023-10-24 20:46:31.204787526+00:00,1 +2023-10-24 20:46:31.320499113+00:00,1 +2023-10-24 20:46:31.436226559+00:00,1 +2023-10-24 20:46:31.552686413+00:00,1 +2023-10-24 20:46:31.668675217+00:00,1 +2023-10-24 20:46:31.784169774+00:00,1 +2023-10-24 20:46:31.900154935+00:00,1 +2023-10-24 20:46:32.016134557+00:00,1 +2023-10-24 20:46:32.131483795+00:00,1 +2023-10-24 20:46:32.246677538+00:00,1 +2023-10-24 20:46:32.362002500+00:00,1 +2023-10-24 20:46:32.477725100+00:00,1 +2023-10-24 20:46:32.592652365+00:00,1 +2023-10-24 20:46:32.708121698+00:00,1 +2023-10-24 20:46:32.824086470+00:00,1 +2023-10-24 20:46:32.940666712+00:00,1 +2023-10-24 20:46:33.056752786+00:00,1 +2023-10-24 20:46:33.173089751+00:00,1 +2023-10-24 20:46:33.289163173+00:00,1 +2023-10-24 20:46:33.405245623+00:00,1 +2023-10-24 20:46:33.520567444+00:00,1 +2023-10-24 20:46:33.636403086+00:00,1 +2023-10-24 20:46:33.751699994+00:00,1 +2023-10-24 20:46:33.867533409+00:00,1 +2023-10-24 20:46:33.983760503+00:00,1 +2023-10-24 20:46:34.099351695+00:00,1 +2023-10-24 20:46:34.215148339+00:00,1 +2023-10-24 20:46:34.330812461+00:00,1 +2023-10-24 20:46:34.446703972+00:00,1 +2023-10-24 20:46:34.562273343+00:00,1 +2023-10-24 20:46:34.677983661+00:00,1 +2023-10-24 20:46:34.792788585+00:00,1 +2023-10-24 20:46:34.909006919+00:00,1 +2023-10-24 20:46:35.025390848+00:00,1 +2023-10-24 20:46:35.141272869+00:00,1 +2023-10-24 20:46:35.257346297+00:00,1 +2023-10-24 20:46:35.373371687+00:00,1 +2023-10-24 20:46:35.488921424+00:00,1 +2023-10-24 20:46:35.605369384+00:00,1 +2023-10-24 20:46:35.721723624+00:00,1 +2023-10-24 20:46:35.837629538+00:00,1 +2023-10-24 20:46:35.954475620+00:00,1 +2023-10-24 20:46:36.070483276+00:00,1 +2023-10-24 20:46:36.186307879+00:00,1 +2023-10-24 20:46:36.301754825+00:00,1 +2023-10-24 20:46:36.417290343+00:00,1 +2023-10-24 20:46:36.533260837+00:00,1 +2023-10-24 20:46:36.650469142+00:00,1 +2023-10-24 20:46:36.766590867+00:00,1 +2023-10-24 20:46:36.882285151+00:00,1 +2023-10-24 20:46:36.997894603+00:00,1 +2023-10-24 20:46:37.113266456+00:00,1 +2023-10-24 20:46:37.229011771+00:00,1 +2023-10-24 20:46:37.344751950+00:00,1 +2023-10-24 20:46:37.460107045+00:00,1 +2023-10-24 20:46:37.575539148+00:00,1 +2023-10-24 20:46:37.692067092+00:00,1 +2023-10-24 20:46:37.808090225+00:00,1 +2023-10-24 20:46:37.924342844+00:00,1 +2023-10-24 20:46:38.040612508+00:00,1 +2023-10-24 20:46:38.156327951+00:00,1 +2023-10-24 20:46:38.272533128+00:00,1 +2023-10-24 20:46:38.388644042+00:00,1 +2023-10-24 20:46:38.504843251+00:00,1 +2023-10-24 20:46:38.621259601+00:00,1 +2023-10-24 20:46:38.737270705+00:00,1 +2023-10-24 20:46:38.853395417+00:00,1 +2023-10-24 20:46:38.968871305+00:00,1 +2023-10-24 20:46:39.084884808+00:00,1 +2023-10-24 20:46:39.200610330+00:00,1 +2023-10-24 20:46:39.315888500+00:00,1 +2023-10-24 20:46:39.431835244+00:00,1 +2023-10-24 20:46:39.547115190+00:00,1 +2023-10-24 20:46:39.663120047+00:00,1 +2023-10-24 20:46:39.779279481+00:00,1 +2023-10-24 20:46:39.895214966+00:00,1 +2023-10-24 20:46:40.011783285+00:00,1 +2023-10-24 20:46:40.127901352+00:00,1 +2023-10-24 20:46:40.244262193+00:00,1 +2023-10-24 20:46:40.360364081+00:00,1 +2023-10-24 20:46:40.476909925+00:00,1 +2023-10-24 20:46:40.592770161+00:00,1 +2023-10-24 20:46:40.708997547+00:00,1 +2023-10-24 20:46:40.825290337+00:00,1 +2023-10-24 20:46:40.942278546+00:00,1 +2023-10-24 20:46:41.058330807+00:00,1 +2023-10-24 20:46:41.176150477+00:00,1 +2023-10-24 20:46:41.291873338+00:00,1 +2023-10-24 20:46:41.407417031+00:00,1 +2023-10-24 20:46:41.523692038+00:00,1 +2023-10-24 20:46:41.639269509+00:00,1 +2023-10-24 20:46:41.754785347+00:00,1 +2023-10-24 20:46:41.870695732+00:00,1 +2023-10-24 20:46:41.986384320+00:00,1 +2023-10-24 20:46:42.104034320+00:00,1 +2023-10-24 20:46:42.221081698+00:00,1 +2023-10-24 20:46:42.337565581+00:00,1 +2023-10-24 20:46:42.453407169+00:00,1 +2023-10-24 20:46:42.568854953+00:00,1 +2023-10-24 20:46:42.685341259+00:00,1 +2023-10-24 20:46:42.801059694+00:00,1 +2023-10-24 20:46:42.916862240+00:00,1 +2023-10-24 20:46:43.032791313+00:00,1 +2023-10-24 20:46:43.148604226+00:00,1 +2023-10-24 20:46:43.263704598+00:00,1 +2023-10-24 20:46:43.379194624+00:00,1 +2023-10-24 20:46:43.495049945+00:00,1 +2023-10-24 20:46:43.610654615+00:00,1 +2023-10-24 20:46:43.726289024+00:00,1 +2023-10-24 20:46:43.841685353+00:00,1 +2023-10-24 20:46:43.958175958+00:00,1 +2023-10-24 20:46:44.073373538+00:00,1 +2023-10-24 20:46:44.189294657+00:00,1 +2023-10-24 20:46:44.306881560+00:00,1 +2023-10-24 20:46:44.423171414+00:00,1 +2023-10-24 20:46:44.540518361+00:00,1 +2023-10-24 20:46:44.657306946+00:00,1 +2023-10-24 20:46:44.774213974+00:00,1 +2023-10-24 20:46:44.890879492+00:00,1 +2023-10-24 20:46:45.007313273+00:00,1 +2023-10-24 20:46:45.124219401+00:00,1 +2023-10-24 20:46:45.239682877+00:00,1 +2023-10-24 20:46:45.355913374+00:00,1 +2023-10-24 20:46:45.471357198+00:00,1 +2023-10-24 20:46:45.587172768+00:00,1 +2023-10-24 20:46:45.702545417+00:00,1 +2023-10-24 20:46:45.818952675+00:00,1 +2023-10-24 20:46:45.934565611+00:00,1 +2023-10-24 20:46:46.052024132+00:00,1 +2023-10-24 20:46:46.167553094+00:00,1 +2023-10-24 20:46:46.283215536+00:00,1 +2023-10-24 20:46:46.399422875+00:00,1 +2023-10-24 20:46:46.515829711+00:00,1 +2023-10-24 20:46:46.631896954+00:00,1 +2023-10-24 20:46:46.748159455+00:00,1 +2023-10-24 20:46:46.864721006+00:00,1 +2023-10-24 20:46:46.980443342+00:00,1 +2023-10-24 20:46:47.095891554+00:00,1 +2023-10-24 20:46:47.211546731+00:00,1 +2023-10-24 20:46:47.327561575+00:00,1 +2023-10-24 20:46:47.442938130+00:00,1 +2023-10-24 20:46:47.558269347+00:00,1 +2023-10-24 20:46:47.675906905+00:00,1 +2023-10-24 20:46:47.791286854+00:00,1 +2023-10-24 20:46:47.907366246+00:00,1 +2023-10-24 20:46:48.022655492+00:00,1 +2023-10-24 20:46:48.138483670+00:00,1 +2023-10-24 20:46:48.253593811+00:00,1 +2023-10-24 20:46:48.369910709+00:00,1 +2023-10-24 20:46:48.485920743+00:00,1 +2023-10-24 20:46:48.601934138+00:00,1 +2023-10-24 20:46:48.719241827+00:00,1 +2023-10-24 20:46:48.836188788+00:00,1 +2023-10-24 20:46:48.951522761+00:00,1 +2023-10-24 20:46:49.067037000+00:00,1 +2023-10-24 20:46:49.183073372+00:00,1 +2023-10-24 20:46:49.299049866+00:00,1 +2023-10-24 20:46:49.415149972+00:00,1 +2023-10-24 20:46:49.530329212+00:00,1 +2023-10-24 20:46:49.645991343+00:00,1 +2023-10-24 20:46:49.762080524+00:00,1 +2023-10-24 20:46:49.877698018+00:00,1 +2023-10-24 20:46:49.993803727+00:00,1 +2023-10-24 20:46:50.109952231+00:00,1 +2023-10-24 20:46:50.225627222+00:00,1 +2023-10-24 20:46:50.341487633+00:00,1 +2023-10-24 20:46:50.459084031+00:00,1 +2023-10-24 20:46:50.574526894+00:00,1 +2023-10-24 20:46:50.691288191+00:00,1 +2023-10-24 20:46:50.806763322+00:00,1 +2023-10-24 20:46:50.922651306+00:00,1 +2023-10-24 20:46:51.037666513+00:00,1 +2023-10-24 20:46:51.152585363+00:00,1 +2023-10-24 20:46:51.267380418+00:00,1 +2023-10-24 20:46:51.382630347+00:00,1 +2023-10-24 20:46:51.499351615+00:00,1 +2023-10-24 20:46:51.615745280+00:00,1 +2023-10-24 20:46:51.731245227+00:00,1 +2023-10-24 20:46:51.846687453+00:00,1 +2023-10-24 20:46:51.962427426+00:00,1 +2023-10-24 20:46:52.078237760+00:00,1 +2023-10-24 20:46:52.194039287+00:00,1 +2023-10-24 20:46:52.310501112+00:00,1 +2023-10-24 20:46:52.426728876+00:00,1 +2023-10-24 20:46:52.542273116+00:00,1 +2023-10-24 20:46:52.658346145+00:00,1 +2023-10-24 20:46:52.773529812+00:00,1 +2023-10-24 20:46:52.889027760+00:00,1 +2023-10-24 20:46:53.004877376+00:00,1 +2023-10-24 20:46:53.120497425+00:00,1 +2023-10-24 20:46:53.236629159+00:00,1 +2023-10-24 20:46:53.352775888+00:00,1 +2023-10-24 20:46:53.468196650+00:00,1 +2023-10-24 20:46:53.584028163+00:00,1 +2023-10-24 20:46:53.700351803+00:00,1 +2023-10-24 20:46:53.816501062+00:00,1 +2023-10-24 20:46:53.932511896+00:00,1 +2023-10-24 20:46:54.048181113+00:00,1 +2023-10-24 20:46:54.164688375+00:00,1 +2023-10-24 20:46:54.281002936+00:00,1 +2023-10-24 20:46:54.396671846+00:00,1 +2023-10-24 20:46:54.512547153+00:00,1 +2023-10-24 20:46:54.629109180+00:00,1 +2023-10-24 20:46:54.744042251+00:00,1 +2023-10-24 20:46:54.859852535+00:00,1 +2023-10-24 20:46:54.974926199+00:00,1 +2023-10-24 20:46:55.090937198+00:00,1 +2023-10-24 20:46:55.206688611+00:00,1 +2023-10-24 20:46:55.322760857+00:00,1 +2023-10-24 20:46:55.438343455+00:00,1 +2023-10-24 20:46:55.554075402+00:00,1 +2023-10-24 20:46:55.669777311+00:00,1 +2023-10-24 20:46:55.785223558+00:00,1 +2023-10-24 20:46:55.901296408+00:00,1 +2023-10-24 20:46:56.018388614+00:00,1 +2023-10-24 20:46:56.134251558+00:00,1 +2023-10-24 20:46:56.250898781+00:00,1 +2023-10-24 20:46:56.367194745+00:00,1 +2023-10-24 20:46:56.484073751+00:00,1 +2023-10-24 20:46:56.599775002+00:00,1 +2023-10-24 20:46:56.716599635+00:00,1 +2023-10-24 20:46:56.832799716+00:00,1 +2023-10-24 20:46:56.948139447+00:00,1 +2023-10-24 20:46:57.063328497+00:00,1 +2023-10-24 20:46:57.179718696+00:00,1 +2023-10-24 20:46:57.295650961+00:00,1 +2023-10-24 20:46:57.411658295+00:00,1 +2023-10-24 20:46:57.528196931+00:00,1 +2023-10-24 20:46:57.644712854+00:00,1 +2023-10-24 20:46:57.760585359+00:00,1 +2023-10-24 20:46:57.876214959+00:00,1 +2023-10-24 20:46:57.991528287+00:00,1 +2023-10-24 20:46:58.107157087+00:00,1 +2023-10-24 20:46:58.223335804+00:00,1 +2023-10-24 20:46:58.338378302+00:00,1 +2023-10-24 20:46:58.454365594+00:00,1 +2023-10-24 20:46:58.570528893+00:00,1 +2023-10-24 20:46:58.686412522+00:00,1 +2023-10-24 20:46:58.802884028+00:00,1 +2023-10-24 20:46:58.918770995+00:00,1 +2023-10-24 20:46:59.034604121+00:00,1 +2023-10-24 20:46:59.150519906+00:00,1 +2023-10-24 20:46:59.266420803+00:00,1 +2023-10-24 20:46:59.381490390+00:00,1 +2023-10-24 20:46:59.497544994+00:00,1 +2023-10-24 20:46:59.614247339+00:00,1 +2023-10-24 20:46:59.730398224+00:00,1 +2023-10-24 20:46:59.845765490+00:00,1 +2023-10-24 20:46:59.960891292+00:00,1 +2023-10-24 20:47:00.076105103+00:00,1 +2023-10-24 20:47:00.191901283+00:00,1 +2023-10-24 20:47:00.308389055+00:00,1 +2023-10-24 20:47:00.423458599+00:00,1 +2023-10-24 20:47:00.539374832+00:00,1 +2023-10-24 20:47:00.654901271+00:00,1 +2023-10-24 20:47:00.771075392+00:00,1 +2023-10-24 20:47:00.886680184+00:00,1 +2023-10-24 20:47:01.002370372+00:00,1 +2023-10-24 20:47:01.118258797+00:00,1 +2023-10-24 20:47:01.234008192+00:00,1 +2023-10-24 20:47:01.349811784+00:00,1 +2023-10-24 20:47:01.465701370+00:00,1 +2023-10-24 20:47:01.582983556+00:00,1 +2023-10-24 20:47:01.700358955+00:00,1 +2023-10-24 20:47:01.816189407+00:00,1 +2023-10-24 20:47:01.931930219+00:00,1 +2023-10-24 20:47:02.047409303+00:00,1 +2023-10-24 20:47:02.163514614+00:00,1 +2023-10-24 20:47:02.279779026+00:00,1 +2023-10-24 20:47:02.396023012+00:00,1 +2023-10-24 20:47:02.511248699+00:00,1 +2023-10-24 20:47:02.626904419+00:00,1 +2023-10-24 20:47:02.742860249+00:00,1 +2023-10-24 20:47:02.858377152+00:00,1 +2023-10-24 20:47:02.973663093+00:00,1 +2023-10-24 20:47:03.090555236+00:00,1 +2023-10-24 20:47:03.205839294+00:00,1 +2023-10-24 20:47:03.321446900+00:00,1 +2023-10-24 20:47:03.437344561+00:00,1 +2023-10-24 20:47:03.553177597+00:00,1 +2023-10-24 20:47:03.668786807+00:00,1 +2023-10-24 20:47:03.784373414+00:00,1 +2023-10-24 20:47:03.899963588+00:00,1 +2023-10-24 20:47:04.016351733+00:00,1 +2023-10-24 20:47:04.132683968+00:00,1 +2023-10-24 20:47:04.248473789+00:00,1 +2023-10-24 20:47:04.363818206+00:00,1 +2023-10-24 20:47:04.479750081+00:00,1 +2023-10-24 20:47:04.597649626+00:00,1 +2023-10-24 20:47:04.713761874+00:00,1 +2023-10-24 20:47:04.829467472+00:00,1 +2023-10-24 20:47:04.945513861+00:00,1 +2023-10-24 20:47:05.061569858+00:00,1 +2023-10-24 20:47:05.177360009+00:00,1 +2023-10-24 20:47:05.293335550+00:00,1 +2023-10-24 20:47:05.409555140+00:00,1 +2023-10-24 20:47:05.524909136+00:00,1 +2023-10-24 20:47:05.640556049+00:00,1 +2023-10-24 20:47:05.756274037+00:00,1 +2023-10-24 20:47:05.871771571+00:00,1 +2023-10-24 20:47:05.988239823+00:00,1 +2023-10-24 20:47:06.104710637+00:00,1 +2023-10-24 20:47:06.221347813+00:00,1 +2023-10-24 20:47:06.337352189+00:00,1 +2023-10-24 20:47:06.453948019+00:00,1 +2023-10-24 20:47:06.569563033+00:00,1 +2023-10-24 20:47:06.685229999+00:00,1 +2023-10-24 20:47:06.801392320+00:00,1 +2023-10-24 20:47:06.917473224+00:00,1 +2023-10-24 20:47:07.033384968+00:00,1 +2023-10-24 20:47:07.149848229+00:00,1 +2023-10-24 20:47:07.264836549+00:00,1 +2023-10-24 20:47:07.380853613+00:00,1 +2023-10-24 20:47:07.496477058+00:00,1 +2023-10-24 20:47:07.613977793+00:00,1 +2023-10-24 20:47:07.730223274+00:00,1 +2023-10-24 20:47:07.845792395+00:00,1 +2023-10-24 20:47:07.961362374+00:00,1 +2023-10-24 20:47:08.077111281+00:00,1 +2023-10-24 20:47:08.192813652+00:00,1 +2023-10-24 20:47:08.308774212+00:00,1 +2023-10-24 20:47:08.424268560+00:00,1 +2023-10-24 20:47:08.540098830+00:00,1 +2023-10-24 20:47:08.656610693+00:00,1 +2023-10-24 20:47:08.772627856+00:00,1 +2023-10-24 20:47:08.888482660+00:00,1 +2023-10-24 20:47:09.005100841+00:00,1 +2023-10-24 20:47:09.121832685+00:00,1 +2023-10-24 20:47:09.238997474+00:00,1 +2023-10-24 20:47:09.355040197+00:00,1 +2023-10-24 20:47:09.470898206+00:00,1 +2023-10-24 20:47:09.586357628+00:00,1 +2023-10-24 20:47:09.701691992+00:00,1 +2023-10-24 20:47:09.817570594+00:00,1 +2023-10-24 20:47:09.933021420+00:00,1 +2023-10-24 20:47:10.048571184+00:00,1 +2023-10-24 20:47:10.165278366+00:00,1 +2023-10-24 20:47:10.281625937+00:00,1 +2023-10-24 20:47:10.398837993+00:00,1 +2023-10-24 20:47:10.514888637+00:00,1 +2023-10-24 20:47:10.631250651+00:00,1 +2023-10-24 20:47:10.747258979+00:00,1 +2023-10-24 20:47:10.863657793+00:00,1 +2023-10-24 20:47:10.979638959+00:00,1 +2023-10-24 20:47:11.095336248+00:00,1 +2023-10-24 20:47:11.210640211+00:00,1 +2023-10-24 20:47:11.326811702+00:00,1 +2023-10-24 20:47:11.442770281+00:00,1 +2023-10-24 20:47:11.557902208+00:00,1 +2023-10-24 20:47:11.673275646+00:00,1 +2023-10-24 20:47:11.788744060+00:00,1 +2023-10-24 20:47:11.904413999+00:00,1 +2023-10-24 20:47:12.020301479+00:00,1 +2023-10-24 20:47:12.137038840+00:00,1 +2023-10-24 20:47:12.252965286+00:00,1 +2023-10-24 20:47:12.368720609+00:00,1 +2023-10-24 20:47:12.484723033+00:00,1 +2023-10-24 20:47:12.600484306+00:00,1 +2023-10-24 20:47:12.716225049+00:00,1 +2023-10-24 20:47:12.832933256+00:00,1 +2023-10-24 20:47:12.949209363+00:00,1 +2023-10-24 20:47:13.064502918+00:00,1 +2023-10-24 20:47:13.180873488+00:00,1 +2023-10-24 20:47:13.297261733+00:00,1 +2023-10-24 20:47:13.413608269+00:00,1 +2023-10-24 20:47:13.530037953+00:00,1 +2023-10-24 20:47:13.646036242+00:00,1 +2023-10-24 20:47:13.762212254+00:00,1 +2023-10-24 20:47:13.877368499+00:00,1 +2023-10-24 20:47:13.994099840+00:00,1 +2023-10-24 20:47:14.110516614+00:00,1 +2023-10-24 20:47:14.227206180+00:00,1 +2023-10-24 20:47:14.343059577+00:00,1 +2023-10-24 20:47:14.458697384+00:00,1 +2023-10-24 20:47:14.574222431+00:00,1 +2023-10-24 20:47:14.692248180+00:00,1 +2023-10-24 20:47:14.809169850+00:00,1 +2023-10-24 20:47:14.924798966+00:00,1 +2023-10-24 20:47:15.040126219+00:00,1 +2023-10-24 20:47:15.155613098+00:00,1 +2023-10-24 20:47:15.271333707+00:00,1 +2023-10-24 20:47:15.388632651+00:00,1 +2023-10-24 20:47:15.503913068+00:00,1 +2023-10-24 20:47:15.619985964+00:00,1 +2023-10-24 20:47:15.736412103+00:00,1 +2023-10-24 20:47:15.852555504+00:00,1 +2023-10-24 20:47:15.968040764+00:00,1 +2023-10-24 20:47:16.083432953+00:00,1 +2023-10-24 20:47:16.199852875+00:00,1 +2023-10-24 20:47:16.315248870+00:00,1 +2023-10-24 20:47:16.431864630+00:00,1 +2023-10-24 20:47:16.548482722+00:00,1 +2023-10-24 20:47:16.664551410+00:00,1 +2023-10-24 20:47:16.780313718+00:00,1 +2023-10-24 20:47:16.896268665+00:00,1 +2023-10-24 20:47:17.012008271+00:00,1 +2023-10-24 20:47:17.127946154+00:00,1 +2023-10-24 20:47:17.244128334+00:00,1 +2023-10-24 20:47:17.361632374+00:00,1 +2023-10-24 20:47:17.477792630+00:00,1 +2023-10-24 20:47:17.593597785+00:00,1 +2023-10-24 20:47:17.710166410+00:00,1 +2023-10-24 20:47:17.826454739+00:00,1 +2023-10-24 20:47:17.942308186+00:00,1 +2023-10-24 20:47:18.058779354+00:00,1 +2023-10-24 20:47:18.175009293+00:00,1 +2023-10-24 20:47:18.290436327+00:00,1 +2023-10-24 20:47:18.405368798+00:00,1 +2023-10-24 20:47:18.520941837+00:00,1 +2023-10-24 20:47:18.637159179+00:00,1 +2023-10-24 20:47:18.753593048+00:00,1 +2023-10-24 20:47:18.870158402+00:00,1 +2023-10-24 20:47:18.985959398+00:00,1 +2023-10-24 20:47:19.102022840+00:00,1 +2023-10-24 20:47:19.217231805+00:00,1 +2023-10-24 20:47:19.332534712+00:00,1 +2023-10-24 20:47:19.448394841+00:00,1 +2023-10-24 20:47:19.565096880+00:00,1 +2023-10-24 20:47:19.680979875+00:00,1 +2023-10-24 20:47:19.797006299+00:00,1 +2023-10-24 20:47:19.912609993+00:00,1 +2023-10-24 20:47:20.028450300+00:00,1 +2023-10-24 20:47:20.143990912+00:00,1 +2023-10-24 20:47:20.259758590+00:00,1 +2023-10-24 20:47:20.376318483+00:00,1 +2023-10-24 20:47:20.491928650+00:00,1 +2023-10-24 20:47:20.608322951+00:00,1 +2023-10-24 20:47:20.724304932+00:00,1 +2023-10-24 20:47:20.840925624+00:00,1 +2023-10-24 20:47:20.956447465+00:00,1 +2023-10-24 20:47:21.072825277+00:00,1 +2023-10-24 20:47:21.187963573+00:00,1 +2023-10-24 20:47:21.304088192+00:00,1 +2023-10-24 20:47:21.419479301+00:00,1 +2023-10-24 20:47:21.535478724+00:00,1 +2023-10-24 20:47:21.650911306+00:00,1 +2023-10-24 20:47:21.766304109+00:00,1 +2023-10-24 20:47:21.882392744+00:00,1 +2023-10-24 20:47:21.997689816+00:00,1 +2023-10-24 20:47:22.112681570+00:00,1 +2023-10-24 20:47:22.228627504+00:00,1 +2023-10-24 20:47:22.345146961+00:00,1 +2023-10-24 20:47:22.460776249+00:00,1 +2023-10-24 20:47:22.576551255+00:00,1 +2023-10-24 20:47:22.692221706+00:00,1 +2023-10-24 20:47:22.807897789+00:00,1 +2023-10-24 20:47:22.923387931+00:00,1 +2023-10-24 20:47:23.040238587+00:00,1 +2023-10-24 20:47:23.156246627+00:00,1 +2023-10-24 20:47:23.272025194+00:00,1 +2023-10-24 20:47:23.387637657+00:00,1 +2023-10-24 20:47:23.502934958+00:00,1 +2023-10-24 20:47:23.618675689+00:00,1 +2023-10-24 20:47:23.733912228+00:00,1 +2023-10-24 20:47:23.849625993+00:00,1 +2023-10-24 20:47:23.966497498+00:00,1 +2023-10-24 20:47:24.083784473+00:00,1 +2023-10-24 20:47:24.200216821+00:00,1 +2023-10-24 20:47:24.316546037+00:00,1 +2023-10-24 20:47:24.432540566+00:00,1 +2023-10-24 20:47:24.548299929+00:00,1 +2023-10-24 20:47:24.663467978+00:00,1 +2023-10-24 20:47:24.779638009+00:00,1 +2023-10-24 20:47:24.895316033+00:00,1 +2023-10-24 20:47:25.012021377+00:00,1 +2023-10-24 20:47:25.128060219+00:00,1 +2023-10-24 20:47:25.243923466+00:00,1 +2023-10-24 20:47:25.359831326+00:00,1 +2023-10-24 20:47:25.476388712+00:00,1 +2023-10-24 20:47:25.591914462+00:00,1 +2023-10-24 20:47:25.708308992+00:00,1 +2023-10-24 20:47:25.825227639+00:00,1 +2023-10-24 20:47:25.940443369+00:00,1 +2023-10-24 20:47:26.056229990+00:00,1 +2023-10-24 20:47:26.173234685+00:00,1 +2023-10-24 20:47:26.289606581+00:00,1 +2023-10-24 20:47:26.405212251+00:00,1 +2023-10-24 20:47:26.521119436+00:00,1 +2023-10-24 20:47:26.638227201+00:00,1 +2023-10-24 20:47:26.754056700+00:00,1 +2023-10-24 20:47:26.869448601+00:00,1 +2023-10-24 20:47:26.985338748+00:00,1 +2023-10-24 20:47:27.101769161+00:00,1 +2023-10-24 20:47:27.218255210+00:00,1 +2023-10-24 20:47:27.333705249+00:00,1 +2023-10-24 20:47:27.449823744+00:00,1 +2023-10-24 20:47:27.566088414+00:00,1 +2023-10-24 20:47:27.682406892+00:00,1 +2023-10-24 20:47:27.797975052+00:00,1 +2023-10-24 20:47:27.914379225+00:00,1 +2023-10-24 20:47:28.031031826+00:00,1 +2023-10-24 20:47:28.146790859+00:00,1 +2023-10-24 20:47:28.262629933+00:00,1 +2023-10-24 20:47:28.378151105+00:00,1 +2023-10-24 20:47:28.494355499+00:00,1 +2023-10-24 20:47:28.610119225+00:00,1 +2023-10-24 20:47:28.725221414+00:00,1 +2023-10-24 20:47:28.840585988+00:00,1 +2023-10-24 20:47:28.956205058+00:00,1 +2023-10-24 20:47:29.072434116+00:00,1 +2023-10-24 20:47:29.188185112+00:00,1 +2023-10-24 20:47:29.303438637+00:00,1 +2023-10-24 20:47:29.419300228+00:00,1 +2023-10-24 20:47:29.534523316+00:00,1 +2023-10-24 20:47:29.650035919+00:00,1 +2023-10-24 20:47:29.765212661+00:00,1 +2023-10-24 20:47:29.881076847+00:00,1 +2023-10-24 20:47:29.997309747+00:00,1 +2023-10-24 20:47:30.113162171+00:00,1 +2023-10-24 20:47:30.229077542+00:00,1 +2023-10-24 20:47:30.346256269+00:00,1 +2023-10-24 20:47:30.462690329+00:00,1 +2023-10-24 20:47:30.579871918+00:00,1 +2023-10-24 20:47:30.695653336+00:00,1 +2023-10-24 20:47:30.811868665+00:00,1 +2023-10-24 20:47:30.928324879+00:00,1 +2023-10-24 20:47:31.044736188+00:00,1 +2023-10-24 20:47:31.160640433+00:00,1 +2023-10-24 20:47:31.274796363+00:00,1 +2023-10-24 20:47:31.389228364+00:00,1 +2023-10-24 20:47:31.504436934+00:00,1 +2023-10-24 20:47:31.619491100+00:00,1 +2023-10-24 20:47:31.733920505+00:00,1 +2023-10-24 20:47:32.909235879+00:00,1 +2023-10-24 20:47:33.024214776+00:00,1 +2023-10-24 20:47:33.138473132+00:00,1 +2023-10-24 20:47:33.252365298+00:00,1 +2023-10-24 20:47:33.367474251+00:00,1 +2023-10-24 20:47:33.482679487+00:00,1 +2023-10-24 20:47:33.597704104+00:00,1 +2023-10-24 20:47:33.712042940+00:00,1 +2023-10-24 20:47:33.827064795+00:00,1 +2023-10-24 20:47:33.941462497+00:00,1 +2023-10-24 20:47:34.056654483+00:00,1 +2023-10-24 20:47:34.171695309+00:00,1 +2023-10-24 20:48:06.128739663+00:00,1 +2023-10-24 20:48:06.246581110+00:00,1 +2023-10-24 20:48:06.361710499+00:00,1 +2023-10-24 20:48:06.477386046+00:00,1 +2023-10-24 20:48:06.592682321+00:00,1 +2023-10-24 20:48:06.707550393+00:00,1 +2023-10-24 20:48:06.822395354+00:00,1 +2023-10-24 20:48:06.938740184+00:00,1 +2023-10-24 20:48:07.055463857+00:00,1 +2023-10-24 20:48:07.170943281+00:00,1 +2023-10-24 20:48:07.286879725+00:00,1 +2023-10-24 20:48:07.402335443+00:00,1 +2023-10-24 20:48:07.518776193+00:00,1 +2023-10-24 20:48:07.634359499+00:00,1 +2023-10-24 20:48:07.750091693+00:00,1 +2023-10-24 20:48:07.866659951+00:00,1 +2023-10-24 20:48:07.981573210+00:00,1 +2023-10-24 20:48:08.097456846+00:00,1 +2023-10-24 20:48:08.212802836+00:00,1 +2023-10-24 20:48:08.328777692+00:00,1 +2023-10-24 20:48:08.444395300+00:00,1 +2023-10-24 20:48:08.561401554+00:00,1 +2023-10-24 20:48:08.677417939+00:00,1 +2023-10-24 20:48:08.793009107+00:00,1 +2023-10-24 20:48:08.909771986+00:00,1 +2023-10-24 20:48:09.025855659+00:00,1 +2023-10-24 20:48:09.142804851+00:00,1 +2023-10-24 20:48:09.259648001+00:00,1 +2023-10-24 20:48:09.376853472+00:00,1 +2023-10-24 20:48:09.493977415+00:00,1 +2023-10-24 20:48:09.610059883+00:00,1 +2023-10-24 20:48:09.727102999+00:00,1 +2023-10-24 20:48:09.842659307+00:00,1 +2023-10-24 20:48:09.958915414+00:00,1 +2023-10-24 20:48:10.076045356+00:00,1 +2023-10-24 20:48:10.192317738+00:00,1 +2023-10-24 20:48:10.307639159+00:00,1 +2023-10-24 20:48:10.423439896+00:00,1 +2023-10-24 20:48:10.539689156+00:00,1 +2023-10-24 20:48:10.656548349+00:00,1 +2023-10-24 20:48:10.771381541+00:00,1 +2023-10-24 20:48:10.887728839+00:00,1 +2023-10-24 20:48:11.004970564+00:00,1 +2023-10-24 20:48:11.121437242+00:00,1 +2023-10-24 20:48:11.237125323+00:00,1 +2023-10-24 20:48:11.352393236+00:00,1 +2023-10-24 20:48:11.466912314+00:00,1 +2023-10-24 20:48:11.582484102+00:00,1 +2023-10-24 20:48:11.698977248+00:00,1 +2023-10-24 20:48:11.815642929+00:00,1 +2023-10-24 20:48:11.932273138+00:00,1 +2023-10-24 20:48:12.049361959+00:00,1 +2023-10-24 20:48:12.165257708+00:00,1 +2023-10-24 20:48:12.281320720+00:00,1 +2023-10-24 20:48:12.396578769+00:00,1 +2023-10-24 20:48:12.511675757+00:00,1 +2023-10-24 20:48:12.627904211+00:00,1 +2023-10-24 20:48:12.743736914+00:00,1 +2023-10-24 20:48:12.859079907+00:00,1 +2023-10-24 20:48:12.975944764+00:00,1 +2023-10-24 20:48:13.091348249+00:00,1 +2023-10-24 20:48:13.207815977+00:00,1 +2023-10-24 20:48:13.322864524+00:00,1 +2023-10-24 20:48:13.438339364+00:00,1 +2023-10-24 20:48:13.554018794+00:00,1 +2023-10-24 20:48:13.669238424+00:00,1 +2023-10-24 20:48:13.785979095+00:00,1 +2023-10-24 20:48:13.902027158+00:00,1 +2023-10-24 20:48:14.018533366+00:00,1 +2023-10-24 20:48:14.134522900+00:00,1 +2023-10-24 20:48:14.249692303+00:00,1 +2023-10-24 20:48:14.365096540+00:00,1 +2023-10-24 20:48:14.481151095+00:00,1 +2023-10-24 20:48:14.597336331+00:00,1 +2023-10-24 20:48:14.712900207+00:00,1 +2023-10-24 20:48:14.829235467+00:00,1 +2023-10-24 20:48:14.945431891+00:00,1 +2023-10-24 20:48:15.061427465+00:00,1 +2023-10-24 20:48:15.178078601+00:00,1 +2023-10-24 20:48:15.293570270+00:00,1 +2023-10-24 20:48:15.409892905+00:00,1 +2023-10-24 20:48:15.526142572+00:00,1 +2023-10-24 20:48:15.641958307+00:00,1 +2023-10-24 20:48:15.757840296+00:00,1 +2023-10-24 20:48:15.873757228+00:00,1 +2023-10-24 20:48:15.990399976+00:00,1 +2023-10-24 20:48:16.106132236+00:00,1 +2023-10-24 20:48:16.222663305+00:00,1 +2023-10-24 20:48:16.338899927+00:00,1 +2023-10-24 20:48:16.454469135+00:00,1 +2023-10-24 20:48:16.569764504+00:00,1 +2023-10-24 20:48:16.686784978+00:00,1 +2023-10-24 20:48:16.802400650+00:00,1 +2023-10-24 20:48:16.919305974+00:00,1 +2023-10-24 20:48:17.034688345+00:00,1 +2023-10-24 20:48:17.150845569+00:00,1 +2023-10-24 20:48:17.268301754+00:00,1 +2023-10-24 20:48:17.384755819+00:00,1 +2023-10-24 20:48:17.500592452+00:00,1 +2023-10-24 20:48:17.615994208+00:00,1 +2023-10-24 20:48:17.731698737+00:00,1 +2023-10-24 20:48:17.847906791+00:00,1 +2023-10-24 20:48:17.964091150+00:00,1 +2023-10-24 20:48:18.081368412+00:00,1 +2023-10-24 20:48:18.196468241+00:00,1 +2023-10-24 20:48:18.312918114+00:00,1 +2023-10-24 20:48:18.428333455+00:00,1 +2023-10-24 20:48:18.543973747+00:00,1 +2023-10-24 20:48:18.659219255+00:00,1 +2023-10-24 20:48:18.775413615+00:00,1 +2023-10-24 20:48:18.890680846+00:00,1 +2023-10-24 20:48:19.005927812+00:00,1 +2023-10-24 20:48:19.122667969+00:00,1 +2023-10-24 20:48:19.237452648+00:00,1 +2023-10-24 20:48:19.352423815+00:00,1 +2023-10-24 20:48:19.467921011+00:00,1 +2023-10-24 20:48:19.582783072+00:00,1 +2023-10-24 20:48:19.696901409+00:00,1 +2023-10-24 20:48:19.811228334+00:00,1 +2023-10-24 20:48:19.926361043+00:00,1 +2023-10-24 20:48:20.041203639+00:00,1 +2023-10-24 20:48:20.155541936+00:00,1 +2023-10-24 20:48:20.269517945+00:00,1 +2023-10-24 20:48:20.383896864+00:00,1 +2023-10-24 20:48:20.498453163+00:00,1 +2023-10-24 20:48:20.613536221+00:00,1 +2023-10-24 20:48:20.729186603+00:00,1 +2023-10-24 20:48:20.844057381+00:00,1 +2023-10-24 20:48:20.959090653+00:00,1 +2023-10-24 20:48:21.074667133+00:00,1 +2023-10-24 20:48:21.190080581+00:00,1 +2023-10-24 20:48:21.305086694+00:00,1 +2023-10-24 20:48:21.419427989+00:00,1 +2023-10-24 20:48:21.534505449+00:00,1 +2023-10-24 20:48:21.649159476+00:00,1 +2023-10-24 20:48:21.763918723+00:00,1 +2023-10-24 20:48:21.879085337+00:00,1 +2023-10-24 20:48:21.994867789+00:00,1 diff --git a/tests/zero-downtime-scaling/results/1.0.0/10-node/gradual-up-http.png b/tests/zero-downtime-scaling/results/1.0.0/10-node/gradual-up-http.png new file mode 100644 index 0000000000000000000000000000000000000000..e11b7d1ae42f34b9361912033f1c4576f46c02aa GIT binary patch literal 6466 zcmeHLX;c&0w%(#NwlrWjlY)?3`?doL_@osiLO`LRRfvip2#76;1Ij!LBuEP~2`ZWv zfgr6$Kqd!32mu=;Gy%e37=(mL#sC3A7&6sM`rh^4dhgvI_uu>DTBoW`?K*p(Z-3{j zQ*}(@#xg)agQNeyuP*ePoSL8O+PoE+Ju7Jz`% z0s^zMwHDCW2$oldkXkelENThJo^ymG01E;j1O$(Ke5R)-b+s65llp0CX&D(A+1c57 zd3oXS_(zW(y?*_=wzjspxp{PSRNBSd-o0tFX@xywbB=R^2r|pMiIlxBo}ERyLE0N! zke=~dleQWpo&M`SY4c`3DHMQ~_*M?cAR^G(j;P&7@WlKTPFc%)9hBgp z_&5}vgqIGG?+7nW1KAm#oq?yWkn0XP9zZ$=S?3|s6EZHsZA5|+>8PO9`FQ+x(PRag@{`a77wAfAvh5NlOZ4l{8GU; z4X)nil7HrGGrUI-h;V=abRf9zhU~9qb55Uxe=?5^OfpH`3YXYNY*xLeo7+}~2 z`W>+ABj_<lNig&#h__x-Sy1?U0L9Ri(U(Ebcsqp)clG$uiP3RI`zyBXNX1?72A zS^&jG*uaPN%kb4I$O~Yt2;{^vt(h4sy^$*TYd>3;Kmg@>*|FxqE@f>1^@*RYEKh}H z&ajm35K)<0i|JH*92E1Qg#)54oG@NDCiNnut!ncu!N{HH2#kGqJt*_n-f7 z=?J{T%rUQ~kc#pODrY=Y7C-wGBneK<=o~_Rq2;5H2(MeaABW}Ji+jc-LuT0l`0~_` zEe7|GyuK2%CF9bOx0lZo)t$OiXXn!us-iwqES~CQY1(2WEMrGzP-hCir2U&v$XU8W;7tPSx{9#12ut`Mw&BB37mOQfFIu%p&53?mi8z+MX_qf!_>t-I)U{ zVMIA=RS=*W#NRUR71MugkILP|k-P3#2mbeiB*Fz=9Gw><;K zsQZj@9mTP_9+p0ujn&oo-kFluOv!%3v_A3CKIs4%i!NuQo-i1e0bgIH9*jn5FHc-# zhqnn1G=|sAbjt@^;(CN&+{~Y^Ny7M^MVkxT?vD|1w9^sF;>kCW>fRB2a`iR4ftkle zSi}}7%QEs7WX zuXUJ5I&T%nDq0B?G;jY4B~RAm-wTVr;nF;7{bV3+123Wc$sgC0#TZ-iAR-tb25IXh zE7s#ZK3#vY2UTG);fdY5xc!c}xlJf&beKzcg7u%i6vyti$-asEMx5Y@HCm)voOlXv zzf-d=?wuSNA|nMe9ulPftAAL=M}|^I$VSIVXBI}+7UO3-KUo&8vu^iZS`Ay_jq5Mc zqBI)^URA}O`8qMTdzv>t#~(!ogaIQfjn@Sx_xnp$Hq9)J1>$st7`+2($9GwtSj>nr z*QL5gs&(-jsPCecSqq+Th$KX!f=3<}ZTznm(G`@BGmE86y3HxE=xcIPYCAiCUs05L zPhIZn4?7aizNXXaR4O~?&Rv~Ps3Ax6bLTm7F3}Ppw!-4q5(cdfC#bAs_jGk`zsGh# z8%yK24b+V8TKDnDakXkMQfhq7bU{_WN%iXveT~LooA}Z38tj<5)p}v%K~XqAGcIbh z;fmQ?p4_9*AMrwx8~RX>ln9PjSaQhABGP)SdHqysr`&-7KUVt`Zve$}-2JUAckxQ5 zNTj%H)oLXqQu{*0-azV5cXd(KLP^_}d&kBkWOXPO0ljXqvAir?%xY|w&DWP}e zWXQf$zwq!+5e)O4LhRi4k+U~if9j(b9(1Z3HtEtwC%&m7y1E#T42b6yeiw-yJqbJO z@9#8{__4y+=gC)zKh?ptSpB9lnyy@AIw9xQcl5BQT zBkS5!!iozc>(#&+bS$+2k?3M&=febcNE7L`P1DWJW;1CX z?;Mser_%!YI7h7LK(c016~i*)@qc(|v@PxMJ;-77d_VfIu7Px$#P8oJ%#uH8%zA>o zLq8vpmmjsF*YyOO6{q0jj&=7blCc{0i9U08p;r|tiygkPlrC;9a3)vgPfZ^2ds*-t zTcZ*X)%U&jNR=*sMYyBW@Od)M>@T;7DH*SM_w8l8t~xAfb7QAzp&du{LjX7Eq?GkJWy?NAJ+vf zo>4N`7?qE5LElI2%P(xlpVdX0>=!-R6&4LPXM!<4tSrI=5k1{j(~?KjxTsPPGe~r(QRXHb_gI zW5+v-=R;zWi_hx_I{!Rf>V`rMrzk%4rIlOyXf*n{x--f1eN>fU!OA+>*F;oDise2< zhy>{`{8srF4{~;#{8IhG!~c^Aimg@)OHrEzsDIG(=`B{-XzS7J~<-N>$~>HXgUG5q+VZ2Z>rEpxIQ z57$*mOq6$#Lid$TTj4^nTe30j<+1c_vr|K>V#?m6j9`p3t}w%CWLVEHDz|!QkM14! z$W?JqU-dQ9C=~@wyGZIX-~X5SHHK1DuDE4ygH)x&G4~XGGj{aqdE54cvq}aTVUf8k z2JTIg3}qcfXo{Vz3Rjx+8u8HlgC>&+CZw9Eq&Y~7J-SU&xVBYgm{TLgR#5tkcEe5d z%`Ve+&ijiB2Mfnnw;yU>GjK;7&CUuYBBfoUJ;f)ecs+jD^f29*R9Q4;WIBhUFS! zZ<9>hjboFxnP-!1GP7k$F67Nl_m?a!J)jT0YZEE1Vb&S*xhYvS{d+=6iTA>}QaP+F zD_2y9=apSxGkg9BHzcl*?H5}HUnLaR7%bFFnPHh0|Icl$4va`8B-_UP+grFf=|(X8 NY;A8|hbzxT(r>YS=mReRUBzxq~H zow|9*!B$yOM-c#&_t{zh2CxhTAm_GXnXD%7S>PU71spnf#0EhSSxtI+`chU6Ktiek z0S>1c3k?lmb$$S;Mga+1O+vODC&dC_Nq~?LBJ%O+rcE+a?3Y%VosN#q_U+s4?d{K; zIYT58lai8(ii)bMtDBmdMn*}!V*LTnm-`w_YvYD9*Kn5fS43G{xFO;db_gBw>(-& zDC|uqp^&G*xytz++WXS`5)NUVebFR!AgQa9u(CuV9j_)GM@UQfu}Hcs9Y@jwkm_ng z77tR*D0|F9cei5x601F<~JF9*>I5GsN|31*aGS_Qaj zFtrNUt6^ddjB5Z(3r2Kccr6U-!hjwyQP8&zde=ku2I%@3IyXYcCirLwZJVJL4J})M zu??EG!}}f3U;=bgc)J_w%;1d$RAYdKg~~lpu@@*dP;Lulc2Ke(iVwgmdwA&x1&1K- zH+bO$InMCR707Pz^cZBhL#8LBdqdiBNIeOUd?5KW{Baf%&%uKW@VhVEy95dT5FY?> zfp9wrZUw^)Jj8^;^)UEHI9!bc5)p_bh`b8n|A4UT5E=vc8xVX8f^I`#90bIJe*#>( z2fn|fE@y$QB4U`q?2TVZn> z7=DCJ9k8(ze(r(|-LSqF*7X6333>ydI|yrsL1zTCSfDWuYbIbd8&*w$8W&WiL3sw0 z1fVE{6(U$Z5AtGIwg_^PC9PSQC>P5V{C$Ak(I5box~1p42ZkzZ0oK&*v$i@C`e>?8 z`CjIJIhzx>)oNN+FN^z;pTnSF#;M!p*fBj;DmruF@WXvxV=0*~j8Id%d;hlYzo#~z zJ00nkl2DANlWTAfV%~an$<Pbc^>!v__)Q&ojq{cI zF;$orcYNv%j9Hb%9jE>KPPUHdwco&-)=3Vw0Q zY}hZch7BQC=Raqy;;+dn=&r)VDeLQ%FH{{xC(KhBt>u0ZM_-m(9wD$f^q56L>%3my zmdjeW{xLG^0GTos{d5aEyP&6*QR$C2^E{X>X~FB^i%cJO$Q`xcqI&mMQ-M{s0_%Av z%kbBdV<N*`yl6Y>2=qF!S^ zt!~JU*~KI*5yz8p*30lF*CwM(Y~0x@xu{9bzdoGeta=BKGm^M+$i@hihiKxbvvA!=L(T?2yl0XNXkIhA^ZpiY4EstjgeT7tHUlGy0B^$m048aVi;Rs@+w~cX7)k z6s#Xx(&!h{NH;!?WA!Q3x$1|tF3yh6IkaS8QXg_p+H%4M|4j1AV#P`0%8uFd2kXxQlH;bH&zT1>0LEBA5#A$3X9eM`M4F|9j_j~MKH z_8@(uIEfWuzKC1A96j!Ipeo{vkQ;f->^~aj`5NM(Ak7BmE9$jl-`~niBQ(=%I};Hi zw=r&Ld)fHV!NA%bl*5h6g{z%})beF4{V`m@pr+HI@PhRGm%rb;QV-NM8R4y)x zh;s{Nm#>rl@}ruVNJ+IU4V%B6lZF|%JiWC$JYTOe@_DLeL&cN%9%NW<<(nW& zy(+(G);aow_$F`2>4nsEa{^zvQ}>c3BC%w?T~)KxLErm+8u7%2v=z)dnB_@cO^^J` zIp_HET+w`xT1F*O8!6dGsqUv?6|XD>>WaH!uA*+Ec*xM|a2AxT`d0kL!(SqpBN$S% z^OKz%Z>+QEiFYTwh<=NE;f_@wACKyNPtis=@igrbE;UYDFK({rzCh|jEbulBpIqs9 z4D}?W`$9c!AtbcBWAjdN_Oado4?lHVf{<3@7ys)o=Cutz#57so#;q7H)TIv3(tM?? z+-_-W3IA8jVi_h*bTN54I;!xn&d37;TI-XQ`eyAfzFNdu$t-G1GW_BtCthQdcQY$4 zK0?f*aw#6hIcUfCvo?gjo5boTEAeTbyh2(F`cWm}<7zK$Jh@Z{t-_ak?vPlS_7Jg9 zZp_Ljzb*c}@%Btkku@EHVAZvUv0I07kQ^P z506w#WMRf!>TT(f3#<+W{#HFxJpGMr;!rQ0Y^su&5E7>6%%okl#uK{Q7zN(hW>d-I zJIISxvbar)K7WmZ|4bj95F~VT#w_l-tr?qAV3pkQ2U_VF>V0mrc&}bu`J~+dU1~`S zm>oUr7@AUMCZOYv9`tuE!870P7LeO{bvcvdMn>=x)AzX!3(I8u^WI70uDw~fUR0(f z;NuG&f}K0sAAE6hwI@nkZ0>*Ls5q0(7@i^27>J-~fwvHQ9_|NUF>&u!`(58w2l{!IkmMDV|gU~o;IxyyY{ zSnYGlV#x<%^qqB*CSMIZT2+mFrlZhM>C_Cd7%QzXBSkTkG#lm)=K9eY^NMXI&K(C^ zD(?tiPTy4;ZW-(QNpQd`LVi3&{L&2-*)c0Q9}(Qu70LK8)lIC1_CQ6NNwrRuV555`axCMRvn-VOZ%YU6h@lqh zva!ykll40JrNjGg--_RO_WmnKNFNvQTeSwHU>|;LEMR zFHbz!YmZ6IQ!=QsC}oqV1O4Qf(Y`yIlgf4>rj);@h?>7-F5@H*=+Wsaq1!{46)nLp z$Q$WSCQU~@-MvgCY8lLn93AT7Oiy8MUM0U@+rt>=nnybtSe;UMS|Q@aofzq5i7h$_ zzr9po9bZ$Bn=7zJD`-9*E5$s@iTS6?j!wFbML`Pv!lSU=>th*_KAPSfZEAO8K7p%j zlpN|lW3ig4?QZOkaeW%v&-k24FqqmAI)2kj);MP@S>+u0TCA?iJHyT=q`kQGkWuCE z`BNuN^UpYYw}+G@dh+|%dKgb<58Eh2gkNE&h>E38shI>v6Jld9_of~|kF}1zthZzSlX}xh(Qsov2=e z(PKgwiZ61XZx$>jxP^1i?hvno9JKR!<#ce962?*X))o?xBv6OnmS%Z!FEoTv39{T7;t3uTPzm&1z32yBwJM z9^0m=DyFJ+oy4w8S(pdnMdhJC81DYiQ*&CuJdZWMGGmO?=|f8sy`wZDZj*uR&W%jk z?-WeP^hlXcS$Nm?N&&I6%Wt2udpIM@7 zK~jOnOv;cn;SK|pDI*n zxrbCUc$seG$AzE`TG4kJ}&!BA2A6r_Wu=0HTpH zKwxmN3O4!;Zt>5M+=Wi_pvS1_zN=kk1BZ zd*I#_r&Vz@Vv#kf!u zuQWFHH9Z=IJcq&9!4zoXrgM{zU>q-)MXN)!x_UH5UZSHt%A!4x=sA82k}fYENO~Yr zR))y+LCWeFkB5=rbb4JmQeIc~DiXn@BdF5SQaRm>0!+_`Nkxz?0O=waTMVO0Frort zRTx?VqGd3!9Db|-p#}(kgC1@8t^-|q(5Vl66mSjU>ndnp4PVwk>pEy&51);paRW4% zLH$Ok+YGhlP`wpCSU}Zw;OvBVmQY~@WoTeyfVBro_5#xeiuMD;7Tz3$!b9-d4qjm) z?+D}`gB%CQa)cL7Ky!xYr{I|jWVk^(4yYcG<_VAR@Zc=mI|r%f;f@caT!7ntkQ@L> zfp8-j5<}qnCAdm}gfO@g0hfso8wJs1AV)(~ED$e4#1#lj0K!$cbR9wxA@~LaCP6?l z_}zvJDd2Ml&Zok;dvNvv;2(i!8hB6vmkw?j;PMPkJqKqRIK2SJEO5wyW4Ul753sMm z?ll}LgoAIumI3>Vz=jEXOJENRFl<1VfmH=qzJr|{*j@z|A7E=WnAgJQI@nkbW(}~R z5sW{>`esULQ56%4t6;)8xC=yie4chK&E-vpo`gcUzv`2Z{v!IB|R6@$tM zD2>A6F<2yp1u{^ag!$8;Ff-?CRu(FSau5DB(Dq~qfa<%sW8NKORULp8x(D{{J|6Z+ z#O=SG(WbEPw0JcN75i<5+`LLP^?1XGf=1{DT8k#FnB^DhBQV`JrJNA=KL>9Ahr;T0 z9hR8fy{>;y5aa&UH|W?l4sYdXf*!?xLUd=vYhO=?E!>9Q!NFDT!NdY-O0(%7 z2MdB?bhDfezB%vtaK(wcQho7l%ZIFUr%;VIGZl}iu?dbxkBh?aUvMubna%i~_(Kww z8<$VieXksFJ~Q_-$NPfFvq8AD`|9cQmcICVc}7!pcSKJ%(E9ld66=eR;K}+_HGK;Q zDz(N_E!e7j`s=d|y;inPpWRxORffoc1h-3XF}=j>(jZZw^Q$(ry6g*A1wA6z-L$Hm zbRO-=Y`8I$`rx(y)boabOymB_x?Eg9=-2y+9aMu|zFuNiQ;iRtUnEPs|B(H5X1a6N zctks1T~p~yDP#LgB+fKBBB(PW<~Ys5wkZkeT#0uo4njgqR4wMvn7XuqyK1Fb)4?&W z_8Zl1ZPP+?v?<$J{DA7F=OdmmwbHvi`8o+7m7WocFdwOKSTp{$Jt5IDiQeb$KNC?P zDkQ&M6mcmrBp+kC=3avBLuF#}%fXt~H0!k@vm0oR8PBs$Y9Am-*q;+gX-?CyrCSax z&dkbWi|TU89ll6kkP>AfZtHB%Iyb{-N0QDZzaUIdW%YV@TfvFPTxxgb*9W+`{W{^s|_;MVqSL zO6B*}#bxd{vF2#gEf0sWF#f(X9bQw3O`?#7W~DRwhJLpdHxKNI&qGyv6-CVIpDFol zhn8Wbs>tNi>QDQE{QE}umuuxCJYrvVj#S&c%ikTvpwC7X(7t?Bb7x^R>h0PS0uDV} z=!$BbZ@T0^xN#%S(RLS`W#Yw2aQ*%A1lsNQ%g!rC2}|8$k!HStCYJ@qOtaYa*tdy` z#HW?MJG>{I>BH(y-G3q-yJc3sHh%V9K2<9MXCPY^>G{tF#p{NOFYctTo4lW9uZEtb z(aAFQH5H%L>#mc$s7;jy2?gef=QhYfEBeU3a#iQvY5d6D^hl4A-wzQ9N!m)!>+P>lI(@(@^^qm{uVHL^RzM@6;{^d?; zf`7QSs7J;(n3!y5?!n~#V)LnfAS7afBt6#B?VX)E^nxif8&sNaT4jEl=Zw-6klFqH7p4}^ zd$Ua423=4u?8J8XU@dO)a|$Vn!Mujk;j_}IuW^e`%XP(O(}avWI#pxG>y^&%8X~28 zO_!{k1A6^~|5T46(dtZKICFzsQB5iW6}L2G#v098RxY1%C>}o|G|2g$I6OAI^+VW3 zb8aB7p;^Wsk`R|XnVJ1Z)XW+;4>lXKO<|5=s7oPSZ{2nEIg8lNn^Wm$^`{;F=>%fQ z3A*FS<97S68j3_!xw|xGy0+ilin?A{Y`}P(6VEU1o_ZRoR~nB*A>D&|=;`j~`}w*= z$;yC_1^iG#_1H(JDB5lsJ6$C=(&rQ^E~4bP3Y%~Vp=Z0f_GNhnRR)EhKAU1Dq<#sC z`D`=g7gK1%)oYI^Z5Shm)(wBi()RDu&}^}hiJT6TYe-7Z_!cQ+`NhsC$NQF8%}jJc z@%1MArxW9u14mQ%B-Uu_039>Q-RGcL`SG+n$|j^eqF}l}n0nykO^SC=xuRjZo~CV{ zF@>WbwD0e__{7+7;i~RUAA}Vpn2~#Ua({CkpY&!_`e>?%f@drJStUK%Gh=02NUOXX zYE9BI81uKB1 z4<1oBnp>`ZR)5;zrxX1A7=Eq<|J91f`&5nJ>AwcqzFf|F7=B^skF~vmA|MiCvJD5aWl|S)PzjVP{XVi?}*`wPkxg@m=Ec^`VeulRHKjQix zY{qm;Taxn3H9XpUwA6ZJ^~Add>h^K-y+i%0aIx6`Yq+j9mobu=iHq{r_YE1A{DNfv zokeyk$cSVrHCStD*K&=k?<5^Hd;Yb%(un)iV)N-n>P^R^Cqy?aRo&b)9HotIq0@^C zUD5Ol)fqX(36hsuCE;B?&2`wYQf3s--R*N;on;bt*HCa-uV%!iFwQ&5xv;GrlC_b9 z0dBao`9zi1^nHjtBXnw=gG3x6m{LVJRk;}s=>{D%TJ<+j;9dCsVsd_js+L2h`3^!;p$ zf_EwZXsTq$rRwD@u{i7&Q~V#8icM!gwzn#VjSala?s6)GvA%|B1DQ{AGB4yM`cY)bo}#wSg&eWCq<$fLOVBtkZ&zn!cs=_P zk52C1?C3F7B5A9Wm@e=oKhcbHIvi=gDwF4h#ei3*Yb|}pF&BitnU%dY05IA+IsZ*$EO)pB(^}-77>|L7*S6q4jV70zAPQN zY?k+u%FvPchf^*Q2U@~Yop2FP)GknmFI8^{$k$K&i^DxOYnoKmj<0gTudPRT8u*6} z947-yp7wObJHZ@CO?JP)4~r1qhEA2#y5qFM5&lrqI%JJ#E3vr=%@I z56T~|bysbhygcW?mfY}3+8P~PU-*E_;~{HonEj3`?zQ8izw!-;1owa64|+zBsqNUd X+E&{#{*Zk06b{(f?|Zq&Bldp*ceS&) literal 0 HcmV?d00001 diff --git a/tests/zero-downtime-scaling/results/1.0.0/25-node/abrupt-down-https.csv b/tests/zero-downtime-scaling/results/1.0.0/25-node/abrupt-down-https.csv new file mode 100644 index 000000000..757d65979 --- /dev/null +++ b/tests/zero-downtime-scaling/results/1.0.0/25-node/abrupt-down-https.csv @@ -0,0 +1,397 @@ +2023-10-24 18:13:13.538207924+00:00,1 +2023-10-24 18:13:13.667721519+00:00,1 +2023-10-24 18:13:13.795923778+00:00,1 +2023-10-24 18:13:13.925460265+00:00,1 +2023-10-24 18:13:14.053826259+00:00,1 +2023-10-24 18:13:14.181299458+00:00,1 +2023-10-24 18:13:14.309671561+00:00,1 +2023-10-24 18:13:14.437530491+00:00,1 +2023-10-24 18:13:14.564411738+00:00,1 +2023-10-24 18:13:14.692129656+00:00,1 +2023-10-24 18:13:14.820701305+00:00,1 +2023-10-24 18:13:14.948665256+00:00,1 +2023-10-24 18:13:15.077152359+00:00,1 +2023-10-24 18:13:15.204877173+00:00,1 +2023-10-24 18:13:15.332607996+00:00,1 +2023-10-24 18:13:15.461913266+00:00,1 +2023-10-24 18:13:15.589188672+00:00,1 +2023-10-24 18:13:15.719109466+00:00,1 +2023-10-24 18:13:15.847989179+00:00,1 +2023-10-24 18:13:15.976256425+00:00,1 +2023-10-24 18:13:16.104059384+00:00,1 +2023-10-24 18:13:16.231820481+00:00,1 +2023-10-24 18:13:16.361081464+00:00,1 +2023-10-24 18:13:16.487921480+00:00,1 +2023-10-24 18:13:16.614756797+00:00,1 +2023-10-24 18:13:16.742406812+00:00,1 +2023-10-24 18:13:16.870573382+00:00,1 +2023-10-24 18:13:16.998665676+00:00,1 +2023-10-24 18:13:17.126728711+00:00,1 +2023-10-24 18:13:17.254906353+00:00,1 +2023-10-24 18:13:17.381979946+00:00,1 +2023-10-24 18:13:17.510505717+00:00,1 +2023-10-24 18:13:17.640461399+00:00,1 +2023-10-24 18:13:17.769145985+00:00,1 +2023-10-24 18:13:17.896863281+00:00,1 +2023-10-24 18:13:18.024631153+00:00,1 +2023-10-24 18:13:18.153048781+00:00,1 +2023-10-24 18:13:18.280258423+00:00,1 +2023-10-24 18:13:18.408491048+00:00,1 +2023-10-24 18:13:18.536779954+00:00,1 +2023-10-24 18:13:18.664126509+00:00,1 +2023-10-24 18:13:18.792518420+00:00,1 +2023-10-24 18:13:18.921151545+00:00,1 +2023-10-24 18:13:19.048815385+00:00,1 +2023-10-24 18:13:19.176941836+00:00,1 +2023-10-24 18:13:19.304924778+00:00,1 +2023-10-24 18:13:19.431747985+00:00,1 +2023-10-24 18:13:19.560692255+00:00,1 +2023-10-24 18:13:19.689537164+00:00,1 +2023-10-24 18:13:19.817887425+00:00,1 +2023-10-24 18:13:19.945594425+00:00,1 +2023-10-24 18:13:20.073943013+00:00,1 +2023-10-24 18:13:20.201144194+00:00,1 +2023-10-24 18:13:20.328890524+00:00,1 +2023-10-24 18:13:20.456962010+00:00,1 +2023-10-24 18:13:20.584679442+00:00,1 +2023-10-24 18:13:20.712342012+00:00,1 +2023-10-24 18:13:20.839631611+00:00,1 +2023-10-24 18:13:20.967679428+00:00,1 +2023-10-24 18:13:21.096261694+00:00,1 +2023-10-24 18:13:21.224937375+00:00,1 +2023-10-24 18:13:21.353288602+00:00,1 +2023-10-24 18:13:21.481056396+00:00,1 +2023-10-24 18:13:21.609902886+00:00,1 +2023-10-24 18:13:21.738877462+00:00,1 +2023-10-24 18:13:21.868282816+00:00,1 +2023-10-24 18:13:21.996325442+00:00,1 +2023-10-24 18:13:22.124153131+00:00,1 +2023-10-24 18:13:22.252223313+00:00,1 +2023-10-24 18:13:22.379994501+00:00,1 +2023-10-24 18:13:22.510793465+00:00,1 +2023-10-24 18:13:22.638476752+00:00,1 +2023-10-24 18:13:22.765690117+00:00,1 +2023-10-24 18:13:22.893297702+00:00,1 +2023-10-24 18:13:23.021557450+00:00,1 +2023-10-24 18:13:23.150332212+00:00,1 +2023-10-24 18:13:23.277922664+00:00,1 +2023-10-24 18:13:23.406581348+00:00,1 +2023-10-24 18:13:23.534985426+00:00,1 +2023-10-24 18:13:23.664739680+00:00,1 +2023-10-24 18:13:23.792569254+00:00,1 +2023-10-24 18:13:23.921129768+00:00,1 +2023-10-24 18:13:24.049476904+00:00,1 +2023-10-24 18:13:24.179487546+00:00,1 +2023-10-24 18:13:24.307769163+00:00,1 +2023-10-24 18:13:24.435483198+00:00,1 +2023-10-24 18:13:24.563056424+00:00,1 +2023-10-24 18:13:24.691707378+00:00,1 +2023-10-24 18:13:24.820141949+00:00,1 +2023-10-24 18:13:24.947893787+00:00,1 +2023-10-24 18:13:25.074945477+00:00,1 +2023-10-24 18:13:25.201450699+00:00,1 +2023-10-24 18:13:25.329029131+00:00,1 +2023-10-24 18:13:25.456215356+00:00,1 +2023-10-24 18:13:25.583955508+00:00,1 +2023-10-24 18:13:25.712403340+00:00,1 +2023-10-24 18:13:25.839333723+00:00,1 +2023-10-24 18:13:25.966772214+00:00,1 +2023-10-24 18:13:26.093361566+00:00,1 +2023-10-24 18:13:26.221749604+00:00,1 +2023-10-24 18:13:26.348985229+00:00,1 +2023-10-24 18:13:26.475735896+00:00,1 +2023-10-24 18:13:26.603498000+00:00,1 +2023-10-24 18:13:26.730863998+00:00,1 +2023-10-24 18:13:26.857577849+00:00,1 +2023-10-24 18:13:26.985271785+00:00,1 +2023-10-24 18:13:27.111987659+00:00,1 +2023-10-24 18:13:27.239941415+00:00,1 +2023-10-24 18:13:27.368354725+00:00,1 +2023-10-24 18:13:27.495566244+00:00,1 +2023-10-24 18:13:27.624689460+00:00,1 +2023-10-24 18:13:27.752871320+00:00,1 +2023-10-24 18:13:27.881684400+00:00,1 +2023-10-24 18:13:28.009680344+00:00,1 +2023-10-24 18:13:28.138014368+00:00,1 +2023-10-24 18:13:28.267054868+00:00,1 +2023-10-24 18:13:28.394369405+00:00,1 +2023-10-24 18:13:28.522508773+00:00,1 +2023-10-24 18:13:28.651565794+00:00,1 +2023-10-24 18:13:28.779751884+00:00,1 +2023-10-24 18:13:28.908184607+00:00,1 +2023-10-24 18:13:29.038172533+00:00,1 +2023-10-24 18:13:29.166025144+00:00,1 +2023-10-24 18:13:29.293698936+00:00,1 +2023-10-24 18:13:29.422887031+00:00,1 +2023-10-24 18:13:29.552358999+00:00,1 +2023-10-24 18:13:29.680599473+00:00,1 +2023-10-24 18:13:29.809113097+00:00,1 +2023-10-24 18:13:29.939540671+00:00,1 +2023-10-24 18:13:30.068918297+00:00,1 +2023-10-24 18:13:30.196802423+00:00,1 +2023-10-24 18:13:30.323458856+00:00,1 +2023-10-24 18:13:30.451961752+00:00,1 +2023-10-24 18:13:30.580427158+00:00,1 +2023-10-24 18:13:30.708574836+00:00,1 +2023-10-24 18:13:30.836734348+00:00,1 +2023-10-24 18:13:30.964372051+00:00,1 +2023-10-24 18:13:31.092646405+00:00,1 +2023-10-24 18:13:31.221372970+00:00,1 +2023-10-24 18:13:31.348664747+00:00,1 +2023-10-24 18:13:31.477717424+00:00,1 +2023-10-24 18:13:31.605143120+00:00,1 +2023-10-24 18:13:31.733416557+00:00,1 +2023-10-24 18:13:31.861141299+00:00,1 +2023-10-24 18:13:31.989647494+00:00,1 +2023-10-24 18:13:32.117905345+00:00,1 +2023-10-24 18:13:32.245510119+00:00,1 +2023-10-24 18:13:32.373308442+00:00,1 +2023-10-24 18:13:32.501415540+00:00,1 +2023-10-24 18:13:32.630354026+00:00,1 +2023-10-24 18:13:32.759271997+00:00,1 +2023-10-24 18:13:32.887167375+00:00,1 +2023-10-24 18:13:33.015159387+00:00,1 +2023-10-24 18:13:33.141911125+00:00,1 +2023-10-24 18:13:33.269726916+00:00,1 +2023-10-24 18:13:33.397792516+00:00,1 +2023-10-24 18:13:33.526089991+00:00,1 +2023-10-24 18:13:33.655283198+00:00,1 +2023-10-24 18:13:33.782595809+00:00,1 +2023-10-24 18:13:33.910950356+00:00,1 +2023-10-24 18:13:34.037418002+00:00,1 +2023-10-24 18:13:34.165298470+00:00,1 +2023-10-24 18:13:34.293063503+00:00,1 +2023-10-24 18:13:34.420666880+00:00,1 +2023-10-24 18:13:34.548901532+00:00,1 +2023-10-24 18:13:34.677854786+00:00,1 +2023-10-24 18:13:34.806436997+00:00,1 +2023-10-24 18:13:34.933752254+00:00,1 +2023-10-24 18:13:35.062418534+00:00,1 +2023-10-24 18:13:35.191292595+00:00,1 +2023-10-24 18:13:35.319148686+00:00,1 +2023-10-24 18:13:35.447915891+00:00,1 +2023-10-24 18:13:35.575886932+00:00,1 +2023-10-24 18:13:35.704286145+00:00,1 +2023-10-24 18:13:35.833467680+00:00,1 +2023-10-24 18:13:35.961589675+00:00,1 +2023-10-24 18:13:36.090019867+00:00,1 +2023-10-24 18:13:36.218415450+00:00,1 +2023-10-24 18:13:36.346596532+00:00,1 +2023-10-24 18:13:36.474777130+00:00,1 +2023-10-24 18:13:36.602592754+00:00,1 +2023-10-24 18:13:36.730519230+00:00,1 +2023-10-24 18:13:36.857501561+00:00,1 +2023-10-24 18:13:36.984266942+00:00,1 +2023-10-24 18:13:37.111968346+00:00,1 +2023-10-24 18:13:37.239941530+00:00,1 +2023-10-24 18:13:37.367755605+00:00,1 +2023-10-24 18:13:37.494817691+00:00,1 +2023-10-24 18:13:37.622221505+00:00,1 +2023-10-24 18:13:37.750869500+00:00,1 +2023-10-24 18:13:37.878919790+00:00,1 +2023-10-24 18:13:38.007313916+00:00,1 +2023-10-24 18:13:38.136156783+00:00,1 +2023-10-24 18:13:38.264823473+00:00,1 +2023-10-24 18:13:38.393101292+00:00,1 +2023-10-24 18:13:38.520394836+00:00,1 +2023-10-24 18:13:38.648674621+00:00,1 +2023-10-24 18:13:38.777325103+00:00,1 +2023-10-24 18:13:38.904768739+00:00,1 +2023-10-24 18:13:39.034278219+00:00,1 +2023-10-24 18:13:39.163707717+00:00,1 +2023-10-24 18:13:39.291830871+00:00,1 +2023-10-24 18:13:39.420008514+00:00,1 +2023-10-24 18:13:39.547541405+00:00,1 +2023-10-24 18:13:39.674785380+00:00,1 +2023-10-24 18:13:39.802123480+00:00,1 +2023-10-24 18:13:39.929258137+00:00,1 +2023-10-24 18:13:40.056625960+00:00,1 +2023-10-24 18:13:40.184021735+00:00,1 +2023-10-24 18:13:40.312722162+00:00,1 +2023-10-24 18:13:40.440158357+00:00,1 +2023-10-24 18:13:40.568386660+00:00,1 +2023-10-24 18:13:40.695975443+00:00,1 +2023-10-24 18:13:40.823801657+00:00,1 +2023-10-24 18:13:40.952552631+00:00,1 +2023-10-24 18:13:41.080149148+00:00,1 +2023-10-24 18:13:41.207806872+00:00,1 +2023-10-24 18:13:41.335885905+00:00,1 +2023-10-24 18:13:41.462832694+00:00,1 +2023-10-24 18:13:41.591173854+00:00,1 +2023-10-24 18:13:41.717744735+00:00,1 +2023-10-24 18:13:41.844458775+00:00,1 +2023-10-24 18:13:41.973011997+00:00,1 +2023-10-24 18:13:42.100190274+00:00,1 +2023-10-24 18:13:42.228630276+00:00,1 +2023-10-24 18:13:42.356350336+00:00,1 +2023-10-24 18:13:42.485018593+00:00,1 +2023-10-24 18:13:42.612178190+00:00,1 +2023-10-24 18:13:42.739110103+00:00,1 +2023-10-24 18:13:42.868534731+00:00,1 +2023-10-24 18:13:42.997746759+00:00,1 +2023-10-24 18:13:43.125522172+00:00,1 +2023-10-24 18:13:43.254548640+00:00,1 +2023-10-24 18:13:43.382777262+00:00,1 +2023-10-24 18:13:43.510613954+00:00,1 +2023-10-24 18:13:43.637592060+00:00,1 +2023-10-24 18:13:43.766120218+00:00,1 +2023-10-24 18:13:43.894481170+00:00,1 +2023-10-24 18:13:44.023393149+00:00,1 +2023-10-24 18:13:44.150533457+00:00,1 +2023-10-24 18:13:44.280868944+00:00,1 +2023-10-24 18:13:44.407997684+00:00,1 +2023-10-24 18:13:44.536226905+00:00,1 +2023-10-24 18:13:44.663729756+00:00,1 +2023-10-24 18:13:44.791449582+00:00,1 +2023-10-24 18:13:44.920126869+00:00,1 +2023-10-24 18:13:45.049548061+00:00,1 +2023-10-24 18:13:45.178227369+00:00,1 +2023-10-24 18:13:45.306102363+00:00,1 +2023-10-24 18:13:45.434953334+00:00,1 +2023-10-24 18:13:45.562967668+00:00,1 +2023-10-24 18:13:45.689742848+00:00,1 +2023-10-24 18:13:45.817559319+00:00,1 +2023-10-24 18:13:45.944850141+00:00,1 +2023-10-24 18:13:46.073174854+00:00,1 +2023-10-24 18:13:46.201323091+00:00,1 +2023-10-24 18:13:46.328360996+00:00,1 +2023-10-24 18:13:46.456735735+00:00,1 +2023-10-24 18:13:46.585739771+00:00,1 +2023-10-24 18:13:46.713652530+00:00,1 +2023-10-24 18:13:46.841978139+00:00,1 +2023-10-24 18:13:46.970759185+00:00,1 +2023-10-24 18:13:47.098536055+00:00,1 +2023-10-24 18:13:47.229363928+00:00,1 +2023-10-24 18:13:47.358536430+00:00,1 +2023-10-24 18:13:47.486886851+00:00,1 +2023-10-24 18:13:47.615353813+00:00,1 +2023-10-24 18:13:47.744688044+00:00,1 +2023-10-24 18:13:47.873126705+00:00,1 +2023-10-24 18:13:48.001288786+00:00,1 +2023-10-24 18:13:48.131987017+00:00,1 +2023-10-24 18:13:48.260980701+00:00,1 +2023-10-24 18:13:48.389169846+00:00,1 +2023-10-24 18:13:48.517158883+00:00,1 +2023-10-24 18:13:48.644570576+00:00,1 +2023-10-24 18:13:48.774284417+00:00,1 +2023-10-24 18:13:48.902417061+00:00,1 +2023-10-24 18:13:49.032061949+00:00,1 +2023-10-24 18:13:49.160182924+00:00,1 +2023-10-24 18:13:49.288972507+00:00,1 +2023-10-24 18:13:49.417075245+00:00,1 +2023-10-24 18:13:49.547351435+00:00,1 +2023-10-24 18:13:49.675576740+00:00,1 +2023-10-24 18:13:49.805571865+00:00,1 +2023-10-24 18:13:49.934866676+00:00,1 +2023-10-24 18:13:50.062810693+00:00,1 +2023-10-24 18:13:50.192033089+00:00,1 +2023-10-24 18:13:50.322086545+00:00,1 +2023-10-24 18:13:50.451326867+00:00,1 +2023-10-24 18:13:50.580265013+00:00,1 +2023-10-24 18:13:50.708735106+00:00,1 +2023-10-24 18:13:50.840217699+00:00,1 +2023-10-24 18:13:50.969592500+00:00,1 +2023-10-24 18:13:51.097503494+00:00,1 +2023-10-24 18:13:51.225021025+00:00,1 +2023-10-24 18:13:51.353811613+00:00,1 +2023-10-24 18:13:51.481152080+00:00,1 +2023-10-24 18:13:51.610202021+00:00,1 +2023-10-24 18:13:51.738406777+00:00,1 +2023-10-24 18:13:51.869937697+00:00,1 +2023-10-24 18:13:52.000366753+00:00,1 +2023-10-24 18:13:52.142028211+00:00,1 +2023-10-24 18:13:52.271266622+00:00,1 +2023-10-24 18:13:52.398910583+00:00,1 +2023-10-24 18:13:52.526404324+00:00,1 +2023-10-24 18:13:52.654979191+00:00,1 +2023-10-24 18:13:52.782965435+00:00,1 +2023-10-24 18:13:52.911709591+00:00,1 +2023-10-24 18:13:53.040047319+00:00,1 +2023-10-24 18:13:53.168389415+00:00,1 +2023-10-24 18:13:53.296076024+00:00,1 +2023-10-24 18:13:53.423137484+00:00,1 +2023-10-24 18:13:53.553049026+00:00,1 +2023-10-24 18:13:53.681378486+00:00,1 +2023-10-24 18:13:53.809396361+00:00,1 +2023-10-24 18:13:53.937454272+00:00,1 +2023-10-24 18:13:54.065349319+00:00,1 +2023-10-24 18:13:54.194347160+00:00,1 +2023-10-24 18:13:54.323843994+00:00,1 +2023-10-24 18:13:54.450783364+00:00,1 +2023-10-24 18:13:54.579366415+00:00,1 +2023-10-24 18:13:54.707321346+00:00,1 +2023-10-24 18:13:54.837115099+00:00,1 +2023-10-24 18:13:54.965163356+00:00,1 +2023-10-24 18:13:55.093658523+00:00,1 +2023-10-24 18:13:55.222465863+00:00,1 +2023-10-24 18:13:55.351927705+00:00,1 +2023-10-24 18:13:55.480002133+00:00,1 +2023-10-24 18:13:55.612786649+00:00,1 +2023-10-24 18:13:55.739735898+00:00,1 +2023-10-24 18:13:55.868738578+00:00,1 +2023-10-24 18:13:55.997394884+00:00,1 +2023-10-24 18:13:56.127613143+00:00,1 +2023-10-24 18:13:56.255753873+00:00,1 +2023-10-24 18:13:56.384093610+00:00,1 +2023-10-24 18:13:56.512220601+00:00,1 +2023-10-24 18:13:56.641289955+00:00,1 +2023-10-24 18:13:56.768470387+00:00,1 +2023-10-24 18:13:56.896348057+00:00,1 +2023-10-24 18:13:57.024588450+00:00,1 +2023-10-24 18:13:57.153782805+00:00,1 +2023-10-24 18:13:57.284638552+00:00,1 +2023-10-24 18:13:57.414088856+00:00,1 +2023-10-24 18:13:57.542564174+00:00,1 +2023-10-24 18:13:57.669897183+00:00,1 +2023-10-24 18:13:57.797948078+00:00,1 +2023-10-24 18:13:57.928763288+00:00,1 +2023-10-24 18:13:58.057478067+00:00,1 +2023-10-24 18:13:58.185873999+00:00,1 +2023-10-24 18:13:58.314595180+00:00,1 +2023-10-24 18:13:58.442278566+00:00,1 +2023-10-24 18:13:58.570288636+00:00,1 +2023-10-24 18:13:58.698740193+00:00,1 +2023-10-24 18:13:58.827319342+00:00,1 +2023-10-24 18:13:58.957077461+00:00,1 +2023-10-24 18:13:59.088483295+00:00,1 +2023-10-24 18:13:59.216502686+00:00,1 +2023-10-24 18:13:59.344736662+00:00,1 +2023-10-24 18:13:59.474515194+00:00,1 +2023-10-24 18:13:59.603462784+00:00,1 +2023-10-24 18:13:59.733834476+00:00,1 +2023-10-24 18:13:59.861129799+00:00,1 +2023-10-24 18:13:59.989653624+00:00,1 +2023-10-24 18:14:00.119419099+00:00,1 +2023-10-24 18:14:00.247581484+00:00,1 +2023-10-24 18:14:00.375626167+00:00,1 +2023-10-24 18:14:00.506421013+00:00,1 +2023-10-24 18:14:00.634182576+00:00,1 +2023-10-24 18:14:00.762208990+00:00,1 +2023-10-24 18:14:00.891264568+00:00,1 +2023-10-24 18:14:01.020318463+00:00,1 +2023-10-24 18:14:01.147764636+00:00,1 +2023-10-24 18:14:01.277291300+00:00,1 +2023-10-24 18:14:01.407585810+00:00,1 +2023-10-24 18:14:01.536625792+00:00,1 +2023-10-24 18:14:01.665118340+00:00,1 +2023-10-24 18:14:01.793432384+00:00,1 +2023-10-24 18:14:01.921734070+00:00,1 +2023-10-24 18:14:02.052128694+00:00,1 +2023-10-24 18:14:02.180696348+00:00,1 +2023-10-24 18:14:02.309006003+00:00,1 +2023-10-24 18:14:02.437593745+00:00,1 +2023-10-24 18:14:02.565186384+00:00,1 +2023-10-24 18:14:02.694663583+00:00,1 +2023-10-24 18:14:02.822882304+00:00,1 +2023-10-24 18:14:02.950531257+00:00,1 +2023-10-24 18:14:03.078126461+00:00,1 +2023-10-24 18:14:03.206803301+00:00,1 +2023-10-24 18:14:03.335515382+00:00,1 +2023-10-24 18:14:03.463688244+00:00,1 +2023-10-24 18:14:03.588935956+00:00,1 +2023-10-24 18:14:03.714341552+00:00,1 +2023-10-24 18:14:03.839235005+00:00,1 +2023-10-24 18:14:03.963898615+00:00,1 +2023-10-24 18:14:04.088780199+00:00,1 +2023-10-24 18:14:04.213359691+00:00,1 +2023-10-24 18:14:04.337907783+00:00,1 diff --git a/tests/zero-downtime-scaling/results/1.0.0/25-node/abrupt-down-https.png b/tests/zero-downtime-scaling/results/1.0.0/25-node/abrupt-down-https.png new file mode 100644 index 0000000000000000000000000000000000000000..f96674c2ca625621a42a68e200eb4ad8ce46a00d GIT binary patch literal 6262 zcmeHLX;f3mw%&~wQ6r#&prRp9+nGTbLXkEf&-%rhB1ktqDBR~QIIJJ zcxgdEKm(GHfJnn-7Nmnfh@c@dWMBvh3E{lZeeZqit#yCAfA5cH)j3t?tFwpt_CB?$ z>W<^dW2!4QtN;Mj<90_*11!M+D7h?KqCkp&3q7O&!12eQY!L)eAUQcXi&ZTE5vc_P z`21QdG&OIWDr#$MTU%Q>9FD?-(8ws6pIqEKB6JphLJ&SH9--8g^7#l86xQH^;z`&{ z+H62N`{z4p{rV7vD*$bY?c=cMA_DF25zSu_f}@Z~L~KDy3>|$OEgZR5Q|VuI3ndZ_ z{$r6GMe#y%LXg^8L@^$u zwyiQ-hzN5iZFNXpTkXqO1e=3k=ybZmJGm0fF9E4C%q<1+G7znR85B&Z!lW7qRsnAf zOlZK^S{T&=?mFOXfG;{Qya|TTz{UV;GYo8jzOC?a8!&f3&o20|8@lwN(-1oLK${V? z8bh-wG?_u;erPxV?=0Z071UY-0}C~WfOZ(FZK3KIRNBGoAK=vqD7S}~4p8a{#i!wg z6BIhbZ)c&v1)lv3`L2-b4mqAc_JXYQkm&>IzL0hiQZK=yE0E$3zXU>ZFeHV*{ZP0U z26rRiHVzUa;bt`4h=KSxAQFH;gt&N!xdG8PAuh zhu2_N3CF6ywi*u8;7|=<8DL!tR&T-L9UN$Y{f%JO1g6bk+zLi*u%`nIJ3+q-c7K3f zJ+Olb+djh9KG-qB9=fVKg-YwqWJ=(3N1F&}E@gp`rMP~9?Pc7j3Dx??L3_j~Kq$J&1kE(vf5GdCOZ+H`L?0$}n4wB<5KDS>OSeXChZA{{ZR$zm+r6t-?TN^Q-)wyNNZggJNIm~oT z1BWXMz5aoO5~K2~X*TKjd3E*m)V}*Na@f`ADuru*aQ6FF#tPjzsi-g4;-hZAYLV>x z!{yzm9Pi{|@W>2xfnKTC!P+10fnjwkhsyuvRlO%AqS|L5>XofHWL%sPSRik)@1*)< zW+;am*I6Fv^X*LtkMN}Pr_3)CF3<18Piy(panTmmmghgazTlT*%URxM_c)u%19gMs zEq=0NNvJ5rm{bklA&eSk6g-TKkaD5d{q9)bC98a-&K}|Lx&Sq8UQPc#n;n4H@qz2LJ)VA661^wKd4DBYxAh)6}^xjr+Zid}wi@67fG^488qX;bPajemCNIco027XQumy?A4Iv}DrywY&wf4{+RV zb85z_F%!LDnVIEn>Hm*Z4G*NI;&sB$%kSn2%tvN~-E&&i(`BeH9rVQi0XZCoAnwi8 zNbbJu_V3N~PUg9@GsPEJJJy8R zl2!kNEzQ>1$AW6ZG|! zB_cZ@#vIzeIHs}7(m>AdSFL)cm7bWHu;nSJBg+&d&|gT!m$<{xMy+qJTPPGWR95#1$OFvaF6CJn>caLv z$LQpS5iGHNsPy57e{%n=`Bx5p<3V#Lo!v~?MJgO!b}BzFj{1n3>$#CzzVygLH8JnZ z;~rrQZlUPZ!u%UKTgNP*hF4=B+$UAPHQ!=bH&{T4=6%u+CQIs6sjhRqudqu+kegF> z#mgeP8N_nE=>SVFxv(`W71d3ycW>}5I29Y^MA_RM%(x=O1q5@91D&+%+r2$7 zwqc{O74sFNsmISfAYHyX)U3QYjaMA|bT_F%Y1CkRIP~f6%_>_y?``6|rD3Pi!U*Hi zQZ~MA#&Eqw%#APx>UpF16i15wzOTjmgoQ5So_gQDo?wRGpGK;mOYPr_7$@u7hllps zMHr8?D5aMKWC$xgP2?7o%24-nuM7B=dZfv`!f27x3n!+DT&IYlgEM2IsM@!8A0hlB z`%KALdijp#s}3Osq{0lk${RfIA*#L-%@GPt{Z2?T+8FI-IN^aQStVa9`+079ew(~1 znJ~AtSN7pd=_VS7r(s>?joVGwu;Z>~&YAdJyYCh!v~SICJbX)nZ$HDgnc)92BTi}* zTWaUcMjv)^!&9A{tvA|Av&rW$ES{>ts<=W%IrgZc&e3(l)LRsnqYc_)l1p~oy%H;k zFp!}PR@KRc==`GQ?(^5fZCMd*A>mzG_DttRe85KfK_29y%2YNoNS(ajQ)N>9R(Ugp zJdj|*dFj|rQa)|c%}YJ;40R;Hx(Yj1zUkT;l5*GDy{uS5a<;5p?!GX^3`VMFCL6Wv z%qPC@Q;A8wYFef8e!HYj*{I~Y)bDz0%*rI2nbr7N#rlu#j;SwjDJZ!-uX#duSVi0J zth#5yfL`(frF=)mP!K~Q2d~#?+OAk!?B#!Je&gZ)GYO_FPT~D0j@?>#S4LhhbO$ne)P1ceFc%K@_G#WW>Z6t?^1xn6a(7S)g^?d;FWv z;k$}T)c>e4rs&gG#vG*V>UVN|+%dv3`BP&ISvWk#k4kiH{>e)~Bb8CP?rOdALxxKk z*^v*Y@RU@C$he61e^n{O4_bLcZ>5G zEU|Q84yK6@Tocns-^o0`s-iBK&!$fWQS==m11Ey@lSjrkMVKRW+{6f@GDG{hPU*oX zV$mn@wu3e45>Bt#NO6&g;C@u853Yl{?j>?_@C~+Pr@*g&>IU=og=VEEvmWjqi7lIa zP2FQI2Dr8+YPvS6S?_4?;Ko@=itkj2@!aL)l9+{>X^LDY^|_Lao7KqA#_jb&P&Mml z-oyUQS0~O>R2OObHA?+j-15SOv;r$D7mTQ_{@VS(jG+CyBKL&H1u)L)d$!7=g*qCZ zCG_bVr9R>gi`K`=g6gv{zC zzb@-`FC9F?e!xQvJVZ01PnFx+dvMvpwjQhL2iA`(4HaJ~h+Y{fxarY88$L`;p=vcr zd$&)cC$_O)sZ(ow`m>SA-cm6Q?V2QbxKA*rtB$`o+_I>H*Tb8><}+v&T!v0!SqP@a zTn%R~k898!-f;E*__fSo#HzRLgySPmL2vYgv2pNcv*5-&Ds8#_3KU+#nmIv5FjAJ=F*IPxk9hm)u{Z!ay+F&U&uHu4U_9 zD#a(g@}3Ckm_A%ZE#o#gd5{$mXK8et6g6&ia5OA~D!Q(pWb`P~)*$r() z+E}on<_fl1cz%tVNU~)6WD7GxSJb5OI2sr&N*gu(oV&06GCj!I3~x5 zVa6th91AtVnC#gznlOgJFlOfY#{S;-UF%!x{p0)Z`=_<;=Xvhuy4UZye%EhZ&%Lhe z{^g97neqzt6#$@o(){>20C_ZkoZT{cnWZQ<;Hb<1XHK6tMG!=0$;`}LeAEFDkvc$t z$E(9ZOA8$F97gKUK*ZG%kzFptSO6Rm5F$cAdUJN{kU?=@Kge+E>gtAuhL)C=?(Xgc z0wEp|Wbq(% z9po2$gr8a2@dxrpN8OuS2rd&rQ>j!LJBb{K1kHfqrfHvK8n$@M#D1>O!|3d@z8nUC^-y z+6|%A2wE`EydN45!aHNAH-S1V&~Q+D6l#t^wJE$c1F|_(oPu%-D7Az))=+!~iq1iy z4dmNG?nNNkLCz(}c7QA=$izd23#4CxG*@`;2FV_fbPW=(LxLAP^@ey~i1UNT0q`gg z9tOdK5Qqtdd*N_50&YhFkpKiDMBavoyAXa4LSrE00R%mSz()}982sYEHy*s7f>#1u zPlRhp;E@b&&%refuB3xY2H-QnDGMC3;ZhFRk>Fx3*ye*xA)G6MGsR&21}sa#q8v_D zfH@h=-hyd09IJt&wSc1mwhm0{!T229T(Pqhc#ocdK^|wfXXB&Pl3`jteAmi zLRdNv3L=mfgPdeB*Gw?V<+2Q3?q_Zv2%z$A@mi9otD*s*nsM^@k@KNxCVnqi-h*kpg}H!1XJxUn)4gExp*7xh*T-6P0l+qW$<@`kyzS{@2O>FtR5OV15e@ zjp*#FupCGd%0~v?2>hsGIlfBN*lC%9h&oq%!T4XhzlU6PsJ4-O%VajCvS2E++ua^b z;u+`k8~L}d@EY(S&pq4bnqjZ@;QYsGoM?Wc+sG25uU6S}0`sW|zXRjzO@9_uJ$s1h z5p}H0iksS2?jJ&G(|Z=t9-=w2LBLWT-}_qA+La<*U`;QScy-#)dA>D|xW!#=WW_21 zalGneao;RDhikEcbKe^K)`IJ!))MTEG4e@6DFrXYY{gRA#9IiIp72=z>d~8VK`(bs zB;BvnBIWFQyxp513J^*9+&oI#nLdZ&zL+GXDg+2%z$rWFMl-q%HIhRg-So1`9z9Ue z!5&$Nik_xCUQpOcDy7o9%dKj(64#1XYnfR?406>U4R0(JtWTX{%OYb{6RMVnhdc@_ z!})Cb8y|)`C(66Uo;tuSuMn%!!eT3&DAe=}-^n=Nl2*6qtGpUryMpJ^CwMEudSga- z${Wh06U%q#%D9$Gh#FV>z*5f;>^EUV{A_8E;0V9ZzziIi)v0%;N7G+S9FeJXu}7=P zs)5Im2;{2L4J4GH=tn(qoN-N2@XDu7I3Zse=`&as7e+Q_Xx%9cTxeF9YMhQK>EXFn zHSn5{8r&h#2aLB?MrX!!TI;ScY~!WF60U(mTSbmWn`n!q#`yRU;U$^jS=-37DGcL@ zi9)5nV!0?+(xXwf!v}&hdQs-9(e0G@dEE!W$;gbzq@~pMbA~v{YlJEN7O?lDqeeB7 z9zSk1s`naybd0K);!DW|2W~mt}qfS-Ttm7MD%)i#GocIUH4R;?H@m zTS?gN)`ItOnn-GWS@)ZIE$&NvGE?gEn7AqC@FQsmvziq)#76M2E* zbAnsJ_t}NosBJaUiO$a|*R^#X4%v)M^GD~`wN~-u<^}y7M~Z$j{TT5*Z4Kmgm>PKu4EBnf?`Pb_Adx%NMi=J`1PtYx<}4V zzc@&W$p|*^rlnPeBTw>gc?fWX&L#){!#+&z# z9_vD+YWl1G(R;u|oK@a2Q%}_lJUq9c5D+L8lBD9W$a};~%O7S57uVfBhgSK`ySokQ z#gAt8NW~LfRf<0!P48(aF7QZpXV<%#%nZnVS?YZeNmM$%EXWGQ4DN|24-7QfA{MVJ zNJ~;Eb@tP|86p*qh*d3qlC9%8u2VB=7XnVqMM>4K9!Rz~c&k!vj4T93p*ELiV5^Fm z*-B$0YAvz2MWN0*qM3>hH!I{OX6l??^{v%Tzad zhgt%o>2RwxEmWi+Whv|#*XWlz`m8gjb6VS)L|yawoYJ0an}!mMUZW&x&fi1sZDIL; zOAQ-&qZjY~_O#Y4vhkH$cV*j^e($j?@w6@pKb#XxpZ}Iy-r*CS&{qBSM#9#BU8NiE zIPR;|!Ak16N&C|~M-a(K{}=Vn9{p_mkXc2S5WU-3#i40@&aLX#h*dH-*JlTmt`o3)=$>gz)09Y@-1OOv?B%osV`Iu*NJ@OyI*YwO>k6DAs? z?nKcVe7g~EA~T!Ni{Z`?v&@$)ZeOaI7jFNU{?Oq^68!iXe(VJQw;j=}d}?rK)2PC+ z!1+-ty5>gH@UGoT*@Mnsf zp;@E2-6^79FTQ&^XQkld`@WSqHy6zz@zh{id%`O< z2PW2;8x|(vD=(=%=u>e-M;dn;|H6>lZds_t)XE;I7TioEhy^_a{m4T%qRRzVSHxFP zrG-m{XwgrK`tfec)3V-Xz%_JbR-E6MLty~b2`wPmk@l>NdYFUq|0=g#A~tI2kW10` zN)1jfo{d-)DYsa;X2W7_y5h(5hYtUrNq~A1Fc#W?^v=bpAW!3>UfoCXCbcxB+FFv+ z|7ruBA5C4Ka&1Qb*&>R*sc|s(JaR7I!*-j|cG0#U(pAk`WMqEug04O2F`E9a#N)plU=Xk+GrJ@>NA>r`VSKPO&{}xJUdeqEvv)dyx59nxQSNObWz`-=Bt1X~xOIMDI;OlVx}CDzs%9mgWArr8hEtcvYZDU-I>1(y;ePrlbseS{b3 z;jtAO_-7=?8NJWH4pZ2QKJ>$mXSKzQX&W}#E{?UJ%1h>xSkChYE5hD){B9-md)HGN zf)?Erht6yL^7xZVw^oCJ!R17L60)8>?7tW=b>Q%3vFAeXv<&#XqDm7_+Gp^EV0U2? z*3e3Xv4{QhPZ@1_H;rgIH5+KT^QObc<~C+uTuyLiE=SSjQ}gkvL)J_Q?l4*$M$Z!s zd(k;cwl0?3`;uvUhYJ;EK60bu*nIST|qWJrE~{_3X{fP}OH z0z6(T20A+6sLu$}stF`aD+xL1PD%j4kN_beMC5IemX@q5=8qm(KQ%QqJv}`uD=Tkr zZz7SHnVDHrQ`6eo+SS!HK0Yo}Avkzr zyAyWnBsl%~pRi*`po|ItBkuJitWrea^&3RxH-u;_AdwIY5Rq`)^augxZcBq-<86ic z`JsH0CQ<~vo4izDvhrCewiri0U6KlrR8&Y9Ss{_!TS@K+X_Y?)$(I#(BtH;oZAE0` zL0TCNxdKFxU(a}kJY%$0Mj@DdM3YLT%GgQdK)e=2^02%P7B|5BCJ-vXtRl=P0e>@0 zZ-J?;@cC=tZi9*KFs=q;JK^Il7|{T>Ca`wH(6=zK2R?ic{d=KL3*Kr&?*Zu1h3ZEdmH}6P2e12ZIU784z&#J#^1<~XTr7kOMR1-BPLIH`6day_eHqwRfK4S>Rm0g@ zI8z6w8o;sQ#jTF7#g5k!K@8TUV!mSI6?=*4$yxEdR=gs0SCK5w+9aNg7#a` z>Vv)g@cjqaGXUQX!EP34vO!}6c724MW1uz;+b3Wf7ry=sTc=>lG;HRB(hMlhf`Sk> z&BKO8Sho!FB3LU1ImxQ8nHeh9$~<^u;3?-|0HqhJ&zdxCrJVpOrKe9EJ$EB}nl+j9 zv18i_kFK-ttM_QL5hwJ=r7fiBhmM#gXZ7+ifS70#m*_{p-J%!hZFv z(Nu1*aUPj{|FUs4~;u08Hx5<{rE?7*R2a{gxUdnJY~#~>rF;l{uEFQa^#wUo77 z_bZI`wAhzgZKXe{tjAwZ$S~c$($Rz|jDIKJ+fB?U_h|~EROT2omH12SDdCeiESKz; zJcs8P{y3RRHL}`i7-r1!q|l@KgK`g{hkL9?2WAe|Ptw>nv|Y^{)9cd&G2=ce3s<+Z+R>)={+Ka8IcgwGufx8YNQy)!SD+MNDFhbaERmuY`toRJY7njW;NaiT)H( z9Ti`v5`?FrYsqB`zR@n_*ul%rya;E_@d|}8@y6DsLm440o*%;RS}m`#2x8G((oQ z?KELUWL8pUtVSz_J+UbFU{&ruqjf%p=uZuiDGRkB^G5~mbuA%-8sfB`J7Hore9J{Q zrJ|Ufm~)%ewXz^b$<@WPn=tKM%enDgqVetDHIsNe$;wcpC2H;x?|S4{)vu@dsvW9K ze!F#Z^0-pgPGV&A4dDY-S99|mG}kEA<2@n1E=t7At55ekYnVQ7DGCa{^Hg$@k0Z}- z%d)BBQ0CSS>!j$esytkt;dYY{8STQ`ZMH|@%5ZF#+tJ$R;))6W(e$!v=@{D81X-}m zDEKF5sArlV_t;x54+jTpQhlgdYk_v!d8Dw0)-9irV5_f>2>DtF5NDvW?HRq#gVl4o#}&-*`^+ z6(=hpsVK=$ib%-}+F0yB5bEiR$?eD|fz29=dvb5j*s8RUd$}VS$m3~cgy?ze!p8WA zi*Jq0#6jjJ&vEa5ZQgnbX|AdJA3TB@i+j?Hk(!1D+iD-R6XqI|;{t3DWSFcl5$4~? z{R#Js^W%V|FWg3BMK6+5Li$@`6wT=CcgtXylKrbOxZsy-b9vWYY+}AF|$e-JBV?ixsgxZGzaHs zh|FjkLadc(d$GaP$^d${vNSZ>B?pl_KofJ_zRCaj=EF~BvUcKq{ahUvs`Cy*g)!4l zm1fAwW!}*k+XjXG);6jl?V3Wu0reR9p4V=Fiz0)al~IYjjT3$))83KO5;N zTxt2k^b<$SPhQ@azG1b!i#|4~`(*5{KqA)fz#Xi)6sU1MSh`3TYn-^2ho)4p3l*m3 z6vj@ka=50elhPmk@YEXLJ$vI-R*^5&FLwCb3HS{-S$5jF>6`d-gM($J2F#B~>diFc z&#?x}eraCjo%ackr{I<{8ISbZ;(|&2LaW#lA}}o0Hp-MOAN?R@)U5(>Cw+3x$>7D}DfMxtZZ093ztG%vZ{~=Q z@ie$`e~R}JD^xwAUhLId-|0E<%aG-=(2wl)NAq;~+#5TeEQZ`Za!Am?UaK+pD@N;# zur3eB4DtwEp|*OG!-{laV(5cf5>uzpZP>Cdc~SFFuF}Q!&Y4bJ0kfU#W-O6oV;5xc zu}s>N%I)?Tc8&`Fs@Ih@;lIZ9Z#9x~!6E*Qz4UPB{V2zIW%NtqRFB_>&nJ3)U}YOp z<7c_5Hb^9!x44q$sfcCPcIN)^-oVwFw%&+1eJ^qOVsfYypE|DUz&V~g*Y5O}4R|Y( zbrM1xyAUb(VZxAGQ9oOQu`7hSEh-k9R%70m>K8kFae^<4;Y%d=zeL1%vkT$BY#Uv^ z`M^jLQZN~sw7cbMp1ggzZea8$vgikeDbJcVsMiiPIwk1p6{{DGgs@bXT5IR>2S(;!Ht?@(H=-N4JPqC+R z^^cqNY15wyP4GLHBvnNWNidAo$# zCEaIpGTdO9I!bi7@w3{`OJwg;-{q zPr*f6*_5@DdUNq~`{dv`bu>3i%9u$mPVS`D^|hhe{RfN*K^BRE1}2^A^NO{$PtEOi zz0b-lXDMz(yPp#(esB_-+Z*Z?QOF#<%Sb63J!t(O_h+OAj_uvaJ)BIcx%7>&YM-+I z+`v**rkehb^k(hS7+R)zD19WA7$NEwP?>m~|F=|i2x1oIBar~oV z2TY3sbcx-`VUiR5bQ;B~Xa?UvO$xY6Jc6&m$doU4*Je6@D;|}vwp_9ZpF>Zv$xcrg ztfftL;jctJ#|d_`jbitGWUoxK_w!h-L=>4N5dGwaLIOqav)NajHo6UXS)#qg-rk7< zL#A@Zs+gCe3)5SvzF2>H|071QooL?U)ocK3HZZ)H8699U%r5R-TE1_}%%G#Q&6T_e zd9J0gs6lQ%@>FWzbZ#Tj46hfEEU2m0xHYwfio^Q1%cMNE<9sFQOEVfMt;5uhW}pr` zs&-(P7}}!HrDfYH7p1SYbyKpqajz7{2;y@e4YkGnTz$V_J?a^3ZbCK7ZdZT*^up&0 z0aXU0owKQrsV@igq8h}l(*u9mpYTY$ZITd`*EYRXTFKUSBOBOIjNfv3NjI7nl}@0N zP&UZ7RaFB=Mfj!hJx{hsg{XodGyl~A8xBUspk2)MSwDy$cw@`y{Ur>CdQ^JaN_SU! zRGK-b1?4t(d3c38&gk|q3}bXxad`1sBLT%IEn-)s3E{nZDa}|KFruvQH`ljB6dmF( zOr|r5=|#?xD)lo?a|vyaXAoXP0Ma0C`&+TdlZ%61_*=%6v0*&jV#J0xU%nrJ&{JCSq!a0L}XEH zB8#lD$*PEl`To07n9ZgbCz=4 zk(id2R$gA-)YR0`(J?wYDl{>(Z(s6s^5g!o8S9x32r|uxMk=2bPfsI#AhZS-gjeFW zgl(D$wqKtUwruegLILQEef1gEAR_Rp3z55p5UplNB*X-GB>#!ju$i&M`YMm=>*5Ow z@3Tp2$R98rJ$)N`7}<)X5 zOl^cOKf>fDn2?9@%`mD6AC+K41%^?;R0GB~c&`ov+u_~M(6!I=-vab(LmRN z&VA6aAKDH=s}9g~p+yf~=)-diG-06;2ld8KcNm_UK(#4UnL))b@Z>m@nL~*s6kEaL zQ&5P9d~0}Q3sgJ!<19S1hX;<3?F?DxAj1{zork*@;m&2CT!9pKxa|Qqy&%~K$i9%| z4~YQ~9|Um(hz)^jVGt7z(UCwR0+9rf(GVU3Vb>re76@?=6b}K3;GYD(WbjD_ubbd; z8{AXi3I#6Tfs1$H{5^2ZfOA>koDGf-!2The{R8Z%VEYKH^8sH7ryhec^Mpk z0>4y%SrwR8gUM4kTnEPWfNKP76JVZ${tM7+0bLsCw8FtQ*xv#BIzfvL=-05P8+N?` zjb7N%2S2}q?E|3x9=0(+jR~k>P#FQGkDxdTo5w+Z0ya&;k6&Qp6v(haY8E8tK%4^` z7C?*(e_IAo9;{mh5&jz2FglV?gbe<{*X&FHfYgh%`d!K{DJ1}T?6D(8r$g>dF~n0J zn2B6-@%vFrx7o$50x^FxQ~k>o_jt2lK^mX9pJAeLz3-9Ih`MEfuG!6>j{X1Atxa>c z${IpZJtp(LSGeoElq>ZLEPIExa?rtryjf>^8?$#W@IjL_ZLT!8|D&LU{H9Zrps^=c z)c;E5?ffgQlub5$TmI#R!s^$vX ztTs#hZs_ewJ@VU4I(qEA4A(k0of~_Hn0ct{1+|B5=~$vNKe+$U`2D>0464gO`}v(W z)T#(22HF#w+GQUW4>VwtBvmu3R~l-Z)Y>aLUsroa*jp*9<{J>WEWE%!CzR}6J>i=W znv>;(&X}xJN`0<%!nrE8His#tuW}-HmXbkpiKqEj;EJZt)%?b}If`lJd^A`HGju&| zD}JG-QV-im5r4Qx+grgbAnNJ?ET3F^!f}eqqL=EuR}mts%$zPm6B_a&YH&sDuNo%s zg?VxFpZWO6q5NX`R(~%?)s>0dc999JqZ-8$#*#`4=Qs5{%PHWkff($hQ3|qk*nUOw zt-UI{b$)l+hce;??{Fpx?gjSW&1@-la^2JS3O!E4*fhMDq>KN=x)B>)lRx1@AaJCc zrNS-M<@A{c1e4osLceb@e@OX=F>^HNqL?Q0>Vg)GeETfeklJw2)~6e-6Be;v7$xpe zMC*%Ie`iR6LhHg(ci6nh#C7V}=qBDA>Ze%JSo3FYsUO*J%+Wh=1$6;c#jnOqCkkBp zhiCROvin09L}nSW+Gh<7Rj?C>I8^-d&bOQi%kZJQMN{cTSy|oW7W8&hVnFY7i**Q$>lU_P~b=-r-6kM6} ze(?0blhusmH4PN>)_AtjOMa@TzYmApoXMUlo1YXtWuWb*+OYd~!(oxH^*@l9Z*RSk zPCzHL^z4XHk=YtWlZunkH%KH(40j3a1vWqEs~K10f``779U*)niOm+sw~{xnJtUIE zhDF|mu0ImT+$*vzM*PCK?3%P#oJ^zpRkQGQ6&vMD*zYDdGd)E2m2@P%Kieky!6(eh zJ(NH<{q|xL*RomUyd7uA#GT zgMYfk<(uO1Jy)u1$1$N_*q>5jMclXVh#xAaPYe%^oVKHguZ;Plp3WT@7+q#!XSwWx zUF+ZcVkK99Ijg5xI+pS@!@}ON;lU(j|2=tXms0?zx{z#ZBlajIdq)^ulNzfUNF8oD z?e~(2$J_{Ct;V&@Hxi$VZi|Vukj74Yp7eLIx4isQeL1e^6(V@eY%DI8vD#&Hl9MSM zC!z}UopmG2yEln{-1qvv0kU!)WfW5)1UB9qp!l-wT2GieMYK%fi35M9LY&OvAxs2A zqPXiu?`Yx->v*9+cTe(ibURLGoJj1jEIqO&xH5}bUKQVUNIgP7N^)O)S{k}qA}~O} zrLCflTwxOZog0rS^mEb43Rl-6RXif{PD;*X!y2N8uolp7&2Mq|iv%H!DUNvC&b+@L z`F(LQco(_1ME6FJc-*$B=_#AHol9)NlC!eFru3j9ql4`7D-o z?{fCZ$dHqjdTj*D$5GdUE)EW7_z~O-WbBee59L?pbjVEpYW$};{C2EmQuq=%F?eCb{z+h?GuuQi_an2;o zH2KpjAN!}H{Prh31Ntk|zx5WE6nXlflWTa?d{x1r#P1Vo*+zE@1|#fn#U{(sXe4&O-dZ83b?3I3}cF~UUnU3*yT;G6#ndD?ZrS=l6v-nTnhz!Oo3i^?ZnxO&1t z4cnK+_g)#N&mdT~M9AeCzb5Q_7Qxhzt?g46IPP4Hdue+%NZ(u2G`S%!|5DggP+_d3 zLaXJ>c+yek`$hT)-(mb2^4_j=khiilqHe}~6YF}FV?D^F&N7bKX7C#PuC4-GjyG1B zwHWgGgX-gcuZ4^VMmncvgaEhVa{<$=LGOr-MD3-FIV{s_ zsy<>^B<(FOyaJc1ew}R;wc)Fo>l8cwY}nPruiv#lElZ=436l{4gP1-VSs+)SihLTJ z^++xd-REFqyWmzgAe2k|*91BrbwS-q&T*xj>Bav!a=(?_PTb@5CclfU{d|9Gev8BZ zo&*ut4KDv7G1W}YFvZ0zsi>6ktE0U&zq+f#*-E=5$g9_axaj40kUu&yLh~yZ(0gQgJtg)luf%lHtJDu5 z_On`2j`&_G!8owf_ZF)_J+Q}eVamKRsl-pCT|$XE=N@N{KXaqRUnA=aH$)@BW2pNe z4PTMiYu%n>sQmfFc?PFB(rHm6N?9AR?VBo>z57%@aACCgaU&;SR?6RfPdC>O9^ z7qj?V-^P5(zn?~(?3H~w((Q#mllYgFGG*7n)AH(t8EtfKxIs$umF}M@oCudL?buMo@s^M?H(SW>3Nw?mCeYHCdc1Ax7#7CbO;CDSkrNf-W)7 zAy`w~?y-_iQaw^t(dqP~c0~gQ&o9n*iCL;1?MXy4$ypM!o-qxXH@J)h^}yayujZF| zyN~wkri_ZM!F6T*)AR8aOx;)s#Z~XFTm7s0N3lCQMBM1LohLQ1PTE;XTG%(dh|W}5 z&2;k7D_N3zS4RW+es#V9aYd-13!3$Ihl~l6v?@vd;{Q<{v3W4JOrkV+&3|8^|7YaQ zoDG+l#&x@Y!W%*p+RlAfsHOC^?wjVdN_Ck~HAjl2_M>A#E$r3pjo;H&4E z+2$J4b$v~-Udm{5zjjKCmX){(?A1SYys){GtSa?L`lxOqT7$w3 zDkl5x?;kG~N5$O9YD?V`$#>~UvI{Hqj`3%E;X^C9xp})6hlDDp2Xp7#V^Z+T5sk5Z z%8O+uXxnMa>Yt6c-TLj{t1GuzPF5!RV)}0pQpu>73(U#uv3`Q%Azm?eyz9I)+GQ)v zFYbN*Hm@#hb9!!>vdh$ILk2r5;#PxlGu?@QhubB_DnI2noGM$SgI)2Q>ylwCe2$jf zIu{rm)g9&*6UDfE%hELDvPQ!3N{i9CnwGbD_t0nbQ!Lkr7+dd<%c?6icr=LKFu#Gb zxGQb(ofxg1Zf|O*t(y26OWe#Nc(#vY(@`%u(My~Wv8mFKU+dg75@fY4E~W{In0nYV zy{#a&)cY?EuIz}~@?lkxd$^o8Owx%A!a4^m`wcnlHO8=eyj5M^)#)3TyT?_odio!a zYiDEX4j3~vRZG3og>N7Uf98^qG`5F5@3#5JRN$AFqsUbMV&{Xu|9kDPodAb@K(?=M Wtacx(J}f+6hGQlcM~aNkMgIdRggSBn literal 0 HcmV?d00001 diff --git a/tests/zero-downtime-scaling/results/1.0.0/25-node/gradual-down-https.csv b/tests/zero-downtime-scaling/results/1.0.0/25-node/gradual-down-https.csv new file mode 100644 index 000000000..f0ff65283 --- /dev/null +++ b/tests/zero-downtime-scaling/results/1.0.0/25-node/gradual-down-https.csv @@ -0,0 +1,7286 @@ +2023-10-24 17:41:23.047222383+00:00,1 +2023-10-24 17:41:23.174985298+00:00,1 +2023-10-24 17:41:23.304238341+00:00,1 +2023-10-24 17:41:23.432279929+00:00,1 +2023-10-24 17:41:23.561053395+00:00,1 +2023-10-24 17:41:23.688027328+00:00,1 +2023-10-24 17:41:23.817031282+00:00,1 +2023-10-24 17:41:23.947188735+00:00,1 +2023-10-24 17:41:24.075829516+00:00,1 +2023-10-24 17:41:24.204074276+00:00,1 +2023-10-24 17:41:24.332809960+00:00,1 +2023-10-24 17:41:24.460980301+00:00,1 +2023-10-24 17:41:24.589193789+00:00,1 +2023-10-24 17:41:24.718034026+00:00,1 +2023-10-24 17:41:24.846058846+00:00,1 +2023-10-24 17:41:24.974409224+00:00,1 +2023-10-24 17:41:25.102982529+00:00,1 +2023-10-24 17:41:25.231506232+00:00,1 +2023-10-24 17:41:25.360015953+00:00,1 +2023-10-24 17:41:25.487628924+00:00,1 +2023-10-24 17:41:25.615297697+00:00,1 +2023-10-24 17:41:25.742908510+00:00,1 +2023-10-24 17:41:25.871537368+00:00,1 +2023-10-24 17:41:25.999441888+00:00,1 +2023-10-24 17:41:26.127492733+00:00,1 +2023-10-24 17:41:26.255976579+00:00,1 +2023-10-24 17:41:26.383238616+00:00,1 +2023-10-24 17:41:26.510653454+00:00,1 +2023-10-24 17:41:26.638500877+00:00,1 +2023-10-24 17:41:26.767499475+00:00,1 +2023-10-24 17:41:26.895411767+00:00,1 +2023-10-24 17:41:27.022961733+00:00,1 +2023-10-24 17:41:27.150851241+00:00,1 +2023-10-24 17:41:27.277918797+00:00,1 +2023-10-24 17:41:27.407009185+00:00,1 +2023-10-24 17:41:27.535548434+00:00,1 +2023-10-24 17:41:27.664189790+00:00,1 +2023-10-24 17:41:27.793148976+00:00,1 +2023-10-24 17:41:27.921467143+00:00,1 +2023-10-24 17:41:28.050136902+00:00,1 +2023-10-24 17:41:28.177651568+00:00,1 +2023-10-24 17:41:28.305456699+00:00,1 +2023-10-24 17:41:28.434529728+00:00,1 +2023-10-24 17:41:28.562515138+00:00,1 +2023-10-24 17:41:28.691149243+00:00,1 +2023-10-24 17:41:28.818198428+00:00,1 +2023-10-24 17:41:28.946154922+00:00,1 +2023-10-24 17:41:29.074220261+00:00,1 +2023-10-24 17:41:29.202570752+00:00,1 +2023-10-24 17:41:29.331200027+00:00,1 +2023-10-24 17:41:29.459598392+00:00,1 +2023-10-24 17:41:29.586774369+00:00,1 +2023-10-24 17:41:29.714967774+00:00,1 +2023-10-24 17:41:29.844840482+00:00,1 +2023-10-24 17:41:29.973340096+00:00,1 +2023-10-24 17:41:30.100670188+00:00,1 +2023-10-24 17:41:30.228947238+00:00,1 +2023-10-24 17:41:30.357755637+00:00,1 +2023-10-24 17:41:30.486191453+00:00,1 +2023-10-24 17:41:30.613859030+00:00,1 +2023-10-24 17:41:30.742463537+00:00,1 +2023-10-24 17:41:30.870664213+00:00,1 +2023-10-24 17:41:30.999073372+00:00,1 +2023-10-24 17:41:31.128047737+00:00,1 +2023-10-24 17:41:31.256470029+00:00,1 +2023-10-24 17:41:31.383872196+00:00,1 +2023-10-24 17:41:31.511114196+00:00,1 +2023-10-24 17:41:31.639317885+00:00,1 +2023-10-24 17:41:31.766349966+00:00,1 +2023-10-24 17:41:31.895763252+00:00,1 +2023-10-24 17:41:32.023109540+00:00,1 +2023-10-24 17:41:32.150347165+00:00,1 +2023-10-24 17:41:32.277806227+00:00,1 +2023-10-24 17:41:32.405404374+00:00,1 +2023-10-24 17:41:32.533037440+00:00,1 +2023-10-24 17:41:32.660463438+00:00,1 +2023-10-24 17:41:32.788147661+00:00,1 +2023-10-24 17:41:32.916006225+00:00,1 +2023-10-24 17:41:33.045215743+00:00,1 +2023-10-24 17:41:33.172131131+00:00,1 +2023-10-24 17:41:33.299944372+00:00,1 +2023-10-24 17:41:33.426069879+00:00,1 +2023-10-24 17:41:33.553877290+00:00,1 +2023-10-24 17:41:33.682039907+00:00,1 +2023-10-24 17:41:33.811861361+00:00,1 +2023-10-24 17:41:33.940480488+00:00,1 +2023-10-24 17:41:34.067798553+00:00,1 +2023-10-24 17:41:34.194849932+00:00,1 +2023-10-24 17:41:34.322052755+00:00,1 +2023-10-24 17:41:34.450492829+00:00,1 +2023-10-24 17:41:34.577684593+00:00,1 +2023-10-24 17:41:34.704908745+00:00,1 +2023-10-24 17:41:34.832209373+00:00,1 +2023-10-24 17:41:34.959316011+00:00,1 +2023-10-24 17:41:35.087342100+00:00,1 +2023-10-24 17:41:35.216187213+00:00,1 +2023-10-24 17:41:35.342929945+00:00,1 +2023-10-24 17:41:35.470758515+00:00,1 +2023-10-24 17:41:35.598007547+00:00,1 +2023-10-24 17:41:35.725446204+00:00,1 +2023-10-24 17:41:35.853675238+00:00,1 +2023-10-24 17:41:35.983826895+00:00,1 +2023-10-24 17:41:36.110428060+00:00,1 +2023-10-24 17:41:36.237589583+00:00,1 +2023-10-24 17:41:36.365166835+00:00,1 +2023-10-24 17:41:36.493569220+00:00,1 +2023-10-24 17:41:36.621705306+00:00,1 +2023-10-24 17:41:36.750275024+00:00,1 +2023-10-24 17:41:36.877914409+00:00,1 +2023-10-24 17:41:37.004542265+00:00,1 +2023-10-24 17:41:37.133140981+00:00,1 +2023-10-24 17:41:37.260463266+00:00,1 +2023-10-24 17:41:37.390826457+00:00,1 +2023-10-24 17:41:37.520231101+00:00,1 +2023-10-24 17:41:37.647369501+00:00,1 +2023-10-24 17:41:37.776824875+00:00,1 +2023-10-24 17:41:37.903646156+00:00,1 +2023-10-24 17:41:38.031301845+00:00,1 +2023-10-24 17:41:38.159887303+00:00,1 +2023-10-24 17:41:38.288361565+00:00,1 +2023-10-24 17:41:38.415287421+00:00,1 +2023-10-24 17:41:38.543568110+00:00,1 +2023-10-24 17:41:38.671711521+00:00,1 +2023-10-24 17:41:38.800763491+00:00,1 +2023-10-24 17:41:38.930176381+00:00,1 +2023-10-24 17:41:39.058112568+00:00,1 +2023-10-24 17:41:39.185426932+00:00,1 +2023-10-24 17:41:39.313004625+00:00,1 +2023-10-24 17:41:39.441088745+00:00,1 +2023-10-24 17:41:39.569542762+00:00,1 +2023-10-24 17:41:39.697748099+00:00,1 +2023-10-24 17:41:39.826545445+00:00,1 +2023-10-24 17:41:39.955014837+00:00,1 +2023-10-24 17:41:40.084201884+00:00,1 +2023-10-24 17:41:40.212487134+00:00,1 +2023-10-24 17:41:40.341546536+00:00,1 +2023-10-24 17:41:40.470374287+00:00,1 +2023-10-24 17:41:40.599587933+00:00,1 +2023-10-24 17:41:40.727164335+00:00,1 +2023-10-24 17:41:40.854064793+00:00,1 +2023-10-24 17:41:40.981682330+00:00,1 +2023-10-24 17:41:41.109080765+00:00,1 +2023-10-24 17:41:41.237081710+00:00,1 +2023-10-24 17:41:41.365570803+00:00,1 +2023-10-24 17:41:41.492310347+00:00,1 +2023-10-24 17:41:41.619862024+00:00,1 +2023-10-24 17:41:41.747406146+00:00,1 +2023-10-24 17:41:41.874398792+00:00,1 +2023-10-24 17:41:42.002942976+00:00,1 +2023-10-24 17:41:42.130005224+00:00,1 +2023-10-24 17:41:42.258041131+00:00,1 +2023-10-24 17:41:42.386568626+00:00,1 +2023-10-24 17:41:42.514381814+00:00,1 +2023-10-24 17:41:42.642404444+00:00,1 +2023-10-24 17:41:42.771183682+00:00,1 +2023-10-24 17:41:42.898640287+00:00,1 +2023-10-24 17:41:43.026164059+00:00,1 +2023-10-24 17:41:43.154036958+00:00,1 +2023-10-24 17:41:43.281671341+00:00,1 +2023-10-24 17:41:43.411331002+00:00,1 +2023-10-24 17:41:43.538319960+00:00,1 +2023-10-24 17:41:43.666167850+00:00,1 +2023-10-24 17:41:43.794360334+00:00,1 +2023-10-24 17:41:43.923240655+00:00,1 +2023-10-24 17:41:44.050908555+00:00,1 +2023-10-24 17:41:44.179128236+00:00,1 +2023-10-24 17:41:44.308712204+00:00,1 +2023-10-24 17:41:44.436224493+00:00,1 +2023-10-24 17:41:44.564666575+00:00,1 +2023-10-24 17:41:44.692983552+00:00,1 +2023-10-24 17:41:44.822599732+00:00,1 +2023-10-24 17:41:44.949117892+00:00,1 +2023-10-24 17:41:45.077993757+00:00,1 +2023-10-24 17:41:45.204936949+00:00,1 +2023-10-24 17:41:45.332624985+00:00,1 +2023-10-24 17:41:45.460571215+00:00,1 +2023-10-24 17:41:45.589482332+00:00,1 +2023-10-24 17:41:45.717270396+00:00,1 +2023-10-24 17:41:45.844255888+00:00,1 +2023-10-24 17:41:45.972149195+00:00,1 +2023-10-24 17:41:46.100675870+00:00,1 +2023-10-24 17:41:46.228008951+00:00,1 +2023-10-24 17:41:46.355043803+00:00,1 +2023-10-24 17:41:46.483981080+00:00,1 +2023-10-24 17:41:46.611644334+00:00,1 +2023-10-24 17:41:46.739223704+00:00,1 +2023-10-24 17:41:46.867647048+00:00,1 +2023-10-24 17:41:46.995644779+00:00,1 +2023-10-24 17:41:47.123996078+00:00,1 +2023-10-24 17:41:47.252128492+00:00,1 +2023-10-24 17:41:47.380719424+00:00,1 +2023-10-24 17:41:47.507927952+00:00,1 +2023-10-24 17:41:47.635990341+00:00,1 +2023-10-24 17:41:47.764776453+00:00,1 +2023-10-24 17:41:47.891899782+00:00,1 +2023-10-24 17:41:48.019567113+00:00,1 +2023-10-24 17:41:48.147302353+00:00,1 +2023-10-24 17:41:48.275918273+00:00,1 +2023-10-24 17:41:48.404062038+00:00,1 +2023-10-24 17:41:48.531922378+00:00,1 +2023-10-24 17:41:48.658589693+00:00,1 +2023-10-24 17:41:48.788292620+00:00,1 +2023-10-24 17:41:48.914729420+00:00,1 +2023-10-24 17:41:49.043813341+00:00,1 +2023-10-24 17:41:49.173099147+00:00,1 +2023-10-24 17:41:49.301630751+00:00,1 +2023-10-24 17:41:49.430728817+00:00,1 +2023-10-24 17:41:49.558515515+00:00,1 +2023-10-24 17:41:49.686008965+00:00,1 +2023-10-24 17:41:49.814821424+00:00,1 +2023-10-24 17:41:49.942973843+00:00,1 +2023-10-24 17:41:50.070687212+00:00,1 +2023-10-24 17:41:50.199345550+00:00,1 +2023-10-24 17:41:50.327303836+00:00,1 +2023-10-24 17:41:50.457408407+00:00,1 +2023-10-24 17:41:50.585105655+00:00,1 +2023-10-24 17:41:50.712632756+00:00,1 +2023-10-24 17:41:50.840403112+00:00,1 +2023-10-24 17:41:50.968066168+00:00,1 +2023-10-24 17:41:51.096663432+00:00,1 +2023-10-24 17:41:51.225152734+00:00,1 +2023-10-24 17:41:51.353752976+00:00,1 +2023-10-24 17:41:51.481620106+00:00,1 +2023-10-24 17:41:51.609709795+00:00,1 +2023-10-24 17:41:51.737694427+00:00,1 +2023-10-24 17:41:51.864629739+00:00,1 +2023-10-24 17:41:51.992286920+00:00,1 +2023-10-24 17:41:52.120306824+00:00,1 +2023-10-24 17:41:52.248282428+00:00,1 +2023-10-24 17:41:52.377057830+00:00,1 +2023-10-24 17:41:52.506241401+00:00,1 +2023-10-24 17:41:52.634523609+00:00,1 +2023-10-24 17:41:52.762621068+00:00,1 +2023-10-24 17:41:52.890851202+00:00,1 +2023-10-24 17:41:53.018133188+00:00,1 +2023-10-24 17:41:53.145274165+00:00,1 +2023-10-24 17:41:53.272714813+00:00,1 +2023-10-24 17:41:53.399559764+00:00,1 +2023-10-24 17:41:53.528211273+00:00,1 +2023-10-24 17:41:53.655880109+00:00,1 +2023-10-24 17:41:53.783993795+00:00,1 +2023-10-24 17:41:53.912434405+00:00,1 +2023-10-24 17:41:54.040984367+00:00,1 +2023-10-24 17:41:54.168226142+00:00,1 +2023-10-24 17:41:54.295058449+00:00,1 +2023-10-24 17:41:54.423362855+00:00,1 +2023-10-24 17:41:54.551046988+00:00,1 +2023-10-24 17:41:54.679644798+00:00,1 +2023-10-24 17:41:54.807498744+00:00,1 +2023-10-24 17:41:54.935219476+00:00,1 +2023-10-24 17:41:55.062362517+00:00,1 +2023-10-24 17:41:55.189828492+00:00,1 +2023-10-24 17:41:55.317503429+00:00,1 +2023-10-24 17:41:55.445439373+00:00,1 +2023-10-24 17:41:55.574084330+00:00,1 +2023-10-24 17:41:55.700791394+00:00,1 +2023-10-24 17:41:55.829710386+00:00,1 +2023-10-24 17:41:55.960314420+00:00,1 +2023-10-24 17:41:56.087204374+00:00,1 +2023-10-24 17:41:56.214866813+00:00,1 +2023-10-24 17:41:56.342720431+00:00,1 +2023-10-24 17:41:56.469361359+00:00,1 +2023-10-24 17:41:56.596538162+00:00,1 +2023-10-24 17:41:56.723990592+00:00,1 +2023-10-24 17:41:56.853895731+00:00,1 +2023-10-24 17:41:56.980592482+00:00,1 +2023-10-24 17:41:57.109205872+00:00,1 +2023-10-24 17:41:57.237725090+00:00,1 +2023-10-24 17:41:57.365719803+00:00,1 +2023-10-24 17:41:57.493893726+00:00,1 +2023-10-24 17:41:57.620926363+00:00,1 +2023-10-24 17:41:57.748679960+00:00,1 +2023-10-24 17:41:57.877831958+00:00,1 +2023-10-24 17:41:58.006743816+00:00,1 +2023-10-24 17:41:58.134823444+00:00,1 +2023-10-24 17:41:58.264533442+00:00,1 +2023-10-24 17:41:58.392197561+00:00,1 +2023-10-24 17:41:58.521418965+00:00,1 +2023-10-24 17:41:58.649888422+00:00,1 +2023-10-24 17:41:58.776869258+00:00,1 +2023-10-24 17:41:58.904962946+00:00,1 +2023-10-24 17:41:59.033498980+00:00,1 +2023-10-24 17:41:59.160294239+00:00,1 +2023-10-24 17:41:59.287742529+00:00,1 +2023-10-24 17:41:59.416440221+00:00,1 +2023-10-24 17:41:59.544026792+00:00,1 +2023-10-24 17:41:59.671208778+00:00,1 +2023-10-24 17:41:59.799737558+00:00,1 +2023-10-24 17:41:59.928373019+00:00,1 +2023-10-24 17:42:00.056167169+00:00,1 +2023-10-24 17:42:00.184131833+00:00,1 +2023-10-24 17:42:00.313165673+00:00,1 +2023-10-24 17:42:00.440727311+00:00,1 +2023-10-24 17:42:00.570079687+00:00,1 +2023-10-24 17:42:00.697997809+00:00,1 +2023-10-24 17:42:00.825991322+00:00,1 +2023-10-24 17:42:00.955441898+00:00,1 +2023-10-24 17:42:01.083329661+00:00,1 +2023-10-24 17:42:01.211244881+00:00,1 +2023-10-24 17:42:01.338841215+00:00,1 +2023-10-24 17:42:01.467719231+00:00,1 +2023-10-24 17:42:01.596806943+00:00,1 +2023-10-24 17:42:01.724901483+00:00,1 +2023-10-24 17:42:01.855409074+00:00,1 +2023-10-24 17:42:01.982711400+00:00,1 +2023-10-24 17:42:02.110634624+00:00,1 +2023-10-24 17:42:02.239240228+00:00,1 +2023-10-24 17:42:02.368138896+00:00,1 +2023-10-24 17:42:02.496010292+00:00,1 +2023-10-24 17:42:02.624498860+00:00,1 +2023-10-24 17:42:02.753063255+00:00,1 +2023-10-24 17:42:02.881531032+00:00,1 +2023-10-24 17:42:03.011768388+00:00,1 +2023-10-24 17:42:03.139052771+00:00,1 +2023-10-24 17:42:03.267485601+00:00,1 +2023-10-24 17:42:03.394648536+00:00,1 +2023-10-24 17:42:03.522727443+00:00,1 +2023-10-24 17:42:03.652091226+00:00,1 +2023-10-24 17:42:03.779972294+00:00,1 +2023-10-24 17:42:03.907759915+00:00,1 +2023-10-24 17:42:04.034722057+00:00,1 +2023-10-24 17:42:04.161332094+00:00,1 +2023-10-24 17:42:04.288064807+00:00,1 +2023-10-24 17:42:04.415368669+00:00,1 +2023-10-24 17:42:04.542992080+00:00,1 +2023-10-24 17:42:04.671293803+00:00,1 +2023-10-24 17:42:04.799950390+00:00,1 +2023-10-24 17:42:04.929482392+00:00,1 +2023-10-24 17:42:05.056873838+00:00,1 +2023-10-24 17:42:05.184843488+00:00,1 +2023-10-24 17:42:05.312973994+00:00,1 +2023-10-24 17:42:05.441185038+00:00,1 +2023-10-24 17:42:05.570096294+00:00,1 +2023-10-24 17:42:05.698321796+00:00,1 +2023-10-24 17:42:05.825631016+00:00,1 +2023-10-24 17:42:05.953867802+00:00,1 +2023-10-24 17:42:06.081384165+00:00,1 +2023-10-24 17:42:06.209400736+00:00,1 +2023-10-24 17:42:06.339286887+00:00,1 +2023-10-24 17:42:06.468031033+00:00,1 +2023-10-24 17:42:06.596358951+00:00,1 +2023-10-24 17:42:06.725562389+00:00,1 +2023-10-24 17:42:06.854493280+00:00,1 +2023-10-24 17:42:06.982717500+00:00,1 +2023-10-24 17:42:07.111765609+00:00,1 +2023-10-24 17:42:07.240242763+00:00,1 +2023-10-24 17:42:07.369265653+00:00,1 +2023-10-24 17:42:07.497967238+00:00,1 +2023-10-24 17:42:07.626950850+00:00,1 +2023-10-24 17:42:07.755135898+00:00,1 +2023-10-24 17:42:07.884320532+00:00,1 +2023-10-24 17:42:08.014705926+00:00,1 +2023-10-24 17:42:08.144225492+00:00,1 +2023-10-24 17:42:08.273070100+00:00,1 +2023-10-24 17:42:08.401385149+00:00,1 +2023-10-24 17:42:08.531157469+00:00,1 +2023-10-24 17:42:08.662266784+00:00,1 +2023-10-24 17:42:08.790798497+00:00,1 +2023-10-24 17:42:08.919471814+00:00,1 +2023-10-24 17:42:09.048803162+00:00,1 +2023-10-24 17:42:09.180922609+00:00,1 +2023-10-24 17:42:09.310021417+00:00,1 +2023-10-24 17:42:09.438506591+00:00,1 +2023-10-24 17:42:09.567710495+00:00,1 +2023-10-24 17:42:09.694639152+00:00,1 +2023-10-24 17:42:09.823929962+00:00,1 +2023-10-24 17:42:09.953387576+00:00,1 +2023-10-24 17:42:10.081749775+00:00,1 +2023-10-24 17:42:10.210895520+00:00,1 +2023-10-24 17:42:10.340448173+00:00,1 +2023-10-24 17:42:10.469757392+00:00,1 +2023-10-24 17:42:10.598994920+00:00,1 +2023-10-24 17:42:10.728696574+00:00,1 +2023-10-24 17:42:10.857607816+00:00,1 +2023-10-24 17:42:10.987783835+00:00,1 +2023-10-24 17:42:11.116380876+00:00,1 +2023-10-24 17:42:11.244333966+00:00,1 +2023-10-24 17:42:11.371931412+00:00,1 +2023-10-24 17:42:11.499052608+00:00,1 +2023-10-24 17:42:11.627155084+00:00,1 +2023-10-24 17:42:11.754613673+00:00,1 +2023-10-24 17:42:11.881710946+00:00,1 +2023-10-24 17:42:12.010390927+00:00,1 +2023-10-24 17:42:12.138433073+00:00,1 +2023-10-24 17:42:12.266543811+00:00,1 +2023-10-24 17:42:12.394477774+00:00,1 +2023-10-24 17:42:12.521909965+00:00,1 +2023-10-24 17:42:12.650870929+00:00,1 +2023-10-24 17:42:12.779339395+00:00,1 +2023-10-24 17:42:12.908761240+00:00,1 +2023-10-24 17:42:13.037294547+00:00,1 +2023-10-24 17:42:13.164874275+00:00,1 +2023-10-24 17:42:13.292961684+00:00,1 +2023-10-24 17:42:13.419682213+00:00,1 +2023-10-24 17:42:13.548253502+00:00,1 +2023-10-24 17:42:13.678032869+00:00,1 +2023-10-24 17:42:13.807785256+00:00,1 +2023-10-24 17:42:13.936887073+00:00,1 +2023-10-24 17:42:14.066071461+00:00,1 +2023-10-24 17:42:14.194215230+00:00,1 +2023-10-24 17:42:14.322262529+00:00,1 +2023-10-24 17:42:14.449822440+00:00,1 +2023-10-24 17:42:14.577602121+00:00,1 +2023-10-24 17:42:14.704412024+00:00,1 +2023-10-24 17:42:14.831621679+00:00,1 +2023-10-24 17:42:14.959479015+00:00,1 +2023-10-24 17:42:15.089385883+00:00,1 +2023-10-24 17:42:15.218270101+00:00,1 +2023-10-24 17:42:15.348008112+00:00,1 +2023-10-24 17:42:15.477761957+00:00,1 +2023-10-24 17:42:15.606945750+00:00,1 +2023-10-24 17:42:15.734022985+00:00,1 +2023-10-24 17:42:15.861829161+00:00,1 +2023-10-24 17:42:15.992388455+00:00,1 +2023-10-24 17:42:16.121306057+00:00,1 +2023-10-24 17:42:16.248270032+00:00,1 +2023-10-24 17:42:16.375759114+00:00,1 +2023-10-24 17:42:16.504153763+00:00,1 +2023-10-24 17:42:16.631915806+00:00,1 +2023-10-24 17:42:16.759680811+00:00,1 +2023-10-24 17:42:16.888117319+00:00,1 +2023-10-24 17:42:17.017695255+00:00,1 +2023-10-24 17:42:17.145971378+00:00,1 +2023-10-24 17:42:17.275699434+00:00,1 +2023-10-24 17:42:17.402436464+00:00,1 +2023-10-24 17:42:17.531466009+00:00,1 +2023-10-24 17:42:17.660391444+00:00,1 +2023-10-24 17:42:17.787630678+00:00,1 +2023-10-24 17:42:17.915666954+00:00,1 +2023-10-24 17:42:18.044910264+00:00,1 +2023-10-24 17:42:18.171957245+00:00,1 +2023-10-24 17:42:18.300777162+00:00,1 +2023-10-24 17:42:18.428384855+00:00,1 +2023-10-24 17:42:18.556390208+00:00,1 +2023-10-24 17:42:18.684586798+00:00,1 +2023-10-24 17:42:18.812907402+00:00,1 +2023-10-24 17:42:18.941450930+00:00,1 +2023-10-24 17:42:19.069310407+00:00,1 +2023-10-24 17:42:19.196856455+00:00,1 +2023-10-24 17:42:19.324422015+00:00,1 +2023-10-24 17:42:19.451951240+00:00,1 +2023-10-24 17:42:19.579301185+00:00,1 +2023-10-24 17:42:19.707318465+00:00,1 +2023-10-24 17:42:19.836438834+00:00,1 +2023-10-24 17:42:19.964372289+00:00,1 +2023-10-24 17:42:20.092712228+00:00,1 +2023-10-24 17:42:20.220034646+00:00,1 +2023-10-24 17:42:20.347710302+00:00,1 +2023-10-24 17:42:20.474617053+00:00,1 +2023-10-24 17:42:20.602851572+00:00,1 +2023-10-24 17:42:20.730464218+00:00,1 +2023-10-24 17:42:20.858184866+00:00,1 +2023-10-24 17:42:20.985823685+00:00,1 +2023-10-24 17:42:21.114014103+00:00,1 +2023-10-24 17:42:21.242483238+00:00,1 +2023-10-24 17:42:21.369973522+00:00,1 +2023-10-24 17:42:21.497660604+00:00,1 +2023-10-24 17:42:21.625224984+00:00,1 +2023-10-24 17:42:21.753376309+00:00,1 +2023-10-24 17:42:21.881460049+00:00,1 +2023-10-24 17:42:22.009336253+00:00,1 +2023-10-24 17:42:22.138385416+00:00,1 +2023-10-24 17:42:22.267114316+00:00,1 +2023-10-24 17:42:22.395503926+00:00,1 +2023-10-24 17:42:22.523245675+00:00,1 +2023-10-24 17:42:22.650716825+00:00,1 +2023-10-24 17:42:22.776954816+00:00,1 +2023-10-24 17:42:22.903665347+00:00,1 +2023-10-24 17:42:23.029913142+00:00,1 +2023-10-24 17:42:23.157298566+00:00,1 +2023-10-24 17:42:23.284664277+00:00,1 +2023-10-24 17:42:23.412717665+00:00,1 +2023-10-24 17:42:23.540441809+00:00,1 +2023-10-24 17:42:23.668706010+00:00,1 +2023-10-24 17:42:23.797983351+00:00,1 +2023-10-24 17:42:23.925080275+00:00,1 +2023-10-24 17:42:24.053188177+00:00,1 +2023-10-24 17:42:24.182982061+00:00,1 +2023-10-24 17:42:24.310809604+00:00,1 +2023-10-24 17:42:24.438838488+00:00,1 +2023-10-24 17:42:24.566978114+00:00,1 +2023-10-24 17:42:24.695498588+00:00,1 +2023-10-24 17:42:24.822863954+00:00,1 +2023-10-24 17:42:24.950888639+00:00,1 +2023-10-24 17:42:25.078386350+00:00,1 +2023-10-24 17:42:25.206031973+00:00,1 +2023-10-24 17:42:25.334281955+00:00,1 +2023-10-24 17:42:25.463304666+00:00,1 +2023-10-24 17:42:25.591166288+00:00,1 +2023-10-24 17:42:25.718895614+00:00,1 +2023-10-24 17:42:25.847481011+00:00,1 +2023-10-24 17:42:25.974888004+00:00,1 +2023-10-24 17:42:26.103173562+00:00,1 +2023-10-24 17:42:26.231115710+00:00,1 +2023-10-24 17:42:26.358229559+00:00,1 +2023-10-24 17:42:26.486977835+00:00,1 +2023-10-24 17:42:26.615533933+00:00,1 +2023-10-24 17:42:26.742431191+00:00,1 +2023-10-24 17:42:26.870062742+00:00,1 +2023-10-24 17:42:26.997979226+00:00,1 +2023-10-24 17:42:27.125323805+00:00,1 +2023-10-24 17:42:27.253431879+00:00,1 +2023-10-24 17:42:27.380433297+00:00,1 +2023-10-24 17:42:27.508369150+00:00,1 +2023-10-24 17:42:27.636784125+00:00,1 +2023-10-24 17:42:27.764847652+00:00,1 +2023-10-24 17:42:27.893213067+00:00,1 +2023-10-24 17:42:28.020826297+00:00,1 +2023-10-24 17:42:28.148077107+00:00,1 +2023-10-24 17:42:28.275620419+00:00,1 +2023-10-24 17:42:28.403985185+00:00,1 +2023-10-24 17:42:28.532550228+00:00,1 +2023-10-24 17:42:28.660628443+00:00,1 +2023-10-24 17:42:28.790324818+00:00,1 +2023-10-24 17:42:28.918226046+00:00,1 +2023-10-24 17:42:29.045449531+00:00,1 +2023-10-24 17:42:29.173757385+00:00,1 +2023-10-24 17:42:29.302982723+00:00,1 +2023-10-24 17:42:29.432200955+00:00,1 +2023-10-24 17:42:29.559315237+00:00,1 +2023-10-24 17:42:29.686892317+00:00,1 +2023-10-24 17:42:29.814782793+00:00,1 +2023-10-24 17:42:29.941044463+00:00,1 +2023-10-24 17:42:30.067890804+00:00,1 +2023-10-24 17:42:30.195518730+00:00,1 +2023-10-24 17:42:30.323077745+00:00,1 +2023-10-24 17:42:30.451466271+00:00,1 +2023-10-24 17:42:30.578997258+00:00,1 +2023-10-24 17:42:30.707220894+00:00,1 +2023-10-24 17:42:30.836359081+00:00,1 +2023-10-24 17:42:30.963825330+00:00,1 +2023-10-24 17:42:31.091484840+00:00,1 +2023-10-24 17:42:31.219619319+00:00,1 +2023-10-24 17:42:31.347892042+00:00,1 +2023-10-24 17:42:31.477578368+00:00,1 +2023-10-24 17:42:31.605502163+00:00,1 +2023-10-24 17:42:31.734030757+00:00,1 +2023-10-24 17:42:31.862562701+00:00,1 +2023-10-24 17:42:31.992811095+00:00,1 +2023-10-24 17:42:32.120240623+00:00,1 +2023-10-24 17:42:32.249013978+00:00,1 +2023-10-24 17:42:32.377623816+00:00,1 +2023-10-24 17:42:32.505066842+00:00,1 +2023-10-24 17:42:32.632760861+00:00,1 +2023-10-24 17:42:32.760134535+00:00,1 +2023-10-24 17:42:32.887906965+00:00,1 +2023-10-24 17:42:33.015970987+00:00,1 +2023-10-24 17:42:33.143229916+00:00,1 +2023-10-24 17:42:33.271386044+00:00,1 +2023-10-24 17:42:33.399471550+00:00,1 +2023-10-24 17:42:33.527650255+00:00,1 +2023-10-24 17:42:33.656969588+00:00,1 +2023-10-24 17:42:33.785623009+00:00,1 +2023-10-24 17:42:33.915237046+00:00,1 +2023-10-24 17:42:34.043620974+00:00,1 +2023-10-24 17:42:34.171862930+00:00,1 +2023-10-24 17:42:34.300664991+00:00,1 +2023-10-24 17:42:34.427934515+00:00,1 +2023-10-24 17:42:34.555565799+00:00,1 +2023-10-24 17:42:34.685721721+00:00,1 +2023-10-24 17:42:34.813757582+00:00,1 +2023-10-24 17:42:34.940877358+00:00,1 +2023-10-24 17:42:35.068257394+00:00,1 +2023-10-24 17:42:35.196905374+00:00,1 +2023-10-24 17:42:35.325177822+00:00,1 +2023-10-24 17:42:35.454648301+00:00,1 +2023-10-24 17:42:35.582731443+00:00,1 +2023-10-24 17:42:35.712215492+00:00,1 +2023-10-24 17:42:35.840452052+00:00,1 +2023-10-24 17:42:35.968072843+00:00,1 +2023-10-24 17:42:36.095537997+00:00,1 +2023-10-24 17:42:36.222924648+00:00,1 +2023-10-24 17:42:36.351250123+00:00,1 +2023-10-24 17:42:36.479203417+00:00,1 +2023-10-24 17:42:36.607264669+00:00,1 +2023-10-24 17:42:36.735640283+00:00,1 +2023-10-24 17:42:36.863204178+00:00,1 +2023-10-24 17:42:36.990224576+00:00,1 +2023-10-24 17:42:37.117637351+00:00,1 +2023-10-24 17:42:37.245639432+00:00,1 +2023-10-24 17:42:37.373525123+00:00,1 +2023-10-24 17:42:37.501488351+00:00,1 +2023-10-24 17:42:37.628012068+00:00,1 +2023-10-24 17:42:37.755931849+00:00,1 +2023-10-24 17:42:37.883644679+00:00,1 +2023-10-24 17:42:38.012649244+00:00,1 +2023-10-24 17:42:38.139490579+00:00,1 +2023-10-24 17:42:38.267394672+00:00,1 +2023-10-24 17:42:38.395749496+00:00,1 +2023-10-24 17:42:38.524131813+00:00,1 +2023-10-24 17:42:38.651669838+00:00,1 +2023-10-24 17:42:38.778382113+00:00,1 +2023-10-24 17:42:38.905069449+00:00,1 +2023-10-24 17:42:39.032658831+00:00,1 +2023-10-24 17:42:39.160655625+00:00,1 +2023-10-24 17:42:39.288423469+00:00,1 +2023-10-24 17:42:39.416198344+00:00,1 +2023-10-24 17:42:39.544126099+00:00,1 +2023-10-24 17:42:39.671547240+00:00,1 +2023-10-24 17:42:39.799622165+00:00,1 +2023-10-24 17:42:39.927813480+00:00,1 +2023-10-24 17:42:40.057081920+00:00,1 +2023-10-24 17:42:40.184853510+00:00,1 +2023-10-24 17:42:40.313627823+00:00,1 +2023-10-24 17:42:40.441467744+00:00,1 +2023-10-24 17:42:40.570141773+00:00,1 +2023-10-24 17:42:40.698003083+00:00,1 +2023-10-24 17:42:40.826734720+00:00,1 +2023-10-24 17:42:40.954813903+00:00,1 +2023-10-24 17:42:41.081668182+00:00,1 +2023-10-24 17:42:41.212486391+00:00,1 +2023-10-24 17:42:41.340431465+00:00,1 +2023-10-24 17:42:41.467456999+00:00,1 +2023-10-24 17:42:41.595097859+00:00,1 +2023-10-24 17:42:41.721983839+00:00,1 +2023-10-24 17:42:41.849410527+00:00,1 +2023-10-24 17:42:41.977915888+00:00,1 +2023-10-24 17:42:42.105965164+00:00,1 +2023-10-24 17:42:42.233972945+00:00,1 +2023-10-24 17:42:42.361423553+00:00,1 +2023-10-24 17:42:42.488901898+00:00,1 +2023-10-24 17:42:42.616557549+00:00,1 +2023-10-24 17:42:42.744345024+00:00,1 +2023-10-24 17:42:42.871684309+00:00,1 +2023-10-24 17:42:42.999685229+00:00,1 +2023-10-24 17:42:43.127199767+00:00,1 +2023-10-24 17:42:43.255933987+00:00,1 +2023-10-24 17:42:43.385354593+00:00,1 +2023-10-24 17:42:43.513620036+00:00,1 +2023-10-24 17:42:43.641602586+00:00,1 +2023-10-24 17:42:43.769156803+00:00,1 +2023-10-24 17:42:43.896963017+00:00,1 +2023-10-24 17:42:44.026042296+00:00,1 +2023-10-24 17:42:44.153684978+00:00,1 +2023-10-24 17:42:44.281409278+00:00,1 +2023-10-24 17:42:44.410104019+00:00,1 +2023-10-24 17:42:44.537826800+00:00,1 +2023-10-24 17:42:44.665666249+00:00,1 +2023-10-24 17:42:44.793767917+00:00,1 +2023-10-24 17:42:44.921794005+00:00,1 +2023-10-24 17:42:45.050746988+00:00,1 +2023-10-24 17:42:45.178238062+00:00,1 +2023-10-24 17:42:45.306094239+00:00,1 +2023-10-24 17:42:45.433818853+00:00,1 +2023-10-24 17:42:45.560912134+00:00,1 +2023-10-24 17:42:45.689500775+00:00,1 +2023-10-24 17:42:45.818389307+00:00,1 +2023-10-24 17:42:45.945325463+00:00,1 +2023-10-24 17:42:46.072335238+00:00,1 +2023-10-24 17:42:46.200962183+00:00,1 +2023-10-24 17:42:46.328643235+00:00,1 +2023-10-24 17:42:46.455916176+00:00,1 +2023-10-24 17:42:46.584518271+00:00,1 +2023-10-24 17:42:46.713745292+00:00,1 +2023-10-24 17:42:46.841459953+00:00,1 +2023-10-24 17:42:46.970514872+00:00,1 +2023-10-24 17:42:47.097551849+00:00,1 +2023-10-24 17:42:47.224782220+00:00,1 +2023-10-24 17:42:47.352982253+00:00,1 +2023-10-24 17:42:47.479530102+00:00,1 +2023-10-24 17:42:47.606530634+00:00,1 +2023-10-24 17:42:47.733392544+00:00,1 +2023-10-24 17:42:47.862374681+00:00,1 +2023-10-24 17:42:47.990159301+00:00,1 +2023-10-24 17:42:48.117989254+00:00,1 +2023-10-24 17:42:48.246043130+00:00,1 +2023-10-24 17:42:48.375206193+00:00,1 +2023-10-24 17:42:48.503767392+00:00,1 +2023-10-24 17:42:48.631329840+00:00,1 +2023-10-24 17:42:48.760507266+00:00,1 +2023-10-24 17:42:48.889162714+00:00,1 +2023-10-24 17:42:49.018914661+00:00,1 +2023-10-24 17:42:49.146125583+00:00,1 +2023-10-24 17:42:49.272813065+00:00,1 +2023-10-24 17:42:49.400769754+00:00,1 +2023-10-24 17:42:49.528567220+00:00,1 +2023-10-24 17:42:49.657327287+00:00,1 +2023-10-24 17:42:49.784996822+00:00,1 +2023-10-24 17:42:49.914570583+00:00,1 +2023-10-24 17:42:50.042988218+00:00,1 +2023-10-24 17:42:50.171495749+00:00,1 +2023-10-24 17:42:50.299736132+00:00,1 +2023-10-24 17:42:50.428573871+00:00,1 +2023-10-24 17:42:50.558137645+00:00,1 +2023-10-24 17:42:50.686715104+00:00,1 +2023-10-24 17:42:50.814102037+00:00,1 +2023-10-24 17:42:50.945433445+00:00,1 +2023-10-24 17:42:51.076175905+00:00,1 +2023-10-24 17:42:51.204369661+00:00,1 +2023-10-24 17:42:51.332747219+00:00,1 +2023-10-24 17:42:51.461405478+00:00,1 +2023-10-24 17:42:51.590016769+00:00,1 +2023-10-24 17:42:51.718435174+00:00,1 +2023-10-24 17:42:51.848102507+00:00,1 +2023-10-24 17:42:51.975710572+00:00,1 +2023-10-24 17:42:52.103541199+00:00,1 +2023-10-24 17:42:52.232066738+00:00,1 +2023-10-24 17:42:52.360423288+00:00,1 +2023-10-24 17:42:52.489137642+00:00,1 +2023-10-24 17:42:52.617617159+00:00,1 +2023-10-24 17:42:52.746261681+00:00,1 +2023-10-24 17:42:52.875457932+00:00,1 +2023-10-24 17:42:53.003105204+00:00,1 +2023-10-24 17:42:53.131891802+00:00,1 +2023-10-24 17:42:53.260827958+00:00,1 +2023-10-24 17:42:53.389946817+00:00,1 +2023-10-24 17:42:53.518853473+00:00,1 +2023-10-24 17:42:53.646882188+00:00,1 +2023-10-24 17:42:53.775904880+00:00,1 +2023-10-24 17:42:53.905893476+00:00,1 +2023-10-24 17:42:54.036442010+00:00,1 +2023-10-24 17:42:54.166817143+00:00,1 +2023-10-24 17:42:54.295812038+00:00,1 +2023-10-24 17:42:54.424624065+00:00,1 +2023-10-24 17:42:54.554104581+00:00,1 +2023-10-24 17:42:54.682547072+00:00,1 +2023-10-24 17:42:54.812105894+00:00,1 +2023-10-24 17:42:54.941157159+00:00,1 +2023-10-24 17:42:55.071555781+00:00,1 +2023-10-24 17:42:55.199206129+00:00,1 +2023-10-24 17:42:55.327187059+00:00,1 +2023-10-24 17:42:55.456118044+00:00,1 +2023-10-24 17:42:55.583807440+00:00,1 +2023-10-24 17:42:55.712438127+00:00,1 +2023-10-24 17:42:55.842390049+00:00,1 +2023-10-24 17:42:55.970961927+00:00,1 +2023-10-24 17:42:56.099500843+00:00,1 +2023-10-24 17:42:56.227628130+00:00,1 +2023-10-24 17:42:56.356577984+00:00,1 +2023-10-24 17:42:56.485193185+00:00,1 +2023-10-24 17:42:56.612850498+00:00,1 +2023-10-24 17:42:56.741600742+00:00,1 +2023-10-24 17:42:56.869956576+00:00,1 +2023-10-24 17:42:56.998531388+00:00,1 +2023-10-24 17:42:57.127994777+00:00,1 +2023-10-24 17:42:57.256074554+00:00,1 +2023-10-24 17:42:57.384867550+00:00,1 +2023-10-24 17:42:57.512920671+00:00,1 +2023-10-24 17:42:57.643313840+00:00,1 +2023-10-24 17:42:57.771180838+00:00,1 +2023-10-24 17:42:57.900390108+00:00,1 +2023-10-24 17:42:58.028691902+00:00,1 +2023-10-24 17:42:58.158232066+00:00,1 +2023-10-24 17:42:58.285946844+00:00,1 +2023-10-24 17:42:58.415043125+00:00,1 +2023-10-24 17:42:58.543853497+00:00,1 +2023-10-24 17:42:58.672323231+00:00,1 +2023-10-24 17:42:58.801051410+00:00,1 +2023-10-24 17:42:58.930339480+00:00,1 +2023-10-24 17:42:59.060134525+00:00,1 +2023-10-24 17:42:59.188519218+00:00,1 +2023-10-24 17:42:59.316792365+00:00,1 +2023-10-24 17:42:59.445262241+00:00,1 +2023-10-24 17:42:59.573677947+00:00,1 +2023-10-24 17:42:59.702209145+00:00,1 +2023-10-24 17:42:59.829966409+00:00,1 +2023-10-24 17:42:59.957668165+00:00,1 +2023-10-24 17:43:00.085519475+00:00,1 +2023-10-24 17:43:00.212709565+00:00,1 +2023-10-24 17:43:00.339899323+00:00,1 +2023-10-24 17:43:00.468342827+00:00,1 +2023-10-24 17:43:00.595144298+00:00,1 +2023-10-24 17:43:00.722473475+00:00,1 +2023-10-24 17:43:00.851139756+00:00,1 +2023-10-24 17:43:00.979914053+00:00,1 +2023-10-24 17:43:01.108048602+00:00,1 +2023-10-24 17:43:01.236484546+00:00,1 +2023-10-24 17:43:01.364525014+00:00,1 +2023-10-24 17:43:01.493372604+00:00,1 +2023-10-24 17:43:01.621539254+00:00,1 +2023-10-24 17:43:01.751383350+00:00,1 +2023-10-24 17:43:01.880128365+00:00,1 +2023-10-24 17:43:02.007277721+00:00,1 +2023-10-24 17:43:02.134086894+00:00,1 +2023-10-24 17:43:02.262648356+00:00,1 +2023-10-24 17:43:02.388562375+00:00,1 +2023-10-24 17:43:02.517052707+00:00,1 +2023-10-24 17:43:02.645849944+00:00,1 +2023-10-24 17:43:02.773813857+00:00,1 +2023-10-24 17:43:02.900893661+00:00,1 +2023-10-24 17:43:03.029523406+00:00,1 +2023-10-24 17:43:03.157782554+00:00,1 +2023-10-24 17:43:03.285424898+00:00,1 +2023-10-24 17:43:03.412521946+00:00,1 +2023-10-24 17:43:03.540759466+00:00,1 +2023-10-24 17:43:03.668660518+00:00,1 +2023-10-24 17:43:03.796932836+00:00,1 +2023-10-24 17:43:03.925688554+00:00,1 +2023-10-24 17:43:04.053243405+00:00,1 +2023-10-24 17:43:04.181663449+00:00,1 +2023-10-24 17:43:04.310061571+00:00,1 +2023-10-24 17:43:04.438011837+00:00,1 +2023-10-24 17:43:04.566893368+00:00,1 +2023-10-24 17:43:04.696009350+00:00,1 +2023-10-24 17:43:04.824036091+00:00,1 +2023-10-24 17:43:04.951164229+00:00,1 +2023-10-24 17:43:05.081611754+00:00,1 +2023-10-24 17:43:05.209253934+00:00,1 +2023-10-24 17:43:05.335878580+00:00,1 +2023-10-24 17:43:05.464474122+00:00,1 +2023-10-24 17:43:05.591542772+00:00,1 +2023-10-24 17:43:05.718031083+00:00,1 +2023-10-24 17:43:05.848676838+00:00,1 +2023-10-24 17:43:05.977051381+00:00,1 +2023-10-24 17:43:06.104380646+00:00,1 +2023-10-24 17:43:06.232033191+00:00,1 +2023-10-24 17:43:06.359925048+00:00,1 +2023-10-24 17:43:06.487507715+00:00,1 +2023-10-24 17:43:06.614664096+00:00,1 +2023-10-24 17:43:06.741547218+00:00,1 +2023-10-24 17:43:06.867886678+00:00,1 +2023-10-24 17:43:06.995353524+00:00,1 +2023-10-24 17:43:07.122939136+00:00,1 +2023-10-24 17:43:07.252067248+00:00,1 +2023-10-24 17:43:07.379633112+00:00,1 +2023-10-24 17:43:07.507351811+00:00,1 +2023-10-24 17:43:07.635220376+00:00,1 +2023-10-24 17:43:07.762245735+00:00,1 +2023-10-24 17:43:07.890689933+00:00,1 +2023-10-24 17:43:08.018426948+00:00,1 +2023-10-24 17:43:08.146465830+00:00,1 +2023-10-24 17:43:08.275227331+00:00,1 +2023-10-24 17:43:08.402165661+00:00,1 +2023-10-24 17:43:08.529326068+00:00,1 +2023-10-24 17:43:08.657629464+00:00,1 +2023-10-24 17:43:08.786380276+00:00,1 +2023-10-24 17:43:08.914935390+00:00,1 +2023-10-24 17:43:09.044010327+00:00,1 +2023-10-24 17:43:09.171489600+00:00,1 +2023-10-24 17:43:09.299456464+00:00,1 +2023-10-24 17:43:09.426647734+00:00,1 +2023-10-24 17:43:09.553538273+00:00,1 +2023-10-24 17:43:09.680253398+00:00,1 +2023-10-24 17:43:09.809776593+00:00,1 +2023-10-24 17:43:09.937434678+00:00,1 +2023-10-24 17:43:10.063943163+00:00,1 +2023-10-24 17:43:10.191911169+00:00,1 +2023-10-24 17:43:10.318452677+00:00,1 +2023-10-24 17:43:10.446090390+00:00,1 +2023-10-24 17:43:10.574204769+00:00,1 +2023-10-24 17:43:10.703584110+00:00,1 +2023-10-24 17:43:10.831298965+00:00,1 +2023-10-24 17:43:10.958316850+00:00,1 +2023-10-24 17:43:11.086251502+00:00,1 +2023-10-24 17:43:11.214172531+00:00,1 +2023-10-24 17:43:11.342738797+00:00,1 +2023-10-24 17:43:11.469477055+00:00,1 +2023-10-24 17:43:11.597079012+00:00,1 +2023-10-24 17:43:11.724384065+00:00,1 +2023-10-24 17:43:11.853209158+00:00,1 +2023-10-24 17:43:11.981668620+00:00,1 +2023-10-24 17:43:12.110898206+00:00,1 +2023-10-24 17:43:12.239417126+00:00,1 +2023-10-24 17:43:12.366996545+00:00,1 +2023-10-24 17:43:12.495186725+00:00,1 +2023-10-24 17:43:12.626164351+00:00,1 +2023-10-24 17:43:12.754698203+00:00,1 +2023-10-24 17:43:12.882484163+00:00,1 +2023-10-24 17:43:13.011037964+00:00,1 +2023-10-24 17:43:13.140126147+00:00,1 +2023-10-24 17:43:13.269460568+00:00,1 +2023-10-24 17:43:13.397713307+00:00,1 +2023-10-24 17:43:13.526357296+00:00,1 +2023-10-24 17:43:13.654335035+00:00,1 +2023-10-24 17:43:13.782965992+00:00,1 +2023-10-24 17:43:13.912769776+00:00,1 +2023-10-24 17:43:14.039922493+00:00,1 +2023-10-24 17:43:14.167290138+00:00,1 +2023-10-24 17:43:14.294893058+00:00,1 +2023-10-24 17:43:14.422119252+00:00,1 +2023-10-24 17:43:14.549270046+00:00,1 +2023-10-24 17:43:14.678062531+00:00,1 +2023-10-24 17:43:14.805492214+00:00,1 +2023-10-24 17:43:14.932208724+00:00,1 +2023-10-24 17:43:15.059210971+00:00,1 +2023-10-24 17:43:15.187755230+00:00,1 +2023-10-24 17:43:15.316061994+00:00,1 +2023-10-24 17:43:15.443928324+00:00,1 +2023-10-24 17:43:15.571250152+00:00,1 +2023-10-24 17:43:15.698955539+00:00,1 +2023-10-24 17:43:15.827173225+00:00,1 +2023-10-24 17:43:15.954324808+00:00,1 +2023-10-24 17:43:16.081331853+00:00,1 +2023-10-24 17:43:16.209548139+00:00,1 +2023-10-24 17:43:16.336414520+00:00,1 +2023-10-24 17:43:16.465138754+00:00,1 +2023-10-24 17:43:16.593254375+00:00,1 +2023-10-24 17:43:16.721305568+00:00,1 +2023-10-24 17:43:16.849055785+00:00,1 +2023-10-24 17:43:16.977755441+00:00,1 +2023-10-24 17:43:17.106717915+00:00,1 +2023-10-24 17:43:17.234129012+00:00,1 +2023-10-24 17:43:17.362192637+00:00,1 +2023-10-24 17:43:17.489666013+00:00,1 +2023-10-24 17:43:17.617320873+00:00,1 +2023-10-24 17:43:17.745702978+00:00,1 +2023-10-24 17:43:17.873509472+00:00,1 +2023-10-24 17:43:18.000808603+00:00,1 +2023-10-24 17:43:18.128553907+00:00,1 +2023-10-24 17:43:18.255659005+00:00,1 +2023-10-24 17:43:18.382272201+00:00,1 +2023-10-24 17:43:18.509094818+00:00,1 +2023-10-24 17:43:18.638498687+00:00,1 +2023-10-24 17:43:18.766895085+00:00,1 +2023-10-24 17:43:18.894728512+00:00,1 +2023-10-24 17:43:19.023113108+00:00,1 +2023-10-24 17:43:19.149866900+00:00,1 +2023-10-24 17:43:19.277908122+00:00,1 +2023-10-24 17:43:19.407429592+00:00,1 +2023-10-24 17:43:19.535621878+00:00,1 +2023-10-24 17:43:19.662902106+00:00,1 +2023-10-24 17:43:19.791772249+00:00,1 +2023-10-24 17:43:19.919881652+00:00,1 +2023-10-24 17:43:20.047881605+00:00,1 +2023-10-24 17:43:20.174364119+00:00,1 +2023-10-24 17:43:20.303469173+00:00,1 +2023-10-24 17:43:20.431614619+00:00,1 +2023-10-24 17:43:20.558909854+00:00,1 +2023-10-24 17:43:20.685861628+00:00,1 +2023-10-24 17:43:20.815012050+00:00,1 +2023-10-24 17:43:20.946445701+00:00,1 +2023-10-24 17:43:21.074037952+00:00,1 +2023-10-24 17:43:21.201866415+00:00,1 +2023-10-24 17:43:21.329453763+00:00,1 +2023-10-24 17:43:21.457982620+00:00,1 +2023-10-24 17:43:21.586507109+00:00,1 +2023-10-24 17:43:21.714920527+00:00,1 +2023-10-24 17:43:21.844017069+00:00,1 +2023-10-24 17:43:21.972080039+00:00,1 +2023-10-24 17:43:22.099548517+00:00,1 +2023-10-24 17:43:22.227777178+00:00,1 +2023-10-24 17:43:22.356247245+00:00,1 +2023-10-24 17:43:22.484136388+00:00,1 +2023-10-24 17:43:22.612726744+00:00,1 +2023-10-24 17:43:22.740053333+00:00,1 +2023-10-24 17:43:22.867060854+00:00,1 +2023-10-24 17:43:22.995288200+00:00,1 +2023-10-24 17:43:23.123388812+00:00,1 +2023-10-24 17:43:23.251352630+00:00,1 +2023-10-24 17:43:23.378009925+00:00,1 +2023-10-24 17:43:23.505856827+00:00,1 +2023-10-24 17:43:23.632892654+00:00,1 +2023-10-24 17:43:23.759657473+00:00,1 +2023-10-24 17:43:23.886503030+00:00,1 +2023-10-24 17:43:24.015668460+00:00,1 +2023-10-24 17:43:24.144256717+00:00,1 +2023-10-24 17:43:24.270326485+00:00,1 +2023-10-24 17:43:24.396693705+00:00,1 +2023-10-24 17:43:24.523343353+00:00,1 +2023-10-24 17:43:24.650723604+00:00,1 +2023-10-24 17:43:24.780414266+00:00,1 +2023-10-24 17:43:24.907519255+00:00,1 +2023-10-24 17:43:25.035803435+00:00,1 +2023-10-24 17:43:25.164115918+00:00,1 +2023-10-24 17:43:25.292004643+00:00,1 +2023-10-24 17:43:25.419656350+00:00,1 +2023-10-24 17:43:25.548301176+00:00,1 +2023-10-24 17:43:25.675297855+00:00,1 +2023-10-24 17:43:25.803141031+00:00,1 +2023-10-24 17:43:25.931103001+00:00,1 +2023-10-24 17:43:26.060147951+00:00,1 +2023-10-24 17:43:26.188580713+00:00,1 +2023-10-24 17:43:26.316150820+00:00,1 +2023-10-24 17:43:26.444394047+00:00,1 +2023-10-24 17:43:26.573662413+00:00,1 +2023-10-24 17:43:26.701077384+00:00,1 +2023-10-24 17:43:26.829452646+00:00,1 +2023-10-24 17:43:26.958441122+00:00,1 +2023-10-24 17:43:27.087297127+00:00,1 +2023-10-24 17:43:27.215077828+00:00,1 +2023-10-24 17:43:27.342073680+00:00,1 +2023-10-24 17:43:27.470143060+00:00,1 +2023-10-24 17:43:27.597254523+00:00,1 +2023-10-24 17:43:27.724936027+00:00,1 +2023-10-24 17:43:27.852891825+00:00,1 +2023-10-24 17:43:27.982287415+00:00,1 +2023-10-24 17:43:28.112122287+00:00,1 +2023-10-24 17:43:28.239714572+00:00,1 +2023-10-24 17:43:28.367836353+00:00,1 +2023-10-24 17:43:28.496216730+00:00,1 +2023-10-24 17:43:28.624023488+00:00,1 +2023-10-24 17:43:28.753945008+00:00,1 +2023-10-24 17:43:28.882797544+00:00,1 +2023-10-24 17:43:29.011030610+00:00,1 +2023-10-24 17:43:29.138468798+00:00,1 +2023-10-24 17:43:29.266222483+00:00,1 +2023-10-24 17:43:29.394123183+00:00,1 +2023-10-24 17:43:29.521897356+00:00,1 +2023-10-24 17:43:29.649290736+00:00,1 +2023-10-24 17:43:29.778807813+00:00,1 +2023-10-24 17:43:29.906463949+00:00,1 +2023-10-24 17:43:30.033776097+00:00,1 +2023-10-24 17:43:30.161652513+00:00,1 +2023-10-24 17:43:30.288748143+00:00,1 +2023-10-24 17:43:30.417672004+00:00,1 +2023-10-24 17:43:30.546237667+00:00,1 +2023-10-24 17:43:30.673920739+00:00,1 +2023-10-24 17:43:30.801474339+00:00,1 +2023-10-24 17:43:30.929814617+00:00,1 +2023-10-24 17:43:31.058135890+00:00,1 +2023-10-24 17:43:31.186780813+00:00,1 +2023-10-24 17:43:31.313574964+00:00,1 +2023-10-24 17:43:31.441885146+00:00,1 +2023-10-24 17:43:31.569243646+00:00,1 +2023-10-24 17:43:31.697804740+00:00,1 +2023-10-24 17:43:31.825665968+00:00,1 +2023-10-24 17:43:31.952732411+00:00,1 +2023-10-24 17:43:32.080912438+00:00,1 +2023-10-24 17:43:32.209039130+00:00,1 +2023-10-24 17:43:32.337322998+00:00,1 +2023-10-24 17:43:32.465767266+00:00,1 +2023-10-24 17:43:32.593670282+00:00,1 +2023-10-24 17:43:32.721769285+00:00,1 +2023-10-24 17:43:32.849178059+00:00,1 +2023-10-24 17:43:32.976548139+00:00,1 +2023-10-24 17:43:33.107251769+00:00,1 +2023-10-24 17:43:33.236108321+00:00,1 +2023-10-24 17:43:33.364012777+00:00,1 +2023-10-24 17:43:33.493369509+00:00,1 +2023-10-24 17:43:33.620848760+00:00,1 +2023-10-24 17:43:33.749378185+00:00,1 +2023-10-24 17:43:33.878790441+00:00,1 +2023-10-24 17:43:34.007685185+00:00,1 +2023-10-24 17:43:34.137251312+00:00,1 +2023-10-24 17:43:34.267211420+00:00,1 +2023-10-24 17:43:34.394257865+00:00,1 +2023-10-24 17:43:34.523013672+00:00,1 +2023-10-24 17:43:34.651110237+00:00,1 +2023-10-24 17:43:34.780860688+00:00,1 +2023-10-24 17:43:34.909471908+00:00,1 +2023-10-24 17:43:35.043104258+00:00,1 +2023-10-24 17:43:35.171976321+00:00,1 +2023-10-24 17:43:35.300573174+00:00,1 +2023-10-24 17:43:35.429422015+00:00,1 +2023-10-24 17:43:35.557590658+00:00,1 +2023-10-24 17:43:35.685538570+00:00,1 +2023-10-24 17:43:35.815221067+00:00,1 +2023-10-24 17:43:35.944031033+00:00,1 +2023-10-24 17:43:36.071667820+00:00,1 +2023-10-24 17:43:36.200415764+00:00,1 +2023-10-24 17:43:36.330615421+00:00,1 +2023-10-24 17:43:36.459002965+00:00,1 +2023-10-24 17:43:36.587264217+00:00,1 +2023-10-24 17:43:36.714895803+00:00,1 +2023-10-24 17:43:36.842522521+00:00,1 +2023-10-24 17:43:36.971474683+00:00,1 +2023-10-24 17:43:37.099826111+00:00,1 +2023-10-24 17:43:37.227925132+00:00,1 +2023-10-24 17:43:37.357457071+00:00,1 +2023-10-24 17:43:37.485825625+00:00,1 +2023-10-24 17:43:37.614533802+00:00,1 +2023-10-24 17:43:37.742765849+00:00,1 +2023-10-24 17:43:37.872721084+00:00,1 +2023-10-24 17:43:38.002102739+00:00,1 +2023-10-24 17:43:38.129441763+00:00,1 +2023-10-24 17:43:38.260096246+00:00,1 +2023-10-24 17:43:38.389395353+00:00,1 +2023-10-24 17:43:38.516514901+00:00,1 +2023-10-24 17:43:38.642748100+00:00,1 +2023-10-24 17:43:38.770058165+00:00,1 +2023-10-24 17:43:38.898754266+00:00,1 +2023-10-24 17:43:39.026357130+00:00,1 +2023-10-24 17:43:39.155078051+00:00,1 +2023-10-24 17:43:39.283749088+00:00,1 +2023-10-24 17:43:39.413715138+00:00,1 +2023-10-24 17:43:39.543652979+00:00,1 +2023-10-24 17:43:39.673069789+00:00,1 +2023-10-24 17:43:39.803584285+00:00,1 +2023-10-24 17:43:39.933016727+00:00,1 +2023-10-24 17:43:40.063292851+00:00,1 +2023-10-24 17:43:40.191673632+00:00,1 +2023-10-24 17:43:40.319677565+00:00,1 +2023-10-24 17:43:40.449554600+00:00,1 +2023-10-24 17:43:40.579216493+00:00,1 +2023-10-24 17:43:40.706636779+00:00,1 +2023-10-24 17:43:40.835646402+00:00,1 +2023-10-24 17:43:40.964311729+00:00,1 +2023-10-24 17:43:41.091480160+00:00,1 +2023-10-24 17:43:41.219534659+00:00,1 +2023-10-24 17:43:41.347141716+00:00,1 +2023-10-24 17:43:41.475569419+00:00,1 +2023-10-24 17:43:41.604301276+00:00,1 +2023-10-24 17:43:41.732845275+00:00,1 +2023-10-24 17:43:41.860529583+00:00,1 +2023-10-24 17:43:41.989363280+00:00,1 +2023-10-24 17:43:42.118090679+00:00,1 +2023-10-24 17:43:42.246678794+00:00,1 +2023-10-24 17:43:42.375876732+00:00,1 +2023-10-24 17:43:42.504812534+00:00,1 +2023-10-24 17:43:42.633430962+00:00,1 +2023-10-24 17:43:42.761773057+00:00,1 +2023-10-24 17:43:42.890974110+00:00,1 +2023-10-24 17:43:43.019304181+00:00,1 +2023-10-24 17:43:43.147313707+00:00,1 +2023-10-24 17:43:43.277242269+00:00,1 +2023-10-24 17:43:43.404340047+00:00,1 +2023-10-24 17:43:43.532811540+00:00,1 +2023-10-24 17:43:43.662478838+00:00,1 +2023-10-24 17:43:43.791336463+00:00,1 +2023-10-24 17:43:43.920058426+00:00,1 +2023-10-24 17:43:44.049094786+00:00,1 +2023-10-24 17:43:44.175994595+00:00,1 +2023-10-24 17:43:44.303930389+00:00,1 +2023-10-24 17:43:44.432000874+00:00,1 +2023-10-24 17:43:44.559207323+00:00,1 +2023-10-24 17:43:44.686379950+00:00,1 +2023-10-24 17:43:44.814147622+00:00,1 +2023-10-24 17:43:44.942382444+00:00,1 +2023-10-24 17:43:45.071052803+00:00,1 +2023-10-24 17:43:45.198797291+00:00,1 +2023-10-24 17:43:45.327007565+00:00,1 +2023-10-24 17:43:45.456691796+00:00,1 +2023-10-24 17:43:45.585380361+00:00,1 +2023-10-24 17:43:45.713957276+00:00,1 +2023-10-24 17:43:45.841942932+00:00,1 +2023-10-24 17:43:45.969932434+00:00,1 +2023-10-24 17:43:46.097470766+00:00,1 +2023-10-24 17:43:46.227058924+00:00,1 +2023-10-24 17:43:46.356202137+00:00,1 +2023-10-24 17:43:46.484861334+00:00,1 +2023-10-24 17:43:46.613393395+00:00,1 +2023-10-24 17:43:46.741473567+00:00,1 +2023-10-24 17:43:46.869162119+00:00,1 +2023-10-24 17:43:46.997109462+00:00,1 +2023-10-24 17:43:47.125888179+00:00,1 +2023-10-24 17:43:47.255218806+00:00,1 +2023-10-24 17:43:47.383431254+00:00,1 +2023-10-24 17:43:47.513133446+00:00,1 +2023-10-24 17:43:47.643419620+00:00,1 +2023-10-24 17:43:47.769987786+00:00,1 +2023-10-24 17:43:47.897593455+00:00,1 +2023-10-24 17:43:48.025641601+00:00,1 +2023-10-24 17:43:48.153436522+00:00,1 +2023-10-24 17:43:48.282396300+00:00,1 +2023-10-24 17:43:48.410522926+00:00,1 +2023-10-24 17:43:48.539068171+00:00,1 +2023-10-24 17:43:48.668016322+00:00,1 +2023-10-24 17:43:48.795597082+00:00,1 +2023-10-24 17:43:48.924200193+00:00,1 +2023-10-24 17:43:49.051685002+00:00,1 +2023-10-24 17:43:49.179999868+00:00,1 +2023-10-24 17:43:49.307922497+00:00,1 +2023-10-24 17:43:49.439352665+00:00,1 +2023-10-24 17:43:49.568327126+00:00,1 +2023-10-24 17:43:49.694913141+00:00,1 +2023-10-24 17:43:49.823488154+00:00,1 +2023-10-24 17:43:49.952833905+00:00,1 +2023-10-24 17:43:50.080555594+00:00,1 +2023-10-24 17:43:50.209112870+00:00,1 +2023-10-24 17:43:50.336406499+00:00,1 +2023-10-24 17:43:50.463967954+00:00,1 +2023-10-24 17:43:50.591591209+00:00,1 +2023-10-24 17:43:50.720314083+00:00,1 +2023-10-24 17:43:50.848653208+00:00,1 +2023-10-24 17:43:50.976709060+00:00,1 +2023-10-24 17:43:51.104232134+00:00,1 +2023-10-24 17:43:51.231912767+00:00,1 +2023-10-24 17:43:51.359449091+00:00,1 +2023-10-24 17:43:51.486967188+00:00,1 +2023-10-24 17:43:51.614809839+00:00,1 +2023-10-24 17:43:51.742859215+00:00,1 +2023-10-24 17:43:51.871741249+00:00,1 +2023-10-24 17:43:52.000218171+00:00,1 +2023-10-24 17:43:52.128796680+00:00,1 +2023-10-24 17:43:52.257027168+00:00,1 +2023-10-24 17:43:52.384420794+00:00,1 +2023-10-24 17:43:52.512745777+00:00,1 +2023-10-24 17:43:52.640202652+00:00,1 +2023-10-24 17:43:52.767255261+00:00,1 +2023-10-24 17:43:52.896355039+00:00,1 +2023-10-24 17:43:53.023718723+00:00,1 +2023-10-24 17:43:53.150789345+00:00,1 +2023-10-24 17:43:53.277037980+00:00,1 +2023-10-24 17:43:53.404265245+00:00,1 +2023-10-24 17:43:53.531364552+00:00,1 +2023-10-24 17:43:53.658638484+00:00,1 +2023-10-24 17:43:53.786429261+00:00,1 +2023-10-24 17:43:53.915280319+00:00,1 +2023-10-24 17:43:54.042999685+00:00,1 +2023-10-24 17:43:54.169909158+00:00,1 +2023-10-24 17:43:54.299564547+00:00,1 +2023-10-24 17:43:54.426984579+00:00,1 +2023-10-24 17:43:54.555212936+00:00,1 +2023-10-24 17:43:54.682871173+00:00,1 +2023-10-24 17:43:54.811595008+00:00,1 +2023-10-24 17:43:54.940126942+00:00,1 +2023-10-24 17:43:55.068249485+00:00,1 +2023-10-24 17:43:55.196026758+00:00,1 +2023-10-24 17:43:55.324898187+00:00,1 +2023-10-24 17:43:55.454254030+00:00,1 +2023-10-24 17:43:55.581807289+00:00,1 +2023-10-24 17:43:55.709255450+00:00,1 +2023-10-24 17:43:55.837676174+00:00,1 +2023-10-24 17:43:55.965353575+00:00,1 +2023-10-24 17:43:56.093990260+00:00,1 +2023-10-24 17:43:56.222145116+00:00,1 +2023-10-24 17:43:56.349647170+00:00,1 +2023-10-24 17:43:56.477400031+00:00,1 +2023-10-24 17:43:56.604750876+00:00,1 +2023-10-24 17:43:56.732239644+00:00,1 +2023-10-24 17:43:56.860916416+00:00,1 +2023-10-24 17:43:56.992084021+00:00,1 +2023-10-24 17:43:57.120992926+00:00,1 +2023-10-24 17:43:57.248272480+00:00,1 +2023-10-24 17:43:57.376292751+00:00,1 +2023-10-24 17:43:57.504291371+00:00,1 +2023-10-24 17:43:57.631759989+00:00,1 +2023-10-24 17:43:57.759448545+00:00,1 +2023-10-24 17:43:57.887940928+00:00,1 +2023-10-24 17:43:58.015764188+00:00,1 +2023-10-24 17:43:58.143915392+00:00,1 +2023-10-24 17:43:58.272191516+00:00,1 +2023-10-24 17:43:58.399253713+00:00,1 +2023-10-24 17:43:58.527081179+00:00,1 +2023-10-24 17:43:58.655532002+00:00,1 +2023-10-24 17:43:58.783526694+00:00,1 +2023-10-24 17:43:58.911998124+00:00,1 +2023-10-24 17:43:59.038852766+00:00,1 +2023-10-24 17:43:59.166215519+00:00,1 +2023-10-24 17:43:59.294227122+00:00,1 +2023-10-24 17:43:59.422723318+00:00,1 +2023-10-24 17:43:59.551958061+00:00,1 +2023-10-24 17:43:59.679566752+00:00,1 +2023-10-24 17:43:59.809159306+00:00,1 +2023-10-24 17:43:59.936222962+00:00,1 +2023-10-24 17:44:00.064193342+00:00,1 +2023-10-24 17:44:00.192081855+00:00,1 +2023-10-24 17:44:00.320183667+00:00,1 +2023-10-24 17:44:00.448364582+00:00,1 +2023-10-24 17:44:00.577062885+00:00,1 +2023-10-24 17:44:00.705190030+00:00,1 +2023-10-24 17:44:00.833048127+00:00,1 +2023-10-24 17:44:00.962150345+00:00,1 +2023-10-24 17:44:01.092326267+00:00,1 +2023-10-24 17:44:01.220607730+00:00,1 +2023-10-24 17:44:01.348620187+00:00,1 +2023-10-24 17:44:01.477009752+00:00,1 +2023-10-24 17:44:01.604754120+00:00,1 +2023-10-24 17:44:01.732928922+00:00,1 +2023-10-24 17:44:01.860714458+00:00,1 +2023-10-24 17:44:01.988700763+00:00,1 +2023-10-24 17:44:02.116346510+00:00,1 +2023-10-24 17:44:02.243878623+00:00,1 +2023-10-24 17:44:02.371236431+00:00,1 +2023-10-24 17:44:02.499511388+00:00,1 +2023-10-24 17:44:02.626862093+00:00,1 +2023-10-24 17:44:02.754991615+00:00,1 +2023-10-24 17:44:02.884490734+00:00,1 +2023-10-24 17:44:03.014447467+00:00,1 +2023-10-24 17:44:03.142516901+00:00,1 +2023-10-24 17:44:03.269352180+00:00,1 +2023-10-24 17:44:03.396646179+00:00,1 +2023-10-24 17:44:03.524967851+00:00,1 +2023-10-24 17:44:03.652085883+00:00,1 +2023-10-24 17:44:03.780044243+00:00,1 +2023-10-24 17:44:03.907302996+00:00,1 +2023-10-24 17:44:04.035295008+00:00,1 +2023-10-24 17:44:04.164259401+00:00,1 +2023-10-24 17:44:04.292784482+00:00,1 +2023-10-24 17:44:04.420170949+00:00,1 +2023-10-24 17:44:04.547827896+00:00,1 +2023-10-24 17:44:04.677511988+00:00,1 +2023-10-24 17:44:04.804672492+00:00,1 +2023-10-24 17:44:04.932793606+00:00,1 +2023-10-24 17:44:05.060412184+00:00,1 +2023-10-24 17:44:05.188871947+00:00,1 +2023-10-24 17:44:05.316976296+00:00,1 +2023-10-24 17:44:05.444501680+00:00,1 +2023-10-24 17:44:05.573658982+00:00,1 +2023-10-24 17:44:05.700826055+00:00,1 +2023-10-24 17:44:05.830725337+00:00,1 +2023-10-24 17:44:05.959979039+00:00,1 +2023-10-24 17:44:06.089741991+00:00,1 +2023-10-24 17:44:06.217841451+00:00,1 +2023-10-24 17:44:06.345593075+00:00,1 +2023-10-24 17:44:06.474465512+00:00,1 +2023-10-24 17:44:06.602834973+00:00,1 +2023-10-24 17:44:06.731112276+00:00,1 +2023-10-24 17:44:06.858911797+00:00,1 +2023-10-24 17:44:06.987608840+00:00,1 +2023-10-24 17:44:07.120084815+00:00,1 +2023-10-24 17:44:07.249682891+00:00,1 +2023-10-24 17:44:07.380201561+00:00,1 +2023-10-24 17:44:07.509458356+00:00,1 +2023-10-24 17:44:07.639092530+00:00,1 +2023-10-24 17:44:07.768148521+00:00,1 +2023-10-24 17:44:07.896636938+00:00,1 +2023-10-24 17:44:08.024399729+00:00,1 +2023-10-24 17:44:08.152294314+00:00,1 +2023-10-24 17:44:08.280882968+00:00,1 +2023-10-24 17:44:08.408460571+00:00,1 +2023-10-24 17:44:08.536067194+00:00,1 +2023-10-24 17:44:08.663525617+00:00,1 +2023-10-24 17:44:08.792153108+00:00,1 +2023-10-24 17:44:08.920041890+00:00,1 +2023-10-24 17:44:09.048717789+00:00,1 +2023-10-24 17:44:09.177055122+00:00,1 +2023-10-24 17:44:09.306277364+00:00,1 +2023-10-24 17:44:09.434583364+00:00,1 +2023-10-24 17:44:09.562668467+00:00,1 +2023-10-24 17:44:09.690539373+00:00,1 +2023-10-24 17:44:09.818255593+00:00,1 +2023-10-24 17:44:09.948059683+00:00,1 +2023-10-24 17:44:10.076317871+00:00,1 +2023-10-24 17:44:10.203577694+00:00,1 +2023-10-24 17:44:10.330453599+00:00,1 +2023-10-24 17:44:10.458362670+00:00,1 +2023-10-24 17:44:10.586537011+00:00,1 +2023-10-24 17:44:10.713649588+00:00,1 +2023-10-24 17:44:10.841309071+00:00,1 +2023-10-24 17:44:10.968865422+00:00,1 +2023-10-24 17:44:11.097390645+00:00,1 +2023-10-24 17:44:11.225289532+00:00,1 +2023-10-24 17:44:11.353146254+00:00,1 +2023-10-24 17:44:11.480998177+00:00,1 +2023-10-24 17:44:11.608745691+00:00,1 +2023-10-24 17:44:11.737594187+00:00,1 +2023-10-24 17:44:11.865574488+00:00,1 +2023-10-24 17:44:11.993574193+00:00,1 +2023-10-24 17:44:12.121996506+00:00,1 +2023-10-24 17:44:12.249784270+00:00,1 +2023-10-24 17:44:12.378076084+00:00,1 +2023-10-24 17:44:12.506366317+00:00,1 +2023-10-24 17:44:12.633955703+00:00,1 +2023-10-24 17:44:12.762135598+00:00,1 +2023-10-24 17:44:12.890788629+00:00,1 +2023-10-24 17:44:13.017492650+00:00,1 +2023-10-24 17:44:13.145974555+00:00,1 +2023-10-24 17:44:13.275037658+00:00,1 +2023-10-24 17:44:13.403399452+00:00,1 +2023-10-24 17:44:13.531046934+00:00,1 +2023-10-24 17:44:13.658224202+00:00,1 +2023-10-24 17:44:13.787499443+00:00,1 +2023-10-24 17:44:13.916269691+00:00,1 +2023-10-24 17:44:14.044725074+00:00,1 +2023-10-24 17:44:14.173443097+00:00,1 +2023-10-24 17:44:14.301451242+00:00,1 +2023-10-24 17:44:14.429493686+00:00,1 +2023-10-24 17:44:14.558594760+00:00,1 +2023-10-24 17:44:14.689169023+00:00,1 +2023-10-24 17:44:14.817718576+00:00,1 +2023-10-24 17:44:14.945711919+00:00,1 +2023-10-24 17:44:15.074326086+00:00,1 +2023-10-24 17:44:15.201078039+00:00,1 +2023-10-24 17:44:15.329797369+00:00,1 +2023-10-24 17:44:15.457442319+00:00,1 +2023-10-24 17:44:15.585101268+00:00,1 +2023-10-24 17:44:15.712337105+00:00,1 +2023-10-24 17:44:15.842282223+00:00,1 +2023-10-24 17:44:15.969744954+00:00,1 +2023-10-24 17:44:16.098182987+00:00,1 +2023-10-24 17:44:16.227549976+00:00,1 +2023-10-24 17:44:16.356645807+00:00,1 +2023-10-24 17:44:16.484467803+00:00,1 +2023-10-24 17:44:16.611822177+00:00,1 +2023-10-24 17:44:16.740225389+00:00,1 +2023-10-24 17:44:16.870153455+00:00,1 +2023-10-24 17:44:17.000136125+00:00,1 +2023-10-24 17:44:17.129310343+00:00,1 +2023-10-24 17:44:17.259457939+00:00,1 +2023-10-24 17:44:17.388004354+00:00,1 +2023-10-24 17:44:17.516882690+00:00,1 +2023-10-24 17:44:17.645089817+00:00,1 +2023-10-24 17:44:17.775513770+00:00,1 +2023-10-24 17:44:17.904443390+00:00,1 +2023-10-24 17:44:18.032718073+00:00,1 +2023-10-24 17:44:18.160099556+00:00,1 +2023-10-24 17:44:18.286846563+00:00,1 +2023-10-24 17:44:18.414652371+00:00,1 +2023-10-24 17:44:18.543630485+00:00,1 +2023-10-24 17:44:18.671788966+00:00,1 +2023-10-24 17:44:18.802432418+00:00,1 +2023-10-24 17:44:18.931803250+00:00,1 +2023-10-24 17:44:19.061647341+00:00,1 +2023-10-24 17:44:19.191386619+00:00,1 +2023-10-24 17:44:19.322935361+00:00,1 +2023-10-24 17:44:19.455662749+00:00,1 +2023-10-24 17:44:19.587014057+00:00,1 +2023-10-24 17:44:19.717950280+00:00,1 +2023-10-24 17:44:19.847659127+00:00,1 +2023-10-24 17:44:19.975428751+00:00,1 +2023-10-24 17:44:20.103665422+00:00,1 +2023-10-24 17:44:20.231726959+00:00,1 +2023-10-24 17:44:20.360403706+00:00,1 +2023-10-24 17:44:20.488977189+00:00,1 +2023-10-24 17:44:20.618967888+00:00,1 +2023-10-24 17:44:20.748069267+00:00,1 +2023-10-24 17:44:20.876425232+00:00,1 +2023-10-24 17:44:21.005504975+00:00,1 +2023-10-24 17:44:21.133532868+00:00,1 +2023-10-24 17:44:21.262393193+00:00,1 +2023-10-24 17:44:21.392016296+00:00,1 +2023-10-24 17:44:21.521326679+00:00,1 +2023-10-24 17:44:21.648520060+00:00,1 +2023-10-24 17:44:21.777417457+00:00,1 +2023-10-24 17:44:21.906226153+00:00,1 +2023-10-24 17:44:22.034918670+00:00,1 +2023-10-24 17:44:22.161648777+00:00,1 +2023-10-24 17:44:22.289756665+00:00,1 +2023-10-24 17:44:22.417632438+00:00,1 +2023-10-24 17:44:22.546959498+00:00,1 +2023-10-24 17:44:22.676214517+00:00,1 +2023-10-24 17:44:22.804459530+00:00,1 +2023-10-24 17:44:22.931509975+00:00,1 +2023-10-24 17:44:23.061085661+00:00,1 +2023-10-24 17:44:23.189533241+00:00,1 +2023-10-24 17:44:23.318145105+00:00,1 +2023-10-24 17:44:23.447038704+00:00,1 +2023-10-24 17:44:23.574939149+00:00,1 +2023-10-24 17:44:23.702593932+00:00,1 +2023-10-24 17:44:23.829746360+00:00,1 +2023-10-24 17:44:23.956959444+00:00,1 +2023-10-24 17:44:24.085965320+00:00,1 +2023-10-24 17:44:24.215211855+00:00,1 +2023-10-24 17:44:24.344045860+00:00,1 +2023-10-24 17:44:24.472421369+00:00,1 +2023-10-24 17:44:24.600093054+00:00,1 +2023-10-24 17:44:24.728483622+00:00,1 +2023-10-24 17:44:24.856775434+00:00,1 +2023-10-24 17:44:24.985063439+00:00,1 +2023-10-24 17:44:25.113178679+00:00,1 +2023-10-24 17:44:25.241613653+00:00,1 +2023-10-24 17:44:25.368210694+00:00,1 +2023-10-24 17:44:25.494438652+00:00,1 +2023-10-24 17:44:25.620855094+00:00,1 +2023-10-24 17:44:25.748528471+00:00,1 +2023-10-24 17:44:25.876464408+00:00,1 +2023-10-24 17:44:26.005054530+00:00,1 +2023-10-24 17:44:26.132960160+00:00,1 +2023-10-24 17:44:26.260899678+00:00,1 +2023-10-24 17:44:26.388198131+00:00,1 +2023-10-24 17:44:26.515435620+00:00,1 +2023-10-24 17:44:26.643020300+00:00,1 +2023-10-24 17:44:26.770845686+00:00,1 +2023-10-24 17:44:26.899446189+00:00,1 +2023-10-24 17:44:27.026983124+00:00,1 +2023-10-24 17:44:27.156164946+00:00,1 +2023-10-24 17:44:27.284031580+00:00,1 +2023-10-24 17:44:27.411409933+00:00,1 +2023-10-24 17:44:27.540400464+00:00,1 +2023-10-24 17:44:27.667583020+00:00,1 +2023-10-24 17:44:27.795094304+00:00,1 +2023-10-24 17:44:27.923803248+00:00,1 +2023-10-24 17:44:28.051380004+00:00,1 +2023-10-24 17:44:28.178897630+00:00,1 +2023-10-24 17:44:28.306036848+00:00,1 +2023-10-24 17:44:28.433572259+00:00,1 +2023-10-24 17:44:28.561208217+00:00,1 +2023-10-24 17:44:28.689374712+00:00,1 +2023-10-24 17:44:28.816712542+00:00,1 +2023-10-24 17:44:28.944456960+00:00,1 +2023-10-24 17:44:29.071006024+00:00,1 +2023-10-24 17:44:29.199564490+00:00,1 +2023-10-24 17:44:29.329154676+00:00,1 +2023-10-24 17:44:29.458149720+00:00,1 +2023-10-24 17:44:29.585894464+00:00,1 +2023-10-24 17:44:29.712682626+00:00,1 +2023-10-24 17:44:29.840119313+00:00,1 +2023-10-24 17:44:29.968820421+00:00,1 +2023-10-24 17:44:30.095876941+00:00,1 +2023-10-24 17:44:30.222920789+00:00,1 +2023-10-24 17:44:30.350887943+00:00,1 +2023-10-24 17:44:30.480117514+00:00,1 +2023-10-24 17:44:30.607897238+00:00,1 +2023-10-24 17:44:30.735908000+00:00,1 +2023-10-24 17:44:30.862607500+00:00,1 +2023-10-24 17:44:30.990410094+00:00,1 +2023-10-24 17:44:31.118014417+00:00,1 +2023-10-24 17:44:31.245395053+00:00,1 +2023-10-24 17:44:31.373197703+00:00,1 +2023-10-24 17:44:31.502541449+00:00,1 +2023-10-24 17:44:31.629595983+00:00,1 +2023-10-24 17:44:31.757360653+00:00,1 +2023-10-24 17:44:31.885901221+00:00,1 +2023-10-24 17:44:32.013950494+00:00,1 +2023-10-24 17:44:32.140894277+00:00,1 +2023-10-24 17:44:32.268016568+00:00,1 +2023-10-24 17:44:32.396854229+00:00,1 +2023-10-24 17:44:32.524141314+00:00,1 +2023-10-24 17:44:32.653070738+00:00,1 +2023-10-24 17:44:32.780355165+00:00,1 +2023-10-24 17:44:32.908756008+00:00,1 +2023-10-24 17:44:33.038234922+00:00,1 +2023-10-24 17:44:33.166000726+00:00,1 +2023-10-24 17:44:33.294215591+00:00,1 +2023-10-24 17:44:33.422082031+00:00,1 +2023-10-24 17:44:33.550018225+00:00,1 +2023-10-24 17:44:33.677630691+00:00,1 +2023-10-24 17:44:33.805323778+00:00,1 +2023-10-24 17:44:33.933309630+00:00,1 +2023-10-24 17:44:34.060117971+00:00,1 +2023-10-24 17:44:34.188223726+00:00,1 +2023-10-24 17:44:34.316858097+00:00,1 +2023-10-24 17:44:34.444252305+00:00,1 +2023-10-24 17:44:34.572040834+00:00,1 +2023-10-24 17:44:34.700007712+00:00,1 +2023-10-24 17:44:34.827820899+00:00,1 +2023-10-24 17:44:34.957988345+00:00,1 +2023-10-24 17:44:35.086582435+00:00,1 +2023-10-24 17:44:35.214850819+00:00,1 +2023-10-24 17:44:35.343330204+00:00,1 +2023-10-24 17:44:35.471972235+00:00,1 +2023-10-24 17:44:35.601479158+00:00,1 +2023-10-24 17:44:35.729455330+00:00,1 +2023-10-24 17:44:35.858211346+00:00,1 +2023-10-24 17:44:35.986400822+00:00,1 +2023-10-24 17:44:36.114566517+00:00,1 +2023-10-24 17:44:36.243283222+00:00,1 +2023-10-24 17:44:36.370965686+00:00,1 +2023-10-24 17:44:36.498150209+00:00,1 +2023-10-24 17:44:36.627318323+00:00,1 +2023-10-24 17:44:36.755150101+00:00,1 +2023-10-24 17:44:36.881789535+00:00,1 +2023-10-24 17:44:37.009683528+00:00,1 +2023-10-24 17:44:37.137696912+00:00,1 +2023-10-24 17:44:37.266537572+00:00,1 +2023-10-24 17:44:37.393122838+00:00,1 +2023-10-24 17:44:37.521934224+00:00,1 +2023-10-24 17:44:37.650384658+00:00,1 +2023-10-24 17:44:37.778139874+00:00,1 +2023-10-24 17:44:37.906351758+00:00,1 +2023-10-24 17:44:38.035341898+00:00,1 +2023-10-24 17:44:38.163442285+00:00,1 +2023-10-24 17:44:38.291347475+00:00,1 +2023-10-24 17:44:38.419101956+00:00,1 +2023-10-24 17:44:38.546504495+00:00,1 +2023-10-24 17:44:38.674090963+00:00,1 +2023-10-24 17:44:38.801352211+00:00,1 +2023-10-24 17:44:38.927873095+00:00,1 +2023-10-24 17:44:39.055186529+00:00,1 +2023-10-24 17:44:39.182842112+00:00,1 +2023-10-24 17:44:39.309910960+00:00,1 +2023-10-24 17:44:39.437442835+00:00,1 +2023-10-24 17:44:39.563993943+00:00,1 +2023-10-24 17:44:39.692168892+00:00,1 +2023-10-24 17:44:39.820342444+00:00,1 +2023-10-24 17:44:39.948123244+00:00,1 +2023-10-24 17:44:40.075519313+00:00,1 +2023-10-24 17:44:40.204371178+00:00,1 +2023-10-24 17:44:40.332250558+00:00,1 +2023-10-24 17:44:40.460694102+00:00,1 +2023-10-24 17:44:40.588849924+00:00,1 +2023-10-24 17:44:40.717123293+00:00,1 +2023-10-24 17:44:40.845820113+00:00,1 +2023-10-24 17:44:40.977774205+00:00,1 +2023-10-24 17:44:41.107891341+00:00,1 +2023-10-24 17:44:41.235372347+00:00,1 +2023-10-24 17:44:41.362566287+00:00,1 +2023-10-24 17:44:41.490774712+00:00,1 +2023-10-24 17:44:41.618863405+00:00,1 +2023-10-24 17:44:41.746839520+00:00,1 +2023-10-24 17:44:41.874192017+00:00,1 +2023-10-24 17:44:42.001582755+00:00,1 +2023-10-24 17:44:42.129072617+00:00,1 +2023-10-24 17:44:42.257069087+00:00,1 +2023-10-24 17:44:42.383985818+00:00,1 +2023-10-24 17:44:42.511335496+00:00,1 +2023-10-24 17:44:42.639068486+00:00,1 +2023-10-24 17:44:42.768068741+00:00,1 +2023-10-24 17:44:42.896531342+00:00,1 +2023-10-24 17:44:43.026700388+00:00,1 +2023-10-24 17:44:43.154316153+00:00,1 +2023-10-24 17:44:43.282735143+00:00,1 +2023-10-24 17:44:43.409620341+00:00,1 +2023-10-24 17:44:43.538529426+00:00,1 +2023-10-24 17:44:43.665398450+00:00,1 +2023-10-24 17:44:43.792232398+00:00,1 +2023-10-24 17:44:43.920176581+00:00,1 +2023-10-24 17:44:44.047040940+00:00,1 +2023-10-24 17:44:44.173966121+00:00,1 +2023-10-24 17:44:44.301860648+00:00,1 +2023-10-24 17:44:44.429615012+00:00,1 +2023-10-24 17:44:44.556623539+00:00,1 +2023-10-24 17:44:44.685154728+00:00,1 +2023-10-24 17:44:44.814159629+00:00,1 +2023-10-24 17:44:44.942532305+00:00,1 +2023-10-24 17:44:45.069832377+00:00,1 +2023-10-24 17:44:45.197331316+00:00,1 +2023-10-24 17:44:45.323304307+00:00,1 +2023-10-24 17:44:45.451086394+00:00,1 +2023-10-24 17:44:45.579596304+00:00,1 +2023-10-24 17:44:45.706715666+00:00,1 +2023-10-24 17:44:45.834223589+00:00,1 +2023-10-24 17:44:45.961673493+00:00,1 +2023-10-24 17:44:46.088372367+00:00,1 +2023-10-24 17:44:46.215819799+00:00,1 +2023-10-24 17:44:46.342928873+00:00,1 +2023-10-24 17:44:46.470700684+00:00,1 +2023-10-24 17:44:46.598033780+00:00,1 +2023-10-24 17:44:46.726424286+00:00,1 +2023-10-24 17:44:46.854138367+00:00,1 +2023-10-24 17:44:46.981865561+00:00,1 +2023-10-24 17:44:47.108461887+00:00,1 +2023-10-24 17:44:47.235863467+00:00,1 +2023-10-24 17:44:47.365479425+00:00,1 +2023-10-24 17:44:47.493925407+00:00,1 +2023-10-24 17:44:47.623069040+00:00,1 +2023-10-24 17:44:47.752019988+00:00,1 +2023-10-24 17:44:47.880003425+00:00,1 +2023-10-24 17:44:48.007076677+00:00,1 +2023-10-24 17:44:48.135740905+00:00,1 +2023-10-24 17:44:48.263806139+00:00,1 +2023-10-24 17:44:48.392227939+00:00,1 +2023-10-24 17:44:48.520417453+00:00,1 +2023-10-24 17:44:48.649342541+00:00,1 +2023-10-24 17:44:48.778724066+00:00,1 +2023-10-24 17:44:48.906669922+00:00,1 +2023-10-24 17:44:49.035183182+00:00,1 +2023-10-24 17:44:49.162043970+00:00,1 +2023-10-24 17:44:49.288670706+00:00,1 +2023-10-24 17:44:49.415757022+00:00,1 +2023-10-24 17:44:49.545403549+00:00,1 +2023-10-24 17:44:49.673393312+00:00,1 +2023-10-24 17:44:49.802419309+00:00,1 +2023-10-24 17:44:49.931034189+00:00,1 +2023-10-24 17:44:50.058456467+00:00,1 +2023-10-24 17:44:50.185710472+00:00,1 +2023-10-24 17:44:50.314768856+00:00,1 +2023-10-24 17:44:50.443370041+00:00,1 +2023-10-24 17:44:50.571711299+00:00,1 +2023-10-24 17:44:50.699526489+00:00,1 +2023-10-24 17:44:50.826967889+00:00,1 +2023-10-24 17:44:50.956053299+00:00,1 +2023-10-24 17:44:51.084118507+00:00,1 +2023-10-24 17:44:51.212184101+00:00,1 +2023-10-24 17:44:51.338193150+00:00,1 +2023-10-24 17:44:51.467340520+00:00,1 +2023-10-24 17:44:51.595624674+00:00,1 +2023-10-24 17:44:51.724792541+00:00,1 +2023-10-24 17:44:51.852569472+00:00,1 +2023-10-24 17:44:51.979909018+00:00,1 +2023-10-24 17:44:52.107426749+00:00,1 +2023-10-24 17:44:52.234471518+00:00,1 +2023-10-24 17:44:52.361484288+00:00,1 +2023-10-24 17:44:52.489016474+00:00,1 +2023-10-24 17:44:52.617178158+00:00,1 +2023-10-24 17:44:52.744325134+00:00,1 +2023-10-24 17:44:52.871917767+00:00,1 +2023-10-24 17:44:52.998556758+00:00,1 +2023-10-24 17:44:53.126404725+00:00,1 +2023-10-24 17:44:53.255265386+00:00,1 +2023-10-24 17:44:53.383246570+00:00,1 +2023-10-24 17:44:53.510650149+00:00,1 +2023-10-24 17:44:53.639591977+00:00,1 +2023-10-24 17:44:53.768046791+00:00,1 +2023-10-24 17:44:53.895366949+00:00,1 +2023-10-24 17:44:54.022381265+00:00,1 +2023-10-24 17:44:54.150151905+00:00,1 +2023-10-24 17:44:54.277923261+00:00,1 +2023-10-24 17:44:54.404651228+00:00,1 +2023-10-24 17:44:54.532270451+00:00,1 +2023-10-24 17:44:54.661625478+00:00,1 +2023-10-24 17:44:54.790826712+00:00,1 +2023-10-24 17:44:54.917657338+00:00,1 +2023-10-24 17:44:55.046235210+00:00,1 +2023-10-24 17:44:55.173975902+00:00,1 +2023-10-24 17:44:55.302719950+00:00,1 +2023-10-24 17:44:55.429819442+00:00,1 +2023-10-24 17:44:55.557114430+00:00,1 +2023-10-24 17:44:55.685170213+00:00,1 +2023-10-24 17:44:55.813331842+00:00,1 +2023-10-24 17:44:55.940433778+00:00,1 +2023-10-24 17:44:56.069183526+00:00,1 +2023-10-24 17:44:56.196492092+00:00,1 +2023-10-24 17:44:56.324554913+00:00,1 +2023-10-24 17:44:56.453451554+00:00,1 +2023-10-24 17:44:56.580867945+00:00,1 +2023-10-24 17:44:56.709935699+00:00,1 +2023-10-24 17:44:56.838122712+00:00,1 +2023-10-24 17:44:56.965857185+00:00,1 +2023-10-24 17:44:57.093913532+00:00,1 +2023-10-24 17:44:57.221243691+00:00,1 +2023-10-24 17:44:57.349998403+00:00,1 +2023-10-24 17:44:57.477991864+00:00,1 +2023-10-24 17:44:57.606696489+00:00,1 +2023-10-24 17:44:57.733712906+00:00,1 +2023-10-24 17:44:57.862209649+00:00,1 +2023-10-24 17:44:57.990024139+00:00,1 +2023-10-24 17:44:58.117921666+00:00,1 +2023-10-24 17:44:58.244996618+00:00,1 +2023-10-24 17:44:58.372126849+00:00,1 +2023-10-24 17:44:58.500543428+00:00,1 +2023-10-24 17:44:58.627115828+00:00,1 +2023-10-24 17:44:58.755470493+00:00,1 +2023-10-24 17:44:58.884172430+00:00,1 +2023-10-24 17:44:59.012710521+00:00,1 +2023-10-24 17:44:59.141759610+00:00,1 +2023-10-24 17:44:59.269060633+00:00,1 +2023-10-24 17:44:59.398526290+00:00,1 +2023-10-24 17:44:59.527702378+00:00,1 +2023-10-24 17:44:59.656257314+00:00,1 +2023-10-24 17:44:59.784531923+00:00,1 +2023-10-24 17:44:59.912963838+00:00,1 +2023-10-24 17:45:00.040973199+00:00,1 +2023-10-24 17:45:00.169059733+00:00,1 +2023-10-24 17:45:00.296473200+00:00,1 +2023-10-24 17:45:00.424347106+00:00,1 +2023-10-24 17:45:00.552581189+00:00,1 +2023-10-24 17:45:00.680994464+00:00,1 +2023-10-24 17:45:00.809011075+00:00,1 +2023-10-24 17:45:00.938025186+00:00,1 +2023-10-24 17:45:01.066823279+00:00,1 +2023-10-24 17:45:01.195677426+00:00,1 +2023-10-24 17:45:01.324262758+00:00,1 +2023-10-24 17:45:01.452837961+00:00,1 +2023-10-24 17:45:01.580437524+00:00,1 +2023-10-24 17:45:01.709628217+00:00,1 +2023-10-24 17:45:01.838009030+00:00,1 +2023-10-24 17:45:01.966822414+00:00,1 +2023-10-24 17:45:02.094514224+00:00,1 +2023-10-24 17:45:02.222385172+00:00,1 +2023-10-24 17:45:02.350546001+00:00,1 +2023-10-24 17:45:02.479597307+00:00,1 +2023-10-24 17:45:02.607680024+00:00,1 +2023-10-24 17:45:02.737049872+00:00,1 +2023-10-24 17:45:02.866036424+00:00,1 +2023-10-24 17:45:02.993701479+00:00,1 +2023-10-24 17:45:03.124371914+00:00,1 +2023-10-24 17:45:03.253446118+00:00,1 +2023-10-24 17:45:03.381505829+00:00,1 +2023-10-24 17:45:03.508729794+00:00,1 +2023-10-24 17:45:03.636108570+00:00,1 +2023-10-24 17:45:03.763093809+00:00,1 +2023-10-24 17:45:03.891283071+00:00,1 +2023-10-24 17:45:04.019658272+00:00,1 +2023-10-24 17:45:04.148200529+00:00,1 +2023-10-24 17:45:04.275814833+00:00,1 +2023-10-24 17:45:04.403769717+00:00,1 +2023-10-24 17:45:04.530958788+00:00,1 +2023-10-24 17:45:04.659933504+00:00,1 +2023-10-24 17:45:04.788119272+00:00,1 +2023-10-24 17:45:04.918245809+00:00,1 +2023-10-24 17:45:05.048070214+00:00,1 +2023-10-24 17:45:05.177555756+00:00,1 +2023-10-24 17:45:05.306144241+00:00,1 +2023-10-24 17:45:05.434235603+00:00,1 +2023-10-24 17:45:05.563954778+00:00,1 +2023-10-24 17:45:05.692909554+00:00,1 +2023-10-24 17:45:05.822768336+00:00,1 +2023-10-24 17:45:05.953102861+00:00,1 +2023-10-24 17:45:06.081956237+00:00,1 +2023-10-24 17:45:06.209987306+00:00,1 +2023-10-24 17:45:06.339004927+00:00,1 +2023-10-24 17:45:06.466748575+00:00,1 +2023-10-24 17:45:06.596419052+00:00,1 +2023-10-24 17:45:06.724288839+00:00,1 +2023-10-24 17:45:06.851968045+00:00,1 +2023-10-24 17:45:06.981774550+00:00,1 +2023-10-24 17:45:07.109756974+00:00,1 +2023-10-24 17:45:07.237622895+00:00,1 +2023-10-24 17:45:07.369029345+00:00,1 +2023-10-24 17:45:07.496874491+00:00,1 +2023-10-24 17:45:07.625691979+00:00,1 +2023-10-24 17:45:07.753035331+00:00,1 +2023-10-24 17:45:07.881066731+00:00,1 +2023-10-24 17:45:08.010728083+00:00,1 +2023-10-24 17:45:08.139872795+00:00,1 +2023-10-24 17:45:08.267918108+00:00,1 +2023-10-24 17:45:08.396200668+00:00,1 +2023-10-24 17:45:08.523492741+00:00,1 +2023-10-24 17:45:08.651992621+00:00,1 +2023-10-24 17:45:08.780266053+00:00,1 +2023-10-24 17:45:08.910507584+00:00,1 +2023-10-24 17:45:09.038803867+00:00,1 +2023-10-24 17:45:09.167722126+00:00,1 +2023-10-24 17:45:09.295923633+00:00,1 +2023-10-24 17:45:09.424663354+00:00,1 +2023-10-24 17:45:09.551665980+00:00,1 +2023-10-24 17:45:09.681654469+00:00,1 +2023-10-24 17:45:09.810213346+00:00,1 +2023-10-24 17:45:09.938772745+00:00,1 +2023-10-24 17:45:10.066770456+00:00,1 +2023-10-24 17:45:10.195184582+00:00,1 +2023-10-24 17:45:10.323007688+00:00,1 +2023-10-24 17:45:10.452493855+00:00,1 +2023-10-24 17:45:10.581058623+00:00,1 +2023-10-24 17:45:10.709824707+00:00,1 +2023-10-24 17:45:10.838152409+00:00,1 +2023-10-24 17:45:10.965979478+00:00,1 +2023-10-24 17:45:11.094789675+00:00,1 +2023-10-24 17:45:11.222223618+00:00,1 +2023-10-24 17:45:11.349650602+00:00,1 +2023-10-24 17:45:11.477865962+00:00,1 +2023-10-24 17:45:11.605283343+00:00,1 +2023-10-24 17:45:11.732331318+00:00,1 +2023-10-24 17:45:11.861718302+00:00,1 +2023-10-24 17:45:11.993002079+00:00,1 +2023-10-24 17:45:12.121083048+00:00,1 +2023-10-24 17:45:12.249080974+00:00,1 +2023-10-24 17:45:12.377629739+00:00,1 +2023-10-24 17:45:12.505483360+00:00,1 +2023-10-24 17:45:12.634337311+00:00,1 +2023-10-24 17:45:12.763358898+00:00,1 +2023-10-24 17:45:12.892994152+00:00,1 +2023-10-24 17:45:13.020438678+00:00,1 +2023-10-24 17:45:13.148182274+00:00,1 +2023-10-24 17:45:13.276415843+00:00,1 +2023-10-24 17:45:13.403859196+00:00,1 +2023-10-24 17:45:13.532112388+00:00,1 +2023-10-24 17:45:13.659236616+00:00,1 +2023-10-24 17:45:13.787820834+00:00,1 +2023-10-24 17:45:13.916916842+00:00,1 +2023-10-24 17:45:14.045255950+00:00,1 +2023-10-24 17:45:14.175201365+00:00,1 +2023-10-24 17:45:14.303843173+00:00,1 +2023-10-24 17:45:14.431580735+00:00,1 +2023-10-24 17:45:14.558623113+00:00,1 +2023-10-24 17:45:14.686520574+00:00,1 +2023-10-24 17:45:14.814924654+00:00,1 +2023-10-24 17:45:14.942327926+00:00,1 +2023-10-24 17:45:15.069755247+00:00,1 +2023-10-24 17:45:15.196967890+00:00,1 +2023-10-24 17:45:15.324636551+00:00,1 +2023-10-24 17:45:15.452388933+00:00,1 +2023-10-24 17:45:15.580130787+00:00,1 +2023-10-24 17:45:15.707752673+00:00,1 +2023-10-24 17:45:15.837148805+00:00,1 +2023-10-24 17:45:15.964617208+00:00,1 +2023-10-24 17:45:16.092693388+00:00,1 +2023-10-24 17:45:16.221682134+00:00,1 +2023-10-24 17:45:16.349873425+00:00,1 +2023-10-24 17:45:16.477873097+00:00,1 +2023-10-24 17:45:16.606562879+00:00,1 +2023-10-24 17:45:16.734644052+00:00,1 +2023-10-24 17:45:16.863254494+00:00,1 +2023-10-24 17:45:16.991467439+00:00,1 +2023-10-24 17:45:17.120664858+00:00,1 +2023-10-24 17:45:17.249458046+00:00,1 +2023-10-24 17:45:17.377730818+00:00,1 +2023-10-24 17:45:17.505730871+00:00,1 +2023-10-24 17:45:17.633058789+00:00,1 +2023-10-24 17:45:17.761559416+00:00,1 +2023-10-24 17:45:17.889838599+00:00,1 +2023-10-24 17:45:18.018464521+00:00,1 +2023-10-24 17:45:18.146157065+00:00,1 +2023-10-24 17:45:18.275169575+00:00,1 +2023-10-24 17:45:18.402655876+00:00,1 +2023-10-24 17:45:18.531912280+00:00,1 +2023-10-24 17:45:18.659929462+00:00,1 +2023-10-24 17:45:18.788248662+00:00,1 +2023-10-24 17:45:18.916690280+00:00,1 +2023-10-24 17:45:19.045658280+00:00,1 +2023-10-24 17:45:19.175797149+00:00,1 +2023-10-24 17:45:19.303978338+00:00,1 +2023-10-24 17:45:19.431336990+00:00,1 +2023-10-24 17:45:19.559897991+00:00,1 +2023-10-24 17:45:19.688119362+00:00,1 +2023-10-24 17:45:19.816227713+00:00,1 +2023-10-24 17:45:19.944978559+00:00,1 +2023-10-24 17:45:20.073121195+00:00,1 +2023-10-24 17:45:20.201663054+00:00,1 +2023-10-24 17:45:20.331008965+00:00,1 +2023-10-24 17:45:20.458812806+00:00,1 +2023-10-24 17:45:20.586647748+00:00,1 +2023-10-24 17:45:20.713430468+00:00,1 +2023-10-24 17:45:20.842028072+00:00,1 +2023-10-24 17:45:20.970086027+00:00,1 +2023-10-24 17:45:21.097514752+00:00,1 +2023-10-24 17:45:21.225733574+00:00,1 +2023-10-24 17:45:21.354419656+00:00,1 +2023-10-24 17:45:21.483053421+00:00,1 +2023-10-24 17:45:21.611491683+00:00,1 +2023-10-24 17:45:21.738427460+00:00,1 +2023-10-24 17:45:21.869055117+00:00,1 +2023-10-24 17:45:21.997137992+00:00,1 +2023-10-24 17:45:22.125173838+00:00,1 +2023-10-24 17:45:22.254249067+00:00,1 +2023-10-24 17:45:22.382586603+00:00,1 +2023-10-24 17:45:22.512393931+00:00,1 +2023-10-24 17:45:22.639652802+00:00,1 +2023-10-24 17:45:22.767595481+00:00,1 +2023-10-24 17:45:22.896156271+00:00,1 +2023-10-24 17:45:23.024747000+00:00,1 +2023-10-24 17:45:23.152063163+00:00,1 +2023-10-24 17:45:23.279510447+00:00,1 +2023-10-24 17:45:23.407521227+00:00,1 +2023-10-24 17:45:23.535992396+00:00,1 +2023-10-24 17:45:23.664251397+00:00,1 +2023-10-24 17:45:23.791552856+00:00,1 +2023-10-24 17:45:23.920802472+00:00,1 +2023-10-24 17:45:24.048930111+00:00,1 +2023-10-24 17:45:24.178335887+00:00,1 +2023-10-24 17:45:24.307885140+00:00,1 +2023-10-24 17:45:24.435759799+00:00,1 +2023-10-24 17:45:24.563786357+00:00,1 +2023-10-24 17:45:24.692109718+00:00,1 +2023-10-24 17:45:24.821139799+00:00,1 +2023-10-24 17:45:24.948439950+00:00,1 +2023-10-24 17:45:25.076950910+00:00,1 +2023-10-24 17:45:25.205408624+00:00,1 +2023-10-24 17:45:25.333170410+00:00,1 +2023-10-24 17:45:25.461815173+00:00,1 +2023-10-24 17:45:25.589139099+00:00,1 +2023-10-24 17:45:25.717871934+00:00,1 +2023-10-24 17:45:25.845446295+00:00,1 +2023-10-24 17:45:25.972561126+00:00,1 +2023-10-24 17:45:26.100673431+00:00,1 +2023-10-24 17:45:26.228425906+00:00,1 +2023-10-24 17:45:26.356007984+00:00,1 +2023-10-24 17:45:26.484896042+00:00,1 +2023-10-24 17:45:26.614754920+00:00,1 +2023-10-24 17:45:26.743412949+00:00,1 +2023-10-24 17:45:26.871529841+00:00,1 +2023-10-24 17:45:26.999792580+00:00,1 +2023-10-24 17:45:27.128030161+00:00,1 +2023-10-24 17:45:27.255943742+00:00,1 +2023-10-24 17:45:27.383124681+00:00,1 +2023-10-24 17:45:27.512735392+00:00,1 +2023-10-24 17:45:27.641046700+00:00,1 +2023-10-24 17:45:27.768587040+00:00,1 +2023-10-24 17:45:27.897738389+00:00,1 +2023-10-24 17:45:28.025751496+00:00,1 +2023-10-24 17:45:28.153219299+00:00,1 +2023-10-24 17:45:28.281356232+00:00,1 +2023-10-24 17:45:28.409217115+00:00,1 +2023-10-24 17:45:28.538131210+00:00,1 +2023-10-24 17:45:28.665515031+00:00,1 +2023-10-24 17:45:28.793484825+00:00,1 +2023-10-24 17:45:28.920834671+00:00,1 +2023-10-24 17:45:29.048957053+00:00,1 +2023-10-24 17:45:29.177673460+00:00,1 +2023-10-24 17:45:29.306046032+00:00,1 +2023-10-24 17:45:29.433179716+00:00,1 +2023-10-24 17:45:29.561675783+00:00,1 +2023-10-24 17:45:29.689563915+00:00,1 +2023-10-24 17:45:29.817959555+00:00,1 +2023-10-24 17:45:29.946207171+00:00,1 +2023-10-24 17:45:30.075958576+00:00,1 +2023-10-24 17:45:30.203341819+00:00,1 +2023-10-24 17:45:30.331294138+00:00,1 +2023-10-24 17:45:30.460288728+00:00,1 +2023-10-24 17:45:30.588195515+00:00,1 +2023-10-24 17:45:30.717096290+00:00,1 +2023-10-24 17:45:30.845332681+00:00,1 +2023-10-24 17:45:30.975727649+00:00,1 +2023-10-24 17:45:31.105971110+00:00,1 +2023-10-24 17:45:31.236254509+00:00,1 +2023-10-24 17:45:31.364045297+00:00,1 +2023-10-24 17:45:31.491965362+00:00,1 +2023-10-24 17:45:31.620524168+00:00,1 +2023-10-24 17:45:31.748622328+00:00,1 +2023-10-24 17:45:31.876303743+00:00,1 +2023-10-24 17:45:32.003806354+00:00,1 +2023-10-24 17:45:32.131224316+00:00,1 +2023-10-24 17:45:32.258767364+00:00,1 +2023-10-24 17:45:32.386290030+00:00,1 +2023-10-24 17:45:32.514439985+00:00,1 +2023-10-24 17:45:32.644304138+00:00,1 +2023-10-24 17:45:32.773359845+00:00,1 +2023-10-24 17:45:32.901160380+00:00,1 +2023-10-24 17:45:33.030459439+00:00,1 +2023-10-24 17:45:33.159627243+00:00,1 +2023-10-24 17:45:33.288728997+00:00,1 +2023-10-24 17:45:33.416548689+00:00,1 +2023-10-24 17:45:33.545500663+00:00,1 +2023-10-24 17:45:33.673882305+00:00,1 +2023-10-24 17:45:33.802168520+00:00,1 +2023-10-24 17:45:33.929756939+00:00,1 +2023-10-24 17:45:34.057377681+00:00,1 +2023-10-24 17:45:34.185504530+00:00,1 +2023-10-24 17:45:34.313544750+00:00,1 +2023-10-24 17:45:34.441724246+00:00,1 +2023-10-24 17:45:34.570114066+00:00,1 +2023-10-24 17:45:34.697328098+00:00,1 +2023-10-24 17:45:34.826462855+00:00,1 +2023-10-24 17:45:34.954615504+00:00,1 +2023-10-24 17:45:35.082442372+00:00,1 +2023-10-24 17:45:35.210683770+00:00,1 +2023-10-24 17:45:35.337237414+00:00,1 +2023-10-24 17:45:35.464467276+00:00,1 +2023-10-24 17:45:35.592204907+00:00,1 +2023-10-24 17:45:35.718828085+00:00,1 +2023-10-24 17:45:35.847786321+00:00,1 +2023-10-24 17:45:35.974237831+00:00,1 +2023-10-24 17:45:36.102435320+00:00,1 +2023-10-24 17:45:36.229435516+00:00,1 +2023-10-24 17:45:36.358098812+00:00,1 +2023-10-24 17:45:36.487477655+00:00,1 +2023-10-24 17:45:36.615792761+00:00,1 +2023-10-24 17:45:36.744775475+00:00,1 +2023-10-24 17:45:36.872765566+00:00,1 +2023-10-24 17:45:37.001343866+00:00,1 +2023-10-24 17:45:37.129337285+00:00,1 +2023-10-24 17:45:37.256876113+00:00,1 +2023-10-24 17:45:37.384059970+00:00,1 +2023-10-24 17:45:37.511740111+00:00,1 +2023-10-24 17:45:37.637731169+00:00,1 +2023-10-24 17:45:37.765710614+00:00,1 +2023-10-24 17:45:37.894442667+00:00,1 +2023-10-24 17:45:38.023028533+00:00,1 +2023-10-24 17:45:38.150383865+00:00,1 +2023-10-24 17:45:38.277995233+00:00,1 +2023-10-24 17:45:38.405223392+00:00,1 +2023-10-24 17:45:38.534217981+00:00,1 +2023-10-24 17:45:38.662866128+00:00,1 +2023-10-24 17:45:38.790862607+00:00,1 +2023-10-24 17:45:38.919904738+00:00,1 +2023-10-24 17:45:39.048697095+00:00,1 +2023-10-24 17:45:39.175889534+00:00,1 +2023-10-24 17:45:39.303350940+00:00,1 +2023-10-24 17:45:39.432092058+00:00,1 +2023-10-24 17:45:39.558601107+00:00,1 +2023-10-24 17:45:39.685044812+00:00,1 +2023-10-24 17:45:39.813516551+00:00,1 +2023-10-24 17:45:39.941172253+00:00,1 +2023-10-24 17:45:40.069021739+00:00,1 +2023-10-24 17:45:40.195685830+00:00,1 +2023-10-24 17:45:40.322779458+00:00,1 +2023-10-24 17:45:40.449680454+00:00,1 +2023-10-24 17:45:40.576967491+00:00,1 +2023-10-24 17:45:40.703259634+00:00,1 +2023-10-24 17:45:43.891713917+00:00,1 +2023-10-24 17:45:44.020434531+00:00,1 +2023-10-24 17:45:44.150234524+00:00,1 +2023-10-24 17:45:44.278688707+00:00,1 +2023-10-24 17:45:44.406940655+00:00,1 +2023-10-24 17:45:44.536975133+00:00,1 +2023-10-24 17:45:44.666569545+00:00,1 +2023-10-24 17:45:44.795876365+00:00,1 +2023-10-24 17:45:44.926468643+00:00,1 +2023-10-24 17:45:45.055667891+00:00,1 +2023-10-24 17:45:45.183327090+00:00,1 +2023-10-24 17:45:45.313001131+00:00,1 +2023-10-24 17:45:45.441693945+00:00,1 +2023-10-24 17:45:45.571723333+00:00,1 +2023-10-24 17:45:45.701682982+00:00,1 +2023-10-24 17:45:45.834104157+00:00,1 +2023-10-24 17:45:45.962956603+00:00,1 +2023-10-24 17:45:46.091175339+00:00,1 +2023-10-24 17:45:46.220760786+00:00,1 +2023-10-24 17:45:46.349349163+00:00,1 +2023-10-24 17:45:46.478164994+00:00,1 +2023-10-24 17:45:46.607332555+00:00,1 +2023-10-24 17:45:46.735875294+00:00,1 +2023-10-24 17:45:46.865902263+00:00,1 +2023-10-24 17:45:46.994386316+00:00,1 +2023-10-24 17:45:47.123569981+00:00,1 +2023-10-24 17:45:47.253556217+00:00,1 +2023-10-24 17:45:47.382594243+00:00,1 +2023-10-24 17:45:47.510431094+00:00,1 +2023-10-24 17:45:47.639126139+00:00,1 +2023-10-24 17:45:47.768001177+00:00,1 +2023-10-24 17:45:47.897292641+00:00,1 +2023-10-24 17:45:48.025071085+00:00,1 +2023-10-24 17:45:48.153859328+00:00,1 +2023-10-24 17:45:48.281286591+00:00,1 +2023-10-24 17:45:48.409417766+00:00,1 +2023-10-24 17:45:48.536478840+00:00,1 +2023-10-24 17:45:48.665088822+00:00,1 +2023-10-24 17:45:48.793363904+00:00,1 +2023-10-24 17:45:48.923013392+00:00,1 +2023-10-24 17:45:49.051485365+00:00,1 +2023-10-24 17:45:49.180376980+00:00,1 +2023-10-24 17:45:49.310051414+00:00,1 +2023-10-24 17:45:49.437871481+00:00,1 +2023-10-24 17:45:49.565568840+00:00,1 +2023-10-24 17:45:49.694557360+00:00,1 +2023-10-24 17:45:49.821844546+00:00,1 +2023-10-24 17:45:49.950494898+00:00,1 +2023-10-24 17:45:50.078924730+00:00,1 +2023-10-24 17:45:50.206654665+00:00,1 +2023-10-24 17:45:50.334570617+00:00,1 +2023-10-24 17:45:50.462774064+00:00,1 +2023-10-24 17:45:50.592408251+00:00,1 +2023-10-24 17:45:50.722560285+00:00,1 +2023-10-24 17:45:50.850575893+00:00,1 +2023-10-24 17:45:50.979587646+00:00,1 +2023-10-24 17:45:51.108824315+00:00,1 +2023-10-24 17:45:51.238079563+00:00,1 +2023-10-24 17:45:51.365159997+00:00,1 +2023-10-24 17:45:51.493449865+00:00,1 +2023-10-24 17:45:51.620347884+00:00,1 +2023-10-24 17:45:51.747850508+00:00,1 +2023-10-24 17:45:51.877518547+00:00,1 +2023-10-24 17:45:52.005813050+00:00,1 +2023-10-24 17:45:52.134974973+00:00,1 +2023-10-24 17:45:52.263350963+00:00,1 +2023-10-24 17:45:52.391842381+00:00,1 +2023-10-24 17:45:52.519886841+00:00,1 +2023-10-24 17:45:52.648270120+00:00,1 +2023-10-24 17:45:52.776068238+00:00,1 +2023-10-24 17:45:52.904757934+00:00,1 +2023-10-24 17:45:53.032645554+00:00,1 +2023-10-24 17:45:53.160065841+00:00,1 +2023-10-24 17:45:53.288275894+00:00,1 +2023-10-24 17:45:53.417556780+00:00,1 +2023-10-24 17:45:53.545027628+00:00,1 +2023-10-24 17:45:53.672397768+00:00,1 +2023-10-24 17:45:53.799671670+00:00,1 +2023-10-24 17:45:53.927355105+00:00,1 +2023-10-24 17:45:54.054882538+00:00,1 +2023-10-24 17:45:54.183032537+00:00,1 +2023-10-24 17:45:54.309754911+00:00,1 +2023-10-24 17:45:54.436878947+00:00,1 +2023-10-24 17:45:54.564614169+00:00,1 +2023-10-24 17:45:54.693344488+00:00,1 +2023-10-24 17:45:54.820470444+00:00,1 +2023-10-24 17:45:54.949097601+00:00,1 +2023-10-24 17:45:55.076432679+00:00,1 +2023-10-24 17:45:55.206658821+00:00,1 +2023-10-24 17:45:55.335527278+00:00,1 +2023-10-24 17:45:55.463203918+00:00,1 +2023-10-24 17:45:55.591809809+00:00,1 +2023-10-24 17:45:55.719904715+00:00,1 +2023-10-24 17:45:55.847492562+00:00,1 +2023-10-24 17:45:55.975525470+00:00,1 +2023-10-24 17:45:56.105406638+00:00,1 +2023-10-24 17:45:56.234725167+00:00,1 +2023-10-24 17:45:56.361964089+00:00,1 +2023-10-24 17:45:56.489833434+00:00,1 +2023-10-24 17:45:56.617445834+00:00,1 +2023-10-24 17:45:56.746371952+00:00,1 +2023-10-24 17:45:56.874070889+00:00,1 +2023-10-24 17:45:57.002442142+00:00,1 +2023-10-24 17:45:57.131217374+00:00,1 +2023-10-24 17:45:57.259009944+00:00,1 +2023-10-24 17:45:57.386417130+00:00,1 +2023-10-24 17:45:57.514898836+00:00,1 +2023-10-24 17:45:57.641985754+00:00,1 +2023-10-24 17:45:57.771336369+00:00,1 +2023-10-24 17:45:57.900457114+00:00,1 +2023-10-24 17:45:58.029660138+00:00,1 +2023-10-24 17:45:58.157837352+00:00,1 +2023-10-24 17:45:58.286882563+00:00,1 +2023-10-24 17:45:58.415678835+00:00,1 +2023-10-24 17:45:58.544628342+00:00,1 +2023-10-24 17:45:58.672363644+00:00,1 +2023-10-24 17:45:58.802255095+00:00,1 +2023-10-24 17:45:58.930582165+00:00,1 +2023-10-24 17:45:59.057774654+00:00,1 +2023-10-24 17:45:59.186195564+00:00,1 +2023-10-24 17:45:59.314839397+00:00,1 +2023-10-24 17:45:59.442431639+00:00,1 +2023-10-24 17:45:59.570266275+00:00,1 +2023-10-24 17:45:59.698540386+00:00,1 +2023-10-24 17:45:59.826341753+00:00,1 +2023-10-24 17:45:59.954473547+00:00,1 +2023-10-24 17:46:00.082892879+00:00,1 +2023-10-24 17:46:00.211795338+00:00,1 +2023-10-24 17:46:00.338806859+00:00,1 +2023-10-24 17:46:00.465381423+00:00,1 +2023-10-24 17:46:00.592558585+00:00,1 +2023-10-24 17:46:00.720529939+00:00,1 +2023-10-24 17:46:00.848121838+00:00,1 +2023-10-24 17:46:00.976218859+00:00,1 +2023-10-24 17:46:01.103640122+00:00,1 +2023-10-24 17:46:01.231110753+00:00,1 +2023-10-24 17:46:01.360053509+00:00,1 +2023-10-24 17:46:01.489505707+00:00,1 +2023-10-24 17:46:01.617672853+00:00,1 +2023-10-24 17:46:01.745687409+00:00,1 +2023-10-24 17:46:01.874831080+00:00,1 +2023-10-24 17:46:02.002176109+00:00,1 +2023-10-24 17:46:02.129158385+00:00,1 +2023-10-24 17:46:02.256742709+00:00,1 +2023-10-24 17:46:02.383931977+00:00,1 +2023-10-24 17:46:02.510666001+00:00,1 +2023-10-24 17:46:02.637061963+00:00,1 +2023-10-24 17:46:02.764090139+00:00,1 +2023-10-24 17:46:02.891435869+00:00,1 +2023-10-24 17:46:03.018408966+00:00,1 +2023-10-24 17:46:03.146518542+00:00,1 +2023-10-24 17:46:03.276086553+00:00,1 +2023-10-24 17:46:03.404052254+00:00,1 +2023-10-24 17:46:03.532327372+00:00,1 +2023-10-24 17:46:03.658745931+00:00,1 +2023-10-24 17:46:03.787972637+00:00,1 +2023-10-24 17:46:03.915377099+00:00,1 +2023-10-24 17:46:04.043325216+00:00,1 +2023-10-24 17:46:04.170735922+00:00,1 +2023-10-24 17:46:04.298267212+00:00,1 +2023-10-24 17:46:04.426547506+00:00,1 +2023-10-24 17:46:04.554417483+00:00,1 +2023-10-24 17:46:04.682689801+00:00,1 +2023-10-24 17:46:04.810248449+00:00,1 +2023-10-24 17:46:04.937486877+00:00,1 +2023-10-24 17:46:05.065122272+00:00,1 +2023-10-24 17:46:05.193725222+00:00,1 +2023-10-24 17:46:05.322502320+00:00,1 +2023-10-24 17:46:05.450641836+00:00,1 +2023-10-24 17:46:05.579295045+00:00,1 +2023-10-24 17:46:05.708361485+00:00,1 +2023-10-24 17:46:05.836236126+00:00,1 +2023-10-24 17:46:05.964248476+00:00,1 +2023-10-24 17:46:06.092910414+00:00,1 +2023-10-24 17:46:06.220653980+00:00,1 +2023-10-24 17:46:06.348471044+00:00,1 +2023-10-24 17:46:06.476435117+00:00,1 +2023-10-24 17:46:06.604055553+00:00,1 +2023-10-24 17:46:06.732070149+00:00,1 +2023-10-24 17:46:06.859263131+00:00,1 +2023-10-24 17:46:06.988292967+00:00,1 +2023-10-24 17:46:07.115853420+00:00,1 +2023-10-24 17:46:07.243614398+00:00,1 +2023-10-24 17:46:07.371390226+00:00,1 +2023-10-24 17:46:07.498522653+00:00,1 +2023-10-24 17:46:07.626566277+00:00,1 +2023-10-24 17:46:07.754503859+00:00,1 +2023-10-24 17:46:07.882826569+00:00,1 +2023-10-24 17:46:08.011202415+00:00,1 +2023-10-24 17:46:08.139140082+00:00,1 +2023-10-24 17:46:08.268958119+00:00,1 +2023-10-24 17:46:08.398434553+00:00,1 +2023-10-24 17:46:08.526327204+00:00,1 +2023-10-24 17:46:08.653629688+00:00,1 +2023-10-24 17:46:08.780425618+00:00,1 +2023-10-24 17:46:08.907784128+00:00,1 +2023-10-24 17:46:09.038167663+00:00,1 +2023-10-24 17:46:09.166136767+00:00,1 +2023-10-24 17:46:09.293784360+00:00,1 +2023-10-24 17:46:09.420829573+00:00,1 +2023-10-24 17:46:09.550237060+00:00,1 +2023-10-24 17:46:09.678275825+00:00,1 +2023-10-24 17:46:09.806148971+00:00,1 +2023-10-24 17:46:09.934525311+00:00,1 +2023-10-24 17:46:10.062456806+00:00,1 +2023-10-24 17:46:10.190654794+00:00,1 +2023-10-24 17:46:10.317625616+00:00,1 +2023-10-24 17:46:10.445485035+00:00,1 +2023-10-24 17:46:10.573179123+00:00,1 +2023-10-24 17:46:10.700815538+00:00,1 +2023-10-24 17:46:10.828671332+00:00,1 +2023-10-24 17:46:10.955430587+00:00,1 +2023-10-24 17:46:11.083681784+00:00,1 +2023-10-24 17:46:11.211073305+00:00,1 +2023-10-24 17:46:11.337869559+00:00,1 +2023-10-24 17:46:11.465807180+00:00,1 +2023-10-24 17:46:11.593178111+00:00,1 +2023-10-24 17:46:11.719994431+00:00,1 +2023-10-24 17:46:11.848125780+00:00,1 +2023-10-24 17:46:11.975365112+00:00,1 +2023-10-24 17:46:12.102372582+00:00,1 +2023-10-24 17:46:12.230193581+00:00,1 +2023-10-24 17:46:12.357611926+00:00,1 +2023-10-24 17:46:12.485957422+00:00,1 +2023-10-24 17:46:12.613496268+00:00,1 +2023-10-24 17:46:12.742015357+00:00,1 +2023-10-24 17:46:12.871396638+00:00,1 +2023-10-24 17:46:13.000263113+00:00,1 +2023-10-24 17:46:13.128754874+00:00,1 +2023-10-24 17:46:13.256586359+00:00,1 +2023-10-24 17:46:13.385237866+00:00,1 +2023-10-24 17:46:13.513503878+00:00,1 +2023-10-24 17:46:13.641522195+00:00,1 +2023-10-24 17:46:13.769934682+00:00,1 +2023-10-24 17:46:13.897784712+00:00,1 +2023-10-24 17:46:14.027600222+00:00,1 +2023-10-24 17:46:14.156455300+00:00,1 +2023-10-24 17:46:14.285211642+00:00,1 +2023-10-24 17:46:14.414667081+00:00,1 +2023-10-24 17:46:14.543316763+00:00,1 +2023-10-24 17:46:14.672408112+00:00,1 +2023-10-24 17:46:14.802020178+00:00,1 +2023-10-24 17:46:14.929697034+00:00,1 +2023-10-24 17:46:15.057877063+00:00,1 +2023-10-24 17:46:15.186232828+00:00,1 +2023-10-24 17:46:15.314760784+00:00,1 +2023-10-24 17:46:15.442411256+00:00,1 +2023-10-24 17:46:15.571040812+00:00,1 +2023-10-24 17:46:15.698542398+00:00,1 +2023-10-24 17:46:15.825682348+00:00,1 +2023-10-24 17:46:15.953807553+00:00,1 +2023-10-24 17:46:16.082578380+00:00,1 +2023-10-24 17:46:16.210265483+00:00,1 +2023-10-24 17:46:16.339300831+00:00,1 +2023-10-24 17:46:16.466890668+00:00,1 +2023-10-24 17:46:16.594379889+00:00,1 +2023-10-24 17:46:16.722210253+00:00,1 +2023-10-24 17:46:16.849433995+00:00,1 +2023-10-24 17:46:16.978859046+00:00,1 +2023-10-24 17:46:17.107142149+00:00,1 +2023-10-24 17:46:17.235510343+00:00,1 +2023-10-24 17:46:17.363756229+00:00,1 +2023-10-24 17:46:17.490500399+00:00,1 +2023-10-24 17:46:17.620677946+00:00,1 +2023-10-24 17:46:17.748244750+00:00,1 +2023-10-24 17:46:17.876864691+00:00,1 +2023-10-24 17:46:18.005177713+00:00,1 +2023-10-24 17:46:18.132560780+00:00,1 +2023-10-24 17:46:18.261190077+00:00,1 +2023-10-24 17:46:18.389747501+00:00,1 +2023-10-24 17:46:18.518567084+00:00,1 +2023-10-24 17:46:18.647166778+00:00,1 +2023-10-24 17:46:18.775713433+00:00,1 +2023-10-24 17:46:18.904538834+00:00,1 +2023-10-24 17:46:19.033187947+00:00,1 +2023-10-24 17:46:19.160410563+00:00,1 +2023-10-24 17:46:19.288177850+00:00,1 +2023-10-24 17:46:19.415185419+00:00,1 +2023-10-24 17:46:19.542204040+00:00,1 +2023-10-24 17:46:19.669826190+00:00,1 +2023-10-24 17:46:19.799596697+00:00,1 +2023-10-24 17:46:19.928618707+00:00,1 +2023-10-24 17:46:20.058603757+00:00,1 +2023-10-24 17:46:20.186773313+00:00,1 +2023-10-24 17:46:20.314545511+00:00,1 +2023-10-24 17:46:20.443264469+00:00,1 +2023-10-24 17:46:20.572154658+00:00,1 +2023-10-24 17:46:20.699236379+00:00,1 +2023-10-24 17:46:20.828006783+00:00,1 +2023-10-24 17:46:20.956130527+00:00,1 +2023-10-24 17:46:21.084081116+00:00,1 +2023-10-24 17:46:21.212369666+00:00,1 +2023-10-24 17:46:21.340508818+00:00,1 +2023-10-24 17:46:21.469337447+00:00,1 +2023-10-24 17:46:21.598923932+00:00,1 +2023-10-24 17:46:21.727456577+00:00,1 +2023-10-24 17:46:21.856184690+00:00,1 +2023-10-24 17:46:21.984106788+00:00,1 +2023-10-24 17:46:22.113851148+00:00,1 +2023-10-24 17:46:22.241282630+00:00,1 +2023-10-24 17:46:22.370003399+00:00,1 +2023-10-24 17:46:22.498204915+00:00,1 +2023-10-24 17:46:22.626136009+00:00,1 +2023-10-24 17:46:22.754855745+00:00,1 +2023-10-24 17:46:22.882857877+00:00,1 +2023-10-24 17:46:23.010698611+00:00,1 +2023-10-24 17:46:23.138971322+00:00,1 +2023-10-24 17:46:23.268143374+00:00,1 +2023-10-24 17:46:23.395980025+00:00,1 +2023-10-24 17:46:23.523409980+00:00,1 +2023-10-24 17:46:23.651997862+00:00,1 +2023-10-24 17:46:23.779897570+00:00,1 +2023-10-24 17:46:23.908296701+00:00,1 +2023-10-24 17:46:24.035843528+00:00,1 +2023-10-24 17:46:24.164452986+00:00,1 +2023-10-24 17:46:24.292413816+00:00,1 +2023-10-24 17:46:24.420558123+00:00,1 +2023-10-24 17:46:24.549661361+00:00,1 +2023-10-24 17:46:24.677105471+00:00,1 +2023-10-24 17:46:24.805107350+00:00,1 +2023-10-24 17:46:24.932966457+00:00,1 +2023-10-24 17:46:25.061427427+00:00,1 +2023-10-24 17:46:25.188374995+00:00,1 +2023-10-24 17:46:25.317039158+00:00,1 +2023-10-24 17:46:25.444677472+00:00,1 +2023-10-24 17:46:25.572452846+00:00,1 +2023-10-24 17:46:25.700434065+00:00,1 +2023-10-24 17:46:25.829349457+00:00,1 +2023-10-24 17:46:25.958985484+00:00,1 +2023-10-24 17:46:26.088016627+00:00,1 +2023-10-24 17:46:26.215898552+00:00,1 +2023-10-24 17:46:26.344142642+00:00,1 +2023-10-24 17:46:26.473923187+00:00,1 +2023-10-24 17:46:26.601829141+00:00,1 +2023-10-24 17:46:26.730009852+00:00,1 +2023-10-24 17:46:26.858357145+00:00,1 +2023-10-24 17:46:26.986852000+00:00,1 +2023-10-24 17:46:27.116623178+00:00,1 +2023-10-24 17:46:27.245050201+00:00,1 +2023-10-24 17:46:27.373268778+00:00,1 +2023-10-24 17:46:27.501530810+00:00,1 +2023-10-24 17:46:27.630606747+00:00,1 +2023-10-24 17:46:27.759564710+00:00,1 +2023-10-24 17:46:27.887283721+00:00,1 +2023-10-24 17:46:28.017202234+00:00,1 +2023-10-24 17:46:28.145167085+00:00,1 +2023-10-24 17:46:28.273613438+00:00,1 +2023-10-24 17:46:28.403885531+00:00,1 +2023-10-24 17:46:28.531943940+00:00,1 +2023-10-24 17:46:28.659873772+00:00,1 +2023-10-24 17:46:28.787653656+00:00,1 +2023-10-24 17:46:28.915831855+00:00,1 +2023-10-24 17:46:29.046773727+00:00,1 +2023-10-24 17:46:29.177205234+00:00,1 +2023-10-24 17:46:29.307143223+00:00,1 +2023-10-24 17:46:29.435866465+00:00,1 +2023-10-24 17:46:29.565045438+00:00,1 +2023-10-24 17:46:29.693859403+00:00,1 +2023-10-24 17:46:29.821883066+00:00,1 +2023-10-24 17:46:29.947069995+00:00,1 +2023-10-24 17:46:30.073046848+00:00,1 +2023-10-24 17:46:30.198222226+00:00,1 +2023-10-24 17:46:30.322630304+00:00,1 +2023-10-24 17:46:30.447434843+00:00,1 +2023-10-24 17:46:30.572735655+00:00,1 +2023-10-24 17:46:30.698094508+00:00,1 +2023-10-24 17:46:30.824393539+00:00,1 +2023-10-24 17:46:30.950876278+00:00,1 +2023-10-24 17:46:31.077119154+00:00,1 +2023-10-24 17:46:31.203494850+00:00,1 +2023-10-24 17:46:31.328921718+00:00,1 +2023-10-24 17:46:31.456313735+00:00,1 +2023-10-24 17:46:31.583165270+00:00,1 +2023-10-24 17:46:31.709838022+00:00,1 +2023-10-24 17:46:31.835477312+00:00,1 +2023-10-24 17:46:31.963234518+00:00,1 +2023-10-24 17:46:32.089657903+00:00,1 +2023-10-24 17:46:32.215356429+00:00,1 +2023-10-24 17:46:32.340070195+00:00,1 +2023-10-24 17:46:32.465048699+00:00,1 +2023-10-24 17:46:32.591455465+00:00,1 +2023-10-24 17:46:32.716493436+00:00,1 +2023-10-24 17:46:32.842379331+00:00,1 +2023-10-24 17:46:32.969218942+00:00,1 +2023-10-24 17:46:33.095565397+00:00,1 +2023-10-24 17:46:33.221077765+00:00,1 +2023-10-24 17:46:33.347359191+00:00,1 +2023-10-24 17:46:33.472468021+00:00,1 +2023-10-24 17:46:33.597793385+00:00,1 +2023-10-24 17:46:33.722567402+00:00,1 +2023-10-24 17:46:33.847549129+00:00,1 +2023-10-24 17:46:33.974412995+00:00,1 +2023-10-24 17:46:34.100770563+00:00,1 +2023-10-24 17:46:34.226580122+00:00,1 +2023-10-24 17:46:34.353009961+00:00,1 +2023-10-24 17:46:34.480028531+00:00,1 +2023-10-24 17:46:34.605653572+00:00,1 +2023-10-24 17:46:34.731363830+00:00,1 +2023-10-24 17:46:34.856710970+00:00,1 +2023-10-24 17:46:35.992630230+00:00,1 +2023-10-24 17:46:39.203260504+00:00,1 +2023-10-24 17:46:39.329808465+00:00,1 +2023-10-24 17:46:39.456270199+00:00,1 +2023-10-24 17:46:39.582283502+00:00,1 +2023-10-24 17:46:39.709086941+00:00,1 +2023-10-24 17:46:39.836315125+00:00,1 +2023-10-24 17:46:39.963150942+00:00,1 +2023-10-24 17:46:40.089365215+00:00,1 +2023-10-24 17:46:40.215977847+00:00,1 +2023-10-24 17:46:40.343817090+00:00,1 +2023-10-24 17:46:40.470073645+00:00,1 +2023-10-24 17:46:40.595526078+00:00,1 +2023-10-24 17:46:40.721358245+00:00,1 +2023-10-24 17:46:40.848106743+00:00,1 +2023-10-24 17:46:40.973272686+00:00,1 +2023-10-24 17:46:41.098977934+00:00,1 +2023-10-24 17:46:41.224931585+00:00,1 +2023-10-24 17:46:41.351724968+00:00,1 +2023-10-24 17:46:41.477375837+00:00,1 +2023-10-24 17:46:41.603133846+00:00,1 +2023-10-24 17:46:41.728615769+00:00,1 +2023-10-24 17:46:41.853474181+00:00,1 +2023-10-24 17:46:41.979392565+00:00,1 +2023-10-24 17:46:42.104756595+00:00,1 +2023-10-24 17:46:42.230126268+00:00,1 +2023-10-24 17:46:42.354713394+00:00,1 +2023-10-24 17:46:42.480713938+00:00,1 +2023-10-24 17:46:42.608430047+00:00,1 +2023-10-24 17:46:42.733645811+00:00,1 +2023-10-24 17:46:42.859886682+00:00,1 +2023-10-24 17:46:42.986073092+00:00,1 +2023-10-24 17:46:43.112137032+00:00,1 +2023-10-24 17:46:43.237460084+00:00,1 +2023-10-24 17:46:43.364356761+00:00,1 +2023-10-24 17:46:43.490355415+00:00,1 +2023-10-24 17:46:43.615692678+00:00,1 +2023-10-24 17:46:43.742236156+00:00,1 +2023-10-24 17:46:43.868351822+00:00,1 +2023-10-24 17:46:43.994275163+00:00,1 +2023-10-24 17:46:44.120054489+00:00,1 +2023-10-24 17:46:44.244643594+00:00,1 +2023-10-24 17:46:44.369717550+00:00,1 +2023-10-24 17:46:44.494782194+00:00,1 +2023-10-24 17:46:44.619825569+00:00,1 +2023-10-24 17:46:44.744919419+00:00,1 +2023-10-24 17:46:44.870017999+00:00,1 +2023-10-24 17:46:44.995332995+00:00,1 +2023-10-24 17:46:45.121075858+00:00,1 +2023-10-24 17:46:45.247885506+00:00,1 +2023-10-24 17:46:45.374123246+00:00,1 +2023-10-24 17:46:45.501445906+00:00,1 +2023-10-24 17:46:45.628025103+00:00,1 +2023-10-24 17:46:45.755352554+00:00,1 +2023-10-24 17:46:45.882519707+00:00,1 +2023-10-24 17:46:46.009986519+00:00,1 +2023-10-24 17:46:46.139708420+00:00,1 +2023-10-24 17:46:46.268613509+00:00,1 +2023-10-24 17:46:46.395544851+00:00,1 +2023-10-24 17:46:46.522132532+00:00,1 +2023-10-24 17:46:46.649763660+00:00,1 +2023-10-24 17:46:46.776281311+00:00,1 +2023-10-24 17:46:46.902670145+00:00,1 +2023-10-24 17:46:47.030453178+00:00,1 +2023-10-24 17:46:47.157895074+00:00,1 +2023-10-24 17:46:47.285155872+00:00,1 +2023-10-24 17:46:47.411299976+00:00,1 +2023-10-24 17:46:47.538318243+00:00,1 +2023-10-24 17:46:47.663718994+00:00,1 +2023-10-24 17:46:47.789987030+00:00,1 +2023-10-24 17:46:47.918356809+00:00,1 +2023-10-24 17:46:48.045313848+00:00,1 +2023-10-24 17:46:48.171757224+00:00,1 +2023-10-24 17:46:48.297957377+00:00,1 +2023-10-24 17:46:48.425100097+00:00,1 +2023-10-24 17:46:48.553600429+00:00,1 +2023-10-24 17:46:48.682405596+00:00,1 +2023-10-24 17:46:48.810228828+00:00,1 +2023-10-24 17:46:48.939997707+00:00,1 +2023-10-24 17:46:49.068603630+00:00,1 +2023-10-24 17:46:49.197886373+00:00,1 +2023-10-24 17:46:49.326947217+00:00,1 +2023-10-24 17:46:49.453947344+00:00,1 +2023-10-24 17:46:49.582005976+00:00,1 +2023-10-24 17:46:49.711779993+00:00,1 +2023-10-24 17:46:49.840079744+00:00,1 +2023-10-24 17:46:49.968109354+00:00,1 +2023-10-24 17:46:50.096625782+00:00,1 +2023-10-24 17:46:50.224176848+00:00,1 +2023-10-24 17:46:50.352110795+00:00,1 +2023-10-24 17:46:50.480120451+00:00,1 +2023-10-24 17:46:50.607565564+00:00,1 +2023-10-24 17:46:50.735164191+00:00,1 +2023-10-24 17:46:50.864402891+00:00,1 +2023-10-24 17:46:50.992107797+00:00,1 +2023-10-24 17:46:51.120346780+00:00,1 +2023-10-24 17:46:51.247451294+00:00,1 +2023-10-24 17:46:51.375799207+00:00,1 +2023-10-24 17:46:51.503752285+00:00,1 +2023-10-24 17:46:51.631394376+00:00,1 +2023-10-24 17:46:51.760560648+00:00,1 +2023-10-24 17:46:51.889032821+00:00,1 +2023-10-24 17:46:52.018345040+00:00,1 +2023-10-24 17:46:52.146719807+00:00,1 +2023-10-24 17:46:52.274919775+00:00,1 +2023-10-24 17:46:52.403031578+00:00,1 +2023-10-24 17:46:52.530926497+00:00,1 +2023-10-24 17:46:52.659228326+00:00,1 +2023-10-24 17:46:52.788342809+00:00,1 +2023-10-24 17:46:52.918999398+00:00,1 +2023-10-24 17:46:53.046253569+00:00,1 +2023-10-24 17:46:53.175066775+00:00,1 +2023-10-24 17:46:53.301852687+00:00,1 +2023-10-24 17:46:53.429254622+00:00,1 +2023-10-24 17:46:53.557258488+00:00,1 +2023-10-24 17:46:53.684809580+00:00,1 +2023-10-24 17:46:53.811826067+00:00,1 +2023-10-24 17:46:53.940032585+00:00,1 +2023-10-24 17:46:54.069350190+00:00,1 +2023-10-24 17:46:54.197739754+00:00,1 +2023-10-24 17:46:54.326505445+00:00,1 +2023-10-24 17:46:54.455683492+00:00,1 +2023-10-24 17:46:54.583270995+00:00,1 +2023-10-24 17:46:54.710761111+00:00,1 +2023-10-24 17:46:54.840386297+00:00,1 +2023-10-24 17:46:54.968613076+00:00,1 +2023-10-24 17:46:55.097266072+00:00,1 +2023-10-24 17:46:55.224935301+00:00,1 +2023-10-24 17:46:55.352121300+00:00,1 +2023-10-24 17:46:55.480206574+00:00,1 +2023-10-24 17:46:55.609236804+00:00,1 +2023-10-24 17:46:55.738456089+00:00,1 +2023-10-24 17:46:55.868245404+00:00,1 +2023-10-24 17:46:55.995555645+00:00,1 +2023-10-24 17:46:56.123404729+00:00,1 +2023-10-24 17:46:56.250934398+00:00,1 +2023-10-24 17:46:56.379029426+00:00,1 +2023-10-24 17:46:56.506421416+00:00,1 +2023-10-24 17:46:56.635016684+00:00,1 +2023-10-24 17:46:56.764120852+00:00,1 +2023-10-24 17:46:56.892070518+00:00,1 +2023-10-24 17:46:57.020517977+00:00,1 +2023-10-24 17:46:57.148036087+00:00,1 +2023-10-24 17:46:57.277849363+00:00,1 +2023-10-24 17:46:57.406438045+00:00,1 +2023-10-24 17:46:57.535558319+00:00,1 +2023-10-24 17:46:57.663135302+00:00,1 +2023-10-24 17:46:57.790983200+00:00,1 +2023-10-24 17:46:57.918038132+00:00,1 +2023-10-24 17:46:58.045140905+00:00,1 +2023-10-24 17:46:58.174074919+00:00,1 +2023-10-24 17:46:58.304522285+00:00,1 +2023-10-24 17:46:58.432637020+00:00,1 +2023-10-24 17:46:58.560860802+00:00,1 +2023-10-24 17:46:58.688345111+00:00,1 +2023-10-24 17:46:58.817263569+00:00,1 +2023-10-24 17:46:58.946775126+00:00,1 +2023-10-24 17:46:59.074764042+00:00,1 +2023-10-24 17:46:59.202370857+00:00,1 +2023-10-24 17:46:59.330837947+00:00,1 +2023-10-24 17:46:59.459426354+00:00,1 +2023-10-24 17:46:59.587450874+00:00,1 +2023-10-24 17:46:59.717112459+00:00,1 +2023-10-24 17:46:59.845224266+00:00,1 +2023-10-24 17:46:59.973765592+00:00,1 +2023-10-24 17:47:00.101708165+00:00,1 +2023-10-24 17:47:00.230756426+00:00,1 +2023-10-24 17:47:00.359657665+00:00,1 +2023-10-24 17:47:00.488297676+00:00,1 +2023-10-24 17:47:00.618419989+00:00,1 +2023-10-24 17:47:00.745401005+00:00,1 +2023-10-24 17:47:00.872365381+00:00,1 +2023-10-24 17:47:00.999180981+00:00,1 +2023-10-24 17:47:01.127797595+00:00,1 +2023-10-24 17:47:01.256387781+00:00,1 +2023-10-24 17:47:01.384828442+00:00,1 +2023-10-24 17:47:01.513879923+00:00,1 +2023-10-24 17:47:01.640690646+00:00,1 +2023-10-24 17:47:01.768173921+00:00,1 +2023-10-24 17:47:01.896693758+00:00,1 +2023-10-24 17:47:02.024483211+00:00,1 +2023-10-24 17:47:02.152507913+00:00,1 +2023-10-24 17:47:02.279775639+00:00,1 +2023-10-24 17:47:02.407101306+00:00,1 +2023-10-24 17:47:02.534894261+00:00,1 +2023-10-24 17:47:02.663634952+00:00,1 +2023-10-24 17:47:02.792555469+00:00,1 +2023-10-24 17:47:02.920293006+00:00,1 +2023-10-24 17:47:03.048141143+00:00,1 +2023-10-24 17:47:03.177415802+00:00,1 +2023-10-24 17:47:03.305355153+00:00,1 +2023-10-24 17:47:03.434139856+00:00,1 +2023-10-24 17:47:03.563629437+00:00,1 +2023-10-24 17:47:03.691510515+00:00,1 +2023-10-24 17:47:03.821466927+00:00,1 +2023-10-24 17:47:03.949675477+00:00,1 +2023-10-24 17:47:04.077357940+00:00,1 +2023-10-24 17:47:04.205413645+00:00,1 +2023-10-24 17:47:04.332860776+00:00,1 +2023-10-24 17:47:04.460788780+00:00,1 +2023-10-24 17:47:04.588859571+00:00,1 +2023-10-24 17:47:04.716456063+00:00,1 +2023-10-24 17:47:04.845956302+00:00,1 +2023-10-24 17:47:04.974687650+00:00,1 +2023-10-24 17:47:05.103187127+00:00,1 +2023-10-24 17:47:05.231698579+00:00,1 +2023-10-24 17:47:05.359507624+00:00,1 +2023-10-24 17:47:05.487757569+00:00,1 +2023-10-24 17:47:05.617090721+00:00,1 +2023-10-24 17:47:05.745493570+00:00,1 +2023-10-24 17:47:05.874007815+00:00,1 +2023-10-24 17:47:06.002220587+00:00,1 +2023-10-24 17:47:06.132056630+00:00,1 +2023-10-24 17:47:06.260529235+00:00,1 +2023-10-24 17:47:06.389721464+00:00,1 +2023-10-24 17:47:06.518232184+00:00,1 +2023-10-24 17:47:06.648341795+00:00,1 +2023-10-24 17:47:06.776594742+00:00,1 +2023-10-24 17:47:06.906614587+00:00,1 +2023-10-24 17:47:07.036818721+00:00,1 +2023-10-24 17:47:07.165334311+00:00,1 +2023-10-24 17:47:07.293044146+00:00,1 +2023-10-24 17:47:07.420456887+00:00,1 +2023-10-24 17:47:07.550229583+00:00,1 +2023-10-24 17:47:07.677544100+00:00,1 +2023-10-24 17:47:07.806121452+00:00,1 +2023-10-24 17:47:07.935522643+00:00,1 +2023-10-24 17:47:08.064873845+00:00,1 +2023-10-24 17:47:08.194214331+00:00,1 +2023-10-24 17:47:08.323411545+00:00,1 +2023-10-24 17:47:08.451223286+00:00,1 +2023-10-24 17:47:08.579840916+00:00,1 +2023-10-24 17:47:08.707356555+00:00,1 +2023-10-24 17:47:08.837663527+00:00,1 +2023-10-24 17:47:08.967312360+00:00,1 +2023-10-24 17:47:09.096271601+00:00,1 +2023-10-24 17:47:09.225853293+00:00,1 +2023-10-24 17:47:09.353735305+00:00,1 +2023-10-24 17:47:09.483691554+00:00,1 +2023-10-24 17:47:09.612212048+00:00,1 +2023-10-24 17:47:09.740138727+00:00,1 +2023-10-24 17:47:09.868810735+00:00,1 +2023-10-24 17:47:09.998229740+00:00,1 +2023-10-24 17:47:10.127334336+00:00,1 +2023-10-24 17:47:10.257810541+00:00,1 +2023-10-24 17:47:10.385830953+00:00,1 +2023-10-24 17:47:10.514578449+00:00,1 +2023-10-24 17:47:10.642901519+00:00,1 +2023-10-24 17:47:10.771588106+00:00,1 +2023-10-24 17:47:10.901498190+00:00,1 +2023-10-24 17:47:11.028953536+00:00,1 +2023-10-24 17:47:11.157056716+00:00,1 +2023-10-24 17:47:11.286010077+00:00,1 +2023-10-24 17:47:11.413974819+00:00,1 +2023-10-24 17:47:11.544456877+00:00,1 +2023-10-24 17:47:11.673067367+00:00,1 +2023-10-24 17:47:11.802432578+00:00,1 +2023-10-24 17:47:11.931389014+00:00,1 +2023-10-24 17:47:12.059699288+00:00,1 +2023-10-24 17:47:12.188779246+00:00,1 +2023-10-24 17:47:12.316514646+00:00,1 +2023-10-24 17:47:12.445022338+00:00,1 +2023-10-24 17:47:12.574798972+00:00,1 +2023-10-24 17:47:12.702711202+00:00,1 +2023-10-24 17:47:12.831658094+00:00,1 +2023-10-24 17:47:12.961569399+00:00,1 +2023-10-24 17:47:13.091641213+00:00,1 +2023-10-24 17:47:13.219514012+00:00,1 +2023-10-24 17:47:13.346068248+00:00,1 +2023-10-24 17:47:13.474519080+00:00,1 +2023-10-24 17:47:13.603878716+00:00,1 +2023-10-24 17:47:13.732365339+00:00,1 +2023-10-24 17:47:13.860807476+00:00,1 +2023-10-24 17:47:13.988343131+00:00,1 +2023-10-24 17:47:14.115200730+00:00,1 +2023-10-24 17:47:14.243488456+00:00,1 +2023-10-24 17:47:14.372525993+00:00,1 +2023-10-24 17:47:14.499522824+00:00,1 +2023-10-24 17:47:14.626256500+00:00,1 +2023-10-24 17:47:14.755999266+00:00,1 +2023-10-24 17:47:14.885787450+00:00,1 +2023-10-24 17:47:15.013111127+00:00,1 +2023-10-24 17:47:15.139690692+00:00,1 +2023-10-24 17:47:15.268737188+00:00,1 +2023-10-24 17:47:15.397040361+00:00,1 +2023-10-24 17:47:15.525845752+00:00,1 +2023-10-24 17:47:15.652583422+00:00,1 +2023-10-24 17:47:15.780618887+00:00,1 +2023-10-24 17:47:15.908078330+00:00,1 +2023-10-24 17:47:16.035736008+00:00,1 +2023-10-24 17:47:16.163563393+00:00,1 +2023-10-24 17:47:16.293673460+00:00,1 +2023-10-24 17:47:16.421248557+00:00,1 +2023-10-24 17:47:16.549522245+00:00,1 +2023-10-24 17:47:16.676539481+00:00,1 +2023-10-24 17:47:16.804010318+00:00,1 +2023-10-24 17:47:16.932757248+00:00,1 +2023-10-24 17:47:17.062939617+00:00,1 +2023-10-24 17:47:17.189889855+00:00,1 +2023-10-24 17:47:17.317575122+00:00,1 +2023-10-24 17:47:17.445216940+00:00,1 +2023-10-24 17:47:17.574631092+00:00,1 +2023-10-24 17:47:17.702500124+00:00,1 +2023-10-24 17:47:17.830439399+00:00,1 +2023-10-24 17:47:17.959501900+00:00,1 +2023-10-24 17:47:18.087636788+00:00,1 +2023-10-24 17:47:18.215574715+00:00,1 +2023-10-24 17:47:18.345415164+00:00,1 +2023-10-24 17:47:18.472579080+00:00,1 +2023-10-24 17:47:18.599352095+00:00,1 +2023-10-24 17:47:18.728276115+00:00,1 +2023-10-24 17:47:18.856211679+00:00,1 +2023-10-24 17:47:18.984500243+00:00,1 +2023-10-24 17:47:19.114257242+00:00,1 +2023-10-24 17:47:19.241650039+00:00,1 +2023-10-24 17:47:19.370842842+00:00,1 +2023-10-24 17:47:19.499554109+00:00,1 +2023-10-24 17:47:19.626772481+00:00,1 +2023-10-24 17:47:19.754341801+00:00,1 +2023-10-24 17:47:19.881399585+00:00,1 +2023-10-24 17:47:20.008867848+00:00,1 +2023-10-24 17:47:20.136549332+00:00,1 +2023-10-24 17:47:20.264044468+00:00,1 +2023-10-24 17:47:20.391278492+00:00,1 +2023-10-24 17:47:20.520827745+00:00,1 +2023-10-24 17:47:20.649710331+00:00,1 +2023-10-24 17:47:20.777861044+00:00,1 +2023-10-24 17:47:20.905859474+00:00,1 +2023-10-24 17:47:21.035313910+00:00,1 +2023-10-24 17:47:21.162458277+00:00,1 +2023-10-24 17:47:21.291802589+00:00,1 +2023-10-24 17:47:21.420308980+00:00,1 +2023-10-24 17:47:21.549104944+00:00,1 +2023-10-24 17:47:21.676490080+00:00,1 +2023-10-24 17:47:21.805153652+00:00,1 +2023-10-24 17:47:21.934176258+00:00,1 +2023-10-24 17:47:22.061313615+00:00,1 +2023-10-24 17:47:22.191370687+00:00,1 +2023-10-24 17:47:22.320106768+00:00,1 +2023-10-24 17:47:22.447793988+00:00,1 +2023-10-24 17:47:22.575756447+00:00,1 +2023-10-24 17:47:22.703600266+00:00,1 +2023-10-24 17:47:22.831749284+00:00,1 +2023-10-24 17:47:22.959137994+00:00,1 +2023-10-24 17:47:23.087562302+00:00,1 +2023-10-24 17:47:23.214974265+00:00,1 +2023-10-24 17:47:23.343211190+00:00,1 +2023-10-24 17:47:23.472439602+00:00,1 +2023-10-24 17:47:23.600120362+00:00,1 +2023-10-24 17:47:23.729111526+00:00,1 +2023-10-24 17:47:23.856510058+00:00,1 +2023-10-24 17:47:23.983992315+00:00,1 +2023-10-24 17:47:24.113356566+00:00,1 +2023-10-24 17:47:24.242607926+00:00,1 +2023-10-24 17:47:24.371868635+00:00,1 +2023-10-24 17:47:24.500440660+00:00,1 +2023-10-24 17:47:24.629093252+00:00,1 +2023-10-24 17:47:24.756820465+00:00,1 +2023-10-24 17:47:24.885630847+00:00,1 +2023-10-24 17:47:25.014574310+00:00,1 +2023-10-24 17:47:25.142977472+00:00,1 +2023-10-24 17:47:25.271838802+00:00,1 +2023-10-24 17:47:25.399026898+00:00,1 +2023-10-24 17:47:25.526654247+00:00,1 +2023-10-24 17:47:25.654049354+00:00,1 +2023-10-24 17:47:25.782519135+00:00,1 +2023-10-24 17:47:25.911468088+00:00,1 +2023-10-24 17:47:26.040328267+00:00,1 +2023-10-24 17:47:26.168620581+00:00,1 +2023-10-24 17:47:26.297502232+00:00,1 +2023-10-24 17:47:26.425277503+00:00,1 +2023-10-24 17:47:26.552126984+00:00,1 +2023-10-24 17:47:26.678965242+00:00,1 +2023-10-24 17:47:26.806280636+00:00,1 +2023-10-24 17:47:26.933500788+00:00,1 +2023-10-24 17:47:27.060654410+00:00,1 +2023-10-24 17:47:27.189403385+00:00,1 +2023-10-24 17:47:27.317957888+00:00,1 +2023-10-24 17:47:27.445250595+00:00,1 +2023-10-24 17:47:27.573568159+00:00,1 +2023-10-24 17:47:27.701210396+00:00,1 +2023-10-24 17:47:27.829841132+00:00,1 +2023-10-24 17:47:27.958787414+00:00,1 +2023-10-24 17:47:28.087245486+00:00,1 +2023-10-24 17:47:28.216304414+00:00,1 +2023-10-24 17:47:28.344988464+00:00,1 +2023-10-24 17:47:28.472553929+00:00,1 +2023-10-24 17:47:28.600154188+00:00,1 +2023-10-24 17:47:28.728046235+00:00,1 +2023-10-24 17:47:28.855448645+00:00,1 +2023-10-24 17:47:28.982739242+00:00,1 +2023-10-24 17:47:29.110597905+00:00,1 +2023-10-24 17:47:29.238409612+00:00,1 +2023-10-24 17:47:29.366228720+00:00,1 +2023-10-24 17:47:29.493386687+00:00,1 +2023-10-24 17:47:29.622379653+00:00,1 +2023-10-24 17:47:29.750624883+00:00,1 +2023-10-24 17:47:29.879076598+00:00,1 +2023-10-24 17:47:30.007733801+00:00,1 +2023-10-24 17:47:30.135390918+00:00,1 +2023-10-24 17:47:30.264071632+00:00,1 +2023-10-24 17:47:30.392269268+00:00,1 +2023-10-24 17:47:30.520733163+00:00,1 +2023-10-24 17:47:30.648455995+00:00,1 +2023-10-24 17:47:30.776365603+00:00,1 +2023-10-24 17:47:30.905240018+00:00,1 +2023-10-24 17:47:31.032991073+00:00,1 +2023-10-24 17:47:31.161905236+00:00,1 +2023-10-24 17:47:31.289348845+00:00,1 +2023-10-24 17:47:31.416379099+00:00,1 +2023-10-24 17:47:31.543578246+00:00,1 +2023-10-24 17:47:31.671275597+00:00,1 +2023-10-24 17:47:31.800039758+00:00,1 +2023-10-24 17:47:31.928007126+00:00,1 +2023-10-24 17:47:32.056015130+00:00,1 +2023-10-24 17:47:32.183308299+00:00,1 +2023-10-24 17:47:32.310862633+00:00,1 +2023-10-24 17:47:32.438666885+00:00,1 +2023-10-24 17:47:32.568424814+00:00,1 +2023-10-24 17:47:32.698055360+00:00,1 +2023-10-24 17:47:32.825634934+00:00,1 +2023-10-24 17:47:32.953515727+00:00,1 +2023-10-24 17:47:33.082193119+00:00,1 +2023-10-24 17:47:33.210664874+00:00,1 +2023-10-24 17:47:33.339048358+00:00,1 +2023-10-24 17:47:33.466911950+00:00,1 +2023-10-24 17:47:33.594591315+00:00,1 +2023-10-24 17:47:33.721629749+00:00,1 +2023-10-24 17:47:33.849857359+00:00,1 +2023-10-24 17:47:33.976691165+00:00,1 +2023-10-24 17:47:34.104638884+00:00,1 +2023-10-24 17:47:34.232216400+00:00,1 +2023-10-24 17:47:34.360122586+00:00,1 +2023-10-24 17:47:34.488414631+00:00,1 +2023-10-24 17:47:34.617798176+00:00,1 +2023-10-24 17:47:34.745307081+00:00,1 +2023-10-24 17:47:34.873020259+00:00,1 +2023-10-24 17:47:35.000252465+00:00,1 +2023-10-24 17:47:35.129688113+00:00,1 +2023-10-24 17:47:35.257792543+00:00,1 +2023-10-24 17:47:35.385714255+00:00,1 +2023-10-24 17:47:35.513891278+00:00,1 +2023-10-24 17:47:35.643200323+00:00,1 +2023-10-24 17:47:35.771637751+00:00,1 +2023-10-24 17:47:35.899902692+00:00,1 +2023-10-24 17:47:36.027490055+00:00,1 +2023-10-24 17:47:36.155295794+00:00,1 +2023-10-24 17:47:36.283889726+00:00,1 +2023-10-24 17:47:36.411552586+00:00,1 +2023-10-24 17:47:36.540318596+00:00,1 +2023-10-24 17:47:36.668309643+00:00,1 +2023-10-24 17:47:36.797305258+00:00,1 +2023-10-24 17:47:36.925272311+00:00,1 +2023-10-24 17:47:37.054182990+00:00,1 +2023-10-24 17:47:37.182712583+00:00,1 +2023-10-24 17:47:37.311722247+00:00,1 +2023-10-24 17:47:37.439779117+00:00,1 +2023-10-24 17:47:37.568459369+00:00,1 +2023-10-24 17:47:37.696449335+00:00,1 +2023-10-24 17:47:37.824742877+00:00,1 +2023-10-24 17:47:37.953289859+00:00,1 +2023-10-24 17:47:38.082227907+00:00,1 +2023-10-24 17:47:38.210044334+00:00,1 +2023-10-24 17:47:38.338388027+00:00,1 +2023-10-24 17:47:38.465931466+00:00,1 +2023-10-24 17:47:38.594341961+00:00,1 +2023-10-24 17:47:38.723217403+00:00,1 +2023-10-24 17:47:38.853408279+00:00,1 +2023-10-24 17:47:38.982583879+00:00,1 +2023-10-24 17:47:39.112237223+00:00,1 +2023-10-24 17:47:39.241341800+00:00,1 +2023-10-24 17:47:39.369685726+00:00,1 +2023-10-24 17:47:39.497909257+00:00,1 +2023-10-24 17:47:39.624893093+00:00,1 +2023-10-24 17:47:39.752958193+00:00,1 +2023-10-24 17:47:39.881077176+00:00,1 +2023-10-24 17:47:40.011430747+00:00,1 +2023-10-24 17:47:40.139784025+00:00,1 +2023-10-24 17:47:40.269367826+00:00,1 +2023-10-24 17:47:40.397450838+00:00,1 +2023-10-24 17:47:40.525205696+00:00,1 +2023-10-24 17:47:40.655727926+00:00,1 +2023-10-24 17:47:40.783803033+00:00,1 +2023-10-24 17:47:40.911403275+00:00,1 +2023-10-24 17:47:41.039057375+00:00,1 +2023-10-24 17:47:41.167252131+00:00,1 +2023-10-24 17:47:41.294666495+00:00,1 +2023-10-24 17:47:41.422001571+00:00,1 +2023-10-24 17:47:41.549770971+00:00,1 +2023-10-24 17:47:41.677058050+00:00,1 +2023-10-24 17:47:41.806147822+00:00,1 +2023-10-24 17:47:41.933798673+00:00,1 +2023-10-24 17:47:42.061880719+00:00,1 +2023-10-24 17:47:42.190222341+00:00,1 +2023-10-24 17:47:42.317808236+00:00,1 +2023-10-24 17:47:42.444847101+00:00,1 +2023-10-24 17:47:42.572790210+00:00,1 +2023-10-24 17:47:42.702050188+00:00,1 +2023-10-24 17:47:42.830911243+00:00,1 +2023-10-24 17:47:42.959152265+00:00,1 +2023-10-24 17:47:43.087492621+00:00,1 +2023-10-24 17:47:43.215636227+00:00,1 +2023-10-24 17:47:43.344128113+00:00,1 +2023-10-24 17:47:43.471337399+00:00,1 +2023-10-24 17:47:43.598280470+00:00,1 +2023-10-24 17:47:43.724871382+00:00,1 +2023-10-24 17:47:43.852735537+00:00,1 +2023-10-24 17:47:43.982047823+00:00,1 +2023-10-24 17:47:44.110344317+00:00,1 +2023-10-24 17:47:44.238207303+00:00,1 +2023-10-24 17:47:44.365913309+00:00,1 +2023-10-24 17:47:44.494151094+00:00,1 +2023-10-24 17:47:44.622609973+00:00,1 +2023-10-24 17:47:44.752859606+00:00,1 +2023-10-24 17:47:44.882409137+00:00,1 +2023-10-24 17:47:45.010571395+00:00,1 +2023-10-24 17:47:45.140038673+00:00,1 +2023-10-24 17:47:45.267989581+00:00,1 +2023-10-24 17:47:45.396837683+00:00,1 +2023-10-24 17:47:45.524992494+00:00,1 +2023-10-24 17:47:45.652497251+00:00,1 +2023-10-24 17:47:45.780310845+00:00,1 +2023-10-24 17:47:45.909276309+00:00,1 +2023-10-24 17:47:46.035883281+00:00,1 +2023-10-24 17:47:46.163976392+00:00,1 +2023-10-24 17:47:46.290764020+00:00,1 +2023-10-24 17:47:46.418534064+00:00,1 +2023-10-24 17:47:46.547443734+00:00,1 +2023-10-24 17:47:46.675490876+00:00,1 +2023-10-24 17:47:46.803673243+00:00,1 +2023-10-24 17:47:46.931902551+00:00,1 +2023-10-24 17:47:47.060322228+00:00,1 +2023-10-24 17:47:47.186844200+00:00,1 +2023-10-24 17:47:47.315005380+00:00,1 +2023-10-24 17:47:47.444162969+00:00,1 +2023-10-24 17:47:47.571844408+00:00,1 +2023-10-24 17:47:47.699472797+00:00,1 +2023-10-24 17:47:47.827380325+00:00,1 +2023-10-24 17:47:47.954932123+00:00,1 +2023-10-24 17:47:48.082822309+00:00,1 +2023-10-24 17:47:48.209969041+00:00,1 +2023-10-24 17:47:48.336502446+00:00,1 +2023-10-24 17:47:48.463758038+00:00,1 +2023-10-24 17:47:48.593069463+00:00,1 +2023-10-24 17:47:48.721502555+00:00,1 +2023-10-24 17:47:48.849771797+00:00,1 +2023-10-24 17:47:48.978211879+00:00,1 +2023-10-24 17:47:49.106423683+00:00,1 +2023-10-24 17:47:49.234540718+00:00,1 +2023-10-24 17:47:49.362507818+00:00,1 +2023-10-24 17:47:49.490226715+00:00,1 +2023-10-24 17:47:49.617021081+00:00,1 +2023-10-24 17:47:49.744535251+00:00,1 +2023-10-24 17:47:49.872967953+00:00,1 +2023-10-24 17:47:50.001647056+00:00,1 +2023-10-24 17:47:50.130242217+00:00,1 +2023-10-24 17:47:50.258044468+00:00,1 +2023-10-24 17:47:50.385689487+00:00,1 +2023-10-24 17:47:50.513843117+00:00,1 +2023-10-24 17:47:50.640784848+00:00,1 +2023-10-24 17:47:50.768793661+00:00,1 +2023-10-24 17:47:50.896388712+00:00,1 +2023-10-24 17:47:51.024285410+00:00,1 +2023-10-24 17:47:51.151283016+00:00,1 +2023-10-24 17:47:51.280259624+00:00,1 +2023-10-24 17:47:51.407920729+00:00,1 +2023-10-24 17:47:51.535497917+00:00,1 +2023-10-24 17:47:51.663992455+00:00,1 +2023-10-24 17:47:51.791421861+00:00,1 +2023-10-24 17:47:51.919405768+00:00,1 +2023-10-24 17:47:52.048441228+00:00,1 +2023-10-24 17:47:52.175803875+00:00,1 +2023-10-24 17:47:52.304813341+00:00,1 +2023-10-24 17:47:52.431625126+00:00,1 +2023-10-24 17:47:52.560523155+00:00,1 +2023-10-24 17:47:52.688153774+00:00,1 +2023-10-24 17:47:52.817366832+00:00,1 +2023-10-24 17:47:52.945504600+00:00,1 +2023-10-24 17:47:53.073908164+00:00,1 +2023-10-24 17:47:53.201502693+00:00,1 +2023-10-24 17:47:53.329461806+00:00,1 +2023-10-24 17:47:53.458284521+00:00,1 +2023-10-24 17:47:53.586246947+00:00,1 +2023-10-24 17:47:53.714070385+00:00,1 +2023-10-24 17:47:53.843494608+00:00,1 +2023-10-24 17:47:53.973753618+00:00,1 +2023-10-24 17:47:54.101778895+00:00,1 +2023-10-24 17:47:54.229548455+00:00,1 +2023-10-24 17:47:54.358219804+00:00,1 +2023-10-24 17:47:54.487566617+00:00,1 +2023-10-24 17:47:54.615319581+00:00,1 +2023-10-24 17:47:54.744159141+00:00,1 +2023-10-24 17:47:54.872723634+00:00,1 +2023-10-24 17:47:55.000849315+00:00,1 +2023-10-24 17:47:55.129191884+00:00,1 +2023-10-24 17:47:55.256904251+00:00,1 +2023-10-24 17:47:55.385976992+00:00,1 +2023-10-24 17:47:55.513641286+00:00,1 +2023-10-24 17:47:55.642431674+00:00,1 +2023-10-24 17:47:55.770066307+00:00,1 +2023-10-24 17:47:55.898155040+00:00,1 +2023-10-24 17:47:56.026708522+00:00,1 +2023-10-24 17:47:56.155555592+00:00,1 +2023-10-24 17:47:56.284350638+00:00,1 +2023-10-24 17:47:56.412552887+00:00,1 +2023-10-24 17:47:56.541738130+00:00,1 +2023-10-24 17:47:56.670198661+00:00,1 +2023-10-24 17:47:56.801068119+00:00,1 +2023-10-24 17:47:56.929956795+00:00,1 +2023-10-24 17:47:57.057409274+00:00,1 +2023-10-24 17:47:57.186708176+00:00,1 +2023-10-24 17:47:57.315986973+00:00,1 +2023-10-24 17:47:57.444649011+00:00,1 +2023-10-24 17:47:57.575096143+00:00,1 +2023-10-24 17:47:57.706410950+00:00,1 +2023-10-24 17:47:57.834709750+00:00,1 +2023-10-24 17:47:57.963862263+00:00,1 +2023-10-24 17:47:58.092387153+00:00,1 +2023-10-24 17:47:58.221444575+00:00,1 +2023-10-24 17:47:58.349268880+00:00,1 +2023-10-24 17:47:58.479137779+00:00,1 +2023-10-24 17:47:58.607872153+00:00,1 +2023-10-24 17:47:58.737381576+00:00,1 +2023-10-24 17:47:58.866696092+00:00,1 +2023-10-24 17:47:58.996042792+00:00,1 +2023-10-24 17:47:59.125251259+00:00,1 +2023-10-24 17:47:59.253924463+00:00,1 +2023-10-24 17:47:59.383615096+00:00,1 +2023-10-24 17:47:59.512593907+00:00,1 +2023-10-24 17:47:59.643526603+00:00,1 +2023-10-24 17:47:59.772206226+00:00,1 +2023-10-24 17:47:59.900103480+00:00,1 +2023-10-24 17:48:00.027911528+00:00,1 +2023-10-24 17:48:00.155902519+00:00,1 +2023-10-24 17:48:00.283736640+00:00,1 +2023-10-24 17:48:00.411882180+00:00,1 +2023-10-24 17:48:00.539877827+00:00,1 +2023-10-24 17:48:00.668010134+00:00,1 +2023-10-24 17:48:00.797671528+00:00,1 +2023-10-24 17:48:00.925721652+00:00,1 +2023-10-24 17:48:01.057013943+00:00,1 +2023-10-24 17:48:01.186181854+00:00,1 +2023-10-24 17:48:01.313345499+00:00,1 +2023-10-24 17:48:01.442274297+00:00,1 +2023-10-24 17:48:01.569814579+00:00,1 +2023-10-24 17:48:01.698735351+00:00,1 +2023-10-24 17:48:01.829486321+00:00,1 +2023-10-24 17:48:01.958876735+00:00,1 +2023-10-24 17:48:02.087892839+00:00,1 +2023-10-24 17:48:02.218057760+00:00,1 +2023-10-24 17:48:02.347412498+00:00,1 +2023-10-24 17:48:02.475813473+00:00,1 +2023-10-24 17:48:02.604821153+00:00,1 +2023-10-24 17:48:02.733299538+00:00,1 +2023-10-24 17:48:02.863279119+00:00,1 +2023-10-24 17:48:02.992818593+00:00,1 +2023-10-24 17:48:03.120370868+00:00,1 +2023-10-24 17:48:03.248279425+00:00,1 +2023-10-24 17:48:03.375945411+00:00,1 +2023-10-24 17:48:03.504267793+00:00,1 +2023-10-24 17:48:03.632152477+00:00,1 +2023-10-24 17:48:03.760934668+00:00,1 +2023-10-24 17:48:03.889228220+00:00,1 +2023-10-24 17:48:04.018370861+00:00,1 +2023-10-24 17:48:04.146023971+00:00,1 +2023-10-24 17:48:04.274218287+00:00,1 +2023-10-24 17:48:04.402647299+00:00,1 +2023-10-24 17:48:04.529545205+00:00,1 +2023-10-24 17:48:04.659153801+00:00,1 +2023-10-24 17:48:04.787078677+00:00,1 +2023-10-24 17:48:04.914503572+00:00,1 +2023-10-24 17:48:05.043483470+00:00,1 +2023-10-24 17:48:05.170687369+00:00,1 +2023-10-24 17:48:05.299323363+00:00,1 +2023-10-24 17:48:05.428630950+00:00,1 +2023-10-24 17:48:05.557245302+00:00,1 +2023-10-24 17:48:05.685829390+00:00,1 +2023-10-24 17:48:05.815285099+00:00,1 +2023-10-24 17:48:05.942913221+00:00,1 +2023-10-24 17:48:06.070946558+00:00,1 +2023-10-24 17:48:06.197942509+00:00,1 +2023-10-24 17:48:06.325252217+00:00,1 +2023-10-24 17:48:06.453297489+00:00,1 +2023-10-24 17:48:06.582255728+00:00,1 +2023-10-24 17:48:06.711539428+00:00,1 +2023-10-24 17:48:06.840133072+00:00,1 +2023-10-24 17:48:06.968572865+00:00,1 +2023-10-24 17:48:07.098787046+00:00,1 +2023-10-24 17:48:07.228110245+00:00,1 +2023-10-24 17:48:07.357468456+00:00,1 +2023-10-24 17:48:07.485617588+00:00,1 +2023-10-24 17:48:07.613707572+00:00,1 +2023-10-24 17:48:07.742251298+00:00,1 +2023-10-24 17:48:07.869985844+00:00,1 +2023-10-24 17:48:07.997937717+00:00,1 +2023-10-24 17:48:08.125853886+00:00,1 +2023-10-24 17:48:08.254375619+00:00,1 +2023-10-24 17:48:08.382162511+00:00,1 +2023-10-24 17:48:08.510574076+00:00,1 +2023-10-24 17:48:08.637723790+00:00,1 +2023-10-24 17:48:08.765276818+00:00,1 +2023-10-24 17:48:08.892734516+00:00,1 +2023-10-24 17:48:09.021591205+00:00,1 +2023-10-24 17:48:09.148754195+00:00,1 +2023-10-24 17:48:09.275822681+00:00,1 +2023-10-24 17:48:09.403257932+00:00,1 +2023-10-24 17:48:09.532188086+00:00,1 +2023-10-24 17:48:09.659202438+00:00,1 +2023-10-24 17:48:09.786652937+00:00,1 +2023-10-24 17:48:09.914975109+00:00,1 +2023-10-24 17:48:10.042593388+00:00,1 +2023-10-24 17:48:10.169826161+00:00,1 +2023-10-24 17:48:10.297748576+00:00,1 +2023-10-24 17:48:10.426847380+00:00,1 +2023-10-24 17:48:10.554537799+00:00,1 +2023-10-24 17:48:10.683342827+00:00,1 +2023-10-24 17:48:10.811203858+00:00,1 +2023-10-24 17:48:10.939456922+00:00,1 +2023-10-24 17:48:11.067519201+00:00,1 +2023-10-24 17:48:11.196115690+00:00,1 +2023-10-24 17:48:11.324231177+00:00,1 +2023-10-24 17:48:11.452413281+00:00,1 +2023-10-24 17:48:11.580921421+00:00,1 +2023-10-24 17:48:11.709875760+00:00,1 +2023-10-24 17:48:11.836793053+00:00,1 +2023-10-24 17:48:11.964496786+00:00,1 +2023-10-24 17:48:12.092531719+00:00,1 +2023-10-24 17:48:12.219752361+00:00,1 +2023-10-24 17:48:12.347375361+00:00,1 +2023-10-24 17:48:12.475162250+00:00,1 +2023-10-24 17:48:12.603159708+00:00,1 +2023-10-24 17:48:12.731226733+00:00,1 +2023-10-24 17:48:12.860482172+00:00,1 +2023-10-24 17:48:12.988232447+00:00,1 +2023-10-24 17:48:13.115642656+00:00,1 +2023-10-24 17:48:13.243833771+00:00,1 +2023-10-24 17:48:13.372233049+00:00,1 +2023-10-24 17:48:13.500432217+00:00,1 +2023-10-24 17:48:13.628506776+00:00,1 +2023-10-24 17:48:13.756874305+00:00,1 +2023-10-24 17:48:13.884831589+00:00,1 +2023-10-24 17:48:14.013191313+00:00,1 +2023-10-24 17:48:14.141655920+00:00,1 +2023-10-24 17:48:14.268906915+00:00,1 +2023-10-24 17:48:14.396254592+00:00,1 +2023-10-24 17:48:14.523402109+00:00,1 +2023-10-24 17:48:14.651605495+00:00,1 +2023-10-24 17:48:14.779910762+00:00,1 +2023-10-24 17:48:14.908919012+00:00,1 +2023-10-24 17:48:15.036417196+00:00,1 +2023-10-24 17:48:15.164603832+00:00,1 +2023-10-24 17:48:15.292171699+00:00,1 +2023-10-24 17:48:15.422320545+00:00,1 +2023-10-24 17:48:15.550470973+00:00,1 +2023-10-24 17:48:15.681386931+00:00,1 +2023-10-24 17:48:15.808843432+00:00,1 +2023-10-24 17:48:15.938139471+00:00,1 +2023-10-24 17:48:16.067734819+00:00,1 +2023-10-24 17:48:16.200292199+00:00,1 +2023-10-24 17:48:16.326967374+00:00,1 +2023-10-24 17:48:16.454149227+00:00,1 +2023-10-24 17:48:16.581175131+00:00,1 +2023-10-24 17:48:16.710083232+00:00,1 +2023-10-24 17:48:16.838025024+00:00,1 +2023-10-24 17:48:16.965077856+00:00,1 +2023-10-24 17:48:17.094211786+00:00,1 +2023-10-24 17:48:17.222675224+00:00,1 +2023-10-24 17:48:17.349786636+00:00,1 +2023-10-24 17:48:17.479384427+00:00,1 +2023-10-24 17:48:17.607030966+00:00,1 +2023-10-24 17:48:17.735053426+00:00,1 +2023-10-24 17:48:17.863199029+00:00,1 +2023-10-24 17:48:17.990955040+00:00,1 +2023-10-24 17:48:18.119612788+00:00,1 +2023-10-24 17:48:18.246581942+00:00,1 +2023-10-24 17:48:18.375473078+00:00,1 +2023-10-24 17:48:18.504180134+00:00,1 +2023-10-24 17:48:18.631376968+00:00,1 +2023-10-24 17:48:18.759503230+00:00,1 +2023-10-24 17:48:18.888073235+00:00,1 +2023-10-24 17:48:19.017163019+00:00,1 +2023-10-24 17:48:19.145324639+00:00,1 +2023-10-24 17:48:19.273102839+00:00,1 +2023-10-24 17:48:19.403241129+00:00,1 +2023-10-24 17:48:19.531478650+00:00,1 +2023-10-24 17:48:19.660571034+00:00,1 +2023-10-24 17:48:19.789109865+00:00,1 +2023-10-24 17:48:19.916545193+00:00,1 +2023-10-24 17:48:20.044739712+00:00,1 +2023-10-24 17:48:20.173237000+00:00,1 +2023-10-24 17:48:20.302506181+00:00,1 +2023-10-24 17:48:20.430235778+00:00,1 +2023-10-24 17:48:20.557240041+00:00,1 +2023-10-24 17:48:20.685289483+00:00,1 +2023-10-24 17:48:20.814459744+00:00,1 +2023-10-24 17:48:20.943123584+00:00,1 +2023-10-24 17:48:21.071101282+00:00,1 +2023-10-24 17:48:21.198288293+00:00,1 +2023-10-24 17:48:21.325700205+00:00,1 +2023-10-24 17:48:21.453159894+00:00,1 +2023-10-24 17:48:21.581232951+00:00,1 +2023-10-24 17:48:21.711011900+00:00,1 +2023-10-24 17:48:21.838859062+00:00,1 +2023-10-24 17:48:21.965481062+00:00,1 +2023-10-24 17:48:22.093349505+00:00,1 +2023-10-24 17:48:22.220247001+00:00,1 +2023-10-24 17:48:22.347468018+00:00,1 +2023-10-24 17:48:22.474075588+00:00,1 +2023-10-24 17:48:22.602983393+00:00,1 +2023-10-24 17:48:22.730395907+00:00,1 +2023-10-24 17:48:22.858508155+00:00,1 +2023-10-24 17:48:22.986456375+00:00,1 +2023-10-24 17:48:23.115402211+00:00,1 +2023-10-24 17:48:23.244128704+00:00,1 +2023-10-24 17:48:23.371973973+00:00,1 +2023-10-24 17:48:23.500022158+00:00,1 +2023-10-24 17:48:23.626719817+00:00,1 +2023-10-24 17:48:23.755281010+00:00,1 +2023-10-24 17:48:23.882226131+00:00,1 +2023-10-24 17:48:24.010722309+00:00,1 +2023-10-24 17:48:24.140775962+00:00,1 +2023-10-24 17:48:24.269243152+00:00,1 +2023-10-24 17:48:24.396533703+00:00,1 +2023-10-24 17:48:24.524287813+00:00,1 +2023-10-24 17:48:24.652664004+00:00,1 +2023-10-24 17:48:24.780233327+00:00,1 +2023-10-24 17:48:24.908056396+00:00,1 +2023-10-24 17:48:25.037755961+00:00,1 +2023-10-24 17:48:25.165394528+00:00,1 +2023-10-24 17:48:25.295139186+00:00,1 +2023-10-24 17:48:25.422190364+00:00,1 +2023-10-24 17:48:25.550102913+00:00,1 +2023-10-24 17:48:25.682719089+00:00,1 +2023-10-24 17:48:25.810076901+00:00,1 +2023-10-24 17:48:25.938842971+00:00,1 +2023-10-24 17:48:26.066438102+00:00,1 +2023-10-24 17:48:26.196220309+00:00,1 +2023-10-24 17:48:26.323601129+00:00,1 +2023-10-24 17:48:26.452008714+00:00,1 +2023-10-24 17:48:26.579862698+00:00,1 +2023-10-24 17:48:26.709226330+00:00,1 +2023-10-24 17:48:26.835941704+00:00,1 +2023-10-24 17:48:26.964822518+00:00,1 +2023-10-24 17:48:27.092572642+00:00,1 +2023-10-24 17:48:27.220369092+00:00,1 +2023-10-24 17:48:27.347961497+00:00,1 +2023-10-24 17:48:27.476945721+00:00,1 +2023-10-24 17:48:27.604262353+00:00,1 +2023-10-24 17:48:27.732096575+00:00,1 +2023-10-24 17:48:27.859887249+00:00,1 +2023-10-24 17:48:27.988214437+00:00,1 +2023-10-24 17:48:28.116145151+00:00,1 +2023-10-24 17:48:28.243714187+00:00,1 +2023-10-24 17:48:28.373329118+00:00,1 +2023-10-24 17:48:28.500684598+00:00,1 +2023-10-24 17:48:28.628008490+00:00,1 +2023-10-24 17:48:28.755091955+00:00,1 +2023-10-24 17:48:28.883094281+00:00,1 +2023-10-24 17:48:29.011979594+00:00,1 +2023-10-24 17:48:29.140373267+00:00,1 +2023-10-24 17:48:29.269741681+00:00,1 +2023-10-24 17:48:29.397344529+00:00,1 +2023-10-24 17:48:29.525480665+00:00,1 +2023-10-24 17:48:29.652959251+00:00,1 +2023-10-24 17:48:29.781874976+00:00,1 +2023-10-24 17:48:29.909678629+00:00,1 +2023-10-24 17:48:30.038164977+00:00,1 +2023-10-24 17:48:30.166468412+00:00,1 +2023-10-24 17:48:30.296209842+00:00,1 +2023-10-24 17:48:30.422598388+00:00,1 +2023-10-24 17:48:30.550911234+00:00,1 +2023-10-24 17:48:30.678559235+00:00,1 +2023-10-24 17:48:30.806488581+00:00,1 +2023-10-24 17:48:30.934797221+00:00,1 +2023-10-24 17:48:31.062218694+00:00,1 +2023-10-24 17:48:31.189042841+00:00,1 +2023-10-24 17:48:31.316978841+00:00,1 +2023-10-24 17:48:31.445436218+00:00,1 +2023-10-24 17:48:31.575167074+00:00,1 +2023-10-24 17:48:31.704387448+00:00,1 +2023-10-24 17:48:31.832656170+00:00,1 +2023-10-24 17:48:31.960443743+00:00,1 +2023-10-24 17:48:32.089192762+00:00,1 +2023-10-24 17:48:32.216462722+00:00,1 +2023-10-24 17:48:32.344856287+00:00,1 +2023-10-24 17:48:32.473020148+00:00,1 +2023-10-24 17:48:32.601070739+00:00,1 +2023-10-24 17:48:32.728881236+00:00,1 +2023-10-24 17:48:32.857101272+00:00,1 +2023-10-24 17:48:32.986126425+00:00,1 +2023-10-24 17:48:33.113621081+00:00,1 +2023-10-24 17:48:33.241644495+00:00,1 +2023-10-24 17:48:33.369820057+00:00,1 +2023-10-24 17:48:33.498205532+00:00,1 +2023-10-24 17:48:33.625976794+00:00,1 +2023-10-24 17:48:33.752837875+00:00,1 +2023-10-24 17:48:33.880217617+00:00,1 +2023-10-24 17:48:34.008160971+00:00,1 +2023-10-24 17:48:34.135300287+00:00,1 +2023-10-24 17:48:34.263114922+00:00,1 +2023-10-24 17:48:34.391341780+00:00,1 +2023-10-24 17:48:34.519146906+00:00,1 +2023-10-24 17:48:34.647953832+00:00,1 +2023-10-24 17:48:34.775860414+00:00,1 +2023-10-24 17:48:34.903457937+00:00,1 +2023-10-24 17:48:35.030654126+00:00,1 +2023-10-24 17:48:35.158970107+00:00,1 +2023-10-24 17:48:35.287614135+00:00,1 +2023-10-24 17:48:35.415968576+00:00,1 +2023-10-24 17:48:35.544298013+00:00,1 +2023-10-24 17:48:35.672803973+00:00,1 +2023-10-24 17:48:35.801350368+00:00,1 +2023-10-24 17:48:35.928634423+00:00,1 +2023-10-24 17:48:36.057036722+00:00,1 +2023-10-24 17:48:36.185397136+00:00,1 +2023-10-24 17:48:36.314609652+00:00,1 +2023-10-24 17:48:36.442628218+00:00,1 +2023-10-24 17:48:36.570998958+00:00,1 +2023-10-24 17:48:36.699114009+00:00,1 +2023-10-24 17:48:36.827769993+00:00,1 +2023-10-24 17:48:36.955457569+00:00,1 +2023-10-24 17:48:37.084662098+00:00,1 +2023-10-24 17:48:37.213704028+00:00,1 +2023-10-24 17:48:37.341298131+00:00,1 +2023-10-24 17:48:37.470453019+00:00,1 +2023-10-24 17:48:37.599342709+00:00,1 +2023-10-24 17:48:37.726734516+00:00,1 +2023-10-24 17:48:37.855053371+00:00,1 +2023-10-24 17:48:37.983216376+00:00,1 +2023-10-24 17:48:38.111704665+00:00,1 +2023-10-24 17:48:38.239542428+00:00,1 +2023-10-24 17:48:38.368601140+00:00,1 +2023-10-24 17:48:38.497886660+00:00,1 +2023-10-24 17:48:38.625899948+00:00,1 +2023-10-24 17:48:38.753992537+00:00,1 +2023-10-24 17:48:38.881920538+00:00,1 +2023-10-24 17:48:39.009516988+00:00,1 +2023-10-24 17:48:39.139102785+00:00,1 +2023-10-24 17:48:39.267834019+00:00,1 +2023-10-24 17:48:39.395727365+00:00,1 +2023-10-24 17:48:39.522737551+00:00,1 +2023-10-24 17:48:39.651296890+00:00,1 +2023-10-24 17:48:39.780375234+00:00,1 +2023-10-24 17:48:39.909655928+00:00,1 +2023-10-24 17:48:40.037648493+00:00,1 +2023-10-24 17:48:40.165012432+00:00,1 +2023-10-24 17:48:40.294139891+00:00,1 +2023-10-24 17:48:40.422395481+00:00,1 +2023-10-24 17:48:40.550718893+00:00,1 +2023-10-24 17:48:40.678675064+00:00,1 +2023-10-24 17:48:40.807099496+00:00,1 +2023-10-24 17:48:40.936340021+00:00,1 +2023-10-24 17:48:41.066735312+00:00,1 +2023-10-24 17:48:41.197622696+00:00,1 +2023-10-24 17:48:41.327106124+00:00,1 +2023-10-24 17:48:41.456738995+00:00,1 +2023-10-24 17:48:41.588106610+00:00,1 +2023-10-24 17:48:41.717338089+00:00,1 +2023-10-24 17:48:41.847214807+00:00,1 +2023-10-24 17:48:41.975505293+00:00,1 +2023-10-24 17:48:42.105035346+00:00,1 +2023-10-24 17:48:42.232769041+00:00,1 +2023-10-24 17:48:42.361825400+00:00,1 +2023-10-24 17:48:42.491852058+00:00,1 +2023-10-24 17:48:42.622492304+00:00,1 +2023-10-24 17:48:42.751028538+00:00,1 +2023-10-24 17:48:42.882696123+00:00,1 +2023-10-24 17:48:43.011182620+00:00,1 +2023-10-24 17:48:43.140420873+00:00,1 +2023-10-24 17:48:43.269714312+00:00,1 +2023-10-24 17:48:43.397452741+00:00,1 +2023-10-24 17:48:43.528864160+00:00,1 +2023-10-24 17:48:43.657031616+00:00,1 +2023-10-24 17:48:43.786004819+00:00,1 +2023-10-24 17:48:43.913543785+00:00,1 +2023-10-24 17:48:44.043536415+00:00,1 +2023-10-24 17:48:44.171111580+00:00,1 +2023-10-24 17:48:44.299678548+00:00,1 +2023-10-24 17:48:44.427532465+00:00,1 +2023-10-24 17:48:44.556509502+00:00,1 +2023-10-24 17:48:44.684570871+00:00,1 +2023-10-24 17:48:44.813429186+00:00,1 +2023-10-24 17:48:44.942249522+00:00,1 +2023-10-24 17:48:45.070083169+00:00,1 +2023-10-24 17:48:45.197645684+00:00,1 +2023-10-24 17:48:45.326226641+00:00,1 +2023-10-24 17:48:45.455017425+00:00,1 +2023-10-24 17:48:45.582865704+00:00,1 +2023-10-24 17:48:45.711664202+00:00,1 +2023-10-24 17:48:45.840330599+00:00,1 +2023-10-24 17:48:45.968985639+00:00,1 +2023-10-24 17:48:46.098110673+00:00,1 +2023-10-24 17:48:46.226411550+00:00,1 +2023-10-24 17:48:46.356265128+00:00,1 +2023-10-24 17:48:46.484360295+00:00,1 +2023-10-24 17:48:46.612291440+00:00,1 +2023-10-24 17:48:46.740463115+00:00,1 +2023-10-24 17:48:46.868945353+00:00,1 +2023-10-24 17:48:46.997658304+00:00,1 +2023-10-24 17:48:47.126855027+00:00,1 +2023-10-24 17:48:47.254876010+00:00,1 +2023-10-24 17:48:47.383804252+00:00,1 +2023-10-24 17:48:47.512219596+00:00,1 +2023-10-24 17:48:47.640339528+00:00,1 +2023-10-24 17:48:47.768279322+00:00,1 +2023-10-24 17:48:47.898477899+00:00,1 +2023-10-24 17:48:48.026565503+00:00,1 +2023-10-24 17:48:48.155691002+00:00,1 +2023-10-24 17:48:48.284357749+00:00,1 +2023-10-24 17:48:48.412308180+00:00,1 +2023-10-24 17:48:48.540221199+00:00,1 +2023-10-24 17:48:48.666767023+00:00,1 +2023-10-24 17:48:48.794534909+00:00,1 +2023-10-24 17:48:48.923333314+00:00,1 +2023-10-24 17:48:49.051275195+00:00,1 +2023-10-24 17:48:49.181414630+00:00,1 +2023-10-24 17:48:49.310748611+00:00,1 +2023-10-24 17:48:49.440686651+00:00,1 +2023-10-24 17:48:49.569209859+00:00,1 +2023-10-24 17:48:49.697881070+00:00,1 +2023-10-24 17:48:49.828259039+00:00,1 +2023-10-24 17:48:49.957575174+00:00,1 +2023-10-24 17:48:50.086567208+00:00,1 +2023-10-24 17:48:50.214854304+00:00,1 +2023-10-24 17:48:50.343220567+00:00,1 +2023-10-24 17:48:50.471209705+00:00,1 +2023-10-24 17:48:50.600150718+00:00,1 +2023-10-24 17:48:50.729025585+00:00,1 +2023-10-24 17:48:50.857666852+00:00,1 +2023-10-24 17:48:50.985350957+00:00,1 +2023-10-24 17:48:51.113485145+00:00,1 +2023-10-24 17:48:51.239830836+00:00,1 +2023-10-24 17:48:51.367219903+00:00,1 +2023-10-24 17:48:51.495450332+00:00,1 +2023-10-24 17:48:51.623839119+00:00,1 +2023-10-24 17:48:51.751345995+00:00,1 +2023-10-24 17:48:51.879804279+00:00,1 +2023-10-24 17:48:52.009439723+00:00,1 +2023-10-24 17:48:52.138454080+00:00,1 +2023-10-24 17:48:52.267163783+00:00,1 +2023-10-24 17:48:52.396180290+00:00,1 +2023-10-24 17:48:52.524936682+00:00,1 +2023-10-24 17:48:52.652497400+00:00,1 +2023-10-24 17:48:52.780704085+00:00,1 +2023-10-24 17:48:52.909216275+00:00,1 +2023-10-24 17:48:53.037566014+00:00,1 +2023-10-24 17:48:53.165424657+00:00,1 +2023-10-24 17:48:53.294411176+00:00,1 +2023-10-24 17:48:53.421860590+00:00,1 +2023-10-24 17:48:53.549676068+00:00,1 +2023-10-24 17:48:53.678095962+00:00,1 +2023-10-24 17:48:53.807452571+00:00,1 +2023-10-24 17:48:53.934342146+00:00,1 +2023-10-24 17:48:54.061722234+00:00,1 +2023-10-24 17:48:54.190672843+00:00,1 +2023-10-24 17:48:54.318146809+00:00,1 +2023-10-24 17:48:54.445860565+00:00,1 +2023-10-24 17:48:54.574506807+00:00,1 +2023-10-24 17:48:54.702922634+00:00,1 +2023-10-24 17:48:54.830939517+00:00,1 +2023-10-24 17:48:54.958675562+00:00,1 +2023-10-24 17:48:55.087699839+00:00,1 +2023-10-24 17:48:55.216523981+00:00,1 +2023-10-24 17:48:55.344732650+00:00,1 +2023-10-24 17:48:55.472417663+00:00,1 +2023-10-24 17:48:55.600556989+00:00,1 +2023-10-24 17:48:55.729147932+00:00,1 +2023-10-24 17:48:55.857547573+00:00,1 +2023-10-24 17:48:55.987414629+00:00,1 +2023-10-24 17:48:56.115129535+00:00,1 +2023-10-24 17:48:56.243488739+00:00,1 +2023-10-24 17:48:56.372574767+00:00,1 +2023-10-24 17:48:56.500644908+00:00,1 +2023-10-24 17:48:56.629314919+00:00,1 +2023-10-24 17:48:56.758359118+00:00,1 +2023-10-24 17:48:56.886154923+00:00,1 +2023-10-24 17:48:57.014923974+00:00,1 +2023-10-24 17:48:57.143224302+00:00,1 +2023-10-24 17:48:57.271145804+00:00,1 +2023-10-24 17:48:57.400819673+00:00,1 +2023-10-24 17:48:57.529588599+00:00,1 +2023-10-24 17:48:57.658213407+00:00,1 +2023-10-24 17:48:57.787234166+00:00,1 +2023-10-24 17:48:57.915496902+00:00,1 +2023-10-24 17:48:58.043027344+00:00,1 +2023-10-24 17:48:58.172146116+00:00,1 +2023-10-24 17:48:58.299872396+00:00,1 +2023-10-24 17:48:58.428683426+00:00,1 +2023-10-24 17:48:58.556656168+00:00,1 +2023-10-24 17:48:58.684656314+00:00,1 +2023-10-24 17:48:58.813738658+00:00,1 +2023-10-24 17:48:58.941544388+00:00,1 +2023-10-24 17:48:59.070729304+00:00,1 +2023-10-24 17:48:59.199319499+00:00,1 +2023-10-24 17:48:59.326760903+00:00,1 +2023-10-24 17:48:59.456600163+00:00,1 +2023-10-24 17:48:59.585221765+00:00,1 +2023-10-24 17:48:59.713227158+00:00,1 +2023-10-24 17:48:59.840572669+00:00,1 +2023-10-24 17:48:59.969106792+00:00,1 +2023-10-24 17:49:00.097738130+00:00,1 +2023-10-24 17:49:00.226462508+00:00,1 +2023-10-24 17:49:00.355514162+00:00,1 +2023-10-24 17:49:00.484662081+00:00,1 +2023-10-24 17:49:00.612540533+00:00,1 +2023-10-24 17:49:00.740096685+00:00,1 +2023-10-24 17:49:00.869107238+00:00,1 +2023-10-24 17:49:00.996865273+00:00,1 +2023-10-24 17:49:01.124845950+00:00,1 +2023-10-24 17:49:01.252930490+00:00,1 +2023-10-24 17:49:01.381371584+00:00,1 +2023-10-24 17:49:01.509597241+00:00,1 +2023-10-24 17:49:01.636689425+00:00,1 +2023-10-24 17:49:01.764302843+00:00,1 +2023-10-24 17:49:01.892328627+00:00,1 +2023-10-24 17:49:02.020623972+00:00,1 +2023-10-24 17:49:02.150036051+00:00,1 +2023-10-24 17:49:02.278423897+00:00,1 +2023-10-24 17:49:02.408440569+00:00,1 +2023-10-24 17:49:02.536888111+00:00,1 +2023-10-24 17:49:02.664855973+00:00,1 +2023-10-24 17:49:02.792629990+00:00,1 +2023-10-24 17:49:02.920342699+00:00,1 +2023-10-24 17:49:03.047779347+00:00,1 +2023-10-24 17:49:03.177044738+00:00,1 +2023-10-24 17:49:03.304455493+00:00,1 +2023-10-24 17:49:03.432941166+00:00,1 +2023-10-24 17:49:03.561728385+00:00,1 +2023-10-24 17:49:03.689899495+00:00,1 +2023-10-24 17:49:03.820955179+00:00,1 +2023-10-24 17:49:03.949333228+00:00,1 +2023-10-24 17:49:04.079925201+00:00,1 +2023-10-24 17:49:04.208095460+00:00,1 +2023-10-24 17:49:04.335481230+00:00,1 +2023-10-24 17:49:04.462367442+00:00,1 +2023-10-24 17:49:04.591815595+00:00,1 +2023-10-24 17:49:04.720310714+00:00,1 +2023-10-24 17:49:04.848688528+00:00,1 +2023-10-24 17:49:04.976469691+00:00,1 +2023-10-24 17:49:05.105915341+00:00,1 +2023-10-24 17:49:05.233622192+00:00,1 +2023-10-24 17:49:05.360378228+00:00,1 +2023-10-24 17:49:05.489330256+00:00,1 +2023-10-24 17:49:05.617449241+00:00,1 +2023-10-24 17:49:05.745728981+00:00,1 +2023-10-24 17:49:05.874100723+00:00,1 +2023-10-24 17:49:06.004295200+00:00,1 +2023-10-24 17:49:06.132440903+00:00,1 +2023-10-24 17:49:06.260550455+00:00,1 +2023-10-24 17:49:06.391308052+00:00,1 +2023-10-24 17:49:06.519949543+00:00,1 +2023-10-24 17:49:06.649278904+00:00,1 +2023-10-24 17:49:06.777430744+00:00,1 +2023-10-24 17:49:06.905956313+00:00,1 +2023-10-24 17:49:07.033866121+00:00,1 +2023-10-24 17:49:07.160934848+00:00,1 +2023-10-24 17:49:07.289628425+00:00,1 +2023-10-24 17:49:07.418048804+00:00,1 +2023-10-24 17:49:07.545716560+00:00,1 +2023-10-24 17:49:07.674033182+00:00,1 +2023-10-24 17:49:07.802462252+00:00,1 +2023-10-24 17:49:07.931107628+00:00,1 +2023-10-24 17:49:08.060151329+00:00,1 +2023-10-24 17:49:08.188448155+00:00,1 +2023-10-24 17:49:08.317247364+00:00,1 +2023-10-24 17:49:08.447021274+00:00,1 +2023-10-24 17:49:08.574448400+00:00,1 +2023-10-24 17:49:08.702058002+00:00,1 +2023-10-24 17:49:08.829177765+00:00,1 +2023-10-24 17:49:08.956321189+00:00,1 +2023-10-24 17:49:09.084919505+00:00,1 +2023-10-24 17:49:09.214810574+00:00,1 +2023-10-24 17:49:09.341088654+00:00,1 +2023-10-24 17:49:09.469492630+00:00,1 +2023-10-24 17:49:09.597586152+00:00,1 +2023-10-24 17:49:09.724979292+00:00,1 +2023-10-24 17:49:09.853014030+00:00,1 +2023-10-24 17:49:09.982380962+00:00,1 +2023-10-24 17:49:10.111721420+00:00,1 +2023-10-24 17:49:10.240453357+00:00,1 +2023-10-24 17:49:10.367813859+00:00,1 +2023-10-24 17:49:10.495762581+00:00,1 +2023-10-24 17:49:10.624555529+00:00,1 +2023-10-24 17:49:10.752783875+00:00,1 +2023-10-24 17:49:10.879613711+00:00,1 +2023-10-24 17:49:11.007522202+00:00,1 +2023-10-24 17:49:11.136426120+00:00,1 +2023-10-24 17:49:11.264022489+00:00,1 +2023-10-24 17:49:11.392269673+00:00,1 +2023-10-24 17:49:11.520261606+00:00,1 +2023-10-24 17:49:11.647988062+00:00,1 +2023-10-24 17:49:11.775930855+00:00,1 +2023-10-24 17:49:11.904633825+00:00,1 +2023-10-24 17:49:12.031529405+00:00,1 +2023-10-24 17:49:12.159542652+00:00,1 +2023-10-24 17:49:12.288017552+00:00,1 +2023-10-24 17:49:12.416120151+00:00,1 +2023-10-24 17:49:12.543940754+00:00,1 +2023-10-24 17:49:12.671406817+00:00,1 +2023-10-24 17:49:12.801467656+00:00,1 +2023-10-24 17:49:12.931262957+00:00,1 +2023-10-24 17:49:13.060817421+00:00,1 +2023-10-24 17:49:13.188770385+00:00,1 +2023-10-24 17:49:13.315355538+00:00,1 +2023-10-24 17:49:13.444085321+00:00,1 +2023-10-24 17:49:13.569810615+00:00,1 +2023-10-24 17:49:13.695869688+00:00,1 +2023-10-24 17:49:13.820396696+00:00,1 +2023-10-24 17:49:13.945589105+00:00,1 +2023-10-24 17:49:14.071668045+00:00,1 +2023-10-24 17:49:14.197247484+00:00,1 +2023-10-24 17:49:14.321831409+00:00,1 +2023-10-24 17:49:14.447363906+00:00,1 +2023-10-24 17:49:14.573837574+00:00,1 +2023-10-24 17:49:14.699967417+00:00,1 +2023-10-24 17:49:14.825760904+00:00,1 +2023-10-24 17:49:14.951299000+00:00,1 +2023-10-24 17:49:15.076088698+00:00,1 +2023-10-24 17:49:15.200795892+00:00,1 +2023-10-24 17:49:15.325973086+00:00,1 +2023-10-24 17:49:15.451315837+00:00,1 +2023-10-24 17:49:15.576236342+00:00,1 +2023-10-24 17:49:15.701355558+00:00,1 +2023-10-24 17:49:15.827120503+00:00,0 +2023-10-24 17:49:17.839196443+00:00,1 +2023-10-24 17:49:17.964307353+00:00,1 +2023-10-24 17:49:18.090001635+00:00,1 +2023-10-24 17:49:18.215818375+00:00,1 +2023-10-24 17:49:18.340715718+00:00,1 +2023-10-24 17:49:18.465626876+00:00,1 +2023-10-24 17:49:19.621540664+00:00,1 +2023-10-24 17:49:19.747931072+00:00,1 +2023-10-24 17:49:19.872429549+00:00,1 +2023-10-24 17:49:19.998105403+00:00,1 +2023-10-24 17:49:20.122959871+00:00,1 +2023-10-24 17:49:20.249501830+00:00,1 +2023-10-24 17:49:20.375382524+00:00,1 +2023-10-24 17:49:20.501002144+00:00,1 +2023-10-24 17:49:20.626034727+00:00,1 +2023-10-24 17:49:20.751850080+00:00,1 +2023-10-24 17:49:20.877601924+00:00,1 +2023-10-24 17:49:21.002236085+00:00,1 +2023-10-24 17:49:21.127661168+00:00,1 +2023-10-24 17:49:21.254366292+00:00,1 +2023-10-24 17:49:21.380308526+00:00,1 +2023-10-24 17:49:21.505527499+00:00,1 +2023-10-24 17:49:21.632120119+00:00,1 +2023-10-24 17:49:21.758978067+00:00,1 +2023-10-24 17:49:21.884698452+00:00,1 +2023-10-24 17:49:22.011199691+00:00,1 +2023-10-24 17:49:22.136483913+00:00,1 +2023-10-24 17:49:22.261977111+00:00,1 +2023-10-24 17:49:22.387465426+00:00,1 +2023-10-24 17:49:22.512788112+00:00,1 +2023-10-24 17:49:22.638976079+00:00,1 +2023-10-24 17:49:22.765339860+00:00,1 +2023-10-24 17:49:22.891622046+00:00,1 +2023-10-24 17:49:23.017065615+00:00,1 +2023-10-24 17:49:23.143471775+00:00,1 +2023-10-24 17:49:23.269982948+00:00,1 +2023-10-24 17:49:23.395805790+00:00,1 +2023-10-24 17:49:23.521878610+00:00,1 +2023-10-24 17:49:23.648663857+00:00,1 +2023-10-24 17:49:23.775235117+00:00,1 +2023-10-24 17:49:23.901099557+00:00,1 +2023-10-24 17:49:24.027891810+00:00,1 +2023-10-24 17:49:24.153632689+00:00,1 +2023-10-24 17:49:24.280959968+00:00,1 +2023-10-24 17:49:24.407679080+00:00,1 +2023-10-24 17:49:24.534081956+00:00,1 +2023-10-24 17:49:24.659857624+00:00,1 +2023-10-24 17:49:24.787271848+00:00,1 +2023-10-24 17:49:24.913704796+00:00,1 +2023-10-24 17:49:25.039570037+00:00,1 +2023-10-24 17:49:25.164860699+00:00,1 +2023-10-24 17:49:25.289748640+00:00,1 +2023-10-24 17:49:25.415920017+00:00,1 +2023-10-24 17:49:25.541360411+00:00,1 +2023-10-24 17:49:25.666829637+00:00,1 +2023-10-24 17:49:25.793672313+00:00,1 +2023-10-24 17:49:25.919782324+00:00,1 +2023-10-24 17:49:26.046732737+00:00,1 +2023-10-24 17:49:26.172055419+00:00,1 +2023-10-24 17:49:26.298477918+00:00,1 +2023-10-24 17:49:26.424209084+00:00,1 +2023-10-24 17:49:26.550374499+00:00,1 +2023-10-24 17:49:27.683519013+00:00,1 +2023-10-24 17:49:27.810680721+00:00,1 +2023-10-24 17:49:27.938047347+00:00,1 +2023-10-24 17:49:28.064005705+00:00,1 +2023-10-24 17:49:28.190722540+00:00,1 +2023-10-24 17:49:28.315918625+00:00,1 +2023-10-24 17:49:28.440888818+00:00,1 +2023-10-24 17:49:28.566960991+00:00,1 +2023-10-24 17:49:28.692745842+00:00,1 +2023-10-24 17:49:28.819037739+00:00,1 +2023-10-24 17:49:28.945591156+00:00,1 +2023-10-24 17:49:29.071633097+00:00,1 +2023-10-24 17:49:29.199227375+00:00,1 +2023-10-24 17:49:29.326566824+00:00,1 +2023-10-24 17:49:29.453490630+00:00,1 +2023-10-24 17:49:29.580357399+00:00,1 +2023-10-24 17:49:29.707097833+00:00,1 +2023-10-24 17:49:29.832874163+00:00,1 +2023-10-24 17:49:29.959006587+00:00,1 +2023-10-24 17:49:30.085730251+00:00,1 +2023-10-24 17:49:30.212615399+00:00,1 +2023-10-24 17:49:30.337100093+00:00,1 +2023-10-24 17:49:30.463256155+00:00,1 +2023-10-24 17:49:30.588786688+00:00,1 +2023-10-24 17:49:30.713823791+00:00,1 +2023-10-24 17:49:30.838331920+00:00,1 +2023-10-24 17:49:30.964025467+00:00,1 +2023-10-24 17:49:34.201115330+00:00,1 +2023-10-24 17:49:34.327080849+00:00,1 +2023-10-24 17:49:34.452819921+00:00,1 +2023-10-24 17:49:34.578220872+00:00,1 +2023-10-24 17:49:34.704050646+00:00,1 +2023-10-24 17:49:34.829942927+00:00,1 +2023-10-24 17:49:34.956098699+00:00,1 +2023-10-24 17:49:35.082011149+00:00,1 +2023-10-24 17:49:35.207112489+00:00,1 +2023-10-24 17:49:35.334151472+00:00,1 +2023-10-24 17:49:35.459860184+00:00,1 +2023-10-24 17:49:35.585519738+00:00,1 +2023-10-24 17:49:35.710738586+00:00,1 +2023-10-24 17:49:35.837640398+00:00,1 +2023-10-24 17:49:35.962872698+00:00,1 +2023-10-24 17:49:36.088265861+00:00,1 +2023-10-24 17:49:36.214328384+00:00,1 +2023-10-24 17:49:37.380100587+00:00,1 +2023-10-24 17:49:37.506790772+00:00,1 +2023-10-24 17:49:37.631930520+00:00,1 +2023-10-24 17:49:37.756989017+00:00,1 +2023-10-24 17:49:37.883247658+00:00,1 +2023-10-24 17:49:38.010021674+00:00,1 +2023-10-24 17:49:38.135232265+00:00,1 +2023-10-24 17:49:38.261934456+00:00,1 +2023-10-24 17:49:38.387656193+00:00,1 +2023-10-24 17:49:38.513234975+00:00,1 +2023-10-24 17:49:38.638952659+00:00,1 +2023-10-24 17:49:38.764884042+00:00,1 +2023-10-24 17:49:39.939599097+00:00,1 +2023-10-24 17:49:40.064433058+00:00,1 +2023-10-24 17:49:40.189606928+00:00,1 +2023-10-24 17:49:40.315515273+00:00,1 +2023-10-24 17:49:40.440881138+00:00,1 +2023-10-24 17:49:40.567293272+00:00,1 +2023-10-24 17:49:40.693070117+00:00,1 +2023-10-24 17:49:40.819651508+00:00,1 +2023-10-24 17:49:40.945472702+00:00,1 +2023-10-24 17:49:41.070471362+00:00,1 +2023-10-24 17:49:41.197152994+00:00,1 +2023-10-24 17:49:41.323026621+00:00,1 +2023-10-24 17:49:41.448248956+00:00,1 +2023-10-24 17:49:41.573684845+00:00,1 +2023-10-24 17:49:41.699474693+00:00,1 +2023-10-24 17:49:41.825262040+00:00,1 +2023-10-24 17:49:41.951336393+00:00,1 +2023-10-24 17:49:42.076391157+00:00,1 +2023-10-24 17:49:42.201739154+00:00,1 +2023-10-24 17:49:42.326993229+00:00,1 +2023-10-24 17:49:42.452285135+00:00,1 +2023-10-24 17:49:42.578625934+00:00,1 +2023-10-24 17:49:42.703979405+00:00,1 +2023-10-24 17:49:42.830150447+00:00,1 +2023-10-24 17:49:42.956144471+00:00,1 +2023-10-24 17:49:43.081216771+00:00,1 +2023-10-24 17:49:43.206755715+00:00,1 +2023-10-24 17:49:43.332756237+00:00,1 +2023-10-24 17:49:43.458749647+00:00,1 +2023-10-24 17:49:43.583943679+00:00,1 +2023-10-24 17:49:43.709224051+00:00,1 +2023-10-24 17:49:43.835917794+00:00,1 +2023-10-24 17:49:43.962977785+00:00,1 +2023-10-24 17:49:44.089520425+00:00,1 +2023-10-24 17:49:44.215649708+00:00,1 +2023-10-24 17:49:44.340467418+00:00,1 +2023-10-24 17:49:44.465668929+00:00,1 +2023-10-24 17:49:44.592138130+00:00,1 +2023-10-24 17:49:44.716891566+00:00,1 +2023-10-24 17:49:44.842604392+00:00,1 +2023-10-24 17:49:44.969347571+00:00,1 +2023-10-24 17:49:45.094592270+00:00,1 +2023-10-24 17:49:45.220277444+00:00,1 +2023-10-24 17:49:45.347500875+00:00,1 +2023-10-24 17:49:45.473143387+00:00,1 +2023-10-24 17:49:45.600533938+00:00,1 +2023-10-24 17:49:45.727682406+00:00,1 +2023-10-24 17:49:45.854655116+00:00,1 +2023-10-24 17:49:45.982013359+00:00,1 +2023-10-24 17:49:46.110085332+00:00,1 +2023-10-24 17:49:46.237777031+00:00,1 +2023-10-24 17:49:46.365326958+00:00,1 +2023-10-24 17:49:46.493528705+00:00,1 +2023-10-24 17:49:46.621315773+00:00,1 +2023-10-24 17:49:46.749855518+00:00,1 +2023-10-24 17:49:46.878135905+00:00,1 +2023-10-24 17:49:47.006766326+00:00,1 +2023-10-24 17:49:47.135031819+00:00,1 +2023-10-24 17:49:47.262528278+00:00,1 +2023-10-24 17:49:47.390321058+00:00,1 +2023-10-24 17:49:47.518849467+00:00,1 +2023-10-24 17:49:47.647132957+00:00,1 +2023-10-24 17:49:47.775601828+00:00,1 +2023-10-24 17:49:47.904788860+00:00,1 +2023-10-24 17:49:48.033021189+00:00,1 +2023-10-24 17:49:48.161774288+00:00,1 +2023-10-24 17:49:48.289898325+00:00,1 +2023-10-24 17:49:48.418629278+00:00,1 +2023-10-24 17:49:48.548309431+00:00,1 +2023-10-24 17:49:48.676708511+00:00,1 +2023-10-24 17:49:48.806490969+00:00,1 +2023-10-24 17:49:48.936792839+00:00,1 +2023-10-24 17:49:49.066198668+00:00,1 +2023-10-24 17:49:49.195111715+00:00,1 +2023-10-24 17:49:49.323482046+00:00,1 +2023-10-24 17:49:49.452058060+00:00,1 +2023-10-24 17:49:49.579699729+00:00,1 +2023-10-24 17:49:49.707125797+00:00,1 +2023-10-24 17:49:49.835435143+00:00,1 +2023-10-24 17:49:49.964199893+00:00,1 +2023-10-24 17:49:50.092620314+00:00,1 +2023-10-24 17:49:50.220753394+00:00,1 +2023-10-24 17:49:50.349630644+00:00,1 +2023-10-24 17:49:50.477399579+00:00,1 +2023-10-24 17:49:50.607400517+00:00,1 +2023-10-24 17:49:50.734177815+00:00,1 +2023-10-24 17:49:50.862855066+00:00,1 +2023-10-24 17:49:50.990117434+00:00,1 +2023-10-24 17:49:51.119473387+00:00,1 +2023-10-24 17:49:51.248063538+00:00,1 +2023-10-24 17:49:51.376240567+00:00,1 +2023-10-24 17:49:51.504000417+00:00,1 +2023-10-24 17:49:51.631435550+00:00,1 +2023-10-24 17:49:51.760012232+00:00,1 +2023-10-24 17:49:51.888125306+00:00,1 +2023-10-24 17:49:52.015526299+00:00,1 +2023-10-24 17:49:52.144453355+00:00,1 +2023-10-24 17:49:52.271566986+00:00,1 +2023-10-24 17:49:52.398658784+00:00,1 +2023-10-24 17:49:52.529107662+00:00,1 +2023-10-24 17:49:52.655965544+00:00,1 +2023-10-24 17:49:52.783807719+00:00,1 +2023-10-24 17:49:52.911897326+00:00,1 +2023-10-24 17:49:53.039167349+00:00,1 +2023-10-24 17:49:53.167252890+00:00,1 +2023-10-24 17:49:53.294664361+00:00,1 +2023-10-24 17:49:53.422459083+00:00,1 +2023-10-24 17:49:53.549392987+00:00,1 +2023-10-24 17:49:53.679165459+00:00,1 +2023-10-24 17:49:53.807512416+00:00,1 +2023-10-24 17:49:53.935669637+00:00,1 +2023-10-24 17:49:54.062920144+00:00,1 +2023-10-24 17:49:54.191478139+00:00,1 +2023-10-24 17:49:54.319436259+00:00,1 +2023-10-24 17:49:54.446614871+00:00,1 +2023-10-24 17:49:54.573612880+00:00,1 +2023-10-24 17:49:54.701985434+00:00,1 +2023-10-24 17:49:54.829618642+00:00,1 +2023-10-24 17:49:54.958407327+00:00,1 +2023-10-24 17:49:55.085995567+00:00,1 +2023-10-24 17:49:55.213103379+00:00,1 +2023-10-24 17:49:55.345576906+00:00,1 +2023-10-24 17:49:55.473207558+00:00,1 +2023-10-24 17:49:55.600705894+00:00,1 +2023-10-24 17:49:55.728528704+00:00,1 +2023-10-24 17:49:55.855569672+00:00,1 +2023-10-24 17:49:55.984019036+00:00,1 +2023-10-24 17:49:56.111762352+00:00,1 +2023-10-24 17:49:56.239479941+00:00,1 +2023-10-24 17:49:56.366677646+00:00,1 +2023-10-24 17:49:56.494084843+00:00,1 +2023-10-24 17:49:56.620914102+00:00,1 +2023-10-24 17:49:56.748644009+00:00,1 +2023-10-24 17:49:56.876576802+00:00,1 +2023-10-24 17:49:57.004215957+00:00,1 +2023-10-24 17:49:57.131723361+00:00,1 +2023-10-24 17:49:57.260004374+00:00,1 +2023-10-24 17:49:57.387069249+00:00,1 +2023-10-24 17:49:57.514879265+00:00,1 +2023-10-24 17:49:57.643547797+00:00,1 +2023-10-24 17:49:57.772436120+00:00,1 +2023-10-24 17:49:57.900161082+00:00,1 +2023-10-24 17:49:58.029432192+00:00,1 +2023-10-24 17:49:58.157562603+00:00,1 +2023-10-24 17:49:58.285544728+00:00,1 +2023-10-24 17:49:58.412818277+00:00,1 +2023-10-24 17:49:58.540681542+00:00,1 +2023-10-24 17:49:58.667661008+00:00,1 +2023-10-24 17:49:58.795686890+00:00,1 +2023-10-24 17:49:58.924051173+00:00,1 +2023-10-24 17:49:59.051562803+00:00,1 +2023-10-24 17:49:59.181750054+00:00,1 +2023-10-24 17:49:59.308994032+00:00,1 +2023-10-24 17:49:59.436240194+00:00,1 +2023-10-24 17:49:59.563421631+00:00,1 +2023-10-24 17:49:59.690967803+00:00,1 +2023-10-24 17:49:59.819005495+00:00,1 +2023-10-24 17:49:59.948340058+00:00,1 +2023-10-24 17:50:00.077043480+00:00,1 +2023-10-24 17:50:00.205269713+00:00,1 +2023-10-24 17:50:00.333245679+00:00,1 +2023-10-24 17:50:00.461923754+00:00,1 +2023-10-24 17:50:00.589867842+00:00,1 +2023-10-24 17:50:00.718395085+00:00,1 +2023-10-24 17:50:00.846553962+00:00,1 +2023-10-24 17:50:00.974219481+00:00,1 +2023-10-24 17:50:01.102799941+00:00,1 +2023-10-24 17:50:01.231710373+00:00,1 +2023-10-24 17:50:01.359049670+00:00,1 +2023-10-24 17:50:01.487314074+00:00,1 +2023-10-24 17:50:01.615319974+00:00,1 +2023-10-24 17:50:01.744214764+00:00,1 +2023-10-24 17:50:01.872415762+00:00,1 +2023-10-24 17:50:02.001231756+00:00,1 +2023-10-24 17:50:02.128159386+00:00,1 +2023-10-24 17:50:02.256265486+00:00,1 +2023-10-24 17:50:02.383351435+00:00,1 +2023-10-24 17:50:02.511032325+00:00,1 +2023-10-24 17:50:02.638506852+00:00,1 +2023-10-24 17:50:02.766848171+00:00,1 +2023-10-24 17:50:02.894391324+00:00,1 +2023-10-24 17:50:03.023020608+00:00,1 +2023-10-24 17:50:03.151206644+00:00,1 +2023-10-24 17:50:03.279364714+00:00,1 +2023-10-24 17:50:03.407051926+00:00,1 +2023-10-24 17:50:03.536254413+00:00,1 +2023-10-24 17:50:03.664075671+00:00,1 +2023-10-24 17:50:03.792512888+00:00,1 +2023-10-24 17:50:03.919531913+00:00,1 +2023-10-24 17:50:04.048698403+00:00,1 +2023-10-24 17:50:04.176510957+00:00,1 +2023-10-24 17:50:04.305566319+00:00,1 +2023-10-24 17:50:04.433561212+00:00,1 +2023-10-24 17:50:04.562477579+00:00,1 +2023-10-24 17:50:04.690576337+00:00,1 +2023-10-24 17:50:04.819596953+00:00,1 +2023-10-24 17:50:04.947724180+00:00,1 +2023-10-24 17:50:05.075320063+00:00,1 +2023-10-24 17:50:05.202865715+00:00,1 +2023-10-24 17:50:05.332095014+00:00,1 +2023-10-24 17:50:05.459321735+00:00,1 +2023-10-24 17:50:05.588269237+00:00,1 +2023-10-24 17:50:05.717113562+00:00,1 +2023-10-24 17:50:05.848253722+00:00,1 +2023-10-24 17:50:05.977906191+00:00,1 +2023-10-24 17:50:06.107939111+00:00,1 +2023-10-24 17:50:06.237446555+00:00,1 +2023-10-24 17:50:06.365937482+00:00,1 +2023-10-24 17:50:06.495276244+00:00,1 +2023-10-24 17:50:06.623980670+00:00,1 +2023-10-24 17:50:06.754620731+00:00,1 +2023-10-24 17:50:06.883578701+00:00,1 +2023-10-24 17:50:07.012192383+00:00,1 +2023-10-24 17:50:07.139803805+00:00,1 +2023-10-24 17:50:07.269532819+00:00,1 +2023-10-24 17:50:07.397658631+00:00,1 +2023-10-24 17:50:07.526240677+00:00,1 +2023-10-24 17:50:07.654770718+00:00,1 +2023-10-24 17:50:07.782946893+00:00,1 +2023-10-24 17:50:07.911055298+00:00,1 +2023-10-24 17:50:08.039257061+00:00,1 +2023-10-24 17:50:08.169292632+00:00,1 +2023-10-24 17:50:08.297337068+00:00,1 +2023-10-24 17:50:08.425102327+00:00,1 +2023-10-24 17:50:08.554082186+00:00,1 +2023-10-24 17:50:08.682535744+00:00,1 +2023-10-24 17:50:08.812326321+00:00,1 +2023-10-24 17:50:08.944010871+00:00,1 +2023-10-24 17:50:09.072331568+00:00,1 +2023-10-24 17:50:09.200730740+00:00,1 +2023-10-24 17:50:09.327334891+00:00,1 +2023-10-24 17:50:09.455547847+00:00,1 +2023-10-24 17:50:09.584192222+00:00,1 +2023-10-24 17:50:09.712977692+00:00,1 +2023-10-24 17:50:09.841639497+00:00,1 +2023-10-24 17:50:09.969422645+00:00,1 +2023-10-24 17:50:10.097706065+00:00,1 +2023-10-24 17:50:10.225880256+00:00,1 +2023-10-24 17:50:10.354419208+00:00,1 +2023-10-24 17:50:10.482350771+00:00,1 +2023-10-24 17:50:10.609834385+00:00,1 +2023-10-24 17:50:10.738089230+00:00,1 +2023-10-24 17:50:10.866921474+00:00,1 +2023-10-24 17:50:10.994964253+00:00,1 +2023-10-24 17:50:11.122482244+00:00,1 +2023-10-24 17:50:11.250092183+00:00,1 +2023-10-24 17:50:11.377459126+00:00,1 +2023-10-24 17:50:11.506465160+00:00,1 +2023-10-24 17:50:11.635926804+00:00,1 +2023-10-24 17:50:11.763194174+00:00,1 +2023-10-24 17:50:11.891112339+00:00,1 +2023-10-24 17:50:12.018254682+00:00,1 +2023-10-24 17:50:12.145595319+00:00,1 +2023-10-24 17:50:12.274761209+00:00,1 +2023-10-24 17:50:12.402660745+00:00,1 +2023-10-24 17:50:12.530247745+00:00,1 +2023-10-24 17:50:12.657848212+00:00,1 +2023-10-24 17:50:12.786054790+00:00,1 +2023-10-24 17:50:12.913843239+00:00,1 +2023-10-24 17:50:13.041372761+00:00,1 +2023-10-24 17:50:13.168363372+00:00,1 +2023-10-24 17:50:13.295172036+00:00,1 +2023-10-24 17:50:13.422229368+00:00,1 +2023-10-24 17:50:13.550364296+00:00,1 +2023-10-24 17:50:13.676675321+00:00,1 +2023-10-24 17:50:13.804739314+00:00,1 +2023-10-24 17:50:13.933312761+00:00,1 +2023-10-24 17:50:14.060347897+00:00,1 +2023-10-24 17:50:14.187928552+00:00,1 +2023-10-24 17:50:14.316153150+00:00,1 +2023-10-24 17:50:14.444343142+00:00,1 +2023-10-24 17:50:14.572506429+00:00,1 +2023-10-24 17:50:14.700744215+00:00,1 +2023-10-24 17:50:14.831719657+00:00,1 +2023-10-24 17:50:14.959777914+00:00,1 +2023-10-24 17:50:15.088199794+00:00,1 +2023-10-24 17:50:15.218432195+00:00,1 +2023-10-24 17:50:15.345510592+00:00,1 +2023-10-24 17:50:15.472962105+00:00,1 +2023-10-24 17:50:15.601377812+00:00,1 +2023-10-24 17:50:15.731071280+00:00,1 +2023-10-24 17:50:15.858449379+00:00,1 +2023-10-24 17:50:15.986983149+00:00,1 +2023-10-24 17:50:16.114759032+00:00,1 +2023-10-24 17:50:16.244294073+00:00,1 +2023-10-24 17:50:16.371794107+00:00,1 +2023-10-24 17:50:16.499598117+00:00,1 +2023-10-24 17:50:16.626880174+00:00,1 +2023-10-24 17:50:16.755952248+00:00,1 +2023-10-24 17:50:16.884141409+00:00,1 +2023-10-24 17:50:17.012126541+00:00,1 +2023-10-24 17:50:17.139679191+00:00,1 +2023-10-24 17:50:17.268545966+00:00,1 +2023-10-24 17:50:17.395730775+00:00,1 +2023-10-24 17:50:17.522752062+00:00,1 +2023-10-24 17:50:17.650048019+00:00,1 +2023-10-24 17:50:17.779263960+00:00,1 +2023-10-24 17:50:17.906895449+00:00,1 +2023-10-24 17:50:18.035426085+00:00,1 +2023-10-24 17:50:18.163534602+00:00,1 +2023-10-24 17:50:18.292525623+00:00,1 +2023-10-24 17:50:18.420211013+00:00,1 +2023-10-24 17:50:18.548723201+00:00,1 +2023-10-24 17:50:18.676703164+00:00,1 +2023-10-24 17:50:18.804790719+00:00,1 +2023-10-24 17:50:18.933630651+00:00,1 +2023-10-24 17:50:19.062053434+00:00,1 +2023-10-24 17:50:19.190067336+00:00,1 +2023-10-24 17:50:19.318408216+00:00,1 +2023-10-24 17:50:19.447534823+00:00,1 +2023-10-24 17:50:19.576225546+00:00,1 +2023-10-24 17:50:19.704256180+00:00,1 +2023-10-24 17:50:19.832944415+00:00,1 +2023-10-24 17:50:19.960173260+00:00,1 +2023-10-24 17:50:20.088429199+00:00,1 +2023-10-24 17:50:20.217145067+00:00,1 +2023-10-24 17:50:20.346153845+00:00,1 +2023-10-24 17:50:20.474533940+00:00,1 +2023-10-24 17:50:20.602071996+00:00,1 +2023-10-24 17:50:20.730269917+00:00,1 +2023-10-24 17:50:20.857972548+00:00,1 +2023-10-24 17:50:20.986895023+00:00,1 +2023-10-24 17:50:21.115487682+00:00,1 +2023-10-24 17:50:21.243063212+00:00,1 +2023-10-24 17:50:21.370719766+00:00,1 +2023-10-24 17:50:21.499411659+00:00,1 +2023-10-24 17:50:21.626977103+00:00,1 +2023-10-24 17:50:21.755930725+00:00,1 +2023-10-24 17:50:21.883216766+00:00,1 +2023-10-24 17:50:22.011096601+00:00,1 +2023-10-24 17:50:22.140103052+00:00,1 +2023-10-24 17:50:22.268281823+00:00,1 +2023-10-24 17:50:22.395824114+00:00,1 +2023-10-24 17:50:22.522885367+00:00,1 +2023-10-24 17:50:22.651960662+00:00,1 +2023-10-24 17:50:22.780208360+00:00,1 +2023-10-24 17:50:22.908807000+00:00,1 +2023-10-24 17:50:23.036735896+00:00,1 +2023-10-24 17:50:23.165470118+00:00,1 +2023-10-24 17:50:23.293792324+00:00,1 +2023-10-24 17:50:23.421559912+00:00,1 +2023-10-24 17:50:23.549610385+00:00,1 +2023-10-24 17:50:23.677858663+00:00,1 +2023-10-24 17:50:23.805920740+00:00,1 +2023-10-24 17:50:23.933942303+00:00,1 +2023-10-24 17:50:24.062033402+00:00,1 +2023-10-24 17:50:24.190271221+00:00,1 +2023-10-24 17:50:24.318598060+00:00,1 +2023-10-24 17:50:24.446508419+00:00,1 +2023-10-24 17:50:24.574109917+00:00,1 +2023-10-24 17:50:24.701465820+00:00,1 +2023-10-24 17:50:24.829671733+00:00,1 +2023-10-24 17:50:24.956711484+00:00,1 +2023-10-24 17:50:25.083529803+00:00,1 +2023-10-24 17:50:25.210927197+00:00,1 +2023-10-24 17:50:25.338677820+00:00,1 +2023-10-24 17:50:25.467328376+00:00,1 +2023-10-24 17:50:25.594605952+00:00,1 +2023-10-24 17:50:25.722518136+00:00,1 +2023-10-24 17:50:25.851067833+00:00,1 +2023-10-24 17:50:25.979958807+00:00,1 +2023-10-24 17:50:26.107910220+00:00,1 +2023-10-24 17:50:26.235434114+00:00,1 +2023-10-24 17:50:26.363628864+00:00,1 +2023-10-24 17:50:26.493229203+00:00,1 +2023-10-24 17:50:26.621813279+00:00,1 +2023-10-24 17:50:26.749908905+00:00,1 +2023-10-24 17:50:26.877305024+00:00,1 +2023-10-24 17:50:27.005416401+00:00,1 +2023-10-24 17:50:27.133526043+00:00,1 +2023-10-24 17:50:27.262370258+00:00,1 +2023-10-24 17:50:27.389572304+00:00,1 +2023-10-24 17:50:27.517024260+00:00,1 +2023-10-24 17:50:27.643954312+00:00,1 +2023-10-24 17:50:27.771505315+00:00,1 +2023-10-24 17:50:27.899216995+00:00,1 +2023-10-24 17:50:28.027432472+00:00,1 +2023-10-24 17:50:28.155013148+00:00,1 +2023-10-24 17:50:28.284381572+00:00,1 +2023-10-24 17:50:28.412458044+00:00,1 +2023-10-24 17:50:28.540534532+00:00,1 +2023-10-24 17:50:28.667876832+00:00,1 +2023-10-24 17:50:28.796198768+00:00,1 +2023-10-24 17:50:28.925011836+00:00,1 +2023-10-24 17:50:29.052720126+00:00,1 +2023-10-24 17:50:29.180768086+00:00,1 +2023-10-24 17:50:29.309052131+00:00,1 +2023-10-24 17:50:29.436897267+00:00,1 +2023-10-24 17:50:29.564959408+00:00,1 +2023-10-24 17:50:29.692425467+00:00,1 +2023-10-24 17:50:29.820782923+00:00,1 +2023-10-24 17:50:29.948079751+00:00,1 +2023-10-24 17:50:30.076045097+00:00,1 +2023-10-24 17:50:30.202753884+00:00,1 +2023-10-24 17:50:30.331613337+00:00,1 +2023-10-24 17:50:30.458206774+00:00,1 +2023-10-24 17:50:30.586602338+00:00,1 +2023-10-24 17:50:30.714616639+00:00,1 +2023-10-24 17:50:30.843159027+00:00,1 +2023-10-24 17:50:30.970480846+00:00,1 +2023-10-24 17:50:31.099055384+00:00,1 +2023-10-24 17:50:31.227320527+00:00,1 +2023-10-24 17:50:31.355248434+00:00,1 +2023-10-24 17:50:31.482753381+00:00,1 +2023-10-24 17:50:31.611665982+00:00,1 +2023-10-24 17:50:31.740189982+00:00,1 +2023-10-24 17:50:31.868666285+00:00,1 +2023-10-24 17:50:31.996697748+00:00,1 +2023-10-24 17:50:32.124829268+00:00,1 +2023-10-24 17:50:32.252197752+00:00,1 +2023-10-24 17:50:32.380141588+00:00,1 +2023-10-24 17:50:32.508053496+00:00,1 +2023-10-24 17:50:32.636355338+00:00,1 +2023-10-24 17:50:32.764696874+00:00,1 +2023-10-24 17:50:32.893153366+00:00,1 +2023-10-24 17:50:33.022516052+00:00,1 +2023-10-24 17:50:33.152142462+00:00,1 +2023-10-24 17:50:33.280246910+00:00,1 +2023-10-24 17:50:33.408392543+00:00,1 +2023-10-24 17:50:33.537587970+00:00,1 +2023-10-24 17:50:33.665077796+00:00,1 +2023-10-24 17:50:33.793242514+00:00,1 +2023-10-24 17:50:33.920247719+00:00,1 +2023-10-24 17:50:34.048678066+00:00,1 +2023-10-24 17:50:34.177364921+00:00,1 +2023-10-24 17:50:34.305780241+00:00,1 +2023-10-24 17:50:34.435651172+00:00,1 +2023-10-24 17:50:34.566222406+00:00,1 +2023-10-24 17:50:34.693614244+00:00,1 +2023-10-24 17:50:34.820760086+00:00,1 +2023-10-24 17:50:34.948762149+00:00,1 +2023-10-24 17:50:35.076963099+00:00,1 +2023-10-24 17:50:35.206783321+00:00,1 +2023-10-24 17:50:35.336094375+00:00,1 +2023-10-24 17:50:35.464352327+00:00,1 +2023-10-24 17:50:35.591988991+00:00,1 +2023-10-24 17:50:35.719676004+00:00,1 +2023-10-24 17:50:35.846830653+00:00,1 +2023-10-24 17:50:35.974321496+00:00,1 +2023-10-24 17:50:36.102055053+00:00,1 +2023-10-24 17:50:36.229985332+00:00,1 +2023-10-24 17:50:36.357426893+00:00,1 +2023-10-24 17:50:36.485308014+00:00,1 +2023-10-24 17:50:36.612778538+00:00,1 +2023-10-24 17:50:36.740234542+00:00,1 +2023-10-24 17:50:36.870644040+00:00,1 +2023-10-24 17:50:36.999407486+00:00,1 +2023-10-24 17:50:37.128333541+00:00,1 +2023-10-24 17:50:37.255942195+00:00,1 +2023-10-24 17:50:37.383068287+00:00,1 +2023-10-24 17:50:37.510336440+00:00,1 +2023-10-24 17:50:37.638252033+00:00,1 +2023-10-24 17:50:37.766469041+00:00,1 +2023-10-24 17:50:37.893551261+00:00,1 +2023-10-24 17:50:38.021394524+00:00,1 +2023-10-24 17:50:38.148977856+00:00,1 +2023-10-24 17:50:38.277788428+00:00,1 +2023-10-24 17:50:38.405625569+00:00,1 +2023-10-24 17:50:38.533507480+00:00,1 +2023-10-24 17:50:38.662209108+00:00,1 +2023-10-24 17:50:38.790275206+00:00,1 +2023-10-24 17:50:38.918808517+00:00,1 +2023-10-24 17:50:39.047488361+00:00,1 +2023-10-24 17:50:39.176542409+00:00,1 +2023-10-24 17:50:39.304182076+00:00,1 +2023-10-24 17:50:39.432091757+00:00,1 +2023-10-24 17:50:39.560057733+00:00,1 +2023-10-24 17:50:39.688094776+00:00,1 +2023-10-24 17:50:39.816140294+00:00,1 +2023-10-24 17:50:39.945121271+00:00,1 +2023-10-24 17:50:40.074362065+00:00,1 +2023-10-24 17:50:40.202388307+00:00,1 +2023-10-24 17:50:40.330725013+00:00,1 +2023-10-24 17:50:40.459324805+00:00,1 +2023-10-24 17:50:40.587824015+00:00,1 +2023-10-24 17:50:40.716220579+00:00,1 +2023-10-24 17:50:40.846154442+00:00,1 +2023-10-24 17:50:40.973657778+00:00,1 +2023-10-24 17:50:41.102122777+00:00,1 +2023-10-24 17:50:41.230190739+00:00,1 +2023-10-24 17:50:41.358049849+00:00,1 +2023-10-24 17:50:41.486660612+00:00,1 +2023-10-24 17:50:41.615382907+00:00,1 +2023-10-24 17:50:41.742578582+00:00,1 +2023-10-24 17:50:41.870626047+00:00,1 +2023-10-24 17:50:41.999129256+00:00,1 +2023-10-24 17:50:42.129071338+00:00,1 +2023-10-24 17:50:42.257127878+00:00,1 +2023-10-24 17:50:42.385344250+00:00,1 +2023-10-24 17:50:42.514205863+00:00,1 +2023-10-24 17:50:42.641696011+00:00,1 +2023-10-24 17:50:42.770473620+00:00,1 +2023-10-24 17:50:42.898620505+00:00,1 +2023-10-24 17:50:43.025884398+00:00,1 +2023-10-24 17:50:43.154987343+00:00,1 +2023-10-24 17:50:43.282627469+00:00,1 +2023-10-24 17:50:43.410915219+00:00,1 +2023-10-24 17:50:43.538718229+00:00,1 +2023-10-24 17:50:43.666788962+00:00,1 +2023-10-24 17:50:43.794219577+00:00,1 +2023-10-24 17:50:43.921572109+00:00,1 +2023-10-24 17:50:44.048844875+00:00,1 +2023-10-24 17:50:44.176235596+00:00,1 +2023-10-24 17:50:44.304329360+00:00,1 +2023-10-24 17:50:44.431683160+00:00,1 +2023-10-24 17:50:44.559247264+00:00,1 +2023-10-24 17:50:44.687489262+00:00,1 +2023-10-24 17:50:44.817054335+00:00,1 +2023-10-24 17:50:44.945833957+00:00,1 +2023-10-24 17:50:45.074937946+00:00,1 +2023-10-24 17:50:45.203754945+00:00,1 +2023-10-24 17:50:45.332824572+00:00,1 +2023-10-24 17:50:45.461311036+00:00,1 +2023-10-24 17:50:45.588658497+00:00,1 +2023-10-24 17:50:45.716006033+00:00,1 +2023-10-24 17:50:45.845491491+00:00,1 +2023-10-24 17:50:45.972612613+00:00,1 +2023-10-24 17:50:46.100118526+00:00,1 +2023-10-24 17:50:46.227310990+00:00,1 +2023-10-24 17:50:46.354253948+00:00,1 +2023-10-24 17:50:46.480955817+00:00,1 +2023-10-24 17:50:46.607868188+00:00,1 +2023-10-24 17:50:46.735256937+00:00,1 +2023-10-24 17:50:46.861314907+00:00,1 +2023-10-24 17:50:46.987881027+00:00,1 +2023-10-24 17:50:47.115531075+00:00,1 +2023-10-24 17:50:47.243317937+00:00,1 +2023-10-24 17:50:47.370376570+00:00,1 +2023-10-24 17:50:47.497960341+00:00,1 +2023-10-24 17:50:47.625352502+00:00,1 +2023-10-24 17:50:47.752891424+00:00,1 +2023-10-24 17:50:47.880174745+00:00,1 +2023-10-24 17:50:48.007922151+00:00,1 +2023-10-24 17:50:48.135388528+00:00,1 +2023-10-24 17:50:48.263619067+00:00,1 +2023-10-24 17:50:48.391482993+00:00,1 +2023-10-24 17:50:48.520251005+00:00,1 +2023-10-24 17:50:48.649488110+00:00,1 +2023-10-24 17:50:48.778469184+00:00,1 +2023-10-24 17:50:48.907424377+00:00,1 +2023-10-24 17:50:49.036629598+00:00,1 +2023-10-24 17:50:49.166266332+00:00,1 +2023-10-24 17:50:49.295856039+00:00,1 +2023-10-24 17:50:49.424309859+00:00,1 +2023-10-24 17:50:49.553329968+00:00,1 +2023-10-24 17:50:49.683236530+00:00,1 +2023-10-24 17:50:49.812223034+00:00,1 +2023-10-24 17:50:49.942236692+00:00,1 +2023-10-24 17:50:50.072052925+00:00,1 +2023-10-24 17:50:50.200117361+00:00,1 +2023-10-24 17:50:50.329672266+00:00,1 +2023-10-24 17:50:50.459917169+00:00,1 +2023-10-24 17:50:50.591839874+00:00,1 +2023-10-24 17:50:50.721614873+00:00,1 +2023-10-24 17:50:50.850365653+00:00,1 +2023-10-24 17:50:50.980317464+00:00,1 +2023-10-24 17:50:51.108636861+00:00,1 +2023-10-24 17:50:51.236635155+00:00,1 +2023-10-24 17:50:51.371648168+00:00,1 +2023-10-24 17:50:51.501373203+00:00,1 +2023-10-24 17:50:51.630372401+00:00,1 +2023-10-24 17:50:51.760301901+00:00,1 +2023-10-24 17:50:51.889252740+00:00,1 +2023-10-24 17:50:52.016478683+00:00,1 +2023-10-24 17:50:52.144296417+00:00,1 +2023-10-24 17:50:52.272805529+00:00,1 +2023-10-24 17:50:52.400881442+00:00,1 +2023-10-24 17:50:52.529262674+00:00,1 +2023-10-24 17:50:52.657023285+00:00,1 +2023-10-24 17:50:52.785703856+00:00,1 +2023-10-24 17:50:52.915030390+00:00,1 +2023-10-24 17:50:53.042698232+00:00,1 +2023-10-24 17:50:53.171766252+00:00,1 +2023-10-24 17:50:53.299782555+00:00,1 +2023-10-24 17:50:53.429098983+00:00,1 +2023-10-24 17:50:53.558377669+00:00,1 +2023-10-24 17:50:53.685679041+00:00,1 +2023-10-24 17:50:53.813257598+00:00,1 +2023-10-24 17:50:53.940525025+00:00,1 +2023-10-24 17:50:54.067532678+00:00,1 +2023-10-24 17:50:54.194452808+00:00,1 +2023-10-24 17:50:54.321565261+00:00,1 +2023-10-24 17:50:54.448130181+00:00,1 +2023-10-24 17:50:54.575166457+00:00,1 +2023-10-24 17:50:54.702803834+00:00,1 +2023-10-24 17:50:54.830033107+00:00,1 +2023-10-24 17:50:54.957752696+00:00,1 +2023-10-24 17:50:55.085500650+00:00,1 +2023-10-24 17:50:55.213245298+00:00,1 +2023-10-24 17:50:55.341191466+00:00,1 +2023-10-24 17:50:55.470114501+00:00,1 +2023-10-24 17:50:55.598681788+00:00,1 +2023-10-24 17:50:55.726567669+00:00,1 +2023-10-24 17:50:55.855524343+00:00,1 +2023-10-24 17:50:55.983243017+00:00,1 +2023-10-24 17:50:56.112874850+00:00,1 +2023-10-24 17:50:56.241422181+00:00,1 +2023-10-24 17:50:56.369741978+00:00,1 +2023-10-24 17:50:56.498435897+00:00,1 +2023-10-24 17:50:56.625784181+00:00,1 +2023-10-24 17:50:56.752839508+00:00,1 +2023-10-24 17:50:56.881462891+00:00,1 +2023-10-24 17:50:57.008708938+00:00,1 +2023-10-24 17:50:57.139379374+00:00,1 +2023-10-24 17:50:57.266807944+00:00,1 +2023-10-24 17:50:57.394972948+00:00,1 +2023-10-24 17:50:57.522028129+00:00,1 +2023-10-24 17:50:57.651204505+00:00,1 +2023-10-24 17:50:57.779150826+00:00,1 +2023-10-24 17:50:57.906833425+00:00,1 +2023-10-24 17:50:58.034413092+00:00,1 +2023-10-24 17:50:58.162906411+00:00,1 +2023-10-24 17:50:58.291584274+00:00,1 +2023-10-24 17:50:58.419012846+00:00,1 +2023-10-24 17:50:58.545689076+00:00,1 +2023-10-24 17:50:58.673196931+00:00,1 +2023-10-24 17:50:58.799941428+00:00,1 +2023-10-24 17:50:58.926507767+00:00,1 +2023-10-24 17:50:59.054066089+00:00,1 +2023-10-24 17:50:59.180843753+00:00,1 +2023-10-24 17:50:59.309409929+00:00,1 +2023-10-24 17:50:59.435860453+00:00,1 +2023-10-24 17:50:59.563832958+00:00,1 +2023-10-24 17:50:59.693238028+00:00,1 +2023-10-24 17:50:59.820759192+00:00,1 +2023-10-24 17:50:59.949699859+00:00,1 +2023-10-24 17:51:00.077650559+00:00,1 +2023-10-24 17:51:00.205092510+00:00,1 +2023-10-24 17:51:00.332749889+00:00,1 +2023-10-24 17:51:00.460265291+00:00,1 +2023-10-24 17:51:00.588361644+00:00,1 +2023-10-24 17:51:00.717081732+00:00,1 +2023-10-24 17:51:00.846446161+00:00,1 +2023-10-24 17:51:00.976813351+00:00,1 +2023-10-24 17:51:01.104928465+00:00,1 +2023-10-24 17:51:01.232924148+00:00,1 +2023-10-24 17:51:01.363492221+00:00,1 +2023-10-24 17:51:01.491700624+00:00,1 +2023-10-24 17:51:01.620055562+00:00,1 +2023-10-24 17:51:01.748553821+00:00,1 +2023-10-24 17:51:01.877192765+00:00,1 +2023-10-24 17:51:02.005983826+00:00,1 +2023-10-24 17:51:02.134668760+00:00,1 +2023-10-24 17:51:02.263245931+00:00,1 +2023-10-24 17:51:02.390788074+00:00,1 +2023-10-24 17:51:02.517405601+00:00,1 +2023-10-24 17:51:02.645146613+00:00,1 +2023-10-24 17:51:02.774282213+00:00,1 +2023-10-24 17:51:02.903988787+00:00,1 +2023-10-24 17:51:03.031905758+00:00,1 +2023-10-24 17:51:03.160508760+00:00,1 +2023-10-24 17:51:03.288450838+00:00,1 +2023-10-24 17:51:03.415929190+00:00,1 +2023-10-24 17:51:03.544518693+00:00,1 +2023-10-24 17:51:03.672363580+00:00,1 +2023-10-24 17:51:03.800013655+00:00,1 +2023-10-24 17:51:03.927955945+00:00,1 +2023-10-24 17:51:04.055962004+00:00,1 +2023-10-24 17:51:04.182836474+00:00,1 +2023-10-24 17:51:04.310082399+00:00,1 +2023-10-24 17:51:04.437536434+00:00,1 +2023-10-24 17:51:04.564689477+00:00,1 +2023-10-24 17:51:04.693272574+00:00,1 +2023-10-24 17:51:04.822118108+00:00,1 +2023-10-24 17:51:04.949657773+00:00,1 +2023-10-24 17:51:05.077339070+00:00,1 +2023-10-24 17:51:05.205490570+00:00,1 +2023-10-24 17:51:05.333293139+00:00,1 +2023-10-24 17:51:05.462903678+00:00,1 +2023-10-24 17:51:05.590982867+00:00,1 +2023-10-24 17:51:05.717607321+00:00,1 +2023-10-24 17:51:05.845362123+00:00,1 +2023-10-24 17:51:05.972029987+00:00,1 +2023-10-24 17:51:06.099575081+00:00,1 +2023-10-24 17:51:06.228338146+00:00,1 +2023-10-24 17:51:06.355398032+00:00,1 +2023-10-24 17:51:06.482621683+00:00,1 +2023-10-24 17:51:06.609711613+00:00,1 +2023-10-24 17:51:06.736714884+00:00,1 +2023-10-24 17:51:06.863761460+00:00,1 +2023-10-24 17:51:06.991458246+00:00,1 +2023-10-24 17:51:07.119751394+00:00,1 +2023-10-24 17:51:07.248208331+00:00,1 +2023-10-24 17:51:07.376333132+00:00,1 +2023-10-24 17:51:07.504343472+00:00,1 +2023-10-24 17:51:07.632051642+00:00,1 +2023-10-24 17:51:07.760319885+00:00,1 +2023-10-24 17:51:07.887982320+00:00,1 +2023-10-24 17:51:08.015457838+00:00,1 +2023-10-24 17:51:08.142809375+00:00,1 +2023-10-24 17:51:08.273920005+00:00,1 +2023-10-24 17:51:08.401672157+00:00,1 +2023-10-24 17:51:08.530403563+00:00,1 +2023-10-24 17:51:08.658761450+00:00,1 +2023-10-24 17:51:08.786587777+00:00,1 +2023-10-24 17:51:08.914585249+00:00,1 +2023-10-24 17:51:09.043147762+00:00,1 +2023-10-24 17:51:09.170764674+00:00,1 +2023-10-24 17:51:09.299268703+00:00,1 +2023-10-24 17:51:09.427622695+00:00,1 +2023-10-24 17:51:09.555687412+00:00,1 +2023-10-24 17:51:09.683533432+00:00,1 +2023-10-24 17:51:09.812163545+00:00,1 +2023-10-24 17:51:09.940505980+00:00,1 +2023-10-24 17:51:10.069119150+00:00,1 +2023-10-24 17:51:10.198565052+00:00,1 +2023-10-24 17:51:10.326810108+00:00,1 +2023-10-24 17:51:10.454547361+00:00,1 +2023-10-24 17:51:10.583254032+00:00,1 +2023-10-24 17:51:10.710700069+00:00,1 +2023-10-24 17:51:10.839076754+00:00,1 +2023-10-24 17:51:10.966579889+00:00,1 +2023-10-24 17:51:11.094392357+00:00,1 +2023-10-24 17:51:11.221934356+00:00,1 +2023-10-24 17:51:11.350328873+00:00,1 +2023-10-24 17:51:11.477892700+00:00,1 +2023-10-24 17:51:11.606094309+00:00,1 +2023-10-24 17:51:11.733775724+00:00,1 +2023-10-24 17:51:11.861965778+00:00,1 +2023-10-24 17:51:11.990575629+00:00,1 +2023-10-24 17:51:12.118949322+00:00,1 +2023-10-24 17:51:12.248053871+00:00,1 +2023-10-24 17:51:12.377812802+00:00,1 +2023-10-24 17:51:12.507160805+00:00,1 +2023-10-24 17:51:12.635154390+00:00,1 +2023-10-24 17:51:12.764185099+00:00,1 +2023-10-24 17:51:12.893380122+00:00,1 +2023-10-24 17:51:13.021700440+00:00,1 +2023-10-24 17:51:13.149839773+00:00,1 +2023-10-24 17:51:13.277826074+00:00,1 +2023-10-24 17:51:13.405597876+00:00,1 +2023-10-24 17:51:13.534517374+00:00,1 +2023-10-24 17:51:13.662254498+00:00,1 +2023-10-24 17:51:13.790402075+00:00,1 +2023-10-24 17:51:13.917993210+00:00,1 +2023-10-24 17:51:14.045733552+00:00,1 +2023-10-24 17:51:14.173305948+00:00,1 +2023-10-24 17:51:14.301135511+00:00,1 +2023-10-24 17:51:14.429712961+00:00,1 +2023-10-24 17:51:14.557476618+00:00,1 +2023-10-24 17:51:14.685048162+00:00,1 +2023-10-24 17:51:14.813449846+00:00,1 +2023-10-24 17:51:14.941485479+00:00,1 +2023-10-24 17:51:15.068933908+00:00,1 +2023-10-24 17:51:15.197620925+00:00,1 +2023-10-24 17:51:15.325744726+00:00,1 +2023-10-24 17:51:15.453055250+00:00,1 +2023-10-24 17:51:15.581641871+00:00,1 +2023-10-24 17:51:15.710311637+00:00,1 +2023-10-24 17:51:15.837780512+00:00,1 +2023-10-24 17:51:15.965892219+00:00,1 +2023-10-24 17:51:16.093481164+00:00,1 +2023-10-24 17:51:16.220382864+00:00,1 +2023-10-24 17:51:16.347825724+00:00,1 +2023-10-24 17:51:16.474643511+00:00,1 +2023-10-24 17:51:16.602544949+00:00,1 +2023-10-24 17:51:16.729470508+00:00,1 +2023-10-24 17:51:16.857230189+00:00,1 +2023-10-24 17:51:16.985174716+00:00,1 +2023-10-24 17:51:17.112735183+00:00,1 +2023-10-24 17:51:17.239754212+00:00,1 +2023-10-24 17:51:17.366973359+00:00,1 +2023-10-24 17:51:17.494710267+00:00,1 +2023-10-24 17:51:17.622910152+00:00,1 +2023-10-24 17:51:17.751213229+00:00,1 +2023-10-24 17:51:17.879955215+00:00,1 +2023-10-24 17:51:18.009101156+00:00,1 +2023-10-24 17:51:18.136817721+00:00,1 +2023-10-24 17:51:18.263593214+00:00,1 +2023-10-24 17:51:18.391620201+00:00,1 +2023-10-24 17:51:18.519929455+00:00,1 +2023-10-24 17:51:18.647636119+00:00,1 +2023-10-24 17:51:18.775973138+00:00,1 +2023-10-24 17:51:18.904098564+00:00,1 +2023-10-24 17:51:19.031900080+00:00,1 +2023-10-24 17:51:19.160269923+00:00,1 +2023-10-24 17:51:19.288005714+00:00,1 +2023-10-24 17:51:19.415583518+00:00,1 +2023-10-24 17:51:19.543772134+00:00,1 +2023-10-24 17:51:19.671830183+00:00,1 +2023-10-24 17:51:19.800864897+00:00,1 +2023-10-24 17:51:19.929998819+00:00,1 +2023-10-24 17:51:20.058892491+00:00,1 +2023-10-24 17:51:20.187063191+00:00,1 +2023-10-24 17:51:20.316104917+00:00,1 +2023-10-24 17:51:20.445873354+00:00,1 +2023-10-24 17:51:20.574631352+00:00,1 +2023-10-24 17:51:20.702796978+00:00,1 +2023-10-24 17:51:20.830842590+00:00,1 +2023-10-24 17:51:20.958815339+00:00,1 +2023-10-24 17:51:21.086206703+00:00,1 +2023-10-24 17:51:21.213541320+00:00,1 +2023-10-24 17:51:21.341117978+00:00,1 +2023-10-24 17:51:21.468729118+00:00,1 +2023-10-24 17:51:21.596563994+00:00,1 +2023-10-24 17:51:21.725709690+00:00,1 +2023-10-24 17:51:21.853916077+00:00,1 +2023-10-24 17:51:21.983741713+00:00,1 +2023-10-24 17:51:22.111564107+00:00,1 +2023-10-24 17:51:22.240370313+00:00,1 +2023-10-24 17:51:22.368669313+00:00,1 +2023-10-24 17:51:22.496685733+00:00,1 +2023-10-24 17:51:22.625345218+00:00,1 +2023-10-24 17:51:22.753914113+00:00,1 +2023-10-24 17:51:22.882277195+00:00,1 +2023-10-24 17:51:23.010578799+00:00,1 +2023-10-24 17:51:23.139827905+00:00,1 +2023-10-24 17:51:23.268104023+00:00,1 +2023-10-24 17:51:23.395725976+00:00,1 +2023-10-24 17:51:23.523972055+00:00,1 +2023-10-24 17:51:23.651415085+00:00,1 +2023-10-24 17:51:23.779061227+00:00,1 +2023-10-24 17:51:23.906677866+00:00,1 +2023-10-24 17:51:24.034960570+00:00,1 +2023-10-24 17:51:24.163783202+00:00,1 +2023-10-24 17:51:24.291345254+00:00,1 +2023-10-24 17:51:24.418891669+00:00,1 +2023-10-24 17:51:24.546419062+00:00,1 +2023-10-24 17:51:24.674022214+00:00,1 +2023-10-24 17:51:24.802200245+00:00,1 +2023-10-24 17:51:24.929360410+00:00,1 +2023-10-24 17:51:25.058323895+00:00,1 +2023-10-24 17:51:25.187315346+00:00,1 +2023-10-24 17:51:25.314823736+00:00,1 +2023-10-24 17:51:25.443720851+00:00,1 +2023-10-24 17:51:25.571276790+00:00,1 +2023-10-24 17:51:25.698239323+00:00,1 +2023-10-24 17:51:25.825525774+00:00,1 +2023-10-24 17:51:25.954485230+00:00,1 +2023-10-24 17:51:26.082129582+00:00,1 +2023-10-24 17:51:26.210401414+00:00,1 +2023-10-24 17:51:26.337919213+00:00,1 +2023-10-24 17:51:26.464763603+00:00,1 +2023-10-24 17:51:26.592642598+00:00,1 +2023-10-24 17:51:26.719948163+00:00,1 +2023-10-24 17:51:26.847256041+00:00,1 +2023-10-24 17:51:26.974811813+00:00,1 +2023-10-24 17:51:27.102343231+00:00,1 +2023-10-24 17:51:27.230767971+00:00,1 +2023-10-24 17:51:27.358637668+00:00,1 +2023-10-24 17:51:27.486115662+00:00,1 +2023-10-24 17:51:27.614314829+00:00,1 +2023-10-24 17:51:27.742785922+00:00,1 +2023-10-24 17:51:27.872072804+00:00,1 +2023-10-24 17:51:28.000256182+00:00,1 +2023-10-24 17:51:28.128029517+00:00,1 +2023-10-24 17:51:28.256375180+00:00,1 +2023-10-24 17:51:28.384267776+00:00,1 +2023-10-24 17:51:28.511883245+00:00,1 +2023-10-24 17:51:28.639536033+00:00,1 +2023-10-24 17:51:28.767300482+00:00,1 +2023-10-24 17:51:28.894079754+00:00,1 +2023-10-24 17:51:29.021340372+00:00,1 +2023-10-24 17:51:29.148380046+00:00,1 +2023-10-24 17:51:29.275579363+00:00,1 +2023-10-24 17:51:29.402641900+00:00,1 +2023-10-24 17:51:29.529899813+00:00,1 +2023-10-24 17:51:29.657755789+00:00,1 +2023-10-24 17:51:29.786814708+00:00,1 +2023-10-24 17:51:29.915006802+00:00,1 +2023-10-24 17:51:30.042284854+00:00,1 +2023-10-24 17:51:30.169440875+00:00,1 +2023-10-24 17:51:30.296718777+00:00,1 +2023-10-24 17:51:30.424872364+00:00,1 +2023-10-24 17:51:30.553284554+00:00,1 +2023-10-24 17:51:30.682199743+00:00,1 +2023-10-24 17:51:30.809551218+00:00,1 +2023-10-24 17:51:30.937495200+00:00,1 +2023-10-24 17:51:31.064795929+00:00,1 +2023-10-24 17:51:31.193682411+00:00,1 +2023-10-24 17:51:31.321496573+00:00,1 +2023-10-24 17:51:31.449522140+00:00,1 +2023-10-24 17:51:31.577727138+00:00,1 +2023-10-24 17:51:31.706263738+00:00,1 +2023-10-24 17:51:31.835311654+00:00,1 +2023-10-24 17:51:31.962922649+00:00,1 +2023-10-24 17:51:32.091242550+00:00,1 +2023-10-24 17:51:32.220147355+00:00,1 +2023-10-24 17:51:32.348220922+00:00,1 +2023-10-24 17:51:32.478034339+00:00,1 +2023-10-24 17:51:32.606218084+00:00,1 +2023-10-24 17:51:32.734896247+00:00,1 +2023-10-24 17:51:32.862970523+00:00,1 +2023-10-24 17:51:32.991881591+00:00,1 +2023-10-24 17:51:33.119811956+00:00,1 +2023-10-24 17:51:33.249181577+00:00,1 +2023-10-24 17:51:33.377851764+00:00,1 +2023-10-24 17:51:33.506510332+00:00,1 +2023-10-24 17:51:33.634655582+00:00,1 +2023-10-24 17:51:33.762213473+00:00,1 +2023-10-24 17:51:33.891049295+00:00,1 +2023-10-24 17:51:34.020021470+00:00,1 +2023-10-24 17:51:34.149091992+00:00,1 +2023-10-24 17:51:34.277095929+00:00,1 +2023-10-24 17:51:34.404841547+00:00,1 +2023-10-24 17:51:34.533573757+00:00,1 +2023-10-24 17:51:34.664281125+00:00,1 +2023-10-24 17:51:34.791506366+00:00,1 +2023-10-24 17:51:34.919225654+00:00,1 +2023-10-24 17:51:35.047989143+00:00,1 +2023-10-24 17:51:35.175885268+00:00,1 +2023-10-24 17:51:35.302969506+00:00,1 +2023-10-24 17:51:35.432001621+00:00,1 +2023-10-24 17:51:35.560008113+00:00,1 +2023-10-24 17:51:35.689162231+00:00,1 +2023-10-24 17:51:35.817483247+00:00,1 +2023-10-24 17:51:35.946538164+00:00,1 +2023-10-24 17:51:36.074654837+00:00,1 +2023-10-24 17:51:36.203943812+00:00,1 +2023-10-24 17:51:36.331638471+00:00,1 +2023-10-24 17:51:36.459660906+00:00,1 +2023-10-24 17:51:36.588952689+00:00,1 +2023-10-24 17:51:36.716964239+00:00,1 +2023-10-24 17:51:36.844480117+00:00,1 +2023-10-24 17:51:36.972671243+00:00,1 +2023-10-24 17:51:37.101882406+00:00,1 +2023-10-24 17:51:37.231327241+00:00,1 +2023-10-24 17:51:37.358779965+00:00,1 +2023-10-24 17:51:37.486924566+00:00,1 +2023-10-24 17:51:37.614667448+00:00,1 +2023-10-24 17:51:37.741957920+00:00,1 +2023-10-24 17:51:37.869410581+00:00,1 +2023-10-24 17:51:37.997651810+00:00,1 +2023-10-24 17:51:38.125299917+00:00,1 +2023-10-24 17:51:38.253875556+00:00,1 +2023-10-24 17:51:38.381774776+00:00,1 +2023-10-24 17:51:38.510624636+00:00,1 +2023-10-24 17:51:38.638805594+00:00,1 +2023-10-24 17:51:38.766572849+00:00,1 +2023-10-24 17:51:38.894657996+00:00,1 +2023-10-24 17:51:39.022830838+00:00,1 +2023-10-24 17:51:39.149716759+00:00,1 +2023-10-24 17:51:39.277449454+00:00,1 +2023-10-24 17:51:39.404123406+00:00,1 +2023-10-24 17:51:39.531819594+00:00,1 +2023-10-24 17:51:39.659121275+00:00,1 +2023-10-24 17:51:39.786449537+00:00,1 +2023-10-24 17:51:39.913862485+00:00,1 +2023-10-24 17:51:40.041446684+00:00,1 +2023-10-24 17:51:40.168452018+00:00,1 +2023-10-24 17:51:40.296467102+00:00,1 +2023-10-24 17:51:40.424469239+00:00,1 +2023-10-24 17:51:40.553094632+00:00,1 +2023-10-24 17:51:40.680661975+00:00,1 +2023-10-24 17:51:40.808662834+00:00,1 +2023-10-24 17:51:40.936923353+00:00,1 +2023-10-24 17:51:41.064011987+00:00,1 +2023-10-24 17:51:41.192014981+00:00,1 +2023-10-24 17:51:41.319745609+00:00,1 +2023-10-24 17:51:41.446665247+00:00,1 +2023-10-24 17:51:41.574213704+00:00,1 +2023-10-24 17:51:41.702022860+00:00,1 +2023-10-24 17:51:41.829940638+00:00,1 +2023-10-24 17:51:41.957253945+00:00,1 +2023-10-24 17:51:42.086002867+00:00,1 +2023-10-24 17:51:42.213852510+00:00,1 +2023-10-24 17:51:42.342532645+00:00,1 +2023-10-24 17:51:42.470748795+00:00,1 +2023-10-24 17:51:42.599263445+00:00,1 +2023-10-24 17:51:42.727659466+00:00,1 +2023-10-24 17:51:42.855899225+00:00,1 +2023-10-24 17:51:42.982990475+00:00,1 +2023-10-24 17:51:43.110871103+00:00,1 +2023-10-24 17:51:43.240344200+00:00,1 +2023-10-24 17:51:43.368649870+00:00,1 +2023-10-24 17:51:43.496051016+00:00,1 +2023-10-24 17:51:43.623787246+00:00,1 +2023-10-24 17:51:43.752138981+00:00,1 +2023-10-24 17:51:43.879846467+00:00,1 +2023-10-24 17:51:44.007955173+00:00,1 +2023-10-24 17:51:44.137617752+00:00,1 +2023-10-24 17:51:44.264859910+00:00,1 +2023-10-24 17:51:44.393608817+00:00,1 +2023-10-24 17:51:44.522200558+00:00,1 +2023-10-24 17:51:44.650379022+00:00,1 +2023-10-24 17:51:44.778941429+00:00,1 +2023-10-24 17:51:44.906996254+00:00,1 +2023-10-24 17:51:45.034900771+00:00,1 +2023-10-24 17:51:45.164796406+00:00,1 +2023-10-24 17:51:45.292993104+00:00,1 +2023-10-24 17:51:45.420104821+00:00,1 +2023-10-24 17:51:45.547585652+00:00,1 +2023-10-24 17:51:45.674285636+00:00,1 +2023-10-24 17:51:45.802199030+00:00,1 +2023-10-24 17:51:45.931905317+00:00,1 +2023-10-24 17:51:46.059747557+00:00,1 +2023-10-24 17:51:46.188660557+00:00,1 +2023-10-24 17:51:46.316519272+00:00,1 +2023-10-24 17:51:46.444730536+00:00,1 +2023-10-24 17:51:46.572603080+00:00,1 +2023-10-24 17:51:46.699712827+00:00,1 +2023-10-24 17:51:46.828177650+00:00,1 +2023-10-24 17:51:46.955448071+00:00,1 +2023-10-24 17:51:47.082444908+00:00,1 +2023-10-24 17:51:47.209673694+00:00,1 +2023-10-24 17:51:47.337700351+00:00,1 +2023-10-24 17:51:47.465706457+00:00,1 +2023-10-24 17:51:47.593157913+00:00,1 +2023-10-24 17:51:47.720620486+00:00,1 +2023-10-24 17:51:47.848355760+00:00,1 +2023-10-24 17:51:47.975743078+00:00,1 +2023-10-24 17:51:48.103866220+00:00,1 +2023-10-24 17:51:48.232863904+00:00,1 +2023-10-24 17:51:48.361846642+00:00,1 +2023-10-24 17:51:48.489865371+00:00,1 +2023-10-24 17:51:48.618235564+00:00,1 +2023-10-24 17:51:48.746216199+00:00,1 +2023-10-24 17:51:48.874280352+00:00,1 +2023-10-24 17:51:49.002279537+00:00,1 +2023-10-24 17:51:49.130457752+00:00,1 +2023-10-24 17:51:49.258206156+00:00,1 +2023-10-24 17:51:49.386502380+00:00,1 +2023-10-24 17:51:49.515064846+00:00,1 +2023-10-24 17:51:49.644088625+00:00,1 +2023-10-24 17:51:49.772072705+00:00,1 +2023-10-24 17:51:49.901065630+00:00,1 +2023-10-24 17:51:50.028486547+00:00,1 +2023-10-24 17:51:50.157364433+00:00,1 +2023-10-24 17:51:50.285804886+00:00,1 +2023-10-24 17:51:50.413567285+00:00,1 +2023-10-24 17:51:50.541434209+00:00,1 +2023-10-24 17:51:50.670355273+00:00,1 +2023-10-24 17:51:50.801214808+00:00,1 +2023-10-24 17:51:50.929511363+00:00,1 +2023-10-24 17:51:51.057791059+00:00,1 +2023-10-24 17:51:51.186734580+00:00,1 +2023-10-24 17:51:51.314590609+00:00,1 +2023-10-24 17:51:51.442287727+00:00,1 +2023-10-24 17:51:51.570786412+00:00,1 +2023-10-24 17:51:51.698519500+00:00,1 +2023-10-24 17:51:51.826109498+00:00,1 +2023-10-24 17:51:51.954532961+00:00,1 +2023-10-24 17:51:52.081406390+00:00,1 +2023-10-24 17:51:52.210494829+00:00,1 +2023-10-24 17:51:52.339906621+00:00,1 +2023-10-24 17:51:52.467456590+00:00,1 +2023-10-24 17:51:52.595848302+00:00,1 +2023-10-24 17:51:52.724268556+00:00,1 +2023-10-24 17:51:52.852292991+00:00,1 +2023-10-24 17:51:52.979931269+00:00,1 +2023-10-24 17:51:53.109522626+00:00,1 +2023-10-24 17:51:53.238787795+00:00,1 +2023-10-24 17:51:53.366562660+00:00,1 +2023-10-24 17:51:53.493796841+00:00,1 +2023-10-24 17:51:53.621615084+00:00,1 +2023-10-24 17:51:53.749557969+00:00,1 +2023-10-24 17:51:53.876849345+00:00,1 +2023-10-24 17:51:54.005161251+00:00,1 +2023-10-24 17:51:54.132589461+00:00,1 +2023-10-24 17:51:54.260760892+00:00,1 +2023-10-24 17:51:54.390100781+00:00,1 +2023-10-24 17:51:54.518202679+00:00,1 +2023-10-24 17:51:54.646285717+00:00,1 +2023-10-24 17:51:54.774698458+00:00,1 +2023-10-24 17:51:54.902043674+00:00,1 +2023-10-24 17:51:55.029858731+00:00,1 +2023-10-24 17:51:55.157557746+00:00,1 +2023-10-24 17:51:55.285510208+00:00,1 +2023-10-24 17:51:55.414000827+00:00,1 +2023-10-24 17:51:55.542137086+00:00,1 +2023-10-24 17:51:55.670576245+00:00,1 +2023-10-24 17:51:55.798885182+00:00,1 +2023-10-24 17:51:55.925950835+00:00,1 +2023-10-24 17:51:56.053031284+00:00,1 +2023-10-24 17:51:56.182479115+00:00,1 +2023-10-24 17:51:56.309251618+00:00,1 +2023-10-24 17:51:56.436260056+00:00,1 +2023-10-24 17:51:56.563211383+00:00,1 +2023-10-24 17:51:56.690239521+00:00,1 +2023-10-24 17:51:56.820042781+00:00,1 +2023-10-24 17:51:56.948297991+00:00,1 +2023-10-24 17:51:57.078487400+00:00,1 +2023-10-24 17:51:57.206652679+00:00,1 +2023-10-24 17:51:57.334859821+00:00,1 +2023-10-24 17:51:57.463558648+00:00,1 +2023-10-24 17:51:57.591597031+00:00,1 +2023-10-24 17:51:57.719192180+00:00,1 +2023-10-24 17:51:57.847823617+00:00,1 +2023-10-24 17:51:57.975656190+00:00,1 +2023-10-24 17:51:58.103375453+00:00,1 +2023-10-24 17:51:58.231691586+00:00,1 +2023-10-24 17:51:58.359730734+00:00,1 +2023-10-24 17:51:58.488729625+00:00,1 +2023-10-24 17:51:58.616111388+00:00,1 +2023-10-24 17:51:58.744235596+00:00,1 +2023-10-24 17:51:58.871446226+00:00,1 +2023-10-24 17:51:58.999602235+00:00,1 +2023-10-24 17:51:59.128070427+00:00,1 +2023-10-24 17:51:59.255746459+00:00,1 +2023-10-24 17:51:59.383814927+00:00,1 +2023-10-24 17:51:59.511840689+00:00,1 +2023-10-24 17:51:59.638922786+00:00,1 +2023-10-24 17:51:59.768271079+00:00,1 +2023-10-24 17:51:59.896527201+00:00,1 +2023-10-24 17:52:00.024586138+00:00,1 +2023-10-24 17:52:00.151822609+00:00,1 +2023-10-24 17:52:00.281657766+00:00,1 +2023-10-24 17:52:00.409026991+00:00,1 +2023-10-24 17:52:00.537277406+00:00,1 +2023-10-24 17:52:00.665485727+00:00,1 +2023-10-24 17:52:00.794640897+00:00,1 +2023-10-24 17:52:00.922759275+00:00,1 +2023-10-24 17:52:01.050854827+00:00,1 +2023-10-24 17:52:01.181378496+00:00,1 +2023-10-24 17:52:01.309532077+00:00,1 +2023-10-24 17:52:01.437403759+00:00,1 +2023-10-24 17:52:01.565610723+00:00,1 +2023-10-24 17:52:01.693448602+00:00,1 +2023-10-24 17:52:01.821682484+00:00,1 +2023-10-24 17:52:01.950065351+00:00,1 +2023-10-24 17:52:02.077005920+00:00,1 +2023-10-24 17:52:02.204061132+00:00,1 +2023-10-24 17:52:02.333375471+00:00,1 +2023-10-24 17:52:02.460909939+00:00,1 +2023-10-24 17:52:02.589900653+00:00,1 +2023-10-24 17:52:02.718015787+00:00,1 +2023-10-24 17:52:02.845107802+00:00,1 +2023-10-24 17:52:02.972590216+00:00,1 +2023-10-24 17:52:03.100939507+00:00,1 +2023-10-24 17:52:03.228774396+00:00,1 +2023-10-24 17:52:03.356899164+00:00,1 +2023-10-24 17:52:03.485173113+00:00,1 +2023-10-24 17:52:03.613854333+00:00,1 +2023-10-24 17:52:03.743508823+00:00,1 +2023-10-24 17:52:03.871283683+00:00,1 +2023-10-24 17:52:03.999353957+00:00,1 +2023-10-24 17:52:04.128177681+00:00,1 +2023-10-24 17:52:04.256864378+00:00,1 +2023-10-24 17:52:04.385569926+00:00,1 +2023-10-24 17:52:04.512982118+00:00,1 +2023-10-24 17:52:04.642397916+00:00,1 +2023-10-24 17:52:04.770848658+00:00,1 +2023-10-24 17:52:04.899052549+00:00,1 +2023-10-24 17:52:05.026691891+00:00,1 +2023-10-24 17:52:05.154736451+00:00,1 +2023-10-24 17:52:05.281732609+00:00,1 +2023-10-24 17:52:05.408858480+00:00,1 +2023-10-24 17:52:05.536008623+00:00,1 +2023-10-24 17:52:05.663509414+00:00,1 +2023-10-24 17:52:05.793858063+00:00,1 +2023-10-24 17:52:05.922432438+00:00,1 +2023-10-24 17:52:06.050553533+00:00,1 +2023-10-24 17:52:06.178557546+00:00,1 +2023-10-24 17:52:06.306893071+00:00,1 +2023-10-24 17:52:06.435591482+00:00,1 +2023-10-24 17:52:06.564131522+00:00,1 +2023-10-24 17:52:06.693524197+00:00,1 +2023-10-24 17:52:06.824153243+00:00,1 +2023-10-24 17:52:06.952174607+00:00,1 +2023-10-24 17:52:07.080724714+00:00,1 +2023-10-24 17:52:07.208795213+00:00,1 +2023-10-24 17:52:07.337330507+00:00,1 +2023-10-24 17:52:07.465878110+00:00,1 +2023-10-24 17:52:07.593177485+00:00,1 +2023-10-24 17:52:07.721212205+00:00,1 +2023-10-24 17:52:07.848439974+00:00,1 +2023-10-24 17:52:07.976498243+00:00,1 +2023-10-24 17:52:08.105174339+00:00,1 +2023-10-24 17:52:08.234587031+00:00,1 +2023-10-24 17:52:08.361950177+00:00,1 +2023-10-24 17:52:08.490962754+00:00,1 +2023-10-24 17:52:08.618981122+00:00,1 +2023-10-24 17:52:08.748612316+00:00,1 +2023-10-24 17:52:08.876091044+00:00,1 +2023-10-24 17:52:09.003999973+00:00,1 +2023-10-24 17:52:09.131680338+00:00,1 +2023-10-24 17:52:09.259946098+00:00,1 +2023-10-24 17:52:09.384788503+00:00,1 +2023-10-24 17:52:09.510213681+00:00,1 +2023-10-24 17:52:09.634955939+00:00,1 +2023-10-24 17:52:09.760140378+00:00,1 +2023-10-24 17:52:09.885287230+00:00,1 +2023-10-24 17:52:10.010896080+00:00,1 +2023-10-24 17:52:10.135910834+00:00,1 +2023-10-24 17:52:10.261167325+00:00,1 +2023-10-24 17:52:11.390423029+00:00,1 +2023-10-24 17:52:11.515918003+00:00,1 +2023-10-24 17:52:12.678762548+00:00,1 +2023-10-24 17:52:12.804245107+00:00,1 +2023-10-24 17:52:12.930809623+00:00,1 +2023-10-24 17:52:14.100649653+00:00,1 +2023-10-24 17:52:14.226398151+00:00,1 +2023-10-24 17:52:14.351535348+00:00,1 +2023-10-24 17:52:14.476950014+00:00,1 +2023-10-24 17:52:14.603408801+00:00,1 +2023-10-24 17:52:14.728757462+00:00,1 +2023-10-24 17:52:14.854518881+00:00,1 +2023-10-24 17:52:14.980036012+00:00,1 +2023-10-24 17:52:15.107327466+00:00,1 +2023-10-24 17:52:15.233834127+00:00,1 +2023-10-24 17:52:15.359969407+00:00,1 +2023-10-24 17:52:15.485404743+00:00,1 +2023-10-24 17:52:15.612035141+00:00,1 +2023-10-24 17:52:15.739042865+00:00,0 +2023-10-24 17:52:17.751734916+00:00,1 +2023-10-24 17:52:18.899590956+00:00,1 +2023-10-24 17:52:20.079386574+00:00,1 +2023-10-24 17:52:21.210624010+00:00,1 +2023-10-24 17:52:22.393242153+00:00,1 +2023-10-24 17:52:22.520032227+00:00,1 +2023-10-24 17:52:22.646555192+00:00,1 +2023-10-24 17:52:22.773604869+00:00,1 +2023-10-24 17:52:23.956196956+00:00,1 +2023-10-24 17:52:24.083402471+00:00,1 +2023-10-24 17:52:24.210363069+00:00,1 +2023-10-24 17:52:24.336106317+00:00,1 +2023-10-24 17:52:24.462416796+00:00,1 +2023-10-24 17:52:24.587592777+00:00,1 +2023-10-24 17:52:24.713802030+00:00,1 +2023-10-24 17:52:25.848879124+00:00,1 +2023-10-24 17:52:25.974743225+00:00,1 +2023-10-24 17:52:26.101026944+00:00,1 +2023-10-24 17:52:26.225783156+00:00,1 +2023-10-24 17:52:26.352381355+00:00,1 +2023-10-24 17:52:26.478325415+00:00,1 +2023-10-24 17:52:33.748315913+00:00,1 +2023-10-24 17:52:33.876095277+00:00,1 +2023-10-24 17:52:34.002501183+00:00,1 +2023-10-24 17:52:34.130135367+00:00,1 +2023-10-24 17:52:34.259287064+00:00,1 +2023-10-24 17:52:34.385899225+00:00,1 +2023-10-24 17:52:34.512214001+00:00,1 +2023-10-24 17:52:34.639812806+00:00,1 +2023-10-24 17:52:34.766960215+00:00,1 +2023-10-24 17:52:34.896096064+00:00,1 +2023-10-24 17:52:35.023836090+00:00,1 +2023-10-24 17:52:35.149978556+00:00,1 +2023-10-24 17:52:35.276887727+00:00,1 +2023-10-24 17:52:35.404304186+00:00,1 +2023-10-24 17:52:35.531954137+00:00,1 +2023-10-24 17:52:35.659041519+00:00,1 +2023-10-24 17:52:35.786732029+00:00,1 +2023-10-24 17:52:35.915795512+00:00,1 +2023-10-24 17:52:36.042507229+00:00,1 +2023-10-24 17:52:36.170086739+00:00,1 +2023-10-24 17:52:36.298668126+00:00,1 +2023-10-24 17:52:36.425763428+00:00,1 +2023-10-24 17:52:36.554081028+00:00,1 +2023-10-24 17:52:36.680941612+00:00,1 +2023-10-24 17:52:36.809117558+00:00,1 +2023-10-24 17:52:36.937989862+00:00,1 +2023-10-24 17:52:37.064427697+00:00,1 +2023-10-24 17:52:37.190728906+00:00,1 +2023-10-24 17:52:37.316912042+00:00,1 +2023-10-24 17:52:37.443312282+00:00,1 +2023-10-24 17:52:37.571552390+00:00,1 +2023-10-24 17:52:37.698774453+00:00,1 +2023-10-24 17:52:37.826497735+00:00,1 +2023-10-24 17:52:37.953826085+00:00,1 +2023-10-24 17:52:38.080860134+00:00,1 +2023-10-24 17:52:38.207792090+00:00,1 +2023-10-24 17:52:38.334924322+00:00,1 +2023-10-24 17:52:38.461417705+00:00,1 +2023-10-24 17:52:38.588670440+00:00,1 +2023-10-24 17:52:38.715352456+00:00,1 +2023-10-24 17:52:38.842103063+00:00,1 +2023-10-24 17:52:38.968970975+00:00,1 +2023-10-24 17:52:39.096665273+00:00,1 +2023-10-24 17:52:39.223254878+00:00,1 +2023-10-24 17:52:39.350095928+00:00,1 +2023-10-24 17:52:39.476417864+00:00,1 +2023-10-24 17:52:39.602491024+00:00,1 +2023-10-24 17:52:39.729276162+00:00,1 +2023-10-24 17:52:39.855425407+00:00,1 +2023-10-24 17:52:39.982687793+00:00,1 +2023-10-24 17:52:40.109065584+00:00,1 +2023-10-24 17:52:40.236113981+00:00,1 +2023-10-24 17:52:40.363166868+00:00,1 +2023-10-24 17:52:40.490712891+00:00,1 +2023-10-24 17:52:40.616643557+00:00,1 +2023-10-24 17:52:40.742798289+00:00,1 +2023-10-24 17:52:40.870462708+00:00,1 +2023-10-24 17:52:40.996994460+00:00,1 +2023-10-24 17:52:41.123857077+00:00,1 +2023-10-24 17:52:41.251194034+00:00,1 +2023-10-24 17:52:41.379311742+00:00,1 +2023-10-24 17:52:41.505420290+00:00,1 +2023-10-24 17:52:41.631677354+00:00,1 +2023-10-24 17:52:41.758974519+00:00,1 +2023-10-24 17:52:41.886376562+00:00,1 +2023-10-24 17:52:42.012782533+00:00,1 +2023-10-24 17:52:42.139183698+00:00,1 +2023-10-24 17:52:42.265878942+00:00,1 +2023-10-24 17:52:42.392836915+00:00,1 +2023-10-24 17:52:42.518776191+00:00,1 +2023-10-24 17:52:42.645018784+00:00,1 +2023-10-24 17:52:42.771544935+00:00,1 +2023-10-24 17:52:42.898450143+00:00,1 +2023-10-24 17:52:43.024814228+00:00,1 +2023-10-24 17:52:43.150631456+00:00,1 +2023-10-24 17:52:43.277570232+00:00,1 +2023-10-24 17:52:43.404707966+00:00,1 +2023-10-24 17:52:43.531189381+00:00,1 +2023-10-24 17:52:43.659430463+00:00,1 +2023-10-24 17:52:43.787166579+00:00,1 +2023-10-24 17:52:43.914262289+00:00,1 +2023-10-24 17:52:44.040851631+00:00,1 +2023-10-24 17:52:44.167747920+00:00,1 +2023-10-24 17:52:44.294767457+00:00,1 +2023-10-24 17:52:44.420817512+00:00,1 +2023-10-24 17:52:44.547250571+00:00,1 +2023-10-24 17:52:44.673737045+00:00,1 +2023-10-24 17:52:44.801695804+00:00,1 +2023-10-24 17:52:44.928788370+00:00,1 +2023-10-24 17:52:45.055132647+00:00,1 +2023-10-24 17:52:45.181044689+00:00,1 +2023-10-24 17:52:45.307046183+00:00,1 +2023-10-24 17:52:45.432554264+00:00,1 +2023-10-24 17:52:45.558560647+00:00,1 +2023-10-24 17:52:45.684792202+00:00,1 +2023-10-24 17:52:45.811519207+00:00,1 +2023-10-24 17:52:45.938099809+00:00,1 +2023-10-24 17:52:46.065033724+00:00,1 +2023-10-24 17:52:46.191487595+00:00,1 +2023-10-24 17:52:46.318057840+00:00,1 +2023-10-24 17:52:46.445210800+00:00,1 +2023-10-24 17:52:46.573221239+00:00,1 +2023-10-24 17:52:46.701250917+00:00,1 +2023-10-24 17:52:46.829010003+00:00,1 +2023-10-24 17:52:46.958405194+00:00,1 +2023-10-24 17:52:47.086859553+00:00,1 +2023-10-24 17:52:47.221464833+00:00,1 +2023-10-24 17:52:47.351479032+00:00,1 +2023-10-24 17:52:47.480162485+00:00,1 +2023-10-24 17:52:47.607815568+00:00,1 +2023-10-24 17:52:47.735948644+00:00,1 +2023-10-24 17:52:47.863101774+00:00,1 +2023-10-24 17:52:47.990138341+00:00,1 +2023-10-24 17:52:48.118596742+00:00,1 +2023-10-24 17:52:48.246685713+00:00,1 +2023-10-24 17:52:48.374239550+00:00,1 +2023-10-24 17:52:48.502573022+00:00,1 +2023-10-24 17:52:48.630468635+00:00,1 +2023-10-24 17:52:48.760197003+00:00,1 +2023-10-24 17:52:48.888628866+00:00,1 +2023-10-24 17:52:49.017171757+00:00,1 +2023-10-24 17:52:49.145651555+00:00,1 +2023-10-24 17:52:49.274532012+00:00,1 +2023-10-24 17:52:49.401803401+00:00,1 +2023-10-24 17:52:49.529396565+00:00,1 +2023-10-24 17:52:49.657079937+00:00,1 +2023-10-24 17:52:49.785704111+00:00,1 +2023-10-24 17:52:49.914000951+00:00,1 +2023-10-24 17:52:50.041430398+00:00,1 +2023-10-24 17:52:50.169054493+00:00,1 +2023-10-24 17:52:50.298318067+00:00,1 +2023-10-24 17:52:50.428201559+00:00,1 +2023-10-24 17:52:50.556490252+00:00,1 +2023-10-24 17:52:50.684342796+00:00,1 +2023-10-24 17:52:50.811883100+00:00,1 +2023-10-24 17:52:50.939406209+00:00,1 +2023-10-24 17:52:51.067713220+00:00,1 +2023-10-24 17:52:51.195260040+00:00,1 +2023-10-24 17:52:51.322271129+00:00,1 +2023-10-24 17:52:51.449574904+00:00,1 +2023-10-24 17:52:51.577568408+00:00,1 +2023-10-24 17:52:51.705416875+00:00,1 +2023-10-24 17:52:51.835558673+00:00,1 +2023-10-24 17:52:51.962920875+00:00,1 +2023-10-24 17:52:52.091144292+00:00,1 +2023-10-24 17:52:52.219200655+00:00,1 +2023-10-24 17:52:52.346812383+00:00,1 +2023-10-24 17:52:52.474354641+00:00,1 +2023-10-24 17:52:52.601632807+00:00,1 +2023-10-24 17:52:52.729560207+00:00,1 +2023-10-24 17:52:52.857248130+00:00,1 +2023-10-24 17:52:52.985790315+00:00,1 +2023-10-24 17:52:53.113242562+00:00,1 +2023-10-24 17:52:53.240921495+00:00,1 +2023-10-24 17:52:53.368384856+00:00,1 +2023-10-24 17:52:53.496168260+00:00,1 +2023-10-24 17:52:53.623920740+00:00,1 +2023-10-24 17:52:53.751961869+00:00,1 +2023-10-24 17:52:53.880114699+00:00,1 +2023-10-24 17:52:54.009592788+00:00,1 +2023-10-24 17:52:54.138504939+00:00,1 +2023-10-24 17:52:54.266378852+00:00,1 +2023-10-24 17:52:54.393124482+00:00,1 +2023-10-24 17:52:54.520899098+00:00,1 +2023-10-24 17:52:54.649258183+00:00,1 +2023-10-24 17:52:54.776797035+00:00,1 +2023-10-24 17:52:54.905150991+00:00,1 +2023-10-24 17:52:55.033871311+00:00,1 +2023-10-24 17:52:55.160735519+00:00,1 +2023-10-24 17:52:55.288099823+00:00,1 +2023-10-24 17:52:55.415548690+00:00,1 +2023-10-24 17:52:55.542842287+00:00,1 +2023-10-24 17:52:55.669410253+00:00,1 +2023-10-24 17:52:55.797477227+00:00,1 +2023-10-24 17:52:55.924565677+00:00,1 +2023-10-24 17:52:56.052181269+00:00,1 +2023-10-24 17:52:56.179179825+00:00,1 +2023-10-24 17:52:56.307054025+00:00,1 +2023-10-24 17:52:56.434829988+00:00,1 +2023-10-24 17:52:56.564708801+00:00,1 +2023-10-24 17:52:56.692153885+00:00,1 +2023-10-24 17:52:56.820488141+00:00,1 +2023-10-24 17:52:56.949250041+00:00,1 +2023-10-24 17:52:57.078050271+00:00,1 +2023-10-24 17:52:57.206514874+00:00,1 +2023-10-24 17:52:57.334072096+00:00,1 +2023-10-24 17:52:57.462771309+00:00,1 +2023-10-24 17:52:57.591109596+00:00,1 +2023-10-24 17:52:57.719051906+00:00,1 +2023-10-24 17:52:57.846731463+00:00,1 +2023-10-24 17:52:57.975694596+00:00,1 +2023-10-24 17:52:58.103727228+00:00,1 +2023-10-24 17:52:58.232752202+00:00,1 +2023-10-24 17:52:58.361728638+00:00,1 +2023-10-24 17:52:58.489677267+00:00,1 +2023-10-24 17:52:58.617436910+00:00,1 +2023-10-24 17:52:58.745973839+00:00,1 +2023-10-24 17:52:58.874270345+00:00,1 +2023-10-24 17:52:59.002015720+00:00,1 +2023-10-24 17:52:59.130708596+00:00,1 +2023-10-24 17:52:59.260623402+00:00,1 +2023-10-24 17:52:59.389002066+00:00,1 +2023-10-24 17:52:59.518115809+00:00,1 +2023-10-24 17:52:59.646241101+00:00,1 +2023-10-24 17:52:59.778099214+00:00,1 +2023-10-24 17:52:59.906938440+00:00,1 +2023-10-24 17:53:00.035366937+00:00,1 +2023-10-24 17:53:00.164094239+00:00,1 +2023-10-24 17:53:00.293906710+00:00,1 +2023-10-24 17:53:00.424547597+00:00,1 +2023-10-24 17:53:00.553215749+00:00,1 +2023-10-24 17:53:00.681376261+00:00,1 +2023-10-24 17:53:00.809419122+00:00,1 +2023-10-24 17:53:00.938785460+00:00,1 +2023-10-24 17:53:01.066904365+00:00,1 +2023-10-24 17:53:01.194746069+00:00,1 +2023-10-24 17:53:01.322710874+00:00,1 +2023-10-24 17:53:01.450475251+00:00,1 +2023-10-24 17:53:01.579243212+00:00,1 +2023-10-24 17:53:01.707180486+00:00,1 +2023-10-24 17:53:01.835383290+00:00,1 +2023-10-24 17:53:01.963231166+00:00,1 +2023-10-24 17:53:02.092415317+00:00,1 +2023-10-24 17:53:02.220230758+00:00,1 +2023-10-24 17:53:02.351086542+00:00,1 +2023-10-24 17:53:02.478766976+00:00,1 +2023-10-24 17:53:02.606473814+00:00,1 +2023-10-24 17:53:02.733507652+00:00,1 +2023-10-24 17:53:02.862665988+00:00,1 +2023-10-24 17:53:02.990499397+00:00,1 +2023-10-24 17:53:03.117928912+00:00,1 +2023-10-24 17:53:03.245181687+00:00,1 +2023-10-24 17:53:03.373296420+00:00,1 +2023-10-24 17:53:03.501661020+00:00,1 +2023-10-24 17:53:03.629512227+00:00,1 +2023-10-24 17:53:03.758555792+00:00,1 +2023-10-24 17:53:03.887194349+00:00,1 +2023-10-24 17:53:04.016113337+00:00,1 +2023-10-24 17:53:04.146052172+00:00,1 +2023-10-24 17:53:04.274774263+00:00,1 +2023-10-24 17:53:04.403012899+00:00,1 +2023-10-24 17:53:04.530715742+00:00,1 +2023-10-24 17:53:04.658094069+00:00,1 +2023-10-24 17:53:04.785828298+00:00,1 +2023-10-24 17:53:04.913677069+00:00,1 +2023-10-24 17:53:05.041018705+00:00,1 +2023-10-24 17:53:05.168321608+00:00,1 +2023-10-24 17:53:05.297121140+00:00,1 +2023-10-24 17:53:05.426126620+00:00,1 +2023-10-24 17:53:05.556171234+00:00,1 +2023-10-24 17:53:05.683896838+00:00,1 +2023-10-24 17:53:05.813146635+00:00,1 +2023-10-24 17:53:05.941877848+00:00,1 +2023-10-24 17:53:06.071272645+00:00,1 +2023-10-24 17:53:06.198702528+00:00,1 +2023-10-24 17:53:06.326886955+00:00,1 +2023-10-24 17:53:06.454952996+00:00,1 +2023-10-24 17:53:06.582582161+00:00,1 +2023-10-24 17:53:06.709928095+00:00,1 +2023-10-24 17:53:06.838035903+00:00,1 +2023-10-24 17:53:06.965831491+00:00,1 +2023-10-24 17:53:07.094717666+00:00,1 +2023-10-24 17:53:07.223411083+00:00,1 +2023-10-24 17:53:07.350596479+00:00,1 +2023-10-24 17:53:07.477739734+00:00,1 +2023-10-24 17:53:07.606657998+00:00,1 +2023-10-24 17:53:07.734194704+00:00,1 +2023-10-24 17:53:07.862770640+00:00,1 +2023-10-24 17:53:07.991973891+00:00,1 +2023-10-24 17:53:08.120134958+00:00,1 +2023-10-24 17:53:08.248889740+00:00,1 +2023-10-24 17:53:08.376624284+00:00,1 +2023-10-24 17:53:08.505299356+00:00,1 +2023-10-24 17:53:08.634432891+00:00,1 +2023-10-24 17:53:08.763659248+00:00,1 +2023-10-24 17:53:08.893401458+00:00,1 +2023-10-24 17:53:09.023671211+00:00,1 +2023-10-24 17:53:09.154376286+00:00,1 +2023-10-24 17:53:09.283503328+00:00,1 +2023-10-24 17:53:09.410270494+00:00,1 +2023-10-24 17:53:09.537192294+00:00,1 +2023-10-24 17:53:09.664189249+00:00,1 +2023-10-24 17:53:09.792443570+00:00,1 +2023-10-24 17:53:09.919889548+00:00,1 +2023-10-24 17:53:10.047620773+00:00,1 +2023-10-24 17:53:10.174882928+00:00,1 +2023-10-24 17:53:10.302537824+00:00,1 +2023-10-24 17:53:10.429896459+00:00,1 +2023-10-24 17:53:10.560282809+00:00,1 +2023-10-24 17:53:10.688236296+00:00,1 +2023-10-24 17:53:10.815344701+00:00,1 +2023-10-24 17:53:10.943211955+00:00,1 +2023-10-24 17:53:11.070626521+00:00,1 +2023-10-24 17:53:11.198824925+00:00,1 +2023-10-24 17:53:11.325786016+00:00,1 +2023-10-24 17:53:11.452503331+00:00,1 +2023-10-24 17:53:11.579742981+00:00,1 +2023-10-24 17:53:11.706523781+00:00,1 +2023-10-24 17:53:11.834251355+00:00,1 +2023-10-24 17:53:11.961432581+00:00,1 +2023-10-24 17:53:12.088642040+00:00,1 +2023-10-24 17:53:12.216355449+00:00,1 +2023-10-24 17:53:12.344132913+00:00,1 +2023-10-24 17:53:12.472720683+00:00,1 +2023-10-24 17:53:12.604369915+00:00,1 +2023-10-24 17:53:12.731475200+00:00,1 +2023-10-24 17:53:12.860289079+00:00,1 +2023-10-24 17:53:12.988489616+00:00,1 +2023-10-24 17:53:13.117358500+00:00,1 +2023-10-24 17:53:13.246131454+00:00,1 +2023-10-24 17:53:13.372781658+00:00,1 +2023-10-24 17:53:13.500910873+00:00,1 +2023-10-24 17:53:13.628646763+00:00,1 +2023-10-24 17:53:13.757403219+00:00,1 +2023-10-24 17:53:13.886076157+00:00,1 +2023-10-24 17:53:14.013594170+00:00,1 +2023-10-24 17:53:14.143184146+00:00,1 +2023-10-24 17:53:14.272352351+00:00,1 +2023-10-24 17:53:14.401552955+00:00,1 +2023-10-24 17:53:14.529455435+00:00,1 +2023-10-24 17:53:14.657414366+00:00,1 +2023-10-24 17:53:14.786045038+00:00,1 +2023-10-24 17:53:14.913800193+00:00,1 +2023-10-24 17:53:15.041684914+00:00,1 +2023-10-24 17:53:15.169123250+00:00,1 +2023-10-24 17:53:15.295343112+00:00,1 +2023-10-24 17:53:15.422383172+00:00,1 +2023-10-24 17:53:15.550091030+00:00,1 +2023-10-24 17:53:15.678455652+00:00,1 +2023-10-24 17:53:15.807458405+00:00,1 +2023-10-24 17:53:15.936951795+00:00,1 +2023-10-24 17:53:16.065175075+00:00,1 +2023-10-24 17:53:16.193261034+00:00,1 +2023-10-24 17:53:16.321057040+00:00,1 +2023-10-24 17:53:16.449707594+00:00,1 +2023-10-24 17:53:16.576804113+00:00,1 +2023-10-24 17:53:16.705124129+00:00,1 +2023-10-24 17:53:16.835146014+00:00,1 +2023-10-24 17:53:16.962904999+00:00,1 +2023-10-24 17:53:17.090818652+00:00,1 +2023-10-24 17:53:17.218487472+00:00,1 +2023-10-24 17:53:17.346591567+00:00,1 +2023-10-24 17:53:17.474392857+00:00,1 +2023-10-24 17:53:17.601816329+00:00,1 +2023-10-24 17:53:17.729353178+00:00,1 +2023-10-24 17:53:17.856727227+00:00,1 +2023-10-24 17:53:17.983859776+00:00,1 +2023-10-24 17:53:18.112960984+00:00,1 +2023-10-24 17:53:18.240648661+00:00,1 +2023-10-24 17:53:18.368213379+00:00,1 +2023-10-24 17:53:18.497170426+00:00,1 +2023-10-24 17:53:18.625866863+00:00,1 +2023-10-24 17:53:18.754245878+00:00,1 +2023-10-24 17:53:18.882066405+00:00,1 +2023-10-24 17:53:19.009823305+00:00,1 +2023-10-24 17:53:19.138086894+00:00,1 +2023-10-24 17:53:19.265203634+00:00,1 +2023-10-24 17:53:19.392827433+00:00,1 +2023-10-24 17:53:19.520052553+00:00,1 +2023-10-24 17:53:19.646975014+00:00,1 +2023-10-24 17:53:19.774778069+00:00,1 +2023-10-24 17:53:19.902569086+00:00,1 +2023-10-24 17:53:20.030239329+00:00,1 +2023-10-24 17:53:20.158232594+00:00,1 +2023-10-24 17:53:20.286965957+00:00,1 +2023-10-24 17:53:20.416109887+00:00,1 +2023-10-24 17:53:20.544898352+00:00,1 +2023-10-24 17:53:20.673167113+00:00,1 +2023-10-24 17:53:20.801577265+00:00,1 +2023-10-24 17:53:20.928803689+00:00,1 +2023-10-24 17:53:21.056227560+00:00,1 +2023-10-24 17:53:21.183185583+00:00,1 +2023-10-24 17:53:21.310537027+00:00,1 +2023-10-24 17:53:21.439112022+00:00,1 +2023-10-24 17:53:21.566988942+00:00,1 +2023-10-24 17:53:21.695516670+00:00,1 +2023-10-24 17:53:21.824240860+00:00,1 +2023-10-24 17:53:21.952303685+00:00,1 +2023-10-24 17:53:22.080069429+00:00,1 +2023-10-24 17:53:22.207712106+00:00,1 +2023-10-24 17:53:22.335883016+00:00,1 +2023-10-24 17:53:22.464359882+00:00,1 +2023-10-24 17:53:22.592154976+00:00,1 +2023-10-24 17:53:22.720090327+00:00,1 +2023-10-24 17:53:22.849320505+00:00,1 +2023-10-24 17:53:22.977403478+00:00,1 +2023-10-24 17:53:23.104821736+00:00,1 +2023-10-24 17:53:23.232281939+00:00,1 +2023-10-24 17:53:23.359219771+00:00,1 +2023-10-24 17:53:23.486578359+00:00,1 +2023-10-24 17:53:23.613291817+00:00,1 +2023-10-24 17:53:23.740306367+00:00,1 +2023-10-24 17:53:23.867675182+00:00,1 +2023-10-24 17:53:23.994660201+00:00,1 +2023-10-24 17:53:24.122359157+00:00,1 +2023-10-24 17:53:24.250105468+00:00,1 +2023-10-24 17:53:24.377989873+00:00,1 +2023-10-24 17:53:24.505469929+00:00,1 +2023-10-24 17:53:24.633238682+00:00,1 +2023-10-24 17:53:24.761458438+00:00,1 +2023-10-24 17:53:24.890844284+00:00,1 +2023-10-24 17:53:25.019089504+00:00,1 +2023-10-24 17:53:25.146854573+00:00,1 +2023-10-24 17:53:25.275552006+00:00,1 +2023-10-24 17:53:25.403114790+00:00,1 +2023-10-24 17:53:25.530490577+00:00,1 +2023-10-24 17:53:25.657525273+00:00,1 +2023-10-24 17:53:25.784771442+00:00,1 +2023-10-24 17:53:25.912759837+00:00,1 +2023-10-24 17:53:26.040248293+00:00,1 +2023-10-24 17:53:26.168276535+00:00,1 +2023-10-24 17:53:26.296217921+00:00,1 +2023-10-24 17:53:26.424150828+00:00,1 +2023-10-24 17:53:26.552002416+00:00,1 +2023-10-24 17:53:26.680392853+00:00,1 +2023-10-24 17:53:26.808415934+00:00,1 +2023-10-24 17:53:26.936615884+00:00,1 +2023-10-24 17:53:27.065121967+00:00,1 +2023-10-24 17:53:27.193421939+00:00,1 +2023-10-24 17:53:27.321595228+00:00,1 +2023-10-24 17:53:27.450084333+00:00,1 +2023-10-24 17:53:27.577806717+00:00,1 +2023-10-24 17:53:27.705988357+00:00,1 +2023-10-24 17:53:27.834380207+00:00,1 +2023-10-24 17:53:27.963721521+00:00,1 +2023-10-24 17:53:28.092086069+00:00,1 +2023-10-24 17:53:28.219177239+00:00,1 +2023-10-24 17:53:28.347127560+00:00,1 +2023-10-24 17:53:28.474066697+00:00,1 +2023-10-24 17:53:28.601221746+00:00,1 +2023-10-24 17:53:28.727819982+00:00,1 +2023-10-24 17:53:28.856001768+00:00,1 +2023-10-24 17:53:28.984043677+00:00,1 +2023-10-24 17:53:29.112637692+00:00,1 +2023-10-24 17:53:29.241064702+00:00,1 +2023-10-24 17:53:29.370111508+00:00,1 +2023-10-24 17:53:29.497586312+00:00,1 +2023-10-24 17:53:29.626637338+00:00,1 +2023-10-24 17:53:29.754122252+00:00,1 +2023-10-24 17:53:29.882086619+00:00,1 +2023-10-24 17:53:30.009546084+00:00,1 +2023-10-24 17:53:30.137718260+00:00,1 +2023-10-24 17:53:30.265796280+00:00,1 +2023-10-24 17:53:30.393697712+00:00,1 +2023-10-24 17:53:30.522734639+00:00,1 +2023-10-24 17:53:30.651753233+00:00,1 +2023-10-24 17:53:30.779584089+00:00,1 +2023-10-24 17:53:30.908451321+00:00,1 +2023-10-24 17:53:31.036661732+00:00,1 +2023-10-24 17:53:31.164780502+00:00,1 +2023-10-24 17:53:31.291500905+00:00,1 +2023-10-24 17:53:31.417594167+00:00,1 +2023-10-24 17:53:31.543984352+00:00,1 +2023-10-24 17:53:31.671629905+00:00,1 +2023-10-24 17:53:31.801644501+00:00,1 +2023-10-24 17:53:31.930365719+00:00,1 +2023-10-24 17:53:32.059314003+00:00,1 +2023-10-24 17:53:32.186999146+00:00,1 +2023-10-24 17:53:32.314070662+00:00,1 +2023-10-24 17:53:32.441253200+00:00,1 +2023-10-24 17:53:32.569168314+00:00,1 +2023-10-24 17:53:32.696777101+00:00,1 +2023-10-24 17:53:32.825027362+00:00,1 +2023-10-24 17:53:32.954289094+00:00,1 +2023-10-24 17:53:33.082452939+00:00,1 +2023-10-24 17:53:33.210549695+00:00,1 +2023-10-24 17:53:33.337763014+00:00,1 +2023-10-24 17:53:33.465441407+00:00,1 +2023-10-24 17:53:33.592488308+00:00,1 +2023-10-24 17:53:33.719508753+00:00,1 +2023-10-24 17:53:33.846192486+00:00,1 +2023-10-24 17:53:33.973442568+00:00,1 +2023-10-24 17:53:34.100358687+00:00,1 +2023-10-24 17:53:34.227701877+00:00,1 +2023-10-24 17:53:34.354829776+00:00,1 +2023-10-24 17:53:34.482084769+00:00,1 +2023-10-24 17:53:34.611044335+00:00,1 +2023-10-24 17:53:34.738069771+00:00,1 +2023-10-24 17:53:34.865789163+00:00,1 +2023-10-24 17:53:34.993408522+00:00,1 +2023-10-24 17:53:35.121177881+00:00,1 +2023-10-24 17:53:35.248496504+00:00,1 +2023-10-24 17:53:35.376619439+00:00,1 +2023-10-24 17:53:35.504534137+00:00,1 +2023-10-24 17:53:35.631981014+00:00,1 +2023-10-24 17:53:35.759675841+00:00,1 +2023-10-24 17:53:35.887953356+00:00,1 +2023-10-24 17:53:36.015561778+00:00,1 +2023-10-24 17:53:36.142891770+00:00,1 +2023-10-24 17:53:36.270502557+00:00,1 +2023-10-24 17:53:36.399172158+00:00,1 +2023-10-24 17:53:36.526800915+00:00,1 +2023-10-24 17:53:36.654035042+00:00,1 +2023-10-24 17:53:36.782239851+00:00,1 +2023-10-24 17:53:36.909925179+00:00,1 +2023-10-24 17:53:37.037806964+00:00,1 +2023-10-24 17:53:37.165344144+00:00,1 +2023-10-24 17:53:37.293513629+00:00,1 +2023-10-24 17:53:37.422361415+00:00,1 +2023-10-24 17:53:37.550590955+00:00,1 +2023-10-24 17:53:37.677134455+00:00,1 +2023-10-24 17:53:37.804016197+00:00,1 +2023-10-24 17:53:37.932161777+00:00,1 +2023-10-24 17:53:38.060333490+00:00,1 +2023-10-24 17:53:38.188802578+00:00,1 +2023-10-24 17:53:38.316116084+00:00,1 +2023-10-24 17:53:38.445790728+00:00,1 +2023-10-24 17:53:38.575583531+00:00,1 +2023-10-24 17:53:38.703999306+00:00,1 +2023-10-24 17:53:38.832919956+00:00,1 +2023-10-24 17:53:38.962392866+00:00,1 +2023-10-24 17:53:39.091088408+00:00,1 +2023-10-24 17:53:39.219211026+00:00,1 +2023-10-24 17:53:39.347623083+00:00,1 +2023-10-24 17:53:39.476159351+00:00,1 +2023-10-24 17:53:39.604079826+00:00,1 +2023-10-24 17:53:39.731414726+00:00,1 +2023-10-24 17:53:39.860852566+00:00,1 +2023-10-24 17:53:39.988771083+00:00,1 +2023-10-24 17:53:40.116590857+00:00,1 +2023-10-24 17:53:40.244541081+00:00,1 +2023-10-24 17:53:40.372155128+00:00,1 +2023-10-24 17:53:40.499880999+00:00,1 +2023-10-24 17:53:40.628244056+00:00,1 +2023-10-24 17:53:40.757706261+00:00,1 +2023-10-24 17:53:40.887317899+00:00,1 +2023-10-24 17:53:41.017782585+00:00,1 +2023-10-24 17:53:41.147659445+00:00,1 +2023-10-24 17:53:41.275889234+00:00,1 +2023-10-24 17:53:41.405279482+00:00,1 +2023-10-24 17:53:41.533533162+00:00,1 +2023-10-24 17:53:41.661295415+00:00,1 +2023-10-24 17:53:41.789618006+00:00,1 +2023-10-24 17:53:41.917753122+00:00,1 +2023-10-24 17:53:42.045149546+00:00,1 +2023-10-24 17:53:42.173525177+00:00,1 +2023-10-24 17:53:42.302943127+00:00,1 +2023-10-24 17:53:42.431416182+00:00,1 +2023-10-24 17:53:42.560753218+00:00,1 +2023-10-24 17:53:42.689645179+00:00,1 +2023-10-24 17:53:42.819567238+00:00,1 +2023-10-24 17:53:42.950501497+00:00,1 +2023-10-24 17:53:43.080251277+00:00,1 +2023-10-24 17:53:43.208796831+00:00,1 +2023-10-24 17:53:43.338269817+00:00,1 +2023-10-24 17:53:43.466328724+00:00,1 +2023-10-24 17:53:43.595051439+00:00,1 +2023-10-24 17:53:43.722754584+00:00,1 +2023-10-24 17:53:43.851644500+00:00,1 +2023-10-24 17:53:43.981097959+00:00,1 +2023-10-24 17:53:44.109613306+00:00,1 +2023-10-24 17:53:44.237478947+00:00,1 +2023-10-24 17:53:44.365421129+00:00,1 +2023-10-24 17:53:44.493975779+00:00,1 +2023-10-24 17:53:44.621538356+00:00,1 +2023-10-24 17:53:44.749935427+00:00,1 +2023-10-24 17:53:44.878916619+00:00,1 +2023-10-24 17:53:45.007616748+00:00,1 +2023-10-24 17:53:45.135414114+00:00,1 +2023-10-24 17:53:45.263935278+00:00,1 +2023-10-24 17:53:45.392281276+00:00,1 +2023-10-24 17:53:45.519276323+00:00,1 +2023-10-24 17:53:45.647004171+00:00,1 +2023-10-24 17:53:45.774655246+00:00,1 +2023-10-24 17:53:45.903508520+00:00,1 +2023-10-24 17:53:46.031457883+00:00,1 +2023-10-24 17:53:46.159407884+00:00,1 +2023-10-24 17:53:46.287249296+00:00,1 +2023-10-24 17:53:46.414995544+00:00,1 +2023-10-24 17:53:46.544390462+00:00,1 +2023-10-24 17:53:46.671924598+00:00,1 +2023-10-24 17:53:46.800297593+00:00,1 +2023-10-24 17:53:46.928151139+00:00,1 +2023-10-24 17:53:47.055909409+00:00,1 +2023-10-24 17:53:47.182650063+00:00,1 +2023-10-24 17:53:47.310029292+00:00,1 +2023-10-24 17:53:47.436797687+00:00,1 +2023-10-24 17:53:47.563586111+00:00,1 +2023-10-24 17:53:47.691348993+00:00,1 +2023-10-24 17:53:47.820061628+00:00,1 +2023-10-24 17:53:47.948042487+00:00,1 +2023-10-24 17:53:48.075452965+00:00,1 +2023-10-24 17:53:48.203120748+00:00,1 +2023-10-24 17:53:48.330485807+00:00,1 +2023-10-24 17:53:48.458271922+00:00,1 +2023-10-24 17:53:48.588781061+00:00,1 +2023-10-24 17:53:48.716555111+00:00,1 +2023-10-24 17:53:48.844996168+00:00,1 +2023-10-24 17:53:48.973650276+00:00,1 +2023-10-24 17:53:49.103245083+00:00,1 +2023-10-24 17:53:49.231785911+00:00,1 +2023-10-24 17:53:49.359428480+00:00,1 +2023-10-24 17:53:49.487642735+00:00,1 +2023-10-24 17:53:49.616169531+00:00,1 +2023-10-24 17:53:49.744173381+00:00,1 +2023-10-24 17:53:49.872425363+00:00,1 +2023-10-24 17:53:50.000932774+00:00,1 +2023-10-24 17:53:50.129720044+00:00,1 +2023-10-24 17:53:50.257625520+00:00,1 +2023-10-24 17:53:50.385600085+00:00,1 +2023-10-24 17:53:50.513222702+00:00,1 +2023-10-24 17:53:50.640801184+00:00,1 +2023-10-24 17:53:50.768593489+00:00,1 +2023-10-24 17:53:50.896974297+00:00,1 +2023-10-24 17:53:51.024698216+00:00,1 +2023-10-24 17:53:51.153148709+00:00,1 +2023-10-24 17:53:51.281049797+00:00,1 +2023-10-24 17:53:51.408881830+00:00,1 +2023-10-24 17:53:51.536891798+00:00,1 +2023-10-24 17:53:51.665050520+00:00,1 +2023-10-24 17:53:51.793052906+00:00,1 +2023-10-24 17:53:51.920881180+00:00,1 +2023-10-24 17:53:52.048526344+00:00,1 +2023-10-24 17:53:52.176860281+00:00,1 +2023-10-24 17:53:52.304132578+00:00,1 +2023-10-24 17:53:52.432232607+00:00,1 +2023-10-24 17:53:52.560311017+00:00,1 +2023-10-24 17:53:52.689389537+00:00,1 +2023-10-24 17:53:52.818383006+00:00,1 +2023-10-24 17:53:52.945935710+00:00,1 +2023-10-24 17:53:53.074585148+00:00,1 +2023-10-24 17:53:53.202618305+00:00,1 +2023-10-24 17:53:53.329221151+00:00,1 +2023-10-24 17:53:53.456449917+00:00,1 +2023-10-24 17:53:53.584288560+00:00,1 +2023-10-24 17:53:53.712224262+00:00,1 +2023-10-24 17:53:53.840602037+00:00,1 +2023-10-24 17:53:53.969744193+00:00,1 +2023-10-24 17:53:54.097081934+00:00,1 +2023-10-24 17:53:54.224537387+00:00,1 +2023-10-24 17:53:54.352173054+00:00,1 +2023-10-24 17:53:54.480946094+00:00,1 +2023-10-24 17:53:54.608940963+00:00,1 +2023-10-24 17:53:54.736514062+00:00,1 +2023-10-24 17:53:54.864500668+00:00,1 +2023-10-24 17:53:54.993925338+00:00,1 +2023-10-24 17:53:55.121447612+00:00,1 +2023-10-24 17:53:55.250268195+00:00,1 +2023-10-24 17:53:55.378421464+00:00,1 +2023-10-24 17:53:55.506623921+00:00,1 +2023-10-24 17:53:55.635377126+00:00,1 +2023-10-24 17:53:55.763564212+00:00,1 +2023-10-24 17:53:55.893024902+00:00,1 +2023-10-24 17:53:56.021467955+00:00,1 +2023-10-24 17:53:56.149561286+00:00,1 +2023-10-24 17:53:56.278878038+00:00,1 +2023-10-24 17:53:56.406514014+00:00,1 +2023-10-24 17:53:56.533860370+00:00,1 +2023-10-24 17:53:56.661717951+00:00,1 +2023-10-24 17:53:56.790642363+00:00,1 +2023-10-24 17:53:56.918050862+00:00,1 +2023-10-24 17:53:57.045981669+00:00,1 +2023-10-24 17:53:57.173515200+00:00,1 +2023-10-24 17:53:57.300346514+00:00,1 +2023-10-24 17:53:57.428903804+00:00,1 +2023-10-24 17:53:57.555721965+00:00,1 +2023-10-24 17:53:57.682572423+00:00,1 +2023-10-24 17:53:57.811077380+00:00,1 +2023-10-24 17:53:57.939440120+00:00,1 +2023-10-24 17:53:58.067410647+00:00,1 +2023-10-24 17:53:58.195019490+00:00,1 +2023-10-24 17:53:58.322083332+00:00,1 +2023-10-24 17:53:58.449802131+00:00,1 +2023-10-24 17:53:58.576642995+00:00,1 +2023-10-24 17:53:58.704636377+00:00,1 +2023-10-24 17:53:58.833565339+00:00,1 +2023-10-24 17:53:58.960390223+00:00,1 +2023-10-24 17:53:59.088615515+00:00,1 +2023-10-24 17:53:59.216304226+00:00,1 +2023-10-24 17:53:59.344503887+00:00,1 +2023-10-24 17:53:59.473701242+00:00,1 +2023-10-24 17:53:59.601992062+00:00,1 +2023-10-24 17:53:59.731330395+00:00,1 +2023-10-24 17:53:59.859640864+00:00,1 +2023-10-24 17:53:59.987690507+00:00,1 +2023-10-24 17:54:00.114612173+00:00,1 +2023-10-24 17:54:00.241531122+00:00,1 +2023-10-24 17:54:00.369922104+00:00,1 +2023-10-24 17:54:00.497823740+00:00,1 +2023-10-24 17:54:00.626716618+00:00,1 +2023-10-24 17:54:00.754450058+00:00,1 +2023-10-24 17:54:00.882198618+00:00,1 +2023-10-24 17:54:01.010421384+00:00,1 +2023-10-24 17:54:01.140369547+00:00,1 +2023-10-24 17:54:01.267856879+00:00,1 +2023-10-24 17:54:01.396088895+00:00,1 +2023-10-24 17:54:01.523407262+00:00,1 +2023-10-24 17:54:01.652984611+00:00,1 +2023-10-24 17:54:01.780804814+00:00,1 +2023-10-24 17:54:01.909310046+00:00,1 +2023-10-24 17:54:02.037539068+00:00,1 +2023-10-24 17:54:02.165700954+00:00,1 +2023-10-24 17:54:02.293580234+00:00,1 +2023-10-24 17:54:02.420822421+00:00,1 +2023-10-24 17:54:02.547750458+00:00,1 +2023-10-24 17:54:02.674432558+00:00,1 +2023-10-24 17:54:02.801737104+00:00,1 +2023-10-24 17:54:02.928631099+00:00,1 +2023-10-24 17:54:03.056938168+00:00,1 +2023-10-24 17:54:03.185134616+00:00,1 +2023-10-24 17:54:03.313345655+00:00,1 +2023-10-24 17:54:03.441011083+00:00,1 +2023-10-24 17:54:03.569779506+00:00,1 +2023-10-24 17:54:03.697428337+00:00,1 +2023-10-24 17:54:03.825620580+00:00,1 +2023-10-24 17:54:03.954581360+00:00,1 +2023-10-24 17:54:04.081865978+00:00,1 +2023-10-24 17:54:04.209506457+00:00,1 +2023-10-24 17:54:04.337297890+00:00,1 +2023-10-24 17:54:04.465522443+00:00,1 +2023-10-24 17:54:04.594114750+00:00,1 +2023-10-24 17:54:04.722027561+00:00,1 +2023-10-24 17:54:04.850000427+00:00,1 +2023-10-24 17:54:04.977041434+00:00,1 +2023-10-24 17:54:05.106790852+00:00,1 +2023-10-24 17:54:05.234410073+00:00,1 +2023-10-24 17:54:05.361283376+00:00,1 +2023-10-24 17:54:05.488694917+00:00,1 +2023-10-24 17:54:05.617133657+00:00,1 +2023-10-24 17:54:05.744580410+00:00,1 +2023-10-24 17:54:05.871675376+00:00,1 +2023-10-24 17:54:05.998804622+00:00,1 +2023-10-24 17:54:06.126475687+00:00,1 +2023-10-24 17:54:06.254012156+00:00,1 +2023-10-24 17:54:06.381828600+00:00,1 +2023-10-24 17:54:06.509896956+00:00,1 +2023-10-24 17:54:06.638365691+00:00,1 +2023-10-24 17:54:06.766100815+00:00,1 +2023-10-24 17:54:06.893687086+00:00,1 +2023-10-24 17:54:07.021687099+00:00,1 +2023-10-24 17:54:07.149889698+00:00,1 +2023-10-24 17:54:07.277454346+00:00,1 +2023-10-24 17:54:07.404208650+00:00,1 +2023-10-24 17:54:07.531345634+00:00,1 +2023-10-24 17:54:07.659586951+00:00,1 +2023-10-24 17:54:07.788114792+00:00,1 +2023-10-24 17:54:07.916267470+00:00,1 +2023-10-24 17:54:08.044402011+00:00,1 +2023-10-24 17:54:08.172387887+00:00,1 +2023-10-24 17:54:08.300405061+00:00,1 +2023-10-24 17:54:08.426978637+00:00,1 +2023-10-24 17:54:08.554737031+00:00,1 +2023-10-24 17:54:08.681366125+00:00,1 +2023-10-24 17:54:08.808363061+00:00,1 +2023-10-24 17:54:08.936385101+00:00,1 +2023-10-24 17:54:09.063870639+00:00,1 +2023-10-24 17:54:09.191923350+00:00,1 +2023-10-24 17:54:09.319957478+00:00,1 +2023-10-24 17:54:09.447931503+00:00,1 +2023-10-24 17:54:09.575971389+00:00,1 +2023-10-24 17:54:09.704706838+00:00,1 +2023-10-24 17:54:09.832700369+00:00,1 +2023-10-24 17:54:09.961594706+00:00,1 +2023-10-24 17:54:10.089572577+00:00,1 +2023-10-24 17:54:10.217081172+00:00,1 +2023-10-24 17:54:10.345568287+00:00,1 +2023-10-24 17:54:10.474015065+00:00,1 +2023-10-24 17:54:10.602259862+00:00,1 +2023-10-24 17:54:10.729600589+00:00,1 +2023-10-24 17:54:10.860271349+00:00,1 +2023-10-24 17:54:10.989678728+00:00,1 +2023-10-24 17:54:11.117308274+00:00,1 +2023-10-24 17:54:11.245371947+00:00,1 +2023-10-24 17:54:11.373280104+00:00,1 +2023-10-24 17:54:11.501257492+00:00,1 +2023-10-24 17:54:11.628250790+00:00,1 +2023-10-24 17:54:11.756007335+00:00,1 +2023-10-24 17:54:11.884427529+00:00,1 +2023-10-24 17:54:12.011413426+00:00,1 +2023-10-24 17:54:12.138937519+00:00,1 +2023-10-24 17:54:12.266427278+00:00,1 +2023-10-24 17:54:12.394105294+00:00,1 +2023-10-24 17:54:12.521913500+00:00,1 +2023-10-24 17:54:12.649494368+00:00,1 +2023-10-24 17:54:12.777860766+00:00,1 +2023-10-24 17:54:12.905882407+00:00,1 +2023-10-24 17:54:13.032910345+00:00,1 +2023-10-24 17:54:13.160516604+00:00,1 +2023-10-24 17:54:13.287714621+00:00,1 +2023-10-24 17:54:13.415853879+00:00,1 +2023-10-24 17:54:13.544401462+00:00,1 +2023-10-24 17:54:16.787795690+00:00,1 +2023-10-24 17:54:16.912382435+00:00,1 +2023-10-24 17:54:17.037306996+00:00,0 +2023-10-24 17:54:19.049646664+00:00,1 +2023-10-24 17:54:19.175048615+00:00,1 +2023-10-24 17:54:19.300506484+00:00,1 +2023-10-24 17:54:19.426596818+00:00,1 +2023-10-24 17:54:19.552271082+00:00,1 +2023-10-24 17:54:19.678232706+00:00,1 +2023-10-24 17:54:19.804285127+00:00,1 +2023-10-24 17:54:19.929548570+00:00,1 +2023-10-24 17:54:20.055672972+00:00,1 +2023-10-24 17:54:20.180674447+00:00,1 +2023-10-24 17:54:20.306680149+00:00,1 +2023-10-24 17:54:20.431492321+00:00,1 +2023-10-24 17:54:20.557084529+00:00,1 +2023-10-24 17:54:20.682983619+00:00,1 +2023-10-24 17:54:20.809144282+00:00,1 +2023-10-24 17:54:20.934820612+00:00,1 +2023-10-24 17:54:21.060358620+00:00,1 +2023-10-24 17:54:21.186875724+00:00,1 +2023-10-24 17:54:21.312773812+00:00,1 +2023-10-24 17:54:21.437760273+00:00,1 +2023-10-24 17:54:21.563717574+00:00,1 +2023-10-24 17:54:21.690000815+00:00,1 +2023-10-24 17:54:21.816320532+00:00,1 +2023-10-24 17:54:21.941670339+00:00,1 +2023-10-24 17:54:22.066497562+00:00,1 +2023-10-24 17:54:22.192138853+00:00,1 +2023-10-24 17:54:22.317172628+00:00,1 +2023-10-24 17:54:22.441498225+00:00,1 +2023-10-24 17:54:23.583083122+00:00,1 +2023-10-24 17:54:23.708875717+00:00,1 +2023-10-24 17:54:23.834219669+00:00,1 +2023-10-24 17:54:23.959329293+00:00,1 +2023-10-24 17:54:24.085802524+00:00,1 +2023-10-24 17:54:24.212130491+00:00,1 +2023-10-24 17:54:25.343492190+00:00,1 +2023-10-24 17:54:25.469808524+00:00,1 +2023-10-24 17:54:25.595921465+00:00,1 +2023-10-24 17:54:25.722251914+00:00,1 +2023-10-24 17:54:25.848655623+00:00,1 +2023-10-24 17:54:25.974711129+00:00,1 +2023-10-24 17:54:26.101304538+00:00,1 +2023-10-24 17:54:26.227813420+00:00,1 +2023-10-24 17:54:26.354285059+00:00,1 +2023-10-24 17:54:26.480279230+00:00,1 +2023-10-24 17:54:26.605751376+00:00,1 +2023-10-24 17:54:26.731913560+00:00,1 +2023-10-24 17:54:26.858040991+00:00,1 +2023-10-24 17:54:26.984231233+00:00,1 +2023-10-24 17:54:27.110359073+00:00,1 +2023-10-24 17:54:27.236399027+00:00,1 +2023-10-24 17:54:27.361958228+00:00,1 +2023-10-24 17:54:27.486828294+00:00,1 +2023-10-24 17:54:27.612418929+00:00,1 +2023-10-24 17:54:27.738502259+00:00,1 +2023-10-24 17:54:27.865210588+00:00,1 +2023-10-24 17:54:27.990143194+00:00,1 +2023-10-24 17:54:28.116228468+00:00,1 +2023-10-24 17:54:28.242481126+00:00,1 +2023-10-24 17:54:28.367980223+00:00,1 +2023-10-24 17:54:28.494799579+00:00,1 +2023-10-24 17:54:28.620329889+00:00,1 +2023-10-24 17:54:28.748392265+00:00,1 +2023-10-24 17:54:28.875130047+00:00,1 +2023-10-24 17:54:29.000870610+00:00,1 +2023-10-24 17:54:29.129584217+00:00,1 +2023-10-24 17:54:29.258918299+00:00,1 +2023-10-24 17:54:29.386231641+00:00,1 +2023-10-24 17:54:29.514805357+00:00,1 +2023-10-24 17:54:29.641747779+00:00,1 +2023-10-24 17:54:29.769610711+00:00,1 +2023-10-24 17:54:29.896303739+00:00,1 +2023-10-24 17:54:30.024124153+00:00,1 +2023-10-24 17:54:30.151891427+00:00,1 +2023-10-24 17:54:30.279756997+00:00,1 +2023-10-24 17:54:30.407240916+00:00,1 +2023-10-24 17:54:30.535438635+00:00,1 +2023-10-24 17:54:30.663758702+00:00,1 +2023-10-24 17:54:30.791907045+00:00,1 +2023-10-24 17:54:30.920064731+00:00,1 +2023-10-24 17:54:31.046954413+00:00,1 +2023-10-24 17:54:31.174385969+00:00,1 +2023-10-24 17:54:31.302276495+00:00,1 +2023-10-24 17:54:31.430159868+00:00,1 +2023-10-24 17:54:31.558900658+00:00,1 +2023-10-24 17:54:31.686393705+00:00,1 +2023-10-24 17:54:31.814463275+00:00,1 +2023-10-24 17:54:31.942569827+00:00,1 +2023-10-24 17:54:32.070216132+00:00,1 +2023-10-24 17:54:32.197965989+00:00,1 +2023-10-24 17:54:32.325620156+00:00,1 +2023-10-24 17:54:32.453613963+00:00,1 +2023-10-24 17:54:32.580702728+00:00,1 +2023-10-24 17:54:32.707962179+00:00,1 +2023-10-24 17:54:32.834845510+00:00,1 +2023-10-24 17:54:32.962655318+00:00,1 +2023-10-24 17:54:33.089507801+00:00,1 +2023-10-24 17:54:33.216867970+00:00,1 +2023-10-24 17:54:33.344562203+00:00,1 +2023-10-24 17:54:33.471948400+00:00,1 +2023-10-24 17:54:33.599626297+00:00,1 +2023-10-24 17:54:33.730068340+00:00,1 +2023-10-24 17:54:33.858746683+00:00,1 +2023-10-24 17:54:33.987010504+00:00,1 +2023-10-24 17:54:34.116228532+00:00,1 +2023-10-24 17:54:34.244700162+00:00,1 +2023-10-24 17:54:34.372377923+00:00,1 +2023-10-24 17:54:34.502402844+00:00,1 +2023-10-24 17:54:34.630653736+00:00,1 +2023-10-24 17:54:34.757457684+00:00,1 +2023-10-24 17:54:34.885500218+00:00,1 +2023-10-24 17:54:35.013423515+00:00,1 +2023-10-24 17:54:35.142123573+00:00,1 +2023-10-24 17:54:35.269839925+00:00,1 +2023-10-24 17:54:35.398226710+00:00,1 +2023-10-24 17:54:35.528246339+00:00,1 +2023-10-24 17:54:35.655951701+00:00,1 +2023-10-24 17:54:35.784851970+00:00,1 +2023-10-24 17:54:35.913255343+00:00,1 +2023-10-24 17:54:36.040125777+00:00,1 +2023-10-24 17:54:36.168054185+00:00,1 +2023-10-24 17:54:36.294847141+00:00,1 +2023-10-24 17:54:36.423404225+00:00,1 +2023-10-24 17:54:36.551367201+00:00,1 +2023-10-24 17:54:36.678644692+00:00,1 +2023-10-24 17:54:36.807138250+00:00,1 +2023-10-24 17:54:36.936504704+00:00,1 +2023-10-24 17:54:37.065191942+00:00,1 +2023-10-24 17:54:37.192359315+00:00,1 +2023-10-24 17:54:37.320568557+00:00,1 +2023-10-24 17:54:37.448513069+00:00,1 +2023-10-24 17:54:37.576357801+00:00,1 +2023-10-24 17:54:37.702514774+00:00,1 +2023-10-24 17:54:37.830982869+00:00,1 +2023-10-24 17:54:37.958731002+00:00,1 +2023-10-24 17:54:38.087696759+00:00,1 +2023-10-24 17:54:38.214740798+00:00,1 +2023-10-24 17:54:38.342865925+00:00,1 +2023-10-24 17:54:38.470686466+00:00,1 +2023-10-24 17:54:38.598012879+00:00,1 +2023-10-24 17:54:38.728514884+00:00,1 +2023-10-24 17:54:38.855160484+00:00,1 +2023-10-24 17:54:38.983916236+00:00,1 +2023-10-24 17:54:39.108978417+00:00,1 +2023-10-24 17:54:39.233390443+00:00,1 +2023-10-24 17:54:39.358047113+00:00,1 +2023-10-24 17:54:40.511070661+00:00,1 +2023-10-24 17:54:40.636810743+00:00,1 +2023-10-24 17:54:40.761796017+00:00,1 +2023-10-24 17:54:40.886316929+00:00,1 +2023-10-24 17:54:41.011208148+00:00,1 +2023-10-24 17:54:41.136181566+00:00,1 +2023-10-24 17:54:41.261278892+00:00,1 +2023-10-24 17:54:41.386003683+00:00,1 +2023-10-24 17:54:41.510574066+00:00,1 +2023-10-24 17:54:41.635710123+00:00,1 +2023-10-24 17:54:41.760835698+00:00,1 +2023-10-24 17:54:41.885970042+00:00,1 +2023-10-24 17:54:42.010751558+00:00,1 +2023-10-24 17:54:42.135542287+00:00,1 +2023-10-24 17:54:42.260890483+00:00,1 +2023-10-24 17:54:42.385373749+00:00,1 +2023-10-24 17:54:42.509986643+00:00,0 +2023-10-24 17:54:44.522933557+00:00,1 +2023-10-24 17:54:44.649214684+00:00,1 +2023-10-24 17:54:44.776595574+00:00,1 +2023-10-24 17:54:44.902338854+00:00,1 +2023-10-24 17:54:45.027544800+00:00,1 +2023-10-24 17:54:45.153218532+00:00,0 +2023-10-24 17:54:47.167053974+00:00,0 +2023-10-24 17:54:49.179917365+00:00,1 +2023-10-24 17:54:49.304846635+00:00,1 +2023-10-24 17:54:49.430859114+00:00,1 +2023-10-24 17:54:49.556042795+00:00,1 +2023-10-24 17:54:49.681533358+00:00,1 +2023-10-24 17:54:49.807517726+00:00,1 +2023-10-24 17:54:49.933781759+00:00,1 +2023-10-24 17:54:50.060246082+00:00,1 +2023-10-24 17:54:50.186467435+00:00,0 +2023-10-24 17:54:52.199414557+00:00,1 +2023-10-24 17:54:52.325068640+00:00,1 +2023-10-24 17:54:52.450814186+00:00,1 +2023-10-24 17:54:53.598493712+00:00,1 +2023-10-24 17:54:53.724040029+00:00,1 +2023-10-24 17:54:53.849673720+00:00,1 +2023-10-24 17:54:53.974839153+00:00,1 +2023-10-24 17:54:54.100684552+00:00,1 +2023-10-24 17:54:54.225506334+00:00,1 +2023-10-24 17:54:54.350971910+00:00,1 +2023-10-24 17:54:54.477396290+00:00,1 +2023-10-24 17:54:54.603555449+00:00,1 +2023-10-24 17:54:54.731143324+00:00,1 +2023-10-24 17:54:54.859285960+00:00,1 +2023-10-24 17:54:54.987202259+00:00,1 +2023-10-24 17:54:55.116494905+00:00,1 +2023-10-24 17:54:55.244725899+00:00,1 +2023-10-24 17:54:55.372156412+00:00,1 +2023-10-24 17:54:55.499792810+00:00,1 +2023-10-24 17:54:55.626654413+00:00,1 +2023-10-24 17:54:55.754774066+00:00,1 +2023-10-24 17:54:55.881493908+00:00,1 +2023-10-24 17:54:56.010012310+00:00,1 +2023-10-24 17:54:56.138165631+00:00,1 +2023-10-24 17:54:56.266942252+00:00,1 +2023-10-24 17:54:56.393573479+00:00,1 +2023-10-24 17:54:56.521771733+00:00,1 +2023-10-24 17:54:56.650429561+00:00,1 +2023-10-24 17:54:56.779410327+00:00,1 +2023-10-24 17:54:56.907011540+00:00,1 +2023-10-24 17:54:57.035043184+00:00,1 +2023-10-24 17:54:57.162569464+00:00,1 +2023-10-24 17:54:57.291497114+00:00,1 +2023-10-24 17:54:57.419539413+00:00,1 +2023-10-24 17:54:57.550638457+00:00,1 +2023-10-24 17:54:57.678513873+00:00,1 +2023-10-24 17:54:57.806042905+00:00,1 +2023-10-24 17:54:57.933436460+00:00,1 +2023-10-24 17:54:58.061814969+00:00,1 +2023-10-24 17:54:58.189342399+00:00,1 +2023-10-24 17:54:58.316539051+00:00,1 +2023-10-24 17:54:58.444280363+00:00,1 +2023-10-24 17:54:58.571727999+00:00,1 +2023-10-24 17:54:58.699933075+00:00,1 +2023-10-24 17:54:58.827321681+00:00,1 +2023-10-24 17:54:58.955231705+00:00,1 +2023-10-24 17:54:59.083041434+00:00,1 +2023-10-24 17:54:59.210369976+00:00,1 +2023-10-24 17:54:59.338219749+00:00,1 +2023-10-24 17:54:59.465981750+00:00,1 +2023-10-24 17:54:59.594068334+00:00,1 +2023-10-24 17:54:59.723822582+00:00,1 +2023-10-24 17:54:59.851227764+00:00,1 +2023-10-24 17:54:59.978222696+00:00,1 +2023-10-24 17:55:00.105685512+00:00,1 +2023-10-24 17:55:00.234442846+00:00,1 +2023-10-24 17:55:00.361869297+00:00,1 +2023-10-24 17:55:00.490002547+00:00,1 +2023-10-24 17:55:00.617849808+00:00,1 +2023-10-24 17:55:00.745539254+00:00,1 +2023-10-24 17:55:00.873665218+00:00,1 +2023-10-24 17:55:01.001288987+00:00,1 +2023-10-24 17:55:01.128994554+00:00,1 +2023-10-24 17:55:01.256476742+00:00,1 +2023-10-24 17:55:01.383527371+00:00,1 +2023-10-24 17:55:01.512376648+00:00,1 +2023-10-24 17:55:01.640395605+00:00,1 +2023-10-24 17:55:01.769089059+00:00,1 +2023-10-24 17:55:01.896024612+00:00,1 +2023-10-24 17:55:02.024937726+00:00,1 +2023-10-24 17:55:02.152641851+00:00,1 +2023-10-24 17:55:02.280337666+00:00,1 +2023-10-24 17:55:02.409677486+00:00,1 +2023-10-24 17:55:02.537484101+00:00,1 +2023-10-24 17:55:02.665282397+00:00,1 +2023-10-24 17:55:02.794606313+00:00,1 +2023-10-24 17:55:02.923311238+00:00,1 +2023-10-24 17:55:03.051302523+00:00,1 +2023-10-24 17:55:03.179434989+00:00,1 +2023-10-24 17:55:03.306959019+00:00,1 +2023-10-24 17:55:03.434863575+00:00,1 +2023-10-24 17:55:03.563572039+00:00,1 +2023-10-24 17:55:03.691364735+00:00,1 +2023-10-24 17:55:03.818721047+00:00,1 +2023-10-24 17:55:03.945993758+00:00,1 +2023-10-24 17:55:04.073899185+00:00,1 +2023-10-24 17:55:04.201702793+00:00,1 +2023-10-24 17:55:04.330085736+00:00,1 +2023-10-24 17:55:04.458084096+00:00,1 +2023-10-24 17:55:04.585726855+00:00,1 +2023-10-24 17:55:04.713632796+00:00,1 +2023-10-24 17:55:04.841256198+00:00,1 +2023-10-24 17:55:04.969100214+00:00,1 +2023-10-24 17:55:05.096732267+00:00,1 +2023-10-24 17:55:05.224364714+00:00,1 +2023-10-24 17:55:05.352073247+00:00,1 +2023-10-24 17:55:05.480062162+00:00,1 +2023-10-24 17:55:05.608134139+00:00,1 +2023-10-24 17:55:05.736163146+00:00,1 +2023-10-24 17:55:05.864901272+00:00,1 +2023-10-24 17:55:05.992123547+00:00,1 +2023-10-24 17:55:06.120794650+00:00,1 +2023-10-24 17:55:06.247988499+00:00,1 +2023-10-24 17:55:06.376740941+00:00,1 +2023-10-24 17:55:06.505629092+00:00,1 +2023-10-24 17:55:06.633199585+00:00,1 +2023-10-24 17:55:06.760872847+00:00,1 +2023-10-24 17:55:06.889928962+00:00,1 +2023-10-24 17:55:07.018860845+00:00,1 +2023-10-24 17:55:07.148346369+00:00,1 +2023-10-24 17:55:07.277108697+00:00,1 +2023-10-24 17:55:07.404878556+00:00,1 +2023-10-24 17:55:07.534220831+00:00,1 +2023-10-24 17:55:07.662915348+00:00,1 +2023-10-24 17:55:07.790687954+00:00,1 +2023-10-24 17:55:07.919518120+00:00,1 +2023-10-24 17:55:08.048856454+00:00,1 +2023-10-24 17:55:08.176198474+00:00,1 +2023-10-24 17:55:08.304430793+00:00,1 +2023-10-24 17:55:08.434206117+00:00,1 +2023-10-24 17:55:08.563358459+00:00,1 +2023-10-24 17:55:08.691608672+00:00,1 +2023-10-24 17:55:08.821071811+00:00,1 +2023-10-24 17:55:08.948872714+00:00,1 +2023-10-24 17:55:09.077174694+00:00,1 +2023-10-24 17:55:09.207320439+00:00,1 +2023-10-24 17:55:09.335395899+00:00,1 +2023-10-24 17:55:09.463290558+00:00,1 +2023-10-24 17:55:09.591773546+00:00,1 +2023-10-24 17:55:09.720398677+00:00,1 +2023-10-24 17:55:09.850335948+00:00,1 +2023-10-24 17:55:09.977736615+00:00,1 +2023-10-24 17:55:10.105325892+00:00,1 +2023-10-24 17:55:10.235447343+00:00,1 +2023-10-24 17:55:10.363613112+00:00,1 +2023-10-24 17:55:10.492079150+00:00,1 +2023-10-24 17:55:10.619117770+00:00,1 +2023-10-24 17:55:10.747352120+00:00,1 +2023-10-24 17:55:10.875937804+00:00,1 +2023-10-24 17:55:11.007037881+00:00,1 +2023-10-24 17:55:11.135026658+00:00,1 +2023-10-24 17:55:11.263100587+00:00,1 +2023-10-24 17:55:11.391965843+00:00,1 +2023-10-24 17:55:11.520147943+00:00,1 +2023-10-24 17:55:11.648056888+00:00,1 +2023-10-24 17:55:11.775971213+00:00,1 +2023-10-24 17:55:11.903672007+00:00,1 +2023-10-24 17:55:12.032118688+00:00,1 +2023-10-24 17:55:12.160166528+00:00,1 +2023-10-24 17:55:12.287121508+00:00,1 +2023-10-24 17:55:12.413668552+00:00,1 +2023-10-24 17:55:12.541006527+00:00,1 +2023-10-24 17:55:12.667954382+00:00,1 +2023-10-24 17:55:12.795765266+00:00,1 +2023-10-24 17:55:12.923922871+00:00,1 +2023-10-24 17:55:13.051114073+00:00,1 +2023-10-24 17:55:13.178570209+00:00,1 +2023-10-24 17:55:13.306158204+00:00,1 +2023-10-24 17:55:13.433789581+00:00,1 +2023-10-24 17:55:13.561429772+00:00,1 +2023-10-24 17:55:13.688896573+00:00,1 +2023-10-24 17:55:13.816727647+00:00,1 +2023-10-24 17:55:13.943488645+00:00,1 +2023-10-24 17:55:14.072004753+00:00,1 +2023-10-24 17:55:14.199060639+00:00,1 +2023-10-24 17:55:14.326625055+00:00,1 +2023-10-24 17:55:14.454542253+00:00,1 +2023-10-24 17:55:14.581189701+00:00,1 +2023-10-24 17:55:14.708061250+00:00,1 +2023-10-24 17:55:14.835508324+00:00,1 +2023-10-24 17:55:14.963339901+00:00,1 +2023-10-24 17:55:15.091660561+00:00,1 +2023-10-24 17:55:15.219823289+00:00,1 +2023-10-24 17:55:15.347874416+00:00,1 +2023-10-24 17:55:15.472205113+00:00,1 +2023-10-24 17:55:15.597270376+00:00,1 +2023-10-24 17:55:15.721870533+00:00,1 +2023-10-24 17:55:15.847302606+00:00,1 +2023-10-24 17:55:15.972286851+00:00,1 +2023-10-24 17:55:16.097043728+00:00,1 +2023-10-24 17:55:17.246344466+00:00,1 +2023-10-24 17:55:17.371765597+00:00,1 +2023-10-24 17:55:17.496348859+00:00,1 +2023-10-24 17:55:17.621143903+00:00,1 +2023-10-24 17:55:17.745793887+00:00,1 +2023-10-24 17:55:17.870950650+00:00,1 +2023-10-24 17:55:17.995322503+00:00,1 +2023-10-24 17:55:19.174374359+00:00,1 +2023-10-24 17:55:19.299261726+00:00,1 +2023-10-24 17:55:19.424243449+00:00,1 +2023-10-24 17:55:19.550004009+00:00,1 +2023-10-24 17:55:19.676577790+00:00,1 +2023-10-24 17:55:19.803325459+00:00,1 +2023-10-24 17:55:19.928059627+00:00,1 +2023-10-24 17:55:20.052704389+00:00,1 +2023-10-24 17:55:20.177265032+00:00,1 +2023-10-24 17:55:20.302044798+00:00,1 +2023-10-24 17:55:20.427400415+00:00,1 +2023-10-24 17:55:20.552636031+00:00,1 +2023-10-24 17:55:20.677887332+00:00,1 +2023-10-24 17:55:20.803477514+00:00,1 +2023-10-24 17:55:20.928578249+00:00,1 +2023-10-24 17:55:21.054935808+00:00,1 +2023-10-24 17:55:21.180211239+00:00,1 +2023-10-24 17:55:21.304924885+00:00,1 +2023-10-24 17:55:21.431145548+00:00,1 +2023-10-24 17:55:21.556199471+00:00,1 +2023-10-24 17:55:21.682450713+00:00,1 +2023-10-24 17:55:21.808405933+00:00,1 +2023-10-24 17:55:21.934856919+00:00,1 +2023-10-24 17:55:22.060100533+00:00,1 +2023-10-24 17:55:22.185426452+00:00,1 +2023-10-24 17:55:22.309847500+00:00,1 +2023-10-24 17:55:22.434696638+00:00,1 +2023-10-24 17:55:22.560169338+00:00,1 +2023-10-24 17:55:22.685596347+00:00,1 +2023-10-24 17:55:22.811298049+00:00,1 +2023-10-24 17:55:22.936241032+00:00,1 +2023-10-24 17:55:23.062095360+00:00,1 +2023-10-24 17:55:23.187302693+00:00,1 +2023-10-24 17:55:23.311871930+00:00,1 +2023-10-24 17:55:23.436961651+00:00,1 +2023-10-24 17:55:23.561538067+00:00,1 +2023-10-24 17:55:23.686263425+00:00,1 +2023-10-24 17:55:23.811328917+00:00,1 +2023-10-24 17:55:23.936808922+00:00,1 +2023-10-24 17:55:24.062037312+00:00,1 +2023-10-24 17:55:24.186724768+00:00,1 +2023-10-24 17:55:24.311785551+00:00,1 +2023-10-24 17:55:24.437663238+00:00,1 +2023-10-24 17:55:24.563122153+00:00,1 +2023-10-24 17:55:24.687491982+00:00,1 +2023-10-24 17:55:24.814473296+00:00,1 +2023-10-24 17:55:24.941069293+00:00,1 +2023-10-24 17:55:26.078737665+00:00,1 +2023-10-24 17:55:26.204864260+00:00,1 +2023-10-24 17:55:26.331062617+00:00,1 +2023-10-24 17:55:26.457902588+00:00,1 +2023-10-24 17:55:26.585170228+00:00,1 +2023-10-24 17:55:26.710760292+00:00,1 +2023-10-24 17:55:26.837103992+00:00,1 +2023-10-24 17:55:28.004062914+00:00,1 +2023-10-24 17:55:28.129275321+00:00,1 +2023-10-24 17:55:28.255866090+00:00,1 +2023-10-24 17:55:28.380981405+00:00,1 +2023-10-24 17:55:28.505656751+00:00,1 +2023-10-24 17:55:28.631780558+00:00,1 +2023-10-24 17:55:28.756237830+00:00,1 +2023-10-24 17:55:28.882125065+00:00,1 +2023-10-24 17:55:29.007689001+00:00,1 +2023-10-24 17:55:29.132973549+00:00,1 +2023-10-24 17:55:29.258379038+00:00,1 +2023-10-24 17:55:29.384870654+00:00,1 +2023-10-24 17:55:29.510102750+00:00,1 +2023-10-24 17:55:29.635927029+00:00,1 +2023-10-24 17:55:29.762594790+00:00,1 +2023-10-24 17:55:29.889054725+00:00,1 +2023-10-24 17:55:30.015550931+00:00,1 +2023-10-24 17:55:30.140768512+00:00,1 +2023-10-24 17:55:30.266838013+00:00,1 +2023-10-24 17:55:31.423255995+00:00,1 +2023-10-24 17:55:31.549249592+00:00,1 +2023-10-24 17:55:31.674265341+00:00,1 +2023-10-24 17:55:31.799130506+00:00,1 +2023-10-24 17:55:31.924252665+00:00,1 +2023-10-24 17:55:32.049344385+00:00,1 +2023-10-24 17:55:32.174457316+00:00,1 +2023-10-24 17:55:32.300013080+00:00,1 +2023-10-24 17:55:32.426111740+00:00,1 +2023-10-24 17:55:32.551703557+00:00,1 +2023-10-24 17:55:32.677405510+00:00,1 +2023-10-24 17:55:32.802029974+00:00,1 +2023-10-24 17:55:32.928610962+00:00,1 +2023-10-24 17:55:33.054992259+00:00,1 +2023-10-24 17:55:33.179710398+00:00,1 +2023-10-24 17:55:33.305256166+00:00,1 +2023-10-24 17:55:33.430577937+00:00,1 +2023-10-24 17:55:33.556726091+00:00,1 +2023-10-24 17:55:33.682108920+00:00,1 +2023-10-24 17:55:33.808287009+00:00,1 +2023-10-24 17:55:33.933066329+00:00,1 +2023-10-24 17:55:34.058796272+00:00,1 +2023-10-24 17:55:34.183842311+00:00,1 +2023-10-24 17:55:34.309203099+00:00,1 +2023-10-24 17:55:34.435023357+00:00,1 +2023-10-24 17:55:34.560469927+00:00,1 +2023-10-24 17:55:34.685836653+00:00,1 +2023-10-24 17:55:34.810592791+00:00,1 +2023-10-24 17:55:34.935771928+00:00,1 +2023-10-24 17:55:35.061678485+00:00,1 +2023-10-24 17:55:35.187372065+00:00,1 +2023-10-24 17:55:35.312639410+00:00,1 +2023-10-24 17:55:35.438429390+00:00,1 +2023-10-24 17:55:35.564415627+00:00,1 +2023-10-24 17:55:35.689746199+00:00,1 +2023-10-24 17:55:35.814988849+00:00,1 +2023-10-24 17:55:35.940494760+00:00,1 +2023-10-24 17:55:36.065654464+00:00,1 +2023-10-24 17:55:36.191850743+00:00,1 +2023-10-24 17:55:36.317407342+00:00,1 +2023-10-24 17:55:36.443077619+00:00,1 +2023-10-24 17:55:36.568542358+00:00,1 +2023-10-24 17:55:36.693328635+00:00,1 +2023-10-24 17:55:36.818553250+00:00,1 +2023-10-24 17:55:36.944443666+00:00,1 +2023-10-24 17:55:37.069337072+00:00,1 +2023-10-24 17:55:37.194001889+00:00,1 +2023-10-24 17:55:37.319282294+00:00,1 +2023-10-24 17:55:37.443548845+00:00,1 +2023-10-24 17:55:37.568873688+00:00,1 +2023-10-24 17:55:37.693346449+00:00,1 +2023-10-24 17:55:37.819031973+00:00,1 +2023-10-24 17:55:37.945188270+00:00,1 +2023-10-24 17:55:38.070025482+00:00,1 +2023-10-24 17:55:38.195407992+00:00,1 +2023-10-24 17:55:38.320502708+00:00,1 +2023-10-24 17:55:38.445945366+00:00,1 +2023-10-24 17:55:38.571951131+00:00,1 +2023-10-24 17:55:38.698031851+00:00,1 +2023-10-24 17:55:38.823245270+00:00,1 +2023-10-24 17:55:38.949205302+00:00,1 +2023-10-24 17:55:39.074286252+00:00,1 +2023-10-24 17:55:39.199077739+00:00,1 +2023-10-24 17:55:39.324587166+00:00,1 +2023-10-24 17:55:39.450087552+00:00,1 +2023-10-24 17:55:39.576128605+00:00,1 +2023-10-24 17:55:39.700854334+00:00,1 +2023-10-24 17:55:39.826360622+00:00,1 +2023-10-24 17:55:39.951846475+00:00,1 +2023-10-24 17:55:40.077263210+00:00,1 +2023-10-24 17:55:40.201896817+00:00,1 +2023-10-24 17:55:40.327088136+00:00,1 +2023-10-24 17:55:40.452787678+00:00,1 +2023-10-24 17:55:40.578527035+00:00,1 +2023-10-24 17:55:40.703205416+00:00,1 +2023-10-24 17:55:40.828719785+00:00,1 +2023-10-24 17:55:40.957257922+00:00,1 +2023-10-24 17:55:41.085052569+00:00,1 +2023-10-24 17:55:41.212536184+00:00,1 +2023-10-24 17:55:41.339197694+00:00,1 +2023-10-24 17:55:41.464727094+00:00,1 +2023-10-24 17:55:41.590057709+00:00,1 +2023-10-24 17:55:41.715484178+00:00,1 +2023-10-24 17:55:41.840493653+00:00,1 +2023-10-24 17:55:41.965357335+00:00,1 +2023-10-24 17:55:42.091410160+00:00,1 +2023-10-24 17:55:42.216312185+00:00,1 +2023-10-24 17:55:42.341977763+00:00,1 +2023-10-24 17:55:42.468710195+00:00,1 +2023-10-24 17:55:42.596910509+00:00,1 +2023-10-24 17:55:42.723579479+00:00,1 +2023-10-24 17:55:42.850486203+00:00,1 +2023-10-24 17:55:42.978195082+00:00,1 +2023-10-24 17:55:43.104446826+00:00,1 +2023-10-24 17:55:43.232120245+00:00,1 +2023-10-24 17:55:43.359203251+00:00,1 +2023-10-24 17:55:43.485446075+00:00,1 +2023-10-24 17:55:43.612861982+00:00,1 +2023-10-24 17:55:43.739764569+00:00,1 +2023-10-24 17:55:43.868670548+00:00,1 +2023-10-24 17:55:43.996934299+00:00,1 +2023-10-24 17:55:44.124092205+00:00,1 +2023-10-24 17:55:44.253663306+00:00,1 +2023-10-24 17:55:44.383031798+00:00,1 +2023-10-24 17:55:44.511499275+00:00,1 +2023-10-24 17:55:44.638330912+00:00,1 +2023-10-24 17:55:44.765419461+00:00,1 +2023-10-24 17:55:44.892585670+00:00,1 +2023-10-24 17:55:45.019352901+00:00,1 +2023-10-24 17:55:45.147603160+00:00,1 +2023-10-24 17:55:45.274366060+00:00,1 +2023-10-24 17:55:45.401290452+00:00,1 +2023-10-24 17:55:45.529359890+00:00,1 +2023-10-24 17:55:45.657751570+00:00,1 +2023-10-24 17:55:45.785469160+00:00,1 +2023-10-24 17:55:45.913760705+00:00,1 +2023-10-24 17:55:46.041244947+00:00,1 +2023-10-24 17:55:46.169069989+00:00,1 +2023-10-24 17:55:46.296907219+00:00,1 +2023-10-24 17:55:46.426670159+00:00,1 +2023-10-24 17:55:46.554104056+00:00,1 +2023-10-24 17:55:46.683925285+00:00,1 +2023-10-24 17:55:46.813343793+00:00,1 +2023-10-24 17:55:46.941547939+00:00,1 +2023-10-24 17:55:47.070325904+00:00,1 +2023-10-24 17:55:47.199434550+00:00,1 +2023-10-24 17:55:47.328286023+00:00,1 +2023-10-24 17:55:47.456301748+00:00,1 +2023-10-24 17:55:47.584746571+00:00,1 +2023-10-24 17:55:47.713403579+00:00,1 +2023-10-24 17:55:47.841165676+00:00,1 +2023-10-24 17:55:47.969183339+00:00,1 +2023-10-24 17:55:48.097567038+00:00,1 +2023-10-24 17:55:48.226644883+00:00,1 +2023-10-24 17:55:48.353774868+00:00,1 +2023-10-24 17:55:48.481408109+00:00,1 +2023-10-24 17:55:48.609318735+00:00,1 +2023-10-24 17:55:48.737887190+00:00,1 +2023-10-24 17:55:48.866774461+00:00,1 +2023-10-24 17:55:48.995260378+00:00,1 +2023-10-24 17:55:49.125126868+00:00,1 +2023-10-24 17:55:49.254386067+00:00,1 +2023-10-24 17:55:49.381748564+00:00,1 +2023-10-24 17:55:49.510901596+00:00,1 +2023-10-24 17:55:49.641252862+00:00,1 +2023-10-24 17:55:49.769422588+00:00,1 +2023-10-24 17:55:49.898229459+00:00,1 +2023-10-24 17:55:50.026526814+00:00,1 +2023-10-24 17:55:50.154730635+00:00,1 +2023-10-24 17:55:50.283168271+00:00,1 +2023-10-24 17:55:50.412526870+00:00,1 +2023-10-24 17:55:50.541468637+00:00,1 +2023-10-24 17:55:50.670532014+00:00,1 +2023-10-24 17:55:50.799956771+00:00,1 +2023-10-24 17:55:50.929580762+00:00,1 +2023-10-24 17:55:51.058418796+00:00,1 +2023-10-24 17:55:51.188364375+00:00,1 +2023-10-24 17:55:51.319241818+00:00,1 +2023-10-24 17:55:51.448492724+00:00,1 +2023-10-24 17:55:51.576813212+00:00,1 +2023-10-24 17:55:51.705038851+00:00,1 +2023-10-24 17:55:51.833257003+00:00,1 +2023-10-24 17:55:51.960320293+00:00,1 +2023-10-24 17:55:52.087975829+00:00,1 +2023-10-24 17:55:52.215198771+00:00,1 +2023-10-24 17:55:52.342834862+00:00,1 +2023-10-24 17:55:52.470481548+00:00,1 +2023-10-24 17:55:52.597586808+00:00,1 +2023-10-24 17:55:52.726664397+00:00,1 +2023-10-24 17:55:52.855338033+00:00,1 +2023-10-24 17:55:52.982446930+00:00,1 +2023-10-24 17:55:53.110482072+00:00,1 +2023-10-24 17:55:53.237870570+00:00,1 +2023-10-24 17:55:53.365711390+00:00,1 +2023-10-24 17:55:53.493216816+00:00,1 +2023-10-24 17:55:53.620664869+00:00,1 +2023-10-24 17:55:53.749267970+00:00,1 +2023-10-24 17:55:53.876621682+00:00,1 +2023-10-24 17:55:54.003948160+00:00,1 +2023-10-24 17:55:54.132121903+00:00,1 +2023-10-24 17:55:54.261297257+00:00,1 +2023-10-24 17:55:54.389625819+00:00,1 +2023-10-24 17:55:54.517113166+00:00,1 +2023-10-24 17:55:54.644822211+00:00,1 +2023-10-24 17:55:54.773912465+00:00,1 +2023-10-24 17:55:54.902332313+00:00,1 +2023-10-24 17:55:55.030410801+00:00,1 +2023-10-24 17:55:55.157836658+00:00,1 +2023-10-24 17:55:55.287564409+00:00,1 +2023-10-24 17:55:55.416216142+00:00,1 +2023-10-24 17:55:55.544771857+00:00,1 +2023-10-24 17:55:55.673017841+00:00,1 +2023-10-24 17:55:55.801414380+00:00,1 +2023-10-24 17:55:55.929780241+00:00,1 +2023-10-24 17:55:56.057629891+00:00,1 +2023-10-24 17:55:56.185065403+00:00,1 +2023-10-24 17:55:56.312148131+00:00,1 +2023-10-24 17:55:56.439815137+00:00,1 +2023-10-24 17:55:56.568425312+00:00,1 +2023-10-24 17:55:56.696045041+00:00,1 +2023-10-24 17:55:56.824885643+00:00,1 +2023-10-24 17:55:56.952786132+00:00,1 +2023-10-24 17:55:57.080880540+00:00,1 +2023-10-24 17:55:57.207955368+00:00,1 +2023-10-24 17:55:57.335701195+00:00,1 +2023-10-24 17:55:57.463670632+00:00,1 +2023-10-24 17:55:57.591913571+00:00,1 +2023-10-24 17:55:57.720638589+00:00,1 +2023-10-24 17:55:57.850239253+00:00,1 +2023-10-24 17:55:57.977826710+00:00,1 +2023-10-24 17:55:58.106738344+00:00,1 +2023-10-24 17:55:58.234282014+00:00,1 +2023-10-24 17:55:58.363422682+00:00,1 +2023-10-24 17:55:58.491849598+00:00,1 +2023-10-24 17:55:58.619848584+00:00,1 +2023-10-24 17:55:58.749309944+00:00,1 +2023-10-24 17:55:58.877167461+00:00,1 +2023-10-24 17:55:59.005291734+00:00,1 +2023-10-24 17:55:59.133789979+00:00,1 +2023-10-24 17:55:59.262604662+00:00,1 +2023-10-24 17:55:59.390566902+00:00,1 +2023-10-24 17:55:59.517873539+00:00,1 +2023-10-24 17:55:59.644179215+00:00,1 +2023-10-24 17:55:59.772477763+00:00,1 +2023-10-24 17:55:59.900041008+00:00,1 +2023-10-24 17:56:00.027338098+00:00,1 +2023-10-24 17:56:00.154645171+00:00,1 +2023-10-24 17:56:00.282559448+00:00,1 +2023-10-24 17:56:00.410644283+00:00,1 +2023-10-24 17:56:00.539068192+00:00,1 +2023-10-24 17:56:00.667393819+00:00,1 +2023-10-24 17:56:00.796367925+00:00,1 +2023-10-24 17:56:00.925018322+00:00,1 +2023-10-24 17:56:01.054144344+00:00,1 +2023-10-24 17:56:01.182449124+00:00,1 +2023-10-24 17:56:01.310113773+00:00,1 +2023-10-24 17:56:01.438428234+00:00,1 +2023-10-24 17:56:01.565943911+00:00,1 +2023-10-24 17:56:01.695576669+00:00,1 +2023-10-24 17:56:01.824748092+00:00,1 +2023-10-24 17:56:01.952370978+00:00,1 +2023-10-24 17:56:02.080050833+00:00,1 +2023-10-24 17:56:02.208145003+00:00,1 +2023-10-24 17:56:02.335929549+00:00,1 +2023-10-24 17:56:02.462976766+00:00,1 +2023-10-24 17:56:02.590735278+00:00,1 +2023-10-24 17:56:02.717418113+00:00,1 +2023-10-24 17:56:02.843902792+00:00,1 +2023-10-24 17:56:02.971669758+00:00,1 +2023-10-24 17:56:03.098978135+00:00,1 +2023-10-24 17:56:03.227060719+00:00,1 +2023-10-24 17:56:03.355405051+00:00,1 +2023-10-24 17:56:03.482862827+00:00,1 +2023-10-24 17:56:03.609957914+00:00,1 +2023-10-24 17:56:03.737451485+00:00,1 +2023-10-24 17:56:03.865401620+00:00,1 +2023-10-24 17:56:03.993281003+00:00,1 +2023-10-24 17:56:04.120349296+00:00,1 +2023-10-24 17:56:04.247135417+00:00,1 +2023-10-24 17:56:04.375733573+00:00,1 +2023-10-24 17:56:04.503647676+00:00,1 +2023-10-24 17:56:04.631192536+00:00,1 +2023-10-24 17:56:04.759552920+00:00,1 +2023-10-24 17:56:04.887733845+00:00,1 +2023-10-24 17:56:05.015502284+00:00,1 +2023-10-24 17:56:05.142154802+00:00,1 +2023-10-24 17:56:05.271464955+00:00,1 +2023-10-24 17:56:05.399404143+00:00,1 +2023-10-24 17:56:05.527258332+00:00,1 +2023-10-24 17:56:05.655266230+00:00,1 +2023-10-24 17:56:05.783582078+00:00,1 +2023-10-24 17:56:05.911609235+00:00,1 +2023-10-24 17:56:06.040196632+00:00,1 +2023-10-24 17:56:06.168939781+00:00,1 +2023-10-24 17:56:06.296605511+00:00,1 +2023-10-24 17:56:06.424754283+00:00,1 +2023-10-24 17:56:06.553125481+00:00,1 +2023-10-24 17:56:06.681784305+00:00,1 +2023-10-24 17:56:06.811434428+00:00,1 +2023-10-24 17:56:06.939206709+00:00,1 +2023-10-24 17:56:07.066037067+00:00,1 +2023-10-24 17:56:07.193277534+00:00,1 +2023-10-24 17:56:07.322204831+00:00,1 +2023-10-24 17:56:07.449890388+00:00,1 +2023-10-24 17:56:07.577930204+00:00,1 +2023-10-24 17:56:07.705465385+00:00,1 +2023-10-24 17:56:07.832721401+00:00,1 +2023-10-24 17:56:07.960901869+00:00,1 +2023-10-24 17:56:08.088008805+00:00,1 +2023-10-24 17:56:08.215406391+00:00,1 +2023-10-24 17:56:08.342839934+00:00,1 +2023-10-24 17:56:08.470486597+00:00,1 +2023-10-24 17:56:08.598328831+00:00,1 +2023-10-24 17:56:08.725655834+00:00,1 +2023-10-24 17:56:08.853162723+00:00,1 +2023-10-24 17:56:08.981297358+00:00,1 +2023-10-24 17:56:09.110469413+00:00,1 +2023-10-24 17:56:09.239211899+00:00,1 +2023-10-24 17:56:09.366068944+00:00,1 +2023-10-24 17:56:09.493908612+00:00,1 +2023-10-24 17:56:09.621073530+00:00,1 +2023-10-24 17:56:09.748854927+00:00,1 +2023-10-24 17:56:09.876683091+00:00,1 +2023-10-24 17:56:10.005102864+00:00,1 +2023-10-24 17:56:10.133784145+00:00,1 +2023-10-24 17:56:10.261515161+00:00,1 +2023-10-24 17:56:10.389813202+00:00,1 +2023-10-24 17:56:10.517375069+00:00,1 +2023-10-24 17:56:10.645303968+00:00,1 +2023-10-24 17:56:10.774557204+00:00,1 +2023-10-24 17:56:10.903874795+00:00,1 +2023-10-24 17:56:11.032008740+00:00,1 +2023-10-24 17:56:11.159499846+00:00,1 +2023-10-24 17:56:11.288464405+00:00,1 +2023-10-24 17:56:11.417180041+00:00,1 +2023-10-24 17:56:11.545139728+00:00,1 +2023-10-24 17:56:11.672714129+00:00,1 +2023-10-24 17:56:11.800395622+00:00,1 +2023-10-24 17:56:11.927824638+00:00,1 +2023-10-24 17:56:12.056795471+00:00,1 +2023-10-24 17:56:12.184220974+00:00,1 +2023-10-24 17:56:12.311896697+00:00,1 +2023-10-24 17:56:12.439070914+00:00,1 +2023-10-24 17:56:12.567439145+00:00,1 +2023-10-24 17:56:12.696195052+00:00,1 +2023-10-24 17:56:12.823998324+00:00,1 +2023-10-24 17:56:12.953357778+00:00,1 +2023-10-24 17:56:13.081568222+00:00,1 +2023-10-24 17:56:13.209892415+00:00,1 +2023-10-24 17:56:13.337183695+00:00,1 +2023-10-24 17:56:13.467416709+00:00,1 +2023-10-24 17:56:13.594199353+00:00,1 +2023-10-24 17:56:13.721485522+00:00,1 +2023-10-24 17:56:13.848238748+00:00,1 +2023-10-24 17:56:13.975268707+00:00,1 +2023-10-24 17:56:14.102537377+00:00,1 +2023-10-24 17:56:14.231218102+00:00,1 +2023-10-24 17:56:14.358622267+00:00,1 +2023-10-24 17:56:14.487123600+00:00,1 +2023-10-24 17:56:14.614698368+00:00,1 +2023-10-24 17:56:14.744727373+00:00,1 +2023-10-24 17:56:14.872269643+00:00,1 +2023-10-24 17:56:15.000263713+00:00,1 +2023-10-24 17:56:15.129740440+00:00,1 +2023-10-24 17:56:15.256820169+00:00,1 +2023-10-24 17:56:15.384091111+00:00,1 +2023-10-24 17:56:15.511007562+00:00,1 +2023-10-24 17:56:15.637889881+00:00,1 +2023-10-24 17:56:15.766401691+00:00,1 +2023-10-24 17:56:15.893861259+00:00,1 +2023-10-24 17:56:16.020308504+00:00,1 +2023-10-24 17:56:16.147853725+00:00,1 +2023-10-24 17:56:16.275297137+00:00,1 +2023-10-24 17:56:16.403101034+00:00,1 +2023-10-24 17:56:16.530630018+00:00,1 +2023-10-24 17:56:16.657891373+00:00,1 +2023-10-24 17:56:16.785377188+00:00,1 +2023-10-24 17:56:16.912914220+00:00,1 +2023-10-24 17:56:17.039985901+00:00,1 +2023-10-24 17:56:17.167497662+00:00,1 +2023-10-24 17:56:17.295230309+00:00,1 +2023-10-24 17:56:17.422885909+00:00,1 +2023-10-24 17:56:17.551923046+00:00,1 +2023-10-24 17:56:17.680098633+00:00,1 +2023-10-24 17:56:17.808491055+00:00,1 +2023-10-24 17:56:17.936414155+00:00,1 +2023-10-24 17:56:18.063945588+00:00,1 +2023-10-24 17:56:18.191289295+00:00,1 +2023-10-24 17:56:18.318494299+00:00,1 +2023-10-24 17:56:18.445764728+00:00,1 +2023-10-24 17:56:18.573858215+00:00,1 +2023-10-24 17:56:18.701555247+00:00,1 +2023-10-24 17:56:18.830700537+00:00,1 +2023-10-24 17:56:18.958430745+00:00,1 +2023-10-24 17:56:19.086020869+00:00,1 +2023-10-24 17:56:19.214195888+00:00,1 +2023-10-24 17:56:19.341409673+00:00,1 +2023-10-24 17:56:19.468737278+00:00,1 +2023-10-24 17:56:19.597057954+00:00,1 +2023-10-24 17:56:19.725289534+00:00,1 +2023-10-24 17:56:19.854136778+00:00,1 +2023-10-24 17:56:19.981711713+00:00,1 +2023-10-24 17:56:20.110694746+00:00,1 +2023-10-24 17:56:20.239220195+00:00,1 +2023-10-24 17:56:20.369799305+00:00,1 +2023-10-24 17:56:20.497735495+00:00,1 +2023-10-24 17:56:20.625599943+00:00,1 +2023-10-24 17:56:20.753756796+00:00,1 +2023-10-24 17:56:20.881943426+00:00,1 +2023-10-24 17:56:21.010516998+00:00,1 +2023-10-24 17:56:21.138531993+00:00,1 +2023-10-24 17:56:21.267420662+00:00,1 +2023-10-24 17:56:21.396459586+00:00,1 +2023-10-24 17:56:21.524171367+00:00,1 +2023-10-24 17:56:21.651482567+00:00,1 +2023-10-24 17:56:21.779267121+00:00,1 +2023-10-24 17:56:21.907085860+00:00,1 +2023-10-24 17:56:22.035789405+00:00,1 +2023-10-24 17:56:22.163737090+00:00,1 +2023-10-24 17:56:22.291155425+00:00,1 +2023-10-24 17:56:22.419277588+00:00,1 +2023-10-24 17:56:22.548095133+00:00,1 +2023-10-24 17:56:22.676311469+00:00,1 +2023-10-24 17:56:22.804499918+00:00,1 +2023-10-24 17:56:22.932422248+00:00,1 +2023-10-24 17:56:23.060052377+00:00,1 +2023-10-24 17:56:23.187511644+00:00,1 +2023-10-24 17:56:23.315488400+00:00,1 +2023-10-24 17:56:23.442054717+00:00,1 +2023-10-24 17:56:23.571738086+00:00,1 +2023-10-24 17:56:23.701096011+00:00,1 +2023-10-24 17:56:23.829940306+00:00,1 +2023-10-24 17:56:23.958416263+00:00,1 +2023-10-24 17:56:24.088375848+00:00,1 +2023-10-24 17:56:24.215960327+00:00,1 +2023-10-24 17:56:24.344182506+00:00,1 +2023-10-24 17:56:24.473135665+00:00,1 +2023-10-24 17:56:24.600210678+00:00,1 +2023-10-24 17:56:24.727298328+00:00,1 +2023-10-24 17:56:24.854623329+00:00,1 +2023-10-24 17:56:24.981835078+00:00,1 +2023-10-24 17:56:25.109675773+00:00,1 +2023-10-24 17:56:25.237815704+00:00,1 +2023-10-24 17:56:25.366148365+00:00,1 +2023-10-24 17:56:25.495492188+00:00,1 +2023-10-24 17:56:25.622892721+00:00,1 +2023-10-24 17:56:25.751891167+00:00,1 +2023-10-24 17:56:25.880644096+00:00,1 +2023-10-24 17:56:26.008183572+00:00,1 +2023-10-24 17:56:26.135662847+00:00,1 +2023-10-24 17:56:26.263425008+00:00,1 +2023-10-24 17:56:26.391552920+00:00,1 +2023-10-24 17:56:26.521901989+00:00,1 +2023-10-24 17:56:26.649810032+00:00,1 +2023-10-24 17:56:26.776845453+00:00,1 +2023-10-24 17:56:26.905114790+00:00,1 +2023-10-24 17:56:27.031707931+00:00,1 +2023-10-24 17:56:27.159075675+00:00,1 +2023-10-24 17:56:27.287530863+00:00,1 +2023-10-24 17:56:27.416376936+00:00,1 +2023-10-24 17:56:27.545029388+00:00,1 +2023-10-24 17:56:27.672680363+00:00,1 +2023-10-24 17:56:27.800203491+00:00,1 +2023-10-24 17:56:27.929038843+00:00,1 +2023-10-24 17:56:28.056411885+00:00,1 +2023-10-24 17:56:28.184636318+00:00,1 +2023-10-24 17:56:28.313685951+00:00,1 +2023-10-24 17:56:28.441405612+00:00,1 +2023-10-24 17:56:28.568902011+00:00,1 +2023-10-24 17:56:28.696816212+00:00,1 +2023-10-24 17:56:28.824613781+00:00,1 +2023-10-24 17:56:28.952899226+00:00,1 +2023-10-24 17:56:29.080993633+00:00,1 +2023-10-24 17:56:29.208913808+00:00,1 +2023-10-24 17:56:29.337552956+00:00,1 +2023-10-24 17:56:29.467707738+00:00,1 +2023-10-24 17:56:29.596649243+00:00,1 +2023-10-24 17:56:29.725052926+00:00,1 +2023-10-24 17:56:29.854603822+00:00,1 +2023-10-24 17:56:29.985246279+00:00,1 +2023-10-24 17:56:30.113892918+00:00,1 +2023-10-24 17:56:30.242865574+00:00,1 +2023-10-24 17:56:30.370613867+00:00,1 +2023-10-24 17:56:30.498130180+00:00,1 +2023-10-24 17:56:30.625172107+00:00,1 +2023-10-24 17:56:30.753905069+00:00,1 +2023-10-24 17:56:30.882529009+00:00,1 +2023-10-24 17:56:31.010557203+00:00,1 +2023-10-24 17:56:31.139739953+00:00,1 +2023-10-24 17:56:31.267315253+00:00,1 +2023-10-24 17:56:31.395280320+00:00,1 +2023-10-24 17:56:31.523230759+00:00,1 +2023-10-24 17:56:31.651293672+00:00,1 +2023-10-24 17:56:31.780286451+00:00,1 +2023-10-24 17:56:31.908294997+00:00,1 +2023-10-24 17:56:32.035653587+00:00,1 +2023-10-24 17:56:32.162565747+00:00,1 +2023-10-24 17:56:32.291138690+00:00,1 +2023-10-24 17:56:32.420158344+00:00,1 +2023-10-24 17:56:32.548081312+00:00,1 +2023-10-24 17:56:32.677969324+00:00,1 +2023-10-24 17:56:32.806891112+00:00,1 +2023-10-24 17:56:32.935269520+00:00,1 +2023-10-24 17:56:33.064848211+00:00,1 +2023-10-24 17:56:33.193211216+00:00,1 +2023-10-24 17:56:33.322763067+00:00,1 +2023-10-24 17:56:33.453419128+00:00,1 +2023-10-24 17:56:33.581048364+00:00,1 +2023-10-24 17:56:33.709591763+00:00,1 +2023-10-24 17:56:33.840372098+00:00,1 +2023-10-24 17:56:33.970555210+00:00,1 +2023-10-24 17:56:34.099198818+00:00,1 +2023-10-24 17:56:34.226850333+00:00,1 +2023-10-24 17:56:34.354877771+00:00,1 +2023-10-24 17:56:34.483271598+00:00,1 +2023-10-24 17:56:34.611973042+00:00,1 +2023-10-24 17:56:34.741167616+00:00,1 +2023-10-24 17:56:34.868455749+00:00,1 +2023-10-24 17:56:34.996913627+00:00,1 +2023-10-24 17:56:35.125364920+00:00,1 +2023-10-24 17:56:35.254064389+00:00,1 +2023-10-24 17:56:35.382896951+00:00,1 +2023-10-24 17:56:35.512266907+00:00,1 +2023-10-24 17:56:35.642348899+00:00,1 +2023-10-24 17:56:35.771447273+00:00,1 +2023-10-24 17:56:35.899913002+00:00,1 +2023-10-24 17:56:36.027659214+00:00,1 +2023-10-24 17:56:36.156106791+00:00,1 +2023-10-24 17:56:36.284120565+00:00,1 +2023-10-24 17:56:36.411834879+00:00,1 +2023-10-24 17:56:36.540418450+00:00,1 +2023-10-24 17:56:36.669620484+00:00,1 +2023-10-24 17:56:36.798680303+00:00,1 +2023-10-24 17:56:36.926721773+00:00,1 +2023-10-24 17:56:37.054717713+00:00,1 +2023-10-24 17:56:37.182000557+00:00,1 +2023-10-24 17:56:37.310410906+00:00,1 +2023-10-24 17:56:37.438141457+00:00,1 +2023-10-24 17:56:37.565092446+00:00,1 +2023-10-24 17:56:37.692329872+00:00,1 +2023-10-24 17:56:37.821593079+00:00,1 +2023-10-24 17:56:37.950210956+00:00,1 +2023-10-24 17:56:38.077422351+00:00,1 +2023-10-24 17:56:38.206828421+00:00,1 +2023-10-24 17:56:38.335905855+00:00,1 +2023-10-24 17:56:38.463138218+00:00,1 +2023-10-24 17:56:38.590630924+00:00,1 +2023-10-24 17:56:38.718961313+00:00,1 +2023-10-24 17:56:38.847466385+00:00,1 +2023-10-24 17:56:38.974594180+00:00,1 +2023-10-24 17:56:39.102919632+00:00,1 +2023-10-24 17:56:39.230512303+00:00,1 +2023-10-24 17:56:39.357450431+00:00,1 +2023-10-24 17:56:39.484271267+00:00,1 +2023-10-24 17:56:39.611473714+00:00,1 +2023-10-24 17:56:39.738827894+00:00,1 +2023-10-24 17:56:39.866697277+00:00,1 +2023-10-24 17:56:39.994109271+00:00,1 +2023-10-24 17:56:40.121474621+00:00,1 +2023-10-24 17:56:40.248708114+00:00,1 +2023-10-24 17:56:40.376296717+00:00,1 +2023-10-24 17:56:40.504619025+00:00,1 +2023-10-24 17:56:40.631621687+00:00,1 +2023-10-24 17:56:40.760254311+00:00,1 +2023-10-24 17:56:40.887719344+00:00,1 +2023-10-24 17:56:41.015168928+00:00,1 +2023-10-24 17:56:41.141640491+00:00,1 +2023-10-24 17:56:41.269980262+00:00,1 +2023-10-24 17:56:41.397575188+00:00,1 +2023-10-24 17:56:41.525510289+00:00,1 +2023-10-24 17:56:41.653919475+00:00,1 +2023-10-24 17:56:41.781843744+00:00,1 +2023-10-24 17:56:41.909560212+00:00,1 +2023-10-24 17:56:42.038454828+00:00,1 +2023-10-24 17:56:42.166509042+00:00,1 +2023-10-24 17:56:42.294517968+00:00,1 +2023-10-24 17:56:42.422110400+00:00,1 +2023-10-24 17:56:42.549913869+00:00,1 +2023-10-24 17:56:42.677482694+00:00,1 +2023-10-24 17:56:42.804995121+00:00,1 +2023-10-24 17:56:42.932201371+00:00,1 +2023-10-24 17:56:43.059111880+00:00,1 +2023-10-24 17:56:43.185255662+00:00,1 +2023-10-24 17:56:43.313566311+00:00,1 +2023-10-24 17:56:43.441446972+00:00,1 +2023-10-24 17:56:43.569150412+00:00,1 +2023-10-24 17:56:43.696678144+00:00,1 +2023-10-24 17:56:43.825826807+00:00,1 +2023-10-24 17:56:43.953362933+00:00,1 +2023-10-24 17:56:44.081943601+00:00,1 +2023-10-24 17:56:44.209002645+00:00,1 +2023-10-24 17:56:44.336457883+00:00,1 +2023-10-24 17:56:44.464390384+00:00,1 +2023-10-24 17:56:44.591530524+00:00,1 +2023-10-24 17:56:44.719058459+00:00,1 +2023-10-24 17:56:44.846448385+00:00,1 +2023-10-24 17:56:44.974263127+00:00,1 +2023-10-24 17:56:45.102672577+00:00,1 +2023-10-24 17:56:45.230854438+00:00,1 +2023-10-24 17:56:45.357553484+00:00,1 +2023-10-24 17:56:45.484498025+00:00,1 +2023-10-24 17:56:45.612484743+00:00,1 +2023-10-24 17:56:45.740009802+00:00,1 +2023-10-24 17:56:45.866916083+00:00,1 +2023-10-24 17:56:45.994899555+00:00,1 +2023-10-24 17:56:46.124071628+00:00,1 +2023-10-24 17:56:46.251537400+00:00,1 +2023-10-24 17:56:46.380042039+00:00,1 +2023-10-24 17:56:46.508724255+00:00,1 +2023-10-24 17:56:46.636824000+00:00,1 +2023-10-24 17:56:46.764311310+00:00,1 +2023-10-24 17:56:46.892799559+00:00,1 +2023-10-24 17:56:47.021072472+00:00,1 +2023-10-24 17:56:47.150188632+00:00,1 +2023-10-24 17:56:47.277782722+00:00,1 +2023-10-24 17:56:47.404445968+00:00,1 +2023-10-24 17:56:47.535226611+00:00,1 +2023-10-24 17:56:47.663451578+00:00,1 +2023-10-24 17:56:47.792485685+00:00,1 +2023-10-24 17:56:47.920802698+00:00,1 +2023-10-24 17:56:48.048617012+00:00,1 +2023-10-24 17:56:48.176924182+00:00,1 +2023-10-24 17:56:48.305924331+00:00,1 +2023-10-24 17:56:48.433140735+00:00,1 +2023-10-24 17:56:48.562618590+00:00,1 +2023-10-24 17:56:48.690593268+00:00,1 +2023-10-24 17:56:48.819539183+00:00,1 +2023-10-24 17:56:48.947396765+00:00,1 +2023-10-24 17:56:49.075306054+00:00,1 +2023-10-24 17:56:49.202515376+00:00,1 +2023-10-24 17:56:49.331264397+00:00,1 +2023-10-24 17:56:49.459365821+00:00,1 +2023-10-24 17:56:49.587319867+00:00,1 +2023-10-24 17:56:49.713814977+00:00,1 +2023-10-24 17:56:49.841925896+00:00,1 +2023-10-24 17:56:49.969103306+00:00,1 +2023-10-24 17:56:50.096203442+00:00,1 +2023-10-24 17:56:50.223214360+00:00,1 +2023-10-24 17:56:50.349895425+00:00,1 +2023-10-24 17:56:50.476787422+00:00,1 +2023-10-24 17:56:50.604306274+00:00,1 +2023-10-24 17:56:50.730957831+00:00,1 +2023-10-24 17:56:50.857704835+00:00,1 +2023-10-24 17:56:50.986077020+00:00,1 +2023-10-24 17:56:51.114114990+00:00,1 +2023-10-24 17:56:51.242221828+00:00,1 +2023-10-24 17:56:51.369964125+00:00,1 +2023-10-24 17:56:51.497581866+00:00,1 +2023-10-24 17:56:51.624223549+00:00,1 +2023-10-24 17:56:51.754744020+00:00,1 +2023-10-24 17:56:51.882380484+00:00,1 +2023-10-24 17:56:52.011349826+00:00,1 +2023-10-24 17:56:52.140500447+00:00,1 +2023-10-24 17:56:52.269205598+00:00,1 +2023-10-24 17:56:52.396383572+00:00,1 +2023-10-24 17:56:52.524796041+00:00,1 +2023-10-24 17:56:52.652926621+00:00,1 +2023-10-24 17:56:52.780750218+00:00,1 +2023-10-24 17:56:52.909214492+00:00,1 +2023-10-24 17:56:53.035131444+00:00,1 +2023-10-24 17:56:53.161737260+00:00,1 +2023-10-24 17:56:53.289153035+00:00,1 +2023-10-24 17:56:53.416614452+00:00,1 +2023-10-24 17:56:53.544933704+00:00,1 +2023-10-24 17:56:53.672999655+00:00,1 +2023-10-24 17:56:53.801821895+00:00,1 +2023-10-24 17:56:53.931200395+00:00,1 +2023-10-24 17:56:54.060489498+00:00,1 +2023-10-24 17:56:54.188023255+00:00,1 +2023-10-24 17:56:54.316808397+00:00,1 +2023-10-24 17:56:54.444261407+00:00,1 +2023-10-24 17:56:54.573541698+00:00,1 +2023-10-24 17:56:54.702876528+00:00,1 +2023-10-24 17:56:54.832417737+00:00,1 +2023-10-24 17:56:54.960059709+00:00,1 +2023-10-24 17:56:55.088458481+00:00,1 +2023-10-24 17:56:55.217524238+00:00,1 +2023-10-24 17:56:55.345155512+00:00,1 +2023-10-24 17:56:55.473040704+00:00,1 +2023-10-24 17:56:55.601885143+00:00,1 +2023-10-24 17:56:55.729015784+00:00,1 +2023-10-24 17:56:55.856684148+00:00,1 +2023-10-24 17:56:55.984633809+00:00,1 +2023-10-24 17:56:56.113056610+00:00,1 +2023-10-24 17:56:56.240334793+00:00,1 +2023-10-24 17:56:56.368175713+00:00,1 +2023-10-24 17:56:56.495584341+00:00,1 +2023-10-24 17:56:56.624973975+00:00,1 +2023-10-24 17:56:56.752529841+00:00,1 +2023-10-24 17:56:56.880815515+00:00,1 +2023-10-24 17:56:57.009053776+00:00,1 +2023-10-24 17:56:57.137299095+00:00,1 +2023-10-24 17:56:57.265449961+00:00,1 +2023-10-24 17:56:57.393539101+00:00,1 +2023-10-24 17:56:57.522486458+00:00,1 +2023-10-24 17:56:57.649975770+00:00,1 +2023-10-24 17:56:57.777588744+00:00,1 +2023-10-24 17:56:57.906906448+00:00,1 +2023-10-24 17:56:58.035571526+00:00,1 +2023-10-24 17:56:58.162745724+00:00,1 +2023-10-24 17:56:58.290565604+00:00,1 +2023-10-24 17:56:58.418810821+00:00,1 +2023-10-24 17:56:58.546801721+00:00,1 +2023-10-24 17:56:58.674615470+00:00,1 +2023-10-24 17:56:58.803429644+00:00,1 +2023-10-24 17:56:58.931046601+00:00,1 +2023-10-24 17:56:59.059358198+00:00,1 +2023-10-24 17:56:59.189014746+00:00,1 +2023-10-24 17:56:59.316891824+00:00,1 +2023-10-24 17:56:59.444347965+00:00,1 +2023-10-24 17:56:59.572650184+00:00,1 +2023-10-24 17:56:59.700367804+00:00,1 +2023-10-24 17:56:59.828738836+00:00,1 +2023-10-24 17:56:59.956650922+00:00,1 +2023-10-24 17:57:00.084278339+00:00,1 +2023-10-24 17:57:00.212413259+00:00,1 +2023-10-24 17:57:00.339503646+00:00,1 +2023-10-24 17:57:00.467077365+00:00,1 +2023-10-24 17:57:00.594243810+00:00,1 +2023-10-24 17:57:00.721809566+00:00,1 +2023-10-24 17:57:00.849223744+00:00,1 +2023-10-24 17:57:00.978338927+00:00,1 +2023-10-24 17:57:01.105290697+00:00,1 +2023-10-24 17:57:01.233341920+00:00,1 +2023-10-24 17:57:01.361287999+00:00,1 +2023-10-24 17:57:01.488916555+00:00,1 +2023-10-24 17:57:01.615613563+00:00,1 +2023-10-24 17:57:08.888775604+00:00,1 +2023-10-24 17:57:09.014607960+00:00,1 +2023-10-24 17:57:09.140670906+00:00,1 +2023-10-24 17:57:10.296473145+00:00,1 +2023-10-24 17:57:10.422341093+00:00,1 +2023-10-24 17:57:10.546966357+00:00,1 +2023-10-24 17:57:10.673252589+00:00,1 +2023-10-24 17:57:10.798636345+00:00,1 +2023-10-24 17:57:11.934788468+00:00,1 +2023-10-24 17:57:12.061267511+00:00,1 +2023-10-24 17:57:12.187076595+00:00,1 +2023-10-24 17:57:12.313640700+00:00,1 +2023-10-24 17:57:12.439617788+00:00,1 +2023-10-24 17:57:12.566174659+00:00,1 +2023-10-24 17:57:12.692542278+00:00,1 +2023-10-24 17:57:12.819707796+00:00,1 +2023-10-24 17:57:12.946711326+00:00,1 +2023-10-24 17:57:13.075373019+00:00,1 +2023-10-24 17:57:13.201203022+00:00,1 +2023-10-24 17:57:13.326855190+00:00,1 +2023-10-24 17:57:13.453160451+00:00,1 +2023-10-24 17:57:13.579023491+00:00,1 +2023-10-24 17:57:13.705691300+00:00,1 +2023-10-24 17:57:13.832961314+00:00,1 +2023-10-24 17:57:13.960435649+00:00,1 +2023-10-24 17:57:14.087404965+00:00,1 +2023-10-24 17:57:14.214021610+00:00,1 +2023-10-24 17:57:14.340507018+00:00,1 +2023-10-24 17:57:14.467177754+00:00,1 +2023-10-24 17:57:14.592091691+00:00,1 +2023-10-24 17:57:14.722581807+00:00,1 +2023-10-24 17:57:14.847436601+00:00,1 +2023-10-24 17:57:14.972219499+00:00,1 +2023-10-24 17:57:15.097619297+00:00,1 +2023-10-24 17:57:15.222755523+00:00,1 +2023-10-24 17:57:15.347592665+00:00,1 +2023-10-24 17:57:15.472314587+00:00,1 +2023-10-24 17:57:15.597961894+00:00,1 +2023-10-24 17:57:15.723150842+00:00,1 +2023-10-24 17:57:15.849056350+00:00,1 +2023-10-24 17:57:15.975379270+00:00,1 +2023-10-24 17:57:16.101309942+00:00,1 +2023-10-24 17:57:16.226155403+00:00,1 +2023-10-24 17:57:16.350618841+00:00,1 +2023-10-24 17:57:16.477303433+00:00,1 +2023-10-24 17:57:23.717392740+00:00,1 +2023-10-24 17:57:23.844973050+00:00,1 +2023-10-24 17:57:23.971436135+00:00,1 +2023-10-24 17:57:24.096702025+00:00,1 +2023-10-24 17:57:24.222515299+00:00,1 +2023-10-24 17:57:24.348812295+00:00,1 +2023-10-24 17:57:24.474012813+00:00,1 +2023-10-24 17:57:24.598838243+00:00,1 +2023-10-24 17:57:24.724923954+00:00,1 +2023-10-24 17:57:24.850161615+00:00,1 +2023-10-24 17:57:24.976028573+00:00,1 +2023-10-24 17:57:25.102060424+00:00,1 +2023-10-24 17:57:25.228131276+00:00,1 +2023-10-24 17:57:25.354137126+00:00,1 +2023-10-24 17:57:25.480561717+00:00,1 +2023-10-24 17:57:26.623576414+00:00,1 +2023-10-24 17:57:26.749749808+00:00,1 +2023-10-24 17:57:26.875552250+00:00,1 +2023-10-24 17:57:27.001656970+00:00,1 +2023-10-24 17:57:27.127661432+00:00,0 +2023-10-24 17:57:29.140785191+00:00,1 +2023-10-24 17:57:29.266041905+00:00,1 +2023-10-24 17:57:29.390900993+00:00,0 +2023-10-24 17:57:31.402839412+00:00,0 +2023-10-24 17:57:33.414888210+00:00,1 +2023-10-24 17:57:33.540473520+00:00,0 +2023-10-24 17:57:35.553268285+00:00,1 +2023-10-24 17:57:35.679078025+00:00,1 +2023-10-24 17:57:35.804714302+00:00,1 +2023-10-24 17:57:35.930949807+00:00,0 +2023-10-24 17:57:37.943697797+00:00,1 +2023-10-24 17:57:39.071661640+00:00,1 +2023-10-24 17:57:39.197456226+00:00,1 +2023-10-24 17:57:39.323556735+00:00,1 +2023-10-24 17:57:39.449080416+00:00,1 +2023-10-24 17:57:39.575252281+00:00,1 +2023-10-24 17:57:39.701559417+00:00,1 +2023-10-24 17:57:39.827684015+00:00,1 +2023-10-24 17:57:39.954045321+00:00,1 +2023-10-24 17:57:40.079748054+00:00,1 +2023-10-24 17:57:40.205356196+00:00,1 +2023-10-24 17:57:40.331181687+00:00,1 +2023-10-24 17:57:40.457097498+00:00,1 +2023-10-24 17:57:40.582421284+00:00,1 +2023-10-24 17:57:40.707661959+00:00,1 +2023-10-24 17:57:40.833352889+00:00,1 +2023-10-24 17:57:40.959210334+00:00,1 +2023-10-24 17:57:41.084330096+00:00,1 +2023-10-24 17:57:41.209835814+00:00,1 +2023-10-24 17:57:41.336104026+00:00,1 +2023-10-24 17:57:41.461720114+00:00,1 +2023-10-24 17:57:41.587362231+00:00,1 +2023-10-24 17:57:41.713558092+00:00,1 +2023-10-24 17:57:41.839199109+00:00,1 +2023-10-24 17:57:41.964960090+00:00,1 +2023-10-24 17:57:42.091039290+00:00,1 +2023-10-24 17:57:42.216850431+00:00,1 +2023-10-24 17:57:42.341868623+00:00,1 +2023-10-24 17:57:42.467504056+00:00,1 +2023-10-24 17:57:42.592743369+00:00,1 +2023-10-24 17:57:42.717766987+00:00,1 +2023-10-24 17:57:42.843100080+00:00,1 +2023-10-24 17:57:42.969371564+00:00,1 +2023-10-24 17:57:43.095589873+00:00,1 +2023-10-24 17:57:43.220928965+00:00,1 +2023-10-24 17:57:43.345822577+00:00,1 +2023-10-24 17:57:43.471736170+00:00,1 +2023-10-24 17:57:43.596792677+00:00,1 +2023-10-24 17:57:43.722730648+00:00,1 +2023-10-24 17:57:43.848365377+00:00,1 +2023-10-24 17:57:43.974132886+00:00,1 +2023-10-24 17:57:44.100625062+00:00,1 +2023-10-24 17:57:44.226325844+00:00,1 +2023-10-24 17:57:44.351692977+00:00,1 +2023-10-24 17:57:44.476774079+00:00,1 +2023-10-24 17:57:44.601938382+00:00,1 +2023-10-24 17:57:44.728112305+00:00,1 +2023-10-24 17:57:44.853886370+00:00,1 +2023-10-24 17:57:44.979444256+00:00,1 +2023-10-24 17:57:45.105167679+00:00,1 +2023-10-24 17:57:45.231272258+00:00,1 +2023-10-24 17:57:45.355760302+00:00,1 +2023-10-24 17:57:45.480877488+00:00,1 +2023-10-24 17:57:45.605988713+00:00,1 +2023-10-24 17:57:45.730963823+00:00,1 +2023-10-24 17:57:45.858469214+00:00,1 +2023-10-24 17:57:45.983783223+00:00,1 +2023-10-24 17:57:46.108807235+00:00,1 +2023-10-24 17:57:46.233323385+00:00,1 +2023-10-24 17:57:46.357832466+00:00,1 +2023-10-24 17:57:46.483063433+00:00,1 +2023-10-24 17:57:46.607567041+00:00,1 +2023-10-24 17:57:46.732733286+00:00,1 +2023-10-24 17:57:46.858147311+00:00,1 +2023-10-24 17:57:46.983400886+00:00,1 +2023-10-24 17:57:47.109103497+00:00,1 +2023-10-24 17:57:47.235410480+00:00,1 +2023-10-24 17:57:47.359913694+00:00,1 +2023-10-24 17:57:47.485309027+00:00,1 +2023-10-24 17:57:47.609484002+00:00,1 +2023-10-24 17:57:47.734505293+00:00,1 +2023-10-24 17:57:47.860428332+00:00,1 +2023-10-24 17:57:47.985888893+00:00,1 +2023-10-24 17:57:48.111518754+00:00,1 +2023-10-24 17:57:48.236909777+00:00,1 +2023-10-24 17:57:48.361927438+00:00,1 +2023-10-24 17:57:48.487536602+00:00,1 +2023-10-24 17:57:48.613316456+00:00,1 +2023-10-24 17:57:48.738380757+00:00,1 +2023-10-24 17:57:48.863756250+00:00,1 +2023-10-24 17:57:48.990088350+00:00,1 +2023-10-24 17:57:51.171807718+00:00,1 +2023-10-24 17:57:51.297672711+00:00,1 +2023-10-24 17:57:51.422730462+00:00,1 +2023-10-24 17:57:51.547672496+00:00,0 +2023-10-24 17:57:53.560064772+00:00,1 +2023-10-24 17:57:53.686012889+00:00,1 +2023-10-24 17:57:53.811771049+00:00,1 +2023-10-24 17:57:53.937147376+00:00,1 +2023-10-24 17:57:54.063607500+00:00,1 +2023-10-24 17:57:54.189047025+00:00,1 +2023-10-24 17:57:54.314158046+00:00,1 +2023-10-24 17:57:54.439199063+00:00,1 +2023-10-24 17:57:54.563784299+00:00,1 +2023-10-24 17:57:54.689412119+00:00,1 +2023-10-24 17:57:54.815108511+00:00,1 +2023-10-24 17:57:54.940813468+00:00,1 +2023-10-24 17:57:55.067333671+00:00,1 +2023-10-24 17:57:55.193458299+00:00,1 +2023-10-24 17:57:55.318370082+00:00,1 +2023-10-24 17:57:55.442857173+00:00,1 +2023-10-24 17:57:55.567596985+00:00,1 +2023-10-24 17:57:55.694021179+00:00,1 +2023-10-24 17:57:55.821711331+00:00,1 +2023-10-24 17:57:55.948809440+00:00,1 +2023-10-24 17:57:56.077166227+00:00,1 +2023-10-24 17:57:56.204442033+00:00,1 +2023-10-24 17:57:56.331296999+00:00,1 +2023-10-24 17:57:56.458811731+00:00,1 +2023-10-24 17:57:56.586678445+00:00,1 +2023-10-24 17:57:56.713671353+00:00,1 +2023-10-24 17:57:56.841082503+00:00,1 +2023-10-24 17:57:56.969736717+00:00,1 +2023-10-24 17:57:57.097675276+00:00,1 +2023-10-24 17:57:57.229219093+00:00,1 +2023-10-24 17:57:57.357005447+00:00,1 +2023-10-24 17:57:57.486669527+00:00,1 +2023-10-24 17:57:57.615461946+00:00,1 +2023-10-24 17:57:57.746482947+00:00,1 +2023-10-24 17:57:57.876780315+00:00,1 +2023-10-24 17:57:58.005279533+00:00,1 +2023-10-24 17:57:58.134771881+00:00,1 +2023-10-24 17:57:58.262884368+00:00,1 +2023-10-24 17:57:58.391931535+00:00,1 +2023-10-24 17:57:58.521956344+00:00,1 +2023-10-24 17:57:58.651422032+00:00,1 +2023-10-24 17:57:58.780461271+00:00,1 +2023-10-24 17:57:58.910579129+00:00,1 +2023-10-24 17:57:59.040267449+00:00,1 +2023-10-24 17:57:59.167603256+00:00,1 +2023-10-24 17:57:59.296339527+00:00,1 +2023-10-24 17:57:59.425754015+00:00,1 +2023-10-24 17:57:59.554319867+00:00,1 +2023-10-24 17:57:59.682602529+00:00,1 +2023-10-24 17:57:59.812233797+00:00,1 +2023-10-24 17:57:59.940488087+00:00,1 +2023-10-24 17:58:00.070597817+00:00,1 +2023-10-24 17:58:00.199047071+00:00,1 +2023-10-24 17:58:00.327980184+00:00,1 +2023-10-24 17:58:00.456304512+00:00,1 +2023-10-24 17:58:00.584518138+00:00,1 +2023-10-24 17:58:00.713633681+00:00,1 +2023-10-24 17:58:00.842185844+00:00,1 +2023-10-24 17:58:00.971466561+00:00,1 +2023-10-24 17:58:01.100101679+00:00,1 +2023-10-24 17:58:01.228552197+00:00,1 +2023-10-24 17:58:01.358904928+00:00,1 +2023-10-24 17:58:01.488240349+00:00,1 +2023-10-24 17:58:01.615892563+00:00,1 +2023-10-24 17:58:01.743040432+00:00,1 +2023-10-24 17:58:01.871440442+00:00,1 +2023-10-24 17:58:01.999289423+00:00,1 +2023-10-24 17:58:02.126615891+00:00,1 +2023-10-24 17:58:02.254354862+00:00,1 +2023-10-24 17:58:02.382976837+00:00,1 +2023-10-24 17:58:02.511890671+00:00,1 +2023-10-24 17:58:02.640249726+00:00,1 +2023-10-24 17:58:02.769256365+00:00,1 +2023-10-24 17:58:02.899869732+00:00,1 +2023-10-24 17:58:03.028309083+00:00,1 +2023-10-24 17:58:03.155697086+00:00,1 +2023-10-24 17:58:03.284645877+00:00,1 +2023-10-24 17:58:03.412753637+00:00,1 +2023-10-24 17:58:03.542462186+00:00,1 +2023-10-24 17:58:03.669688066+00:00,1 +2023-10-24 17:58:03.803234353+00:00,1 +2023-10-24 17:58:03.932073498+00:00,1 +2023-10-24 17:58:04.060086079+00:00,1 +2023-10-24 17:58:04.188597155+00:00,1 +2023-10-24 17:58:04.318595698+00:00,1 +2023-10-24 17:58:04.447871435+00:00,1 +2023-10-24 17:58:04.576584367+00:00,1 +2023-10-24 17:58:04.704835841+00:00,1 +2023-10-24 17:58:04.833800286+00:00,1 +2023-10-24 17:58:04.962527944+00:00,1 +2023-10-24 17:58:05.089737217+00:00,1 +2023-10-24 17:58:05.220027044+00:00,1 +2023-10-24 17:58:05.349176318+00:00,1 +2023-10-24 17:58:05.477064438+00:00,1 +2023-10-24 17:58:05.605316743+00:00,1 +2023-10-24 17:58:05.740352983+00:00,1 +2023-10-24 17:58:05.868713913+00:00,1 +2023-10-24 17:58:05.997678541+00:00,1 +2023-10-24 17:58:06.127640646+00:00,1 +2023-10-24 17:58:06.257010386+00:00,1 +2023-10-24 17:58:06.386220773+00:00,1 +2023-10-24 17:58:06.514694824+00:00,1 +2023-10-24 17:58:06.644041430+00:00,1 +2023-10-24 17:58:06.772373611+00:00,1 +2023-10-24 17:58:06.901392788+00:00,1 +2023-10-24 17:58:07.029260160+00:00,1 +2023-10-24 17:58:07.161388568+00:00,1 +2023-10-24 17:58:07.289511681+00:00,1 +2023-10-24 17:58:07.418836746+00:00,1 +2023-10-24 17:58:07.549245831+00:00,1 +2023-10-24 17:58:07.678603895+00:00,1 +2023-10-24 17:58:07.807258746+00:00,1 +2023-10-24 17:58:07.935808196+00:00,1 +2023-10-24 17:58:08.064104761+00:00,1 +2023-10-24 17:58:08.192379861+00:00,1 +2023-10-24 17:58:08.321616772+00:00,1 +2023-10-24 17:58:08.451027650+00:00,1 +2023-10-24 17:58:08.580031436+00:00,1 +2023-10-24 17:58:08.707850959+00:00,1 +2023-10-24 17:58:08.835794925+00:00,1 +2023-10-24 17:58:08.964502838+00:00,1 +2023-10-24 17:58:09.094680898+00:00,1 +2023-10-24 17:58:09.223119209+00:00,1 +2023-10-24 17:58:09.350627458+00:00,1 +2023-10-24 17:58:09.479734582+00:00,1 +2023-10-24 17:58:09.608249028+00:00,1 +2023-10-24 17:58:09.736152540+00:00,1 +2023-10-24 17:58:09.864946015+00:00,1 +2023-10-24 17:58:09.992762283+00:00,1 +2023-10-24 17:58:10.121657224+00:00,1 +2023-10-24 17:58:10.251047728+00:00,1 +2023-10-24 17:58:10.379394504+00:00,1 +2023-10-24 17:58:10.507240673+00:00,1 +2023-10-24 17:58:10.634627572+00:00,1 +2023-10-24 17:58:10.763298813+00:00,1 +2023-10-24 17:58:10.896445688+00:00,1 +2023-10-24 17:58:11.025100518+00:00,1 +2023-10-24 17:58:11.155547753+00:00,1 +2023-10-24 17:58:11.285160500+00:00,1 +2023-10-24 17:58:11.414080922+00:00,1 +2023-10-24 17:58:11.542891403+00:00,1 +2023-10-24 17:58:11.673694010+00:00,1 +2023-10-24 17:58:11.802821713+00:00,1 +2023-10-24 17:58:11.932665355+00:00,1 +2023-10-24 17:58:12.060236252+00:00,1 +2023-10-24 17:58:12.189858636+00:00,0 +2023-10-24 17:58:14.202567637+00:00,1 +2023-10-24 17:58:15.385803316+00:00,1 +2023-10-24 17:58:15.510715015+00:00,0 +2023-10-24 17:58:17.523565123+00:00,1 +2023-10-24 17:58:17.648853077+00:00,1 +2023-10-24 17:58:17.773416968+00:00,1 +2023-10-24 17:58:18.911074318+00:00,1 +2023-10-24 17:58:19.037086820+00:00,1 +2023-10-24 17:58:19.163507945+00:00,1 +2023-10-24 17:58:19.289554178+00:00,1 +2023-10-24 17:58:19.416179186+00:00,1 +2023-10-24 17:58:19.544761749+00:00,1 +2023-10-24 17:58:19.672561779+00:00,1 +2023-10-24 17:58:19.804619424+00:00,1 +2023-10-24 17:58:19.931795099+00:00,1 +2023-10-24 17:58:20.060017944+00:00,1 +2023-10-24 17:58:20.188193089+00:00,1 +2023-10-24 17:58:20.315701548+00:00,1 +2023-10-24 17:58:20.444398546+00:00,1 +2023-10-24 17:58:20.573409481+00:00,1 +2023-10-24 17:58:20.703223525+00:00,1 +2023-10-24 17:58:20.832434309+00:00,1 +2023-10-24 17:58:20.960331976+00:00,1 +2023-10-24 17:58:21.087949381+00:00,1 +2023-10-24 17:58:21.218321465+00:00,1 +2023-10-24 17:58:21.346777896+00:00,1 +2023-10-24 17:58:21.478888313+00:00,1 +2023-10-24 17:58:21.606167434+00:00,1 +2023-10-24 17:58:21.734987501+00:00,1 +2023-10-24 17:58:21.863610620+00:00,1 +2023-10-24 17:58:21.992968836+00:00,1 +2023-10-24 17:58:22.121579051+00:00,1 +2023-10-24 17:58:22.249231323+00:00,1 +2023-10-24 17:58:22.377826123+00:00,1 +2023-10-24 17:58:22.505417845+00:00,1 +2023-10-24 17:58:22.633844643+00:00,1 +2023-10-24 17:58:22.762701210+00:00,1 +2023-10-24 17:58:22.891747364+00:00,1 +2023-10-24 17:58:23.020975821+00:00,1 +2023-10-24 17:58:23.151880510+00:00,1 +2023-10-24 17:58:23.281920058+00:00,1 +2023-10-24 17:58:23.408290073+00:00,1 +2023-10-24 17:58:23.536840853+00:00,1 +2023-10-24 17:58:23.665260271+00:00,1 +2023-10-24 17:58:23.795117627+00:00,1 +2023-10-24 17:58:23.923579868+00:00,1 +2023-10-24 17:58:24.053193073+00:00,1 +2023-10-24 17:58:24.181278443+00:00,1 +2023-10-24 17:58:24.309682033+00:00,1 +2023-10-24 17:58:24.438197385+00:00,1 +2023-10-24 17:58:24.566465166+00:00,1 +2023-10-24 17:58:24.694260148+00:00,1 +2023-10-24 17:58:24.822554134+00:00,1 +2023-10-24 17:58:24.951523284+00:00,1 +2023-10-24 17:58:25.080220024+00:00,1 +2023-10-24 17:58:25.208586019+00:00,1 +2023-10-24 17:58:25.336481356+00:00,1 +2023-10-24 17:58:25.467888601+00:00,1 +2023-10-24 17:58:25.595361629+00:00,0 +2023-10-24 17:58:27.608296720+00:00,1 +2023-10-24 17:58:27.733555332+00:00,1 +2023-10-24 17:58:27.858807977+00:00,1 +2023-10-24 17:58:27.984002117+00:00,0 +2023-10-24 17:58:29.996105770+00:00,0 +2023-10-24 17:58:32.008319142+00:00,1 +2023-10-24 17:58:32.134143755+00:00,0 +2023-10-24 17:58:34.146541067+00:00,1 +2023-10-24 17:58:34.272894979+00:00,1 +2023-10-24 17:58:35.423462497+00:00,1 +2023-10-24 17:58:36.574847799+00:00,1 +2023-10-24 17:58:37.727896758+00:00,1 +2023-10-24 17:58:37.853105958+00:00,0 +2023-10-24 17:58:39.865794349+00:00,1 +2023-10-24 17:58:39.990412372+00:00,1 +2023-10-24 17:58:40.115112921+00:00,1 +2023-10-24 17:58:40.239957906+00:00,1 +2023-10-24 17:58:47.449964506+00:00,1 +2023-10-24 17:58:47.575209944+00:00,1 +2023-10-24 17:58:47.701284776+00:00,1 +2023-10-24 17:58:47.826132553+00:00,1 +2023-10-24 17:58:47.951601232+00:00,1 +2023-10-24 17:58:48.076121822+00:00,1 +2023-10-24 17:58:48.200724895+00:00,1 +2023-10-24 17:58:48.325289441+00:00,1 diff --git a/tests/zero-downtime-scaling/results/1.0.0/25-node/gradual-down-https.png b/tests/zero-downtime-scaling/results/1.0.0/25-node/gradual-down-https.png new file mode 100644 index 0000000000000000000000000000000000000000..8dc24daecf1583bb45686af0404767871b6be7db GIT binary patch literal 6567 zcmeHLX;f3$vaUw4Q62)_C+TgPI zO57E@OC#3y^Eh_fHa{^GfL7AGDOiJuz`G7a;XXpNn2Cx)OhFJ8Fp)x-8NF9i;q~f{ z^!)rlW)uo}0-Rf%B989z@w)R3tDL|BhLX@$%MMYhzi@JnFt>HIDGR5r@lIe%k z)gj{VLF!s7GG>sO%<|THq`tMTBpfl$L{PQ0wPJK430PSN0!dij0E<#EzX|4~VO9os zn}I6_)8E0T?_qKaOl*ZQC15MVpDHlC9fs6^g@VCdFrW^7yP7Rs=*5ffxl5w;=2`5PpVG5`;uUPz>C-2LW;5mjJ$r z;QcFjC4px$TqDEP2jKn?+|s}`9WGJ8ITIWogF`m_^aSj3!1ftf=YeGbTqp#KV!)LE zwiM2k!ReP^UIAvWz_bdEQ^BMLjA?+W1H;##{|1gWf*u`on?bt;wBCYdD;#PAbUPe; z5BopBzAo6?4SRZFcOR$^z^*|+u|RDIwhx2KpP&__#hyBG%qlc( zdQduG*j&Q&{F^=5@>-h?whCD%;*4aIUN=R_O*?SHc2%9;@QcBFv^*u|;}Gi9umAlY zTEA-ku?PY_ttdCYYT8-0%)e){z{om`)K2SpK1s)v7bKS6&6)g=;LY*nJpaABfq6l< zdLXy#!Pe$Sy%+Kx-*vRHb7b|o-B)Q~YNF*l%=i)>bd2z6-b0_N5;dKNk9?-BD*e4G z%Y8{+2_xQ3ibwc+y@S*W_xl7g-KrWxJAG8$s5DE%|FR7s6=e`t4FvNgH{Kn$Bh1Bm+;r$Yo(~0JHLz|DytY7_%BAha6&O&wzj|W33sqi-H~SyvN&S78jyug z@Od@i7mLrLIHA)g%T-cdA3Ez?K|-6+)Pj#bI6H#YPiRm`aDQoR6H+p8g3vOnc9{^6 zK``8LIIl~>zNqkB8<#EN5gRup`994V)rvz#G%Rg}6H7M=Hao{h8eVt6h4hm3ovmvx zqNeoie0CYS3lzNe4X+RoD@w)WXAx6wn884Ml&C`b&)JQ2)Wa!3wXR1)1FaGEcy~iE zpXa`1Zqo3b=gk7nrOLZ=Nj$0d6~~ta{ITqYk8=lV33p#!)TgEGSPY%nZ9{ZIZ3{6_ zcx#O%R-?_3BcDnZkC;5?TaVbHpSS4m6|3LPJvKRfx7Og+hq1!0Z|fcPYu4EbJ{B;u zoqYm@Ql(BP=eSjm9+#4Qo|+SCiuZ)xDxIy8@sMmg&In6Xm3W9NX3?7l1rI_hJLba@ z@dFEdiDlP0T*GEk!o-Hgcd}?XR>ZX|_DCo1e#UX)(PWA%mapBTAwn&)Ew9vk|h^xe0yoTKFZ|N%%Ro8x6OpU%Z1;GX?{09QP=Hy!|nM-e%SV4 zBF%OEiD=egiCwp)FOSK~?Tn;LMayXyFc9^ERBQ)-Cz0sWK?Em_IGIV&1-OEeT0TGzSqpGF*M zqg=I>dX}8Im(XgIL)x(!9i*RLUKMWIg}$nH@LZOtxnrc%D8qhdrp>L#A%dyN|qi)gjjK`(M*gB*PC{D zt-Z$=aKeY?T2I>^NMsn3W>>fs`1SIy#d;~WZ5~Sd70*rOI&N*&Y!8^PxQH_88Jn94 z(xRT!w;^l2PC!2wjFcIVN^7ihOh-gIn8xqw#f)6~;-7qs-S69m`gvZ76RmH<>)kW+ z`83w(BFaR#d|xQQR@FsD-Za?w*$A=Hm-Q_aepo~Fi^Lk`>*H5Dd~t%|d7EIYqjpY) zoM~S_qtL*nVOa0uK~zjxHQB*lcZ4G1QQ~JwY@vZKPPnSyV>CkXc{PUSrtK&0sLhCJ zDD~Ilic)MMU7S!^!F`@h7-4W|Z`T%;2+J*ss*E`7`Gr&$k(c3zGP0t%L(o_uLt-MY z91}QQ+969^%<*q~x(z)Z8+Y)0B*Aljzrlr(Bb#hyEyr5;O)HC`)ce6~QWc(zOkkyu%I1R<_i8UF)v1#WnHsB|{SUM!J=hz_Ea|q!;Gh zo*ELUR!vQ~xWwZ`>>HHkMGx%x)Xx(!2cZQJn$5IoV;)WEEdTrPlB&L+RCavd;^%+6Fu3Bf=vZ8x~jJ zsW<1UDYiVfLv?x7u28M3jdgC^4397)wn=zQ`52fhNM{$j)-DOKgd+XTw#%#z1#@?^jGJKQ8w6zj<`&x;+Ia-d`CGksWB*EVN?T{_tSkt)&itwkpRdHRKHns;7 z1bzitaY3E3i}>FBCI6lkXUB@glh-CW?OkN&wmb44Q@hpYklfWU#6>lKq`i2g`?$e( zkMr+b$;i8EHXd`P0_%SG-&z8qy)EtU&5T<`(!^R+b!5YS$jJ)76cLe@!_#vN#Xo3F z=)KN~J2Y5UZSYn`y+DViJQTR-GRHXL8==&RfxI?cbV9tvoa>0yR`oU161_UfjdChE zrQu4l=h%ZH9~|2S%??aLALtuBgd3qMq0f{q9Zv14k>4X?*I!q5(e4?OpRAT0Da$C8 z*;y3n@I_h?1*tg8_Pp(Fxtz;ngtn1F1NU(`Az}N(2%nDV8EU=lWLY~t^^ey*nO(-rBgwXqybHnxWRhF1q@9_%UUq&_S(Mx7G^ynnJN1Nr$aw2teW=qKKH|HApqPfU1 z!cEnp$dx18bx$g3k95|J$`@@AE>sYvT+V*;P_Q7kcv6XVc!8ncWM z5ic8#XArL9-EJRWJ~fyk|M8!L_^bFSmjYtGidxe$d1gTB@L*{Fnh{e!Bda7RefHFj zTxvB7v%Dwb$2$~5;bCr}eACq@!>SH_%wM~$otM^09 zLf!Ypo+&@ao~>;Bn45;i|GmhSXX$u1yhXRO!swRqd0Wlt8u@rKr6RuMI#cNp4LQ`r z?MZ1P>KNXekmODLF5lzH$0qVQHW9nZfhKZ&OV3#AyNWc4GmG94)ttj|XOtf2qtUkz<`(K>Q&r^%)lTngrGoyB7!n3iY$tVh%ACJkPs4ZK?MzN zgP;NzP-G1%vV^d>Ku`=jhAoN662p=NLdXzEz87ZReXm~C)O&xvf2`{My1%Y-etpjA zU!Usk>n?}vHJ0lw2LO%z4z@=C78?Pmc`jS58Yy}fu}?JsE(d?LLl8tYl9`#g(9{7? zkUBs>D6F%F#zxp1G=S6@0mZtGg8bx1Nd&N_075~?NavHSTUDyopIcRWdU|?hW@b)K zPNz?wCX>mjsi`ktzO1XO`}pzW@bIu|3bCnavM{-*dqnIe{)`|(PCQcfnkEz?Y*5Vx zr&M3^`o#4ni5`FaC+g~kt4sl4B{Yx0f{6$;w;^lpB4igag@V|DoDw1UjUXOLsxA+% zxQdcW`!gv<$P*C83-3V(CzF%xV(k`;rmO+Vnl%(_RiRM)>L`8)Wx;-HBvV!Vkj!wT zt`1T8gVeFg)5VB5vyAl`dCjUTi9xJ05u=)#8kKblHJD!v@+C046lBXlx*VoaFr@*L znjl&U6RTi+HH@wWfj01efMGotS_fbBVZZ=*M!;DQ{TrZnBlK(n_GakX3Z2`a{YPj; zL(5OVGKG(3@WC7!Er7Wb>UYDtJ@5ttby%pihU$I5umQRqRMBN83mJa!_#`~?hqM5A5C|z};Qm>-7YuhoAUO=E z;cznok|N;-4zA%LAquV#;4%^7NkAb3nF6GEAYKN-6^Kdz{58PcfXF0>xC!A@2up^L zI}m&i&fbSJDG>Mo0@A?$5uAJsei`7K3Eo-Yl>^6~fM+gvJOj6Ua4m!*Mc_gM=Mr#w z0gk0`;1xKOgM9_q(ZPlR`>MgZ7O-`Ic>{ai!R~t4$pni=F#iB%AHkFbKeYh56@F}o zZJn^S3pTT1Qx9zHg$@0%o&!caFc<*+FR*S1^oHRFK4=SI?I^4shgB1>QUsclpfLrg zX;?0WWinVg3rpm%cplUg3tYokXq2iL{C&8?(MSNzcMEmV{cW1-0M@?UZ@c%`s7Di= z#5-vp)UKSE+?ZK%<4fC=5`CK$uqCCfXF6#$`7Tm$V8`J!pR}$^XPPH3-1+DJzbHAh zT^^U@Qxk(1oV>e25QVj`7xD|Y<2bTG{K=s(6b`Q$rd%PPqg%#?oY_y(Nh z-u@@`rPha79tU2XJ(;rBolTwj{f>G9>6DLA`)U>{N1rTun17ZoXdrZ-xk`WKI^0k+ z%&pNEVyONNI=@H`_l^=uL(RX^nZKO;d+$x=5B#dmw*#ZX&Mrv?)__Fr-o?+$WAAZJ z2nwSH;Fk6{mssw|dl#`(P*5g9`@c;v>?iTg=`==!nf+3{4vli>Cv3%5%}v@XP0w(% z*Im`zFmf}NP< z0h94_K1=PWu&5ZzW217sL&kL+B1v(-Aio>pQ|Z0V{ESE(oj9#H(ML#o;VWVk%oF0y z8GBxJuzQMs{&amaO@@}@3b@;ohq-hsSx0L?+;oOXa^D`1GJ4TNJk8-Tn&_^kSBLW?%dv2nJ3BmI!F-+KsldezRSf3&6`z&& zsT@dnt4VaW_ncq^&yQ^UM2PQNndeZvceG1OF4fJc2@T;c6ZQ(0`w6^WRyx#b5Mq}0 zm?RVJk?`&Tzp6ofAEUlON2Y3N*2VsUrnRO7CqGh4)1vX14H&{hyl!dj(o||+>~SOf zE#*MTTYi<%KDlUbQ(vW?{67sS|wO*vT~vR1%=yd z^Y29YRBzXoWwnOcT#07(xt!2Uh}CF!6?-6xJE1mL&d2>ObF9)>JEEbpj5O|bHJ15Y zq${uFPHl-|wu*MnU~I5#FRLY@ALRPXn!vAoHM`qtod;ajkXr867{tnJdt)aN;~mfL zXKt3K^J6gc(eoFt3cMVxVg{rcb7dD@w(UJUjcJ)B{60IUEtf>Tqu_7;6-*Cw;% zj}45CA+<7T!{q(GY22pD6H@cui4mf+!5n65^yWLe|Amv#;mA4U>s1|V*M;VV)8%>-8v?0)^36y8@t-JDQt>6BDdWL0 z(xB*x0hOq%u>QnDl;7)ITe&d9-J0T1i!$l-%^bXTAeAQ+trT=mG@A#%N87_>-uCr zF6gs(Lq$KAOG>Rr)`hC~l8`z7n#7IqD$N+I&)pWpZzFFR@0Q`EgF0psjq=44HHhM8 ztoq-2$7=i8&h1NPA9>(~n`#O?qQRq&Z#VyQfWsmtk=eFWR(_3G`sP zlNq;_wnI}Tc~{n}lAP~X({0wk5rr10oV-Xr&R;2t^1xw&el_&Dhe?_mHFicQ_QS+C z_s`>l3MPk2wkMB9VB`S`UQ@}zQNpo<1ve4u)F}VZA5zU;_9X8jZ3nWq4*O=!jpIoN z*+%S}8xPFv(kd?|SIhG{umd)t(8r{!lJMn0x$MKzK{JO7?55vBD`QhH5-x~6usFH8 zrH#;d1yy16+A#z%UaE9Q4KPWV&LC1nsg2W#z9l_x$# z3C{QJTs2(p%-NR9&Jb4+GReFFV*%kNx_qkT-#K&3Lc;npeSYhHi^H04B=|;xZzTBN zGh%Gkeg4^YPH4riY~IDRk%Vjqp2Q55!{dHdYparPK%JWU4K?Hu>y1c)NlXQC+GFU0`u1zjUFmcF5|&37cB#fapZ;f~6o_14rTc^G@+ z1anubtz$Vd@hxAPW+8vBGI6?cPEny3iaK@7qytqD6g0gyI?nRg(u^qFDGbLseXohM z!lk)j$r107KAP7nl^4|o%5=KCG8$R^BA=bEhPScNgWMcNcF9SN`*AXmu;o& zR?B1FwZ-#Sm=-NG+V!v+Fm z-=u#sOHDVlpg?ZQo#3nV7LI`Z^SfvF%WE|j4v629$+u+k|4M@SL-#yxlA8YN(nx5^ z{j6_OJJ>B-p*a43UPZ6gSpPHK1C9Fc`z&%zdBg+PM}6q+>L&R#)c-54gSF=su4~#* z9bGj(~uT*_UXUe`5OAuI73w-lA;$xA;pDjM&fIKm0JZ^dPOYKu0@ zp|up;NpWK65~IGHPvNNTvJ^!+HJyz84)?M$Fs=4+Z0{>6Gmh) z?rc)ab0%x~1$#J%++q0Spu?YAve_FgVna^C0Uk9PXSJ!7+1PVTW6V3Qca z7vn!;lLD+KyKN*UbK}|$@89Jr)V4&`bv%>LWR+e}A-{>HdHJT|&C0~r4P-}uOwPJq z?w@E7ju$XdWi_X`xxx9fiulR(BneeW^JvSkO~v<2oEM+y*H@V`EDs}*+uq@YR`V2l z*66Xy@IOrT(CMw06r;sd)TYv4Qcv~Mht2*O z86O*nc;er!{>D{BojW$%emd^n!5F%1+90MbcQ|P717kwCs`?aH>MmeBEXtPL!pmGg zcd2c85QUu)zvD&MIbZ0R4>0fJ(`J#Tf1OXE`Q-2xkX*TUl)qo^&+u>R4w#G<1^@s6 literal 0 HcmV?d00001 diff --git a/tests/zero-downtime-scaling/results/1.0.0/25-node/gradual-up-https.csv b/tests/zero-downtime-scaling/results/1.0.0/25-node/gradual-up-https.csv new file mode 100644 index 000000000..8ce6259f1 --- /dev/null +++ b/tests/zero-downtime-scaling/results/1.0.0/25-node/gradual-up-https.csv @@ -0,0 +1,2225 @@ +2023-10-24 17:29:46.098048459+00:00,1 +2023-10-24 17:29:46.227145597+00:00,1 +2023-10-24 17:29:46.356004512+00:00,1 +2023-10-24 17:29:46.484211857+00:00,1 +2023-10-24 17:29:46.612416231+00:00,1 +2023-10-24 17:29:46.741406883+00:00,1 +2023-10-24 17:29:46.869938077+00:00,1 +2023-10-24 17:29:46.999603238+00:00,1 +2023-10-24 17:29:47.128624788+00:00,1 +2023-10-24 17:29:47.258939117+00:00,1 +2023-10-24 17:29:47.390522525+00:00,1 +2023-10-24 17:29:47.519936106+00:00,1 +2023-10-24 17:29:47.647457984+00:00,1 +2023-10-24 17:29:47.777300350+00:00,1 +2023-10-24 17:29:47.904952354+00:00,1 +2023-10-24 17:29:48.034050327+00:00,1 +2023-10-24 17:29:48.161341908+00:00,1 +2023-10-24 17:29:48.291533679+00:00,1 +2023-10-24 17:29:48.421456532+00:00,1 +2023-10-24 17:29:48.550448065+00:00,1 +2023-10-24 17:29:48.680263475+00:00,1 +2023-10-24 17:29:48.808496557+00:00,1 +2023-10-24 17:29:48.937719572+00:00,1 +2023-10-24 17:29:49.066542538+00:00,1 +2023-10-24 17:29:49.195566904+00:00,1 +2023-10-24 17:29:49.324148068+00:00,1 +2023-10-24 17:29:49.452414191+00:00,1 +2023-10-24 17:29:49.580301077+00:00,1 +2023-10-24 17:29:49.708192559+00:00,1 +2023-10-24 17:29:49.836548827+00:00,1 +2023-10-24 17:29:49.965378675+00:00,1 +2023-10-24 17:29:50.093952727+00:00,1 +2023-10-24 17:29:50.222481546+00:00,1 +2023-10-24 17:29:50.353245179+00:00,1 +2023-10-24 17:29:50.482348420+00:00,1 +2023-10-24 17:29:50.610907840+00:00,1 +2023-10-24 17:29:50.739153819+00:00,1 +2023-10-24 17:29:50.867908040+00:00,1 +2023-10-24 17:29:50.999449882+00:00,1 +2023-10-24 17:29:51.128859993+00:00,1 +2023-10-24 17:29:51.258935115+00:00,1 +2023-10-24 17:29:51.387481945+00:00,1 +2023-10-24 17:29:51.516355820+00:00,1 +2023-10-24 17:29:51.646368618+00:00,1 +2023-10-24 17:29:51.774196462+00:00,1 +2023-10-24 17:29:51.901596388+00:00,1 +2023-10-24 17:29:52.030629419+00:00,1 +2023-10-24 17:29:52.159718361+00:00,1 +2023-10-24 17:29:52.288529760+00:00,1 +2023-10-24 17:29:52.415755796+00:00,1 +2023-10-24 17:29:52.544363450+00:00,1 +2023-10-24 17:29:52.673331265+00:00,1 +2023-10-24 17:29:52.803045154+00:00,1 +2023-10-24 17:29:52.931815849+00:00,1 +2023-10-24 17:29:53.060071211+00:00,1 +2023-10-24 17:29:53.188775313+00:00,1 +2023-10-24 17:29:53.316920009+00:00,1 +2023-10-24 17:29:53.446910264+00:00,1 +2023-10-24 17:29:53.576384718+00:00,1 +2023-10-24 17:29:53.704604698+00:00,1 +2023-10-24 17:29:53.833865115+00:00,1 +2023-10-24 17:29:53.961540668+00:00,1 +2023-10-24 17:29:54.091774172+00:00,1 +2023-10-24 17:29:54.221993646+00:00,1 +2023-10-24 17:29:54.352205562+00:00,1 +2023-10-24 17:29:54.481931515+00:00,1 +2023-10-24 17:29:54.609848229+00:00,1 +2023-10-24 17:29:54.738853562+00:00,1 +2023-10-24 17:29:54.867875006+00:00,1 +2023-10-24 17:29:54.996323676+00:00,1 +2023-10-24 17:29:55.123598998+00:00,1 +2023-10-24 17:29:55.252782404+00:00,1 +2023-10-24 17:29:55.380034757+00:00,1 +2023-10-24 17:29:55.508180301+00:00,1 +2023-10-24 17:29:55.638159639+00:00,1 +2023-10-24 17:29:55.768199528+00:00,1 +2023-10-24 17:29:55.896869623+00:00,1 +2023-10-24 17:29:56.025954050+00:00,1 +2023-10-24 17:29:56.155919599+00:00,1 +2023-10-24 17:29:56.284476077+00:00,1 +2023-10-24 17:29:56.413846610+00:00,1 +2023-10-24 17:29:56.542656443+00:00,1 +2023-10-24 17:29:56.670509980+00:00,1 +2023-10-24 17:29:56.800215727+00:00,1 +2023-10-24 17:29:56.928959932+00:00,1 +2023-10-24 17:29:57.056486257+00:00,1 +2023-10-24 17:29:57.185274726+00:00,1 +2023-10-24 17:29:57.315357962+00:00,1 +2023-10-24 17:29:57.443751717+00:00,1 +2023-10-24 17:29:57.572006710+00:00,1 +2023-10-24 17:29:57.700761571+00:00,1 +2023-10-24 17:29:57.829746362+00:00,1 +2023-10-24 17:29:57.959129614+00:00,1 +2023-10-24 17:29:58.086833294+00:00,1 +2023-10-24 17:29:58.216270355+00:00,1 +2023-10-24 17:29:58.344620199+00:00,1 +2023-10-24 17:29:58.472072303+00:00,1 +2023-10-24 17:29:58.600172395+00:00,1 +2023-10-24 17:29:58.727664249+00:00,1 +2023-10-24 17:29:58.855402766+00:00,1 +2023-10-24 17:29:58.984200775+00:00,1 +2023-10-24 17:29:59.112687666+00:00,1 +2023-10-24 17:29:59.240389037+00:00,1 +2023-10-24 17:29:59.368263524+00:00,1 +2023-10-24 17:29:59.496317338+00:00,1 +2023-10-24 17:29:59.624957744+00:00,1 +2023-10-24 17:29:59.753627255+00:00,1 +2023-10-24 17:29:59.881600505+00:00,1 +2023-10-24 17:30:00.010069320+00:00,1 +2023-10-24 17:30:00.139397986+00:00,1 +2023-10-24 17:30:00.269139119+00:00,1 +2023-10-24 17:30:00.397197549+00:00,1 +2023-10-24 17:30:00.528350580+00:00,1 +2023-10-24 17:30:00.658862669+00:00,1 +2023-10-24 17:30:00.787424121+00:00,1 +2023-10-24 17:30:00.917884252+00:00,1 +2023-10-24 17:30:01.048039223+00:00,1 +2023-10-24 17:30:01.177054679+00:00,1 +2023-10-24 17:30:01.304684386+00:00,1 +2023-10-24 17:30:01.432660245+00:00,1 +2023-10-24 17:30:01.563146015+00:00,1 +2023-10-24 17:30:01.691594033+00:00,1 +2023-10-24 17:30:01.819130402+00:00,1 +2023-10-24 17:30:01.948092513+00:00,1 +2023-10-24 17:30:02.075940141+00:00,1 +2023-10-24 17:30:02.204409099+00:00,1 +2023-10-24 17:30:02.334017436+00:00,1 +2023-10-24 17:30:02.461286058+00:00,1 +2023-10-24 17:30:02.590796944+00:00,1 +2023-10-24 17:30:02.719600716+00:00,1 +2023-10-24 17:30:02.850147800+00:00,1 +2023-10-24 17:30:02.979324557+00:00,1 +2023-10-24 17:30:03.107551740+00:00,1 +2023-10-24 17:30:03.237028583+00:00,1 +2023-10-24 17:30:03.366108505+00:00,1 +2023-10-24 17:30:03.494842620+00:00,1 +2023-10-24 17:30:03.624203431+00:00,1 +2023-10-24 17:30:03.751940989+00:00,1 +2023-10-24 17:30:03.880994335+00:00,1 +2023-10-24 17:30:04.009633761+00:00,1 +2023-10-24 17:30:04.139385941+00:00,1 +2023-10-24 17:30:04.268407405+00:00,1 +2023-10-24 17:30:04.397285999+00:00,1 +2023-10-24 17:30:04.526220000+00:00,1 +2023-10-24 17:30:04.656418314+00:00,1 +2023-10-24 17:30:04.785777861+00:00,1 +2023-10-24 17:30:04.915389683+00:00,1 +2023-10-24 17:30:05.042896353+00:00,1 +2023-10-24 17:30:05.170575403+00:00,1 +2023-10-24 17:30:05.298892686+00:00,1 +2023-10-24 17:30:05.428150871+00:00,1 +2023-10-24 17:30:05.557909928+00:00,1 +2023-10-24 17:30:05.685426990+00:00,1 +2023-10-24 17:30:05.814026325+00:00,1 +2023-10-24 17:30:05.943258251+00:00,1 +2023-10-24 17:30:06.071701465+00:00,1 +2023-10-24 17:30:06.200667666+00:00,1 +2023-10-24 17:30:06.333868929+00:00,1 +2023-10-24 17:30:06.462675603+00:00,1 +2023-10-24 17:30:06.592154255+00:00,1 +2023-10-24 17:30:06.722509194+00:00,1 +2023-10-24 17:30:06.853500138+00:00,1 +2023-10-24 17:30:06.982942305+00:00,1 +2023-10-24 17:30:07.115844892+00:00,1 +2023-10-24 17:30:07.244341099+00:00,1 +2023-10-24 17:30:07.374441974+00:00,1 +2023-10-24 17:30:07.502052555+00:00,1 +2023-10-24 17:30:07.629888160+00:00,1 +2023-10-24 17:30:07.757959878+00:00,1 +2023-10-24 17:30:07.886937493+00:00,1 +2023-10-24 17:30:08.015767826+00:00,1 +2023-10-24 17:30:08.143963583+00:00,1 +2023-10-24 17:30:08.273550554+00:00,1 +2023-10-24 17:30:08.401736007+00:00,1 +2023-10-24 17:30:08.531888631+00:00,1 +2023-10-24 17:30:08.661100826+00:00,1 +2023-10-24 17:30:08.789442208+00:00,1 +2023-10-24 17:30:08.917279595+00:00,1 +2023-10-24 17:30:09.045954664+00:00,1 +2023-10-24 17:30:09.173336342+00:00,1 +2023-10-24 17:30:09.301955906+00:00,1 +2023-10-24 17:30:09.429472707+00:00,1 +2023-10-24 17:30:09.557301412+00:00,1 +2023-10-24 17:30:09.686420683+00:00,1 +2023-10-24 17:30:09.815300626+00:00,1 +2023-10-24 17:30:09.943880461+00:00,1 +2023-10-24 17:30:10.072181857+00:00,1 +2023-10-24 17:30:10.199764855+00:00,1 +2023-10-24 17:30:10.327575164+00:00,1 +2023-10-24 17:30:10.454514840+00:00,1 +2023-10-24 17:30:10.582204737+00:00,1 +2023-10-24 17:30:10.710441256+00:00,1 +2023-10-24 17:30:10.839598285+00:00,1 +2023-10-24 17:30:10.968437963+00:00,1 +2023-10-24 17:30:11.098331527+00:00,1 +2023-10-24 17:30:11.226637963+00:00,1 +2023-10-24 17:30:11.354430442+00:00,1 +2023-10-24 17:30:11.483310566+00:00,1 +2023-10-24 17:30:11.610772931+00:00,1 +2023-10-24 17:30:11.739473619+00:00,1 +2023-10-24 17:30:11.868665362+00:00,1 +2023-10-24 17:30:11.997008891+00:00,1 +2023-10-24 17:30:12.125453800+00:00,1 +2023-10-24 17:30:12.254423792+00:00,1 +2023-10-24 17:30:12.382543901+00:00,1 +2023-10-24 17:30:12.511586323+00:00,1 +2023-10-24 17:30:12.641393535+00:00,1 +2023-10-24 17:30:12.770890720+00:00,1 +2023-10-24 17:30:12.901485281+00:00,1 +2023-10-24 17:30:13.031414075+00:00,1 +2023-10-24 17:30:13.160461658+00:00,1 +2023-10-24 17:30:13.291797294+00:00,1 +2023-10-24 17:30:13.421105478+00:00,1 +2023-10-24 17:30:13.551468988+00:00,1 +2023-10-24 17:30:13.680776757+00:00,1 +2023-10-24 17:30:13.810390770+00:00,1 +2023-10-24 17:30:13.939529315+00:00,1 +2023-10-24 17:30:14.069331456+00:00,1 +2023-10-24 17:30:14.198099538+00:00,1 +2023-10-24 17:30:14.327617595+00:00,1 +2023-10-24 17:30:14.456498325+00:00,1 +2023-10-24 17:30:14.585756674+00:00,1 +2023-10-24 17:30:14.713825188+00:00,1 +2023-10-24 17:30:14.843406724+00:00,1 +2023-10-24 17:30:14.971423407+00:00,1 +2023-10-24 17:30:15.100084394+00:00,1 +2023-10-24 17:30:15.229058051+00:00,1 +2023-10-24 17:30:15.359840793+00:00,1 +2023-10-24 17:30:15.488824091+00:00,1 +2023-10-24 17:30:15.617665580+00:00,1 +2023-10-24 17:30:15.745587010+00:00,1 +2023-10-24 17:30:15.873316361+00:00,1 +2023-10-24 17:30:16.001958265+00:00,1 +2023-10-24 17:30:16.130279306+00:00,1 +2023-10-24 17:30:16.257971092+00:00,1 +2023-10-24 17:30:16.384947497+00:00,1 +2023-10-24 17:30:16.511982571+00:00,1 +2023-10-24 17:30:16.640003197+00:00,1 +2023-10-24 17:30:16.769773459+00:00,1 +2023-10-24 17:30:16.899135131+00:00,1 +2023-10-24 17:30:17.028308569+00:00,1 +2023-10-24 17:30:17.157769954+00:00,1 +2023-10-24 17:30:17.285716711+00:00,1 +2023-10-24 17:30:17.415117891+00:00,1 +2023-10-24 17:30:17.544027099+00:00,1 +2023-10-24 17:30:17.673369474+00:00,1 +2023-10-24 17:30:17.801720661+00:00,1 +2023-10-24 17:30:17.929237372+00:00,1 +2023-10-24 17:30:18.058839715+00:00,1 +2023-10-24 17:30:18.185967925+00:00,1 +2023-10-24 17:30:18.318683835+00:00,1 +2023-10-24 17:30:18.447163491+00:00,1 +2023-10-24 17:30:18.574997692+00:00,1 +2023-10-24 17:30:18.702625134+00:00,1 +2023-10-24 17:30:18.830412559+00:00,1 +2023-10-24 17:30:18.958499207+00:00,1 +2023-10-24 17:30:19.085462268+00:00,1 +2023-10-24 17:30:19.212700736+00:00,1 +2023-10-24 17:30:19.340930728+00:00,1 +2023-10-24 17:30:19.471228367+00:00,1 +2023-10-24 17:30:19.598960197+00:00,1 +2023-10-24 17:30:19.727733157+00:00,1 +2023-10-24 17:30:19.855117081+00:00,1 +2023-10-24 17:30:19.983062634+00:00,1 +2023-10-24 17:30:20.112879318+00:00,1 +2023-10-24 17:30:20.243326864+00:00,1 +2023-10-24 17:30:20.373245009+00:00,1 +2023-10-24 17:30:20.504191395+00:00,1 +2023-10-24 17:30:20.633580974+00:00,1 +2023-10-24 17:30:20.764784900+00:00,1 +2023-10-24 17:30:20.894986620+00:00,1 +2023-10-24 17:30:21.023952370+00:00,1 +2023-10-24 17:30:21.152232751+00:00,1 +2023-10-24 17:30:21.282000008+00:00,1 +2023-10-24 17:30:21.410779808+00:00,1 +2023-10-24 17:30:21.538743355+00:00,1 +2023-10-24 17:30:21.668431453+00:00,1 +2023-10-24 17:30:21.796573574+00:00,1 +2023-10-24 17:30:21.925349193+00:00,1 +2023-10-24 17:30:22.052208611+00:00,1 +2023-10-24 17:30:22.182182399+00:00,1 +2023-10-24 17:30:22.310094365+00:00,1 +2023-10-24 17:30:22.438194375+00:00,1 +2023-10-24 17:30:22.566773931+00:00,1 +2023-10-24 17:30:22.694548833+00:00,1 +2023-10-24 17:30:22.821316332+00:00,1 +2023-10-24 17:30:22.951274972+00:00,1 +2023-10-24 17:30:23.080762414+00:00,1 +2023-10-24 17:30:23.209286929+00:00,1 +2023-10-24 17:30:23.337441432+00:00,1 +2023-10-24 17:30:23.465631346+00:00,1 +2023-10-24 17:30:23.593468384+00:00,1 +2023-10-24 17:30:23.722697918+00:00,1 +2023-10-24 17:30:23.851741850+00:00,1 +2023-10-24 17:30:23.981448599+00:00,1 +2023-10-24 17:30:24.109942956+00:00,1 +2023-10-24 17:30:24.240265630+00:00,1 +2023-10-24 17:30:24.368743640+00:00,1 +2023-10-24 17:30:24.497528981+00:00,1 +2023-10-24 17:30:24.627195930+00:00,1 +2023-10-24 17:30:24.753954170+00:00,1 +2023-10-24 17:30:24.881470710+00:00,1 +2023-10-24 17:30:25.008472328+00:00,1 +2023-10-24 17:30:25.136361150+00:00,1 +2023-10-24 17:30:25.263007033+00:00,1 +2023-10-24 17:30:25.390141606+00:00,1 +2023-10-24 17:30:25.517909248+00:00,1 +2023-10-24 17:30:25.647959614+00:00,1 +2023-10-24 17:30:25.775572292+00:00,1 +2023-10-24 17:30:25.902857456+00:00,1 +2023-10-24 17:30:26.031327220+00:00,1 +2023-10-24 17:30:26.161628056+00:00,1 +2023-10-24 17:30:26.292077855+00:00,1 +2023-10-24 17:30:26.422738595+00:00,1 +2023-10-24 17:30:26.553226165+00:00,1 +2023-10-24 17:30:26.681805445+00:00,1 +2023-10-24 17:30:26.812785623+00:00,1 +2023-10-24 17:30:26.940475558+00:00,1 +2023-10-24 17:30:27.069946341+00:00,1 +2023-10-24 17:30:27.200509076+00:00,1 +2023-10-24 17:30:27.330760854+00:00,1 +2023-10-24 17:30:27.461738340+00:00,1 +2023-10-24 17:30:27.592396117+00:00,1 +2023-10-24 17:30:27.721860865+00:00,1 +2023-10-24 17:30:27.851606985+00:00,1 +2023-10-24 17:30:27.982492570+00:00,1 +2023-10-24 17:30:28.112790382+00:00,1 +2023-10-24 17:30:28.242579143+00:00,1 +2023-10-24 17:30:28.370628627+00:00,1 +2023-10-24 17:30:28.500404947+00:00,1 +2023-10-24 17:30:28.628582313+00:00,1 +2023-10-24 17:30:28.759059751+00:00,1 +2023-10-24 17:30:28.888916449+00:00,1 +2023-10-24 17:30:29.016298504+00:00,1 +2023-10-24 17:30:29.144540623+00:00,1 +2023-10-24 17:30:29.274059405+00:00,1 +2023-10-24 17:30:29.402832893+00:00,1 +2023-10-24 17:30:29.530362389+00:00,1 +2023-10-24 17:30:29.658675987+00:00,1 +2023-10-24 17:30:29.788770276+00:00,1 +2023-10-24 17:30:29.917187132+00:00,1 +2023-10-24 17:30:30.045167521+00:00,1 +2023-10-24 17:30:30.172939373+00:00,1 +2023-10-24 17:30:30.300592907+00:00,1 +2023-10-24 17:30:30.430259453+00:00,1 +2023-10-24 17:30:30.560726149+00:00,1 +2023-10-24 17:30:30.689295397+00:00,1 +2023-10-24 17:30:30.819205412+00:00,1 +2023-10-24 17:30:30.948041931+00:00,1 +2023-10-24 17:30:31.076571632+00:00,1 +2023-10-24 17:30:31.204358148+00:00,1 +2023-10-24 17:30:31.333586800+00:00,1 +2023-10-24 17:30:31.461423026+00:00,1 +2023-10-24 17:30:31.589150977+00:00,1 +2023-10-24 17:30:31.717252359+00:00,1 +2023-10-24 17:30:31.847375434+00:00,1 +2023-10-24 17:30:31.976802329+00:00,1 +2023-10-24 17:30:32.104806099+00:00,1 +2023-10-24 17:30:32.232604526+00:00,1 +2023-10-24 17:30:32.360289322+00:00,1 +2023-10-24 17:30:32.490453892+00:00,1 +2023-10-24 17:30:32.619826872+00:00,1 +2023-10-24 17:30:32.749281681+00:00,1 +2023-10-24 17:30:32.878063125+00:00,1 +2023-10-24 17:30:33.006196144+00:00,1 +2023-10-24 17:30:33.136174555+00:00,1 +2023-10-24 17:30:33.266238714+00:00,1 +2023-10-24 17:30:33.396400440+00:00,1 +2023-10-24 17:30:33.526368879+00:00,1 +2023-10-24 17:30:33.654713790+00:00,1 +2023-10-24 17:30:33.786896458+00:00,1 +2023-10-24 17:30:33.917080070+00:00,1 +2023-10-24 17:30:34.047431050+00:00,1 +2023-10-24 17:30:34.177084371+00:00,1 +2023-10-24 17:30:34.307721615+00:00,1 +2023-10-24 17:30:34.435797729+00:00,1 +2023-10-24 17:30:34.563947894+00:00,1 +2023-10-24 17:30:34.691451162+00:00,1 +2023-10-24 17:30:34.820612674+00:00,1 +2023-10-24 17:30:34.948244162+00:00,1 +2023-10-24 17:30:35.077240370+00:00,1 +2023-10-24 17:30:35.205735984+00:00,1 +2023-10-24 17:30:35.333253282+00:00,1 +2023-10-24 17:30:35.462882005+00:00,1 +2023-10-24 17:30:35.590714461+00:00,1 +2023-10-24 17:30:35.718358665+00:00,1 +2023-10-24 17:30:35.846380776+00:00,1 +2023-10-24 17:30:35.977090339+00:00,1 +2023-10-24 17:30:36.107293687+00:00,1 +2023-10-24 17:30:36.236634197+00:00,1 +2023-10-24 17:30:36.368564546+00:00,1 +2023-10-24 17:30:36.496531790+00:00,1 +2023-10-24 17:30:36.624204750+00:00,1 +2023-10-24 17:30:36.751840030+00:00,1 +2023-10-24 17:30:36.880205511+00:00,1 +2023-10-24 17:30:37.008208157+00:00,1 +2023-10-24 17:30:37.136300996+00:00,1 +2023-10-24 17:30:37.263730678+00:00,1 +2023-10-24 17:30:37.390019614+00:00,1 +2023-10-24 17:30:37.517772270+00:00,1 +2023-10-24 17:30:37.645145281+00:00,1 +2023-10-24 17:30:37.773357163+00:00,1 +2023-10-24 17:30:37.900757529+00:00,1 +2023-10-24 17:30:38.027752902+00:00,1 +2023-10-24 17:30:38.155218958+00:00,1 +2023-10-24 17:30:38.284009136+00:00,1 +2023-10-24 17:30:38.412461193+00:00,1 +2023-10-24 17:30:38.540217319+00:00,1 +2023-10-24 17:30:38.670848795+00:00,1 +2023-10-24 17:30:38.800890587+00:00,1 +2023-10-24 17:30:38.929340449+00:00,1 +2023-10-24 17:30:39.060080561+00:00,1 +2023-10-24 17:30:39.190065293+00:00,1 +2023-10-24 17:30:39.318560869+00:00,1 +2023-10-24 17:30:39.447182649+00:00,1 +2023-10-24 17:30:39.576458767+00:00,1 +2023-10-24 17:30:39.705435604+00:00,1 +2023-10-24 17:30:39.833706618+00:00,1 +2023-10-24 17:30:39.963033063+00:00,1 +2023-10-24 17:30:40.092364785+00:00,1 +2023-10-24 17:30:40.220284549+00:00,1 +2023-10-24 17:30:40.351433532+00:00,1 +2023-10-24 17:30:40.480283694+00:00,1 +2023-10-24 17:30:40.609194652+00:00,1 +2023-10-24 17:30:40.738098798+00:00,1 +2023-10-24 17:30:40.867834160+00:00,1 +2023-10-24 17:30:40.995699695+00:00,1 +2023-10-24 17:30:41.124859451+00:00,1 +2023-10-24 17:30:41.254111322+00:00,1 +2023-10-24 17:30:41.382558689+00:00,1 +2023-10-24 17:30:41.512404271+00:00,1 +2023-10-24 17:30:41.641324945+00:00,1 +2023-10-24 17:30:41.770284691+00:00,1 +2023-10-24 17:30:41.899199865+00:00,1 +2023-10-24 17:30:42.028124550+00:00,1 +2023-10-24 17:30:42.156557641+00:00,1 +2023-10-24 17:30:42.284959406+00:00,1 +2023-10-24 17:30:42.413157625+00:00,1 +2023-10-24 17:30:42.542003681+00:00,1 +2023-10-24 17:30:42.670921279+00:00,1 +2023-10-24 17:30:42.801242655+00:00,1 +2023-10-24 17:30:42.931055461+00:00,1 +2023-10-24 17:30:43.058703024+00:00,1 +2023-10-24 17:30:43.186787025+00:00,1 +2023-10-24 17:30:43.315220880+00:00,1 +2023-10-24 17:30:43.445106091+00:00,1 +2023-10-24 17:30:43.573451479+00:00,1 +2023-10-24 17:30:43.700815400+00:00,0 +2023-10-24 17:30:45.714221547+00:00,1 +2023-10-24 17:30:45.840950527+00:00,1 +2023-10-24 17:30:45.969381582+00:00,1 +2023-10-24 17:30:46.096208217+00:00,1 +2023-10-24 17:30:46.224020878+00:00,1 +2023-10-24 17:30:46.351371242+00:00,1 +2023-10-24 17:30:46.477481446+00:00,1 +2023-10-24 17:30:46.603096949+00:00,0 +2023-10-24 17:30:48.615229055+00:00,1 +2023-10-24 17:30:48.741780294+00:00,1 +2023-10-24 17:30:48.867251617+00:00,1 +2023-10-24 17:30:48.995555777+00:00,1 +2023-10-24 17:30:49.122169991+00:00,1 +2023-10-24 17:30:49.248958996+00:00,1 +2023-10-24 17:30:49.374435866+00:00,1 +2023-10-24 17:30:49.501372637+00:00,1 +2023-10-24 17:30:49.626851715+00:00,1 +2023-10-24 17:30:49.753494028+00:00,1 +2023-10-24 17:30:49.880920693+00:00,1 +2023-10-24 17:30:50.007191473+00:00,1 +2023-10-24 17:30:50.133628517+00:00,0 +2023-10-24 17:30:52.146882114+00:00,1 +2023-10-24 17:30:52.273272776+00:00,1 +2023-10-24 17:30:52.399096163+00:00,1 +2023-10-24 17:30:52.525688463+00:00,1 +2023-10-24 17:30:52.651643139+00:00,1 +2023-10-24 17:30:52.778899973+00:00,1 +2023-10-24 17:30:52.906001471+00:00,1 +2023-10-24 17:30:53.031963729+00:00,1 +2023-10-24 17:30:53.157277342+00:00,1 +2023-10-24 17:30:53.282976636+00:00,1 +2023-10-24 17:30:53.408148874+00:00,1 +2023-10-24 17:30:53.533441792+00:00,1 +2023-10-24 17:30:53.658923347+00:00,1 +2023-10-24 17:30:53.784193212+00:00,1 +2023-10-24 17:30:53.910152887+00:00,1 +2023-10-24 17:30:54.035984193+00:00,1 +2023-10-24 17:30:54.161889156+00:00,1 +2023-10-24 17:30:54.287413657+00:00,1 +2023-10-24 17:30:54.412568276+00:00,0 +2023-10-24 17:30:56.424431866+00:00,1 +2023-10-24 17:30:56.551452584+00:00,1 +2023-10-24 17:30:56.678360976+00:00,1 +2023-10-24 17:30:56.806856028+00:00,1 +2023-10-24 17:30:56.933013501+00:00,1 +2023-10-24 17:30:57.058599024+00:00,1 +2023-10-24 17:30:57.184290026+00:00,1 +2023-10-24 17:30:57.309080441+00:00,1 +2023-10-24 17:30:57.435678356+00:00,0 +2023-10-24 17:30:59.448753215+00:00,1 +2023-10-24 17:30:59.574343319+00:00,1 +2023-10-24 17:30:59.701261909+00:00,1 +2023-10-24 17:30:59.827673469+00:00,1 +2023-10-24 17:30:59.953879471+00:00,1 +2023-10-24 17:31:00.079152195+00:00,1 +2023-10-24 17:31:00.204824625+00:00,1 +2023-10-24 17:31:00.330159396+00:00,1 +2023-10-24 17:31:00.454586458+00:00,1 +2023-10-24 17:31:00.579650032+00:00,1 +2023-10-24 17:31:00.705387002+00:00,1 +2023-10-24 17:31:00.830637794+00:00,1 +2023-10-24 17:31:00.955707942+00:00,1 +2023-10-24 17:31:01.080684996+00:00,1 +2023-10-24 17:31:01.206409431+00:00,1 +2023-10-24 17:31:01.330902037+00:00,1 +2023-10-24 17:31:01.456618852+00:00,1 +2023-10-24 17:31:01.583081929+00:00,1 +2023-10-24 17:31:01.709182250+00:00,1 +2023-10-24 17:31:01.834897032+00:00,1 +2023-10-24 17:31:01.960708280+00:00,1 +2023-10-24 17:31:02.086499075+00:00,1 +2023-10-24 17:31:02.212221697+00:00,1 +2023-10-24 17:31:02.337232203+00:00,1 +2023-10-24 17:31:02.463360806+00:00,1 +2023-10-24 17:31:02.589232896+00:00,1 +2023-10-24 17:31:02.714750581+00:00,1 +2023-10-24 17:31:02.841315445+00:00,1 +2023-10-24 17:31:02.967277361+00:00,1 +2023-10-24 17:31:03.093125125+00:00,1 +2023-10-24 17:31:03.218611362+00:00,1 +2023-10-24 17:31:03.343166928+00:00,1 +2023-10-24 17:31:03.469006578+00:00,1 +2023-10-24 17:31:03.593798683+00:00,1 +2023-10-24 17:31:03.720238586+00:00,1 +2023-10-24 17:31:03.846271339+00:00,1 +2023-10-24 17:31:03.971636005+00:00,0 +2023-10-24 17:31:05.984412001+00:00,1 +2023-10-24 17:31:06.110128498+00:00,1 +2023-10-24 17:31:06.235256875+00:00,1 +2023-10-24 17:31:06.361090913+00:00,1 +2023-10-24 17:31:06.487840916+00:00,1 +2023-10-24 17:31:06.613248413+00:00,0 +2023-10-24 17:31:08.626159585+00:00,1 +2023-10-24 17:31:08.751949192+00:00,1 +2023-10-24 17:31:08.877167164+00:00,1 +2023-10-24 17:31:09.002924268+00:00,1 +2023-10-24 17:31:09.128700019+00:00,1 +2023-10-24 17:31:09.254406277+00:00,1 +2023-10-24 17:31:09.380591685+00:00,1 +2023-10-24 17:31:09.506173372+00:00,1 +2023-10-24 17:31:09.630646277+00:00,1 +2023-10-24 17:31:09.755996331+00:00,1 +2023-10-24 17:31:09.881221254+00:00,1 +2023-10-24 17:31:10.006485667+00:00,1 +2023-10-24 17:31:10.131969021+00:00,1 +2023-10-24 17:31:10.257632075+00:00,1 +2023-10-24 17:31:10.381981148+00:00,1 +2023-10-24 17:31:10.506879648+00:00,1 +2023-10-24 17:31:10.631596054+00:00,1 +2023-10-24 17:31:10.756881470+00:00,1 +2023-10-24 17:31:10.883738703+00:00,1 +2023-10-24 17:31:11.008925683+00:00,1 +2023-10-24 17:31:11.133828199+00:00,1 +2023-10-24 17:31:11.260980928+00:00,1 +2023-10-24 17:31:11.387220269+00:00,1 +2023-10-24 17:31:11.512975879+00:00,1 +2023-10-24 17:31:11.638478392+00:00,1 +2023-10-24 17:31:11.762652658+00:00,1 +2023-10-24 17:31:11.887848837+00:00,1 +2023-10-24 17:31:12.013873280+00:00,1 +2023-10-24 17:31:12.140306849+00:00,1 +2023-10-24 17:31:12.266102885+00:00,1 +2023-10-24 17:31:12.391117085+00:00,1 +2023-10-24 17:31:12.516037516+00:00,1 +2023-10-24 17:31:12.641292388+00:00,1 +2023-10-24 17:31:12.766016377+00:00,1 +2023-10-24 17:31:12.891935475+00:00,1 +2023-10-24 17:31:13.016765604+00:00,1 +2023-10-24 17:31:13.143707534+00:00,1 +2023-10-24 17:31:13.269685478+00:00,1 +2023-10-24 17:31:13.394843033+00:00,1 +2023-10-24 17:31:13.519372510+00:00,1 +2023-10-24 17:31:13.644358220+00:00,1 +2023-10-24 17:31:13.770443942+00:00,1 +2023-10-24 17:31:13.895317664+00:00,1 +2023-10-24 17:31:14.020861330+00:00,1 +2023-10-24 17:31:14.146285212+00:00,1 +2023-10-24 17:31:14.271912671+00:00,1 +2023-10-24 17:31:14.397106297+00:00,1 +2023-10-24 17:31:14.521375359+00:00,1 +2023-10-24 17:31:14.646421473+00:00,1 +2023-10-24 17:31:14.772122751+00:00,1 +2023-10-24 17:31:14.897179702+00:00,1 +2023-10-24 17:31:15.022046615+00:00,1 +2023-10-24 17:31:15.147200718+00:00,1 +2023-10-24 17:31:15.272847474+00:00,1 +2023-10-24 17:31:15.397252278+00:00,1 +2023-10-24 17:31:15.521769642+00:00,1 +2023-10-24 17:31:15.646896743+00:00,1 +2023-10-24 17:31:15.772350543+00:00,1 +2023-10-24 17:31:15.897929019+00:00,1 +2023-10-24 17:31:16.022242139+00:00,1 +2023-10-24 17:31:16.148035277+00:00,1 +2023-10-24 17:31:16.272880519+00:00,1 +2023-10-24 17:31:16.400100294+00:00,1 +2023-10-24 17:31:16.525270005+00:00,1 +2023-10-24 17:31:16.650928012+00:00,1 +2023-10-24 17:31:16.776287080+00:00,1 +2023-10-24 17:31:16.900994372+00:00,1 +2023-10-24 17:31:17.026792760+00:00,1 +2023-10-24 17:31:17.151566262+00:00,1 +2023-10-24 17:31:17.277082402+00:00,1 +2023-10-24 17:31:17.401910093+00:00,1 +2023-10-24 17:31:17.527221082+00:00,1 +2023-10-24 17:31:17.652407185+00:00,1 +2023-10-24 17:31:17.777371765+00:00,1 +2023-10-24 17:31:17.903785901+00:00,1 +2023-10-24 17:31:18.029856586+00:00,1 +2023-10-24 17:31:18.156068603+00:00,1 +2023-10-24 17:31:18.284060109+00:00,1 +2023-10-24 17:31:18.411638754+00:00,1 +2023-10-24 17:31:18.539071811+00:00,1 +2023-10-24 17:31:18.665909593+00:00,1 +2023-10-24 17:31:18.792834404+00:00,1 +2023-10-24 17:31:18.919952194+00:00,1 +2023-10-24 17:31:19.046827781+00:00,1 +2023-10-24 17:31:19.173042669+00:00,1 +2023-10-24 17:31:19.300283138+00:00,1 +2023-10-24 17:31:19.428678154+00:00,1 +2023-10-24 17:31:19.555565740+00:00,1 +2023-10-24 17:31:19.681825477+00:00,1 +2023-10-24 17:31:19.808443088+00:00,1 +2023-10-24 17:31:19.934249934+00:00,1 +2023-10-24 17:31:20.061237934+00:00,1 +2023-10-24 17:31:20.187357539+00:00,1 +2023-10-24 17:31:20.313856061+00:00,1 +2023-10-24 17:31:20.441030175+00:00,1 +2023-10-24 17:31:20.566754714+00:00,1 +2023-10-24 17:31:20.696158027+00:00,1 +2023-10-24 17:31:20.823335011+00:00,1 +2023-10-24 17:31:20.951355030+00:00,1 +2023-10-24 17:31:21.079934864+00:00,1 +2023-10-24 17:31:21.207205082+00:00,1 +2023-10-24 17:31:21.333959845+00:00,1 +2023-10-24 17:31:21.461400231+00:00,1 +2023-10-24 17:31:21.588599785+00:00,1 +2023-10-24 17:31:21.715995211+00:00,1 +2023-10-24 17:31:21.843552544+00:00,1 +2023-10-24 17:31:21.971254183+00:00,1 +2023-10-24 17:31:22.098416758+00:00,1 +2023-10-24 17:31:22.225136668+00:00,1 +2023-10-24 17:31:22.352308334+00:00,1 +2023-10-24 17:31:22.479551254+00:00,1 +2023-10-24 17:31:22.607296743+00:00,1 +2023-10-24 17:31:22.735434485+00:00,1 +2023-10-24 17:31:22.863646209+00:00,1 +2023-10-24 17:31:22.990825510+00:00,1 +2023-10-24 17:31:23.119326725+00:00,1 +2023-10-24 17:31:23.247353244+00:00,1 +2023-10-24 17:31:23.376800232+00:00,1 +2023-10-24 17:31:23.504829593+00:00,1 +2023-10-24 17:31:23.632739672+00:00,1 +2023-10-24 17:31:23.760209143+00:00,1 +2023-10-24 17:31:23.887272698+00:00,1 +2023-10-24 17:31:24.013010048+00:00,1 +2023-10-24 17:31:24.139756092+00:00,1 +2023-10-24 17:31:24.267851530+00:00,1 +2023-10-24 17:31:24.393587750+00:00,1 +2023-10-24 17:31:24.520438645+00:00,1 +2023-10-24 17:31:24.646553359+00:00,1 +2023-10-24 17:31:24.772907859+00:00,1 +2023-10-24 17:31:24.900087527+00:00,1 +2023-10-24 17:31:25.027267868+00:00,1 +2023-10-24 17:31:25.154471634+00:00,1 +2023-10-24 17:31:25.282162544+00:00,1 +2023-10-24 17:31:25.410713675+00:00,1 +2023-10-24 17:31:25.538529506+00:00,1 +2023-10-24 17:31:25.666770124+00:00,1 +2023-10-24 17:31:25.792665692+00:00,1 +2023-10-24 17:31:25.918795895+00:00,1 +2023-10-24 17:31:26.044594187+00:00,1 +2023-10-24 17:31:26.172392980+00:00,1 +2023-10-24 17:31:26.300156560+00:00,1 +2023-10-24 17:31:26.426125060+00:00,1 +2023-10-24 17:31:26.552309262+00:00,1 +2023-10-24 17:31:26.678928216+00:00,1 +2023-10-24 17:31:26.805054618+00:00,1 +2023-10-24 17:31:26.931441634+00:00,1 +2023-10-24 17:31:27.058147378+00:00,1 +2023-10-24 17:31:27.186266936+00:00,1 +2023-10-24 17:31:27.313065932+00:00,1 +2023-10-24 17:31:27.440012239+00:00,1 +2023-10-24 17:31:27.566103676+00:00,1 +2023-10-24 17:31:27.692033383+00:00,1 +2023-10-24 17:31:27.818059482+00:00,1 +2023-10-24 17:31:27.944820699+00:00,1 +2023-10-24 17:31:28.072048661+00:00,1 +2023-10-24 17:31:28.197696761+00:00,1 +2023-10-24 17:31:28.324014507+00:00,1 +2023-10-24 17:31:28.451378462+00:00,1 +2023-10-24 17:31:28.578613785+00:00,1 +2023-10-24 17:31:28.705203907+00:00,1 +2023-10-24 17:31:28.831486932+00:00,1 +2023-10-24 17:31:28.958024693+00:00,1 +2023-10-24 17:31:29.085050092+00:00,1 +2023-10-24 17:31:29.212676208+00:00,1 +2023-10-24 17:31:29.338027885+00:00,1 +2023-10-24 17:31:29.464888473+00:00,1 +2023-10-24 17:31:29.591286740+00:00,1 +2023-10-24 17:31:29.717485245+00:00,1 +2023-10-24 17:31:29.846198569+00:00,1 +2023-10-24 17:31:29.973548836+00:00,1 +2023-10-24 17:31:30.099565483+00:00,1 +2023-10-24 17:31:30.225480440+00:00,1 +2023-10-24 17:31:30.350956351+00:00,1 +2023-10-24 17:31:30.476904696+00:00,1 +2023-10-24 17:31:30.602509954+00:00,1 +2023-10-24 17:31:30.728947933+00:00,1 +2023-10-24 17:31:30.855878081+00:00,1 +2023-10-24 17:31:30.982003842+00:00,1 +2023-10-24 17:31:31.107918983+00:00,1 +2023-10-24 17:31:31.233392276+00:00,1 +2023-10-24 17:31:31.360103395+00:00,1 +2023-10-24 17:31:31.486526857+00:00,1 +2023-10-24 17:31:31.612176242+00:00,1 +2023-10-24 17:31:31.739130998+00:00,1 +2023-10-24 17:31:31.866220898+00:00,1 +2023-10-24 17:31:31.992922352+00:00,1 +2023-10-24 17:31:32.118793839+00:00,1 +2023-10-24 17:31:32.247596790+00:00,1 +2023-10-24 17:31:32.372864875+00:00,1 +2023-10-24 17:31:32.499084935+00:00,1 +2023-10-24 17:31:32.625850178+00:00,1 +2023-10-24 17:31:32.752020760+00:00,1 +2023-10-24 17:31:32.878185726+00:00,1 +2023-10-24 17:31:33.004326954+00:00,1 +2023-10-24 17:31:33.130777109+00:00,1 +2023-10-24 17:31:33.256864267+00:00,1 +2023-10-24 17:31:33.382349508+00:00,1 +2023-10-24 17:31:33.508572617+00:00,1 +2023-10-24 17:31:33.635049910+00:00,1 +2023-10-24 17:31:33.761009962+00:00,1 +2023-10-24 17:31:33.887110304+00:00,1 +2023-10-24 17:31:34.013786136+00:00,1 +2023-10-24 17:31:34.139811310+00:00,1 +2023-10-24 17:31:34.266122907+00:00,1 +2023-10-24 17:31:34.393627458+00:00,1 +2023-10-24 17:31:34.519682375+00:00,1 +2023-10-24 17:31:34.645857400+00:00,1 +2023-10-24 17:31:34.773094651+00:00,1 +2023-10-24 17:31:34.900577267+00:00,1 +2023-10-24 17:31:35.027122237+00:00,1 +2023-10-24 17:31:35.153760472+00:00,1 +2023-10-24 17:31:35.280144552+00:00,1 +2023-10-24 17:31:35.406267690+00:00,1 +2023-10-24 17:31:35.532534322+00:00,1 +2023-10-24 17:31:35.658166365+00:00,1 +2023-10-24 17:31:35.785419161+00:00,1 +2023-10-24 17:31:35.912874686+00:00,1 +2023-10-24 17:31:36.039508443+00:00,1 +2023-10-24 17:31:36.165877789+00:00,1 +2023-10-24 17:31:36.291241324+00:00,1 +2023-10-24 17:31:36.418553462+00:00,1 +2023-10-24 17:31:36.545478885+00:00,1 +2023-10-24 17:31:36.671649037+00:00,1 +2023-10-24 17:31:36.799247206+00:00,1 +2023-10-24 17:31:36.925905570+00:00,1 +2023-10-24 17:31:37.052030540+00:00,1 +2023-10-24 17:31:37.178067727+00:00,1 +2023-10-24 17:31:37.304575908+00:00,1 +2023-10-24 17:31:37.430904253+00:00,1 +2023-10-24 17:31:37.557991833+00:00,1 +2023-10-24 17:31:37.684166256+00:00,1 +2023-10-24 17:31:37.811734897+00:00,1 +2023-10-24 17:31:37.938590773+00:00,1 +2023-10-24 17:31:38.065613195+00:00,1 +2023-10-24 17:31:38.192804064+00:00,1 +2023-10-24 17:31:38.319136363+00:00,1 +2023-10-24 17:31:38.445458732+00:00,1 +2023-10-24 17:31:38.571249355+00:00,1 +2023-10-24 17:31:38.697648871+00:00,1 +2023-10-24 17:31:38.823895576+00:00,1 +2023-10-24 17:31:38.950122812+00:00,1 +2023-10-24 17:31:39.076514139+00:00,1 +2023-10-24 17:31:39.203872307+00:00,1 +2023-10-24 17:31:39.329885872+00:00,1 +2023-10-24 17:31:39.456269397+00:00,1 +2023-10-24 17:31:39.584059637+00:00,1 +2023-10-24 17:31:39.711113556+00:00,1 +2023-10-24 17:31:39.838953481+00:00,1 +2023-10-24 17:31:39.965435060+00:00,1 +2023-10-24 17:31:40.093983413+00:00,1 +2023-10-24 17:31:40.220250081+00:00,1 +2023-10-24 17:31:40.346630052+00:00,1 +2023-10-24 17:31:40.473104446+00:00,1 +2023-10-24 17:31:40.600120871+00:00,1 +2023-10-24 17:31:40.726622052+00:00,1 +2023-10-24 17:31:40.852523207+00:00,1 +2023-10-24 17:31:40.979769042+00:00,1 +2023-10-24 17:31:41.107230260+00:00,1 +2023-10-24 17:31:41.232884427+00:00,1 +2023-10-24 17:31:41.359679069+00:00,1 +2023-10-24 17:31:41.487456729+00:00,1 +2023-10-24 17:31:41.613839446+00:00,1 +2023-10-24 17:31:41.740604656+00:00,1 +2023-10-24 17:31:41.867713701+00:00,1 +2023-10-24 17:31:41.994932285+00:00,1 +2023-10-24 17:31:42.123043037+00:00,1 +2023-10-24 17:31:42.249269791+00:00,1 +2023-10-24 17:31:42.375530932+00:00,1 +2023-10-24 17:31:42.501358907+00:00,1 +2023-10-24 17:31:42.627775595+00:00,1 +2023-10-24 17:31:42.753859864+00:00,1 +2023-10-24 17:31:42.879939464+00:00,1 +2023-10-24 17:31:43.008766891+00:00,1 +2023-10-24 17:31:43.135985136+00:00,1 +2023-10-24 17:31:43.262473125+00:00,1 +2023-10-24 17:31:43.389744294+00:00,1 +2023-10-24 17:31:43.517585766+00:00,1 +2023-10-24 17:31:43.646751722+00:00,1 +2023-10-24 17:31:43.776717054+00:00,1 +2023-10-24 17:31:43.905723071+00:00,1 +2023-10-24 17:31:44.034485596+00:00,1 +2023-10-24 17:31:44.163724911+00:00,1 +2023-10-24 17:31:44.292031863+00:00,1 +2023-10-24 17:31:44.420100209+00:00,1 +2023-10-24 17:31:44.548686427+00:00,1 +2023-10-24 17:31:44.677895305+00:00,1 +2023-10-24 17:31:44.807641609+00:00,1 +2023-10-24 17:31:44.937291626+00:00,1 +2023-10-24 17:31:45.065936383+00:00,1 +2023-10-24 17:31:45.194708863+00:00,1 +2023-10-24 17:31:45.323474825+00:00,1 +2023-10-24 17:31:45.451562986+00:00,1 +2023-10-24 17:31:45.580437862+00:00,1 +2023-10-24 17:31:45.710432170+00:00,1 +2023-10-24 17:31:45.839033859+00:00,1 +2023-10-24 17:31:45.968379330+00:00,1 +2023-10-24 17:31:46.096915399+00:00,1 +2023-10-24 17:31:46.224298598+00:00,1 +2023-10-24 17:31:46.352290790+00:00,1 +2023-10-24 17:31:46.480514317+00:00,1 +2023-10-24 17:31:46.610022410+00:00,1 +2023-10-24 17:31:46.738717674+00:00,1 +2023-10-24 17:31:46.866526642+00:00,1 +2023-10-24 17:31:46.995237817+00:00,1 +2023-10-24 17:31:47.124802498+00:00,1 +2023-10-24 17:31:47.252644534+00:00,1 +2023-10-24 17:31:47.381994762+00:00,1 +2023-10-24 17:31:47.511714599+00:00,1 +2023-10-24 17:31:47.639975123+00:00,1 +2023-10-24 17:31:47.767768503+00:00,1 +2023-10-24 17:31:47.895616487+00:00,1 +2023-10-24 17:31:48.024503455+00:00,1 +2023-10-24 17:31:48.152202570+00:00,1 +2023-10-24 17:31:48.279789031+00:00,1 +2023-10-24 17:31:50.426944650+00:00,1 +2023-10-24 17:31:50.556276322+00:00,1 +2023-10-24 17:31:50.686091559+00:00,1 +2023-10-24 17:31:50.816089500+00:00,1 +2023-10-24 17:31:50.944805925+00:00,1 +2023-10-24 17:31:51.074346478+00:00,1 +2023-10-24 17:31:51.204296525+00:00,1 +2023-10-24 17:31:51.333239278+00:00,1 +2023-10-24 17:31:51.462778799+00:00,1 +2023-10-24 17:31:51.591520268+00:00,1 +2023-10-24 17:31:51.721211453+00:00,1 +2023-10-24 17:31:51.848459432+00:00,1 +2023-10-24 17:31:51.976373359+00:00,1 +2023-10-24 17:31:52.104207836+00:00,1 +2023-10-24 17:31:52.231447965+00:00,1 +2023-10-24 17:31:52.357859801+00:00,1 +2023-10-24 17:31:52.484695593+00:00,1 +2023-10-24 17:31:52.613464962+00:00,1 +2023-10-24 17:31:52.740540375+00:00,1 +2023-10-24 17:31:52.867971354+00:00,1 +2023-10-24 17:31:52.995752917+00:00,1 +2023-10-24 17:31:53.123325740+00:00,1 +2023-10-24 17:31:53.251456118+00:00,1 +2023-10-24 17:31:53.377640358+00:00,1 +2023-10-24 17:31:53.504435911+00:00,1 +2023-10-24 17:31:53.631270039+00:00,1 +2023-10-24 17:31:53.757686575+00:00,1 +2023-10-24 17:31:53.885809162+00:00,1 +2023-10-24 17:31:54.013130652+00:00,1 +2023-10-24 17:31:54.140512087+00:00,1 +2023-10-24 17:31:54.269457505+00:00,1 +2023-10-24 17:31:54.397611603+00:00,1 +2023-10-24 17:31:54.525619871+00:00,1 +2023-10-24 17:31:54.652974816+00:00,1 +2023-10-24 17:31:54.780070037+00:00,1 +2023-10-24 17:31:54.906790853+00:00,1 +2023-10-24 17:31:55.033691808+00:00,1 +2023-10-24 17:31:55.160582056+00:00,1 +2023-10-24 17:31:55.287889644+00:00,1 +2023-10-24 17:31:55.413846378+00:00,1 +2023-10-24 17:31:55.539857224+00:00,1 +2023-10-24 17:31:55.666439965+00:00,1 +2023-10-24 17:31:55.794445310+00:00,1 +2023-10-24 17:31:55.921484495+00:00,1 +2023-10-24 17:31:56.049164909+00:00,1 +2023-10-24 17:31:56.176884114+00:00,1 +2023-10-24 17:31:56.305254918+00:00,1 +2023-10-24 17:31:56.432457057+00:00,1 +2023-10-24 17:31:56.562160283+00:00,1 +2023-10-24 17:31:56.690957669+00:00,1 +2023-10-24 17:31:56.819625490+00:00,1 +2023-10-24 17:31:56.949191997+00:00,1 +2023-10-24 17:31:57.078051057+00:00,1 +2023-10-24 17:31:57.207045294+00:00,1 +2023-10-24 17:31:57.336219096+00:00,1 +2023-10-24 17:31:57.465420572+00:00,1 +2023-10-24 17:31:57.594609569+00:00,1 +2023-10-24 17:31:57.723360814+00:00,1 +2023-10-24 17:31:57.853055793+00:00,1 +2023-10-24 17:31:57.981828312+00:00,1 +2023-10-24 17:31:58.110409772+00:00,1 +2023-10-24 17:31:58.238968926+00:00,1 +2023-10-24 17:31:58.367489810+00:00,1 +2023-10-24 17:31:58.495353997+00:00,1 +2023-10-24 17:31:58.624974818+00:00,1 +2023-10-24 17:31:58.753686751+00:00,1 +2023-10-24 17:31:58.882068703+00:00,1 +2023-10-24 17:31:59.010632378+00:00,1 +2023-10-24 17:31:59.138765506+00:00,1 +2023-10-24 17:31:59.268275748+00:00,1 +2023-10-24 17:31:59.396134213+00:00,1 +2023-10-24 17:31:59.525372695+00:00,1 +2023-10-24 17:31:59.653536963+00:00,1 +2023-10-24 17:31:59.782444539+00:00,1 +2023-10-24 17:31:59.910509095+00:00,1 +2023-10-24 17:32:00.039258841+00:00,1 +2023-10-24 17:32:00.168183666+00:00,1 +2023-10-24 17:32:00.296276264+00:00,1 +2023-10-24 17:32:00.424773829+00:00,1 +2023-10-24 17:32:00.553908481+00:00,1 +2023-10-24 17:32:00.683432355+00:00,1 +2023-10-24 17:32:00.811040719+00:00,1 +2023-10-24 17:32:00.940136837+00:00,1 +2023-10-24 17:32:01.068080469+00:00,1 +2023-10-24 17:32:01.195909575+00:00,1 +2023-10-24 17:32:01.325199041+00:00,1 +2023-10-24 17:32:01.452954921+00:00,1 +2023-10-24 17:32:01.580474132+00:00,1 +2023-10-24 17:32:01.708030731+00:00,1 +2023-10-24 17:32:01.836237231+00:00,1 +2023-10-24 17:32:01.963860823+00:00,1 +2023-10-24 17:32:02.091611640+00:00,1 +2023-10-24 17:32:02.219731268+00:00,1 +2023-10-24 17:32:02.349459584+00:00,1 +2023-10-24 17:32:02.476990071+00:00,1 +2023-10-24 17:32:02.605489875+00:00,1 +2023-10-24 17:32:02.734809483+00:00,1 +2023-10-24 17:32:02.863370175+00:00,1 +2023-10-24 17:32:02.992927516+00:00,1 +2023-10-24 17:32:03.122444992+00:00,1 +2023-10-24 17:32:03.252575990+00:00,1 +2023-10-24 17:32:03.382145401+00:00,1 +2023-10-24 17:32:03.510691626+00:00,1 +2023-10-24 17:32:03.638651555+00:00,1 +2023-10-24 17:32:03.767403450+00:00,1 +2023-10-24 17:32:03.895963099+00:00,1 +2023-10-24 17:32:04.023913989+00:00,1 +2023-10-24 17:32:04.153295541+00:00,1 +2023-10-24 17:32:04.280927010+00:00,1 +2023-10-24 17:32:04.409821329+00:00,1 +2023-10-24 17:32:04.538862053+00:00,1 +2023-10-24 17:32:04.668109046+00:00,1 +2023-10-24 17:32:04.796017803+00:00,1 +2023-10-24 17:32:04.925357300+00:00,1 +2023-10-24 17:32:05.053653109+00:00,1 +2023-10-24 17:32:05.183980582+00:00,1 +2023-10-24 17:32:05.312515620+00:00,1 +2023-10-24 17:32:05.441083285+00:00,1 +2023-10-24 17:32:05.569160876+00:00,1 +2023-10-24 17:32:05.700299357+00:00,1 +2023-10-24 17:32:05.828494917+00:00,1 +2023-10-24 17:32:05.957968819+00:00,1 +2023-10-24 17:32:06.087275072+00:00,1 +2023-10-24 17:32:06.217551377+00:00,1 +2023-10-24 17:32:06.345543371+00:00,1 +2023-10-24 17:32:06.475995568+00:00,1 +2023-10-24 17:32:06.603724880+00:00,1 +2023-10-24 17:32:06.732088499+00:00,1 +2023-10-24 17:32:06.861898694+00:00,1 +2023-10-24 17:32:06.989706627+00:00,1 +2023-10-24 17:32:07.118271719+00:00,1 +2023-10-24 17:32:07.246267825+00:00,1 +2023-10-24 17:32:07.373561308+00:00,1 +2023-10-24 17:32:07.502020792+00:00,1 +2023-10-24 17:32:07.630346400+00:00,1 +2023-10-24 17:32:07.758067541+00:00,1 +2023-10-24 17:32:07.887365858+00:00,1 +2023-10-24 17:32:08.014852765+00:00,1 +2023-10-24 17:32:08.143902083+00:00,1 +2023-10-24 17:32:08.273349981+00:00,1 +2023-10-24 17:32:08.401350929+00:00,1 +2023-10-24 17:32:08.529517070+00:00,1 +2023-10-24 17:32:08.658089074+00:00,1 +2023-10-24 17:32:08.785936279+00:00,1 +2023-10-24 17:32:08.915082583+00:00,1 +2023-10-24 17:32:09.044350542+00:00,1 +2023-10-24 17:32:09.172139734+00:00,1 +2023-10-24 17:32:09.301167144+00:00,1 +2023-10-24 17:32:09.427918671+00:00,1 +2023-10-24 17:32:09.556698584+00:00,1 +2023-10-24 17:32:09.685230341+00:00,1 +2023-10-24 17:32:09.814197833+00:00,1 +2023-10-24 17:32:09.943225987+00:00,1 +2023-10-24 17:32:10.071033138+00:00,1 +2023-10-24 17:32:10.198960015+00:00,1 +2023-10-24 17:32:10.328603936+00:00,1 +2023-10-24 17:32:10.457358818+00:00,1 +2023-10-24 17:32:10.587417719+00:00,1 +2023-10-24 17:32:10.716000494+00:00,1 +2023-10-24 17:32:10.843747401+00:00,1 +2023-10-24 17:32:10.972712916+00:00,1 +2023-10-24 17:32:11.101597250+00:00,1 +2023-10-24 17:32:11.230864154+00:00,1 +2023-10-24 17:32:11.358544248+00:00,1 +2023-10-24 17:32:11.485442757+00:00,1 +2023-10-24 17:32:11.612534233+00:00,1 +2023-10-24 17:32:11.740464283+00:00,1 +2023-10-24 17:32:11.870149521+00:00,1 +2023-10-24 17:32:11.999564286+00:00,1 +2023-10-24 17:32:12.129278831+00:00,1 +2023-10-24 17:32:12.257470284+00:00,1 +2023-10-24 17:32:12.386390598+00:00,1 +2023-10-24 17:32:12.514243895+00:00,1 +2023-10-24 17:32:12.643068011+00:00,1 +2023-10-24 17:32:12.771656839+00:00,1 +2023-10-24 17:32:12.902289805+00:00,1 +2023-10-24 17:32:13.031438270+00:00,1 +2023-10-24 17:32:13.159922748+00:00,1 +2023-10-24 17:32:13.288624357+00:00,1 +2023-10-24 17:32:13.416983048+00:00,1 +2023-10-24 17:32:13.546578319+00:00,1 +2023-10-24 17:32:13.673969040+00:00,1 +2023-10-24 17:32:13.802754649+00:00,1 +2023-10-24 17:32:13.932435910+00:00,1 +2023-10-24 17:32:14.061201880+00:00,1 +2023-10-24 17:32:14.190555332+00:00,1 +2023-10-24 17:32:14.318575140+00:00,1 +2023-10-24 17:32:14.447877293+00:00,1 +2023-10-24 17:32:14.576635690+00:00,1 +2023-10-24 17:32:14.704834704+00:00,1 +2023-10-24 17:32:14.833065272+00:00,1 +2023-10-24 17:32:14.959892747+00:00,1 +2023-10-24 17:32:15.089163166+00:00,1 +2023-10-24 17:32:15.217038914+00:00,1 +2023-10-24 17:32:15.344850762+00:00,1 +2023-10-24 17:32:15.473404735+00:00,1 +2023-10-24 17:32:15.602105460+00:00,1 +2023-10-24 17:32:15.730573105+00:00,1 +2023-10-24 17:32:15.859690595+00:00,1 +2023-10-24 17:32:15.987671703+00:00,1 +2023-10-24 17:32:16.116132263+00:00,1 +2023-10-24 17:32:16.244881441+00:00,1 +2023-10-24 17:32:16.374207354+00:00,1 +2023-10-24 17:32:16.502567569+00:00,1 +2023-10-24 17:32:16.631184650+00:00,1 +2023-10-24 17:32:16.761027159+00:00,1 +2023-10-24 17:32:16.889764411+00:00,1 +2023-10-24 17:32:17.018181244+00:00,1 +2023-10-24 17:32:17.147538507+00:00,1 +2023-10-24 17:32:17.275261475+00:00,1 +2023-10-24 17:32:17.403539841+00:00,1 +2023-10-24 17:32:17.531940373+00:00,1 +2023-10-24 17:32:17.660139486+00:00,1 +2023-10-24 17:32:17.788947949+00:00,1 +2023-10-24 17:32:17.916140701+00:00,1 +2023-10-24 17:32:18.043319610+00:00,1 +2023-10-24 17:32:18.170347816+00:00,1 +2023-10-24 17:32:18.298517199+00:00,1 +2023-10-24 17:32:18.427283872+00:00,1 +2023-10-24 17:32:18.555102741+00:00,1 +2023-10-24 17:32:18.686088993+00:00,1 +2023-10-24 17:32:18.815328051+00:00,1 +2023-10-24 17:32:18.944019706+00:00,1 +2023-10-24 17:32:19.073389973+00:00,1 +2023-10-24 17:32:19.202588033+00:00,1 +2023-10-24 17:32:19.330895523+00:00,1 +2023-10-24 17:32:19.460157441+00:00,1 +2023-10-24 17:32:19.589330791+00:00,1 +2023-10-24 17:32:19.717873480+00:00,1 +2023-10-24 17:32:19.846039744+00:00,1 +2023-10-24 17:32:19.976715388+00:00,1 +2023-10-24 17:32:20.104433854+00:00,1 +2023-10-24 17:32:20.233055321+00:00,1 +2023-10-24 17:32:20.362056324+00:00,1 +2023-10-24 17:32:20.491373145+00:00,1 +2023-10-24 17:32:20.620502102+00:00,1 +2023-10-24 17:32:20.748332965+00:00,1 +2023-10-24 17:32:20.876470744+00:00,1 +2023-10-24 17:32:21.004886957+00:00,1 +2023-10-24 17:32:21.133498815+00:00,1 +2023-10-24 17:32:21.262392300+00:00,1 +2023-10-24 17:32:21.390806503+00:00,1 +2023-10-24 17:32:21.518645726+00:00,1 +2023-10-24 17:32:21.647484724+00:00,1 +2023-10-24 17:32:21.775577536+00:00,1 +2023-10-24 17:32:21.905451507+00:00,1 +2023-10-24 17:32:22.034283810+00:00,1 +2023-10-24 17:32:22.163284808+00:00,1 +2023-10-24 17:32:22.291218327+00:00,1 +2023-10-24 17:32:22.419356430+00:00,1 +2023-10-24 17:32:22.547512235+00:00,1 +2023-10-24 17:32:22.676653754+00:00,1 +2023-10-24 17:32:22.804804804+00:00,1 +2023-10-24 17:32:22.933611316+00:00,1 +2023-10-24 17:32:23.061272601+00:00,1 +2023-10-24 17:32:23.190194252+00:00,1 +2023-10-24 17:32:23.318096088+00:00,1 +2023-10-24 17:32:23.446592687+00:00,1 +2023-10-24 17:32:23.574185358+00:00,1 +2023-10-24 17:32:23.702011672+00:00,1 +2023-10-24 17:32:23.830691727+00:00,1 +2023-10-24 17:32:23.958784487+00:00,1 +2023-10-24 17:32:24.088451311+00:00,1 +2023-10-24 17:32:24.217451134+00:00,1 +2023-10-24 17:32:24.345543039+00:00,1 +2023-10-24 17:32:24.474287363+00:00,1 +2023-10-24 17:32:24.602037082+00:00,1 +2023-10-24 17:32:24.730905166+00:00,1 +2023-10-24 17:32:24.860975068+00:00,1 +2023-10-24 17:32:24.989372052+00:00,1 +2023-10-24 17:32:25.119009832+00:00,1 +2023-10-24 17:32:25.248548766+00:00,1 +2023-10-24 17:32:25.377236806+00:00,1 +2023-10-24 17:32:25.506023217+00:00,1 +2023-10-24 17:32:25.635150592+00:00,1 +2023-10-24 17:32:25.762732706+00:00,1 +2023-10-24 17:32:25.890853102+00:00,1 +2023-10-24 17:32:26.020745256+00:00,1 +2023-10-24 17:32:26.148227714+00:00,1 +2023-10-24 17:32:26.275482809+00:00,1 +2023-10-24 17:32:26.404006185+00:00,1 +2023-10-24 17:32:26.532544266+00:00,1 +2023-10-24 17:32:26.660783495+00:00,1 +2023-10-24 17:32:26.789189812+00:00,1 +2023-10-24 17:32:26.918216128+00:00,1 +2023-10-24 17:32:27.046211573+00:00,1 +2023-10-24 17:32:27.176525148+00:00,1 +2023-10-24 17:32:27.304207414+00:00,1 +2023-10-24 17:32:27.432231794+00:00,1 +2023-10-24 17:32:27.560307820+00:00,1 +2023-10-24 17:32:27.688393728+00:00,1 +2023-10-24 17:32:27.817013854+00:00,1 +2023-10-24 17:32:27.944880649+00:00,1 +2023-10-24 17:32:28.073790085+00:00,1 +2023-10-24 17:32:28.201868535+00:00,1 +2023-10-24 17:32:28.329438499+00:00,1 +2023-10-24 17:32:28.458487645+00:00,1 +2023-10-24 17:32:28.586682327+00:00,1 +2023-10-24 17:32:28.716428854+00:00,1 +2023-10-24 17:32:28.845598380+00:00,1 +2023-10-24 17:32:28.973971348+00:00,1 +2023-10-24 17:32:29.102504006+00:00,1 +2023-10-24 17:32:29.231690181+00:00,1 +2023-10-24 17:32:29.358572994+00:00,1 +2023-10-24 17:32:29.488852205+00:00,1 +2023-10-24 17:32:29.617796424+00:00,1 +2023-10-24 17:32:29.747120250+00:00,1 +2023-10-24 17:32:29.880236194+00:00,1 +2023-10-24 17:32:30.008298693+00:00,1 +2023-10-24 17:32:30.137535161+00:00,1 +2023-10-24 17:32:30.265649367+00:00,1 +2023-10-24 17:32:30.394375535+00:00,1 +2023-10-24 17:32:30.522865022+00:00,1 +2023-10-24 17:32:30.650104424+00:00,1 +2023-10-24 17:32:30.781146463+00:00,1 +2023-10-24 17:32:30.910107641+00:00,1 +2023-10-24 17:32:31.038401057+00:00,1 +2023-10-24 17:32:31.166751586+00:00,1 +2023-10-24 17:32:31.294732749+00:00,1 +2023-10-24 17:32:31.423149184+00:00,1 +2023-10-24 17:32:31.551690311+00:00,1 +2023-10-24 17:32:31.678610382+00:00,1 +2023-10-24 17:32:31.807148651+00:00,1 +2023-10-24 17:32:31.935594333+00:00,1 +2023-10-24 17:32:32.062246338+00:00,1 +2023-10-24 17:32:32.189789014+00:00,1 +2023-10-24 17:32:32.318232847+00:00,1 +2023-10-24 17:32:32.446520995+00:00,1 +2023-10-24 17:32:32.575522183+00:00,1 +2023-10-24 17:32:32.703570962+00:00,1 +2023-10-24 17:32:32.830813594+00:00,1 +2023-10-24 17:32:32.958866150+00:00,1 +2023-10-24 17:32:33.087567456+00:00,1 +2023-10-24 17:32:33.215354111+00:00,1 +2023-10-24 17:32:33.342525340+00:00,1 +2023-10-24 17:32:33.471125857+00:00,1 +2023-10-24 17:32:33.598216734+00:00,1 +2023-10-24 17:32:33.727936945+00:00,1 +2023-10-24 17:32:33.857269203+00:00,1 +2023-10-24 17:32:33.985404334+00:00,1 +2023-10-24 17:32:34.114196260+00:00,1 +2023-10-24 17:32:34.244764724+00:00,1 +2023-10-24 17:32:34.374749381+00:00,1 +2023-10-24 17:32:34.503437861+00:00,1 +2023-10-24 17:32:34.631570905+00:00,1 +2023-10-24 17:32:34.760280497+00:00,1 +2023-10-24 17:32:34.888250879+00:00,1 +2023-10-24 17:32:35.015783762+00:00,1 +2023-10-24 17:32:35.144283255+00:00,1 +2023-10-24 17:32:35.271545923+00:00,1 +2023-10-24 17:32:35.399392729+00:00,1 +2023-10-24 17:32:35.528432654+00:00,1 +2023-10-24 17:32:35.656791197+00:00,1 +2023-10-24 17:32:35.786128591+00:00,1 +2023-10-24 17:32:35.914224683+00:00,1 +2023-10-24 17:32:36.041998819+00:00,1 +2023-10-24 17:32:36.170777644+00:00,1 +2023-10-24 17:32:36.299960887+00:00,1 +2023-10-24 17:32:36.429305639+00:00,1 +2023-10-24 17:32:36.559160115+00:00,1 +2023-10-24 17:32:36.687850633+00:00,1 +2023-10-24 17:32:36.816445582+00:00,1 +2023-10-24 17:32:36.945183526+00:00,1 +2023-10-24 17:32:37.073903671+00:00,1 +2023-10-24 17:32:37.202520399+00:00,1 +2023-10-24 17:32:37.331053255+00:00,1 +2023-10-24 17:32:37.460217820+00:00,1 +2023-10-24 17:32:37.590014601+00:00,1 +2023-10-24 17:32:37.718188621+00:00,1 +2023-10-24 17:32:37.846379974+00:00,1 +2023-10-24 17:32:37.976609864+00:00,1 +2023-10-24 17:32:38.105477965+00:00,1 +2023-10-24 17:32:38.235536700+00:00,1 +2023-10-24 17:32:38.364520860+00:00,1 +2023-10-24 17:32:38.493615335+00:00,1 +2023-10-24 17:32:38.621813521+00:00,1 +2023-10-24 17:32:38.749720266+00:00,1 +2023-10-24 17:32:38.878289471+00:00,1 +2023-10-24 17:32:39.007205173+00:00,1 +2023-10-24 17:32:39.137023201+00:00,1 +2023-10-24 17:32:39.265258696+00:00,1 +2023-10-24 17:32:39.393919189+00:00,1 +2023-10-24 17:32:39.521447028+00:00,1 +2023-10-24 17:32:39.650540282+00:00,1 +2023-10-24 17:32:39.779752493+00:00,1 +2023-10-24 17:32:39.906635817+00:00,1 +2023-10-24 17:32:40.037036545+00:00,1 +2023-10-24 17:32:40.166896091+00:00,1 +2023-10-24 17:32:40.293933452+00:00,1 +2023-10-24 17:32:40.420683161+00:00,1 +2023-10-24 17:32:40.547394812+00:00,1 +2023-10-24 17:32:40.674228916+00:00,1 +2023-10-24 17:32:40.802979881+00:00,1 +2023-10-24 17:32:40.932119570+00:00,1 +2023-10-24 17:32:41.060735210+00:00,1 +2023-10-24 17:32:41.190191921+00:00,1 +2023-10-24 17:32:41.319284029+00:00,1 +2023-10-24 17:32:41.447078406+00:00,1 +2023-10-24 17:32:41.575801333+00:00,1 +2023-10-24 17:32:41.704827092+00:00,1 +2023-10-24 17:32:41.833879134+00:00,1 +2023-10-24 17:32:41.962530052+00:00,1 +2023-10-24 17:32:42.093001803+00:00,1 +2023-10-24 17:32:42.223298731+00:00,1 +2023-10-24 17:32:42.353166347+00:00,1 +2023-10-24 17:32:42.482005709+00:00,1 +2023-10-24 17:32:42.612107947+00:00,1 +2023-10-24 17:32:42.741741945+00:00,1 +2023-10-24 17:32:42.870899140+00:00,1 +2023-10-24 17:32:43.000924200+00:00,1 +2023-10-24 17:32:43.129983329+00:00,1 +2023-10-24 17:32:43.258529238+00:00,1 +2023-10-24 17:32:43.387958359+00:00,1 +2023-10-24 17:32:43.515963038+00:00,1 +2023-10-24 17:32:43.643314402+00:00,1 +2023-10-24 17:32:43.770857702+00:00,1 +2023-10-24 17:32:43.898454919+00:00,1 +2023-10-24 17:32:44.026830292+00:00,1 +2023-10-24 17:32:44.154239561+00:00,1 +2023-10-24 17:32:44.282376102+00:00,1 +2023-10-24 17:32:44.411006070+00:00,1 +2023-10-24 17:32:44.539212367+00:00,1 +2023-10-24 17:32:44.666355448+00:00,1 +2023-10-24 17:32:44.795682823+00:00,1 +2023-10-24 17:32:44.923173432+00:00,1 +2023-10-24 17:32:45.050715556+00:00,1 +2023-10-24 17:32:45.178937484+00:00,1 +2023-10-24 17:32:45.306647001+00:00,1 +2023-10-24 17:32:45.437626356+00:00,1 +2023-10-24 17:32:45.567224682+00:00,1 +2023-10-24 17:32:45.696304260+00:00,1 +2023-10-24 17:32:45.826572788+00:00,1 +2023-10-24 17:32:45.954699161+00:00,1 +2023-10-24 17:32:46.082795755+00:00,1 +2023-10-24 17:32:46.210097651+00:00,1 +2023-10-24 17:32:46.337672712+00:00,1 +2023-10-24 17:32:46.465459805+00:00,1 +2023-10-24 17:32:46.594670082+00:00,1 +2023-10-24 17:32:46.723896586+00:00,1 +2023-10-24 17:32:46.851450939+00:00,1 +2023-10-24 17:32:46.981587332+00:00,1 +2023-10-24 17:32:47.110768794+00:00,1 +2023-10-24 17:32:47.237981060+00:00,1 +2023-10-24 17:32:47.365702790+00:00,1 +2023-10-24 17:32:47.493050006+00:00,1 +2023-10-24 17:32:47.622255281+00:00,1 +2023-10-24 17:32:47.750183829+00:00,1 +2023-10-24 17:32:47.877534675+00:00,1 +2023-10-24 17:32:48.005721433+00:00,1 +2023-10-24 17:32:48.134224799+00:00,1 +2023-10-24 17:32:48.264486954+00:00,1 +2023-10-24 17:32:48.392781868+00:00,1 +2023-10-24 17:32:48.522795489+00:00,1 +2023-10-24 17:32:48.651396413+00:00,1 +2023-10-24 17:32:48.779620361+00:00,1 +2023-10-24 17:32:48.908224525+00:00,1 +2023-10-24 17:32:49.037287866+00:00,1 +2023-10-24 17:32:49.165350674+00:00,1 +2023-10-24 17:32:49.294009867+00:00,1 +2023-10-24 17:32:49.422037132+00:00,1 +2023-10-24 17:32:49.550280027+00:00,1 +2023-10-24 17:32:49.678654715+00:00,1 +2023-10-24 17:32:49.807258039+00:00,1 +2023-10-24 17:32:49.936700825+00:00,1 +2023-10-24 17:32:50.065777048+00:00,1 +2023-10-24 17:32:50.194068980+00:00,1 +2023-10-24 17:32:50.322922011+00:00,1 +2023-10-24 17:32:50.452728831+00:00,1 +2023-10-24 17:32:50.582697211+00:00,1 +2023-10-24 17:32:50.713143758+00:00,1 +2023-10-24 17:32:50.842408870+00:00,1 +2023-10-24 17:32:50.970941582+00:00,1 +2023-10-24 17:32:51.100609334+00:00,1 +2023-10-24 17:32:51.230091579+00:00,1 +2023-10-24 17:32:51.359018822+00:00,1 +2023-10-24 17:32:51.488267575+00:00,1 +2023-10-24 17:32:51.617124808+00:00,1 +2023-10-24 17:32:51.746334707+00:00,1 +2023-10-24 17:32:51.873340673+00:00,1 +2023-10-24 17:32:52.002319567+00:00,1 +2023-10-24 17:32:52.131437087+00:00,1 +2023-10-24 17:32:52.260962753+00:00,1 +2023-10-24 17:32:52.390919951+00:00,1 +2023-10-24 17:32:52.520880626+00:00,1 +2023-10-24 17:32:52.648623805+00:00,1 +2023-10-24 17:32:52.778143264+00:00,1 +2023-10-24 17:32:52.906330961+00:00,1 +2023-10-24 17:32:53.034898303+00:00,1 +2023-10-24 17:32:53.164565971+00:00,1 +2023-10-24 17:32:53.292819837+00:00,1 +2023-10-24 17:32:53.420445840+00:00,1 +2023-10-24 17:32:53.548282666+00:00,1 +2023-10-24 17:32:53.676397652+00:00,1 +2023-10-24 17:32:53.804019856+00:00,1 +2023-10-24 17:32:53.934133567+00:00,1 +2023-10-24 17:32:54.063086647+00:00,1 +2023-10-24 17:32:54.190517946+00:00,1 +2023-10-24 17:32:54.318780042+00:00,1 +2023-10-24 17:32:54.446618204+00:00,1 +2023-10-24 17:32:54.576300585+00:00,1 +2023-10-24 17:32:54.706623715+00:00,1 +2023-10-24 17:32:54.836025751+00:00,1 +2023-10-24 17:32:54.964051542+00:00,1 +2023-10-24 17:32:55.091078627+00:00,1 +2023-10-24 17:32:55.221015615+00:00,1 +2023-10-24 17:32:55.349006056+00:00,1 +2023-10-24 17:32:55.477066624+00:00,1 +2023-10-24 17:32:55.606322977+00:00,1 +2023-10-24 17:32:55.734738070+00:00,1 +2023-10-24 17:32:55.863994168+00:00,1 +2023-10-24 17:32:55.993122118+00:00,1 +2023-10-24 17:32:56.121382214+00:00,1 +2023-10-24 17:32:56.248650969+00:00,1 +2023-10-24 17:32:56.376313089+00:00,1 +2023-10-24 17:32:56.506133989+00:00,1 +2023-10-24 17:32:56.633547293+00:00,1 +2023-10-24 17:32:56.763896583+00:00,1 +2023-10-24 17:32:56.891493479+00:00,1 +2023-10-24 17:32:57.019305109+00:00,1 +2023-10-24 17:32:57.148389511+00:00,1 +2023-10-24 17:32:57.278152323+00:00,1 +2023-10-24 17:32:57.406094954+00:00,1 +2023-10-24 17:32:57.533801945+00:00,1 +2023-10-24 17:32:57.661731353+00:00,1 +2023-10-24 17:32:57.791512012+00:00,1 +2023-10-24 17:32:57.918840452+00:00,1 +2023-10-24 17:32:58.046660733+00:00,1 +2023-10-24 17:32:58.174483475+00:00,1 +2023-10-24 17:32:58.302632897+00:00,1 +2023-10-24 17:32:58.431313061+00:00,1 +2023-10-24 17:32:58.559087536+00:00,1 +2023-10-24 17:32:58.687926627+00:00,1 +2023-10-24 17:32:58.816597631+00:00,1 +2023-10-24 17:32:58.945773523+00:00,1 +2023-10-24 17:32:59.074373321+00:00,1 +2023-10-24 17:32:59.202556278+00:00,1 +2023-10-24 17:32:59.330589047+00:00,1 +2023-10-24 17:32:59.459567252+00:00,1 +2023-10-24 17:32:59.587236287+00:00,1 +2023-10-24 17:32:59.715076752+00:00,1 +2023-10-24 17:32:59.842827961+00:00,1 +2023-10-24 17:32:59.971130420+00:00,1 +2023-10-24 17:33:00.102243855+00:00,1 +2023-10-24 17:33:00.230956719+00:00,1 +2023-10-24 17:33:00.360360698+00:00,1 +2023-10-24 17:33:00.489233790+00:00,1 +2023-10-24 17:33:00.618195904+00:00,1 +2023-10-24 17:33:00.747229107+00:00,1 +2023-10-24 17:33:00.875600113+00:00,1 +2023-10-24 17:33:01.002377400+00:00,1 +2023-10-24 17:33:01.131173869+00:00,1 +2023-10-24 17:33:01.259957875+00:00,1 +2023-10-24 17:33:01.388214095+00:00,1 +2023-10-24 17:33:01.517234738+00:00,1 +2023-10-24 17:33:01.645279764+00:00,1 +2023-10-24 17:33:01.774730678+00:00,1 +2023-10-24 17:33:01.903978397+00:00,1 +2023-10-24 17:33:02.032004434+00:00,1 +2023-10-24 17:33:02.160666404+00:00,1 +2023-10-24 17:33:02.290583200+00:00,1 +2023-10-24 17:33:02.419249268+00:00,1 +2023-10-24 17:33:02.548194105+00:00,1 +2023-10-24 17:33:02.676330926+00:00,1 +2023-10-24 17:33:02.804291380+00:00,1 +2023-10-24 17:33:02.931908708+00:00,1 +2023-10-24 17:33:03.060834988+00:00,1 +2023-10-24 17:33:03.189830573+00:00,1 +2023-10-24 17:33:03.317123014+00:00,1 +2023-10-24 17:33:03.445311784+00:00,1 +2023-10-24 17:33:03.573251852+00:00,1 +2023-10-24 17:33:03.701760917+00:00,1 +2023-10-24 17:33:03.830522885+00:00,1 +2023-10-24 17:33:03.959767747+00:00,1 +2023-10-24 17:33:04.087899923+00:00,1 +2023-10-24 17:33:04.214394037+00:00,1 +2023-10-24 17:33:04.342316042+00:00,1 +2023-10-24 17:33:04.471215407+00:00,1 +2023-10-24 17:33:04.599066044+00:00,1 +2023-10-24 17:33:04.726561660+00:00,1 +2023-10-24 17:33:04.854843288+00:00,1 +2023-10-24 17:33:04.983212819+00:00,1 +2023-10-24 17:33:05.112870204+00:00,1 +2023-10-24 17:33:05.241502676+00:00,1 +2023-10-24 17:33:05.368895380+00:00,1 +2023-10-24 17:33:05.496222102+00:00,1 +2023-10-24 17:33:05.624720588+00:00,1 +2023-10-24 17:33:05.752158252+00:00,1 +2023-10-24 17:33:05.881370236+00:00,1 +2023-10-24 17:33:06.008472283+00:00,1 +2023-10-24 17:33:06.136942522+00:00,1 +2023-10-24 17:33:06.265952247+00:00,1 +2023-10-24 17:33:06.392268310+00:00,1 +2023-10-24 17:33:06.519303814+00:00,1 +2023-10-24 17:33:06.648207235+00:00,1 +2023-10-24 17:33:06.777332431+00:00,1 +2023-10-24 17:33:06.905455379+00:00,1 +2023-10-24 17:33:07.034264924+00:00,1 +2023-10-24 17:33:07.162752647+00:00,1 +2023-10-24 17:33:07.291064988+00:00,1 +2023-10-24 17:33:07.419461579+00:00,1 +2023-10-24 17:33:07.548751901+00:00,1 +2023-10-24 17:33:07.677325133+00:00,1 +2023-10-24 17:33:07.817173825+00:00,1 +2023-10-24 17:33:07.946504909+00:00,1 +2023-10-24 17:33:08.074924842+00:00,1 +2023-10-24 17:33:08.202881780+00:00,1 +2023-10-24 17:33:08.331421723+00:00,1 +2023-10-24 17:33:08.459298491+00:00,1 +2023-10-24 17:33:08.587310876+00:00,1 +2023-10-24 17:33:08.715943980+00:00,1 +2023-10-24 17:33:08.844407997+00:00,1 +2023-10-24 17:33:08.973106095+00:00,1 +2023-10-24 17:33:09.102671766+00:00,1 +2023-10-24 17:33:09.231296021+00:00,1 +2023-10-24 17:33:09.361076071+00:00,1 +2023-10-24 17:33:09.491509353+00:00,1 +2023-10-24 17:33:09.620548814+00:00,1 +2023-10-24 17:33:09.749133786+00:00,1 +2023-10-24 17:33:09.877756165+00:00,1 +2023-10-24 17:33:10.006853378+00:00,1 +2023-10-24 17:33:10.135945397+00:00,1 +2023-10-24 17:33:10.263753868+00:00,1 +2023-10-24 17:33:10.390848382+00:00,1 +2023-10-24 17:33:10.520125208+00:00,1 +2023-10-24 17:33:10.649074274+00:00,1 +2023-10-24 17:33:10.778180219+00:00,1 +2023-10-24 17:33:10.906795016+00:00,1 +2023-10-24 17:33:11.034374279+00:00,1 +2023-10-24 17:33:11.162717196+00:00,1 +2023-10-24 17:33:11.291936220+00:00,1 +2023-10-24 17:33:11.420085363+00:00,1 +2023-10-24 17:33:11.547043583+00:00,1 +2023-10-24 17:33:11.673493363+00:00,1 +2023-10-24 17:33:11.802940899+00:00,1 +2023-10-24 17:33:11.931197598+00:00,1 +2023-10-24 17:33:12.060201618+00:00,1 +2023-10-24 17:33:12.187318873+00:00,1 +2023-10-24 17:33:12.315546714+00:00,1 +2023-10-24 17:33:12.444077783+00:00,1 +2023-10-24 17:33:12.572345471+00:00,1 +2023-10-24 17:33:12.701554818+00:00,1 +2023-10-24 17:33:12.830808299+00:00,1 +2023-10-24 17:33:12.958931776+00:00,1 +2023-10-24 17:33:13.086865007+00:00,1 +2023-10-24 17:33:13.215245967+00:00,1 +2023-10-24 17:33:13.344089758+00:00,1 +2023-10-24 17:33:13.471329629+00:00,1 +2023-10-24 17:33:13.599814957+00:00,1 +2023-10-24 17:33:13.727372645+00:00,1 +2023-10-24 17:33:13.854499939+00:00,1 +2023-10-24 17:33:13.983255698+00:00,1 +2023-10-24 17:33:14.112884679+00:00,1 +2023-10-24 17:33:14.240698413+00:00,1 +2023-10-24 17:33:14.369663432+00:00,1 +2023-10-24 17:33:14.497867711+00:00,1 +2023-10-24 17:33:14.627390937+00:00,1 +2023-10-24 17:33:14.756746571+00:00,1 +2023-10-24 17:33:14.885599167+00:00,1 +2023-10-24 17:33:15.014787315+00:00,1 +2023-10-24 17:33:15.144164708+00:00,1 +2023-10-24 17:33:15.273741838+00:00,1 +2023-10-24 17:33:15.403435452+00:00,1 +2023-10-24 17:33:15.532572305+00:00,1 +2023-10-24 17:33:15.664884523+00:00,1 +2023-10-24 17:33:15.794593898+00:00,1 +2023-10-24 17:33:15.924081821+00:00,1 +2023-10-24 17:33:16.052680092+00:00,1 +2023-10-24 17:33:16.182747294+00:00,1 +2023-10-24 17:33:16.311900406+00:00,1 +2023-10-24 17:33:16.439386881+00:00,1 +2023-10-24 17:33:16.569232906+00:00,1 +2023-10-24 17:33:16.698877777+00:00,1 +2023-10-24 17:33:16.827498713+00:00,1 +2023-10-24 17:33:16.956142355+00:00,1 +2023-10-24 17:33:17.084054780+00:00,1 +2023-10-24 17:33:17.213350386+00:00,1 +2023-10-24 17:33:17.341814138+00:00,1 +2023-10-24 17:33:17.470118427+00:00,1 +2023-10-24 17:33:17.598905157+00:00,1 +2023-10-24 17:33:17.729366880+00:00,1 +2023-10-24 17:33:17.858847046+00:00,1 +2023-10-24 17:33:17.988096364+00:00,1 +2023-10-24 17:33:18.116611420+00:00,1 +2023-10-24 17:33:18.244264641+00:00,1 +2023-10-24 17:33:18.373202844+00:00,1 +2023-10-24 17:33:18.503084209+00:00,1 +2023-10-24 17:33:18.632732438+00:00,1 +2023-10-24 17:33:18.761999254+00:00,1 +2023-10-24 17:33:18.890258249+00:00,1 +2023-10-24 17:33:19.019667813+00:00,1 +2023-10-24 17:33:19.147778546+00:00,1 +2023-10-24 17:33:19.276875783+00:00,1 +2023-10-24 17:33:19.404292397+00:00,1 +2023-10-24 17:33:19.533524228+00:00,1 +2023-10-24 17:33:19.662011309+00:00,1 +2023-10-24 17:33:19.791481984+00:00,1 +2023-10-24 17:33:19.920863095+00:00,1 +2023-10-24 17:33:20.048408259+00:00,1 +2023-10-24 17:33:20.176124232+00:00,1 +2023-10-24 17:33:20.304128023+00:00,1 +2023-10-24 17:33:20.431368182+00:00,1 +2023-10-24 17:33:20.558395821+00:00,1 +2023-10-24 17:33:20.687937565+00:00,1 +2023-10-24 17:33:20.816472644+00:00,1 +2023-10-24 17:33:20.946647835+00:00,1 +2023-10-24 17:33:21.076357667+00:00,1 +2023-10-24 17:33:21.204829470+00:00,1 +2023-10-24 17:33:21.335437976+00:00,1 +2023-10-24 17:33:21.464247343+00:00,1 +2023-10-24 17:33:21.592666623+00:00,1 +2023-10-24 17:33:21.722027636+00:00,1 +2023-10-24 17:33:21.851020150+00:00,1 +2023-10-24 17:33:21.979675459+00:00,1 +2023-10-24 17:33:22.107647264+00:00,1 +2023-10-24 17:33:22.236273721+00:00,1 +2023-10-24 17:33:22.363112229+00:00,1 +2023-10-24 17:33:22.492316383+00:00,1 +2023-10-24 17:33:22.621123019+00:00,1 +2023-10-24 17:33:22.748892980+00:00,1 +2023-10-24 17:33:22.876968163+00:00,1 +2023-10-24 17:33:23.005007601+00:00,1 +2023-10-24 17:33:23.133268802+00:00,1 +2023-10-24 17:33:23.262671031+00:00,1 +2023-10-24 17:33:23.390418558+00:00,1 +2023-10-24 17:33:23.517919527+00:00,1 +2023-10-24 17:33:23.646086465+00:00,1 +2023-10-24 17:33:23.773885790+00:00,1 +2023-10-24 17:33:23.902657174+00:00,1 +2023-10-24 17:33:24.031920516+00:00,1 +2023-10-24 17:33:24.160663260+00:00,1 +2023-10-24 17:33:24.288952660+00:00,1 +2023-10-24 17:33:24.417654405+00:00,1 +2023-10-24 17:33:24.546405185+00:00,1 +2023-10-24 17:33:24.674368412+00:00,1 +2023-10-24 17:33:24.803446322+00:00,1 +2023-10-24 17:33:24.931530412+00:00,1 +2023-10-24 17:33:25.060029316+00:00,1 +2023-10-24 17:33:25.188860929+00:00,1 +2023-10-24 17:33:25.316193864+00:00,1 +2023-10-24 17:33:25.444608274+00:00,1 +2023-10-24 17:33:25.573124191+00:00,1 +2023-10-24 17:33:25.701302600+00:00,1 +2023-10-24 17:33:25.829759781+00:00,1 +2023-10-24 17:33:25.957412667+00:00,1 +2023-10-24 17:33:26.087759928+00:00,1 +2023-10-24 17:33:26.216226688+00:00,1 +2023-10-24 17:33:26.344529785+00:00,1 +2023-10-24 17:33:26.472344693+00:00,1 +2023-10-24 17:33:26.599864234+00:00,1 +2023-10-24 17:33:26.728855964+00:00,1 +2023-10-24 17:33:26.856253700+00:00,1 +2023-10-24 17:33:26.983603278+00:00,1 +2023-10-24 17:33:27.112443868+00:00,1 +2023-10-24 17:33:27.240724715+00:00,1 +2023-10-24 17:33:27.368511278+00:00,1 +2023-10-24 17:33:27.496902102+00:00,1 +2023-10-24 17:33:27.625333755+00:00,1 +2023-10-24 17:33:27.753699043+00:00,1 +2023-10-24 17:33:27.883324338+00:00,1 +2023-10-24 17:33:28.012940391+00:00,1 +2023-10-24 17:33:28.140272414+00:00,1 +2023-10-24 17:33:28.268067697+00:00,1 +2023-10-24 17:33:28.397944339+00:00,1 +2023-10-24 17:33:28.527548149+00:00,1 +2023-10-24 17:33:28.656656065+00:00,1 +2023-10-24 17:33:28.783660639+00:00,1 +2023-10-24 17:33:28.911644373+00:00,1 +2023-10-24 17:33:29.041230858+00:00,1 +2023-10-24 17:33:29.172184694+00:00,1 +2023-10-24 17:33:29.300915589+00:00,1 +2023-10-24 17:33:29.430453459+00:00,1 +2023-10-24 17:33:29.557816911+00:00,1 +2023-10-24 17:33:29.685977785+00:00,1 +2023-10-24 17:33:29.815175239+00:00,1 +2023-10-24 17:33:29.943024299+00:00,1 +2023-10-24 17:33:30.072321176+00:00,1 +2023-10-24 17:33:30.199988794+00:00,1 +2023-10-24 17:33:30.328846825+00:00,1 +2023-10-24 17:33:30.456610940+00:00,1 +2023-10-24 17:33:30.584364210+00:00,1 +2023-10-24 17:33:30.711897193+00:00,1 +2023-10-24 17:33:30.839500969+00:00,1 +2023-10-24 17:33:30.967864317+00:00,1 +2023-10-24 17:33:31.094496949+00:00,1 +2023-10-24 17:33:31.221498708+00:00,1 +2023-10-24 17:33:31.350074176+00:00,1 +2023-10-24 17:33:31.479199764+00:00,1 +2023-10-24 17:33:31.606650911+00:00,1 +2023-10-24 17:33:31.733831342+00:00,1 +2023-10-24 17:33:31.862787516+00:00,1 +2023-10-24 17:33:31.991462038+00:00,1 +2023-10-24 17:33:32.120665177+00:00,1 +2023-10-24 17:33:32.249071961+00:00,1 +2023-10-24 17:33:32.379425286+00:00,1 +2023-10-24 17:33:32.509299338+00:00,1 +2023-10-24 17:33:32.637401198+00:00,1 +2023-10-24 17:33:32.766230360+00:00,1 +2023-10-24 17:33:32.892848433+00:00,1 +2023-10-24 17:33:33.019479340+00:00,1 +2023-10-24 17:33:33.149026511+00:00,1 +2023-10-24 17:33:33.278386080+00:00,1 +2023-10-24 17:33:33.404872005+00:00,1 +2023-10-24 17:33:33.533888252+00:00,1 +2023-10-24 17:33:33.662496185+00:00,1 +2023-10-24 17:33:33.789723572+00:00,1 +2023-10-24 17:33:33.917399574+00:00,1 +2023-10-24 17:33:34.045404280+00:00,1 +2023-10-24 17:33:34.173822010+00:00,1 +2023-10-24 17:33:34.303748561+00:00,1 +2023-10-24 17:33:34.431443252+00:00,1 +2023-10-24 17:33:34.559246505+00:00,1 +2023-10-24 17:33:34.687951467+00:00,1 +2023-10-24 17:33:34.815373334+00:00,1 +2023-10-24 17:33:34.942462646+00:00,1 +2023-10-24 17:33:35.070385610+00:00,1 +2023-10-24 17:33:35.198489082+00:00,1 +2023-10-24 17:33:35.329175185+00:00,1 +2023-10-24 17:33:35.456797922+00:00,1 +2023-10-24 17:33:35.583346073+00:00,1 +2023-10-24 17:33:35.711039108+00:00,1 +2023-10-24 17:33:35.837993555+00:00,1 +2023-10-24 17:33:35.965140052+00:00,1 +2023-10-24 17:33:36.094736486+00:00,1 +2023-10-24 17:33:36.224461558+00:00,1 +2023-10-24 17:33:36.352643547+00:00,1 +2023-10-24 17:33:36.480591123+00:00,1 +2023-10-24 17:33:36.609101564+00:00,1 +2023-10-24 17:33:36.736998421+00:00,1 +2023-10-24 17:33:36.865752685+00:00,1 +2023-10-24 17:33:36.994414876+00:00,1 +2023-10-24 17:33:37.124227369+00:00,1 +2023-10-24 17:33:37.252437457+00:00,1 +2023-10-24 17:33:37.380699631+00:00,1 +2023-10-24 17:33:37.508383942+00:00,1 +2023-10-24 17:33:37.636340376+00:00,1 +2023-10-24 17:33:37.765850712+00:00,1 +2023-10-24 17:33:37.894229640+00:00,1 +2023-10-24 17:33:38.021769965+00:00,1 +2023-10-24 17:33:38.148465836+00:00,1 +2023-10-24 17:33:38.277685593+00:00,1 +2023-10-24 17:33:38.405729571+00:00,1 +2023-10-24 17:33:38.534851022+00:00,1 +2023-10-24 17:33:38.661957603+00:00,1 +2023-10-24 17:33:38.789950077+00:00,1 +2023-10-24 17:33:38.917209969+00:00,1 +2023-10-24 17:33:39.046405908+00:00,1 +2023-10-24 17:33:39.172734651+00:00,1 +2023-10-24 17:33:39.300621030+00:00,1 +2023-10-24 17:33:39.427902168+00:00,1 +2023-10-24 17:33:39.555565714+00:00,1 +2023-10-24 17:33:39.683140614+00:00,1 +2023-10-24 17:33:39.811325190+00:00,1 +2023-10-24 17:33:39.939616462+00:00,1 +2023-10-24 17:33:40.067806347+00:00,1 +2023-10-24 17:33:40.196385759+00:00,1 +2023-10-24 17:33:40.323090357+00:00,1 +2023-10-24 17:33:40.449456593+00:00,1 +2023-10-24 17:33:40.577403176+00:00,1 +2023-10-24 17:33:40.705429679+00:00,1 +2023-10-24 17:33:40.833088658+00:00,1 +2023-10-24 17:33:40.961410704+00:00,1 +2023-10-24 17:33:41.089038346+00:00,1 +2023-10-24 17:33:41.215916560+00:00,1 +2023-10-24 17:33:41.342644060+00:00,1 +2023-10-24 17:33:41.470867095+00:00,1 +2023-10-24 17:33:41.598277885+00:00,1 +2023-10-24 17:33:41.725349156+00:00,1 +2023-10-24 17:33:41.853504665+00:00,1 +2023-10-24 17:33:41.981588873+00:00,1 +2023-10-24 17:33:42.110711170+00:00,1 +2023-10-24 17:33:42.238037906+00:00,1 +2023-10-24 17:33:42.366466874+00:00,1 +2023-10-24 17:33:42.494890872+00:00,1 +2023-10-24 17:33:42.623592444+00:00,1 +2023-10-24 17:33:42.751945695+00:00,1 +2023-10-24 17:33:42.881188975+00:00,1 +2023-10-24 17:33:43.011157935+00:00,1 +2023-10-24 17:33:43.138609093+00:00,1 +2023-10-24 17:33:43.266436106+00:00,1 +2023-10-24 17:33:43.395632706+00:00,1 +2023-10-24 17:33:43.523786658+00:00,1 +2023-10-24 17:33:43.651420458+00:00,1 +2023-10-24 17:33:43.779688836+00:00,1 +2023-10-24 17:33:43.908465239+00:00,1 +2023-10-24 17:33:44.037957656+00:00,1 +2023-10-24 17:33:44.165870111+00:00,1 +2023-10-24 17:33:44.294861033+00:00,1 +2023-10-24 17:33:44.422551352+00:00,1 +2023-10-24 17:33:44.551036789+00:00,1 +2023-10-24 17:33:44.680415304+00:00,1 +2023-10-24 17:33:44.808460143+00:00,1 +2023-10-24 17:33:44.936651857+00:00,1 +2023-10-24 17:33:45.065022770+00:00,1 +2023-10-24 17:33:45.192722368+00:00,1 +2023-10-24 17:33:45.320792164+00:00,1 +2023-10-24 17:33:45.449416142+00:00,1 +2023-10-24 17:33:45.576861691+00:00,1 +2023-10-24 17:33:45.705599803+00:00,1 +2023-10-24 17:33:45.836692363+00:00,1 +2023-10-24 17:33:45.966039408+00:00,1 +2023-10-24 17:33:46.093746179+00:00,1 +2023-10-24 17:33:46.222328153+00:00,1 +2023-10-24 17:33:46.349973717+00:00,1 +2023-10-24 17:33:46.478250440+00:00,1 +2023-10-24 17:33:46.607878205+00:00,1 +2023-10-24 17:33:46.736864476+00:00,1 +2023-10-24 17:33:46.864282789+00:00,1 +2023-10-24 17:33:46.991438132+00:00,1 +2023-10-24 17:33:47.119405814+00:00,1 +2023-10-24 17:33:47.246254354+00:00,1 +2023-10-24 17:33:47.375650665+00:00,1 +2023-10-24 17:33:47.502913611+00:00,1 +2023-10-24 17:33:47.630142429+00:00,1 +2023-10-24 17:33:47.757007337+00:00,1 +2023-10-24 17:33:47.885797406+00:00,1 +2023-10-24 17:33:48.012497882+00:00,1 +2023-10-24 17:33:48.140175243+00:00,1 +2023-10-24 17:33:48.268169339+00:00,1 +2023-10-24 17:33:48.397157420+00:00,1 +2023-10-24 17:33:48.526690844+00:00,1 +2023-10-24 17:33:48.655289616+00:00,1 +2023-10-24 17:33:48.782411693+00:00,1 +2023-10-24 17:33:48.911724142+00:00,1 +2023-10-24 17:33:49.040269389+00:00,1 +2023-10-24 17:33:49.168799862+00:00,1 +2023-10-24 17:33:49.297723605+00:00,1 +2023-10-24 17:33:49.424740719+00:00,1 +2023-10-24 17:33:49.552425684+00:00,1 +2023-10-24 17:33:49.679053922+00:00,1 +2023-10-24 17:33:49.806811875+00:00,1 +2023-10-24 17:33:49.933641089+00:00,1 +2023-10-24 17:33:50.063085085+00:00,1 +2023-10-24 17:33:50.191377891+00:00,1 +2023-10-24 17:33:50.318459125+00:00,1 +2023-10-24 17:33:50.446401990+00:00,1 +2023-10-24 17:33:50.573754368+00:00,1 +2023-10-24 17:33:50.703201805+00:00,1 +2023-10-24 17:33:50.830791832+00:00,1 +2023-10-24 17:33:50.958808214+00:00,1 +2023-10-24 17:33:51.086470666+00:00,1 +2023-10-24 17:33:51.214453247+00:00,1 +2023-10-24 17:33:51.342264342+00:00,1 +2023-10-24 17:33:51.470480315+00:00,1 +2023-10-24 17:33:51.598541029+00:00,1 +2023-10-24 17:33:51.727347051+00:00,1 +2023-10-24 17:33:51.856512945+00:00,1 +2023-10-24 17:33:51.986463690+00:00,1 +2023-10-24 17:33:52.114893645+00:00,1 +2023-10-24 17:33:52.243990372+00:00,1 +2023-10-24 17:33:52.372110519+00:00,1 +2023-10-24 17:33:52.499660101+00:00,1 +2023-10-24 17:33:52.627658518+00:00,1 +2023-10-24 17:33:52.756041801+00:00,1 +2023-10-24 17:33:52.885323707+00:00,1 +2023-10-24 17:33:53.012912309+00:00,1 +2023-10-24 17:33:53.140973711+00:00,1 +2023-10-24 17:33:53.268900012+00:00,1 +2023-10-24 17:33:53.398474447+00:00,1 +2023-10-24 17:33:53.525778924+00:00,1 +2023-10-24 17:33:53.652767732+00:00,1 +2023-10-24 17:33:53.781309018+00:00,1 +2023-10-24 17:33:53.909510696+00:00,1 +2023-10-24 17:33:54.038578169+00:00,1 +2023-10-24 17:33:54.166139867+00:00,1 +2023-10-24 17:33:54.295028074+00:00,1 +2023-10-24 17:33:54.422922092+00:00,1 +2023-10-24 17:33:54.551252135+00:00,1 +2023-10-24 17:33:54.678845862+00:00,1 +2023-10-24 17:33:54.807345531+00:00,1 +2023-10-24 17:33:54.933647623+00:00,1 +2023-10-24 17:33:55.060463704+00:00,1 +2023-10-24 17:33:55.189528248+00:00,1 +2023-10-24 17:33:55.320258897+00:00,1 +2023-10-24 17:33:55.447859165+00:00,1 +2023-10-24 17:33:55.574835583+00:00,1 +2023-10-24 17:33:55.703334329+00:00,1 +2023-10-24 17:33:55.832699192+00:00,1 +2023-10-24 17:33:55.961348819+00:00,1 +2023-10-24 17:33:56.089460958+00:00,1 +2023-10-24 17:33:56.217885205+00:00,1 +2023-10-24 17:33:56.345747654+00:00,1 +2023-10-24 17:33:56.473475166+00:00,1 +2023-10-24 17:33:56.601031705+00:00,1 +2023-10-24 17:33:56.730517263+00:00,1 +2023-10-24 17:33:56.859946402+00:00,1 +2023-10-24 17:33:56.988580686+00:00,1 +2023-10-24 17:33:57.117773233+00:00,1 +2023-10-24 17:33:57.246689786+00:00,1 +2023-10-24 17:33:57.374753373+00:00,1 +2023-10-24 17:33:57.503073473+00:00,1 +2023-10-24 17:33:57.631060916+00:00,1 +2023-10-24 17:33:57.758996676+00:00,1 +2023-10-24 17:33:57.887866099+00:00,1 +2023-10-24 17:33:58.017763679+00:00,1 +2023-10-24 17:33:58.145469174+00:00,1 +2023-10-24 17:33:58.273323267+00:00,1 +2023-10-24 17:33:58.402814606+00:00,1 +2023-10-24 17:33:58.530763220+00:00,1 +2023-10-24 17:33:58.656589722+00:00,1 +2023-10-24 17:33:58.785235991+00:00,1 +2023-10-24 17:33:58.912809875+00:00,1 +2023-10-24 17:33:59.040016314+00:00,1 +2023-10-24 17:33:59.167445058+00:00,1 +2023-10-24 17:33:59.296071059+00:00,1 +2023-10-24 17:33:59.424549510+00:00,1 +2023-10-24 17:33:59.552600269+00:00,1 +2023-10-24 17:33:59.680546771+00:00,1 +2023-10-24 17:33:59.808449112+00:00,1 +2023-10-24 17:33:59.936103115+00:00,1 +2023-10-24 17:34:00.063642040+00:00,1 +2023-10-24 17:34:00.191251461+00:00,1 +2023-10-24 17:34:00.319043120+00:00,1 +2023-10-24 17:34:00.447299061+00:00,1 +2023-10-24 17:34:00.576107981+00:00,1 +2023-10-24 17:34:00.704113483+00:00,1 +2023-10-24 17:34:00.831200721+00:00,1 +2023-10-24 17:34:00.959155560+00:00,1 +2023-10-24 17:34:01.087480384+00:00,1 +2023-10-24 17:34:01.216023294+00:00,1 +2023-10-24 17:34:01.343822920+00:00,1 +2023-10-24 17:34:01.471712392+00:00,1 +2023-10-24 17:34:01.600355943+00:00,1 +2023-10-24 17:34:01.728413021+00:00,1 +2023-10-24 17:34:01.857562438+00:00,1 +2023-10-24 17:34:01.985993582+00:00,1 +2023-10-24 17:34:02.113749612+00:00,1 +2023-10-24 17:34:02.242145038+00:00,1 +2023-10-24 17:34:02.369955301+00:00,1 +2023-10-24 17:34:02.498657240+00:00,1 +2023-10-24 17:34:02.629456694+00:00,1 +2023-10-24 17:34:02.757823649+00:00,1 +2023-10-24 17:34:02.886274901+00:00,1 +2023-10-24 17:34:03.014921779+00:00,1 +2023-10-24 17:34:03.142880100+00:00,1 +2023-10-24 17:34:03.271043851+00:00,1 +2023-10-24 17:34:03.398791463+00:00,1 +2023-10-24 17:34:03.526758647+00:00,1 +2023-10-24 17:34:03.654640688+00:00,1 +2023-10-24 17:34:03.783288002+00:00,1 +2023-10-24 17:34:03.912020621+00:00,1 +2023-10-24 17:34:04.040584042+00:00,1 +2023-10-24 17:34:04.167885326+00:00,1 +2023-10-24 17:34:04.296430780+00:00,1 +2023-10-24 17:34:04.423837941+00:00,1 +2023-10-24 17:34:04.551423381+00:00,1 +2023-10-24 17:34:04.678247628+00:00,1 +2023-10-24 17:34:04.806344969+00:00,1 +2023-10-24 17:34:04.932856835+00:00,1 +2023-10-24 17:34:05.060115873+00:00,1 +2023-10-24 17:34:05.187056524+00:00,1 +2023-10-24 17:34:05.315761867+00:00,1 +2023-10-24 17:34:05.444941622+00:00,1 +2023-10-24 17:34:05.574623408+00:00,1 +2023-10-24 17:34:05.703238809+00:00,1 +2023-10-24 17:34:05.832258591+00:00,1 +2023-10-24 17:34:05.959980245+00:00,1 +2023-10-24 17:34:06.087699022+00:00,1 +2023-10-24 17:34:06.215940999+00:00,1 +2023-10-24 17:34:06.343660571+00:00,1 +2023-10-24 17:34:06.472207616+00:00,1 +2023-10-24 17:34:06.599322855+00:00,1 +2023-10-24 17:34:06.728069702+00:00,1 +2023-10-24 17:34:06.856558241+00:00,1 +2023-10-24 17:34:06.984754933+00:00,1 +2023-10-24 17:34:07.112015052+00:00,1 +2023-10-24 17:34:07.239853284+00:00,1 +2023-10-24 17:34:07.366917920+00:00,1 +2023-10-24 17:34:07.495508770+00:00,1 +2023-10-24 17:34:07.622568328+00:00,1 +2023-10-24 17:34:07.749434622+00:00,1 +2023-10-24 17:34:07.878151469+00:00,1 +2023-10-24 17:34:08.006505975+00:00,1 +2023-10-24 17:34:08.135095883+00:00,1 +2023-10-24 17:34:08.262510664+00:00,1 +2023-10-24 17:34:08.390479655+00:00,1 +2023-10-24 17:34:08.518822299+00:00,1 +2023-10-24 17:34:08.646048977+00:00,1 +2023-10-24 17:34:08.773431630+00:00,1 +2023-10-24 17:34:08.900444109+00:00,1 +2023-10-24 17:34:09.028049393+00:00,1 +2023-10-24 17:34:09.155443942+00:00,1 +2023-10-24 17:34:09.284148998+00:00,1 +2023-10-24 17:34:09.413032090+00:00,1 +2023-10-24 17:34:09.542207216+00:00,1 +2023-10-24 17:34:09.670063317+00:00,1 +2023-10-24 17:34:09.797471383+00:00,1 +2023-10-24 17:34:09.925338877+00:00,1 +2023-10-24 17:34:10.054174093+00:00,1 +2023-10-24 17:34:10.181030943+00:00,1 +2023-10-24 17:34:10.308608414+00:00,1 +2023-10-24 17:34:10.437508526+00:00,1 +2023-10-24 17:34:10.566052500+00:00,1 +2023-10-24 17:34:10.693850060+00:00,1 +2023-10-24 17:34:10.822103957+00:00,1 +2023-10-24 17:34:10.951074409+00:00,1 +2023-10-24 17:34:11.079221107+00:00,1 +2023-10-24 17:34:11.206882054+00:00,1 +2023-10-24 17:34:11.333211166+00:00,1 +2023-10-24 17:34:11.459707657+00:00,1 +2023-10-24 17:34:11.587489920+00:00,1 +2023-10-24 17:34:11.715447756+00:00,1 +2023-10-24 17:34:11.843534071+00:00,1 +2023-10-24 17:34:11.971473542+00:00,1 +2023-10-24 17:34:12.099239855+00:00,1 +2023-10-24 17:34:12.227536649+00:00,1 +2023-10-24 17:34:12.355432446+00:00,1 +2023-10-24 17:34:12.485856940+00:00,1 +2023-10-24 17:34:12.614061255+00:00,1 +2023-10-24 17:34:12.741796468+00:00,1 +2023-10-24 17:34:12.870725234+00:00,1 +2023-10-24 17:34:12.998750337+00:00,1 +2023-10-24 17:34:13.128802051+00:00,1 +2023-10-24 17:34:13.258166277+00:00,1 +2023-10-24 17:34:13.385882034+00:00,1 +2023-10-24 17:34:13.513858905+00:00,1 +2023-10-24 17:34:13.640869746+00:00,1 +2023-10-24 17:34:13.769682928+00:00,1 +2023-10-24 17:34:13.897451031+00:00,1 +2023-10-24 17:34:14.024267702+00:00,1 +2023-10-24 17:34:14.152393680+00:00,1 +2023-10-24 17:34:14.279968701+00:00,1 +2023-10-24 17:34:14.407269187+00:00,1 +2023-10-24 17:34:14.536039071+00:00,1 +2023-10-24 17:34:14.664092583+00:00,1 +2023-10-24 17:34:14.792021045+00:00,1 +2023-10-24 17:34:14.920257822+00:00,1 +2023-10-24 17:34:15.047707296+00:00,1 +2023-10-24 17:34:15.174719932+00:00,1 +2023-10-24 17:34:15.301961517+00:00,1 +2023-10-24 17:34:15.430211033+00:00,1 +2023-10-24 17:34:15.557323221+00:00,1 +2023-10-24 17:34:15.685383369+00:00,1 +2023-10-24 17:34:15.813202844+00:00,1 +2023-10-24 17:34:15.942013585+00:00,1 +2023-10-24 17:34:16.069617348+00:00,1 +2023-10-24 17:34:16.198543634+00:00,1 +2023-10-24 17:34:16.326627749+00:00,1 +2023-10-24 17:34:16.454412556+00:00,1 +2023-10-24 17:34:16.583576807+00:00,1 +2023-10-24 17:34:16.711377908+00:00,1 +2023-10-24 17:34:16.839262602+00:00,1 +2023-10-24 17:34:16.966594295+00:00,1 +2023-10-24 17:34:17.094498608+00:00,1 +2023-10-24 17:34:17.221228783+00:00,1 +2023-10-24 17:34:17.348318364+00:00,1 +2023-10-24 17:34:17.475360259+00:00,1 +2023-10-24 17:34:17.603008261+00:00,1 +2023-10-24 17:34:17.730181254+00:00,1 +2023-10-24 17:34:17.860010481+00:00,1 +2023-10-24 17:34:17.988329993+00:00,1 +2023-10-24 17:34:18.116346792+00:00,1 +2023-10-24 17:34:18.244384115+00:00,1 +2023-10-24 17:34:18.372326557+00:00,1 +2023-10-24 17:34:18.499386226+00:00,1 +2023-10-24 17:34:18.626794632+00:00,1 +2023-10-24 17:34:18.754162257+00:00,1 +2023-10-24 17:34:18.881051357+00:00,1 +2023-10-24 17:34:19.009083242+00:00,1 +2023-10-24 17:34:19.137681851+00:00,1 +2023-10-24 17:34:19.266268698+00:00,1 +2023-10-24 17:34:19.394094703+00:00,1 +2023-10-24 17:34:19.522918003+00:00,1 +2023-10-24 17:34:19.651087356+00:00,1 +2023-10-24 17:34:19.778104618+00:00,1 +2023-10-24 17:34:19.904744100+00:00,1 +2023-10-24 17:34:20.032666641+00:00,1 +2023-10-24 17:34:20.159457014+00:00,1 +2023-10-24 17:34:20.288737828+00:00,1 +2023-10-24 17:34:20.415303061+00:00,1 +2023-10-24 17:34:20.543658691+00:00,1 +2023-10-24 17:34:20.671939268+00:00,1 +2023-10-24 17:34:20.800183932+00:00,1 +2023-10-24 17:34:20.928619445+00:00,1 +2023-10-24 17:34:21.056929251+00:00,1 +2023-10-24 17:34:21.185046967+00:00,1 +2023-10-24 17:34:21.312590271+00:00,1 +2023-10-24 17:34:21.440738206+00:00,1 +2023-10-24 17:34:21.569284292+00:00,1 +2023-10-24 17:34:21.697861344+00:00,1 +2023-10-24 17:34:21.827473550+00:00,1 +2023-10-24 17:34:21.955817427+00:00,1 +2023-10-24 17:34:22.083785015+00:00,1 +2023-10-24 17:34:22.212050722+00:00,1 +2023-10-24 17:34:22.341285620+00:00,1 +2023-10-24 17:34:22.470872431+00:00,1 +2023-10-24 17:34:22.599155223+00:00,1 +2023-10-24 17:34:22.727720925+00:00,1 +2023-10-24 17:34:22.856184007+00:00,1 +2023-10-24 17:34:22.987052639+00:00,1 +2023-10-24 17:34:23.115476024+00:00,1 +2023-10-24 17:34:23.244845164+00:00,1 +2023-10-24 17:34:23.371565460+00:00,1 +2023-10-24 17:34:23.499442467+00:00,1 +2023-10-24 17:34:23.627002916+00:00,1 +2023-10-24 17:34:23.754521655+00:00,1 +2023-10-24 17:34:23.883099045+00:00,1 +2023-10-24 17:34:24.011391636+00:00,1 +2023-10-24 17:34:24.139096241+00:00,1 +2023-10-24 17:34:24.267269023+00:00,1 +2023-10-24 17:34:24.394448210+00:00,1 +2023-10-24 17:34:24.521811572+00:00,1 +2023-10-24 17:34:24.649327501+00:00,1 +2023-10-24 17:34:24.776818967+00:00,1 +2023-10-24 17:34:24.904539762+00:00,1 +2023-10-24 17:34:25.032283460+00:00,1 +2023-10-24 17:34:25.160359849+00:00,1 +2023-10-24 17:34:25.290409191+00:00,1 +2023-10-24 17:34:25.418938779+00:00,1 +2023-10-24 17:34:25.546246539+00:00,1 +2023-10-24 17:34:25.673752241+00:00,1 +2023-10-24 17:34:25.803150591+00:00,1 +2023-10-24 17:34:25.933909029+00:00,1 +2023-10-24 17:34:26.060552254+00:00,1 +2023-10-24 17:34:26.188906336+00:00,1 +2023-10-24 17:34:26.317908895+00:00,1 +2023-10-24 17:34:26.445251922+00:00,1 +2023-10-24 17:34:26.572783133+00:00,1 +2023-10-24 17:34:26.700492186+00:00,1 +2023-10-24 17:34:26.829446587+00:00,1 +2023-10-24 17:34:26.957572022+00:00,1 +2023-10-24 17:34:27.085139992+00:00,1 +2023-10-24 17:34:27.213774039+00:00,1 +2023-10-24 17:34:27.341224092+00:00,1 +2023-10-24 17:34:27.468255454+00:00,1 +2023-10-24 17:34:27.596157778+00:00,1 +2023-10-24 17:34:27.723862491+00:00,1 +2023-10-24 17:34:27.851335627+00:00,1 +2023-10-24 17:34:27.978159863+00:00,1 +2023-10-24 17:34:28.105920133+00:00,1 +2023-10-24 17:34:28.233936977+00:00,1 +2023-10-24 17:34:28.360637347+00:00,1 +2023-10-24 17:34:28.488505405+00:00,1 +2023-10-24 17:34:28.617276438+00:00,1 +2023-10-24 17:34:28.745194988+00:00,1 +2023-10-24 17:34:28.874201783+00:00,1 +2023-10-24 17:34:29.002527965+00:00,1 +2023-10-24 17:34:29.131733030+00:00,1 +2023-10-24 17:34:29.260414831+00:00,1 +2023-10-24 17:34:29.388347259+00:00,1 +2023-10-24 17:34:29.516465828+00:00,1 +2023-10-24 17:34:29.644589283+00:00,1 +2023-10-24 17:34:29.773496921+00:00,1 +2023-10-24 17:34:29.901150251+00:00,1 +2023-10-24 17:34:30.029404314+00:00,1 +2023-10-24 17:34:30.157402533+00:00,1 +2023-10-24 17:34:30.285534125+00:00,1 +2023-10-24 17:34:30.414575796+00:00,1 +2023-10-24 17:34:30.541279081+00:00,1 +2023-10-24 17:34:30.669940048+00:00,1 +2023-10-24 17:34:30.798326685+00:00,1 +2023-10-24 17:34:30.926379888+00:00,1 +2023-10-24 17:34:31.054335020+00:00,1 +2023-10-24 17:34:31.182397881+00:00,1 +2023-10-24 17:34:31.310089605+00:00,1 +2023-10-24 17:34:31.437637974+00:00,1 +2023-10-24 17:34:31.565778791+00:00,1 +2023-10-24 17:34:31.692858698+00:00,1 +2023-10-24 17:34:31.820308113+00:00,1 +2023-10-24 17:34:31.947791681+00:00,1 +2023-10-24 17:34:32.074748650+00:00,1 +2023-10-24 17:34:32.201077389+00:00,1 +2023-10-24 17:34:32.329050782+00:00,1 +2023-10-24 17:34:32.456065599+00:00,1 +2023-10-24 17:34:32.585206748+00:00,1 +2023-10-24 17:34:32.713713524+00:00,1 +2023-10-24 17:34:32.842466618+00:00,1 +2023-10-24 17:34:32.969814604+00:00,1 +2023-10-24 17:34:33.096067140+00:00,1 +2023-10-24 17:34:33.224034313+00:00,1 +2023-10-24 17:34:33.352208275+00:00,1 +2023-10-24 17:34:33.479901702+00:00,1 +2023-10-24 17:34:33.607505623+00:00,1 +2023-10-24 17:34:33.735642536+00:00,1 +2023-10-24 17:34:33.864419559+00:00,1 +2023-10-24 17:34:33.993256278+00:00,1 +2023-10-24 17:34:34.121726075+00:00,1 +2023-10-24 17:34:34.250173083+00:00,1 +2023-10-24 17:34:34.377502799+00:00,1 +2023-10-24 17:34:34.505934797+00:00,1 +2023-10-24 17:34:34.633402493+00:00,1 +2023-10-24 17:34:34.761965053+00:00,1 +2023-10-24 17:34:34.889413603+00:00,1 +2023-10-24 17:34:35.017641529+00:00,1 +2023-10-24 17:34:35.147426906+00:00,1 +2023-10-24 17:34:35.275252566+00:00,1 +2023-10-24 17:34:35.403035247+00:00,1 +2023-10-24 17:34:35.530709856+00:00,1 +2023-10-24 17:34:35.658327507+00:00,1 +2023-10-24 17:34:35.787935719+00:00,1 +2023-10-24 17:34:35.914963690+00:00,1 +2023-10-24 17:34:36.042545874+00:00,1 +2023-10-24 17:34:36.170321282+00:00,1 +2023-10-24 17:34:36.299403998+00:00,1 +2023-10-24 17:34:36.427301891+00:00,1 +2023-10-24 17:34:36.555739130+00:00,1 +2023-10-24 17:34:36.684135317+00:00,1 +2023-10-24 17:34:36.812011870+00:00,1 +2023-10-24 17:34:36.939701325+00:00,1 +2023-10-24 17:34:37.066749001+00:00,1 +2023-10-24 17:34:37.194179004+00:00,1 +2023-10-24 17:34:37.322891871+00:00,1 +2023-10-24 17:34:37.450516608+00:00,1 +2023-10-24 17:34:37.579437662+00:00,1 +2023-10-24 17:34:37.707588654+00:00,1 +2023-10-24 17:34:37.834559626+00:00,1 +2023-10-24 17:34:37.961600495+00:00,1 +2023-10-24 17:34:38.089390876+00:00,1 +2023-10-24 17:34:38.217879469+00:00,1 +2023-10-24 17:34:38.346597782+00:00,1 +2023-10-24 17:34:38.474805356+00:00,1 +2023-10-24 17:34:38.604275646+00:00,1 +2023-10-24 17:34:38.734438453+00:00,1 +2023-10-24 17:34:38.863129773+00:00,1 +2023-10-24 17:34:38.990824633+00:00,1 +2023-10-24 17:34:39.119751839+00:00,1 +2023-10-24 17:34:39.247426594+00:00,1 +2023-10-24 17:34:39.376579613+00:00,1 +2023-10-24 17:34:39.506333800+00:00,1 +2023-10-24 17:34:39.633602181+00:00,1 +2023-10-24 17:34:39.762533561+00:00,1 +2023-10-24 17:34:39.890890655+00:00,1 +2023-10-24 17:34:40.018878659+00:00,1 +2023-10-24 17:34:40.146940667+00:00,1 +2023-10-24 17:34:40.275102291+00:00,1 +2023-10-24 17:34:40.404031445+00:00,1 +2023-10-24 17:34:40.531905941+00:00,1 +2023-10-24 17:34:40.660600042+00:00,1 +2023-10-24 17:34:40.788967933+00:00,1 +2023-10-24 17:34:40.917403808+00:00,1 +2023-10-24 17:34:41.045845118+00:00,1 +2023-10-24 17:34:41.174140017+00:00,1 +2023-10-24 17:34:41.301992273+00:00,1 +2023-10-24 17:34:41.429457241+00:00,1 +2023-10-24 17:34:41.557417721+00:00,1 +2023-10-24 17:34:41.686464905+00:00,1 +2023-10-24 17:34:41.815363898+00:00,1 +2023-10-24 17:34:41.944252769+00:00,1 +2023-10-24 17:34:42.073774499+00:00,1 +2023-10-24 17:34:42.202368335+00:00,1 +2023-10-24 17:34:42.329676997+00:00,1 +2023-10-24 17:34:42.457491625+00:00,1 +2023-10-24 17:34:42.584846040+00:00,1 +2023-10-24 17:34:42.716224432+00:00,1 +2023-10-24 17:34:42.843684287+00:00,1 +2023-10-24 17:34:42.971620034+00:00,1 +2023-10-24 17:34:43.100944653+00:00,1 +2023-10-24 17:34:43.229096481+00:00,1 +2023-10-24 17:34:43.359278301+00:00,1 +2023-10-24 17:34:43.487982183+00:00,1 +2023-10-24 17:34:43.615053230+00:00,1 +2023-10-24 17:34:43.739772059+00:00,1 +2023-10-24 17:34:43.866145300+00:00,1 +2023-10-24 17:34:43.991951484+00:00,1 +2023-10-24 17:34:44.118277244+00:00,1 +2023-10-24 17:34:44.243196141+00:00,1 +2023-10-24 17:34:44.368588923+00:00,1 +2023-10-24 17:34:44.493432569+00:00,1 +2023-10-24 17:34:44.619337137+00:00,1 +2023-10-24 17:34:44.744246339+00:00,1 +2023-10-24 17:34:44.870155132+00:00,1 +2023-10-24 17:34:44.995927551+00:00,1 +2023-10-24 17:34:45.122177133+00:00,1 +2023-10-24 17:34:45.247824755+00:00,1 +2023-10-24 17:34:45.373851999+00:00,1 +2023-10-24 17:34:45.499539090+00:00,1 +2023-10-24 17:34:45.626659675+00:00,1 +2023-10-24 17:34:45.752167251+00:00,1 +2023-10-24 17:34:45.879618696+00:00,1 +2023-10-24 17:34:46.005312387+00:00,1 +2023-10-24 17:34:46.130861837+00:00,1 +2023-10-24 17:34:46.256217423+00:00,1 diff --git a/tests/zero-downtime-scaling/results/1.0.0/25-node/gradual-up-https.png b/tests/zero-downtime-scaling/results/1.0.0/25-node/gradual-up-https.png new file mode 100644 index 0000000000000000000000000000000000000000..55df9d5075fb1bc010c169688322faad635b4169 GIT binary patch literal 6445 zcmeHLYgALm+J1#YwNSyMTnZG(p%pJESgAyWn0TR3Ee&cB6(K6%1%x1oTtk8uQ9;77 zN)&`p%SEAF6@w&P6crRhK#0gKkvmBw0g@0%Ao~mby1Lf4*7{K z7}C&yXxf7`uo*d%$Ykzg_EY33yP-TD!Q~>Ty1F_Iy9F(n*9N5y%zXxmWgyoDnI23p zhbeuKtbmD?@NpFgjX+=wV_(9E84R1lpal$A0v`qa*3kDg^sI(%8|YdK-1X3D3vV|< zn>}zg0edsNae&ubpcxHKTj9kvcMhK)6 zff@$a!yz>Su0_I?C`gWmq*(YR4la^_LIyGgNEadQ7l=)Q=wyhx0+H7sA{D}~Ll_l^ z=@4=Qf^S05EjUesQ@0^76a4SOiEKDV2SP6R-UFXJIFb*C3c>q6coo5cKVW|ec$NXa z96Tyv?<3e#1?~)Rs|ME^*u{dKwScP!Yy)7Pf%9|N_5!vx0lFEsyatCiu$c{;IAGrf z8{dL$C#>hf+Agr^hSfdrbst#w1Bwrp17I--=EGn%0$+}Su>g#Ou<9eMoPZS)(4T_k z)1W5iA*zj-R9N zPW0=A_w3P1I{w@yZ>87zjT=?`-QQESW50~&I$9>&MT%>#Y6Zy??>=4;aJl1$8{hn= zR5yBbxv+&n?bs6O#aK{ilcvhKUZe*(7CVvh2rjigJ}~Kztmp@J3-3qO1D1qvq@3Ex zK45dpxI@cn3t=6%=&J9*L%!Iap}m%0&HOti(H;Mtefov@Dq>NQpuk*o{C88~yPs~E zGcw{-7pfI5X{Lm>H*RN&MeQ}*T#;qRm2;=jmi~7o`wfzdnFqW%WOcM`;rQ6y!U8{u zi$y^#CWC7lfPFgsK5u17g&GrIy`R9m?8pDBG%N{-e0bYOWpxAPqxAQ~fzCd9RHk;ha6^Ppv$swXMuM=verPCsv z%IssN)<$=DFEX!ft>@Kuc9q0F#AU>ZlzsSJG@ZBP8eFIZ-kAFz9&;}E)y-QTMXkf0 zMbin6JEFR_X6aPkSu{80ph(U)%j)a!+s=AmU!d(PGUCQ)(jm*GgcI^Eof|`Gg%_U` z35ZdOaVvf2j~I*NRnpR_EZQN_=La?PpM3Vf8#~^0DqUGq74vmz_6 z?T&pi3}-HORysTJMF%4ze)gFN;WMf(9r^s)JxNS!S0jhdXrt4aICaK^e$eW**XqWc z2nGZKg4C9w)5`h^${b!TFD`2jMf2mP-}Cpq+O?!=rJ*Zddbcc@=uJq9WL6ME`MVfu zvkAGPo;)bwzcteO8wY#WPk2GuBb3_~CCpv!;C7w1a*FGF=k`kXFO-{Q$yVoS11~y- z=45+$bf2_Ir&6s}XrlJZq{ahX7O8PiQb_!!R-=ACqHg2YkJ$dBbC0JXi4#$0sgC_a z96Ka?wTE#8#n8@vr}^UcsTKcn850eRaU)FAZkZR#JMHuWoZ7+_g-204qcsigVo#b) z9PO|BXF~i{F1=7^Ge69^O|0TuNqsl`bJ0>Yl^L&IYCHG+?1lL+18Q#HAy!+QRxC)U zb52*<{E(5lgd29{UH0iaa}Qp;H(pqctJ61h)m;pA9xTS@Q}I(A{u04#f-SS4G;=Th ziZ!N};S*DO`Ng?XADp2;P}l#u#*{q4!CH+-Y=4xVobkERYlT*2UqE9vHUwMF)eoDO z%;Tk6rd1sW9n?LH#+K61s&+J2cv%`dbnK=#Hd)EFoDuix<(1Tk-i0Kd_v)qBT<9K8 z=Brw&Pj#fCWyRP1_xUaSLr7Cq=xn}gE}ZEj8oM7DYZbkmS4DeAV$S?*<#&^0Ji^7( z6Ka>Tq1YPftux-cB03|vqJ9wN>Ih_a%#ymEq!0{#5)FhfgB- zG#Eb31pn2Hh;4rzu|*JyK3XKQclMAr?#q+R-O+hVB!(r9`z{cSn};`=G}F0dUHr%B zQerPJkN;t*N%QQU;?O4c$QN(XUfdtcYFp*yO9&|P_j7V(@61biT5p!jd4AF~k0|U2 zN|br^Dri%}yka{Nzg&am{20yao=S?5YbS`UN#X=->E&LnI~gsqXF*5INUnY;#k;0t z`SiIa+R1kh7luuT_fz#oSVvIYz`BJRFDCB!%q7k5k~#HF#Ss+ANXk~F$oirz#ai=G z0i^l42z7NjbT3FgM|@SY{(5*2L?>z1 zjtsqkcoR`4!LBYPA3dePCN@!bXtre4C8ffaXa-$lN71aa!=#q>NR1y}M9*MDm* zE?(DtDt?N?|Bnb>OLoU_|BDS}q`mHfgwz-Q25*=> zg~7!^Rc`IinH8%IqUDc_I7}-a+3vCnb_pzIMIc_5ThdeJ!7}%mrZ5Fx%W496V?jc3 zCs%HmKcN~m9*GxRUdEMe6&6^%jc=~(`4c$*FW^>MP}Qzi8e~_4=$M|@WBu1RW=7RU z2>us%HaXU7`d2ifl%S5cWC zjhhEz=)p&frC;CAVq-eyCuAL^C0KoyxU$z@-ZWT|JXX6MExKXi5nsc^rC~n2n(oLu z&vV9J)g8r<{CNi0tNPgXkcUT(CaogAw9JX_3uNH*IjW;$Q%#4B-K&%>Ev9GvzN0ab z+u^*xZhteTnWxLl2UZs;bhSM_8vS^D3BI6kVz0Ec$(Z9zB!%#}?=MOH6oShpE(cue zHceeP+paAx66yH7V&UK6?XO5z2Cox_vHdvqhP_UEkmJLVv_R_I@eSJ7nk+M;x=%51 zdu+B(n7BXH&iS6pFv-tfL~f1iSH5OtRV3kM)tsP2Ll2gPkBq|Hi}fp)ua<82J;0Wj zq?!n_$mhwm*VNypl=|7z z9QE=720LmC6(6*>Z^ZX{kA_6i##c*A8GFY1&stN!9eV%LVBpqt>{&^6hCHX7_p$E34#pX`1SM z7qXAwy?rX-flt#IWZa8{?hMGj9fQ8oeT)RB5@Ys}V}238j7u}P2XDq@o{=EKMtTY41w@o8RQaXhd8{otC|h~Io?cb7F8 zV?S_Rl?Za_S?qSzbwLw($+y|c!nKWk4DyO^kJ|UEJjqopA(|fkJHQ z|0=^j#d7j*aR(JgYe1i^iH&`hp|fAMo7kkD)Xw<72U*H*5$(`R_{~{M#F}$nfFE3c L+FiQy*v0<=BPlbj literal 0 HcmV?d00001 diff --git a/tests/zero-downtime-scaling/scale.sh b/tests/zero-downtime-scaling/scale.sh new file mode 100755 index 000000000..21f80a949 --- /dev/null +++ b/tests/zero-downtime-scaling/scale.sh @@ -0,0 +1,68 @@ +#!/bin/bash + +scale_deployment() { + replicas="$1" + wait="$2" + + namespace="nginx-gateway" + deployment_name=$(kubectl get deployment -n "$namespace" -o=jsonpath='{.items[0].metadata.name}') + + # Scale. + echo "Scaling deployment to $replicas replicas..." + kubectl scale deployment -n "$namespace" "$deployment_name" --replicas="$replicas" + + if [ "$wait" == "true" ]; then + echo "Waiting for all Pods to be ready" + kubectl wait pod --all --for=condition=Ready -n "$namespace" + echo "All $replicas Pods are ready" + else + echo "Sleeping for 40 seconds to wait for Pod to terminate" + sleep 40 + fi + + # Get the current observed generation of Gateway + current_gen=$(kubectl get gateway gateway -o=jsonpath='{.status.conditions[0].observedGeneration}') + next_gen=$((current_gen+1)) + + # Apply the updated gateway. + echo "Applying the updated gateway" + kubectl apply -f "manifests/gateway-$replicas.yaml" + + for i in $(seq 1 60); do + gen=$(kubectl get gateway gateway -o=jsonpath='{.status.conditions[0].observedGeneration}') + if [[ $gen -ne $next_gen ]]; then + echo "Observed generation is $gen; expected $next_gen; waiting" + sleep 1 + continue + else + echo "Observed generation updated" + break + fi + + if [ $i -eq 60 ]; then + echo "Observed generation not updated after 60 seconds. Exiting..." + exit 1 + fi + done + + kubectl get gateway gateway -o=jsonpath='{.status.conditions}' | jq . +} + +if [ "$#" -ne 1 ]; then + echo "Usage: $0 " + exit 1 +fi + +if [ "$1" == "up" ]; then + # Scale up + for i in $(seq 2 25); do + scale_deployment "$i" "true" + sleep 1 + done +else + # Scale down + for i in $(seq 24 1); do + scale_deployment "$i" "false" + sleep 1 + done +fi diff --git a/tests/zero-downtime-scaling/values-10-node.yaml b/tests/zero-downtime-scaling/values-10-node.yaml new file mode 100644 index 000000000..967913597 --- /dev/null +++ b/tests/zero-downtime-scaling/values-10-node.yaml @@ -0,0 +1,29 @@ +nginxGateway: + image: + repository: ghcr.io/nginxinc/nginx-gateway-fabric + tag: edge # change this tag if you are testing a different version + pullPolicy: IfNotPresent + lifecycle: + preStop: + exec: + command: + - /usr/bin/gateway + - sleep + - --duration=40s + config: + logging: + level: debug + +nginx: + lifecycle: + preStop: + exec: + command: + - /bin/sleep + - "40" + +terminationGracePeriodSeconds: 50 + +service: + annotations: + networking.gke.io/load-balancer-type: "Internal" diff --git a/tests/zero-downtime-scaling/values-25-node.yaml b/tests/zero-downtime-scaling/values-25-node.yaml new file mode 100644 index 000000000..62463cdf8 --- /dev/null +++ b/tests/zero-downtime-scaling/values-25-node.yaml @@ -0,0 +1,37 @@ +nginxGateway: + image: + repository: ghcr.io/nginxinc/nginx-gateway-fabric + tag: edge # change this tag if you are testing a different version + pullPolicy: IfNotPresent + lifecycle: + preStop: + exec: + command: + - /usr/bin/gateway + - sleep + - --duration=40s + config: + logging: + level: debug + +nginx: + lifecycle: + preStop: + exec: + command: + - /bin/sleep + - "40" + +terminationGracePeriodSeconds: 50 + +affinity: + podAntiAffinity: + requiredDuringSchedulingIgnoredDuringExecution: + - topologyKey: kubernetes.io/hostname + labelSelector: + matchLabels: + app.kubernetes.io/name: nginx-gateway + +service: + annotations: + networking.gke.io/load-balancer-type: "Internal" diff --git a/tests/zero-downtime-scaling/zero-downtime-scaling.md b/tests/zero-downtime-scaling/zero-downtime-scaling.md new file mode 100644 index 000000000..bef5393a8 --- /dev/null +++ b/tests/zero-downtime-scaling/zero-downtime-scaling.md @@ -0,0 +1,381 @@ +# Zero-Downtime Scaling + +This document describes a test plan for testing zero-downtime scaling of NGF. + +*Zero-downtime scaling* means that when the number of replicas of NGF is scaled up or down, the clients don't experience +any interruptions to the traffic they send to applications exposed via NGF. + + +- [Zero-Downtime Scaling](#zero-downtime-scaling) + - [Goals](#goals) + - [Non-Goals](#non-goals) + - [Test Environment](#test-environment) + - [Tests](#tests) + - [Setup](#setup) + - [Scale Gradually](#scale-gradually) + - [Scale Abruptly](#scale-abruptly) + - [Analyze](#analyze) + + +## Goals + +- Ensure that scaling up NGF doesn't lead to any loss of traffic flowing through the data plane. +- Ensure that scaling down NGF doesn't lead to any loss of traffic flowing through the data plane. +- Ensure that after scaling, NGF can process changes to resources. + +## Non-Goals + +- Testing long-lived connections. + + When scaling the number of NGF replicas down, Kubernetes will shut down existing NGF pods by sending a SIGTERM. If the + pod doesn't terminate in 30 seconds (the default period), Kubernetes will send a SIGKILL. + + When proxying Websocket or any long-lived connections, NGINX will not terminate until that connection is closed by + either the client or the backend. This means that unless all those connections are closed by clients/backends before + or during an upgrade (which is highly unlikely), NGINX will not terminate, which means Kubernetes will kill NGINX. As + a result, the clients will see the connections abruptly closed and thus experience downtime. + + As a result, we *will not* use any long-live connections in this test, because NGF cannot support zero-downtime + upgrades in this case. + +- Scaling to over 25 replicas. + +## Test Environment + +The scaling tests will be performed on two different Kubernetes clusters: + +- A Kubernetes cluster with 10 nodes on GKE: + - Node: n2d-standard-4 (4 vCPU, 8GB memory). + - Enabled GKE logging. +- A Kubernetes cluster with 25 nodes on GKE: + - Node: n2d-standard-4 (4 vCPU, 8GB memory). + - Enabled GKE logging. + +The 10 Node cluster will cover the case where multiple NGF Pods are running on the same Node, whereas the 25 Node +cluster will test 1 NGF Pod per Node. + +The rest of the test environment is the same for both cases: + +- Tester VMs: + - Configuration: + - Debian + - Install packages: wrk, curl, gnuplot. + - Location - same zone as the Kubernetes cluster. + - First VM - for HTTP traffic. + - Second VM - for sending HTTPs traffic. +- NGF + - Deployment with 1 replicas (during the test we will scale this up to a max of 25 replicas). + - Exposed via a Service with type LoadBalancer, private IP. + - Configure delayed termination with a 40-second sleep. + - Gateway, two listeners - HTTP and HTTPs. + - Two apps: + - Coffee - 10 replicas. + - Tea - 10 replicas. + - Two HTTPRoutes + - Coffee (HTTP). + - Tea (HTTPS). + +Notes: + +- For sending traffic, we will use both wrk and curl. + - *wrk* will generate a lot of traffic continuously, and it will have a high chance of catching of any + (however small) periods of downtime. + - *curl* will generate 1 request every 0.1s. While it might not catch small periods of downtime, it will give us + timeline of failed request for big periods of downtime, which wrk doesn't do. + +## Tests + +Run the following tests on both the 10 and 25 node clusters. + +### Setup + +1. Create a cluster. +2. Deploy a previous latest stable version with 1 replica + + For the 25 node cluster: + + ```console + helm install my-release oci://ghcr.io/nginxinc/charts/nginx-gateway-fabric --create-namespace --wait -n nginx-gateway --version 0.0.0-edge --values ./values-25-node.yaml + ``` + + For the 10 node cluster: + + ```console + helm install my-release oci://ghcr.io/nginxinc/charts/nginx-gateway-fabric --create-namespace --wait -n nginx-gateway --version 0.0.0-edge --values ./values-10-node.yaml + ``` + +3. Expose NGF via a Service Load Balancer, internal (only accessible within the Google Cloud region) by adding + `networking.gke.io/load-balancer-type: "Internal"` annotation to the Service. +4. Deploy backend apps: + + ```console + kubectl apply -f manifests/cafe.yaml + ``` + +5. Configure Gateway: + + ```console + kubectl apply -f manifests/cafe-secret.yaml + kubectl apply -f manifests/gateway.yaml + ``` + +6. Expose apps via HTTPRoutes + + ```console + kubectl apply -f manifests/cafe-routes.yaml + ``` + +7. Check statuses of the Gateway and HTTPRoutes for errors. +8. In Google Monitoring, check NGF and NGINX error logs for errors. +9. In Tester VMs, update `/etc/hosts` to have an entry with the External IP of the NGF Service (`10.128.0.10` in this + case): + + ```text + 10.128.0.10 cafe.example.com + ``` + +### Scale Gradually + +1. Scale up + 1. Start sending traffic using wrk from tester VMs for 5 minutes: + - Tester VM 1: + - wrk: + + ```console + wrk -t2 -c2 -d5m --latency --timeout 2s http://cafe.example.com/coffee + ``` + + - curl: + + ```console + for i in `seq 1 3000`; do printf "\nRequest $i\n" && date --rfc-3339=ns && curl -sS --connect-timeout 2 http://cafe.example.com/coffee 2>&1 && sleep 0.1s; done > results.txt + ``` + + - Tester VM 2: + - wrk: + + ```console + wrk -t2 -c2 -d5m --latency --timeout 2s https://cafe.example.com/tea + ``` + + - curl: + + ```console + for i in `seq 1 3000`; do printf "\nRequest $i\n" && date --rfc-3339=ns && curl -k -sS --connect-timeout 2 https://cafe.example.com/tea 2>&1 && sleep 0.1s; done > results.txt + ``` + + 2. **Immediately** scale up: + + ```console + ./scale.sh up + ``` + + This script scales NGF to 25 Pods one at a time. After increasing the number of Pods by one, it waits for all Pods + to be ready, updates the Gateway resource, and then waits for the Gateway status observed generation to increment + by one. If after 60 seconds, the Gateway status observed generation has not been incremented, the script will + exit. It prints the Gateway status after the observed generation is incremented. Check this to make sure the + Gateway is Accepted and Programmed. You can redirect the script's output to a file if you don't want to watch it + execute. + + 3. Once `wrk` finishes, kill the curl for loops. + + 4. [Analyze](#analyze) the results. +2. Scale down + 1. Start sending traffic using wrk from tester VMs for 20 minutes: + - Tester VM 1: + - wrk: + + ```console + wrk -t2 -c2 -d20m --latency --timeout 2s http://cafe.example.com/coffee + ``` + + - curl: + + ```console + for i in `seq 1 12000`; do printf "\nRequest $i\n" && date --rfc-3339=ns && curl -sS --connect-timeout 2 http://cafe.example.com/coffee 2>&1 && sleep 0.1s; done > results.txt + ``` + + - Tester VM 2: + - wrk: + + ```console + wrk -t2 -c2 -d20m --latency --timeout 2s https://cafe.example.com/tea + ``` + + - curl: + + ```console + for i in `seq 1 12000`; do printf "\nRequest $i\n" && date --rfc-3339=ns && curl -k -sS --connect-timeout 2 https://cafe.example.com/tea 2>&1 && sleep 0.1s; done > results.txt + ``` + + 2. **Immediately** scale down: + + ```console + ./scale.sh down + ``` + + This script scales NGF from 25 Pods to 1 Pod one at a time. After decreasing the number of Pods by one, it sleeps + for 40 seconds to wait for the Pod to terminate. Then, it updates the Gateway resource and waits for the Gateway + status observed generation to increment by one. If after 60 seconds, the Gateway status observed generation has + not been incremented, the script will exit. It prints the Gateway status after the observed generation is + incremented. Check this to make sure the Gateway is Accepted and Programmed. You can redirect the script's output + to a file if you don't want to watch it execute. + + 3. Once the scale script finishes, kill wrk and the curl for loops. + + 4. [Analyze](#analyze) the results. + +### Scale Abruptly + +1. Scale up + 1. Start sending traffic using wrk from tester VMs for 2 minutes: + - Tester VM 1: + - wrk: + + ```console + wrk -t2 -c2 -d2m --latency --timeout 2s http://cafe.example.com/coffee + ``` + + - curl: + + ```console + for i in `seq 1 600`; do printf "\nRequest $i\n" && date --rfc-3339=ns && curl -sS --connect-timeout 2 http://cafe.example.com/coffee 2>&1 && sleep 0.1s; done > results.txt + ``` + + - Tester VM 2: + - wrk: + + ```console + wrk -t2 -c2 -d2m --latency --timeout 2s https://cafe.example.com/tea + ``` + + - curl: + + ```console + for i in `seq 1 600`; do printf "\nRequest $i\n" && date --rfc-3339=ns && curl -k -sS --connect-timeout 2 https://cafe.example.com/tea 2>&1 && sleep 0.1s; done > results.txt + ``` + + 2. Scale NGF up to 25 Pods: + + ```console + kubectl scale -n nginx-gateway deployment --replicas 25 + ``` + + 3. Update the Gateway + + ```console + kubectl apply -f manifests/gateway-2.yaml + ``` + + 4. Check the status of the Gateway and make sure it's been updated (there should be three listeners) + + ```console + kubectl describe gateway + ``` + + 5. [Analyze](#analyze) the results. +2. Scale down + 1. Start sending traffic using wrk from tester VMs for 2 minutes: + - Tester VM 1: + - wrk: + + ```console + wrk -t2 -c2 -d2m --latency --timeout 2s http://cafe.example.com/coffee + ``` + + - curl: + + ```console + for i in `seq 1 600`; do printf "\nRequest $i\n" && date --rfc-3339=ns && curl -sS --connect-timeout 2 http://cafe.example.com/coffee 2>&1 && sleep 0.1s; done > results.txt + ``` + + - Tester VM 2: + - wrk: + + ```console + wrk -t2 -c2 -d2m --latency --timeout 2s https://cafe.example.com/tea + ``` + + - curl: + + ```console + for i in `seq 1 600`; do printf "\nRequest $i\n" && date --rfc-3339=ns && curl -k -sS --connect-timeout 2 https://cafe.example.com/tea 2>&1 && sleep 0.1s; done > results.txt + ``` + + 2. Scale NGF down to 1 Pods: + + ```console + kubectl scale -n nginx-gateway deployment --replicas 1 + ``` + + 3. Update the Gateway + + ```console + kubectl apply -f manifests/gateway-1.yaml + ``` + + 4. Check the status of the Gateway and make sure it's been updated (there should be two listeners) + + ```console + kubectl describe gateway + ``` + + 5. [Analyze](#analyze) the results. + +### Analyze + +After each test analyze and record the following: + +- Tester VMs: + - Analyze the output of wrk commands for errors and latencies. + - Create graphs from curl output. + See [graphing instructions](/tests/zero-downtime-upgrades/zero-downtime-upgrades.md#converting-curl-output-to-a-graph). + - Check logs + - NGINX Access logs - we expect only 200 responses. Google Monitoring query: + + ```text + resource.type="k8s_container" + resource.labels.cluster_name="" + resource.labels.container_name="nginx" + resource.labels.namespace_name="nginx-gateway" + labels.k8s-pod/app_kubernetes_io/instance="" + severity=INFO + SEARCH("200") + ``` + + To check for non-200 responses: + + ```text + resource.type="k8s_container" + resource.labels.cluster_name="" + resource.labels.container_name="nginx" + resource.labels.namespace_name="nginx-gateway" + labels.k8s-pod/app_kubernetes_io/instance="" + severity=INFO + NOT SEARCH("200") + ``` + + - NGINX Error logs - we expect no errors or warnings: + Google Monitoring query: + + ```text + resource.type="k8s_container" + resource.labels.cluster_name="" + resource.labels.container_name="nginx" + resource.labels.namespace_name="nginx-gateway" + labels.k8s-pod/app_kubernetes_io/instance="" + severity=ERROR + SEARCH("`[warn]`") OR SEARCH("`[error]`") + ``` + + - NGF logs - we expect no errors + + ```text + resource.type="k8s_container" + resource.labels.cluster_name="" + resource.labels.container_name="nginx-gateway" + resource.labels.namespace_name="nginx-gateway" + labels.k8s-pod/app_kubernetes_io/instance="" + severity="ERROR" + SEARCH("error") + ``` From 5b2b3263455f5cc09a42172f50878675316a4248 Mon Sep 17 00:00:00 2001 From: Kate Osborn Date: Tue, 31 Oct 2023 15:33:00 -0600 Subject: [PATCH 2/7] Remove jq from script --- tests/zero-downtime-scaling/scale.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/zero-downtime-scaling/scale.sh b/tests/zero-downtime-scaling/scale.sh index 21f80a949..b2a73199d 100755 --- a/tests/zero-downtime-scaling/scale.sh +++ b/tests/zero-downtime-scaling/scale.sh @@ -45,7 +45,7 @@ scale_deployment() { fi done - kubectl get gateway gateway -o=jsonpath='{.status.conditions}' | jq . + kubectl get gateway gateway -o=jsonpath='{.status.conditions}' } if [ "$#" -ne 1 ]; then From 9ae8e3c8ad4975842d240cd55a3fddca57bca985 Mon Sep 17 00:00:00 2001 From: Kate Osborn Date: Tue, 31 Oct 2023 15:34:01 -0600 Subject: [PATCH 3/7] Remove step on creating loadbalancer --- .../zero-downtime-scaling/zero-downtime-scaling.md | 14 ++++++-------- 1 file changed, 6 insertions(+), 8 deletions(-) diff --git a/tests/zero-downtime-scaling/zero-downtime-scaling.md b/tests/zero-downtime-scaling/zero-downtime-scaling.md index bef5393a8..970a5199e 100644 --- a/tests/zero-downtime-scaling/zero-downtime-scaling.md +++ b/tests/zero-downtime-scaling/zero-downtime-scaling.md @@ -104,30 +104,28 @@ Run the following tests on both the 10 and 25 node clusters. helm install my-release oci://ghcr.io/nginxinc/charts/nginx-gateway-fabric --create-namespace --wait -n nginx-gateway --version 0.0.0-edge --values ./values-10-node.yaml ``` -3. Expose NGF via a Service Load Balancer, internal (only accessible within the Google Cloud region) by adding - `networking.gke.io/load-balancer-type: "Internal"` annotation to the Service. -4. Deploy backend apps: +3. Deploy backend apps: ```console kubectl apply -f manifests/cafe.yaml ``` -5. Configure Gateway: +4. Configure Gateway: ```console kubectl apply -f manifests/cafe-secret.yaml kubectl apply -f manifests/gateway.yaml ``` -6. Expose apps via HTTPRoutes +5. Expose apps via HTTPRoutes ```console kubectl apply -f manifests/cafe-routes.yaml ``` -7. Check statuses of the Gateway and HTTPRoutes for errors. -8. In Google Monitoring, check NGF and NGINX error logs for errors. -9. In Tester VMs, update `/etc/hosts` to have an entry with the External IP of the NGF Service (`10.128.0.10` in this +6. Check statuses of the Gateway and HTTPRoutes for errors. +7. In Google Monitoring, check NGF and NGINX error logs for errors. +8. In Tester VMs, update `/etc/hosts` to have an entry with the External IP of the NGF Service (`10.128.0.10` in this case): ```text From ce99d8ccf38717ef6b56d42fec3af0d1c684430d Mon Sep 17 00:00:00 2001 From: Kate Osborn Date: Tue, 31 Oct 2023 15:34:47 -0600 Subject: [PATCH 4/7] Fix hostname --- tests/zero-downtime-scaling/manifests/gateway-11.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/zero-downtime-scaling/manifests/gateway-11.yaml b/tests/zero-downtime-scaling/manifests/gateway-11.yaml index 543357e76..5b6dc7028 100644 --- a/tests/zero-downtime-scaling/manifests/gateway-11.yaml +++ b/tests/zero-downtime-scaling/manifests/gateway-11.yaml @@ -48,7 +48,7 @@ spec: - name: http-11 port: 80 protocol: HTTP - hostname: "12.example.com" + hostname: "11.example.com" - name: https port: 443 protocol: HTTPS From 9ab4d3931e40182130b7d8102b0fade25de723b4 Mon Sep 17 00:00:00 2001 From: Kate Osborn Date: Tue, 31 Oct 2023 16:54:09 -0600 Subject: [PATCH 5/7] Add note about 499s --- tests/zero-downtime-scaling/results/1.0.0/1.0.0.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tests/zero-downtime-scaling/results/1.0.0/1.0.0.md b/tests/zero-downtime-scaling/results/1.0.0/1.0.0.md index 52b9898cc..66fdd4e11 100644 --- a/tests/zero-downtime-scaling/results/1.0.0/1.0.0.md +++ b/tests/zero-downtime-scaling/results/1.0.0/1.0.0.md @@ -57,6 +57,8 @@ OS: Linux 5.15.109+ 10.168.0.14 - - [24/Oct/2023:17:58:47 +0000] "GET /coffee HTTP/1.1" 499 0 "-" "-" ``` + A 499 status code means the client closed the connection. Probably due to wrk and curl closing connections after 60s. + - There were some socket read errors and socket timeouts - There were no errors in NGF or problems with leader election. The statuses were updated as expected. From 13675375ef8265a6ecab99d8cddebf5bce2d035e Mon Sep 17 00:00:00 2001 From: Kate Osborn <50597707+kate-osborn@users.noreply.github.com> Date: Wed, 1 Nov 2023 13:38:03 -0600 Subject: [PATCH 6/7] Update tests/zero-downtime-scaling/zero-downtime-scaling.md Co-authored-by: bjee19 <139261241+bjee19@users.noreply.github.com> --- tests/zero-downtime-scaling/zero-downtime-scaling.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/zero-downtime-scaling/zero-downtime-scaling.md b/tests/zero-downtime-scaling/zero-downtime-scaling.md index 970a5199e..e816024e2 100644 --- a/tests/zero-downtime-scaling/zero-downtime-scaling.md +++ b/tests/zero-downtime-scaling/zero-downtime-scaling.md @@ -78,7 +78,7 @@ The rest of the test environment is the same for both cases: Notes: - For sending traffic, we will use both wrk and curl. - - *wrk* will generate a lot of traffic continuously, and it will have a high chance of catching of any + - *wrk* will generate a lot of traffic continuously and it will have a high chance of catching any (however small) periods of downtime. - *curl* will generate 1 request every 0.1s. While it might not catch small periods of downtime, it will give us timeline of failed request for big periods of downtime, which wrk doesn't do. From 992f2c28d386a6648921f9ead37f8dea31e5b193 Mon Sep 17 00:00:00 2001 From: Kate Osborn <50597707+kate-osborn@users.noreply.github.com> Date: Wed, 1 Nov 2023 13:38:14 -0600 Subject: [PATCH 7/7] Update tests/zero-downtime-scaling/zero-downtime-scaling.md Co-authored-by: bjee19 <139261241+bjee19@users.noreply.github.com> --- tests/zero-downtime-scaling/zero-downtime-scaling.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/zero-downtime-scaling/zero-downtime-scaling.md b/tests/zero-downtime-scaling/zero-downtime-scaling.md index e816024e2..0f3fa09e7 100644 --- a/tests/zero-downtime-scaling/zero-downtime-scaling.md +++ b/tests/zero-downtime-scaling/zero-downtime-scaling.md @@ -81,7 +81,7 @@ Notes: - *wrk* will generate a lot of traffic continuously and it will have a high chance of catching any (however small) periods of downtime. - *curl* will generate 1 request every 0.1s. While it might not catch small periods of downtime, it will give us - timeline of failed request for big periods of downtime, which wrk doesn't do. + a timeline of failed requests for big periods of downtime, which wrk doesn't do. ## Tests