From 8bbba2a850e3e3315726b5cc4ad56e99f772d0a3 Mon Sep 17 00:00:00 2001 From: Mingyu Chen Date: Mon, 8 Jul 2024 15:52:23 +0800 Subject: [PATCH] [fix](case) fix struct format out files (#37350) follow up #37349 1. Some of constants are calculated in FE, it should output same format as in BE. Add `FormatOptions` to control the output format of complex types. 3. Modify some of result files of test cases. --- .../apache/doris/analysis/ArrayLiteral.java | 15 +- .../apache/doris/analysis/BoolLiteral.java | 5 +- .../org/apache/doris/analysis/CastExpr.java | 5 +- .../apache/doris/analysis/DateLiteral.java | 5 +- .../apache/doris/analysis/DecimalLiteral.java | 7 +- .../java/org/apache/doris/analysis/Expr.java | 7 +- .../apache/doris/analysis/FloatLiteral.java | 7 +- .../apache/doris/analysis/IPv4Literal.java | 5 +- .../apache/doris/analysis/IPv6Literal.java | 5 +- .../org/apache/doris/analysis/IntLiteral.java | 5 +- .../apache/doris/analysis/JsonLiteral.java | 3 +- .../doris/analysis/LargeIntLiteral.java | 5 +- .../apache/doris/analysis/LiteralExpr.java | 22 +- .../org/apache/doris/analysis/MapLiteral.java | 15 +- .../org/apache/doris/analysis/MaxLiteral.java | 3 +- .../apache/doris/analysis/NullLiteral.java | 7 +- .../doris/analysis/PlaceHolderExpr.java | 5 +- .../apache/doris/analysis/StringLiteral.java | 5 +- .../apache/doris/analysis/StructLiteral.java | 18 +- .../apache/doris/common/FormatOptions.java | 57 +++ .../apache/doris/nereids/NereidsPlanner.java | 19 + .../doris/nereids/StatementContext.java | 11 + .../plans/commands/insert/InsertUtils.java | 8 +- .../physical/PhysicalOneRowRelation.java | 2 +- .../doris/planner/GroupCommitPlanner.java | 5 +- .../apache/doris/planner/OriginalPlanner.java | 4 +- .../org/apache/doris/qe/SessionVariable.java | 2 +- .../org/apache/doris/qe/StmtExecutor.java | 11 +- .../doris/analysis/ArrayLiteralTest.java | 177 +++++-- .../doris/analysis/DateLiteralTest.java | 5 +- .../doris/analysis/DecimalLiteralTest.java | 4 +- .../doris/analysis/FloatLiteralTest.java | 7 +- .../apache/doris/analysis/MapLiteralTest.java | 157 +++++- .../doris/analysis/StructLiteralTest.java | 68 ++- .../one_level_nestedtypes_with_s3data.out | 120 ++--- .../hive/ddl/test_hive_write_type.out | 24 +- .../hive/write/test_hive_write_insert.out | 448 +++++++++--------- .../jdbc/test_jdbc_query_tvf.out | 6 +- .../external_table_p0/tvf/test_tvf_avro.out | 20 +- .../external_table_p2/hive/test_hive_hudi.out | 200 ++++---- .../hive/test_hive_write_insert_s3.out | 60 +-- .../iceberg/iceberg_complex_type.out | 48 +- .../iceberg/iceberg_schema_change.out | 144 +++--- .../data/jsonb_p0/test_jsonb_cast.csv | 4 +- .../data/jsonb_p0/test_jsonb_cast.out | 14 +- .../data/nereids_syntax_p0/cast.out | 2 +- .../cast_function/test_cast_struct.out | 18 +- .../ip_functions/test_ipv4_cidr_to_range.out | 8 +- .../test_struct_functions_by_literal.out | 20 +- .../tvf/test_s3_tvf_with_resource.groovy | 9 +- .../suites/jsonb_p0/test_jsonb_cast.groovy | 6 +- 51 files changed, 1115 insertions(+), 722 deletions(-) create mode 100644 fe/fe-core/src/main/java/org/apache/doris/common/FormatOptions.java diff --git a/fe/fe-core/src/main/java/org/apache/doris/analysis/ArrayLiteral.java b/fe/fe-core/src/main/java/org/apache/doris/analysis/ArrayLiteral.java index d838d292843605..2e0f43758f8e79 100644 --- a/fe/fe-core/src/main/java/org/apache/doris/analysis/ArrayLiteral.java +++ b/fe/fe-core/src/main/java/org/apache/doris/analysis/ArrayLiteral.java @@ -20,6 +20,7 @@ import org.apache.doris.catalog.ArrayType; import org.apache.doris.catalog.Type; import org.apache.doris.common.AnalysisException; +import org.apache.doris.common.FormatOptions; import org.apache.doris.thrift.TExprNode; import org.apache.doris.thrift.TExprNodeType; @@ -132,21 +133,21 @@ public String getStringValue() { } @Override - public String getStringValueForArray() { + public String getStringValueForArray(FormatOptions options) { List list = new ArrayList<>(children.size()); - children.forEach(v -> list.add(v.getStringValueForArray())); + children.forEach(v -> list.add(v.getStringValueForArray(options))); return "[" + StringUtils.join(list, ", ") + "]"; } @Override - public String getStringValueInFe() { + public String getStringValueInFe(FormatOptions options) { List list = new ArrayList<>(children.size()); children.forEach(v -> { String stringLiteral; if (v instanceof NullLiteral) { - stringLiteral = "null"; + stringLiteral = options.getNullFormat(); } else { - stringLiteral = getStringLiteralForComplexType(v); + stringLiteral = getStringLiteralForComplexType(v, options); } // we should use type to decide we output array is suitable for json format list.add(stringLiteral); @@ -155,14 +156,14 @@ public String getStringValueInFe() { } @Override - public String getStringValueForStreamLoad() { + public String getStringValueForStreamLoad(FormatOptions options) { List list = new ArrayList<>(children.size()); children.forEach(v -> { String stringLiteral; if (v instanceof NullLiteral) { stringLiteral = "null"; } else { - stringLiteral = getStringLiteralForStreamLoad(v); + stringLiteral = getStringLiteralForStreamLoad(v, options); } // we should use type to decide we output array is suitable for json format list.add(stringLiteral); diff --git a/fe/fe-core/src/main/java/org/apache/doris/analysis/BoolLiteral.java b/fe/fe-core/src/main/java/org/apache/doris/analysis/BoolLiteral.java index 826f688396b9a3..c0d6d885285151 100644 --- a/fe/fe-core/src/main/java/org/apache/doris/analysis/BoolLiteral.java +++ b/fe/fe-core/src/main/java/org/apache/doris/analysis/BoolLiteral.java @@ -23,6 +23,7 @@ import org.apache.doris.catalog.PrimitiveType; import org.apache.doris.catalog.Type; import org.apache.doris.common.AnalysisException; +import org.apache.doris.common.FormatOptions; import org.apache.doris.thrift.TBoolLiteral; import org.apache.doris.thrift.TExprNode; import org.apache.doris.thrift.TExprNodeType; @@ -111,8 +112,8 @@ public String getStringValue() { } @Override - public String getStringValueForArray() { - return "\"" + getStringValue() + "\""; + public String getStringValueForArray(FormatOptions options) { + return options.getNestedStringWrapper() + getStringValue() + options.getNestedStringWrapper(); } @Override diff --git a/fe/fe-core/src/main/java/org/apache/doris/analysis/CastExpr.java b/fe/fe-core/src/main/java/org/apache/doris/analysis/CastExpr.java index 9f6a319224d98d..d11cdc147a838f 100644 --- a/fe/fe-core/src/main/java/org/apache/doris/analysis/CastExpr.java +++ b/fe/fe-core/src/main/java/org/apache/doris/analysis/CastExpr.java @@ -30,6 +30,7 @@ import org.apache.doris.catalog.Type; import org.apache.doris.catalog.TypeUtils; import org.apache.doris.common.AnalysisException; +import org.apache.doris.common.FormatOptions; import org.apache.doris.common.Pair; import org.apache.doris.qe.ConnectContext; import org.apache.doris.thrift.TExpr; @@ -571,8 +572,8 @@ public boolean isNullable() { } @Override - public String getStringValueForArray() { - return children.get(0).getStringValueForArray(); + public String getStringValueForArray(FormatOptions options) { + return children.get(0).getStringValueForArray(options); } public void setNotFold(boolean notFold) { diff --git a/fe/fe-core/src/main/java/org/apache/doris/analysis/DateLiteral.java b/fe/fe-core/src/main/java/org/apache/doris/analysis/DateLiteral.java index 8bb7fab4a4120d..4973a1caad9dcf 100644 --- a/fe/fe-core/src/main/java/org/apache/doris/analysis/DateLiteral.java +++ b/fe/fe-core/src/main/java/org/apache/doris/analysis/DateLiteral.java @@ -24,6 +24,7 @@ import org.apache.doris.catalog.ScalarType; import org.apache.doris.catalog.Type; import org.apache.doris.common.AnalysisException; +import org.apache.doris.common.FormatOptions; import org.apache.doris.common.InvalidFormatException; import org.apache.doris.nereids.util.DateUtils; import org.apache.doris.qe.SessionVariable; @@ -730,8 +731,8 @@ public String getStringValue() { } @Override - public String getStringValueForArray() { - return "\"" + getStringValue() + "\""; + public String getStringValueForArray(FormatOptions options) { + return options.getNestedStringWrapper() + getStringValue() + options.getNestedStringWrapper(); } public void roundCeiling(int newScale) { diff --git a/fe/fe-core/src/main/java/org/apache/doris/analysis/DecimalLiteral.java b/fe/fe-core/src/main/java/org/apache/doris/analysis/DecimalLiteral.java index 35b7c01ef6be4c..c4bbf6e2cce436 100644 --- a/fe/fe-core/src/main/java/org/apache/doris/analysis/DecimalLiteral.java +++ b/fe/fe-core/src/main/java/org/apache/doris/analysis/DecimalLiteral.java @@ -22,6 +22,7 @@ import org.apache.doris.catalog.Type; import org.apache.doris.common.AnalysisException; import org.apache.doris.common.Config; +import org.apache.doris.common.FormatOptions; import org.apache.doris.common.NotImplementedException; import org.apache.doris.common.io.Text; import org.apache.doris.qe.SessionVariable; @@ -262,7 +263,7 @@ public int compareLiteral(LiteralExpr expr) { } @Override - public String getStringValueInFe() { + public String getStringValueInFe(FormatOptions options) { return value.toPlainString(); } @@ -277,8 +278,8 @@ public String getStringValue() { } @Override - public String getStringValueForArray() { - return "\"" + getStringValue() + "\""; + public String getStringValueForArray(FormatOptions options) { + return options.getNestedStringWrapper() + getStringValue() + options.getNestedStringWrapper(); } @Override diff --git a/fe/fe-core/src/main/java/org/apache/doris/analysis/Expr.java b/fe/fe-core/src/main/java/org/apache/doris/analysis/Expr.java index 3f86b7fcc60ff8..89932e6ca08b21 100644 --- a/fe/fe-core/src/main/java/org/apache/doris/analysis/Expr.java +++ b/fe/fe-core/src/main/java/org/apache/doris/analysis/Expr.java @@ -39,6 +39,7 @@ import org.apache.doris.common.AnalysisException; import org.apache.doris.common.Config; import org.apache.doris.common.FeMetaVersion; +import org.apache.doris.common.FormatOptions; import org.apache.doris.common.TreeNode; import org.apache.doris.common.io.Text; import org.apache.doris.nereids.util.Utils; @@ -2173,11 +2174,11 @@ public String getStringValue() { return ""; } - public String getStringValueInFe() { + public String getStringValueInFe(FormatOptions options) { return getStringValue(); } - public String getStringValueForStreamLoad() { + public String getStringValueForStreamLoad(FormatOptions options) { return getStringValue(); } @@ -2186,7 +2187,7 @@ public String getStringValueForStreamLoad() { // ["1", "2", "3"] // ["a", "b", "c"] // [["1", "2", "3"], ["1"], ["3"]] - public String getStringValueForArray() { + public String getStringValueForArray(FormatOptions options) { return null; } diff --git a/fe/fe-core/src/main/java/org/apache/doris/analysis/FloatLiteral.java b/fe/fe-core/src/main/java/org/apache/doris/analysis/FloatLiteral.java index 3cb0a20e50f5f6..c6cf403f949e71 100644 --- a/fe/fe-core/src/main/java/org/apache/doris/analysis/FloatLiteral.java +++ b/fe/fe-core/src/main/java/org/apache/doris/analysis/FloatLiteral.java @@ -22,6 +22,7 @@ import org.apache.doris.catalog.Type; import org.apache.doris.common.AnalysisException; import org.apache.doris.common.Config; +import org.apache.doris.common.FormatOptions; import org.apache.doris.common.NotImplementedException; import org.apache.doris.thrift.TExprNode; import org.apache.doris.thrift.TExprNodeType; @@ -151,7 +152,7 @@ public String getStringValue() { } @Override - public String getStringValueInFe() { + public String getStringValueInFe(FormatOptions options) { if (type == Type.TIME || type == Type.TIMEV2) { // FloatLiteral used to represent TIME type, here we need to remove apostrophe from timeStr // for example '11:22:33' -> 11:22:33 @@ -163,13 +164,13 @@ public String getStringValueInFe() { } @Override - public String getStringValueForArray() { + public String getStringValueForArray(FormatOptions options) { String ret = getStringValue(); if (type == Type.TIME || type == Type.TIMEV2) { // here already wrapped in '' ret = ret.substring(1, ret.length() - 1); } - return "\"" + ret + "\""; + return options.getNestedStringWrapper() + ret + options.getNestedStringWrapper(); } public static Type getDefaultTimeType(Type type) throws AnalysisException { diff --git a/fe/fe-core/src/main/java/org/apache/doris/analysis/IPv4Literal.java b/fe/fe-core/src/main/java/org/apache/doris/analysis/IPv4Literal.java index 310d458330b004..6fa84d18b25f41 100644 --- a/fe/fe-core/src/main/java/org/apache/doris/analysis/IPv4Literal.java +++ b/fe/fe-core/src/main/java/org/apache/doris/analysis/IPv4Literal.java @@ -19,6 +19,7 @@ import org.apache.doris.catalog.Type; import org.apache.doris.common.AnalysisException; +import org.apache.doris.common.FormatOptions; import org.apache.doris.thrift.TExprNode; import org.apache.doris.thrift.TExprNodeType; import org.apache.doris.thrift.TIPv4Literal; @@ -139,7 +140,7 @@ public String getStringValue() { } @Override - public String getStringValueForArray() { - return "\"" + getStringValue() + "\""; + public String getStringValueForArray(FormatOptions options) { + return options.getNestedStringWrapper() + getStringValue() + options.getNestedStringWrapper(); } } diff --git a/fe/fe-core/src/main/java/org/apache/doris/analysis/IPv6Literal.java b/fe/fe-core/src/main/java/org/apache/doris/analysis/IPv6Literal.java index 880e7416edb062..a3ec7a3a349824 100644 --- a/fe/fe-core/src/main/java/org/apache/doris/analysis/IPv6Literal.java +++ b/fe/fe-core/src/main/java/org/apache/doris/analysis/IPv6Literal.java @@ -19,6 +19,7 @@ import org.apache.doris.catalog.Type; import org.apache.doris.common.AnalysisException; +import org.apache.doris.common.FormatOptions; import org.apache.doris.thrift.TExprNode; import org.apache.doris.thrift.TExprNodeType; import org.apache.doris.thrift.TIPv6Literal; @@ -104,7 +105,7 @@ public String getStringValue() { } @Override - public String getStringValueForArray() { - return "\"" + getStringValue() + "\""; + public String getStringValueForArray(FormatOptions options) { + return options.getNestedStringWrapper() + getStringValue() + options.getNestedStringWrapper(); } } diff --git a/fe/fe-core/src/main/java/org/apache/doris/analysis/IntLiteral.java b/fe/fe-core/src/main/java/org/apache/doris/analysis/IntLiteral.java index 5ec08b7176b061..34006c51710231 100644 --- a/fe/fe-core/src/main/java/org/apache/doris/analysis/IntLiteral.java +++ b/fe/fe-core/src/main/java/org/apache/doris/analysis/IntLiteral.java @@ -20,6 +20,7 @@ import org.apache.doris.catalog.PrimitiveType; import org.apache.doris.catalog.Type; import org.apache.doris.common.AnalysisException; +import org.apache.doris.common.FormatOptions; import org.apache.doris.common.NotImplementedException; import org.apache.doris.common.util.ByteBufferUtil; import org.apache.doris.qe.ConnectContext; @@ -288,8 +289,8 @@ public String getStringValue() { } @Override - public String getStringValueForArray() { - return "\"" + getStringValue() + "\""; + public String getStringValueForArray(FormatOptions options) { + return options.getNestedStringWrapper() + getStringValue() + options.getNestedStringWrapper(); } @Override diff --git a/fe/fe-core/src/main/java/org/apache/doris/analysis/JsonLiteral.java b/fe/fe-core/src/main/java/org/apache/doris/analysis/JsonLiteral.java index 72c9ae2769c6c5..e568fafe45aa5e 100644 --- a/fe/fe-core/src/main/java/org/apache/doris/analysis/JsonLiteral.java +++ b/fe/fe-core/src/main/java/org/apache/doris/analysis/JsonLiteral.java @@ -19,6 +19,7 @@ import org.apache.doris.catalog.Type; import org.apache.doris.common.AnalysisException; +import org.apache.doris.common.FormatOptions; import org.apache.doris.common.io.Text; import org.apache.doris.thrift.TExprNode; import org.apache.doris.thrift.TExprNodeType; @@ -100,7 +101,7 @@ public String getStringValue() { } @Override - public String getStringValueForArray() { + public String getStringValueForArray(FormatOptions options) { return null; } diff --git a/fe/fe-core/src/main/java/org/apache/doris/analysis/LargeIntLiteral.java b/fe/fe-core/src/main/java/org/apache/doris/analysis/LargeIntLiteral.java index 3c4f00e6d63c39..ad6f8980c92ed7 100644 --- a/fe/fe-core/src/main/java/org/apache/doris/analysis/LargeIntLiteral.java +++ b/fe/fe-core/src/main/java/org/apache/doris/analysis/LargeIntLiteral.java @@ -20,6 +20,7 @@ import org.apache.doris.catalog.PrimitiveType; import org.apache.doris.catalog.Type; import org.apache.doris.common.AnalysisException; +import org.apache.doris.common.FormatOptions; import org.apache.doris.common.io.Text; import org.apache.doris.thrift.TExprNode; import org.apache.doris.thrift.TExprNodeType; @@ -197,8 +198,8 @@ public String getStringValue() { } @Override - public String getStringValueForArray() { - return "\"" + getStringValue() + "\""; + public String getStringValueForArray(FormatOptions options) { + return options.getNestedStringWrapper() + getStringValue() + options.getNestedStringWrapper(); } @Override diff --git a/fe/fe-core/src/main/java/org/apache/doris/analysis/LiteralExpr.java b/fe/fe-core/src/main/java/org/apache/doris/analysis/LiteralExpr.java index 4377801a886afc..301b6277725247 100644 --- a/fe/fe-core/src/main/java/org/apache/doris/analysis/LiteralExpr.java +++ b/fe/fe-core/src/main/java/org/apache/doris/analysis/LiteralExpr.java @@ -25,6 +25,7 @@ import org.apache.doris.catalog.ScalarType; import org.apache.doris.catalog.Type; import org.apache.doris.common.AnalysisException; +import org.apache.doris.common.FormatOptions; import org.apache.doris.common.NotImplementedException; import org.apache.doris.mysql.MysqlProto; import org.apache.doris.thrift.TExprNode; @@ -113,30 +114,29 @@ public static LiteralExpr create(String value, Type type) throws AnalysisExcepti return literalExpr; } - - public static String getStringLiteralForComplexType(Expr v) { + public static String getStringLiteralForComplexType(Expr v, FormatOptions options) { if (!(v instanceof NullLiteral) && v.getType().isScalarType() && (Type.getNumericTypes().contains((ScalarType) v.getActualScalarType(v.getType())) || v.getType() == Type.BOOLEAN)) { - return v.getStringValueInFe(); + return v.getStringValueInFe(options); } else if (v.getType().isComplexType()) { // these type should also call getStringValueInFe which should handle special case for itself - return v.getStringValueInFe(); + return v.getStringValueInFe(options); } else { - return v.getStringValueForArray(); + return v.getStringValueForArray(options); } } - public static String getStringLiteralForStreamLoad(Expr v) { + public static String getStringLiteralForStreamLoad(Expr v, FormatOptions options) { if (!(v instanceof NullLiteral) && v.getType().isScalarType() && (Type.getNumericTypes().contains((ScalarType) v.getActualScalarType(v.getType())) || v.getType() == Type.BOOLEAN)) { - return v.getStringValueInFe(); + return v.getStringValueInFe(options); } else if (v.getType().isComplexType()) { // these type should also call getStringValueInFe which should handle special case for itself - return v.getStringValueForStreamLoad(); + return v.getStringValueForStreamLoad(options); } else { - return v.getStringValueForArray(); + return v.getStringValueForArray(options); } } @@ -265,12 +265,12 @@ public int compareTo(LiteralExpr literalExpr) { @Override public abstract String getStringValue(); - public String getStringValueInFe() { + public String getStringValueInFe(FormatOptions options) { return getStringValue(); } @Override - public abstract String getStringValueForArray(); + public abstract String getStringValueForArray(FormatOptions options); public long getLongValue() { return 0; diff --git a/fe/fe-core/src/main/java/org/apache/doris/analysis/MapLiteral.java b/fe/fe-core/src/main/java/org/apache/doris/analysis/MapLiteral.java index d8f23b0ad2381b..f330dfa6edb8bc 100644 --- a/fe/fe-core/src/main/java/org/apache/doris/analysis/MapLiteral.java +++ b/fe/fe-core/src/main/java/org/apache/doris/analysis/MapLiteral.java @@ -20,6 +20,7 @@ import org.apache.doris.catalog.MapType; import org.apache.doris.catalog.Type; import org.apache.doris.common.AnalysisException; +import org.apache.doris.common.FormatOptions; import org.apache.doris.qe.SessionVariable; import org.apache.doris.thrift.TExprNode; import org.apache.doris.thrift.TExprNodeType; @@ -170,25 +171,27 @@ private String getStringValue(Expr expr) { } @Override - public String getStringValueForArray() { + public String getStringValueForArray(FormatOptions options) { List list = new ArrayList<>(children.size()); for (int i = 0; i < children.size() && i + 1 < children.size(); i += 2) { - list.add(children.get(i).getStringValueForArray() + ":" + children.get(i + 1).getStringValueForArray()); + list.add(children.get(i).getStringValueForArray(options) + + options.getMapKeyDelim() + + children.get(i + 1).getStringValueForArray(options)); } return "{" + StringUtils.join(list, ", ") + "}"; } @Override - public String getStringValueInFe() { + public String getStringValueInFe(FormatOptions options) { List list = new ArrayList<>(children.size()); for (int i = 0; i < children.size() && i + 1 < children.size(); i += 2) { // we should use type to decide we output array is suitable for json format if (children.get(i).getType().isComplexType()) { // map key type do not support complex type - throw new UnsupportedOperationException("Unsupport key type for MAP: " + children.get(i).getType()); + throw new UnsupportedOperationException("Unsupported key type for MAP: " + children.get(i).getType()); } - list.add(getStringLiteralForComplexType(children.get(i)) - + ":" + getStringLiteralForComplexType(children.get(i + 1))); + list.add(getStringLiteralForComplexType(children.get(i), options) + + options.getMapKeyDelim() + getStringLiteralForComplexType(children.get(i + 1), options)); } return "{" + StringUtils.join(list, ", ") + "}"; } diff --git a/fe/fe-core/src/main/java/org/apache/doris/analysis/MaxLiteral.java b/fe/fe-core/src/main/java/org/apache/doris/analysis/MaxLiteral.java index 289f64b9e4b84a..f3f2f24a77cd96 100644 --- a/fe/fe-core/src/main/java/org/apache/doris/analysis/MaxLiteral.java +++ b/fe/fe-core/src/main/java/org/apache/doris/analysis/MaxLiteral.java @@ -17,6 +17,7 @@ package org.apache.doris.analysis; +import org.apache.doris.common.FormatOptions; import org.apache.doris.thrift.TExprNode; import java.io.DataInput; @@ -68,7 +69,7 @@ public String getStringValue() { } @Override - public String getStringValueForArray() { + public String getStringValueForArray(FormatOptions options) { return null; } diff --git a/fe/fe-core/src/main/java/org/apache/doris/analysis/NullLiteral.java b/fe/fe-core/src/main/java/org/apache/doris/analysis/NullLiteral.java index ac82ddf62ff380..e0a47d7db6d769 100644 --- a/fe/fe-core/src/main/java/org/apache/doris/analysis/NullLiteral.java +++ b/fe/fe-core/src/main/java/org/apache/doris/analysis/NullLiteral.java @@ -23,6 +23,7 @@ import org.apache.doris.catalog.PrimitiveType; import org.apache.doris.catalog.Type; import org.apache.doris.common.AnalysisException; +import org.apache.doris.common.FormatOptions; import org.apache.doris.thrift.TExprNode; import org.apache.doris.thrift.TExprNodeType; @@ -104,15 +105,15 @@ public String getStringValue() { } @Override - public String getStringValueInFe() { + public String getStringValueInFe(FormatOptions options) { return null; } // the null value inside an array is represented as "null", for exampe: // [null, null]. Not same as other primitive type to represent as \N. @Override - public String getStringValueForArray() { - return "null"; + public String getStringValueForArray(FormatOptions options) { + return options.getNullFormat(); } @Override diff --git a/fe/fe-core/src/main/java/org/apache/doris/analysis/PlaceHolderExpr.java b/fe/fe-core/src/main/java/org/apache/doris/analysis/PlaceHolderExpr.java index 50bea1c2d5647e..0e5aeeb362b5fd 100644 --- a/fe/fe-core/src/main/java/org/apache/doris/analysis/PlaceHolderExpr.java +++ b/fe/fe-core/src/main/java/org/apache/doris/analysis/PlaceHolderExpr.java @@ -21,6 +21,7 @@ import org.apache.doris.catalog.PrimitiveType; import org.apache.doris.catalog.Type; import org.apache.doris.common.AnalysisException; +import org.apache.doris.common.FormatOptions; import org.apache.doris.common.NotImplementedException; import org.apache.doris.thrift.TExprNode; @@ -190,8 +191,8 @@ public Expr reset() { } @Override - public String getStringValueForArray() { - return "\"" + getStringValue() + "\""; + public String getStringValueForArray(FormatOptions options) { + return options.getNestedStringWrapper() + getStringValue() + options.getNestedStringWrapper(); } public void setupParamFromBinary(ByteBuffer data, boolean isUnsigned) { diff --git a/fe/fe-core/src/main/java/org/apache/doris/analysis/StringLiteral.java b/fe/fe-core/src/main/java/org/apache/doris/analysis/StringLiteral.java index 619b757c5fcac0..7867be0c9f2cbf 100644 --- a/fe/fe-core/src/main/java/org/apache/doris/analysis/StringLiteral.java +++ b/fe/fe-core/src/main/java/org/apache/doris/analysis/StringLiteral.java @@ -24,6 +24,7 @@ import org.apache.doris.catalog.Type; import org.apache.doris.common.AnalysisException; import org.apache.doris.common.DdlException; +import org.apache.doris.common.FormatOptions; import org.apache.doris.common.io.Text; import org.apache.doris.qe.VariableVarConverters; import org.apache.doris.thrift.TExprNode; @@ -153,8 +154,8 @@ public String getStringValue() { } @Override - public String getStringValueForArray() { - return "\"" + getStringValue() + "\""; + public String getStringValueForArray(FormatOptions options) { + return options.getNestedStringWrapper() + getStringValue() + options.getNestedStringWrapper(); } @Override diff --git a/fe/fe-core/src/main/java/org/apache/doris/analysis/StructLiteral.java b/fe/fe-core/src/main/java/org/apache/doris/analysis/StructLiteral.java index 4478fd9cee7074..5d888168821d2f 100644 --- a/fe/fe-core/src/main/java/org/apache/doris/analysis/StructLiteral.java +++ b/fe/fe-core/src/main/java/org/apache/doris/analysis/StructLiteral.java @@ -21,6 +21,7 @@ import org.apache.doris.catalog.StructType; import org.apache.doris.catalog.Type; import org.apache.doris.common.AnalysisException; +import org.apache.doris.common.FormatOptions; import org.apache.doris.thrift.TExprNode; import org.apache.doris.thrift.TExprNodeType; import org.apache.doris.thrift.TTypeDesc; @@ -106,28 +107,31 @@ public String getStringValue() { } @Override - public String getStringValueForArray() { + public String getStringValueForArray(FormatOptions options) { List list = new ArrayList<>(children.size()); - children.forEach(v -> list.add(v.getStringValueForArray())); + children.forEach(v -> list.add(v.getStringValueForArray(options))); return "{" + StringUtils.join(list, ", ") + "}"; } @Override - public String getStringValueInFe() { + public String getStringValueInFe(FormatOptions options) { List list = new ArrayList<>(children.size()); // same with be default field index start with 1 for (int i = 0; i < children.size(); i++) { Expr child = children.get(i); - list.add("\"" + ((StructType) type).getFields().get(i).getName() + "\": " - + getStringLiteralForComplexType(child)); + list.add(options.getNestedStringWrapper() + + ((StructType) type).getFields().get(i).getName() + + options.getNestedStringWrapper() + + options.getMapKeyDelim() + + getStringLiteralForComplexType(child, options)); } return "{" + StringUtils.join(list, ", ") + "}"; } @Override - public String getStringValueForStreamLoad() { + public String getStringValueForStreamLoad(FormatOptions options) { List list = new ArrayList<>(children.size()); - children.forEach(v -> list.add(getStringLiteralForComplexType(v))); + children.forEach(v -> list.add(getStringLiteralForComplexType(v, options))); return "{" + StringUtils.join(list, ", ") + "}"; } diff --git a/fe/fe-core/src/main/java/org/apache/doris/common/FormatOptions.java b/fe/fe-core/src/main/java/org/apache/doris/common/FormatOptions.java new file mode 100644 index 00000000000000..a63b83ab71da98 --- /dev/null +++ b/fe/fe-core/src/main/java/org/apache/doris/common/FormatOptions.java @@ -0,0 +1,57 @@ +// Licensed to the Apache Software Foundation (ASF) under one +// or more contributor license agreements. See the NOTICE file +// distributed with this work for additional information +// regarding copyright ownership. The ASF licenses this file +// to you under the Apache License, Version 2.0 (the +// "License"); you may not use this file except in compliance +// with the License. You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, +// software distributed under the License is distributed on an +// "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +// KIND, either express or implied. See the License for the +// specific language governing permissions and limitations +// under the License. + +package org.apache.doris.common; + +/** + * Format options for formatting literals in FE. + * This is mainly for optional compatibility for Presto/Trino. + * User can use different session variable "serde_dialect" to choose different format options. + * This behavior same as in BE. see FormatOptions in be/src/vec/data_types/serde/data_type_serde.h + */ +public class FormatOptions { + + private String nestedStringWrapper; + private String mapKeyDelim; + private String nullFormat; + + public FormatOptions(String nestedStringWrapper, String mapKeyDelim, String nullFormat) { + this.nestedStringWrapper = nestedStringWrapper; + this.mapKeyDelim = mapKeyDelim; + this.nullFormat = nullFormat; + } + + public String getNestedStringWrapper() { + return this.nestedStringWrapper; + } + + public String getMapKeyDelim() { + return this.mapKeyDelim; + } + + public String getNullFormat() { + return this.nullFormat; + } + + public static FormatOptions getDefault() { + return new FormatOptions("\"", ":", "null"); + } + + public static FormatOptions getForPresto() { + return new FormatOptions("", "=", "NULL"); + } +} diff --git a/fe/fe-core/src/main/java/org/apache/doris/nereids/NereidsPlanner.java b/fe/fe-core/src/main/java/org/apache/doris/nereids/NereidsPlanner.java index 819b4c371fc03a..f2799ea66d37b2 100644 --- a/fe/fe-core/src/main/java/org/apache/doris/nereids/NereidsPlanner.java +++ b/fe/fe-core/src/main/java/org/apache/doris/nereids/NereidsPlanner.java @@ -21,6 +21,7 @@ import org.apache.doris.analysis.ExplainOptions; import org.apache.doris.analysis.StatementBase; import org.apache.doris.catalog.Column; +import org.apache.doris.common.FormatOptions; import org.apache.doris.common.NereidsException; import org.apache.doris.common.Pair; import org.apache.doris.common.UserException; @@ -597,6 +598,8 @@ public Optional handleQueryInFe(StatementBase parsedStmt) { if (!(parsedStmt instanceof LogicalPlanAdapter)) { return Optional.empty(); } + + setFormatOptions(); if (physicalPlan instanceof ComputeResultSet) { Optional sqlCacheContext = statementContext.getSqlCacheContext(); Optional resultSet = ((ComputeResultSet) physicalPlan) @@ -625,6 +628,22 @@ && getScanNodes().get(0) instanceof IcebergScanNode) { } } + private void setFormatOptions() { + ConnectContext ctx = statementContext.getConnectContext(); + SessionVariable sessionVariable = ctx.getSessionVariable(); + switch (sessionVariable.serdeDialect) { + case "presto": + case "trino": + statementContext.setFormatOptions(FormatOptions.getForPresto()); + break; + case "doris": + statementContext.setFormatOptions(FormatOptions.getDefault()); + break; + default: + throw new AnalysisException("Unsupported serde dialect: " + sessionVariable.serdeDialect); + } + } + @VisibleForTesting public CascadesContext getCascadesContext() { return cascadesContext; diff --git a/fe/fe-core/src/main/java/org/apache/doris/nereids/StatementContext.java b/fe/fe-core/src/main/java/org/apache/doris/nereids/StatementContext.java index e79f079129dbd3..0236222e674d61 100644 --- a/fe/fe-core/src/main/java/org/apache/doris/nereids/StatementContext.java +++ b/fe/fe-core/src/main/java/org/apache/doris/nereids/StatementContext.java @@ -20,6 +20,7 @@ import org.apache.doris.analysis.StatementBase; import org.apache.doris.catalog.TableIf; import org.apache.doris.catalog.constraint.TableIdentifier; +import org.apache.doris.common.FormatOptions; import org.apache.doris.common.Id; import org.apache.doris.common.IdGenerator; import org.apache.doris.common.Pair; @@ -163,6 +164,8 @@ public class StatementContext implements Closeable { private ShortCircuitQueryContext shortCircuitQueryContext; + private FormatOptions formatOptions = FormatOptions.getDefault(); + public StatementContext() { this(ConnectContext.get(), null, 0); } @@ -480,6 +483,14 @@ public void setPlaceholders(List placeholders) { this.placeholders = placeholders; } + public void setFormatOptions(FormatOptions options) { + this.formatOptions = options; + } + + public FormatOptions getFormatOptions() { + return formatOptions; + } + private static class CloseableResource implements Closeable { public final String resourceName; public final String threadName; diff --git a/fe/fe-core/src/main/java/org/apache/doris/nereids/trees/plans/commands/insert/InsertUtils.java b/fe/fe-core/src/main/java/org/apache/doris/nereids/trees/plans/commands/insert/InsertUtils.java index a1611718ec875a..e99e81b9778ef6 100644 --- a/fe/fe-core/src/main/java/org/apache/doris/nereids/trees/plans/commands/insert/InsertUtils.java +++ b/fe/fe-core/src/main/java/org/apache/doris/nereids/trees/plans/commands/insert/InsertUtils.java @@ -26,6 +26,7 @@ import org.apache.doris.catalog.Table; import org.apache.doris.catalog.TableIf; import org.apache.doris.common.Config; +import org.apache.doris.common.FormatOptions; import org.apache.doris.datasource.hive.HMSExternalTable; import org.apache.doris.nereids.analyzer.UnboundAlias; import org.apache.doris.nereids.analyzer.UnboundHiveTableSink; @@ -102,9 +103,10 @@ public static void executeBatchInsertTransaction(ConnectContext ctx, String dbNa TransactionEntry txnEntry = ctx.getTxnEntry(); int effectRows = 0; + FormatOptions options = FormatOptions.getDefault(); for (List row : constantExprsList) { ++effectRows; - InternalService.PDataRow data = getRowStringValue(row); + InternalService.PDataRow data = getRowStringValue(row, options); if (data == null) { continue; } @@ -147,7 +149,7 @@ public static void executeBatchInsertTransaction(ConnectContext ctx, String dbNa /** * literal expr in insert operation */ - public static InternalService.PDataRow getRowStringValue(List cols) { + public static InternalService.PDataRow getRowStringValue(List cols, FormatOptions options) { if (cols.isEmpty()) { return null; } @@ -164,7 +166,7 @@ public static InternalService.PDataRow getRowStringValue(List c row.addColBuilder().setValue(StmtExecutor.NULL_VALUE_FOR_LOAD); } else if (expr instanceof ArrayLiteral) { row.addColBuilder().setValue(String.format("\"%s\"", - ((ArrayLiteral) expr).toLegacyLiteral().getStringValueForArray())); + ((ArrayLiteral) expr).toLegacyLiteral().getStringValueForArray(options))); } else { row.addColBuilder().setValue(String.format("\"%s\"", ((Literal) expr).toLegacyLiteral().getStringValue())); diff --git a/fe/fe-core/src/main/java/org/apache/doris/nereids/trees/plans/physical/PhysicalOneRowRelation.java b/fe/fe-core/src/main/java/org/apache/doris/nereids/trees/plans/physical/PhysicalOneRowRelation.java index 2b1b91891cb31e..cd068316b8ccf8 100644 --- a/fe/fe-core/src/main/java/org/apache/doris/nereids/trees/plans/physical/PhysicalOneRowRelation.java +++ b/fe/fe-core/src/main/java/org/apache/doris/nereids/trees/plans/physical/PhysicalOneRowRelation.java @@ -146,7 +146,7 @@ public Optional computeResultInFe( if (expr instanceof Literal) { LiteralExpr legacyExpr = ((Literal) expr).toLegacyLiteral(); columns.add(new Column(output.getName(), output.getDataType().toCatalogDataType())); - data.add(legacyExpr.getStringValueInFe()); + data.add(legacyExpr.getStringValueInFe(cascadesContext.getStatementContext().getFormatOptions())); } else { return Optional.empty(); } diff --git a/fe/fe-core/src/main/java/org/apache/doris/planner/GroupCommitPlanner.java b/fe/fe-core/src/main/java/org/apache/doris/planner/GroupCommitPlanner.java index 2c625d7480edfa..09c2f72b5ca675 100644 --- a/fe/fe-core/src/main/java/org/apache/doris/planner/GroupCommitPlanner.java +++ b/fe/fe-core/src/main/java/org/apache/doris/planner/GroupCommitPlanner.java @@ -26,6 +26,7 @@ import org.apache.doris.catalog.Env; import org.apache.doris.catalog.OlapTable; import org.apache.doris.common.DdlException; +import org.apache.doris.common.FormatOptions; import org.apache.doris.common.UserException; import org.apache.doris.proto.InternalService; import org.apache.doris.proto.InternalService.PGroupCommitInsertRequest; @@ -183,7 +184,7 @@ public List getRows(NativeInsertStmt stmt) throws User SelectStmt selectStmt = (SelectStmt) (stmt.getQueryStmt()); if (selectStmt.getValueList() != null) { for (List row : selectStmt.getValueList().getRows()) { - InternalService.PDataRow data = StmtExecutor.getRowStringValue(row); + InternalService.PDataRow data = StmtExecutor.getRowStringValue(row, FormatOptions.getDefault()); if (LOG.isDebugEnabled()) { LOG.debug("add row: [{}]", data.getColList().stream().map(c -> c.getValue()) .collect(Collectors.joining(","))); @@ -199,7 +200,7 @@ public List getRows(NativeInsertStmt stmt) throws User exprList.add(resultExpr); } } - InternalService.PDataRow data = StmtExecutor.getRowStringValue(exprList); + InternalService.PDataRow data = StmtExecutor.getRowStringValue(exprList, FormatOptions.getDefault()); if (LOG.isDebugEnabled()) { LOG.debug("add row: [{}]", data.getColList().stream().map(c -> c.getValue()) .collect(Collectors.joining(","))); diff --git a/fe/fe-core/src/main/java/org/apache/doris/planner/OriginalPlanner.java b/fe/fe-core/src/main/java/org/apache/doris/planner/OriginalPlanner.java index 971faee67fa1cd..32de32413ffadd 100644 --- a/fe/fe-core/src/main/java/org/apache/doris/planner/OriginalPlanner.java +++ b/fe/fe-core/src/main/java/org/apache/doris/planner/OriginalPlanner.java @@ -39,6 +39,7 @@ import org.apache.doris.catalog.OlapTable; import org.apache.doris.catalog.Type; import org.apache.doris.common.Config; +import org.apache.doris.common.FormatOptions; import org.apache.doris.common.UserException; import org.apache.doris.datasource.iceberg.source.IcebergScanNode; import org.apache.doris.nereids.PlannerHook; @@ -656,13 +657,14 @@ public Optional handleQueryInFe(StatementBase parsedStmt) { if (!parsedSelectStmt.getTableRefs().isEmpty()) { return Optional.empty(); } + FormatOptions options = FormatOptions.getDefault(); for (int i = 0; i < selectItems.size(); i++) { SelectListItem item = selectItems.get(i); Expr expr = item.getExpr(); String columnName = columnLabels.get(i); if (expr instanceof LiteralExpr) { columns.add(new Column(columnName, expr.getType())); - data.add(((LiteralExpr) expr).getStringValueInFe()); + data.add(((LiteralExpr) expr).getStringValueInFe(options)); } else { return Optional.empty(); } diff --git a/fe/fe-core/src/main/java/org/apache/doris/qe/SessionVariable.java b/fe/fe-core/src/main/java/org/apache/doris/qe/SessionVariable.java index ec007115564dbd..8bb81d01000df5 100644 --- a/fe/fe-core/src/main/java/org/apache/doris/qe/SessionVariable.java +++ b/fe/fe-core/src/main/java/org/apache/doris/qe/SessionVariable.java @@ -4125,7 +4125,7 @@ public int getMaxMsgSizeOfResultReceiver() { return this.maxMsgSizeOfResultReceiver; } - private TSerdeDialect getSerdeDialect() { + public TSerdeDialect getSerdeDialect() { switch (serdeDialect) { case "doris": return TSerdeDialect.DORIS; diff --git a/fe/fe-core/src/main/java/org/apache/doris/qe/StmtExecutor.java b/fe/fe-core/src/main/java/org/apache/doris/qe/StmtExecutor.java index a52e1bb6c25800..cca6c47017bfcb 100644 --- a/fe/fe-core/src/main/java/org/apache/doris/qe/StmtExecutor.java +++ b/fe/fe-core/src/main/java/org/apache/doris/qe/StmtExecutor.java @@ -106,6 +106,7 @@ import org.apache.doris.common.ErrorCode; import org.apache.doris.common.ErrorReport; import org.apache.doris.common.FeConstants; +import org.apache.doris.common.FormatOptions; import org.apache.doris.common.MetaNotFoundException; import org.apache.doris.common.NereidsException; import org.apache.doris.common.NereidsSqlCacheManager; @@ -341,7 +342,8 @@ public StmtExecutor(ConnectContext ctx, StatementBase parsedStmt) { context.getSessionVariable().profileLevel); } - public static InternalService.PDataRow getRowStringValue(List cols) throws UserException { + public static InternalService.PDataRow getRowStringValue(List cols, + FormatOptions options) throws UserException { if (cols.isEmpty()) { return null; } @@ -354,9 +356,9 @@ public static InternalService.PDataRow getRowStringValue(List cols) throws if (expr instanceof NullLiteral) { row.addColBuilder().setValue(NULL_VALUE_FOR_LOAD); } else if (expr instanceof ArrayLiteral) { - row.addColBuilder().setValue(String.format("\"%s\"", expr.getStringValueForStreamLoad())); + row.addColBuilder().setValue(String.format("\"%s\"", expr.getStringValueForStreamLoad(options))); } else { - String stringValue = expr.getStringValueForStreamLoad(); + String stringValue = expr.getStringValueForStreamLoad(options); if (stringValue.equals(NULL_VALUE_FOR_LOAD) || stringValue.startsWith("\"") || stringValue.endsWith( "\"")) { row.addColBuilder().setValue(String.format("\"%s\"", stringValue)); @@ -2188,9 +2190,10 @@ private int executeForTxn(InsertStmt insertStmt) throw new TException("Column count doesn't match value count"); } } + FormatOptions options = FormatOptions.getDefault(); for (List row : selectStmt.getValueList().getRows()) { ++effectRows; - InternalService.PDataRow data = StmtExecutor.getRowStringValue(row); + InternalService.PDataRow data = StmtExecutor.getRowStringValue(row, options); if (data == null) { continue; } diff --git a/fe/fe-core/src/test/java/org/apache/doris/analysis/ArrayLiteralTest.java b/fe/fe-core/src/test/java/org/apache/doris/analysis/ArrayLiteralTest.java index 009d15fdb95d6d..d1d7a3c736e779 100644 --- a/fe/fe-core/src/test/java/org/apache/doris/analysis/ArrayLiteralTest.java +++ b/fe/fe-core/src/test/java/org/apache/doris/analysis/ArrayLiteralTest.java @@ -19,6 +19,7 @@ import org.apache.doris.catalog.Type; import org.apache.doris.common.AnalysisException; +import org.apache.doris.common.FormatOptions; import org.junit.Assert; import org.junit.jupiter.api.Test; @@ -26,6 +27,7 @@ public class ArrayLiteralTest { @Test public void testGetStringValueForArray() throws AnalysisException { + FormatOptions options = FormatOptions.getDefault(); IntLiteral intLiteral1 = new IntLiteral(1); FloatLiteral floatLiteral = new FloatLiteral("2.15"); BoolLiteral boolLiteral = new BoolLiteral(true); @@ -35,47 +37,97 @@ public void testGetStringValueForArray() throws AnalysisException { DateLiteral dateLiteral = new DateLiteral("2022-10-10", Type.DATE); DateLiteral datetimeLiteral = new DateLiteral("2022-10-10 12:10:10", Type.DATETIME); ArrayLiteral arrayLiteral1 = new ArrayLiteral(intLiteral1, floatLiteral); - Assert.assertEquals("[\"1\", \"2.15\"]", arrayLiteral1.getStringValueForArray()); + Assert.assertEquals("[\"1\", \"2.15\"]", arrayLiteral1.getStringValueForArray(options)); ArrayLiteral arrayLiteral2 = new ArrayLiteral(boolLiteral, boolLiteral); - Assert.assertEquals("[\"1\", \"1\"]", arrayLiteral2.getStringValueForArray()); + Assert.assertEquals("[\"1\", \"1\"]", arrayLiteral2.getStringValueForArray(options)); ArrayLiteral arrayLiteral3 = new ArrayLiteral(stringLiteral, stringLiteral); - Assert.assertEquals("[\"shortstring\", \"shortstring\"]", arrayLiteral3.getStringValueForArray()); + Assert.assertEquals("[\"shortstring\", \"shortstring\"]", arrayLiteral3.getStringValueForArray(options)); ArrayLiteral arrayLiteral4 = new ArrayLiteral(largeIntLiteral, largeIntLiteral); - Assert.assertEquals("[\"1000000000000000000000\", \"1000000000000000000000\"]", arrayLiteral4.getStringValueForArray()); + Assert.assertEquals("[\"1000000000000000000000\", \"1000000000000000000000\"]", arrayLiteral4.getStringValueForArray(options)); ArrayLiteral arrayLiteral5 = new ArrayLiteral(nullLiteral, nullLiteral); - Assert.assertEquals("[null, null]", arrayLiteral5.getStringValueForArray()); + Assert.assertEquals("[null, null]", arrayLiteral5.getStringValueForArray(options)); ArrayLiteral arrayLiteral6 = new ArrayLiteral(dateLiteral, dateLiteral); - Assert.assertEquals("[\"2022-10-10\", \"2022-10-10\"]", arrayLiteral6.getStringValueForArray()); + Assert.assertEquals("[\"2022-10-10\", \"2022-10-10\"]", arrayLiteral6.getStringValueForArray(options)); ArrayLiteral arrayLiteral7 = new ArrayLiteral(datetimeLiteral, datetimeLiteral); - Assert.assertEquals("[\"2022-10-10 12:10:10\", \"2022-10-10 12:10:10\"]", arrayLiteral7.getStringValueForArray()); + Assert.assertEquals("[\"2022-10-10 12:10:10\", \"2022-10-10 12:10:10\"]", arrayLiteral7.getStringValueForArray(options)); ArrayLiteral arrayLiteral8 = new ArrayLiteral(arrayLiteral7, arrayLiteral7); Assert.assertEquals("[[\"2022-10-10 12:10:10\", \"2022-10-10 12:10:10\"], [\"2022-10-10 12:10:10\", \"2022-10-10 12:10:10\"]]", - arrayLiteral8.getStringValueForArray()); + arrayLiteral8.getStringValueForArray(options)); ArrayLiteral arrayLiteral9 = new ArrayLiteral(); - Assert.assertEquals("[]", arrayLiteral9.getStringValueForArray()); + Assert.assertEquals("[]", arrayLiteral9.getStringValueForArray(options)); ArrayLiteral arrayLiteral = new ArrayLiteral(intLiteral1, floatLiteral); MapLiteral mapLiteral = new MapLiteral(intLiteral1, floatLiteral); StructLiteral structLiteral = new StructLiteral(intLiteral1, floatLiteral, dateLiteral); ArrayLiteral arrayLiteral10 = new ArrayLiteral(arrayLiteral, arrayLiteral); - Assert.assertEquals("[[\"1\", \"2.15\"], [\"1\", \"2.15\"]]", arrayLiteral10.getStringValueForArray()); + Assert.assertEquals("[[\"1\", \"2.15\"], [\"1\", \"2.15\"]]", arrayLiteral10.getStringValueForArray(options)); ArrayLiteral arrayLiteral11 = new ArrayLiteral(mapLiteral); - Assert.assertEquals("[{\"1\":\"2.15\"}]", arrayLiteral11.getStringValueForArray()); + Assert.assertEquals("[{\"1\":\"2.15\"}]", arrayLiteral11.getStringValueForArray(options)); ArrayLiteral arrayLiteral12 = new ArrayLiteral(structLiteral); - Assert.assertEquals("[{\"1\", \"2.15\", \"2022-10-10\"}]", arrayLiteral12.getStringValueForArray()); + Assert.assertEquals("[{\"1\", \"2.15\", \"2022-10-10\"}]", arrayLiteral12.getStringValueForArray(options)); } + @Test + public void testGetStringValueForArrayForPresto() throws AnalysisException { + FormatOptions options = FormatOptions.getForPresto(); + IntLiteral intLiteral1 = new IntLiteral(1); + FloatLiteral floatLiteral = new FloatLiteral("2.15"); + BoolLiteral boolLiteral = new BoolLiteral(true); + StringLiteral stringLiteral = new StringLiteral("shortstring"); + LargeIntLiteral largeIntLiteral = new LargeIntLiteral("1000000000000000000000"); + NullLiteral nullLiteral = new NullLiteral(); + DateLiteral dateLiteral = new DateLiteral("2022-10-10", Type.DATE); + DateLiteral datetimeLiteral = new DateLiteral("2022-10-10 12:10:10", Type.DATETIME); + ArrayLiteral arrayLiteral1 = new ArrayLiteral(intLiteral1, floatLiteral); + Assert.assertEquals("[1, 2.15]", arrayLiteral1.getStringValueForArray(options)); + + ArrayLiteral arrayLiteral2 = new ArrayLiteral(boolLiteral, boolLiteral); + Assert.assertEquals("[1, 1]", arrayLiteral2.getStringValueForArray(options)); + + ArrayLiteral arrayLiteral3 = new ArrayLiteral(stringLiteral, stringLiteral); + Assert.assertEquals("[shortstring, shortstring]", arrayLiteral3.getStringValueForArray(options)); + + ArrayLiteral arrayLiteral4 = new ArrayLiteral(largeIntLiteral, largeIntLiteral); + Assert.assertEquals("[1000000000000000000000, 1000000000000000000000]", arrayLiteral4.getStringValueForArray(options)); + + ArrayLiteral arrayLiteral5 = new ArrayLiteral(nullLiteral, nullLiteral); + Assert.assertEquals("[NULL, NULL]", arrayLiteral5.getStringValueForArray(options)); + + ArrayLiteral arrayLiteral6 = new ArrayLiteral(dateLiteral, dateLiteral); + Assert.assertEquals("[2022-10-10, 2022-10-10]", arrayLiteral6.getStringValueForArray(options)); + + ArrayLiteral arrayLiteral7 = new ArrayLiteral(datetimeLiteral, datetimeLiteral); + Assert.assertEquals("[2022-10-10 12:10:10, 2022-10-10 12:10:10]", arrayLiteral7.getStringValueForArray(options)); + + ArrayLiteral arrayLiteral8 = new ArrayLiteral(arrayLiteral7, arrayLiteral7); + Assert.assertEquals("[[2022-10-10 12:10:10, 2022-10-10 12:10:10], [2022-10-10 12:10:10, 2022-10-10 12:10:10]]", + arrayLiteral8.getStringValueForArray(options)); + + ArrayLiteral arrayLiteral9 = new ArrayLiteral(); + Assert.assertEquals("[]", arrayLiteral9.getStringValueForArray(options)); + + ArrayLiteral arrayLiteral = new ArrayLiteral(intLiteral1, floatLiteral); + MapLiteral mapLiteral = new MapLiteral(intLiteral1, floatLiteral); + StructLiteral structLiteral = new StructLiteral(intLiteral1, floatLiteral, dateLiteral); + ArrayLiteral arrayLiteral10 = new ArrayLiteral(arrayLiteral, arrayLiteral); + Assert.assertEquals("[[1, 2.15], [1, 2.15]]", arrayLiteral10.getStringValueForArray(options)); + ArrayLiteral arrayLiteral11 = new ArrayLiteral(mapLiteral); + Assert.assertEquals("[{1=2.15}]", arrayLiteral11.getStringValueForArray(options)); + ArrayLiteral arrayLiteral12 = new ArrayLiteral(structLiteral); + Assert.assertEquals("[{1, 2.15, 2022-10-10}]", arrayLiteral12.getStringValueForArray(options)); + } @Test public void testGetStringInFe() throws AnalysisException { + FormatOptions options = FormatOptions.getDefault(); IntLiteral intLiteral1 = new IntLiteral(1); FloatLiteral floatLiteral = new FloatLiteral("2.15"); FloatLiteral floatLiteral1 = new FloatLiteral((double) (11 * 3600 + 22 * 60 + 33), @@ -88,59 +140,128 @@ public void testGetStringInFe() throws AnalysisException { DateLiteral dateLiteral = new DateLiteral("2022-10-10", Type.DATE); DateLiteral datetimeLiteral = new DateLiteral("2022-10-10 12:10:10", Type.DATETIME); ArrayLiteral arrayLiteral1 = new ArrayLiteral(intLiteral1, floatLiteral); - Assert.assertEquals("[1.0, 2.15]", arrayLiteral1.getStringValueInFe()); + Assert.assertEquals("[1.0, 2.15]", arrayLiteral1.getStringValueInFe(options)); ArrayLiteral arrayLiteralWithTime = new ArrayLiteral(floatLiteral1); - Assert.assertEquals("[\"11:22:33\"]", arrayLiteralWithTime.getStringValueInFe()); + Assert.assertEquals("[\"11:22:33\"]", arrayLiteralWithTime.getStringValueInFe(options)); ArrayLiteral arrayLiteral2 = new ArrayLiteral(boolLiteral, boolLiteral); - Assert.assertEquals("[1, 1]", arrayLiteral2.getStringValueInFe()); + Assert.assertEquals("[1, 1]", arrayLiteral2.getStringValueInFe(options)); ArrayLiteral arrayLiteral3 = new ArrayLiteral(stringLiteral, stringLiteral); - Assert.assertEquals("[\"shortstring\", \"shortstring\"]", arrayLiteral3.getStringValueInFe()); + Assert.assertEquals("[\"shortstring\", \"shortstring\"]", arrayLiteral3.getStringValueInFe(options)); ArrayLiteral arrayLiteral4 = new ArrayLiteral(largeIntLiteral, largeIntLiteral); Assert.assertEquals("[1000000000000000000000, 1000000000000000000000]", - arrayLiteral4.getStringValueInFe()); + arrayLiteral4.getStringValueInFe(options)); ArrayLiteral arrayLiteral5 = new ArrayLiteral(nullLiteral, nullLiteral); - Assert.assertEquals("[null, null]", arrayLiteral5.getStringValueInFe()); + Assert.assertEquals("[null, null]", arrayLiteral5.getStringValueInFe(options)); ArrayLiteral arrayLiteral6 = new ArrayLiteral(dateLiteral, dateLiteral); - Assert.assertEquals("[\"2022-10-10\", \"2022-10-10\"]", arrayLiteral6.getStringValueInFe()); + Assert.assertEquals("[\"2022-10-10\", \"2022-10-10\"]", arrayLiteral6.getStringValueInFe(options)); ArrayLiteral arrayLiteral7 = new ArrayLiteral(datetimeLiteral, datetimeLiteral); Assert.assertEquals("[\"2022-10-10 12:10:10\", \"2022-10-10 12:10:10\"]", - arrayLiteral7.getStringValueInFe()); + arrayLiteral7.getStringValueInFe(options)); ArrayLiteral arrayLiteral8 = new ArrayLiteral(arrayLiteral7, arrayLiteral7); Assert.assertEquals("[[\"2022-10-10 12:10:10\", \"2022-10-10 12:10:10\"], [\"2022-10-10 12:10:10\", \"2022-10-10 12:10:10\"]]", - arrayLiteral8.getStringValueInFe()); + arrayLiteral8.getStringValueInFe(options)); ArrayLiteral arrayLiteral9 = new ArrayLiteral(); - Assert.assertEquals("[]", arrayLiteral9.getStringValueInFe()); + Assert.assertEquals("[]", arrayLiteral9.getStringValueInFe(options)); DecimalLiteral decimalLiteral = new DecimalLiteral("1.0"); DecimalLiteral decimalLiteral2 = new DecimalLiteral("2"); ArrayLiteral arrayLiteral10 = new ArrayLiteral(decimalLiteral, decimalLiteral2); - Assert.assertEquals("[1.0, 2.0]", arrayLiteral10.getStringValueInFe()); + Assert.assertEquals("[1.0, 2.0]", arrayLiteral10.getStringValueInFe(options)); //array(1, null) IntLiteral intLiteralWithNull = new IntLiteral(1); ArrayLiteral arrayLiteral11 = new ArrayLiteral(intLiteralWithNull, nullLiteral); - Assert.assertEquals("[1, null]", arrayLiteral11.getStringValueInFe()); + Assert.assertEquals("[1, null]", arrayLiteral11.getStringValueInFe(options)); //array(null, 1) ArrayLiteral arrayLiteral12 = new ArrayLiteral(nullLiteral, intLiteralWithNull); - Assert.assertEquals("[null, 1]", arrayLiteral12.getStringValueInFe()); + Assert.assertEquals("[null, 1]", arrayLiteral12.getStringValueInFe(options)); ArrayLiteral arrayLiteral = new ArrayLiteral(intLiteral1, floatLiteral); MapLiteral mapLiteral = new MapLiteral(intLiteral1, floatLiteral); StructLiteral structLiteral = new StructLiteral(intLiteral1, floatLiteral, dateLiteral); ArrayLiteral arrayLiteral13 = new ArrayLiteral(arrayLiteral, arrayLiteral); - Assert.assertEquals("[[\"1\", \"2.15\"], [\"1\", \"2.15\"]]", arrayLiteral13.getStringValueForArray()); + Assert.assertEquals("[[\"1\", \"2.15\"], [\"1\", \"2.15\"]]", arrayLiteral13.getStringValueForArray(options)); ArrayLiteral arrayLiteral14 = new ArrayLiteral(mapLiteral); - Assert.assertEquals("[{\"1\":\"2.15\"}]", arrayLiteral14.getStringValueForArray()); + Assert.assertEquals("[{\"1\":\"2.15\"}]", arrayLiteral14.getStringValueForArray(options)); ArrayLiteral arrayLiteral15 = new ArrayLiteral(structLiteral); - Assert.assertEquals("[{\"1\", \"2.15\", \"2022-10-10\"}]", arrayLiteral15.getStringValueForArray()); + Assert.assertEquals("[{\"1\", \"2.15\", \"2022-10-10\"}]", arrayLiteral15.getStringValueForArray(options)); + } + + @Test + public void testGetStringInFeForPresto() throws AnalysisException { + FormatOptions options = FormatOptions.getForPresto(); + IntLiteral intLiteral1 = new IntLiteral(1); + FloatLiteral floatLiteral = new FloatLiteral("2.15"); + FloatLiteral floatLiteral1 = new FloatLiteral((double) (11 * 3600 + 22 * 60 + 33), + FloatLiteral.getDefaultTimeType(Type.TIME)); + BoolLiteral boolLiteral = new BoolLiteral(true); + StringLiteral stringLiteral = new StringLiteral("shortstring"); + LargeIntLiteral largeIntLiteral = new LargeIntLiteral("1000000000000000000000"); + NullLiteral nullLiteral = new NullLiteral(); + DateLiteral dateLiteral = new DateLiteral("2022-10-10", Type.DATE); + DateLiteral datetimeLiteral = new DateLiteral("2022-10-10 12:10:10", Type.DATETIME); + ArrayLiteral arrayLiteral1 = new ArrayLiteral(intLiteral1, floatLiteral); + Assert.assertEquals("[1.0, 2.15]", arrayLiteral1.getStringValueInFe(options)); + ArrayLiteral arrayLiteralWithTime = new ArrayLiteral(floatLiteral1); + Assert.assertEquals("[11:22:33]", arrayLiteralWithTime.getStringValueInFe(options)); + + ArrayLiteral arrayLiteral2 = new ArrayLiteral(boolLiteral, boolLiteral); + Assert.assertEquals("[1, 1]", arrayLiteral2.getStringValueInFe(options)); + + ArrayLiteral arrayLiteral3 = new ArrayLiteral(stringLiteral, stringLiteral); + Assert.assertEquals("[shortstring, shortstring]", arrayLiteral3.getStringValueInFe(options)); + + ArrayLiteral arrayLiteral4 = new ArrayLiteral(largeIntLiteral, largeIntLiteral); + Assert.assertEquals("[1000000000000000000000, 1000000000000000000000]", + arrayLiteral4.getStringValueInFe(options)); + + ArrayLiteral arrayLiteral5 = new ArrayLiteral(nullLiteral, nullLiteral); + Assert.assertEquals("[NULL, NULL]", arrayLiteral5.getStringValueInFe(options)); + + ArrayLiteral arrayLiteral6 = new ArrayLiteral(dateLiteral, dateLiteral); + Assert.assertEquals("[2022-10-10, 2022-10-10]", arrayLiteral6.getStringValueInFe(options)); + + ArrayLiteral arrayLiteral7 = new ArrayLiteral(datetimeLiteral, datetimeLiteral); + Assert.assertEquals("[2022-10-10 12:10:10, 2022-10-10 12:10:10]", + arrayLiteral7.getStringValueInFe(options)); + + ArrayLiteral arrayLiteral8 = new ArrayLiteral(arrayLiteral7, arrayLiteral7); + Assert.assertEquals("[[2022-10-10 12:10:10, 2022-10-10 12:10:10], [2022-10-10 12:10:10, 2022-10-10 12:10:10]]", + arrayLiteral8.getStringValueInFe(options)); + + ArrayLiteral arrayLiteral9 = new ArrayLiteral(); + Assert.assertEquals("[]", arrayLiteral9.getStringValueInFe(options)); + + DecimalLiteral decimalLiteral = new DecimalLiteral("1.0"); + DecimalLiteral decimalLiteral2 = new DecimalLiteral("2"); + ArrayLiteral arrayLiteral10 = new ArrayLiteral(decimalLiteral, decimalLiteral2); + Assert.assertEquals("[1.0, 2.0]", arrayLiteral10.getStringValueInFe(options)); + + //array(1, null) + IntLiteral intLiteralWithNull = new IntLiteral(1); + ArrayLiteral arrayLiteral11 = new ArrayLiteral(intLiteralWithNull, nullLiteral); + Assert.assertEquals("[1, NULL]", arrayLiteral11.getStringValueInFe(options)); + //array(null, 1) + ArrayLiteral arrayLiteral12 = new ArrayLiteral(nullLiteral, intLiteralWithNull); + Assert.assertEquals("[NULL, 1]", arrayLiteral12.getStringValueInFe(options)); + + ArrayLiteral arrayLiteral = new ArrayLiteral(intLiteral1, floatLiteral); + MapLiteral mapLiteral = new MapLiteral(intLiteral1, floatLiteral); + StructLiteral structLiteral = new StructLiteral(intLiteral1, floatLiteral, dateLiteral); + ArrayLiteral arrayLiteral13 = new ArrayLiteral(arrayLiteral, arrayLiteral); + Assert.assertEquals("[[1, 2.15], [1, 2.15]]", arrayLiteral13.getStringValueForArray(options)); + ArrayLiteral arrayLiteral14 = new ArrayLiteral(mapLiteral); + Assert.assertEquals("[{1=2.15}]", arrayLiteral14.getStringValueForArray(options)); + ArrayLiteral arrayLiteral15 = new ArrayLiteral(structLiteral); + Assert.assertEquals("[{1, 2.15, 2022-10-10}]", arrayLiteral15.getStringValueForArray(options)); } } diff --git a/fe/fe-core/src/test/java/org/apache/doris/analysis/DateLiteralTest.java b/fe/fe-core/src/test/java/org/apache/doris/analysis/DateLiteralTest.java index a6e864f89da3f0..57357952bc68f6 100644 --- a/fe/fe-core/src/test/java/org/apache/doris/analysis/DateLiteralTest.java +++ b/fe/fe-core/src/test/java/org/apache/doris/analysis/DateLiteralTest.java @@ -20,6 +20,7 @@ import org.apache.doris.catalog.ScalarType; import org.apache.doris.catalog.Type; import org.apache.doris.common.AnalysisException; +import org.apache.doris.common.FormatOptions; import org.apache.doris.common.InvalidFormatException; import org.apache.doris.common.jmockit.Deencapsulation; @@ -34,9 +35,9 @@ public class DateLiteralTest { @Test public void testGetStringInFe() throws AnalysisException { DateLiteral literal = new DateLiteral("1997-10-07", Type.DATE); - String s = literal.getStringValueInFe(); + String s = literal.getStringValueInFe(FormatOptions.getDefault()); Assert.assertEquals(s, "1997-10-07"); - + Assert.assertEquals(literal.getStringValueInFe(FormatOptions.getForPresto()), "1997-10-07"); } @Test diff --git a/fe/fe-core/src/test/java/org/apache/doris/analysis/DecimalLiteralTest.java b/fe/fe-core/src/test/java/org/apache/doris/analysis/DecimalLiteralTest.java index bd93d118c4c2f0..dd6213c330f6bb 100644 --- a/fe/fe-core/src/test/java/org/apache/doris/analysis/DecimalLiteralTest.java +++ b/fe/fe-core/src/test/java/org/apache/doris/analysis/DecimalLiteralTest.java @@ -22,6 +22,7 @@ import org.apache.doris.catalog.Type; import org.apache.doris.common.AnalysisException; import org.apache.doris.common.Config; +import org.apache.doris.common.FormatOptions; import org.junit.Assert; import org.junit.Test; @@ -35,8 +36,9 @@ public class DecimalLiteralTest { public void testGetStringInFe() { BigDecimal decimal = new BigDecimal("-123456789123456789.123456789"); DecimalLiteral literal = new DecimalLiteral(decimal); - String s = literal.getStringValueInFe(); + String s = literal.getStringValueInFe(FormatOptions.getDefault()); Assert.assertEquals("-123456789123456789.123456789", s); + Assert.assertEquals("-123456789123456789.123456789", literal.getStringValueInFe(FormatOptions.getForPresto())); } @Test diff --git a/fe/fe-core/src/test/java/org/apache/doris/analysis/FloatLiteralTest.java b/fe/fe-core/src/test/java/org/apache/doris/analysis/FloatLiteralTest.java index 6b7bfedbb5999e..63fbea30bf7ee8 100644 --- a/fe/fe-core/src/test/java/org/apache/doris/analysis/FloatLiteralTest.java +++ b/fe/fe-core/src/test/java/org/apache/doris/analysis/FloatLiteralTest.java @@ -19,6 +19,7 @@ import org.apache.doris.catalog.Type; import org.apache.doris.common.AnalysisException; +import org.apache.doris.common.FormatOptions; import org.junit.Assert; import org.junit.Test; @@ -29,11 +30,13 @@ public class FloatLiteralTest { public void testGetStringInFe() throws AnalysisException { FloatLiteral literal = new FloatLiteral((double) (11 * 3600 + 22 * 60 + 33), FloatLiteral.getDefaultTimeType(Type.TIME)); - String s = literal.getStringValueInFe(); + String s = literal.getStringValueInFe(FormatOptions.getDefault()); Assert.assertEquals("11:22:33", s); + Assert.assertEquals("11:22:33", literal.getStringValueInFe(FormatOptions.getForPresto())); FloatLiteral literal1 = new FloatLiteral(11.22); - String s1 = literal1.getStringValueInFe(); + String s1 = literal1.getStringValueInFe(FormatOptions.getDefault()); Assert.assertEquals("11.22", s1); + Assert.assertEquals("11.22", literal1.getStringValueInFe(FormatOptions.getForPresto())); } } diff --git a/fe/fe-core/src/test/java/org/apache/doris/analysis/MapLiteralTest.java b/fe/fe-core/src/test/java/org/apache/doris/analysis/MapLiteralTest.java index 61e77dbc907016..ed16560cf077db 100644 --- a/fe/fe-core/src/test/java/org/apache/doris/analysis/MapLiteralTest.java +++ b/fe/fe-core/src/test/java/org/apache/doris/analysis/MapLiteralTest.java @@ -19,6 +19,7 @@ import org.apache.doris.catalog.Type; import org.apache.doris.common.AnalysisException; +import org.apache.doris.common.FormatOptions; import org.junit.Assert; import org.junit.jupiter.api.BeforeAll; @@ -40,7 +41,6 @@ public class MapLiteralTest { static MapLiteral mapLiteral; static StructLiteral structLiteral; - @BeforeAll public static void setUp() throws AnalysisException { intLiteral1 = new IntLiteral(1); @@ -63,27 +63,28 @@ public static void setUp() throws AnalysisException { @Test public void testGetStringValueForArray() throws AnalysisException { + FormatOptions options = FormatOptions.getDefault(); MapLiteral mapLiteral1 = new MapLiteral(intLiteral1, floatLiteral); - Assert.assertEquals("{\"1\":\"2.15\"}", mapLiteral1.getStringValueForArray()); + Assert.assertEquals("{\"1\":\"2.15\"}", mapLiteral1.getStringValueForArray(options)); MapLiteral mapLiteral2 = new MapLiteral(boolLiteral, stringLiteral); - Assert.assertEquals("{\"1\":\"shortstring\"}", mapLiteral2.getStringValueForArray()); + Assert.assertEquals("{\"1\":\"shortstring\"}", mapLiteral2.getStringValueForArray(options)); MapLiteral mapLiteral3 = new MapLiteral(largeIntLiteral, dateLiteral); - Assert.assertEquals("{\"1000000000000000000000\":\"2022-10-10\"}", mapLiteral3.getStringValueForArray()); + Assert.assertEquals("{\"1000000000000000000000\":\"2022-10-10\"}", mapLiteral3.getStringValueForArray(options)); MapLiteral mapLiteral4 = new MapLiteral(nullLiteral, nullLiteral); - Assert.assertEquals("{null:null}", mapLiteral4.getStringValueForArray()); + Assert.assertEquals("{null:null}", mapLiteral4.getStringValueForArray(options)); MapLiteral mapLiteral5 = new MapLiteral(datetimeLiteral, dateLiteral); - Assert.assertEquals("{\"2022-10-10 12:10:10\":\"2022-10-10\"}", mapLiteral5.getStringValueForArray()); + Assert.assertEquals("{\"2022-10-10 12:10:10\":\"2022-10-10\"}", mapLiteral5.getStringValueForArray(options)); MapLiteral mapLiteral6 = new MapLiteral(); - Assert.assertEquals("{}", mapLiteral6.getStringValueForArray()); + Assert.assertEquals("{}", mapLiteral6.getStringValueForArray(options)); MapLiteral mapLiteral7 = new MapLiteral(nullLiteral, intLiteral1); - Assert.assertEquals("{null:\"1\"}", mapLiteral7.getStringValueForArray()); + Assert.assertEquals("{null:\"1\"}", mapLiteral7.getStringValueForArray(options)); MapLiteral mapLiteral8 = new MapLiteral(intLiteral1, nullLiteral); - Assert.assertEquals("{\"1\":null}", mapLiteral8.getStringValueForArray()); + Assert.assertEquals("{\"1\":null}", mapLiteral8.getStringValueForArray(options)); MapLiteral mapLiteral10 = new MapLiteral(intLiteral1, arrayLiteral); - Assert.assertEquals("{\"1\":[\"1\", \"2.15\"]}", mapLiteral10.getStringValueForArray()); + Assert.assertEquals("{\"1\":[\"1\", \"2.15\"]}", mapLiteral10.getStringValueForArray(options)); try { new MapLiteral(arrayLiteral, floatLiteral); } catch (Exception e) { @@ -92,7 +93,7 @@ public void testGetStringValueForArray() throws AnalysisException { } MapLiteral mapLiteral11 = new MapLiteral(decimalLiteral1, mapLiteral); - Assert.assertEquals("{\"1.0\":{\"1\":\"2.15\"}}", mapLiteral11.getStringValueForArray()); + Assert.assertEquals("{\"1.0\":{\"1\":\"2.15\"}}", mapLiteral11.getStringValueForArray(options)); try { new MapLiteral(mapLiteral, decimalLiteral1); } catch (Exception e) { @@ -102,43 +103,93 @@ public void testGetStringValueForArray() throws AnalysisException { MapLiteral mapLiteral13 = new MapLiteral(stringLiteral, structLiteral); Assert.assertEquals("{\"shortstring\":{\"1\", \"2.15\", \"1.0\", \"2022-10-10\"}}", - mapLiteral13.getStringValueForArray()); + mapLiteral13.getStringValueForArray(options)); try { new MapLiteral(structLiteral, stringLiteral); } catch (Exception e) { Assert.assertEquals("errCode = 2, detailMessage = Invalid key type in Map, " + "not support STRUCT", e.getMessage()); } - } + @Test + public void testGetStringValueForArrayForPresto() throws AnalysisException { + FormatOptions options = FormatOptions.getForPresto(); + MapLiteral mapLiteral1 = new MapLiteral(intLiteral1, floatLiteral); + Assert.assertEquals("{1=2.15}", mapLiteral1.getStringValueForArray(options)); + MapLiteral mapLiteral2 = new MapLiteral(boolLiteral, stringLiteral); + Assert.assertEquals("{1=shortstring}", mapLiteral2.getStringValueForArray(options)); + MapLiteral mapLiteral3 = new MapLiteral(largeIntLiteral, dateLiteral); + Assert.assertEquals("{1000000000000000000000=2022-10-10}", mapLiteral3.getStringValueForArray(options)); + MapLiteral mapLiteral4 = new MapLiteral(nullLiteral, nullLiteral); + Assert.assertEquals("{NULL=NULL}", mapLiteral4.getStringValueForArray(options)); + MapLiteral mapLiteral5 = new MapLiteral(datetimeLiteral, dateLiteral); + Assert.assertEquals("{2022-10-10 12:10:10=2022-10-10}", mapLiteral5.getStringValueForArray(options)); + + MapLiteral mapLiteral6 = new MapLiteral(); + Assert.assertEquals("{}", mapLiteral6.getStringValueForArray(options)); + + MapLiteral mapLiteral7 = new MapLiteral(nullLiteral, intLiteral1); + Assert.assertEquals("{NULL=1}", mapLiteral7.getStringValueForArray(options)); + MapLiteral mapLiteral8 = new MapLiteral(intLiteral1, nullLiteral); + Assert.assertEquals("{1=NULL}", mapLiteral8.getStringValueForArray(options)); + + MapLiteral mapLiteral10 = new MapLiteral(intLiteral1, arrayLiteral); + Assert.assertEquals("{1=[1, 2.15]}", mapLiteral10.getStringValueForArray(options)); + try { + new MapLiteral(arrayLiteral, floatLiteral); + } catch (Exception e) { + Assert.assertEquals("errCode = 2, " + + "detailMessage = Invalid key type in Map, not support ARRAY", e.getMessage()); + } + + MapLiteral mapLiteral11 = new MapLiteral(decimalLiteral1, mapLiteral); + Assert.assertEquals("{1.0={1=2.15}}", mapLiteral11.getStringValueForArray(options)); + try { + new MapLiteral(mapLiteral, decimalLiteral1); + } catch (Exception e) { + Assert.assertEquals("errCode = 2, " + + "detailMessage = Invalid key type in Map, not support MAP", e.getMessage()); + } + + MapLiteral mapLiteral13 = new MapLiteral(stringLiteral, structLiteral); + Assert.assertEquals("{shortstring={1, 2.15, 1.0, 2022-10-10}}", + mapLiteral13.getStringValueForArray(options)); + try { + new MapLiteral(structLiteral, stringLiteral); + } catch (Exception e) { + Assert.assertEquals("errCode = 2, detailMessage = Invalid key type in Map, " + + "not support STRUCT", e.getMessage()); + } + } @Test public void testGetStringInFe() throws AnalysisException { + FormatOptions options = FormatOptions.getDefault(); MapLiteral mapLiteral1 = new MapLiteral(intLiteral1, floatLiteral); - Assert.assertEquals("{1:2.15}", mapLiteral1.getStringValueInFe()); + Assert.assertEquals("{1:2.15}", mapLiteral1.getStringValueInFe(options)); MapLiteral mapLiteral11 = new MapLiteral(intLiteral1, floatLiteral1); - Assert.assertEquals("{1:\"11:22:33\"}", mapLiteral11.getStringValueInFe()); + Assert.assertEquals("{1:\"11:22:33\"}", mapLiteral11.getStringValueInFe(options)); MapLiteral mapLiteral2 = new MapLiteral(boolLiteral, stringLiteral); - Assert.assertEquals("{1:\"shortstring\"}", mapLiteral2.getStringValueInFe()); + Assert.assertEquals("{1:\"shortstring\"}", mapLiteral2.getStringValueInFe(options)); MapLiteral mapLiteral3 = new MapLiteral(largeIntLiteral, dateLiteral); - Assert.assertEquals("{1000000000000000000000:\"2022-10-10\"}", mapLiteral3.getStringValueInFe()); + Assert.assertEquals("{1000000000000000000000:\"2022-10-10\"}", mapLiteral3.getStringValueInFe(options)); MapLiteral mapLiteral4 = new MapLiteral(floatLiteral1, nullLiteral); - Assert.assertEquals("{\"11:22:33\":null}", mapLiteral4.getStringValueInFe()); + Assert.assertEquals("{\"11:22:33\":null}", mapLiteral4.getStringValueInFe(options)); MapLiteral mapLiteral5 = new MapLiteral(datetimeLiteral, dateLiteral); - Assert.assertEquals("{\"2022-10-10 12:10:10\":\"2022-10-10\"}", mapLiteral5.getStringValueInFe()); + Assert.assertEquals("{\"2022-10-10 12:10:10\":\"2022-10-10\"}", mapLiteral5.getStringValueInFe(options)); MapLiteral mapLiteral6 = new MapLiteral(decimalLiteral1, decimalLiteral2); - Assert.assertEquals("{1.0:2}", mapLiteral6.getStringValueInFe()); + Assert.assertEquals("{1.0:2}", mapLiteral6.getStringValueInFe(options)); MapLiteral mapLiteral7 = new MapLiteral(); - Assert.assertEquals("{}", mapLiteral7.getStringValueInFe()); + Assert.assertEquals("{}", mapLiteral7.getStringValueInFe(options)); MapLiteral mapLiteral8 = new MapLiteral(nullLiteral, intLiteral1); - Assert.assertEquals("{null:1}", mapLiteral8.getStringValueInFe()); + Assert.assertEquals("{null:1}", mapLiteral8.getStringValueInFe(options)); MapLiteral mapLiteral9 = new MapLiteral(intLiteral1, nullLiteral); - Assert.assertEquals("{1:null}", mapLiteral9.getStringValueInFe()); + Assert.assertEquals("{1:null}", mapLiteral9.getStringValueInFe(options)); MapLiteral mapLiteral10 = new MapLiteral(intLiteral1, arrayLiteral); - Assert.assertEquals("{\"1\":[\"1\", \"2.15\"]}", mapLiteral10.getStringValueForArray()); + Assert.assertEquals("{\"1\":[\"1\", \"2.15\"]}", mapLiteral10.getStringValueForArray(options)); try { new MapLiteral(arrayLiteral, floatLiteral); } catch (Exception e) { @@ -147,7 +198,7 @@ public void testGetStringInFe() throws AnalysisException { } MapLiteral mapLiteral12 = new MapLiteral(decimalLiteral1, mapLiteral); - Assert.assertEquals("{\"1.0\":{\"1\":\"2.15\"}}", mapLiteral12.getStringValueForArray()); + Assert.assertEquals("{\"1.0\":{\"1\":\"2.15\"}}", mapLiteral12.getStringValueForArray(options)); try { new MapLiteral(mapLiteral, decimalLiteral1); } catch (Exception e) { @@ -157,7 +208,7 @@ public void testGetStringInFe() throws AnalysisException { MapLiteral mapLiteral13 = new MapLiteral(stringLiteral, structLiteral); Assert.assertEquals("{\"shortstring\":{\"1\", \"2.15\", \"1.0\", \"2022-10-10\"}}", - mapLiteral13.getStringValueForArray()); + mapLiteral13.getStringValueForArray(options)); try { new MapLiteral(structLiteral, stringLiteral); } catch (Exception e) { @@ -165,6 +216,60 @@ public void testGetStringInFe() throws AnalysisException { + "detailMessage = Invalid key type in Map, " + "not support STRUCT", e.getMessage()); } + } + + @Test + public void testGetStringInFeForPresto() throws AnalysisException { + FormatOptions options = FormatOptions.getForPresto(); + MapLiteral mapLiteral1 = new MapLiteral(intLiteral1, floatLiteral); + Assert.assertEquals("{1=2.15}", mapLiteral1.getStringValueInFe(options)); + MapLiteral mapLiteral11 = new MapLiteral(intLiteral1, floatLiteral1); + Assert.assertEquals("{1=11:22:33}", mapLiteral11.getStringValueInFe(options)); + MapLiteral mapLiteral2 = new MapLiteral(boolLiteral, stringLiteral); + Assert.assertEquals("{1=shortstring}", mapLiteral2.getStringValueInFe(options)); + MapLiteral mapLiteral3 = new MapLiteral(largeIntLiteral, dateLiteral); + Assert.assertEquals("{1000000000000000000000=2022-10-10}", mapLiteral3.getStringValueInFe(options)); + MapLiteral mapLiteral4 = new MapLiteral(floatLiteral1, nullLiteral); + Assert.assertEquals("{11:22:33=NULL}", mapLiteral4.getStringValueInFe(options)); + MapLiteral mapLiteral5 = new MapLiteral(datetimeLiteral, dateLiteral); + Assert.assertEquals("{2022-10-10 12:10:10=2022-10-10}", mapLiteral5.getStringValueInFe(options)); + MapLiteral mapLiteral6 = new MapLiteral(decimalLiteral1, decimalLiteral2); + Assert.assertEquals("{1.0=2}", mapLiteral6.getStringValueInFe(options)); + + MapLiteral mapLiteral7 = new MapLiteral(); + Assert.assertEquals("{}", mapLiteral7.getStringValueInFe(options)); + MapLiteral mapLiteral8 = new MapLiteral(nullLiteral, intLiteral1); + Assert.assertEquals("{NULL=1}", mapLiteral8.getStringValueInFe(options)); + MapLiteral mapLiteral9 = new MapLiteral(intLiteral1, nullLiteral); + Assert.assertEquals("{1=NULL}", mapLiteral9.getStringValueInFe(options)); + + MapLiteral mapLiteral10 = new MapLiteral(intLiteral1, arrayLiteral); + Assert.assertEquals("{1=[1, 2.15]}", mapLiteral10.getStringValueForArray(options)); + try { + new MapLiteral(arrayLiteral, floatLiteral); + } catch (Exception e) { + Assert.assertEquals("errCode = 2, " + + "detailMessage = Invalid key type in Map, not support ARRAY", e.getMessage()); + } + MapLiteral mapLiteral12 = new MapLiteral(decimalLiteral1, mapLiteral); + Assert.assertEquals("{1.0={1=2.15}}", mapLiteral12.getStringValueForArray(options)); + try { + new MapLiteral(mapLiteral, decimalLiteral1); + } catch (Exception e) { + Assert.assertEquals("errCode = 2, " + + "detailMessage = Invalid key type in Map, not support MAP", e.getMessage()); + } + + MapLiteral mapLiteral13 = new MapLiteral(stringLiteral, structLiteral); + Assert.assertEquals("{shortstring={1, 2.15, 1.0, 2022-10-10}}", + mapLiteral13.getStringValueForArray(options)); + try { + new MapLiteral(structLiteral, stringLiteral); + } catch (Exception e) { + Assert.assertEquals("errCode = 2, " + + "detailMessage = Invalid key type in Map, " + + "not support STRUCT", e.getMessage()); + } } } diff --git a/fe/fe-core/src/test/java/org/apache/doris/analysis/StructLiteralTest.java b/fe/fe-core/src/test/java/org/apache/doris/analysis/StructLiteralTest.java index c48ad5d5785e4a..7e1702d2f7f6b0 100644 --- a/fe/fe-core/src/test/java/org/apache/doris/analysis/StructLiteralTest.java +++ b/fe/fe-core/src/test/java/org/apache/doris/analysis/StructLiteralTest.java @@ -19,6 +19,7 @@ import org.apache.doris.catalog.Type; import org.apache.doris.common.AnalysisException; +import org.apache.doris.common.FormatOptions; import org.junit.Assert; import org.junit.jupiter.api.BeforeAll; @@ -57,44 +58,83 @@ public static void setUp() throws AnalysisException { arrayLiteral = new ArrayLiteral(intLiteral1, floatLiteral); mapLiteral = new MapLiteral(intLiteral1, floatLiteral); structLiteral = new StructLiteral(intLiteral1, floatLiteral, decimalLiteral1, dateLiteral); - } @Test public void testGetStringValueForArray() throws AnalysisException { + FormatOptions options = FormatOptions.getDefault(); StructLiteral structLiteral1 = new StructLiteral(intLiteral1, floatLiteral, floatLiteral1, boolLiteral, stringLiteral, largeIntLiteral, decimalLiteral1, decimalLiteral2, dateLiteral, datetimeLiteral); Assert.assertEquals("{\"1\", \"2.15\", \"11:22:33\", \"1\", \"shortstring\", " + "\"1000000000000000000000\", \"1.0\", \"2\", \"2022-10-10\", \"2022-10-10 12:10:10\"}", - structLiteral1.getStringValueForArray()); + structLiteral1.getStringValueForArray(options)); StructLiteral structLiteral2 = new StructLiteral(arrayLiteral, mapLiteral, structLiteral); Assert.assertEquals("{[\"1\", \"2.15\"], {\"1\":\"2.15\"}, {\"1\", \"2.15\", \"1.0\", \"2022-10-10\"}}", - structLiteral2.getStringValueForArray()); + structLiteral2.getStringValueForArray(options)); StructLiteral structLiteral3 = new StructLiteral(); - Assert.assertEquals("{}", structLiteral3.getStringValueForArray()); + Assert.assertEquals("{}", structLiteral3.getStringValueForArray(options)); StructLiteral nullStruct = new StructLiteral(nullLiteral, intLiteral1); - Assert.assertEquals("{null, \"1\"}", nullStruct.getStringValueForArray()); + Assert.assertEquals("{null, \"1\"}", nullStruct.getStringValueForArray(options)); } - @Test public void testGetStringInFe() throws AnalysisException { + FormatOptions options = FormatOptions.getDefault(); + StructLiteral structLiteral1 = new StructLiteral(intLiteral1, floatLiteral, floatLiteral1, boolLiteral, + stringLiteral, largeIntLiteral, decimalLiteral1, decimalLiteral2, dateLiteral, datetimeLiteral); + Assert.assertEquals("{\"col1\":1, \"col2\":2.15, \"col3\":\"11:22:33\", \"col4\":1, \"col5\":" + + "\"shortstring\", \"col6\":1000000000000000000000, \"col7\":1.0, \"col8\":2, \"col9\":\"2022-10-10\", \"col10\":\"2022-10-10 12:10:10\"}", + structLiteral1.getStringValueInFe(options)); + StructLiteral structLiteral2 = new StructLiteral(arrayLiteral, mapLiteral, structLiteral); + Assert.assertEquals("{\"col1\":[1.0, 2.15], \"col2\":{1:2.15}, \"col3\":" + + "{\"col1\":1, \"col2\":2.15, \"col3\":1.0, \"col4\":\"2022-10-10\"}}", + structLiteral2.getStringValueInFe(options)); + StructLiteral structLiteral3 = new StructLiteral(); + Assert.assertEquals("{}", structLiteral3.getStringValueInFe(options)); + + StructLiteral nullStruct = new StructLiteral(nullLiteral, intLiteral1); + Assert.assertEquals("{\"col1\":null, \"col2\":1}", nullStruct.getStringValueInFe(options)); + } + + @Test + public void testGetStringValueForArrayForPreto() throws AnalysisException { + FormatOptions options = FormatOptions.getForPresto(); + StructLiteral structLiteral1 = new StructLiteral(intLiteral1, floatLiteral, floatLiteral1, boolLiteral, + stringLiteral, largeIntLiteral, decimalLiteral1, decimalLiteral2, dateLiteral, + datetimeLiteral); + Assert.assertEquals("{1, 2.15, 11:22:33, 1, shortstring, " + + "1000000000000000000000, 1.0, 2, 2022-10-10, 2022-10-10 12:10:10}", + structLiteral1.getStringValueForArray(options)); + StructLiteral structLiteral2 = new StructLiteral(arrayLiteral, mapLiteral, structLiteral); + Assert.assertEquals("{[1, 2.15], {1=2.15}, {1, 2.15, 1.0, 2022-10-10}}", + structLiteral2.getStringValueForArray(options)); + StructLiteral structLiteral3 = new StructLiteral(); + Assert.assertEquals("{}", structLiteral3.getStringValueForArray(options)); + + StructLiteral nullStruct = new StructLiteral(nullLiteral, intLiteral1); + Assert.assertEquals("{NULL, 1}", nullStruct.getStringValueForArray(options)); + + } + + @Test + public void testGetStringInFeForPresto() throws AnalysisException { + FormatOptions options = FormatOptions.getForPresto(); StructLiteral structLiteral1 = new StructLiteral(intLiteral1, floatLiteral, floatLiteral1, boolLiteral, stringLiteral, largeIntLiteral, decimalLiteral1, decimalLiteral2, dateLiteral, datetimeLiteral); - Assert.assertEquals("{\"col1\": 1, \"col2\": 2.15, \"col3\": \"11:22:33\", \"col4\": 1, \"col5\": " - + "\"shortstring\", \"col6\": 1000000000000000000000, \"col7\": 1.0, \"col8\": 2, \"col9\": \"2022-10-10\", \"col10\": \"2022-10-10 12:10:10\"}", - structLiteral1.getStringValueInFe()); + Assert.assertEquals("{col1=1, col2=2.15, col3=11:22:33, col4=1, col5=" + + "shortstring, col6=1000000000000000000000, col7=1.0, col8=2, col9=2022-10-10, col10=2022-10-10 12:10:10}", + structLiteral1.getStringValueInFe(options)); StructLiteral structLiteral2 = new StructLiteral(arrayLiteral, mapLiteral, structLiteral); - Assert.assertEquals("{\"col1\": [1.0, 2.15], \"col2\": {1:2.15}, \"col3\": " - + "{\"col1\": 1, \"col2\": 2.15, \"col3\": 1.0, \"col4\": \"2022-10-10\"}}", - structLiteral2.getStringValueInFe()); + Assert.assertEquals("{col1=[1.0, 2.15], col2={1=2.15}, col3=" + + "{col1=1, col2=2.15, col3=1.0, col4=2022-10-10}}", + structLiteral2.getStringValueInFe(options)); StructLiteral structLiteral3 = new StructLiteral(); - Assert.assertEquals("{}", structLiteral3.getStringValueInFe()); + Assert.assertEquals("{}", structLiteral3.getStringValueInFe(options)); StructLiteral nullStruct = new StructLiteral(nullLiteral, intLiteral1); - Assert.assertEquals("{\"col1\": null, \"col2\": 1}", nullStruct.getStringValueInFe()); + Assert.assertEquals("{col1=NULL, col2=1}", nullStruct.getStringValueInFe(options)); } } diff --git a/regression-test/data/datatype_p0/nested_types/base_cases/one_level_nestedtypes_with_s3data.out b/regression-test/data/datatype_p0/nested_types/base_cases/one_level_nestedtypes_with_s3data.out index d658b65f4e2559..a41fa070f3736e 100644 --- a/regression-test/data/datatype_p0/nested_types/base_cases/one_level_nestedtypes_with_s3data.out +++ b/regression-test/data/datatype_p0/nested_types/base_cases/one_level_nestedtypes_with_s3data.out @@ -5663,52 +5663,52 @@ false false -- !sql_s3 -- -\N {"col1": -1640717181, "col2": 81, "col3": -28186, "col4": 1, "col5": -2384910521917839803, "col6": "-8671049934091498720", "col7": -24659.512, "col8": -1219672897.702773, "col9": 28464451948163873.805, "col10": 81312241556878151.403, "col11": "2023-06-10", "col12": "2022-12-04 17:56:00", "col13": "2023-09-07", "col14": "2023-03-25 11:21:00", "col15": "?k!Hvl.yOljS", "col16": "LO!$Rv&PWM`RCY=wW3MHp*e.>(-mwwO)up8=0aV,p9SEseGq#>", "col17": "WI-..k#Ztk/XDZbyHnMP,7#J.8j2NyFqw,I-"} {"col1": 204687839, "col2": -82, "col3": 2252, "col4": 1, "col5": -19971071040251667, "col6": "-4155088892121165336", "col7": 26448.963, "col8": 1770740365.125187, "col9": 60792873952372289.901, "col10": -14030812497137925.948, "col11": "2023-06-19", "col12": "2023-08-19 11:39:08", "col13": "2023-10-15", "col14": "2023-06-11 10:49:52", "col15": "vWMgFZ!&iZ5(F", "col16": "oJ$;rW2^gQ#mTA", "col17": "kI0/~du#OW9hW!>uv9ivK*Z,0bFlR+)yqznNUvMZwN+gzX;Wd)yNl9_(Gw7M`,*>Jec2iCu#_"} {"col1": -2003600874, "col2": -69, "col3": -22655, "col4": 1, "col5": -2569480559938805074, "col6": "1878064350493481255", "col7": 3894.8906, "col8": 789107031.013365, "col9": 422711248962606.869, "col10": 89317269874267004.107, "col11": "2023-02-09", "col12": "2023-08-23 01:13:38", "col13": "2023-05-13", "col14": "2023-09-19 05:36:43", "col15": "/EcG>MMvXu)m", "col16": "2__N+dyiBTMqik2gMX", "col17": "mgYMy@^eE%^&5bZhwi~d#~-?BVT-5(_sMr;j#d(^_ELknHw$kw-x0_4HuMb#uXZbJO_,_nUrH"} {"col1": 65437020, "col2": -46, "col3": -12018, "col4": 1, "col5": 2862131367901130287, "col6": "-3532338074579255894", "col7": -29409.672, "col8": -989688444.043172, "col9": 45161442099730151.250, "col10": 55537833004458471.913, "col11": "2023-04-03", "col12": "2023-04-11 20:34:26", "col13": "2023-02-22", "col14": "2023-01-01 07:06:31", "col15": ""} {"col1": 574017729, "col2": 1, "col3": 7437, "col4": 0, "col5": -9006050591013304373, "col6": "8641070966538487677", "col7": -28902.05, "col8": 1681509274.217499, "col9": -88825566803058829.347, "col10": 98533291755312883.350, "col11": "2023-04-15", "col12": "2023-01-06 06:23:32", "col13": "2023-02-12", "col14": "2023-03-28 03:17:07", "col15": "#>nWjJF$", "col16": "RM&jYf~KvhNyt1Y%=yobHgXQBmfNj%zcBZx0E3w=%Z1h!T9MCtKbAxgD/jVOMO$iG^H!tinX@XfqEx/h$", "col17": "JZK@m-4Zc0;O+*DLuxw?ESNcqN6GUEcz"} {"col1": 1312246670, "col2": 9, "col3": 19994, "col4": 0, "col5": -3267472655758334247, "col6": "8285340605613836903", "col7": -10209.022, "col8": 211608658.602411, "col9": 21651311306694744.296, "col10": 37400988704917411.582, "col11": "2023-10-07", "col12": "2023-05-31 03:59:17", "col13": "2023-07-25", "col14": "2023-08-11 19:10:54", "col15": "@Ij5I_3gR(kWG", "col16": "_/wD", "col17": "GrMdg72&fV53(_q?ZbYGrDKMi3-#4H3pu(M=c6*(^NY2?u*VMh7fmUTB?eopFxET9uZ3?WH3,.VWQ2c_/78@"} {"col1": 1683904273, "col2": 114, "col3": -24879, "col4": 1, "col5": 8135300646736071863, "col6": "-533138965112586068", "col7": -4603.649, "col8": 2137625112.86537, "col9": -63027635477510479.768, "col10": -51263852143163526.143, "col11": "2023-05-18", "col12": "2023-08-24 14:30:10", "col13": "2022-11-23", "col14": "2023-08-31 07:10:41", "col15": "?+wPp%X8bbj(^@", "col16": "`4>g*MM@EfHoKaK+cG~kyx+D>GG`/^wDc0z@V&310o71B2357$_;eZ@T*", "col17": "O$T=JM2a#e?o%F?BK^Y$#)AQEYQj-5%2BNDq)c`UAfE6Y<>588"} {"col1": 643219270, "col2": -20, "col3": -8137, "col4": 0, "col5": 2552650640448880115, "col6": "4674768345935204778", "col7": -28442.773, "col8": 611533148.902466, "col9": 25998828839996242.461, "col10": -14673004593363430.607, "col11": "2023-02-18", "col12": "2022-12-30 07:38:54", "col13": "2023-05-17", "col14": "2022-11-29 16:40:22", "col15": "fG~#TwD", "col16": "#,yvT(MI%p~l%+Rc_TRAA76-ofG7gA,%1bp%kNmvo;)H=$iqi", "col17": "6np/u"} {"col1": -1060443009, "col2": -67, "col3": -22580, "col4": 0, "col5": -4444031682962794134, "col6": "133763345107711635", "col7": 18073.379, "col8": 248387995.865393, "col9": 62095529744555286.698, "col10": 4044200079094191.880, "col11": "2022-12-12", "col12": "2023-05-27 09:33:57", "col13": "2023-03-01", "col14": "2023-05-29 17:39:04", "col15": "?riaicX", "col16": "rT_@BeZKwQk0TQx9C^POv(QR>Jqz2Ve?EyFm+TMYWh6j1Yu0hfBliCECY^b8)P^d*Jfh0kGqER?T", "col17": "Idver-_^5ceDdzdn^P/N.nRMSPuzCqczLSh?)bl^OcSH5?F@c;P$K_O?__RKb~8)`0WB5_YfUTZ>^pa;le^r2DwRjqbJs0T`DUd"} {"col1": 169247257, "col2": 84, "col3": 6693, "col4": 0, "col5": -3628860903341657653, "col6": "-5015295262109218606", "col7": 24289.36, "col8": -52506094.523564, "col9": 78795489215042230.357, "col10": -79644456932811905.834, "col11": "2023-05-02", "col12": "2023-05-02 06:48:52", "col13": "2023-04-26", "col14": "2023-09-08 16:18:26", "col15": "t_=Uk6Ck1zV2l($JF`Q/A5(Ev!gU_0?Q#2n&&qv,2pm+gnZoori_b.*#FF4#!O<-Fv", "col17": "_giXg)6;#0<=KzV->z4>QBYIa6L5q8GS%(GNeFb1&%LGKZ?=xYyJ+k_Muejd_8ZDM2+^t`+&m_0"} {"col1": 560863439, "col2": -71, "col3": 8799, "col4": 1, "col5": -7959962633037749654, "col6": "-328732735937660903", "col7": -13256.823, "col8": 831484450.670579, "col9": -87334457318899243.239, "col10": -8966873817392032.630, "col11": "2023-05-08", "col12": "2023-06-10 10:29:40", "col13": "2022-12-02", "col14": "2023-08-07 18:35:43", "col15": "Y", "col16": "g?CE?+WT`zvCP$U(EPr;8^W_4-Rd2Dm*pj;4qyAv#u@QWvaO~)0Q>H-8ooaCmcHrh@s`@^``(A", "col17": "C880^~j?1kcZRK$@2Aa$z4t$rD$"} {"col1": -515575452, "col2": -113, "col3": -24632, "col4": 0, "col5": 4872295739581785324, "col6": "1645563956122792580", "col7": -5648.7715, "col8": 2119787276.246767, "col9": 91142813279352061.648, "col10": -3227778190014385.836, "col11": "2023-01-13", "col12": "2023-03-19 11:17:52", "col13": "2022-12-01", "col14": "2023-05-08 05:34:55", "col15": "u,6RTgWApC", "col16": "c(0hRJGA@I,5qgH/`=>FRAaaM", "col17": "e8a-wH&;r>T>gz1YBDp%H29E5$o5Xkw,=Gz58o6/^t4pC9tMEa5A"} {"col1": -768191949, "col2": -22, "col3": -17958, "col4": 1, "col5": -5474863816659413511, "col6": "146498896644460146", "col7": -21183.82, "col8": 1533467928.404991, "col9": -65028045572118641.195, "col10": 42087598282844182.564, "col11": "2022-12-23", "col12": "2023-09-06 09:40:11", "col13": "2023-02-15", "col14": "2022-12-27 19:12:20", "col15": "*&,-SB", "col16": "tx", "col17": "B,>hor25X%ti4J8Y*ubr@?g$k0PR#wijM1UKm.ZY%6j3FI*zLReOB`WelJW^R!R#sbE&U!>`YYOFj*~#044AP~$Drdp=Q!"} {"col1": 172233591, "col2": 8, "col3": 15319, "col4": 0, "col5": 3502657102937957793, "col6": "3164146766365984227", "col7": -8501.518, "col8": -1750170652.325613, "col9": -52876700116535801.780, "col10": 77104328550003023.320, "col11": "2023-03-04", "col12": "2023-03-25 14:23:39", "col13": "2023-07-03", "col14": "2023-08-20 15:49:48", "col15": "5;cjMtPH5QfVO", "col16": "c#8L6dxjJSv7lGKr*_ww$^$I?%R*yeDp5C&hag$Q`P^8*k#!h$2aNolj0K5Bh?2%^;jkEhMFKj.rUuY*t!<#XI$nREm!t=1z+37Yo/R@905Fz)^10lSFStbOi8v%,oF"} {"col1": 1668695486, "col2": -16, "col3": 51, "col4": 1, "col5": -6120027227101236921, "col6": "8994890486569440069", "col7": 26802.582, "col8": 1225698961.52193, "col9": 85050625432102244.886, "col10": -62310261336359009.669, "col11": "2022-12-14", "col12": "2023-04-13 03:12:00", "col13": "2023-03-23", "col14": "2022-12-14 09:54:32", "col15": "UzA", "col16": "eil`B#4$+D4Qt--!DL@`L&$~$PMBw/V68/Avv<1xCT?A7?", "col17": "rLlE^DR2Emn"} -\N {"col1": -509008921, "col2": -27, "col3": -19163, "col4": 0, "col5": 1475648713457927736, "col6": "-3481435156122641780", "col7": 23285.066, "col8": -2144452069.906995, "col9": 26047508322316631.756, "col10": -74200637210404703.320, "col11": "2023-09-21", "col12": "2022-12-12 11:02:45", "col13": "2022-12-16", "col14": "2023-07-16 16:34:15", "col15": "YzCfOL-b%e).22", "col16": "gDH/)T=N9P4tHV@D@0p6h?@r%IL7#@Y$8iKxy.N~yXA@AB", "col17": "D&0!+fZ3M;LV.b~ARixpYVvQ>;tQFfZ*_<8?htD3ioNsBPKh;DMF/%`4y4&7E9tukeAp="} {"col1": 1151997700, "col2": 103, "col3": 23267, "col4": 1, "col5": -927023899465062923, "col6": "2739819997184443753", "col7": 10377.521, "col8": -1725387353.727131, "col9": -79830805627769803.173, "col10": -34194369851408639.927, "col11": "2023-05-11", "col12": "2023-08-15 22:24:05", "col13": "2023-05-23", "col14": "2023-01-29 05:46:47", "col15": "%#$tXx4(JB", "col16": "dNhPI+3c%MCS;n(&5Hcxz7", "col17": "%?q#H8=eNCXCPsC$+fQCXKsAXf,gWdTN*teRmiN)I_+btL_1n18)QlSC`fDR+/xBE/U#F.Zl>sE9yG0!l3_XF>by+xc5K-X%T1NSj0"} {"col1": 1421596361, "col2": 72, "col3": 3920, "col4": 0, "col5": -6118489479642225283, "col6": "7317635664738699657", "col7": 7737.5767, "col8": 2003407003.509362, "col9": 39552514893473143.869, "col10": -42730566174026754.489, "col11": "2022-12-09", "col12": "2022-12-26 15:15:57", "col13": "2023-07-24", "col14": "2022-11-11 08:30:04", "col15": "&4/G3ObN440?", "col16": "~ZyffyDC`xmz5O7#F_lm>pWH$tE*kQP*D*$RcgLBeB6jm=WP/!58K=E-5#0T;i;js5<1?akyXQ=?J_cO,YaK.szT$^Jm/w*rK1h~9Bfm>"} {"col1": 422243534, "col2": -41, "col3": -17148, "col4": 0, "col5": 507889730531854312, "col6": "-7687587853317523595", "col7": 15600.064, "col8": -452506793.454084, "col9": -80779650241170514.708, "col10": 66213669753600024.718, "col11": "2023-07-28", "col12": "2023-04-16 21:25:39", "col13": "2022-11-18", "col14": "2023-02-27 05:35:33", "col15": "t^Pb@l5", "col16": "6^fu$V49hN?sz+&Qbo6DhgfBIhPq=,,h49OudoMd9X4FCz8j+IBv%~r=NlP1,_sTPTDm1@%=7z92Y,fi6K_hR", "col17": "WY/;q*JBEBIsz^>tj6FmJXAi`;(;nPP(6=OP9qco7t(>gO_Jjvvff1!)nFF1Hp;b?RgkP&n2&($T47abJ#wfk=Q^UpwSmQ4rqMK,usfVhCtF-=3gtwF5z^.Qh*0U/41ZC@,N1K3RAWsmT*~q7Zg_q/mJ!_"} {"col1": -1964996452, "col2": -4, "col3": 20556, "col4": 0, "col5": 8315246488290679100, "col6": "7572158780311200589", "col7": -18410.236, "col8": 1606647238.822878, "col9": -89134765801837206.538, "col10": 31618570701256890.422, "col11": "2023-04-19", "col12": "2023-07-11 14:23:28", "col13": "2022-12-01", "col14": "2023-02-24 11:13:04", "col15": "No*-^", "col16": ".gI^(Xr=>A5)`Dm>nNB#0(ZYk%E^F7sH&rj`1yn$.>HtY?4lV4TGzOy5U.Mc", "col17": "FxB)jFhMjAY;B)Y?gx@yY>_7.o=mP))^&S49x478?%K9Y?!S..$tv03)Z4~(aw!!uJT8_eLY81$3iQSGwqZ;$TXw*5<@wXYGfkC7^pk1-hj!e>!eUjWjmEq&"} {"col1": 227935475, "col2": 71, "col3": 11088, "col4": 1, "col5": 7650681200215890031, "col6": "4730937172673466965", "col7": -27321.963, "col8": 1257272054.24069, "col9": 14931750839744403.562, "col10": 99429378055862630.805, "col11": "2023-05-29", "col12": "2023-06-08 11:18:03", "col13": "2023-03-28", "col14": "2023-10-01 22:39:24", "col15": "IY_-iuFqVlJ_", "col16": ")G&*ByCK%g0a,K-@-.aYJUuXZdW($!,9Y_zve>J", "col17": "#~dH>lqOzrLT>#v&N`Wp~ok`@fBAo8gvhrrE2i7.Nk_,BVCdFjch4YWNcn!E50,c$K2"} {"col1": -217244015, "col2": -68, "col3": -22267, "col4": 1, "col5": -1646866721402246441, "col6": "8084098841923390485", "col7": -14844.271, "col8": -1972311570.899041, "col9": -35753532293436342.172, "col10": -71646062497318666.824, "col11": "2023-07-19", "col12": "2022-11-27 08:58:04", "col13": "2023-01-17", "col14": "2023-06-03 13:25:35", "col15": "U;", "col16": "i7PaF53S%u9_J+McGv5E_4dT75dYYLBspxuB=SY*B5qyXO9lHMR_d?F,/+Q,_(*HIG+WJ8s?"} {"col1": 1010916742, "col2": -11, "col3": -22359, "col4": 0, "col5": 2930583999829427139, "col6": "-7116265985222936851", "col7": -10714.571, "col8": -1680657480.454771, "col9": -99245732093918387.868, "col10": 96449786654190081.563, "col11": "2023-10-29", "col12": "2023-02-17 12:53:10", "col13": "2022-12-01", "col14": "2023-06-24 18:12:02", "col15": "!", "col16": "BW(V->#Bx)#C6e5,*iquBz%3V.xQ-%cpxCV#gncLGoyW7/Uw!Ys3IPSF9)N8!y6Wi@gjPbHh%SL+;X9uiRCte$f7fr$XMarl#+YT`.Kc-%o4gwfus>H0>)1*#qfW,nES?.>@3.@jwVF`~gl,qY?f^ec_Ur,1N!Gyee;~zp+jDaXfsdr1_lfyNYjPOXJ"} {"col1": -1176341229, "col2": -59, "col3": -17596, "col4": 0, "col5": 5225706367147128291, "col6": "7482023791772342755", "col7": 4907.7124, "col8": -69589660.206571, "col9": -74210811743941554.967, "col10": 37134395679332766.718, "col11": "2023-07-17", "col12": "2023-10-25 12:45:07", "col13": "2023-06-10", "col14": "2023-08-03 05:37:13", "col15": "h", "col16": "WHu/qO7D", "col17": "(p"} {"col1": 1419943662, "col2": 78, "col3": -26881, "col4": 1, "col5": -1935981815279221488, "col6": "515392747522788801", "col7": -10079.102, "col8": 166391426.979885, "col9": -98837509190739959.541, "col10": -44427137572921229.590, "col11": "2023-03-24", "col12": "2023-07-10 01:00:19", "col13": "2023-04-22", "col14": "2023-10-14 14:30:44", "col15": "u`A<=p6c`B", "col16": ".<&=zdb`tx~qLk!g#~oDZ^=yK)Hk2(>cFR0FS2_mC8A-?Rxb%z>oV,*W$WX>;(UJtBl4Je)g&DeY+BO^A=ezgQf", "col17": "rQfNcGI$nD5!`Q?e29e(gto_2DE/~4m~e;=X6p3E;%Gn%%,>9RPTU_g,qJxmagkp=ka*z4b"} {"col1": 1267116125, "col2": -33, "col3": 4031, "col4": 0, "col5": 4145604857134925353, "col6": "-224925331868005887", "col7": 26411.283, "col8": 1169746682.545244, "col9": 8572034354541309.272, "col10": 96151106049464759.806, "col11": "2023-07-21", "col12": "2022-12-25 01:03:54", "col13": "2023-02-04", "col14": "2023-09-19 00:51:48", "col15": "K>G*Dvh6A2xKWCX,bh>W*IBP^4?i;Ild6@^3cGh30L,a@-CP>lw8"} {"col1": -1508153295, "col2": -81, "col3": -19137, "col4": 1, "col5": 1077763455007258639, "col6": "-7549681434461673229", "col7": 26029.754, "col8": -204288435.299404, "col9": -80133776891054495.450, "col10": 1044641312148988.879, "col11": "2022-11-11", "col12": "2022-12-10 22:10:19", "col13": "2023-02-20", "col14": "2023-01-03 20:19:38", "col15": "oM9WX#5~", "col16": "^p7MMUb3O?gUp?g1E>o$Dn=90jm2XoqrJ1q!v&zuetA1N2c;G$+e", "col17": "i7.yWzza$F"} {"col1": -1957786302, "col2": 111, "col3": 687, "col4": 1, "col5": -329175267162713131, "col6": "6644820929726960152", "col7": -4319.3433, "col8": 1093662158.163057, "col9": -13018786555221977.392, "col10": 43944835139524800.189, "col11": "2023-07-10", "col12": "2023-08-11 15:40:43", "col13": "2023-10-18", "col14": "2022-12-18 07:51:22", "col15": "Bgd~3Z(Q.Di?@6pZl", "col17": "wqT8f;XnYAhjl^(CLkB", "col16": null, "col17": "JAZkO+11LB>w=a~yJ.nY5QKew*AtYmM^8Ip;o-Dqzbe3Za%>"} {"col1": 1434407077, "col2": 44, "col3": -23990, "col4": 1, "col5": 7759166642335176493, "col6": "-339315168127929241", "col7": 25013.748, "col8": -1897052142.267418, "col9": 49827457190844264.800, "col10": 85276312414130905.552, "col11": "2023-11-05", "col12": "2023-06-23 18:14:37", "col13": "2023-03-09", "col14": "2023-11-06 16:29:14", "col15": "o", "col16": "_R?KjiY>?Gv7vvg<1slZbu/W3yn/Ht-=yx;?`GcR.1aEPD?", "col17": "7Qh#O!OH9,o;aYe&JR,@J-tF/x7WzAAqlR=-B$H^G^QxP=lVN3dE"} {"col1": -2142436014, "col2": 112, "col3": -13779, "col4": 0, "col5": 4376296518422862612, "col6": "-2788487280869040538", "col7": -10449.303, "col8": 1911814619.522788, "col9": 78399317344786522.440, "col10": -88978986475903265.183, "col11": "2023-08-11", "col12": "2023-01-05 06:39:04", "col13": "2023-05-29", "col14": "2023-09-10 00:13:54", "col15": null, "col16": "2cV.3m?&3f`dKPNwEz)Yzqv#7/RfPD>ie#R>M#6DeY!ESRi4x_WNWcq", "col17": "z#76kMJRT%,;)Q`)5PRypZ.BykX=RW>E74~CZX=659+yC"} {"col1": 657834527, "col2": 82, "col3": -32157, "col4": 0, "col5": 4672634700889493540, "col6": "-7582842389135920340", "col7": 17082.41, "col8": -158467709.716171, "col9": -14184714635790844.455, "col10": -43596646954534245.626, "col11": "2023-10-06", "col12": "2023-06-17 11:50:02", "col13": "2023-03-25", "col14": "2023-05-22 16:49:23", "col15": "t", "col16": "f$Bgrye~#0ZZB_W=t0~h54X`eoZXPvY9h&,=4rKh@gLqIxI_~fHR!F2^Y*i#CY54j.,L.l3Kg6;z~0%HIPpvjC0oXT", "col17": "=.SJukh.@+ij0BWOJoXMba4F5rJkSj9Zb*kYgE0Nq2sJxB,vgG+jAMify4@)4JbBH~RMIZ*0KdXkJhSr45n3"} {"col1": 1511945047, "col2": -69, "col3": 19081, "col4": 0, "col5": 8771278776240250901, "col6": "1577044811093584542", "col7": 29968.03, "col8": 1155141123.389221, "col9": -39083065061490350.514, "col10": -19079192123719468.564, "col11": "2023-01-26", "col12": "2023-02-19 15:01:44", "col13": "2023-06-04", "col14": "2023-09-09 18:03:08", "col15": "&V1lDl64nyZ?#", "col16": "On+$X2e&dPz;LFV#tkO9!jFFu1UIcwP>pWjg>Q!KwD?GX", "col17": "Zi#Ld175.ld;.fB7GhWbxlk"} {"col1": 610894160, "col2": 65, "col3": 1018, "col4": 0, "col5": 3605394011254706763, "col6": "-3478982256520993022", "col7": 8121.156, "col8": 1025591253.456631, "col9": 81365968128401633.153, "col10": -81101382005088661.503, "col11": "2022-11-14", "col12": "2023-05-07 19:49:51", "col13": "2022-11-19", "col14": "2023-03-25 16:19:35", "col15": "ES)x=aMdIGmlT", "col16": "t/C$)nDCAK1yJ;^bJ7eE-LVy%cwb3jt49uCCq,PqOHwhk.T1yZW#O^JG@Fj8+?4z=7p", "col17": "1YCR$f%H_", "col17": "lzRPS/a8x_8pVZa$_P6,rb?g1da6/."} {"col1": -990480672, "col2": -55, "col3": -10708, "col4": 0, "col5": -4935291170825143958, "col6": "3384694337473565906", "col7": 9817.05, "col8": 2122107422.283364, "col9": -90356948255074812.910, "col10": 32770598240140924.717, "col11": "2023-08-20", "col12": "2023-07-09 22:23:54", "col13": "2023-08-09", "col14": "2023-09-26 06:41:52", "col15": "qc^eY8dd;w0&7", "col16": "znLeaJ~!L#rs2H", "col17": "Z;Xv,>li/Cyg2ZN,J;3&tzL#8udu=iHO,(Bu!N>wg6Apwd7tio6Ek@H@*rtZA$_T!p5lOfV##t.d)Z3JVd&@4k!X!l^K@aM@nt80Hb^/hW)r#-msijc,"} {"col1": 555766812, "col2": -81, "col3": 17557, "col4": 0, "col5": -3341927921358411772, "col6": "-6165250980065362285", "col7": -18895.7, "col8": -337416378.21902, "col9": -69836366696538069.535, "col10": -53494446298127305.916, "col11": "2023-03-20", "col12": "2023-11-04 03:12:35", "col13": "2023-10-08", "col14": "2023-10-16 05:30:03", "col15": "uP5RPe0!2w%YCZ", "col16": "wzq8zoI?nNJS", "col17": "n3;)J0zIV7u~>)xl$xoA"} {"col1": 1240578282, "col2": 51, "col3": 28317, "col4": 0, "col5": -6967229457925271456, "col6": "5570408718636605614", "col7": 21332.59, "col8": 48729495.590622, "col9": 59949626553560852.576, "col10": 95363730377398985.351, "col11": "2022-12-25", "col12": "2023-07-31 20:54:14", "col13": "2023-03-18", "col14": "2023-03-14 19:47:27", "col15": "ng%W.dJucV", "col16": "OQ.&Yd0lS#=)cDLsZ$n69)T9Ap)#0&F5B5JqXeN/gBpYh"} {"col1": -202536028, "col2": 102, "col3": 22321, "col4": 1, "col5": -4064308883480338960, "col6": "1299022891257543900", "col7": 5586.1284, "col8": 1073495949.461598, "col9": 25815878476649991.271, "col10": -41099988391402435.149, "col11": "2023-03-20", "col12": "2023-06-26 06:43:55", "col13": "2023-10-18", "col14": "2023-09-27 10:38:15", "col15": null, "col16": "++0y0w_B1uU-_nX1_wtfQ2.*KL^iUm4KC^z%bExhd05", "col17": "H+-KLfu`v@L#;z%k%?,Ati97@N<#Yw1tCJ88BAMYmwr90o1N^82S6kbAK5mC>)@unAiSck9>3OcjAv-XUdMg)e~*@E5CiAbc?oIC-rsGoQ`0", "col17": "Em3@9nt^w=_Lw~0&%7-chkQKhUGqj.,tz>SoqN`,Jj@"} {"col1": -1944951577, "col2": 82, "col3": 9319, "col4": 0, "col5": -6735411524378743936, "col6": "-3087230098102468185", "col7": 21840.625, "col8": -339534084.734941, "col9": -60500672577753918.683, "col10": 87018608768317029.549, "col11": "2022-12-31", "col12": "2022-11-22 19:12:11", "col13": "2023-02-07", "col14": "2023-08-07 16:57:54", "col15": "!", "col16": "b#Ng_Ogf`Lu-X.yz4QFNguvOf^R1*DW!YVilYEX4lY==z!`5<>=;X>o%ai`~6#IZyx+^WP?", "col17": "D72Q4Co~ta>yz1nErVUjhW`ZLHZpzzN*O=l?XJ.qW4720-*x(35xILFK,=#QtmS(39tTKPi7DvbSAUTy=53NVz1EiG>v;CrTZo"} {"col1": 234114787, "col2": 99, "col3": 32123, "col4": 1, "col5": -6965933224881843437, "col6": "-2028774596582884327", "col7": 32596.664, "col8": 1218403806.342796, "col9": -39226254369715538.282, "col10": 62972701386517228.800, "col11": "2023-02-11", "col12": "2023-01-04 20:21:53", "col13": "2022-12-03", "col14": "2023-06-05 00:34:37", "col15": "L", "col16": "=chLu0;am8NT7v73+;.4.h4cPaJi&cgSIrO", "col17": "xr!Uw9#LWk#%E8Wd&PdjB>4;4Bg-x2dpnQWNBiz)84q;,-ST*"} {"col1": 1713558477, "col2": -64, "col3": 23299, "col4": 1, "col5": -3655067400428113111, "col6": "-971001965512541678", "col7": -13785.417, "col8": -106881665.080796, "col9": 29809265404205967.810, "col10": -29977477300742062.732, "col11": "2023-10-26", "col12": "2022-11-22 15:44:59", "col13": "2023-10-25", "col14": "2023-07-09 09:57:20", "col15": ";YWl_wN7!/l", "col16": "DOevlkm/XO+IIhi~-3kR%%", "col17": "=6A95Lm9LX$(vxAboou%,NY4qk$sNc!+NKCeS8<#`7N^?"} {"col1": 920373695, "col2": 62, "col3": -13307, "col4": 0, "col5": 2315855827060133738, "col6": "2892134711552638253", "col7": -15204.923, "col8": 7196941.716221, "col9": 28960057270497525.509, "col10": 55610225204972104.249, "col11": "2022-12-30", "col12": "2023-04-23 12:59:48", "col13": "2023-10-25", "col14": "2023-02-09 16:07:12", "col15": ">Q5DGk#9z$z", "col16": "=q%,,02Vhx.!+vSpx7jL*L8m0EsQ>(NG43!n6_r~!x2g9BeKKj7$Cbr~R.xdF,OIoGt*", "col17": "X^EV@gll?znU~j78>)8%+3u#8Q!8;oO."} {"col1": -333781995, "col2": 90, "col3": 23250, "col4": 1, "col5": -2400027152784178446, "col6": "-1279962128679669598", "col7": 15358.365, "col8": -604161626.327051, "col9": 24398441755883018.463, "col10": 25132973924003857.266, "col11": "2023-04-19", "col12": "2023-05-08 13:25:29", "col13": "2023-03-08", "col14": "2023-01-30 02:39:49", "col15": "&q", "col16": "qUKk&`1I`o>.%THD?=E,;IcVHlaLwd+Hkbi@7Ji)+Ma8!AO1TicYo=+FBW=XT^EMV8*&8g4Jka/AxU*Q7+g./gXE~~Jmbbm.m/OM"} {"col1": -1606282538, "col2": 11, "col3": -3615, "col4": 1, "col5": 756292685090331785, "col6": "5925846768287126056", "col7": 7165.806, "col8": 2004792133.709086, "col9": 14151425806777272.721, "col10": 82461381788038896.830, "col11": "2023-01-01", "col12": "2023-06-27 11:43:03", "col13": "2023-03-31", "col14": "2023-09-10 23:08:31", "col15": ".%riu`", "col16": "A?sp9M^C6O.EEsXlXpRj$Azg=$0O1za&o_)DjyOzE++B+(.VwyvMsfTtr,C>OfS_?N/VEUXCX", "col17": "#b%h2%1rBH+<;Cj=Yq*(h0wYaB1p%S5Iqt9Q1"} {"col1": -301303501, "col2": -14, "col3": 20978, "col4": 0, "col5": 3071911585008707334, "col6": "610247436068778006", "col7": -9658.79, "col8": 454069105.89132, "col9": 27771028156388318.185, "col10": 78744669615573568.773, "col11": "2022-11-21", "col12": "2023-02-14 12:01:45", "col13": "2022-11-16", "col14": "2023-08-30 11:55:29", "col15": "eJ", "col16": "Q,7IORo3!>P9HFUCaHT1WUobo*$bZp(Y+9wz.#3Z60;;W~`yRh*)-tR<@gO4K~;GR1j?t-2~O20jpZET0bZTPY>$Ho!Rw0AiVX2kHSmf2>I)!ft=_%e-XyPt1bi6*sTgvE@wN0#G7K"} {"col1": -1936211661, "col2": -122, "col3": -23211, "col4": 0, "col5": -5540740830240461096, "col6": "7009626545118772440", "col7": -16446.195, "col8": -775937464.459849, "col9": -61698507725639460.885, "col10": 3879413632663669.319, "col11": "2023-03-30", "col12": "2023-05-04 08:56:03", "col13": "2023-08-26", "col14": "2023-03-15 05:45:03", "col15": "Ou8r#Ddwir,w#", "col16": "X815bcqKInnc+vjvzfrzVzN=Ip+yX9V+S&Wh=u%O;*PrNG~`E~9rxnHn.0<44PPjWz", "col17": "Nd&Ej;;G.CBSk5*3SoL4H@Z4_TzuSMzd3j@Px46sR"} {"col1": -1926966604, "col2": -18, "col3": 24791, "col4": 0, "col5": 2921317845794227618, "col6": "8114429751870216975", "col7": -9627.225, "col8": 1055221307.44863, "col9": -20442685919602826.571, "col10": 56210848181278655.146, "col11": "2023-07-27", "col12": "2023-07-10 17:02:57", "col13": "2023-02-15", "col14": "2022-11-29 13:51:37", "col15": "!", "col16": "Ke", "col17": "v+rxDv>5n#zPr1nPn8~ianE_-o7P!HT!~AK~)G>;cgWAJ7?eQ,I"} {"col1": 348414278, "col2": -112, "col3": 10967, "col4": 0, "col5": 22875989281754084, "col6": "-308924971579099934", "col7": 8971.96, "col8": 1595999005.478195, "col9": -45770313571158668.125, "col10": 12503300784959910.525, "col11": "2023-01-28", "col12": "2023-06-17 15:24:52", "col13": "2023-02-14", "col14": "2023-05-24 14:28:24", "col15": "Mx8+(-4K7Ub8k6u1auF5y9C;)-&;OUD/hE*1Q(_t5#CVNESc^k!&/zCnuT47sEq>tIO/iTM;YxQmeehnT^K62~w*&dzbl`7!FnCu%k(QT"} {"col1": 1689276863, "col2": 31, "col3": -27488, "col4": 1, "col5": 1413705707860766508, "col6": "8626885641484079374", "col7": 10747.075, "col8": -1725385712.668506, "col9": -43030410959042437.577, "col10": 65351213011512347.235, "col11": "2023-10-23", "col12": "2023-04-26 16:07:51", "col13": "2023-06-05", "col14": "2023-02-10 08:04:51", "col15": "b4SAoee", "col16": null, "col17": "$RiRQdW-Z0!`bZGKj4hXyZCtU$Td9qVkG;(P;pC$ZTbD?TV4J,j0RQkaLFK>!7-;za"} {"col1": 1307588401, "col2": 118, "col3": -230, "col4": 0, "col5": -9003147224024323648, "col6": "-2834821371169576495", "col7": -23682.217, "col8": -1057477971.37014, "col9": 7442718637323324.671, "col10": 23979138129054233.376, "col11": "2023-01-10", "col12": "2023-09-26 16:46:28", "col13": "2023-02-26", "col14": "2023-04-28 23:21:07", "col15": "z>5$heX.naO9", "col16": "Q6CwRV&x4(5?)IN4W=A1Km%ij.seM~;iG#n(=e@8@0F6fh6al/)yy`_IkCE1-e)", "col17": "$XUvhrW.53YNg<$auhwq`/.kX&t+QCVq"} -\N {"col1": 286636, "col2": 40, "col3": 12531, "col4": 0, "col5": -2314336941027611643, "col6": "325716261438789569", "col7": 32479.145, "col8": -1658974100.936647, "col9": 11853795084347828.361, "col10": 62514140879293637.625, "col11": "2023-06-08", "col12": "2023-04-11 04:47:26", "col13": "2023-07-19", "col14": "2023-03-24 14:29:58", "col15": "CE/$ty", "col16": "h~JCUN)yt_PIz%X8ZZhwvPgx`GjEU9sb2`Yt$uc~=STGn6a*.OaG>/svCkKbLb*g&XEh5pNN@zux@"} {"col1": 1761523268, "col2": 111, "col3": 19405, "col4": 0, "col5": -1410410496357211184, "col6": "-8199224635820068032", "col7": 22934.434, "col8": 627538448.05242, "col9": -45064148478173929.176, "col10": 73410053241837519.345, "col11": "2023-04-29", "col12": "2023-06-22 10:49:00", "col13": "2023-03-05", "col14": "2023-05-31 15:44:41", "col15": "", "col17": "(dfQv~g1NTfr27mribQ"} {"col1": 1772566035, "col2": -63, "col3": -29273, "col4": 0, "col5": 8745264170466134585, "col6": "-5506842273306313157", "col7": 3759.1814, "col8": -1452285594.876885, "col9": -60197265634701597.901, "col10": -95081102937771943.624, "col11": "2023-03-02", "col12": "2023-03-12 04:22:55", "col13": "2023-05-31", "col14": "2023-11-01 09:54:42", "col15": "TT1.q1I67`kl", "col16": "Ps", "col17": "FVv20/F-=ByPeQ3nF+?(_^#_iPrS+u1_ZHJ`zi83m#+b(@Y=(q^F/L9"} {"col1": 114127467, "col2": 87, "col3": 793, "col4": 1, "col5": -428535361954066498, "col6": "4697713311229287983", "col7": -6481.3823, "col8": -1924904573.8708, "col9": 45709405300291925.157, "col10": 1577321435926722.138, "col11": "2023-11-09", "col12": "2023-03-25 02:19:32", "col13": "2023-07-28", "col14": "2023-01-19 02:23:09", "col15": "f2-`M54d(eOQ#", "col16": "XxP&n&hF*/h==ul)5~?jC%uziFEl=/7>5rm+`lt5$+hAAWdD", "col17": "ws@.x^hDAc0g(PQ@~tZ2Ga.+J6TGTIjAO#+eKcYwKL2NB<,w*BqwNo$hY;/>h(b3RID%fyKbTH5#U*q-WDDS9lb6(^R~SzsZKs"} {"col1": -1891520405, "col2": 124, "col3": 8855, "col4": 1, "col5": -913657545924566585, "col6": "-1536770753715164108", "col7": 6998.9185, "col8": 511030433.623111, "col9": -10830494740800769.178, "col10": 78391274234937148.959, "col11": "2023-08-06", "col12": "2023-02-22 13:11:30", "col13": "2023-09-24", "col14": "2023-06-13 20:30:12", "col15": "k", "col16": "wvdkyd*9nP1", "col17": "A5J)3lWuThPKL`H=o-b6Mj#/JsG?^47VpsM&h7<6Tg&1hR92WWv13)d5N6q)g2i_j_1Gl3_On+&Kb#hZa1"} {"col1": 1975678310, "col2": -78, "col3": 20283, "col4": 1, "col5": -6645481965792488411, "col6": "1567102139313612320", "col7": -23824.113, "col8": 1658568100.136103, "col9": -80600254825061679.751, "col10": 30197107892252230.108, "col11": "2023-01-27", "col12": "2022-11-13 04:42:17", "col13": "2023-06-19", "col14": "2023-04-12 01:20:33", "col15": ",+4NzIq2dl5", "col16": "4!CcT;-T3C6+fTB&clJ/Z,uK>GVqB4LEN^5sR2LWIp90nUH)ta7T`", "col17": "y2r6_*;YvqS=IF<9pNoVm6fWbjV!eGlcRP1kI<-*tzIqC~5ea", "col17": "!707G-OCekwr2^P<;JAAaPC0fUC", "col16": "kD*64pf#WguZnpBe(Z>V+G@#K/sFJL^4vU7W.JNgDAqxOi/!!W8^a~_D/vTChag3", "col17": "rrg45ezp?`&=7Ize#JggS2c=>75nio3VWl#3*H%,4XrJC<;cfm@K.49"} {"col1": -2088545982, "col2": -34, "col3": 31082, "col4": 1, "col5": 5811404451403597720, "col6": "7826096519969022070", "col7": 30825.854, "col8": 404659070.586117, "col9": -58291318173774590.227, "col10": 87552520044200423.105, "col11": "2023-02-28", "col12": "2023-01-04 03:21:34", "col13": "2023-06-24", "col14": "2023-03-23 07:03:33", "col15": "$@w#", "col16": "9J!>TQzsZ#;VhcTeu)ZBd-WA3s~_!GNrn)Vc(=)u9$!YVz3vCpZ2Z6TjqHC", "col17": "GY(Kq`"} {"col1": -643943399, "col2": 97, "col3": 10260, "col4": 1, "col5": 6000646543942719109, "col6": "-5870128463593245825", "col7": -31959.92, "col8": 766947397.493618, "col9": -35062983341828929.800, "col10": 93064025838296084.345, "col11": "2022-11-22", "col12": "2023-01-04 20:49:57", "col13": "2023-05-09", "col14": "2023-06-05 15:33:04", "col15": "8H", "col16": "_$(l`W;6F6_IxAj~ZsfguZ,XK9pj8wBTA5hC7U54VDIror*I.ESU7", "col17": "n8S)_m=GNx7@DO_GLnsb/0Mx(gT&fw", "col17": "y3,LMyGp9+UXUdjv;rVb6nVkXfB#Pkjqs"} {"col1": 934345248, "col2": 23, "col3": -23564, "col4": 1, "col5": -8266523705337718865, "col6": "4786905438011282083", "col7": 6888.2563, "col8": 1792227006.464728, "col9": 35418424816196567.740, "col10": -51218829150912924.968, "col11": "2023-03-30", "col12": "2023-05-06 04:14:15", "col13": "2023-03-06", "col14": "2023-08-07 03:43:52", "col15": "WH6,qomN`D", "col16": "3*LN))ex+zT$/t#5/>,EGIOtXnI94.r8wP7-Yjzn_8OX99Q^XG&&_f/ae_wLIu", "col17": "VB)l`ohAY^ccC,.`1o--&0xv#8%l_0L6I,7ab,jvuDQ.@Qqtq!$uI.LAlqZmnFOw#c*%)g&5-"} -\N {"col1": 362462240, "col2": 107, "col3": -19403, "col4": 1, "col5": -2086043196257155238, "col6": "3865964499005646003", "col7": 22711.371, "col8": 725299699.801546, "col9": -45387828698461027.545, "col10": 43814986570507758.100, "col11": "2023-05-20", "col12": "2023-10-22 07:46:07", "col13": "2023-03-22", "col14": "2023-07-09 20:48:12", "col15": ")k4IDm>W@", "col16": "z<@LtFP9F@LS5^I", "col17": "U36Y)13J7a*y+5uRC&I?qKH#nYN2GZBPEzSf`h33_z4GklvW,mMBgNO=94*&A"} {"col1": 1687785038, "col2": -107, "col3": -9903, "col4": 0, "col5": -1284597074098258744, "col6": "4255739912045331949", "col7": 3686.9778, "col8": -686626859.048087, "col9": 93576326533596209.242, "col10": -72503896890548707.722, "col11": "2023-01-10", "col12": "2023-07-21 18:04:27", "col13": "2023-05-30", "col14": "2023-05-08 04:56:30", "col15": "Z!BV;CtgPYdP", "col16": "7EwD#)uY4kkdr6-JD^jLW4XhFkD9w=%A&_4o*?", "col17": "69f,q-^KD2(#<145hA)(g3fSQ(_>D2R13_8)n+ycz)<#k"} {"col1": 2096768982, "col2": -34, "col3": 29058, "col4": 0, "col5": -6549673997206638743, "col6": "6127489394831520395", "col7": -17730.66, "col8": 1478347723.502807, "col9": -50631199631210331.799, "col10": 11089858765247247.904, "col11": "2023-05-18", "col12": "2023-06-16 01:16:33", "col13": "2023-11-04", "col14": "2023-06-14 17:34:35", "col15": "~Uut", "col16": ".H@eCx23Fn85`ok4Tj*u7V,/M,5p4HouKmH;6fu,4W)E9>NsP_@e3P+vv%xIQ)AP^hAQg&FA2FqsFFe7dLgQNALodq", "col17": "7ZjfxOe+l@x^+"} {"col1": 1771065349, "col2": 53, "col3": 7046, "col4": 0, "col5": 6486422408055459438, "col6": "1553889049848122326", "col7": -10102.512, "col8": -1378044883.486697, "col9": 51706531060270979.396, "col10": 26168096158080868.665, "col11": "2023-02-25", "col12": "2022-11-18 08:32:06", "col13": "2023-02-24", "col14": "2023-08-29 04:21:41", "col15": "9-hq2", "col16": "9I4SmYLtT=`kF9X!#~D?rOvzq#cCD", "col17": "ANjFd42e3"} {"col1": -1588160227, "col2": -116, "col3": 13817, "col4": 1, "col5": -4296149395358621914, "col6": "-6836906242783581735", "col7": 29637.39, "col8": -75798249.092423, "col9": 2497472774459503.589, "col10": -90761335260520957.241, "col11": "2023-02-11", "col12": "2022-11-26 12:43:50", "col13": "2023-07-10", "col14": "2023-05-21 14:25:20", "col15": "O1b(iK", "col16": "ukoKp~~$~9<%6_g3$Jj,yK2.)v-D!>M%-", "col17": "hT#S6BGS)6GZSirhv=hVbs_IYNG%3!Zw5nqF._^J"} {"col1": -1036552242, "col2": -86, "col3": 23770, "col4": 1, "col5": 405167630719134959, "col6": "-211756583294689265", "col7": 22159.436, "col8": -1295725525.582972, "col9": -83614908689396406.993, "col10": -50555993612523832.443, "col11": "2023-06-19", "col12": "2023-10-23 07:29:43", "col13": "2023-05-06", "col14": "2023-02-19 23:07:21", "col15": "1r&)dE", "col16": "!7fZGY.4yft+4q@uam)~!H&_`5ea<%2,Gw#EPr*SVeCz$>RWC$kLrJaROE?u", "col17": "61)Y^Gi@H/vx.?QSZjJC"} {"col1": 889243397, "col2": -69, "col3": -4674, "col4": 0, "col5": -1919184636690999337, "col6": "-1912156216644268562", "col7": -22623.336, "col8": 1382859654.868149, "col9": -1497126140853661.537, "col10": 9109805582223006.744, "col11": "2023-06-13", "col12": "2023-02-26 05:53:39", "col13": "2023-09-03", "col14": "2023-04-30 03:56:33", "col15": "f", "col16": "9Wzh`Xb2c^mv!g161uS`F=-al@N<$R;?)`Ol5zHM-tUk%!qVQlum.m@5W1GAn1;9DC8npQ$h1)_3", "col17": "H>A)>>0XsnZi4V=aF-G-W(Z?^9G8ahRy^Nh=Y!xBTr_f736El3_G(VREI@L&0J)YYA=RheQ?YKQj9H2YM&&71d11LL6yhXR?463%1!zKtG-"} {"col1": -1291944714, "col2": 106, "col3": -1048, "col4": 0, "col5": -8233818128720950805, "col6": "6417417188254389423", "col7": -7141.208, "col8": -713810670.066522, "col9": -72223604538769031.332, "col10": 28938197253502224.607, "col11": "2023-04-08", "col12": "2023-04-09 05:23:36", "col13": "2023-04-04", "col14": "2023-08-16 08:34:49", "col15": "s,c", "col16": "TW0efT%7IM6V)&^hrAVlUS~%50=tex%nJBWePivPA)4Qsfu)zM8/UJ_zfDD;T<8rxR7!V;wGbqxU?yxp%~^&Bba", "col17": "uoaP0W6%IpkkjcVzz+<&IOCHGeoKPu!M.4bFEFL=~(++^y12ISswkzkulyjB(~OR02b"} {"col1": -1249441565, "col2": 91, "col3": 12027, "col4": 1, "col5": 4065635472874095639, "col6": "-2376945415387094371", "col7": -14409.862, "col8": -1239902270.695204, "col9": -33646059432117784.248, "col10": -71716101260479540.163, "col11": "2022-11-28", "col12": "2023-06-06 13:27:35", "col13": "2023-11-06", "col14": "2023-10-17 13:06:14", "col15": "4<=DZ&OB=H", "col16": "tFT`X-cR+.z4tR&g1uGeqh1ql)C=U>9e(@xzn5cpS", "col17": "hp23=Xb%?=b&^3%Gnv%%FrWBX#&tvz!v6+EDl&>eRz_jnOz)rzLz"} {"col1": -1536145286, "col2": -38, "col3": 28552, "col4": 1, "col5": 9083537221448637629, "col6": "2089265029844927384", "col7": -7274.4077, "col8": -428636344.093785, "col9": 73589132532644102.675, "col10": -5938584116809747.553, "col11": "2023-07-13", "col12": "2023-01-11 08:36:36", "col13": "2023-08-25", "col14": "2023-09-01 15:52:29", "col15": "6hv;P#K*wfy`", "col16": "yRDRHc(SP7Vzoil!N3SV?H)eEB=PBj,(-&LQ(tsFjbNE?_Ha)4Hs_gTYZ4&(-Ti;", "col17": "ZdiW>jg3r*ruRbigVg,E^k#MtX%lT-.,<5Y-L7&PbWcq,h+=`8f*Xpw1$-#*>POeYJ=M!o"} {"col1": 167169924, "col2": 4, "col3": 14674, "col4": 1, "col5": 2347843046354796458, "col6": "-696172936130542592", "col7": 22341.732, "col8": 979533389.734254, "col9": 60968044483849204.353, "col10": 30200553599060726.618, "col11": "2023-06-20", "col12": "2023-03-28 05:02:57", "col13": "2023-01-24", "col14": "2023-10-29 11:40:58", "col15": "AQe^", "col16": "CF%eqVbnb1c4`e(K!`n!Muj4BxT89", "col17": "x8(m?F*e&V,Igt8=5#1R(lzS~j@Hn^,LC-vZjlE)LtC^rqLsrW~f^?U/Xn`ZVf&I&oW=y-%leuuda%dLq;e9X+XWw8-NY`3OA$q", "col17": "4pw!lM=U;Z,fQc$"} {"col1": -1657087814, "col2": 1, "col3": -26359, "col4": 1, "col5": -2371384929867156666, "col6": "3775942651477303585", "col7": -21169.385, "col8": -845820801.63316, "col9": 47918734590593217.759, "col10": 74462264410504498.159, "col11": "2022-11-27", "col12": "2023-06-21 22:32:17", "col13": "2023-09-10", "col14": "2023-03-06 22:21:45", "col15": "#MQXBt27fOy-84QpDJi.%0X5sSk/*kuk$?)+;>*Q.e=5PkF<1Q>IOPO2^?=?/~Fucgbrn", "col17": "rBFXfu>!KM!+Mu~iH"} -\N {"col1": 47817694, "col2": -23, "col3": 17759, "col4": 0, "col5": -2592767188593682012, "col6": "-1917916342557241438", "col7": 19111.617, "col8": -1045747727.139381, "col9": -77856575383144612.699, "col10": -86130057040674962.742, "col11": "2023-08-21", "col12": "2023-06-02 13:59:25", "col13": "2023-03-29", "col14": "2023-01-05 23:55:07", "col15": "-r(1D", "col16": "8pQW;fR8tUWwoIA_rM;pR(F%*P/2?gPI/Vwti^5B`Ytx)!s#PtUyNKL+O,hYq)+dY8jzQvVF/5>", "col17": "r*gsVKh,uy`^e!W^&4hSjCO+3;yC0^8K-CO1~Da+phd2rWd8L~1S&QGH.O66)5?H+!aV=1%eY5"} {"col1": -26249996, "col2": 61, "col3": 18052, "col4": 1, "col5": -361005233824192772, "col6": "-1351496023545458172", "col7": 2805.9014, "col8": -737538715.989399, "col9": 90422987849359214.754, "col10": 66747731473323379.835, "col11": "2023-07-26", "col12": "2023-07-17 10:28:21", "col13": "2023-03-27", "col14": "2023-03-07 15:03:53", "col15": "dodMKqi>N7k%v$", "col16": "iPB", "col17": "UPfh25?E6Pfpf3EogN9ujIiak*x@OG<0il6+EE19k-lPEZJac=C@Qj-"} {"col1": -1520622638, "col2": -90, "col3": 11515, "col4": 0, "col5": -4009716856944176555, "col6": "-4763301688224260064", "col7": 6702.3447, "col8": 798392384.256083, "col9": 75665032011082251.451, "col10": 34201762262152502.147, "col11": "2023-05-11", "col12": "2023-05-31 22:45:15", "col13": "2023-10-09", "col14": "2023-10-10 02:53:02", "col15": "yPS&?m", "col16": "cNeMO$(mORdi#0f>bnGNcIYxb7eT(jlq4g#>nYBGt1`e>"} {"col1": -1943129515, "col2": 50, "col3": 11579, "col4": 0, "col5": 2799362801208622844, "col6": "-1948899835302220937", "col7": 3235.7126, "col8": 206154929.5756, "col9": 22606996553063829.342, "col10": -65714174487506859.315, "col11": "2023-03-04", "col12": "2023-08-13 10:24:14", "col13": "2023-03-19", "col14": "2023-03-16 14:59:46", "col15": "^e", "col16": "9c0WW2wSr%)FqeU/CuGIl/Kgz`UFTQ/0d`.O0wzY`39^p4Z,;v-xaQJ3)Vvla9~04~NUXl$^lId/9P/GtCe9;z1SOC&2z-", "col17": "F6M+_Pc0iJw;.M5GyC/)&U=&"} {"col1": 366784492, "col2": -91, "col3": 5343, "col4": 0, "col5": 285484482479435330, "col6": "4401895463845494554", "col7": 23758.332, "col8": -325384021.555593, "col9": -50455152503318203.449, "col10": 65244455548239672.160, "col11": "2023-01-19", "col12": "2022-12-18 07:17:46", "col13": "2023-02-03", "col14": "2022-11-14 11:48:04", "col15": null, "col16": "cdyVRDf*>%*RPqOgpEg%Ti6FIZ)V(WrjX_eHWl7dPX0z5dhLKbA9+GuZ0I!gf*/T!S_/c#7NR&MAH#Tk2UN", "col17": "Rs*$@~;A%US+wC1Cq8enU!L4N=_/dHrhUN+d>oIw8i9Qqz&rW0E"} {"col1": 1177567574, "col2": -126, "col3": -4059, "col4": 1, "col5": 4286979026530110942, "col6": "-6963589946162575091", "col7": -565.9203, "col8": 182212496.114089, "col9": 81434412723303110.327, "col10": 40581272774311981.379, "col11": "2023-10-14", "col12": "2023-08-22 19:58:50", "col13": "2023-11-09", "col14": "2023-09-22 01:29:02", "col15": "OdnKqKet", "col16": ")BiuAN,,3H,u0xos-HqTGcro3J_6BV9Ev3bA_i@C?82Cw-j!!4Rp^Bpg", "col17": "LP8;=d$^WX3x+F1fb_Dev+AlYyvT1(DEFRa0Y.H0hot&Y1)/e6Qk0Do0^`wJ"} {"col1": 252819544, "col2": 6, "col3": -5693, "col4": 1, "col5": -3871447155054953032, "col6": "-1891127181338244549", "col7": 1470.908, "col8": -396385857.38936, "col9": 77121196514062171.380, "col10": -76861447925560213.478, "col11": "2023-05-30", "col12": "2023-04-28 02:28:30", "col13": "2023-04-27", "col14": "2022-12-19 21:16:15", "col15": "X;iF^sn9dndWoEb&;<1#~JU+gL)W1p3vyVUraPXmm=88Ea5i0OCx;3.a6=ky?"} {"col1": 576136288, "col2": -75, "col3": 7643, "col4": 1, "col5": 5799786671761075428, "col6": "916707314575044419", "col7": -22797.441, "col8": -2139432915.195112, "col9": 53906879174554699.108, "col10": 43663435803801309.118, "col11": "2023-05-31", "col12": "2022-12-15 05:07:26", "col13": "2023-03-20", "col14": "2022-12-25 06:16:53", "col15": "!WE8H#N7Z@CQx", "col16": "FJ$3E,G9N*wOeHzbml;@L&)sSx?/jB>tWXVlJmsdPsE@GG^A1!kD,~h?Q*SFN", "col17": ";_4o!co`.YXY,.b3sK+1rT%IVr7u1cy7%)B(x"} {"col1": -1883971659, "col2": 99, "col3": 10543, "col4": 1, "col5": -6728365874054023417, "col6": "-2328573775928406762", "col7": -2735.7705, "col8": -470549814.163389, "col9": -24454876926389819.379, "col10": 16483429508200308.120, "col11": "2023-01-20", "col12": "2023-01-27 05:31:49", "col13": "2023-09-22", "col14": "2023-09-10 20:55:16", "col15": "d!jdHwSL", "col16": "RXES-4ZoVQUghRY~#kZ-IeUJ^oe=,(", "col17": ";!h>V5Aqh@+TnG~EDzP*Bs0_AgZg^7SO3h9v12X!>enKhKmJl#)4q%>j<.?jS/t", "col17": ".5#MUXb1Cv?3>bHw0a#MV!vr3%"} {"col1": -2030375227, "col2": 54, "col3": 4384, "col4": 0, "col5": -7125092162125811206, "col6": "-4232776774567000152", "col7": 26837.652, "col8": 1917723626.45192, "col9": -15896016299014652.442, "col10": -68084327262626945.294, "col11": "2023-10-13", "col12": "2023-10-30 01:46:52", "col13": "2023-09-27", "col14": "2023-01-06 04:24:47", "col15": "FArbkY", "col16": "V;_5p", "col17": "z=wz%nr+n-,)/Vi#u!)M%Y,UhL)0mo=OLh;f$6x/6O&ut_H2W3)q(tATkEHSkB6cd-m"} {"col1": 1369414688, "col2": 12, "col3": 7964, "col4": 0, "col5": 1428861763881105022, "col6": "2927268561583567702", "col7": 25576.006, "col8": -484934950.126092, "col9": -80396552750778333.144, "col10": 65920321358287276.326, "col11": "2022-11-25", "col12": "2023-07-29 20:42:00", "col13": "2023-01-11", "col14": "2023-04-27 17:19:01", "col15": "-x,", "col16": "5w*P!Z;H+vrmxXzH?TCeoWWR.t3A35^B6Tp9rP`+@yFD9o1hF+qj(_U6Ml7<2sGhz+<>ooD,ag,^Ob8R2#*99?w2E3)F&B>HZ`I", "col17": "cZ/Hd;c*lG#Ri`&u*(C"} {"col1": 1800931837, "col2": 53, "col3": -6430, "col4": 1, "col5": -6410417525054536956, "col6": "668753896008119484", "col7": 3743.2031, "col8": -1177072535.248117, "col9": -47987051810775598.276, "col10": 39810223410294879.600, "col11": "2022-11-29", "col12": "2023-07-06 14:49:35", "col13": "2023-04-30", "col14": "2023-10-13 17:48:58", "col15": "Wea/KX", "col16": "OLc,m^(MTIfxn.%l29uZ?+(eC5szoGE~,+xv_GsR!bOPfrTUKWLpTKky6d`,wh&azAS!+q9xqm9LB2R", "col17": "w=LWqr~KT)La5/sN+CtM>265=,"} --8903033418165608020 {"col1": -1174247920, "col2": 36, "col3": -22731, "col4": 0, "col5": 7899564070391978274, "col6": "699172697713213350", "col7": -4668.7007, "col8": -615162117.884674, "col9": -68837064230431691.639, "col10": 70891119436876294.790, "col11": "2023-11-10", "col12": "2023-01-30 02:08:18", "col13": "2023-03-27", "col14": "2023-08-16 16:00:27", "col15": "hCET~vllh5Nl$KVatwNIEs.fwG07haAK-w8kg>QA9*Q&Cq=rd5J=iOj,4b6T`YNn$!ToQlF/R-8~9-sE?mcNekAWsxWhyy="} {"col1": 1976188027, "col2": 39, "col3": -20199, "col4": 1, "col5": 54838796530721045, "col6": "-4199157709856370965", "col7": -20633.107, "col8": -1314405206.528385, "col9": -17838244458606850.919, "col10": 13993039380882130.769, "col11": "2023-04-28", "col12": "2023-07-21 06:48:51", "col13": "2022-11-14", "col14": "2023-05-29 15:07:03", "col15": "Z", "col16": null, "col17": "aMm_kYB`6gpU2h;uD&8/kw3X"} {"col1": -439380020, "col2": 96, "col3": -17308, "col4": 0, "col5": 3579043460080517561, "col6": "4240896818074065205", "col7": 12152.55, "col8": 1198053802.322113, "col9": 2562915342156503.474, "col10": 7583328329290118.446, "col11": "2023-03-31", "col12": "2023-04-17 02:55:52", "col13": "2023-03-19", "col14": "2023-03-29 13:17:27", "col15": "0&P0_,,9I&dn", "col16": "HTtzP,7Ob", "col17": ">!M"} {"col1": -457160013, "col2": -87, "col3": -32076, "col4": 0, "col5": 2962490776305786988, "col6": "-9219898190360409591", "col7": 4773.356, "col8": 124168385.283727, "col9": 66564244852109284.538, "col10": -17698570145691684.721, "col11": "2023-09-09", "col12": "2023-05-12 14:33:56", "col13": "2023-05-19", "col14": "2023-08-07 19:17:09", "col15": null, "col16": "nsqUTDXMfOqg!S7C97`49QcZ4Os0TI?g6E2#J/(fV>(*X_Q`(6Znf?h$PS4u8NFcB49IFq/mgNAJX~p-C~4.", "col17": "0mntxHvG8zY_", "col16": "ca", "col17": "v.@WpiI1+`>Bj#II4"} {"col1": -1135173592, "col2": -24, "col3": 12059, "col4": 1, "col5": -4173609755187683516, "col6": "9104229668324434517", "col7": -18978.926, "col8": 1538129083.152786, "col9": 49186343729636745.231, "col10": -7234568807819447.144, "col11": "2023-06-14", "col12": "2023-11-09 00:22:59", "col13": "2023-01-15", "col14": "2023-07-14 13:08:52", "col15": "(~twE21C", "col16": "o?XB9l_e*+?3UZH_qGT7/r7F4~rr1$k%;eaEMa?r4@P@jk)6P>XxpFY2(q9iiV~fm7eEP5oN<#zlsw~wji"} {"col1": 441268110, "col2": 102, "col3": 13250, "col4": 1, "col5": 8597594907679023161, "col6": "5667613937641491367", "col7": 29102.045, "col8": -319989982.17985, "col9": -81087716870785483.143, "col10": -64800115883130558.550, "col11": "2023-06-02", "col12": "2023-10-04 21:25:45", "col13": "2023-03-03", "col14": "2023-09-23 07:27:31", "col15": "G-48d", "col16": ")EWS(!Qtciw`^3x;+Guc+;_oW?-LRLh;FnQfLL?ieRtZ$WJm?blsQn32p6O@$J%cjb%nZTC.6m>w;UI<%)EB+n"} {"col1": 577259683, "col2": 18, "col3": -13537, "col4": 0, "col5": 5778440245350381673, "col6": "1729667696812540134", "col7": -29986.787, "col8": 462696869.740925, "col9": -64242297078135876.710, "col10": -34110060920083841.600, "col11": "2022-12-13", "col12": "2022-11-11 00:41:32", "col13": "2023-04-20", "col14": "2023-10-19 18:35:25", "col15": "k)W4Wbt8", "col16": "F<0)FFx0Ay&wdY%rRE#>t4QOL(pTd^BOW8@~KBXCvXgQ@20mrzFPd", "col17": "-WOU+(8-*I<*-F;U.4MF&Y>n*xNAbLHf/l9K_BjIdK;0T-&J0$DumP_scfWr!tpPd@g=/fyD;C7vV8&j>F/AC^r5^,t+pid@P)&^=&?g`?*iJzsx4k=<<;aqi@a%f"} {"col1": 358052123, "col2": -20, "col3": -995, "col4": 1, "col5": 8462498483626768535, "col6": "-4579777337458835014", "col7": 5497.2812, "col8": -1675121192.209081, "col9": -55228000464087729.376, "col10": 54075338566731730.689, "col11": "2023-05-09", "col12": "2023-08-19 11:53:12", "col13": "2023-01-30", "col14": "2023-06-08 14:32:40", "col15": "z$8+gBbZ", "col16": "0;^hCNKLqx=)", "col17": "QH=1=ezdz`3u@IwXC~q.Hjo5Tch6LPfj_$nX>*saEQU.Oz(cL.rR*iuahbYnb*0C4*G0``Q^Nd0RPP$vhA&95q)X<(a.PfZ,H>GHG=LjhC9G.-8!X", "col17": ",DvFSRv&Ez!GJrEo1/;Nr,*Qm*_eV7S(CesYSTt3v_w>NRew~3h(IrQQ"} {"col1": 196725014, "col2": -24, "col3": -13427, "col4": 0, "col5": -7375318581248960057, "col6": "-2543965274523748861", "col7": 5780.991, "col8": -694770524.546083, "col9": -76123002210744723.992, "col10": -47697265631521692.335, "col11": "2023-04-24", "col12": "2023-01-08 11:35:37", "col13": "2022-11-13", "col14": "2022-12-03 12:55:19", "col15": "0KC+u_$>", "col16": "i@-@ASL*~~/iY)1+$rL)*DEk<Z%kd&Gc,s9FlWo!42P.yo_VO*Xewr$C@b?b8;/f-_7G=w^OX$m5#6*", "col17": "P+dMU%2GvWo=*+_U$#N871~QZ@pzc,~lLCYiY)~k"} {"col1": -688049528, "col2": -35, "col3": 4321, "col4": 0, "col5": 7245845458805220394, "col6": "3912116986726525719", "col7": 10877.681, "col8": -87511596.70815, "col9": 27431649310089463.872, "col10": 53000349361497028.867, "col11": "2022-12-14", "col12": "2023-09-10 09:56:23", "col13": "2023-04-04", "col14": "2023-01-17 18:35:42", "col15": null, "col16": "%fS1#RR47;vSRM%nZorS5_/xpu.@SM.~5klrRc)^e;dFK@N-bkA$(NAX&-0Vu1LrvZ.cBjSFfYwOKQy6C!qVPw;arKX&W>p/w-P-*ZxmrLy", "col17": "o7(4@cOp3=~p%l7+23)~Jf5vb$t@yCV@CfjrxEvB`iJT0q;-)XCuX#h/6dAOP$%0fH0deJ8%DNNeH$XZ^C!Q="} {"col1": -1474368615, "col2": -21, "col3": 5177, "col4": 1, "col5": 8174349037021096782, "col6": "2571804249862798292", "col7": 9933.032, "col8": -720750366.940295, "col9": -8590320354503227.221, "col10": -94099543687278644.814, "col11": "2023-03-03", "col12": "2023-07-11 13:00:08", "col13": "2023-03-29", "col14": "2023-01-22 03:42:30", "col15": "9gn!5C!BvEP", "col16": "X)1XT$`l2Lkr93E&?A?GWlurNp//;jSuTw>l6!?", "col17": "+<2ZMd=Xd0Q<2KT.%!K.Suj45?_lTHL3LptTpI^+(Kr8P6wx&(s8&"} {"col1": -1693846609, "col2": -73, "col3": 9118, "col4": 0, "col5": -2985094276774224395, "col6": "8805992256826989074", "col7": 6244.1, "col8": 1813143653.166, "col9": -62764692014561863.442, "col10": -38325067730370117.681, "col11": "2023-09-07", "col12": "2023-01-28 12:49:35", "col13": "2023-04-18", "col14": "2023-01-17 20:14:35", "col15": "d65uY.r", "col16": ")A>je?_.Gt<;n`w51eCBOWT-kR`1ASIA", "col17": "hQWT,ge>KGm#zleH67$,`Px&A`N*kPk.ZqkO!4SG~-x/9~x*+tmgjmK", "col17": "M=_wY3E`(,i21pX2tO=f;oHS6n5,1@LU+iPFypM2zE(+(>k6XxzUqU*OTtx#!P5k++x@p60GAA>D0deaeDV$@N0R5"} {"col1": 519727040, "col2": 80, "col3": 14429, "col4": 0, "col5": -617879460517437411, "col6": "-7165327641490392420", "col7": -13084.128, "col8": 1970316910.765143, "col9": -93976002804076259.534, "col10": -32558524385546329.363, "col11": "2022-11-13", "col12": "2023-02-16 09:07:20", "col13": "2023-07-28", "col14": "2023-01-08 22:38:58", "col15": "XsBMIBa^FI!d!", "col16": "pePuy7bPN&=l)?;@l6NJ7/V0Ukt1ubtmZMI$(d;ozN3!>1x2DDo>MRifl;4T8d`2_7R76B9&lePU^UK#$M`&ySGkb;)!x", "col17": "qY/@=?,a0!5EDHD"} {"col1": 564937758, "col2": -10, "col3": -19719, "col4": 1, "col5": 6205568508580489074, "col6": "-238554161903590528", "col7": -8137.3535, "col8": 1023623642.337226, "col9": -2362569962650581.821, "col10": -68775335337492456.403, "col11": "2023-08-28", "col12": "2022-12-13 09:02:24", "col13": "2022-12-14", "col14": "2023-10-02 15:42:07", "col15": null, "col16": "B)a?p0>L8kL", "col17": "zvS`nT$&kYjuqvx6SM0>h*lkl^`~s$^LmTQN~*B^qdyQF^`Ofh~L.GJ5@Bvc%X>akZfc$9Xeabk1FOw1fJI@9-U-V"} {"col1": 1914314437, "col2": 14, "col3": -3885, "col4": 0, "col5": 5289140208274800927, "col6": "5523134939016922802", "col7": -16044.735, "col8": -531461112.058018, "col9": 20859664695767945.768, "col10": -95844141490303829.980, "col11": "2023-05-12", "col12": "2023-08-10 20:49:23", "col13": "2023-03-12", "col14": "2023-04-03 10:12:58", "col15": "THW", "col16": "0L35Dot/95xSb1igaBQY#jCm&q%c/MQ(2(0-sufN>BmBlt-`^L4rN2hH6D&Xy1Z8kY$>t5Z(,h1i4l2gU8e", "col17": "w`)of^9_@N=DZsU##xMKBfYAdm`fd=7V"} {"col1": -1700382114, "col2": 115, "col3": -6204, "col4": 1, "col5": -4126342125777344756, "col6": "9054982454557719308", "col7": -19103.875, "col8": 2031018782.572868, "col9": -83553942298914702.482, "col10": 58591672291818154.504, "col11": "2022-12-12", "col12": "2023-09-28 14:22:44", "col13": "2023-03-03", "col14": "2023-06-25 13:19:15", "col15": "BV", "col16": ")jJv", "col17": "EL_I^2A-KD9P^n0VGfY.DapPaHP4b=3QCZXQ0-zW@Ke-", "col17": "LTl)O&FsU0<4mq5_a!VkB(dy"} {"col1": 293498095, "col2": -121, "col3": -25965, "col4": 0, "col5": -3576656064125326132, "col6": "-5657804083675264268", "col7": -30704.178, "col8": -904104728.103341, "col9": -3159432710175410.370, "col10": -45496500895008845.756, "col11": "2022-12-08", "col12": "2022-11-19 03:19:20", "col13": "2023-04-19", "col14": "2023-10-01 09:10:42", "col15": "M1/gn^", "col16": "3e3^nd>C*R&P-K`Q(/l#S@p#~VG6N8bakqb!6JOCPi>OKf@FyVx2v!E_GzXS&iI_rvtU3@nH~~jWu6@%4>", "col17": "ECpA8MXR9"} {"col1": 1891310032, "col2": -26, "col3": 26695, "col4": 0, "col5": -374125000529149443, "col6": "2171945590552452381", "col7": 1041.4928, "col8": 1273785834.848136, "col9": 97681462870233953.548, "col10": 80612975133223453.920, "col11": "2023-03-28", "col12": "2023-09-23 19:05:17", "col13": "2023-01-08", "col14": "2023-04-22 18:50:43", "col15": "EC><,k", "col16": "UuW2bFgOk", "col17": ".yuEbs~=_md6Q=p_rC#4rM5Fv>2;)`1?vo@o*OHlmw%w1yqWi&8heNZ?~8!C0qL"} {"col1": -741198949, "col2": -125, "col3": -19192, "col4": 1, "col5": 5676011356690276916, "col6": "-7208944717181851294", "col7": -16968.037, "col8": -172360599.036606, "col9": 11062817494936380.754, "col10": -20473655271393218.620, "col11": "2023-01-05", "col12": "2023-06-05 05:32:43", "col13": "2023-09-25", "col14": "2022-12-11 18:46:30", "col15": "uo*`,0x4WusV8", "col16": "YBjQda$7u07noHXpbBeAqy^0Z~K5eC*l7NE8r`O^-*K3H(Q3c1i1R%FZTC-#ol`8`.uTDxsBrtnv~^41TTL,f-#Nx=fx1)U3#;9K=osN(BCPa/VJP^yb=x-wC", "col17": "$Uo7qZ)*QOk#*nXua`~=qi4*+F-DcC+~)8y#C6+UzS;8wr%?omo(XHQ9$C;A)a1Aw%T", "col17": "hv6lk51=2%oZ~k?s?jbdcE92t;q^*11S5Gni&", "col17": "h%EzOW5YYzGlD+#n8sn"} {"col1": 20035609, "col2": 3, "col3": 15349, "col4": 0, "col5": -822097466612981862, "col6": "-8411765013373638349", "col7": 31527.754, "col8": -563702334.28447, "col9": -73307201008760924.624, "col10": 41041091789555799.240, "col11": "2022-11-28", "col12": "2023-06-13 08:38:26", "col13": "2023-09-11", "col14": "2023-02-24 05:04:10", "col15": "k<,$", "col16": "8KGA*R`O`xc4ahsU,OfQF8U+L-MYW81RD@q_vBkcCAU=~)%kzq>I419e", "col17": ">hq0RmfoN8GY1KhcX%8kSVgNepBIx=64zIC5w1cd2)@HTg"} {"col1": 681801015, "col2": 33, "col3": -3520, "col4": 1, "col5": 7366609877737053742, "col6": "-3161246756640427052", "col7": -30325.709, "col8": 305541624.015199, "col9": -68808724306427475.611, "col10": -27445248172763847.371, "col11": "2023-01-23", "col12": "2023-09-01 22:06:09", "col13": "2022-12-04", "col14": "2023-08-31 22:26:56", "col15": "9~jInZTijOl/T", "col16": "t,BiuEz/IOh;/5Hgs^*toL%e-"} {"col1": -763764922, "col2": 43, "col3": -23399, "col4": 1, "col5": 783989712103186350, "col6": "4083110528859476183", "col7": 23241.365, "col8": 1995148265.406853, "col9": 96770525970445251.550, "col10": -85979799906620535.713, "col11": "2023-09-25", "col12": "2023-06-07 09:35:00", "col13": "2023-07-19", "col14": "2023-02-04 03:54:25", "col15": "Z~$?K=)T", "col16": "%0Z7_jKvdtrLWiMO2&Q$>Jo<5zh`.sd0(YWT.~Q`-B/q7,up>lw5PAA+B?h~PAfqH1d", "col17": "^*Zk4=6jLr?;fmtbcE/?y5s$*_-bmXh#H_LT>ua>2H&Bv%#e7lKc@k-;^Aa7ukG/VI6TR227%h?LT+(_v", "col17": "6TIVHg^HUKpnL(vb%EUwGhk3;)"} {"col1": 1370312656, "col2": 41, "col3": 18715, "col4": 0, "col5": -3758233030181962206, "col6": "-8987717996655162408", "col7": -31457.508, "col8": -1708794275.366794, "col9": -94588829972275923.445, "col10": 3986165881623729.357, "col11": "2023-08-11", "col12": "2023-07-25 18:20:01", "col13": "2023-02-26", "col14": "2023-08-06 11:27:49", "col15": "@DS1", "col16": "T?bB7tU", "col17": "IiQ@J6tX~sm^jG.r&swNrVk1-2ONnvC5Ig(XkMI)X%@DxZbPkLG<84l_F0*kDbpId.dd@d%Tqv"} {"col1": -1169184786, "col2": 71, "col3": 31927, "col4": 1, "col5": 8390345726239927198, "col6": "-7481515861580930114", "col7": -11882.879, "col8": 1647353218.839473, "col9": -83496988101917566.310, "col10": 8002364419087947.937, "col11": "2023-04-16", "col12": "2023-09-18 23:39:33", "col13": "2023-11-07", "col14": "2023-10-27 03:02:59", "col15": "=P", "col16": "62_"} {"col1": -1095228497, "col2": -62, "col3": -14579, "col4": 1, "col5": 8678662247688949464, "col6": "2327812601777741478", "col7": -18123.812, "col8": 1567963893.234542, "col9": 9922994714498675.274, "col10": 23455293548273884.488, "col11": "2023-02-23", "col12": "2023-01-05 12:37:47", "col13": "2022-11-13", "col14": "2023-07-28 23:53:46", "col15": "r1(NqlNf", "col16": "T1xKVofKWBof,<%7t>C;wtY<>3mbn/epHN2=GxB+(/*nt3YK7TLM,I14_bD@ZXu-2zy#l0j", "col17": "i~kdqVPV(-mwwO)up8=0aV,p9SEseGq#>", "col17":"WI-..k#Ztk/XDZbyHnMP,7#J.8j2NyFqw,I-"} {"col1":204687839, "col2":-82, "col3":2252, "col4":1, "col5":-19971071040251667, "col6":"-4155088892121165336", "col7":26448.963, "col8":1770740365.125187, "col9":60792873952372289.901, "col10":-14030812497137925.948, "col11":"2023-06-19", "col12":"2023-08-19 11:39:08", "col13":"2023-10-15", "col14":"2023-06-11 10:49:52", "col15":"vWMgFZ!&iZ5(F", "col16":"oJ$;rW2^gQ#mTA", "col17":"kI0/~du#OW9hW!>uv9ivK*Z,0bFlR+)yqznNUvMZwN+gzX;Wd)yNl9_(Gw7M`,*>Jec2iCu#_"} {"col1":-2003600874, "col2":-69, "col3":-22655, "col4":1, "col5":-2569480559938805074, "col6":"1878064350493481255", "col7":3894.8906, "col8":789107031.013365, "col9":422711248962606.869, "col10":89317269874267004.107, "col11":"2023-02-09", "col12":"2023-08-23 01:13:38", "col13":"2023-05-13", "col14":"2023-09-19 05:36:43", "col15":"/EcG>MMvXu)m", "col16":"2__N+dyiBTMqik2gMX", "col17":"mgYMy@^eE%^&5bZhwi~d#~-?BVT-5(_sMr;j#d(^_ELknHw$kw-x0_4HuMb#uXZbJO_,_nUrH"} {"col1":65437020, "col2":-46, "col3":-12018, "col4":1, "col5":2862131367901130287, "col6":"-3532338074579255894", "col7":-29409.672, "col8":-989688444.043172, "col9":45161442099730151.250, "col10":55537833004458471.913, "col11":"2023-04-03", "col12":"2023-04-11 20:34:26", "col13":"2023-02-22", "col14":"2023-01-01 07:06:31", "col15":""} {"col1":574017729, "col2":1, "col3":7437, "col4":0, "col5":-9006050591013304373, "col6":"8641070966538487677", "col7":-28902.05, "col8":1681509274.217499, "col9":-88825566803058829.347, "col10":98533291755312883.350, "col11":"2023-04-15", "col12":"2023-01-06 06:23:32", "col13":"2023-02-12", "col14":"2023-03-28 03:17:07", "col15":"#>nWjJF$", "col16":"RM&jYf~KvhNyt1Y%=yobHgXQBmfNj%zcBZx0E3w=%Z1h!T9MCtKbAxgD/jVOMO$iG^H!tinX@XfqEx/h$", "col17":"JZK@m-4Zc0;O+*DLuxw?ESNcqN6GUEcz"} {"col1":1312246670, "col2":9, "col3":19994, "col4":0, "col5":-3267472655758334247, "col6":"8285340605613836903", "col7":-10209.022, "col8":211608658.602411, "col9":21651311306694744.296, "col10":37400988704917411.582, "col11":"2023-10-07", "col12":"2023-05-31 03:59:17", "col13":"2023-07-25", "col14":"2023-08-11 19:10:54", "col15":"@Ij5I_3gR(kWG", "col16":"_/wD", "col17":"GrMdg72&fV53(_q?ZbYGrDKMi3-#4H3pu(M=c6*(^NY2?u*VMh7fmUTB?eopFxET9uZ3?WH3,.VWQ2c_/78@"} {"col1":1683904273, "col2":114, "col3":-24879, "col4":1, "col5":8135300646736071863, "col6":"-533138965112586068", "col7":-4603.649, "col8":2137625112.86537, "col9":-63027635477510479.768, "col10":-51263852143163526.143, "col11":"2023-05-18", "col12":"2023-08-24 14:30:10", "col13":"2022-11-23", "col14":"2023-08-31 07:10:41", "col15":"?+wPp%X8bbj(^@", "col16":"`4>g*MM@EfHoKaK+cG~kyx+D>GG`/^wDc0z@V&310o71B2357$_;eZ@T*", "col17":"O$T=JM2a#e?o%F?BK^Y$#)AQEYQj-5%2BNDq)c`UAfE6Y<>588"} {"col1":643219270, "col2":-20, "col3":-8137, "col4":0, "col5":2552650640448880115, "col6":"4674768345935204778", "col7":-28442.773, "col8":611533148.902466, "col9":25998828839996242.461, "col10":-14673004593363430.607, "col11":"2023-02-18", "col12":"2022-12-30 07:38:54", "col13":"2023-05-17", "col14":"2022-11-29 16:40:22", "col15":"fG~#TwD", "col16":"#,yvT(MI%p~l%+Rc_TRAA76-ofG7gA,%1bp%kNmvo;)H=$iqi", "col17":"6np/u"} {"col1":-1060443009, "col2":-67, "col3":-22580, "col4":0, "col5":-4444031682962794134, "col6":"133763345107711635", "col7":18073.379, "col8":248387995.865393, "col9":62095529744555286.698, "col10":4044200079094191.880, "col11":"2022-12-12", "col12":"2023-05-27 09:33:57", "col13":"2023-03-01", "col14":"2023-05-29 17:39:04", "col15":"?riaicX", "col16":"rT_@BeZKwQk0TQx9C^POv(QR>Jqz2Ve?EyFm+TMYWh6j1Yu0hfBliCECY^b8)P^d*Jfh0kGqER?T", "col17":"Idver-_^5ceDdzdn^P/N.nRMSPuzCqczLSh?)bl^OcSH5?F@c;P$K_O?__RKb~8)`0WB5_YfUTZ>^pa;le^r2DwRjqbJs0T`DUd"} {"col1":169247257, "col2":84, "col3":6693, "col4":0, "col5":-3628860903341657653, "col6":"-5015295262109218606", "col7":24289.36, "col8":-52506094.523564, "col9":78795489215042230.357, "col10":-79644456932811905.834, "col11":"2023-05-02", "col12":"2023-05-02 06:48:52", "col13":"2023-04-26", "col14":"2023-09-08 16:18:26", "col15":"t_=Uk6Ck1zV2l($JF`Q/A5(Ev!gU_0?Q#2n&&qv,2pm+gnZoori_b.*#FF4#!O<-Fv", "col17":"_giXg)6;#0<=KzV->z4>QBYIa6L5q8GS%(GNeFb1&%LGKZ?=xYyJ+k_Muejd_8ZDM2+^t`+&m_0"} {"col1":560863439, "col2":-71, "col3":8799, "col4":1, "col5":-7959962633037749654, "col6":"-328732735937660903", "col7":-13256.823, "col8":831484450.670579, "col9":-87334457318899243.239, "col10":-8966873817392032.630, "col11":"2023-05-08", "col12":"2023-06-10 10:29:40", "col13":"2022-12-02", "col14":"2023-08-07 18:35:43", "col15":"Y", "col16":"g?CE?+WT`zvCP$U(EPr;8^W_4-Rd2Dm*pj;4qyAv#u@QWvaO~)0Q>H-8ooaCmcHrh@s`@^``(A", "col17":"C880^~j?1kcZRK$@2Aa$z4t$rD$"} {"col1":-515575452, "col2":-113, "col3":-24632, "col4":0, "col5":4872295739581785324, "col6":"1645563956122792580", "col7":-5648.7715, "col8":2119787276.246767, "col9":91142813279352061.648, "col10":-3227778190014385.836, "col11":"2023-01-13", "col12":"2023-03-19 11:17:52", "col13":"2022-12-01", "col14":"2023-05-08 05:34:55", "col15":"u,6RTgWApC", "col16":"c(0hRJGA@I,5qgH/`=>FRAaaM", "col17":"e8a-wH&;r>T>gz1YBDp%H29E5$o5Xkw,=Gz58o6/^t4pC9tMEa5A"} {"col1":-768191949, "col2":-22, "col3":-17958, "col4":1, "col5":-5474863816659413511, "col6":"146498896644460146", "col7":-21183.82, "col8":1533467928.404991, "col9":-65028045572118641.195, "col10":42087598282844182.564, "col11":"2022-12-23", "col12":"2023-09-06 09:40:11", "col13":"2023-02-15", "col14":"2022-12-27 19:12:20", "col15":"*&,-SB", "col16":"tx", "col17":"B,>hor25X%ti4J8Y*ubr@?g$k0PR#wijM1UKm.ZY%6j3FI*zLReOB`WelJW^R!R#sbE&U!>`YYOFj*~#044AP~$Drdp=Q!"} {"col1":172233591, "col2":8, "col3":15319, "col4":0, "col5":3502657102937957793, "col6":"3164146766365984227", "col7":-8501.518, "col8":-1750170652.325613, "col9":-52876700116535801.780, "col10":77104328550003023.320, "col11":"2023-03-04", "col12":"2023-03-25 14:23:39", "col13":"2023-07-03", "col14":"2023-08-20 15:49:48", "col15":"5;cjMtPH5QfVO", "col16":"c#8L6dxjJSv7lGKr*_ww$^$I?%R*yeDp5C&hag$Q`P^8*k#!h$2aNolj0K5Bh?2%^;jkEhMFKj.rUuY*t!<#XI$nREm!t=1z+37Yo/R@905Fz)^10lSFStbOi8v%,oF"} {"col1":1668695486, "col2":-16, "col3":51, "col4":1, "col5":-6120027227101236921, "col6":"8994890486569440069", "col7":26802.582, "col8":1225698961.52193, "col9":85050625432102244.886, "col10":-62310261336359009.669, "col11":"2022-12-14", "col12":"2023-04-13 03:12:00", "col13":"2023-03-23", "col14":"2022-12-14 09:54:32", "col15":"UzA", "col16":"eil`B#4$+D4Qt--!DL@`L&$~$PMBw/V68/Avv<1xCT?A7?", "col17":"rLlE^DR2Emn"} +\N {"col1":-509008921, "col2":-27, "col3":-19163, "col4":0, "col5":1475648713457927736, "col6":"-3481435156122641780", "col7":23285.066, "col8":-2144452069.906995, "col9":26047508322316631.756, "col10":-74200637210404703.320, "col11":"2023-09-21", "col12":"2022-12-12 11:02:45", "col13":"2022-12-16", "col14":"2023-07-16 16:34:15", "col15":"YzCfOL-b%e).22", "col16":"gDH/)T=N9P4tHV@D@0p6h?@r%IL7#@Y$8iKxy.N~yXA@AB", "col17":"D&0!+fZ3M;LV.b~ARixpYVvQ>;tQFfZ*_<8?htD3ioNsBPKh;DMF/%`4y4&7E9tukeAp="} {"col1":1151997700, "col2":103, "col3":23267, "col4":1, "col5":-927023899465062923, "col6":"2739819997184443753", "col7":10377.521, "col8":-1725387353.727131, "col9":-79830805627769803.173, "col10":-34194369851408639.927, "col11":"2023-05-11", "col12":"2023-08-15 22:24:05", "col13":"2023-05-23", "col14":"2023-01-29 05:46:47", "col15":"%#$tXx4(JB", "col16":"dNhPI+3c%MCS;n(&5Hcxz7", "col17":"%?q#H8=eNCXCPsC$+fQCXKsAXf,gWdTN*teRmiN)I_+btL_1n18)QlSC`fDR+/xBE/U#F.Zl>sE9yG0!l3_XF>by+xc5K-X%T1NSj0"} {"col1":1421596361, "col2":72, "col3":3920, "col4":0, "col5":-6118489479642225283, "col6":"7317635664738699657", "col7":7737.5767, "col8":2003407003.509362, "col9":39552514893473143.869, "col10":-42730566174026754.489, "col11":"2022-12-09", "col12":"2022-12-26 15:15:57", "col13":"2023-07-24", "col14":"2022-11-11 08:30:04", "col15":"&4/G3ObN440?", "col16":"~ZyffyDC`xmz5O7#F_lm>pWH$tE*kQP*D*$RcgLBeB6jm=WP/!58K=E-5#0T;i;js5<1?akyXQ=?J_cO,YaK.szT$^Jm/w*rK1h~9Bfm>"} {"col1":422243534, "col2":-41, "col3":-17148, "col4":0, "col5":507889730531854312, "col6":"-7687587853317523595", "col7":15600.064, "col8":-452506793.454084, "col9":-80779650241170514.708, "col10":66213669753600024.718, "col11":"2023-07-28", "col12":"2023-04-16 21:25:39", "col13":"2022-11-18", "col14":"2023-02-27 05:35:33", "col15":"t^Pb@l5", "col16":"6^fu$V49hN?sz+&Qbo6DhgfBIhPq=,,h49OudoMd9X4FCz8j+IBv%~r=NlP1,_sTPTDm1@%=7z92Y,fi6K_hR", "col17":"WY/;q*JBEBIsz^>tj6FmJXAi`;(;nPP(6=OP9qco7t(>gO_Jjvvff1!)nFF1Hp;b?RgkP&n2&($T47abJ#wfk=Q^UpwSmQ4rqMK,usfVhCtF-=3gtwF5z^.Qh*0U/41ZC@,N1K3RAWsmT*~q7Zg_q/mJ!_"} {"col1":-1964996452, "col2":-4, "col3":20556, "col4":0, "col5":8315246488290679100, "col6":"7572158780311200589", "col7":-18410.236, "col8":1606647238.822878, "col9":-89134765801837206.538, "col10":31618570701256890.422, "col11":"2023-04-19", "col12":"2023-07-11 14:23:28", "col13":"2022-12-01", "col14":"2023-02-24 11:13:04", "col15":"No*-^", "col16":".gI^(Xr=>A5)`Dm>nNB#0(ZYk%E^F7sH&rj`1yn$.>HtY?4lV4TGzOy5U.Mc", "col17":"FxB)jFhMjAY;B)Y?gx@yY>_7.o=mP))^&S49x478?%K9Y?!S..$tv03)Z4~(aw!!uJT8_eLY81$3iQSGwqZ;$TXw*5<@wXYGfkC7^pk1-hj!e>!eUjWjmEq&"} {"col1":227935475, "col2":71, "col3":11088, "col4":1, "col5":7650681200215890031, "col6":"4730937172673466965", "col7":-27321.963, "col8":1257272054.24069, "col9":14931750839744403.562, "col10":99429378055862630.805, "col11":"2023-05-29", "col12":"2023-06-08 11:18:03", "col13":"2023-03-28", "col14":"2023-10-01 22:39:24", "col15":"IY_-iuFqVlJ_", "col16":")G&*ByCK%g0a,K-@-.aYJUuXZdW($!,9Y_zve>J", "col17":"#~dH>lqOzrLT>#v&N`Wp~ok`@fBAo8gvhrrE2i7.Nk_,BVCdFjch4YWNcn!E50,c$K2"} {"col1":-217244015, "col2":-68, "col3":-22267, "col4":1, "col5":-1646866721402246441, "col6":"8084098841923390485", "col7":-14844.271, "col8":-1972311570.899041, "col9":-35753532293436342.172, "col10":-71646062497318666.824, "col11":"2023-07-19", "col12":"2022-11-27 08:58:04", "col13":"2023-01-17", "col14":"2023-06-03 13:25:35", "col15":"U;", "col16":"i7PaF53S%u9_J+McGv5E_4dT75dYYLBspxuB=SY*B5qyXO9lHMR_d?F,/+Q,_(*HIG+WJ8s?"} {"col1":1010916742, "col2":-11, "col3":-22359, "col4":0, "col5":2930583999829427139, "col6":"-7116265985222936851", "col7":-10714.571, "col8":-1680657480.454771, "col9":-99245732093918387.868, "col10":96449786654190081.563, "col11":"2023-10-29", "col12":"2023-02-17 12:53:10", "col13":"2022-12-01", "col14":"2023-06-24 18:12:02", "col15":"!", "col16":"BW(V->#Bx)#C6e5,*iquBz%3V.xQ-%cpxCV#gncLGoyW7/Uw!Ys3IPSF9)N8!y6Wi@gjPbHh%SL+;X9uiRCte$f7fr$XMarl#+YT`.Kc-%o4gwfus>H0>)1*#qfW,nES?.>@3.@jwVF`~gl,qY?f^ec_Ur,1N!Gyee;~zp+jDaXfsdr1_lfyNYjPOXJ"} {"col1":-1176341229, "col2":-59, "col3":-17596, "col4":0, "col5":5225706367147128291, "col6":"7482023791772342755", "col7":4907.7124, "col8":-69589660.206571, "col9":-74210811743941554.967, "col10":37134395679332766.718, "col11":"2023-07-17", "col12":"2023-10-25 12:45:07", "col13":"2023-06-10", "col14":"2023-08-03 05:37:13", "col15":"h", "col16":"WHu/qO7D", "col17":"(p"} {"col1":1419943662, "col2":78, "col3":-26881, "col4":1, "col5":-1935981815279221488, "col6":"515392747522788801", "col7":-10079.102, "col8":166391426.979885, "col9":-98837509190739959.541, "col10":-44427137572921229.590, "col11":"2023-03-24", "col12":"2023-07-10 01:00:19", "col13":"2023-04-22", "col14":"2023-10-14 14:30:44", "col15":"u`A<=p6c`B", "col16":".<&=zdb`tx~qLk!g#~oDZ^=yK)Hk2(>cFR0FS2_mC8A-?Rxb%z>oV,*W$WX>;(UJtBl4Je)g&DeY+BO^A=ezgQf", "col17":"rQfNcGI$nD5!`Q?e29e(gto_2DE/~4m~e;=X6p3E;%Gn%%,>9RPTU_g,qJxmagkp=ka*z4b"} {"col1":1267116125, "col2":-33, "col3":4031, "col4":0, "col5":4145604857134925353, "col6":"-224925331868005887", "col7":26411.283, "col8":1169746682.545244, "col9":8572034354541309.272, "col10":96151106049464759.806, "col11":"2023-07-21", "col12":"2022-12-25 01:03:54", "col13":"2023-02-04", "col14":"2023-09-19 00:51:48", "col15":"K>G*Dvh6A2xKWCX,bh>W*IBP^4?i;Ild6@^3cGh30L,a@-CP>lw8"} {"col1":-1508153295, "col2":-81, "col3":-19137, "col4":1, "col5":1077763455007258639, "col6":"-7549681434461673229", "col7":26029.754, "col8":-204288435.299404, "col9":-80133776891054495.450, "col10":1044641312148988.879, "col11":"2022-11-11", "col12":"2022-12-10 22:10:19", "col13":"2023-02-20", "col14":"2023-01-03 20:19:38", "col15":"oM9WX#5~", "col16":"^p7MMUb3O?gUp?g1E>o$Dn=90jm2XoqrJ1q!v&zuetA1N2c;G$+e", "col17":"i7.yWzza$F"} {"col1":-1957786302, "col2":111, "col3":687, "col4":1, "col5":-329175267162713131, "col6":"6644820929726960152", "col7":-4319.3433, "col8":1093662158.163057, "col9":-13018786555221977.392, "col10":43944835139524800.189, "col11":"2023-07-10", "col12":"2023-08-11 15:40:43", "col13":"2023-10-18", "col14":"2022-12-18 07:51:22", "col15":"Bgd~3Z(Q.Di?@6pZl", "col17":"wqT8f;XnYAhjl^(CLkB", "col16":null, "col17":"JAZkO+11LB>w=a~yJ.nY5QKew*AtYmM^8Ip;o-Dqzbe3Za%>"} {"col1":1434407077, "col2":44, "col3":-23990, "col4":1, "col5":7759166642335176493, "col6":"-339315168127929241", "col7":25013.748, "col8":-1897052142.267418, "col9":49827457190844264.800, "col10":85276312414130905.552, "col11":"2023-11-05", "col12":"2023-06-23 18:14:37", "col13":"2023-03-09", "col14":"2023-11-06 16:29:14", "col15":"o", "col16":"_R?KjiY>?Gv7vvg<1slZbu/W3yn/Ht-=yx;?`GcR.1aEPD?", "col17":"7Qh#O!OH9,o;aYe&JR,@J-tF/x7WzAAqlR=-B$H^G^QxP=lVN3dE"} {"col1":-2142436014, "col2":112, "col3":-13779, "col4":0, "col5":4376296518422862612, "col6":"-2788487280869040538", "col7":-10449.303, "col8":1911814619.522788, "col9":78399317344786522.440, "col10":-88978986475903265.183, "col11":"2023-08-11", "col12":"2023-01-05 06:39:04", "col13":"2023-05-29", "col14":"2023-09-10 00:13:54", "col15":null, "col16":"2cV.3m?&3f`dKPNwEz)Yzqv#7/RfPD>ie#R>M#6DeY!ESRi4x_WNWcq", "col17":"z#76kMJRT%,;)Q`)5PRypZ.BykX=RW>E74~CZX=659+yC"} {"col1":657834527, "col2":82, "col3":-32157, "col4":0, "col5":4672634700889493540, "col6":"-7582842389135920340", "col7":17082.41, "col8":-158467709.716171, "col9":-14184714635790844.455, "col10":-43596646954534245.626, "col11":"2023-10-06", "col12":"2023-06-17 11:50:02", "col13":"2023-03-25", "col14":"2023-05-22 16:49:23", "col15":"t", "col16":"f$Bgrye~#0ZZB_W=t0~h54X`eoZXPvY9h&,=4rKh@gLqIxI_~fHR!F2^Y*i#CY54j.,L.l3Kg6;z~0%HIPpvjC0oXT", "col17":"=.SJukh.@+ij0BWOJoXMba4F5rJkSj9Zb*kYgE0Nq2sJxB,vgG+jAMify4@)4JbBH~RMIZ*0KdXkJhSr45n3"} {"col1":1511945047, "col2":-69, "col3":19081, "col4":0, "col5":8771278776240250901, "col6":"1577044811093584542", "col7":29968.03, "col8":1155141123.389221, "col9":-39083065061490350.514, "col10":-19079192123719468.564, "col11":"2023-01-26", "col12":"2023-02-19 15:01:44", "col13":"2023-06-04", "col14":"2023-09-09 18:03:08", "col15":"&V1lDl64nyZ?#", "col16":"On+$X2e&dPz;LFV#tkO9!jFFu1UIcwP>pWjg>Q!KwD?GX", "col17":"Zi#Ld175.ld;.fB7GhWbxlk"} {"col1":610894160, "col2":65, "col3":1018, "col4":0, "col5":3605394011254706763, "col6":"-3478982256520993022", "col7":8121.156, "col8":1025591253.456631, "col9":81365968128401633.153, "col10":-81101382005088661.503, "col11":"2022-11-14", "col12":"2023-05-07 19:49:51", "col13":"2022-11-19", "col14":"2023-03-25 16:19:35", "col15":"ES)x=aMdIGmlT", "col16":"t/C$)nDCAK1yJ;^bJ7eE-LVy%cwb3jt49uCCq,PqOHwhk.T1yZW#O^JG@Fj8+?4z=7p", "col17":"1YCR$f%H_", "col17":"lzRPS/a8x_8pVZa$_P6,rb?g1da6/."} {"col1":-990480672, "col2":-55, "col3":-10708, "col4":0, "col5":-4935291170825143958, "col6":"3384694337473565906", "col7":9817.05, "col8":2122107422.283364, "col9":-90356948255074812.910, "col10":32770598240140924.717, "col11":"2023-08-20", "col12":"2023-07-09 22:23:54", "col13":"2023-08-09", "col14":"2023-09-26 06:41:52", "col15":"qc^eY8dd;w0&7", "col16":"znLeaJ~!L#rs2H", "col17":"Z;Xv,>li/Cyg2ZN,J;3&tzL#8udu=iHO,(Bu!N>wg6Apwd7tio6Ek@H@*rtZA$_T!p5lOfV##t.d)Z3JVd&@4k!X!l^K@aM@nt80Hb^/hW)r#-msijc,"} {"col1":555766812, "col2":-81, "col3":17557, "col4":0, "col5":-3341927921358411772, "col6":"-6165250980065362285", "col7":-18895.7, "col8":-337416378.21902, "col9":-69836366696538069.535, "col10":-53494446298127305.916, "col11":"2023-03-20", "col12":"2023-11-04 03:12:35", "col13":"2023-10-08", "col14":"2023-10-16 05:30:03", "col15":"uP5RPe0!2w%YCZ", "col16":"wzq8zoI?nNJS", "col17":"n3;)J0zIV7u~>)xl$xoA"} {"col1":1240578282, "col2":51, "col3":28317, "col4":0, "col5":-6967229457925271456, "col6":"5570408718636605614", "col7":21332.59, "col8":48729495.590622, "col9":59949626553560852.576, "col10":95363730377398985.351, "col11":"2022-12-25", "col12":"2023-07-31 20:54:14", "col13":"2023-03-18", "col14":"2023-03-14 19:47:27", "col15":"ng%W.dJucV", "col16":"OQ.&Yd0lS#=)cDLsZ$n69)T9Ap)#0&F5B5JqXeN/gBpYh"} {"col1":-202536028, "col2":102, "col3":22321, "col4":1, "col5":-4064308883480338960, "col6":"1299022891257543900", "col7":5586.1284, "col8":1073495949.461598, "col9":25815878476649991.271, "col10":-41099988391402435.149, "col11":"2023-03-20", "col12":"2023-06-26 06:43:55", "col13":"2023-10-18", "col14":"2023-09-27 10:38:15", "col15":null, "col16":"++0y0w_B1uU-_nX1_wtfQ2.*KL^iUm4KC^z%bExhd05", "col17":"H+-KLfu`v@L#;z%k%?,Ati97@N<#Yw1tCJ88BAMYmwr90o1N^82S6kbAK5mC>)@unAiSck9>3OcjAv-XUdMg)e~*@E5CiAbc?oIC-rsGoQ`0", "col17":"Em3@9nt^w=_Lw~0&%7-chkQKhUGqj.,tz>SoqN`,Jj@"} {"col1":-1944951577, "col2":82, "col3":9319, "col4":0, "col5":-6735411524378743936, "col6":"-3087230098102468185", "col7":21840.625, "col8":-339534084.734941, "col9":-60500672577753918.683, "col10":87018608768317029.549, "col11":"2022-12-31", "col12":"2022-11-22 19:12:11", "col13":"2023-02-07", "col14":"2023-08-07 16:57:54", "col15":"!", "col16":"b#Ng_Ogf`Lu-X.yz4QFNguvOf^R1*DW!YVilYEX4lY==z!`5<>=;X>o%ai`~6#IZyx+^WP?", "col17":"D72Q4Co~ta>yz1nErVUjhW`ZLHZpzzN*O=l?XJ.qW4720-*x(35xILFK,=#QtmS(39tTKPi7DvbSAUTy=53NVz1EiG>v;CrTZo"} {"col1":234114787, "col2":99, "col3":32123, "col4":1, "col5":-6965933224881843437, "col6":"-2028774596582884327", "col7":32596.664, "col8":1218403806.342796, "col9":-39226254369715538.282, "col10":62972701386517228.800, "col11":"2023-02-11", "col12":"2023-01-04 20:21:53", "col13":"2022-12-03", "col14":"2023-06-05 00:34:37", "col15":"L", "col16":"=chLu0;am8NT7v73+;.4.h4cPaJi&cgSIrO", "col17":"xr!Uw9#LWk#%E8Wd&PdjB>4;4Bg-x2dpnQWNBiz)84q;,-ST*"} {"col1":1713558477, "col2":-64, "col3":23299, "col4":1, "col5":-3655067400428113111, "col6":"-971001965512541678", "col7":-13785.417, "col8":-106881665.080796, "col9":29809265404205967.810, "col10":-29977477300742062.732, "col11":"2023-10-26", "col12":"2022-11-22 15:44:59", "col13":"2023-10-25", "col14":"2023-07-09 09:57:20", "col15":";YWl_wN7!/l", "col16":"DOevlkm/XO+IIhi~-3kR%%", "col17":"=6A95Lm9LX$(vxAboou%,NY4qk$sNc!+NKCeS8<#`7N^?"} {"col1":920373695, "col2":62, "col3":-13307, "col4":0, "col5":2315855827060133738, "col6":"2892134711552638253", "col7":-15204.923, "col8":7196941.716221, "col9":28960057270497525.509, "col10":55610225204972104.249, "col11":"2022-12-30", "col12":"2023-04-23 12:59:48", "col13":"2023-10-25", "col14":"2023-02-09 16:07:12", "col15":">Q5DGk#9z$z", "col16":"=q%,,02Vhx.!+vSpx7jL*L8m0EsQ>(NG43!n6_r~!x2g9BeKKj7$Cbr~R.xdF,OIoGt*", "col17":"X^EV@gll?znU~j78>)8%+3u#8Q!8;oO."} {"col1":-333781995, "col2":90, "col3":23250, "col4":1, "col5":-2400027152784178446, "col6":"-1279962128679669598", "col7":15358.365, "col8":-604161626.327051, "col9":24398441755883018.463, "col10":25132973924003857.266, "col11":"2023-04-19", "col12":"2023-05-08 13:25:29", "col13":"2023-03-08", "col14":"2023-01-30 02:39:49", "col15":"&q", "col16":"qUKk&`1I`o>.%THD?=E,;IcVHlaLwd+Hkbi@7Ji)+Ma8!AO1TicYo=+FBW=XT^EMV8*&8g4Jka/AxU*Q7+g./gXE~~Jmbbm.m/OM"} {"col1":-1606282538, "col2":11, "col3":-3615, "col4":1, "col5":756292685090331785, "col6":"5925846768287126056", "col7":7165.806, "col8":2004792133.709086, "col9":14151425806777272.721, "col10":82461381788038896.830, "col11":"2023-01-01", "col12":"2023-06-27 11:43:03", "col13":"2023-03-31", "col14":"2023-09-10 23:08:31", "col15":".%riu`", "col16":"A?sp9M^C6O.EEsXlXpRj$Azg=$0O1za&o_)DjyOzE++B+(.VwyvMsfTtr,C>OfS_?N/VEUXCX", "col17":"#b%h2%1rBH+<;Cj=Yq*(h0wYaB1p%S5Iqt9Q1"} {"col1":-301303501, "col2":-14, "col3":20978, "col4":0, "col5":3071911585008707334, "col6":"610247436068778006", "col7":-9658.79, "col8":454069105.89132, "col9":27771028156388318.185, "col10":78744669615573568.773, "col11":"2022-11-21", "col12":"2023-02-14 12:01:45", "col13":"2022-11-16", "col14":"2023-08-30 11:55:29", "col15":"eJ", "col16":"Q,7IORo3!>P9HFUCaHT1WUobo*$bZp(Y+9wz.#3Z60;;W~`yRh*)-tR<@gO4K~;GR1j?t-2~O20jpZET0bZTPY>$Ho!Rw0AiVX2kHSmf2>I)!ft=_%e-XyPt1bi6*sTgvE@wN0#G7K"} {"col1":-1936211661, "col2":-122, "col3":-23211, "col4":0, "col5":-5540740830240461096, "col6":"7009626545118772440", "col7":-16446.195, "col8":-775937464.459849, "col9":-61698507725639460.885, "col10":3879413632663669.319, "col11":"2023-03-30", "col12":"2023-05-04 08:56:03", "col13":"2023-08-26", "col14":"2023-03-15 05:45:03", "col15":"Ou8r#Ddwir,w#", "col16":"X815bcqKInnc+vjvzfrzVzN=Ip+yX9V+S&Wh=u%O;*PrNG~`E~9rxnHn.0<44PPjWz", "col17":"Nd&Ej;;G.CBSk5*3SoL4H@Z4_TzuSMzd3j@Px46sR"} {"col1":-1926966604, "col2":-18, "col3":24791, "col4":0, "col5":2921317845794227618, "col6":"8114429751870216975", "col7":-9627.225, "col8":1055221307.44863, "col9":-20442685919602826.571, "col10":56210848181278655.146, "col11":"2023-07-27", "col12":"2023-07-10 17:02:57", "col13":"2023-02-15", "col14":"2022-11-29 13:51:37", "col15":"!", "col16":"Ke", "col17":"v+rxDv>5n#zPr1nPn8~ianE_-o7P!HT!~AK~)G>;cgWAJ7?eQ,I"} {"col1":348414278, "col2":-112, "col3":10967, "col4":0, "col5":22875989281754084, "col6":"-308924971579099934", "col7":8971.96, "col8":1595999005.478195, "col9":-45770313571158668.125, "col10":12503300784959910.525, "col11":"2023-01-28", "col12":"2023-06-17 15:24:52", "col13":"2023-02-14", "col14":"2023-05-24 14:28:24", "col15":"Mx8+(-4K7Ub8k6u1auF5y9C;)-&;OUD/hE*1Q(_t5#CVNESc^k!&/zCnuT47sEq>tIO/iTM;YxQmeehnT^K62~w*&dzbl`7!FnCu%k(QT"} {"col1":1689276863, "col2":31, "col3":-27488, "col4":1, "col5":1413705707860766508, "col6":"8626885641484079374", "col7":10747.075, "col8":-1725385712.668506, "col9":-43030410959042437.577, "col10":65351213011512347.235, "col11":"2023-10-23", "col12":"2023-04-26 16:07:51", "col13":"2023-06-05", "col14":"2023-02-10 08:04:51", "col15":"b4SAoee", "col16":null, "col17":"$RiRQdW-Z0!`bZGKj4hXyZCtU$Td9qVkG;(P;pC$ZTbD?TV4J,j0RQkaLFK>!7-;za"} {"col1":1307588401, "col2":118, "col3":-230, "col4":0, "col5":-9003147224024323648, "col6":"-2834821371169576495", "col7":-23682.217, "col8":-1057477971.37014, "col9":7442718637323324.671, "col10":23979138129054233.376, "col11":"2023-01-10", "col12":"2023-09-26 16:46:28", "col13":"2023-02-26", "col14":"2023-04-28 23:21:07", "col15":"z>5$heX.naO9", "col16":"Q6CwRV&x4(5?)IN4W=A1Km%ij.seM~;iG#n(=e@8@0F6fh6al/)yy`_IkCE1-e)", "col17":"$XUvhrW.53YNg<$auhwq`/.kX&t+QCVq"} +\N {"col1":286636, "col2":40, "col3":12531, "col4":0, "col5":-2314336941027611643, "col6":"325716261438789569", "col7":32479.145, "col8":-1658974100.936647, "col9":11853795084347828.361, "col10":62514140879293637.625, "col11":"2023-06-08", "col12":"2023-04-11 04:47:26", "col13":"2023-07-19", "col14":"2023-03-24 14:29:58", "col15":"CE/$ty", "col16":"h~JCUN)yt_PIz%X8ZZhwvPgx`GjEU9sb2`Yt$uc~=STGn6a*.OaG>/svCkKbLb*g&XEh5pNN@zux@"} {"col1":1761523268, "col2":111, "col3":19405, "col4":0, "col5":-1410410496357211184, "col6":"-8199224635820068032", "col7":22934.434, "col8":627538448.05242, "col9":-45064148478173929.176, "col10":73410053241837519.345, "col11":"2023-04-29", "col12":"2023-06-22 10:49:00", "col13":"2023-03-05", "col14":"2023-05-31 15:44:41", "col15":"", "col17":"(dfQv~g1NTfr27mribQ"} {"col1":1772566035, "col2":-63, "col3":-29273, "col4":0, "col5":8745264170466134585, "col6":"-5506842273306313157", "col7":3759.1814, "col8":-1452285594.876885, "col9":-60197265634701597.901, "col10":-95081102937771943.624, "col11":"2023-03-02", "col12":"2023-03-12 04:22:55", "col13":"2023-05-31", "col14":"2023-11-01 09:54:42", "col15":"TT1.q1I67`kl", "col16":"Ps", "col17":"FVv20/F-=ByPeQ3nF+?(_^#_iPrS+u1_ZHJ`zi83m#+b(@Y=(q^F/L9"} {"col1":114127467, "col2":87, "col3":793, "col4":1, "col5":-428535361954066498, "col6":"4697713311229287983", "col7":-6481.3823, "col8":-1924904573.8708, "col9":45709405300291925.157, "col10":1577321435926722.138, "col11":"2023-11-09", "col12":"2023-03-25 02:19:32", "col13":"2023-07-28", "col14":"2023-01-19 02:23:09", "col15":"f2-`M54d(eOQ#", "col16":"XxP&n&hF*/h==ul)5~?jC%uziFEl=/7>5rm+`lt5$+hAAWdD", "col17":"ws@.x^hDAc0g(PQ@~tZ2Ga.+J6TGTIjAO#+eKcYwKL2NB<,w*BqwNo$hY;/>h(b3RID%fyKbTH5#U*q-WDDS9lb6(^R~SzsZKs"} {"col1":-1891520405, "col2":124, "col3":8855, "col4":1, "col5":-913657545924566585, "col6":"-1536770753715164108", "col7":6998.9185, "col8":511030433.623111, "col9":-10830494740800769.178, "col10":78391274234937148.959, "col11":"2023-08-06", "col12":"2023-02-22 13:11:30", "col13":"2023-09-24", "col14":"2023-06-13 20:30:12", "col15":"k", "col16":"wvdkyd*9nP1", "col17":"A5J)3lWuThPKL`H=o-b6Mj#/JsG?^47VpsM&h7<6Tg&1hR92WWv13)d5N6q)g2i_j_1Gl3_On+&Kb#hZa1"} {"col1":1975678310, "col2":-78, "col3":20283, "col4":1, "col5":-6645481965792488411, "col6":"1567102139313612320", "col7":-23824.113, "col8":1658568100.136103, "col9":-80600254825061679.751, "col10":30197107892252230.108, "col11":"2023-01-27", "col12":"2022-11-13 04:42:17", "col13":"2023-06-19", "col14":"2023-04-12 01:20:33", "col15":",+4NzIq2dl5", "col16":"4!CcT;-T3C6+fTB&clJ/Z,uK>GVqB4LEN^5sR2LWIp90nUH)ta7T`", "col17":"y2r6_*;YvqS=IF<9pNoVm6fWbjV!eGlcRP1kI<-*tzIqC~5ea", "col17":"!707G-OCekwr2^P<;JAAaPC0fUC", "col16":"kD*64pf#WguZnpBe(Z>V+G@#K/sFJL^4vU7W.JNgDAqxOi/!!W8^a~_D/vTChag3", "col17":"rrg45ezp?`&=7Ize#JggS2c=>75nio3VWl#3*H%,4XrJC<;cfm@K.49"} {"col1":-2088545982, "col2":-34, "col3":31082, "col4":1, "col5":5811404451403597720, "col6":"7826096519969022070", "col7":30825.854, "col8":404659070.586117, "col9":-58291318173774590.227, "col10":87552520044200423.105, "col11":"2023-02-28", "col12":"2023-01-04 03:21:34", "col13":"2023-06-24", "col14":"2023-03-23 07:03:33", "col15":"$@w#", "col16":"9J!>TQzsZ#;VhcTeu)ZBd-WA3s~_!GNrn)Vc(=)u9$!YVz3vCpZ2Z6TjqHC", "col17":"GY(Kq`"} {"col1":-643943399, "col2":97, "col3":10260, "col4":1, "col5":6000646543942719109, "col6":"-5870128463593245825", "col7":-31959.92, "col8":766947397.493618, "col9":-35062983341828929.800, "col10":93064025838296084.345, "col11":"2022-11-22", "col12":"2023-01-04 20:49:57", "col13":"2023-05-09", "col14":"2023-06-05 15:33:04", "col15":"8H", "col16":"_$(l`W;6F6_IxAj~ZsfguZ,XK9pj8wBTA5hC7U54VDIror*I.ESU7", "col17":"n8S)_m=GNx7@DO_GLnsb/0Mx(gT&fw", "col17":"y3,LMyGp9+UXUdjv;rVb6nVkXfB#Pkjqs"} {"col1":934345248, "col2":23, "col3":-23564, "col4":1, "col5":-8266523705337718865, "col6":"4786905438011282083", "col7":6888.2563, "col8":1792227006.464728, "col9":35418424816196567.740, "col10":-51218829150912924.968, "col11":"2023-03-30", "col12":"2023-05-06 04:14:15", "col13":"2023-03-06", "col14":"2023-08-07 03:43:52", "col15":"WH6,qomN`D", "col16":"3*LN))ex+zT$/t#5/>,EGIOtXnI94.r8wP7-Yjzn_8OX99Q^XG&&_f/ae_wLIu", "col17":"VB)l`ohAY^ccC,.`1o--&0xv#8%l_0L6I,7ab,jvuDQ.@Qqtq!$uI.LAlqZmnFOw#c*%)g&5-"} +\N {"col1":362462240, "col2":107, "col3":-19403, "col4":1, "col5":-2086043196257155238, "col6":"3865964499005646003", "col7":22711.371, "col8":725299699.801546, "col9":-45387828698461027.545, "col10":43814986570507758.100, "col11":"2023-05-20", "col12":"2023-10-22 07:46:07", "col13":"2023-03-22", "col14":"2023-07-09 20:48:12", "col15":")k4IDm>W@", "col16":"z<@LtFP9F@LS5^I", "col17":"U36Y)13J7a*y+5uRC&I?qKH#nYN2GZBPEzSf`h33_z4GklvW,mMBgNO=94*&A"} {"col1":1687785038, "col2":-107, "col3":-9903, "col4":0, "col5":-1284597074098258744, "col6":"4255739912045331949", "col7":3686.9778, "col8":-686626859.048087, "col9":93576326533596209.242, "col10":-72503896890548707.722, "col11":"2023-01-10", "col12":"2023-07-21 18:04:27", "col13":"2023-05-30", "col14":"2023-05-08 04:56:30", "col15":"Z!BV;CtgPYdP", "col16":"7EwD#)uY4kkdr6-JD^jLW4XhFkD9w=%A&_4o*?", "col17":"69f,q-^KD2(#<145hA)(g3fSQ(_>D2R13_8)n+ycz)<#k"} {"col1":2096768982, "col2":-34, "col3":29058, "col4":0, "col5":-6549673997206638743, "col6":"6127489394831520395", "col7":-17730.66, "col8":1478347723.502807, "col9":-50631199631210331.799, "col10":11089858765247247.904, "col11":"2023-05-18", "col12":"2023-06-16 01:16:33", "col13":"2023-11-04", "col14":"2023-06-14 17:34:35", "col15":"~Uut", "col16":".H@eCx23Fn85`ok4Tj*u7V,/M,5p4HouKmH;6fu,4W)E9>NsP_@e3P+vv%xIQ)AP^hAQg&FA2FqsFFe7dLgQNALodq", "col17":"7ZjfxOe+l@x^+"} {"col1":1771065349, "col2":53, "col3":7046, "col4":0, "col5":6486422408055459438, "col6":"1553889049848122326", "col7":-10102.512, "col8":-1378044883.486697, "col9":51706531060270979.396, "col10":26168096158080868.665, "col11":"2023-02-25", "col12":"2022-11-18 08:32:06", "col13":"2023-02-24", "col14":"2023-08-29 04:21:41", "col15":"9-hq2", "col16":"9I4SmYLtT=`kF9X!#~D?rOvzq#cCD", "col17":"ANjFd42e3"} {"col1":-1588160227, "col2":-116, "col3":13817, "col4":1, "col5":-4296149395358621914, "col6":"-6836906242783581735", "col7":29637.39, "col8":-75798249.092423, "col9":2497472774459503.589, "col10":-90761335260520957.241, "col11":"2023-02-11", "col12":"2022-11-26 12:43:50", "col13":"2023-07-10", "col14":"2023-05-21 14:25:20", "col15":"O1b(iK", "col16":"ukoKp~~$~9<%6_g3$Jj,yK2.)v-D!>M%-", "col17":"hT#S6BGS)6GZSirhv=hVbs_IYNG%3!Zw5nqF._^J"} {"col1":-1036552242, "col2":-86, "col3":23770, "col4":1, "col5":405167630719134959, "col6":"-211756583294689265", "col7":22159.436, "col8":-1295725525.582972, "col9":-83614908689396406.993, "col10":-50555993612523832.443, "col11":"2023-06-19", "col12":"2023-10-23 07:29:43", "col13":"2023-05-06", "col14":"2023-02-19 23:07:21", "col15":"1r&)dE", "col16":"!7fZGY.4yft+4q@uam)~!H&_`5ea<%2,Gw#EPr*SVeCz$>RWC$kLrJaROE?u", "col17":"61)Y^Gi@H/vx.?QSZjJC"} {"col1":889243397, "col2":-69, "col3":-4674, "col4":0, "col5":-1919184636690999337, "col6":"-1912156216644268562", "col7":-22623.336, "col8":1382859654.868149, "col9":-1497126140853661.537, "col10":9109805582223006.744, "col11":"2023-06-13", "col12":"2023-02-26 05:53:39", "col13":"2023-09-03", "col14":"2023-04-30 03:56:33", "col15":"f", "col16":"9Wzh`Xb2c^mv!g161uS`F=-al@N<$R;?)`Ol5zHM-tUk%!qVQlum.m@5W1GAn1;9DC8npQ$h1)_3", "col17":"H>A)>>0XsnZi4V=aF-G-W(Z?^9G8ahRy^Nh=Y!xBTr_f736El3_G(VREI@L&0J)YYA=RheQ?YKQj9H2YM&&71d11LL6yhXR?463%1!zKtG-"} {"col1":-1291944714, "col2":106, "col3":-1048, "col4":0, "col5":-8233818128720950805, "col6":"6417417188254389423", "col7":-7141.208, "col8":-713810670.066522, "col9":-72223604538769031.332, "col10":28938197253502224.607, "col11":"2023-04-08", "col12":"2023-04-09 05:23:36", "col13":"2023-04-04", "col14":"2023-08-16 08:34:49", "col15":"s,c", "col16":"TW0efT%7IM6V)&^hrAVlUS~%50=tex%nJBWePivPA)4Qsfu)zM8/UJ_zfDD;T<8rxR7!V;wGbqxU?yxp%~^&Bba", "col17":"uoaP0W6%IpkkjcVzz+<&IOCHGeoKPu!M.4bFEFL=~(++^y12ISswkzkulyjB(~OR02b"} {"col1":-1249441565, "col2":91, "col3":12027, "col4":1, "col5":4065635472874095639, "col6":"-2376945415387094371", "col7":-14409.862, "col8":-1239902270.695204, "col9":-33646059432117784.248, "col10":-71716101260479540.163, "col11":"2022-11-28", "col12":"2023-06-06 13:27:35", "col13":"2023-11-06", "col14":"2023-10-17 13:06:14", "col15":"4<=DZ&OB=H", "col16":"tFT`X-cR+.z4tR&g1uGeqh1ql)C=U>9e(@xzn5cpS", "col17":"hp23=Xb%?=b&^3%Gnv%%FrWBX#&tvz!v6+EDl&>eRz_jnOz)rzLz"} {"col1":-1536145286, "col2":-38, "col3":28552, "col4":1, "col5":9083537221448637629, "col6":"2089265029844927384", "col7":-7274.4077, "col8":-428636344.093785, "col9":73589132532644102.675, "col10":-5938584116809747.553, "col11":"2023-07-13", "col12":"2023-01-11 08:36:36", "col13":"2023-08-25", "col14":"2023-09-01 15:52:29", "col15":"6hv;P#K*wfy`", "col16":"yRDRHc(SP7Vzoil!N3SV?H)eEB=PBj,(-&LQ(tsFjbNE?_Ha)4Hs_gTYZ4&(-Ti;", "col17":"ZdiW>jg3r*ruRbigVg,E^k#MtX%lT-.,<5Y-L7&PbWcq,h+=`8f*Xpw1$-#*>POeYJ=M!o"} {"col1":167169924, "col2":4, "col3":14674, "col4":1, "col5":2347843046354796458, "col6":"-696172936130542592", "col7":22341.732, "col8":979533389.734254, "col9":60968044483849204.353, "col10":30200553599060726.618, "col11":"2023-06-20", "col12":"2023-03-28 05:02:57", "col13":"2023-01-24", "col14":"2023-10-29 11:40:58", "col15":"AQe^", "col16":"CF%eqVbnb1c4`e(K!`n!Muj4BxT89", "col17":"x8(m?F*e&V,Igt8=5#1R(lzS~j@Hn^,LC-vZjlE)LtC^rqLsrW~f^?U/Xn`ZVf&I&oW=y-%leuuda%dLq;e9X+XWw8-NY`3OA$q", "col17":"4pw!lM=U;Z,fQc$"} {"col1":-1657087814, "col2":1, "col3":-26359, "col4":1, "col5":-2371384929867156666, "col6":"3775942651477303585", "col7":-21169.385, "col8":-845820801.63316, "col9":47918734590593217.759, "col10":74462264410504498.159, "col11":"2022-11-27", "col12":"2023-06-21 22:32:17", "col13":"2023-09-10", "col14":"2023-03-06 22:21:45", "col15":"#MQXBt27fOy-84QpDJi.%0X5sSk/*kuk$?)+;>*Q.e=5PkF<1Q>IOPO2^?=?/~Fucgbrn", "col17":"rBFXfu>!KM!+Mu~iH"} +\N {"col1":47817694, "col2":-23, "col3":17759, "col4":0, "col5":-2592767188593682012, "col6":"-1917916342557241438", "col7":19111.617, "col8":-1045747727.139381, "col9":-77856575383144612.699, "col10":-86130057040674962.742, "col11":"2023-08-21", "col12":"2023-06-02 13:59:25", "col13":"2023-03-29", "col14":"2023-01-05 23:55:07", "col15":"-r(1D", "col16":"8pQW;fR8tUWwoIA_rM;pR(F%*P/2?gPI/Vwti^5B`Ytx)!s#PtUyNKL+O,hYq)+dY8jzQvVF/5>", "col17":"r*gsVKh,uy`^e!W^&4hSjCO+3;yC0^8K-CO1~Da+phd2rWd8L~1S&QGH.O66)5?H+!aV=1%eY5"} {"col1":-26249996, "col2":61, "col3":18052, "col4":1, "col5":-361005233824192772, "col6":"-1351496023545458172", "col7":2805.9014, "col8":-737538715.989399, "col9":90422987849359214.754, "col10":66747731473323379.835, "col11":"2023-07-26", "col12":"2023-07-17 10:28:21", "col13":"2023-03-27", "col14":"2023-03-07 15:03:53", "col15":"dodMKqi>N7k%v$", "col16":"iPB", "col17":"UPfh25?E6Pfpf3EogN9ujIiak*x@OG<0il6+EE19k-lPEZJac=C@Qj-"} {"col1":-1520622638, "col2":-90, "col3":11515, "col4":0, "col5":-4009716856944176555, "col6":"-4763301688224260064", "col7":6702.3447, "col8":798392384.256083, "col9":75665032011082251.451, "col10":34201762262152502.147, "col11":"2023-05-11", "col12":"2023-05-31 22:45:15", "col13":"2023-10-09", "col14":"2023-10-10 02:53:02", "col15":"yPS&?m", "col16":"cNeMO$(mORdi#0f>bnGNcIYxb7eT(jlq4g#>nYBGt1`e>"} {"col1":-1943129515, "col2":50, "col3":11579, "col4":0, "col5":2799362801208622844, "col6":"-1948899835302220937", "col7":3235.7126, "col8":206154929.5756, "col9":22606996553063829.342, "col10":-65714174487506859.315, "col11":"2023-03-04", "col12":"2023-08-13 10:24:14", "col13":"2023-03-19", "col14":"2023-03-16 14:59:46", "col15":"^e", "col16":"9c0WW2wSr%)FqeU/CuGIl/Kgz`UFTQ/0d`.O0wzY`39^p4Z,;v-xaQJ3)Vvla9~04~NUXl$^lId/9P/GtCe9;z1SOC&2z-", "col17":"F6M+_Pc0iJw;.M5GyC/)&U=&"} {"col1":366784492, "col2":-91, "col3":5343, "col4":0, "col5":285484482479435330, "col6":"4401895463845494554", "col7":23758.332, "col8":-325384021.555593, "col9":-50455152503318203.449, "col10":65244455548239672.160, "col11":"2023-01-19", "col12":"2022-12-18 07:17:46", "col13":"2023-02-03", "col14":"2022-11-14 11:48:04", "col15":null, "col16":"cdyVRDf*>%*RPqOgpEg%Ti6FIZ)V(WrjX_eHWl7dPX0z5dhLKbA9+GuZ0I!gf*/T!S_/c#7NR&MAH#Tk2UN", "col17":"Rs*$@~;A%US+wC1Cq8enU!L4N=_/dHrhUN+d>oIw8i9Qqz&rW0E"} {"col1":1177567574, "col2":-126, "col3":-4059, "col4":1, "col5":4286979026530110942, "col6":"-6963589946162575091", "col7":-565.9203, "col8":182212496.114089, "col9":81434412723303110.327, "col10":40581272774311981.379, "col11":"2023-10-14", "col12":"2023-08-22 19:58:50", "col13":"2023-11-09", "col14":"2023-09-22 01:29:02", "col15":"OdnKqKet", "col16":")BiuAN,,3H,u0xos-HqTGcro3J_6BV9Ev3bA_i@C?82Cw-j!!4Rp^Bpg", "col17":"LP8;=d$^WX3x+F1fb_Dev+AlYyvT1(DEFRa0Y.H0hot&Y1)/e6Qk0Do0^`wJ"} {"col1":252819544, "col2":6, "col3":-5693, "col4":1, "col5":-3871447155054953032, "col6":"-1891127181338244549", "col7":1470.908, "col8":-396385857.38936, "col9":77121196514062171.380, "col10":-76861447925560213.478, "col11":"2023-05-30", "col12":"2023-04-28 02:28:30", "col13":"2023-04-27", "col14":"2022-12-19 21:16:15", "col15":"X;iF^sn9dndWoEb&;<1#~JU+gL)W1p3vyVUraPXmm=88Ea5i0OCx;3.a6=ky?"} {"col1":576136288, "col2":-75, "col3":7643, "col4":1, "col5":5799786671761075428, "col6":"916707314575044419", "col7":-22797.441, "col8":-2139432915.195112, "col9":53906879174554699.108, "col10":43663435803801309.118, "col11":"2023-05-31", "col12":"2022-12-15 05:07:26", "col13":"2023-03-20", "col14":"2022-12-25 06:16:53", "col15":"!WE8H#N7Z@CQx", "col16":"FJ$3E,G9N*wOeHzbml;@L&)sSx?/jB>tWXVlJmsdPsE@GG^A1!kD,~h?Q*SFN", "col17":";_4o!co`.YXY,.b3sK+1rT%IVr7u1cy7%)B(x"} {"col1":-1883971659, "col2":99, "col3":10543, "col4":1, "col5":-6728365874054023417, "col6":"-2328573775928406762", "col7":-2735.7705, "col8":-470549814.163389, "col9":-24454876926389819.379, "col10":16483429508200308.120, "col11":"2023-01-20", "col12":"2023-01-27 05:31:49", "col13":"2023-09-22", "col14":"2023-09-10 20:55:16", "col15":"d!jdHwSL", "col16":"RXES-4ZoVQUghRY~#kZ-IeUJ^oe=,(", "col17":";!h>V5Aqh@+TnG~EDzP*Bs0_AgZg^7SO3h9v12X!>enKhKmJl#)4q%>j<.?jS/t", "col17":".5#MUXb1Cv?3>bHw0a#MV!vr3%"} {"col1":-2030375227, "col2":54, "col3":4384, "col4":0, "col5":-7125092162125811206, "col6":"-4232776774567000152", "col7":26837.652, "col8":1917723626.45192, "col9":-15896016299014652.442, "col10":-68084327262626945.294, "col11":"2023-10-13", "col12":"2023-10-30 01:46:52", "col13":"2023-09-27", "col14":"2023-01-06 04:24:47", "col15":"FArbkY", "col16":"V;_5p", "col17":"z=wz%nr+n-,)/Vi#u!)M%Y,UhL)0mo=OLh;f$6x/6O&ut_H2W3)q(tATkEHSkB6cd-m"} {"col1":1369414688, "col2":12, "col3":7964, "col4":0, "col5":1428861763881105022, "col6":"2927268561583567702", "col7":25576.006, "col8":-484934950.126092, "col9":-80396552750778333.144, "col10":65920321358287276.326, "col11":"2022-11-25", "col12":"2023-07-29 20:42:00", "col13":"2023-01-11", "col14":"2023-04-27 17:19:01", "col15":"-x,", "col16":"5w*P!Z;H+vrmxXzH?TCeoWWR.t3A35^B6Tp9rP`+@yFD9o1hF+qj(_U6Ml7<2sGhz+<>ooD,ag,^Ob8R2#*99?w2E3)F&B>HZ`I", "col17":"cZ/Hd;c*lG#Ri`&u*(C"} {"col1":1800931837, "col2":53, "col3":-6430, "col4":1, "col5":-6410417525054536956, "col6":"668753896008119484", "col7":3743.2031, "col8":-1177072535.248117, "col9":-47987051810775598.276, "col10":39810223410294879.600, "col11":"2022-11-29", "col12":"2023-07-06 14:49:35", "col13":"2023-04-30", "col14":"2023-10-13 17:48:58", "col15":"Wea/KX", "col16":"OLc,m^(MTIfxn.%l29uZ?+(eC5szoGE~,+xv_GsR!bOPfrTUKWLpTKky6d`,wh&azAS!+q9xqm9LB2R", "col17":"w=LWqr~KT)La5/sN+CtM>265=,"} +-8903033418165608020 {"col1":-1174247920, "col2":36, "col3":-22731, "col4":0, "col5":7899564070391978274, "col6":"699172697713213350", "col7":-4668.7007, "col8":-615162117.884674, "col9":-68837064230431691.639, "col10":70891119436876294.790, "col11":"2023-11-10", "col12":"2023-01-30 02:08:18", "col13":"2023-03-27", "col14":"2023-08-16 16:00:27", "col15":"hCET~vllh5Nl$KVatwNIEs.fwG07haAK-w8kg>QA9*Q&Cq=rd5J=iOj,4b6T`YNn$!ToQlF/R-8~9-sE?mcNekAWsxWhyy="} {"col1":1976188027, "col2":39, "col3":-20199, "col4":1, "col5":54838796530721045, "col6":"-4199157709856370965", "col7":-20633.107, "col8":-1314405206.528385, "col9":-17838244458606850.919, "col10":13993039380882130.769, "col11":"2023-04-28", "col12":"2023-07-21 06:48:51", "col13":"2022-11-14", "col14":"2023-05-29 15:07:03", "col15":"Z", "col16":null, "col17":"aMm_kYB`6gpU2h;uD&8/kw3X"} {"col1":-439380020, "col2":96, "col3":-17308, "col4":0, "col5":3579043460080517561, "col6":"4240896818074065205", "col7":12152.55, "col8":1198053802.322113, "col9":2562915342156503.474, "col10":7583328329290118.446, "col11":"2023-03-31", "col12":"2023-04-17 02:55:52", "col13":"2023-03-19", "col14":"2023-03-29 13:17:27", "col15":"0&P0_,,9I&dn", "col16":"HTtzP,7Ob", "col17":">!M"} {"col1":-457160013, "col2":-87, "col3":-32076, "col4":0, "col5":2962490776305786988, "col6":"-9219898190360409591", "col7":4773.356, "col8":124168385.283727, "col9":66564244852109284.538, "col10":-17698570145691684.721, "col11":"2023-09-09", "col12":"2023-05-12 14:33:56", "col13":"2023-05-19", "col14":"2023-08-07 19:17:09", "col15":null, "col16":"nsqUTDXMfOqg!S7C97`49QcZ4Os0TI?g6E2#J/(fV>(*X_Q`(6Znf?h$PS4u8NFcB49IFq/mgNAJX~p-C~4.", "col17":"0mntxHvG8zY_", "col16":"ca", "col17":"v.@WpiI1+`>Bj#II4"} {"col1":-1135173592, "col2":-24, "col3":12059, "col4":1, "col5":-4173609755187683516, "col6":"9104229668324434517", "col7":-18978.926, "col8":1538129083.152786, "col9":49186343729636745.231, "col10":-7234568807819447.144, "col11":"2023-06-14", "col12":"2023-11-09 00:22:59", "col13":"2023-01-15", "col14":"2023-07-14 13:08:52", "col15":"(~twE21C", "col16":"o?XB9l_e*+?3UZH_qGT7/r7F4~rr1$k%;eaEMa?r4@P@jk)6P>XxpFY2(q9iiV~fm7eEP5oN<#zlsw~wji"} {"col1":441268110, "col2":102, "col3":13250, "col4":1, "col5":8597594907679023161, "col6":"5667613937641491367", "col7":29102.045, "col8":-319989982.17985, "col9":-81087716870785483.143, "col10":-64800115883130558.550, "col11":"2023-06-02", "col12":"2023-10-04 21:25:45", "col13":"2023-03-03", "col14":"2023-09-23 07:27:31", "col15":"G-48d", "col16":")EWS(!Qtciw`^3x;+Guc+;_oW?-LRLh;FnQfLL?ieRtZ$WJm?blsQn32p6O@$J%cjb%nZTC.6m>w;UI<%)EB+n"} {"col1":577259683, "col2":18, "col3":-13537, "col4":0, "col5":5778440245350381673, "col6":"1729667696812540134", "col7":-29986.787, "col8":462696869.740925, "col9":-64242297078135876.710, "col10":-34110060920083841.600, "col11":"2022-12-13", "col12":"2022-11-11 00:41:32", "col13":"2023-04-20", "col14":"2023-10-19 18:35:25", "col15":"k)W4Wbt8", "col16":"F<0)FFx0Ay&wdY%rRE#>t4QOL(pTd^BOW8@~KBXCvXgQ@20mrzFPd", "col17":"-WOU+(8-*I<*-F;U.4MF&Y>n*xNAbLHf/l9K_BjIdK;0T-&J0$DumP_scfWr!tpPd@g=/fyD;C7vV8&j>F/AC^r5^,t+pid@P)&^=&?g`?*iJzsx4k=<<;aqi@a%f"} {"col1":358052123, "col2":-20, "col3":-995, "col4":1, "col5":8462498483626768535, "col6":"-4579777337458835014", "col7":5497.2812, "col8":-1675121192.209081, "col9":-55228000464087729.376, "col10":54075338566731730.689, "col11":"2023-05-09", "col12":"2023-08-19 11:53:12", "col13":"2023-01-30", "col14":"2023-06-08 14:32:40", "col15":"z$8+gBbZ", "col16":"0;^hCNKLqx=)", "col17":"QH=1=ezdz`3u@IwXC~q.Hjo5Tch6LPfj_$nX>*saEQU.Oz(cL.rR*iuahbYnb*0C4*G0``Q^Nd0RPP$vhA&95q)X<(a.PfZ,H>GHG=LjhC9G.-8!X", "col17":",DvFSRv&Ez!GJrEo1/;Nr,*Qm*_eV7S(CesYSTt3v_w>NRew~3h(IrQQ"} {"col1":196725014, "col2":-24, "col3":-13427, "col4":0, "col5":-7375318581248960057, "col6":"-2543965274523748861", "col7":5780.991, "col8":-694770524.546083, "col9":-76123002210744723.992, "col10":-47697265631521692.335, "col11":"2023-04-24", "col12":"2023-01-08 11:35:37", "col13":"2022-11-13", "col14":"2022-12-03 12:55:19", "col15":"0KC+u_$>", "col16":"i@-@ASL*~~/iY)1+$rL)*DEk<Z%kd&Gc,s9FlWo!42P.yo_VO*Xewr$C@b?b8;/f-_7G=w^OX$m5#6*", "col17":"P+dMU%2GvWo=*+_U$#N871~QZ@pzc,~lLCYiY)~k"} {"col1":-688049528, "col2":-35, "col3":4321, "col4":0, "col5":7245845458805220394, "col6":"3912116986726525719", "col7":10877.681, "col8":-87511596.70815, "col9":27431649310089463.872, "col10":53000349361497028.867, "col11":"2022-12-14", "col12":"2023-09-10 09:56:23", "col13":"2023-04-04", "col14":"2023-01-17 18:35:42", "col15":null, "col16":"%fS1#RR47;vSRM%nZorS5_/xpu.@SM.~5klrRc)^e;dFK@N-bkA$(NAX&-0Vu1LrvZ.cBjSFfYwOKQy6C!qVPw;arKX&W>p/w-P-*ZxmrLy", "col17":"o7(4@cOp3=~p%l7+23)~Jf5vb$t@yCV@CfjrxEvB`iJT0q;-)XCuX#h/6dAOP$%0fH0deJ8%DNNeH$XZ^C!Q="} {"col1":-1474368615, "col2":-21, "col3":5177, "col4":1, "col5":8174349037021096782, "col6":"2571804249862798292", "col7":9933.032, "col8":-720750366.940295, "col9":-8590320354503227.221, "col10":-94099543687278644.814, "col11":"2023-03-03", "col12":"2023-07-11 13:00:08", "col13":"2023-03-29", "col14":"2023-01-22 03:42:30", "col15":"9gn!5C!BvEP", "col16":"X)1XT$`l2Lkr93E&?A?GWlurNp//;jSuTw>l6!?", "col17":"+<2ZMd=Xd0Q<2KT.%!K.Suj45?_lTHL3LptTpI^+(Kr8P6wx&(s8&"} {"col1":-1693846609, "col2":-73, "col3":9118, "col4":0, "col5":-2985094276774224395, "col6":"8805992256826989074", "col7":6244.1, "col8":1813143653.166, "col9":-62764692014561863.442, "col10":-38325067730370117.681, "col11":"2023-09-07", "col12":"2023-01-28 12:49:35", "col13":"2023-04-18", "col14":"2023-01-17 20:14:35", "col15":"d65uY.r", "col16":")A>je?_.Gt<;n`w51eCBOWT-kR`1ASIA", "col17":"hQWT,ge>KGm#zleH67$,`Px&A`N*kPk.ZqkO!4SG~-x/9~x*+tmgjmK", "col17":"M=_wY3E`(,i21pX2tO=f;oHS6n5,1@LU+iPFypM2zE(+(>k6XxzUqU*OTtx#!P5k++x@p60GAA>D0deaeDV$@N0R5"} {"col1":519727040, "col2":80, "col3":14429, "col4":0, "col5":-617879460517437411, "col6":"-7165327641490392420", "col7":-13084.128, "col8":1970316910.765143, "col9":-93976002804076259.534, "col10":-32558524385546329.363, "col11":"2022-11-13", "col12":"2023-02-16 09:07:20", "col13":"2023-07-28", "col14":"2023-01-08 22:38:58", "col15":"XsBMIBa^FI!d!", "col16":"pePuy7bPN&=l)?;@l6NJ7/V0Ukt1ubtmZMI$(d;ozN3!>1x2DDo>MRifl;4T8d`2_7R76B9&lePU^UK#$M`&ySGkb;)!x", "col17":"qY/@=?,a0!5EDHD"} {"col1":564937758, "col2":-10, "col3":-19719, "col4":1, "col5":6205568508580489074, "col6":"-238554161903590528", "col7":-8137.3535, "col8":1023623642.337226, "col9":-2362569962650581.821, "col10":-68775335337492456.403, "col11":"2023-08-28", "col12":"2022-12-13 09:02:24", "col13":"2022-12-14", "col14":"2023-10-02 15:42:07", "col15":null, "col16":"B)a?p0>L8kL", "col17":"zvS`nT$&kYjuqvx6SM0>h*lkl^`~s$^LmTQN~*B^qdyQF^`Ofh~L.GJ5@Bvc%X>akZfc$9Xeabk1FOw1fJI@9-U-V"} {"col1":1914314437, "col2":14, "col3":-3885, "col4":0, "col5":5289140208274800927, "col6":"5523134939016922802", "col7":-16044.735, "col8":-531461112.058018, "col9":20859664695767945.768, "col10":-95844141490303829.980, "col11":"2023-05-12", "col12":"2023-08-10 20:49:23", "col13":"2023-03-12", "col14":"2023-04-03 10:12:58", "col15":"THW", "col16":"0L35Dot/95xSb1igaBQY#jCm&q%c/MQ(2(0-sufN>BmBlt-`^L4rN2hH6D&Xy1Z8kY$>t5Z(,h1i4l2gU8e", "col17":"w`)of^9_@N=DZsU##xMKBfYAdm`fd=7V"} {"col1":-1700382114, "col2":115, "col3":-6204, "col4":1, "col5":-4126342125777344756, "col6":"9054982454557719308", "col7":-19103.875, "col8":2031018782.572868, "col9":-83553942298914702.482, "col10":58591672291818154.504, "col11":"2022-12-12", "col12":"2023-09-28 14:22:44", "col13":"2023-03-03", "col14":"2023-06-25 13:19:15", "col15":"BV", "col16":")jJv", "col17":"EL_I^2A-KD9P^n0VGfY.DapPaHP4b=3QCZXQ0-zW@Ke-", "col17":"LTl)O&FsU0<4mq5_a!VkB(dy"} {"col1":293498095, "col2":-121, "col3":-25965, "col4":0, "col5":-3576656064125326132, "col6":"-5657804083675264268", "col7":-30704.178, "col8":-904104728.103341, "col9":-3159432710175410.370, "col10":-45496500895008845.756, "col11":"2022-12-08", "col12":"2022-11-19 03:19:20", "col13":"2023-04-19", "col14":"2023-10-01 09:10:42", "col15":"M1/gn^", "col16":"3e3^nd>C*R&P-K`Q(/l#S@p#~VG6N8bakqb!6JOCPi>OKf@FyVx2v!E_GzXS&iI_rvtU3@nH~~jWu6@%4>", "col17":"ECpA8MXR9"} {"col1":1891310032, "col2":-26, "col3":26695, "col4":0, "col5":-374125000529149443, "col6":"2171945590552452381", "col7":1041.4928, "col8":1273785834.848136, "col9":97681462870233953.548, "col10":80612975133223453.920, "col11":"2023-03-28", "col12":"2023-09-23 19:05:17", "col13":"2023-01-08", "col14":"2023-04-22 18:50:43", "col15":"EC><,k", "col16":"UuW2bFgOk", "col17":".yuEbs~=_md6Q=p_rC#4rM5Fv>2;)`1?vo@o*OHlmw%w1yqWi&8heNZ?~8!C0qL"} {"col1":-741198949, "col2":-125, "col3":-19192, "col4":1, "col5":5676011356690276916, "col6":"-7208944717181851294", "col7":-16968.037, "col8":-172360599.036606, "col9":11062817494936380.754, "col10":-20473655271393218.620, "col11":"2023-01-05", "col12":"2023-06-05 05:32:43", "col13":"2023-09-25", "col14":"2022-12-11 18:46:30", "col15":"uo*`,0x4WusV8", "col16":"YBjQda$7u07noHXpbBeAqy^0Z~K5eC*l7NE8r`O^-*K3H(Q3c1i1R%FZTC-#ol`8`.uTDxsBrtnv~^41TTL,f-#Nx=fx1)U3#;9K=osN(BCPa/VJP^yb=x-wC", "col17":"$Uo7qZ)*QOk#*nXua`~=qi4*+F-DcC+~)8y#C6+UzS;8wr%?omo(XHQ9$C;A)a1Aw%T", "col17":"hv6lk51=2%oZ~k?s?jbdcE92t;q^*11S5Gni&", "col17":"h%EzOW5YYzGlD+#n8sn"} {"col1":20035609, "col2":3, "col3":15349, "col4":0, "col5":-822097466612981862, "col6":"-8411765013373638349", "col7":31527.754, "col8":-563702334.28447, "col9":-73307201008760924.624, "col10":41041091789555799.240, "col11":"2022-11-28", "col12":"2023-06-13 08:38:26", "col13":"2023-09-11", "col14":"2023-02-24 05:04:10", "col15":"k<,$", "col16":"8KGA*R`O`xc4ahsU,OfQF8U+L-MYW81RD@q_vBkcCAU=~)%kzq>I419e", "col17":">hq0RmfoN8GY1KhcX%8kSVgNepBIx=64zIC5w1cd2)@HTg"} {"col1":681801015, "col2":33, "col3":-3520, "col4":1, "col5":7366609877737053742, "col6":"-3161246756640427052", "col7":-30325.709, "col8":305541624.015199, "col9":-68808724306427475.611, "col10":-27445248172763847.371, "col11":"2023-01-23", "col12":"2023-09-01 22:06:09", "col13":"2022-12-04", "col14":"2023-08-31 22:26:56", "col15":"9~jInZTijOl/T", "col16":"t,BiuEz/IOh;/5Hgs^*toL%e-"} {"col1":-763764922, "col2":43, "col3":-23399, "col4":1, "col5":783989712103186350, "col6":"4083110528859476183", "col7":23241.365, "col8":1995148265.406853, "col9":96770525970445251.550, "col10":-85979799906620535.713, "col11":"2023-09-25", "col12":"2023-06-07 09:35:00", "col13":"2023-07-19", "col14":"2023-02-04 03:54:25", "col15":"Z~$?K=)T", "col16":"%0Z7_jKvdtrLWiMO2&Q$>Jo<5zh`.sd0(YWT.~Q`-B/q7,up>lw5PAA+B?h~PAfqH1d", "col17":"^*Zk4=6jLr?;fmtbcE/?y5s$*_-bmXh#H_LT>ua>2H&Bv%#e7lKc@k-;^Aa7ukG/VI6TR227%h?LT+(_v", "col17":"6TIVHg^HUKpnL(vb%EUwGhk3;)"} {"col1":1370312656, "col2":41, "col3":18715, "col4":0, "col5":-3758233030181962206, "col6":"-8987717996655162408", "col7":-31457.508, "col8":-1708794275.366794, "col9":-94588829972275923.445, "col10":3986165881623729.357, "col11":"2023-08-11", "col12":"2023-07-25 18:20:01", "col13":"2023-02-26", "col14":"2023-08-06 11:27:49", "col15":"@DS1", "col16":"T?bB7tU", "col17":"IiQ@J6tX~sm^jG.r&swNrVk1-2ONnvC5Ig(XkMI)X%@DxZbPkLG<84l_F0*kDbpId.dd@d%Tqv"} {"col1":-1169184786, "col2":71, "col3":31927, "col4":1, "col5":8390345726239927198, "col6":"-7481515861580930114", "col7":-11882.879, "col8":1647353218.839473, "col9":-83496988101917566.310, "col10":8002364419087947.937, "col11":"2023-04-16", "col12":"2023-09-18 23:39:33", "col13":"2023-11-07", "col14":"2023-10-27 03:02:59", "col15":"=P", "col16":"62_"} {"col1":-1095228497, "col2":-62, "col3":-14579, "col4":1, "col5":8678662247688949464, "col6":"2327812601777741478", "col7":-18123.812, "col8":1567963893.234542, "col9":9922994714498675.274, "col10":23455293548273884.488, "col11":"2023-02-23", "col12":"2023-01-05 12:37:47", "col13":"2022-11-13", "col14":"2023-07-28 23:53:46", "col15":"r1(NqlNf", "col16":"T1xKVofKWBof,<%7t>C;wtY<>3mbn/epHN2=GxB+(/*nt3YK7TLM,I14_bD@ZXu-2zy#l0j", "col17":"i~kdqVPVKe-", "col17": "LTl)O&FsU0<4mq5_a!VkB(dy"} {"col1": 293498095, "col2": -121, "col3": -25965, "col4": 0, "col5": -3576656064125326132, "col6": -5657804083675264268, "col7": -30704.178, "col8": -904104728.103341, "col9": -3159432710175410.370, "col10": -45496500895008845.756, "col11": "2022-12-08", "col12": "2022-11-19 03:19:20", "col13": "2023-04-19", "col14": "2023-10-01 09:10:42", "col15": "M1/gn^", "col16": "3e3^nd>C*R&P-K`Q(/l#S@p#~VG6N8bakqb!6JOCPi>OKf@FyVx2v!E_GzXS&iI_rvtU3@nH~~jWu6@%4>", "col17": "ECpA8MXR9"} {"col1": 1891310032, "col2": -26, "col3": 26695, "col4": 0, "col5": -374125000529149443, "col6": 2171945590552452381, "col7": 1041.4928, "col8": 1273785834.848136, "col9": 97681462870233953.548, "col10": 80612975133223453.920, "col11": "2023-03-28", "col12": "2023-09-23 19:05:17", "col13": "2023-01-08", "col14": "2023-04-22 18:50:43", "col15": "EC><,k", "col16": "UuW2bFgOk", "col17": ".yuEbs~=_md6Q=p_rC#4rM5Fv>2;)`1?vo@o*OHlmw%w1yqWi&8heNZ?~8!C0qL"} {"col1": -741198949, "col2": -125, "col3": -19192, "col4": 1, "col5": 5676011356690276916, "col6": -7208944717181851294, "col7": -16968.037, "col8": -172360599.036606, "col9": 11062817494936380.754, "col10": -20473655271393218.620, "col11": "2023-01-05", "col12": "2023-06-05 05:32:43", "col13": "2023-09-25", "col14": "2022-12-11 18:46:30", "col15": "uo*`,0x4WusV8", "col16": "YBjQda$7u07noHXpbBeAqy^0Z~K5eC*l7NE8r`O^-*K3H(Q3c1i1R%FZTC-#ol`8`.uTDxsBrtnv~^41TTL,f-#Nx=fx1)U3#;9K=osN(BCPa/VJP^yb=x-wC", "col17": "$Uo7qZ)*QOk#*nXua`~=qi4*+F-DcC+~)8y#C6+UzS;8wr%?omo(XHQ9$C;A)a1Aw%T", "col17": "hv6lk51=2%oZ~k?s?jbdcE92t;q^*11S5Gni&", "col17": "h%EzOW5YYzGlD+#n8sn"} {"col1": 20035609, "col2": 3, "col3": 15349, "col4": 0, "col5": -822097466612981862, "col6": -8411765013373638349, "col7": 31527.754, "col8": -563702334.28447, "col9": -73307201008760924.624, "col10": 41041091789555799.240, "col11": "2022-11-28", "col12": "2023-06-13 08:38:26", "col13": "2023-09-11", "col14": "2023-02-24 05:04:10", "col15": "k<,$", "col16": "8KGA*R`O`xc4ahsU,OfQF8U+L-MYW81RD@q_vBkcCAU=~)%kzq>I419e", "col17": ">hq0RmfoN8GY1KhcX%8kSVgNepBIx=64zIC5w1cd2)@HTg"} {"col1": 681801015, "col2": 33, "col3": -3520, "col4": 1, "col5": 7366609877737053742, "col6": -3161246756640427052, "col7": -30325.709, "col8": 305541624.015199, "col9": -68808724306427475.611, "col10": -27445248172763847.371, "col11": "2023-01-23", "col12": "2023-09-01 22:06:09", "col13": "2022-12-04", "col14": "2023-08-31 22:26:56", "col15": "9~jInZTijOl/T", "col16": "t,BiuEz/IOh;/5Hgs^*toL%e-"} {"col1": -763764922, "col2": 43, "col3": -23399, "col4": 1, "col5": 783989712103186350, "col6": 4083110528859476183, "col7": 23241.365, "col8": 1995148265.406853, "col9": 96770525970445251.550, "col10": -85979799906620535.713, "col11": "2023-09-25", "col12": "2023-06-07 09:35:00", "col13": "2023-07-19", "col14": "2023-02-04 03:54:25", "col15": "Z~$?K=)T", "col16": "%0Z7_jKvdtrLWiMO2&Q$>Jo<5zh`.sd0(YWT.~Q`-B/q7,up>lw5PAA+B?h~PAfqH1d", "col17": "^*Zk4=6jLr?;fmtbcE/?y5s$*_-bmXh#H_LT>ua>2H&Bv%#e7lKc@k-;^Aa7ukG/VI6TR227%h?LT+(_v", "col17": "6TIVHg^HUKpnL(vb%EUwGhk3;)"} {"col1": 1370312656, "col2": 41, "col3": 18715, "col4": 0, "col5": -3758233030181962206, "col6": -8987717996655162408, "col7": -31457.508, "col8": -1708794275.366794, "col9": -94588829972275923.445, "col10": 3986165881623729.357, "col11": "2023-08-11", "col12": "2023-07-25 18:20:01", "col13": "2023-02-26", "col14": "2023-08-06 11:27:49", "col15": "@DS1", "col16": "T?bB7tU", "col17": "IiQ@J6tX~sm^jG.r&swNrVk1-2ONnvC5Ig(XkMI)X%@DxZbPkLG<84l_F0*kDbpId.dd@d%Tqv"} {"col1": -1169184786, "col2": 71, "col3": 31927, "col4": 1, "col5": 8390345726239927198, "col6": -7481515861580930114, "col7": -11882.879, "col8": 1647353218.839473, "col9": -83496988101917566.310, "col10": 8002364419087947.937, "col11": "2023-04-16", "col12": "2023-09-18 23:39:33", "col13": "2023-11-07", "col14": "2023-10-27 03:02:59", "col15": "=P", "col16": "62_"} {"col1": -1095228497, "col2": -62, "col3": -14579, "col4": 1, "col5": 8678662247688949464, "col6": 2327812601777741478, "col7": -18123.812, "col8": 1567963893.234542, "col9": 9922994714498675.274, "col10": 23455293548273884.488, "col11": "2023-02-23", "col12": "2023-01-05 12:37:47", "col13": "2022-11-13", "col14": "2023-07-28 23:53:46", "col15": "r1(NqlNf", "col16": "T1xKVofKWBof,<%7t>C;wtY<>3mbn/epHN2=GxB+(/*nt3YK7TLM,I14_bD@ZXu-2zy#l0j", "col17": "i~kdqVPVc+;_oW?-LRLh;FnQfLL?ieRtZ$WJm?blsQn32p6O@$J%cjb%nZTC.6m>w;UI<%)EB+n"} {"col1": 577259683, "col2": 18, "col3": -13537, "col4": 0, "col5": 5778440245350381673, "col6": 1729667696812540134, "col7": -29986.787, "col8": 462696869.740925, "col9": -64242297078135876.710, "col10": -34110060920083841.600, "col11": "2022-12-13", "col12": "2022-11-11 00:41:32", "col13": "2023-04-20", "col14": "2023-10-19 18:35:25", "col15": "k)W4Wbt8", "col16": "F<0)FFx0Ay&wdY%rRE#>t4QOL(pTd^BOW8@~KBXCvXgQ@20mrzFPd", "col17": "-WOU+(8-*I<*-F;U.4MF&Y>n*xNAbLHf/l9K_BjIdK;0T-&J0$DumP_scfWr!tpPd@g=/fyD;C7vV8&j>F/AC^r5^,t+pid@P)&^=&?g`?*iJzsx4k=<<;aqi@a%f"} {"col1": 358052123, "col2": -20, "col3": -995, "col4": 1, "col5": 8462498483626768535, "col6": -4579777337458835014, "col7": 5497.2812, "col8": -1675121192.209081, "col9": -55228000464087729.376, "col10": 54075338566731730.689, "col11": "2023-05-09", "col12": "2023-08-19 11:53:12", "col13": "2023-01-30", "col14": "2023-06-08 14:32:40", "col15": "z$8+gBbZ", "col16": "0;^hCNKLqx=)", "col17": "QH=1=ezdz`3u@IwXC~q.Hjo5Tch6LPfj_$nX>*saEQU.Oz(cL.rR*iuahbYnb*0C4*G0``Q^Nd0RPP$vhA&95q)X<(a.PfZ,H>GHG=LjhC9G.-8!X", "col17": ",DvFSRv&Ez!GJrEo1/;Nr,*Qm*_eV7S(CesYSTt3v_w>NRew~3h(IrQQ"} {"col1": 196725014, "col2": -24, "col3": -13427, "col4": 0, "col5": -7375318581248960057, "col6": -2543965274523748861, "col7": 5780.991, "col8": -694770524.546083, "col9": -76123002210744723.992, "col10": -47697265631521692.335, "col11": "2023-04-24", "col12": "2023-01-08 11:35:37", "col13": "2022-11-13", "col14": "2022-12-03 12:55:19", "col15": "0KC+u_$>", "col16": "i@-@ASL*~~/iY)1+$rL)*DEk<Z%kd&Gc,s9FlWo!42P.yo_VO*Xewr$C@b?b8;/f-_7G=w^OX$m5#6*", "col17": "P+dMU%2GvWo=*+_U$#N871~QZ@pzc,~lLCYiY)~k"} {"col1": -688049528, "col2": -35, "col3": 4321, "col4": 0, "col5": 7245845458805220394, "col6": 3912116986726525719, "col7": 10877.681, "col8": -87511596.70815, "col9": 27431649310089463.872, "col10": 53000349361497028.867, "col11": "2022-12-14", "col12": "2023-09-10 09:56:23", "col13": "2023-04-04", "col14": "2023-01-17 18:35:42", "col15": null, "col16": "%fS1#RR47;vSRM%nZorS5_/xpu.@SM.~5klrRc)^e;dFK@N-bkA$(NAX&-0Vu1LrvZ.cBjSFfYwOKQy6C!qVPw;arKX&W>p/w-P-*ZxmrLy", "col17": "o7(4@cOp3=~p%l7+23)~Jf5vb$t@yCV@CfjrxEvB`iJT0q;-)XCuX#h/6dAOP$%0fH0deJ8%DNNeH$XZ^C!Q="} {"col1": -1474368615, "col2": -21, "col3": 5177, "col4": 1, "col5": 8174349037021096782, "col6": 2571804249862798292, "col7": 9933.032, "col8": -720750366.940295, "col9": -8590320354503227.221, "col10": -94099543687278644.814, "col11": "2023-03-03", "col12": "2023-07-11 13:00:08", "col13": "2023-03-29", "col14": "2023-01-22 03:42:30", "col15": "9gn!5C!BvEP", "col16": "X)1XT$`l2Lkr93E&?A?GWlurNp//;jSuTw>l6!?", "col17": "+<2ZMd=Xd0Q<2KT.%!K.Suj45?_lTHL3LptTpI^+(Kr8P6wx&(s8&"} {"col1": -1693846609, "col2": -73, "col3": 9118, "col4": 0, "col5": -2985094276774224395, "col6": 8805992256826989074, "col7": 6244.1, "col8": 1813143653.166, "col9": -62764692014561863.442, "col10": -38325067730370117.681, "col11": "2023-09-07", "col12": "2023-01-28 12:49:35", "col13": "2023-04-18", "col14": "2023-01-17 20:14:35", "col15": "d65uY.r", "col16": ")A>je?_.Gt<;n`w51eCBOWT-kR`1ASIA", "col17": "hQWT,ge>KGm#zleH67$,`Px&A`N*kPk.ZqkO!4SG~-x/9~x*+tmgjmK", "col17": "M=_wY3E`(,i21pX2tO=f;oHS6n5,1@LU+iPFypM2zE(+(>k6XxzUqU*OTtx#!P5k++x@p60GAA>D0deaeDV$@N0R5"} {"col1": 519727040, "col2": 80, "col3": 14429, "col4": 0, "col5": -617879460517437411, "col6": -7165327641490392420, "col7": -13084.128, "col8": 1970316910.765143, "col9": -93976002804076259.534, "col10": -32558524385546329.363, "col11": "2022-11-13", "col12": "2023-02-16 09:07:20", "col13": "2023-07-28", "col14": "2023-01-08 22:38:58", "col15": "XsBMIBa^FI!d!", "col16": "pePuy7bPN&=l)?;@l6NJ7/V0Ukt1ubtmZMI$(d;ozN3!>1x2DDo>MRifl;4T8d`2_7R76B9&lePU^UK#$M`&ySGkb;)!x", "col17": "qY/@=?,a0!5EDHD"} {"col1": 564937758, "col2": -10, "col3": -19719, "col4": 1, "col5": 6205568508580489074, "col6": -238554161903590528, "col7": -8137.3535, "col8": 1023623642.337226, "col9": -2362569962650581.821, "col10": -68775335337492456.403, "col11": "2023-08-28", "col12": "2022-12-13 09:02:24", "col13": "2022-12-14", "col14": "2023-10-02 15:42:07", "col15": null, "col16": "B)a?p0>L8kL", "col17": "zvS`nT$&kYjuqvx6SM0>h*lkl^`~s$^LmTQN~*B^qdyQF^`Ofh~L.GJ5@Bvc%X>akZfc$9Xeabk1FOw1fJI@9-U-V"} {"col1": 1914314437, "col2": 14, "col3": -3885, "col4": 0, "col5": 5289140208274800927, "col6": 5523134939016922802, "col7": -16044.735, "col8": -531461112.058018, "col9": 20859664695767945.768, "col10": -95844141490303829.980, "col11": "2023-05-12", "col12": "2023-08-10 20:49:23", "col13": "2023-03-12", "col14": "2023-04-03 10:12:58", "col15": "THW", "col16": "0L35Dot/95xSb1igaBQY#jCm&q%c/MQ(2(0-sufN>BmBlt-`^L4rN2hH6D&Xy1Z8kY$>t5Z(,h1i4l2gU8e", "col17": "w`)of^9_@N=DZsU##xMKBfYAdm`fd=7V"} {"col1": -1700382114, "col2": 115, "col3": -6204, "col4": 1, "col5": -4126342125777344756, "col6": 9054982454557719308, "col7": -19103.875, "col8": 2031018782.572868, "col9": -83553942298914702.482, "col10": 58591672291818154.504, "col11": "2022-12-12", "col12": "2023-09-28 14:22:44", "col13": "2023-03-03", "col14": "2023-06-25 13:19:15", "col15": "BV", "col16": ")jJv", "col17": "EL_I^2A-KD9P^n0VGfY.DapPaHP4b=3QCZXQ0-zW@Nl$KVatwNIEs.fwG07haAK-w8kg>QA9*Q&Cq=rd5J=iOj,4b6T`YNn$!ToQlF/R-8~9-sE?mcNekAWsxWhyy="} {"col1": 1976188027, "col2": 39, "col3": -20199, "col4": 1, "col5": 54838796530721045, "col6": -4199157709856370965, "col7": -20633.107, "col8": -1314405206.528385, "col9": -17838244458606850.919, "col10": 13993039380882130.769, "col11": "2023-04-28", "col12": "2023-07-21 06:48:51", "col13": "2022-11-14", "col14": "2023-05-29 15:07:03", "col15": "Z", "col16": null, "col17": "aMm_kYB`6gpU2h;uD&8/kw3X"} {"col1": -439380020, "col2": 96, "col3": -17308, "col4": 0, "col5": 3579043460080517561, "col6": 4240896818074065205, "col7": 12152.55, "col8": 1198053802.322113, "col9": 2562915342156503.474, "col10": 7583328329290118.446, "col11": "2023-03-31", "col12": "2023-04-17 02:55:52", "col13": "2023-03-19", "col14": "2023-03-29 13:17:27", "col15": "0&P0_,,9I&dn", "col16": "HTtzP,7Ob", "col17": ">!M"} {"col1": -457160013, "col2": -87, "col3": -32076, "col4": 0, "col5": 2962490776305786988, "col6": -9219898190360409591, "col7": 4773.356, "col8": 124168385.283727, "col9": 66564244852109284.538, "col10": -17698570145691684.721, "col11": "2023-09-09", "col12": "2023-05-12 14:33:56", "col13": "2023-05-19", "col14": "2023-08-07 19:17:09", "col15": null, "col16": "nsqUTDXMfOqg!S7C97`49QcZ4Os0TI?g6E2#J/(fV>(*X_Q`(6Znf?h$PS4u8NFcB49IFq/mgNAJX~p-C~4.", "col17": "0mntxHvG8zY_", "col16": "ca", "col17": "v.@WpiI1+`>Bj#II4"} {"col1": -1135173592, "col2": -24, "col3": 12059, "col4": 1, "col5": -4173609755187683516, "col6": 9104229668324434517, "col7": -18978.926, "col8": 1538129083.152786, "col9": 49186343729636745.231, "col10": -7234568807819447.144, "col11": "2023-06-14", "col12": "2023-11-09 00:22:59", "col13": "2023-01-15", "col14": "2023-07-14 13:08:52", "col15": "(~twE21C", "col16": "o?XB9l_e*+?3UZH_qGT7/r7F4~rr1$k%;eaEMa?r4@P@jk)6P>XxpFY2(q9iiV~fm7eEP5oN<#zlsw~wji"} {"col1": 441268110, "col2": 102, "col3": 13250, "col4": 1, "col5": 8597594907679023161, "col6": 5667613937641491367, "col7": 29102.045, "col8": -319989982.17985, "col9": -81087716870785483.143, "col10": -64800115883130558.550, "col11": "2023-06-02", "col12": "2023-10-04 21:25:45", "col13": "2023-03-03", "col14": "2023-09-23 07:27:31", "col15": "G-48d", "col16": ")EWS(!Qtciw`^3x;+Gu,Qr", "col16": "tuV0Ia95UN4WJ,d>U,gXIq+AB&FWl@+ZIZ7n1(t.!rozlH3)L$I", "col17": ";rwx#I@!I9>KNEo-e3~u2!Z7"} {"col1": 1972978288, "col2": -50, "col3": -6168, "col4": 0, "col5": -4179719101679261778, "col6": -5658599518714090609, "col7": 28802.623, "col8": 246142051.324034, "col9": -36754206589235888.236, "col10": -89884930143982612.342, "col11": "2023-01-05", "col12": "2023-03-15 03:20:04", "col13": "2023-09-07", "col14": "2022-12-27 21:53:40", "col15": "id>=nmLO", "col16": "q)ImOZMO-%"} {"col1": -857517907, "col2": -13, "col3": -26169, "col4": 0, "col5": 1324801886191525419, "col6": -633990266050297169, "col7": 3735.309, "col8": 789053200.026963, "col9": -57720955152670311.476, "col10": -8743840658043643.960, "col11": "2023-07-31", "col12": "2023-09-06 17:05:54", "col13": "2023-06-08", "col14": "2023-03-14 17:52:11", "col15": ">rSQBh-<9$q~1/", "col16": "3=mvLVLYK#5M_mImzbf$m4pjO?xqaMnD3%Wk6z9!?VK>asTqihfTun&?rjnV@hCKqNFLZ!t?Z,$I&0VO14W?.$Ifn", "col17": "3$*wLCj/g;FeFuL?1)xDf1qi-2pC34-nHU*wrC"} {"col1": -794984628, "col2": -123, "col3": 2770, "col4": 0, "col5": -8407115878675052393, "col6": 6290621142790299283, "col7": -20395.217, "col8": 964838226.951184, "col9": 62168795366363553.685, "col10": 3990660931483287.956, "col11": "2023-08-01", "col12": "2022-11-15 03:39:25", "col13": "2023-05-22", "col14": "2023-01-16 06:11:45", "col15": "aBBlJ&qLR/", "col16": "j%jpN=i9M(qm~P6$lrFZX#%K/V,+lKT8PLo7S=nBDaW+%k", "col17": "SBYA;xsw12%VfP3h@H#t%K2217huCI5%Xzl7/uVQyqEDk+iuY4CfzD4+#n4o"} {"col1": -96204677, "col2": 104, "col3": -25072, "col4": 0, "col5": -495962334761368972, "col6": 8827206595048036803, "col7": -11482.668, "col8": -1689118748.978966, "col9": 67715972226386452.885, "col10": 13169427423288280.809, "col11": "2023-08-15", "col12": "2023-01-02 17:50:30", "col13": "2023-07-23", "col14": "2023-08-06 21:07:43", "col15": "_ZVEgU^HRmfqt", "col16": ".o2d+YKh6g42*c#", "col17": "_L!"} {"col1": -2115935053, "col2": 27, "col3": -19348, "col4": 1, "col5": 6444729399502953215, "col6": -7824339815255256852, "col7": 31207.164, "col8": -1416336003.514647, "col9": 30769340447285264.393, "col10": -16602275863253066.303, "col11": "2023-09-03", "col12": "2023-01-20 01:35:08", "col13": "2023-06-14", "col14": "2023-01-16 04:44:31", "col15": "h", "col16": "_uZ^TAbpz$&E>G;g7Ke/", "col17": "qAFkpQ29_t~6-$W_G$@qi6q.wZ_l~O9gBk#aIkHjxu>-`~$Ur@M~VF%l.otQqlsdt-+c*/"} {"col1": -388835131, "col2": 53, "col3": 1173, "col4": 1, "col5": 1058814101912670358, "col6": -4766475424119347961, "col7": -9593.519, "col8": -2026900846.597067, "col9": 32638844755892053.680, "col10": 74267061673690142.256, "col11": "2023-04-10", "col12": "2023-01-23 06:01:37", "col13": "2023-01-05", "col14": "2023-01-10 20:32:45", "col15": "vatM?TjC", "col16": "-czPSz7d;hzG%`_L^Lh(iQR_TjXjNJu=4-pB20qcn@s`b&BXBJE", "col17": "ZC1C1b7bXzPw8eL$aQK!sAs+3mH~xq.Y,4sAf~aI!VrfJ!rEm9#g;,?(WY5XrY$Hu9ieq1JfeuoJq+?P0jB0tI64sM/>#E.kBRZ>E_%J`kg$iXvES2KqpLpF&Q>Cxm=u1GkyT8X(;^YVvxgd3ukoX<@0=UE=^@Fy1,3ZmN5y~gE179^6s=z,*X!"} {"col1": -890641036, "col2": -108, "col3": 12687, "col4": 0, "col5": 5992849989632294216, "col6": -509868396952444310, "col7": 25711.898, "col8": -155735546.802502, "col9": 30165578514147105.800, "col10": -8197414077466183.531, "col11": "2023-05-22", "col12": "2023-08-29 18:34:13", "col13": "2023-05-16", "col14": "2023-03-01 21:45:35", "col15": "9A3@>H6t", "col16": "M2-d-@D17CX+$Co8K`<0TLns@%#PT3ZS(8JrM/2)lO~-9N~`AGr^!mg_I=.d/9GNP", "col17": "8/e,sjJC%Nb<.XIIkQEES~Is9JMzf-cUXnln.=;T@;d#K=TsahgOL9aJ+F!zDCEBBDDBo0d^BJjO(Pgm4X^x<@He,L;e^KJ+oLBp`(l-BHC70G5*~-"} {"col1": -214174654, "col2": -66, "col3": -26315, "col4": 1, "col5": 6675376020097387538, "col6": 2349535819201158151, "col7": -2783.544, "col8": 897715524.600938, "col9": -45965025270498650.974, "col10": -67730060493155209.887, "col11": "2022-12-15", "col12": "2023-11-09 12:10:53", "col13": "2023-03-18", "col14": "2023-04-16 19:23:56", "col15": "r4Y@2Ih#", "col16": "a>,4Qp!Y,o+~a4N_.rE_2eIhsgTH>vX(bm~3l$vdJtrnp@?pMKp_IBASj!i!*ruZ*3iMOWChwPRybRUmEbZ,s", "col17": ")l+^jtn@MQLK*9a7G)MfSKuY8/=G2DNh0f>d%oCIq>!(.7YqV~yWmi%+pwWLRmU88TZI-->Y#"} {"col1": -2129952087, "col2": -126, "col3": -2059, "col4": 1, "col5": -8837074953586926207, "col6": 5112551742375942421, "col7": -6595.1167, "col8": 419447242.935179, "col9": -92635600957786296.964, "col10": -99426600244345493.224, "col11": "2023-05-17", "col12": "2023-01-04 14:05:29", "col13": "2022-12-17", "col14": "2023-04-30 14:43:23", "col15": "-a", "col16": "Y@OQLeFB!n`xo?@hDQ(LQfTb^Ay_!Smggqhg%fceGJd", "col17": "/q-IbTh@0v-)i*,XOo1j>xlzCp2!-eN-giu(P7^aK#uk`,/yzbS"} --8584330716254438722 {"col1": 933995213, "col2": 1, "col3": 3267, "col4": 0, "col5": -5550829509029152855, "col6": -8797152448685401671, "col7": -6807.821, "col8": 1881218185.650995, "col9": 44837386411291788.739, "col10": -77744549308538297.360, "col11": "2022-12-26", "col12": "2023-08-24 18:48:11", "col13": "2023-01-30", "col14": "2023-11-03 12:45:38", "col15": "4be", "col16": "1=)tT^~uN(d<%FlwM;`JYpKWzB<+x.PFYfbh!X9EElGf1&bba6;;i2iMz/2Kp_qh$-I^L;3?Sl"} {"col1": -1333802234, "col2": 43, "col3": 11242, "col4": 0, "col5": 1196312694517239929, "col6": 6213937979195932063, "col7": 12792.475, "col8": 1428325473.834884, "col9": -62192826868698867.216, "col10": -93168441979234449.692, "col11": "2023-09-02", "col12": "2023-11-05 11:46:33", "col13": "2023-01-08", "col14": "2023-10-29 05:00:38", "col15": "EN6$dzs~(d53", "col16": "uEL)aj7RcOy2B>akn", "col17": "V.GohGHLV6J6/(Xx?9(7fB<_v9TByzA?7?6Yw$PhvyuFfYk^&DGstDc>KG3UqcU!.m;xm%@LE+gEsxk(/Pbbpw?"} {"col1": 1086518829, "col2": 19, "col3": 8050, "col4": 0, "col5": -3082049133083595029, "col6": 5683422793173472738, "col7": -2291.2551, "col8": -432505729.081493, "col9": -47674030032621905.804, "col10": -80490934942919187.814, "col11": "2023-06-23", "col12": "2023-04-18 23:49:15", "col13": "2023-10-05", "col14": "2023-04-01 08:55:04", "col15": "#P-Bqu", "col16": "<,F@^IxJCX,4#vmwXV2ShV>C2mlige5>NJT.,/T/~@LOKo3cF_=^p", "col17": "Z.Hqh(h3Gl7V%5L%(kk7E37w/Go8wFJo?fBOhlH,qP#gA?HMc)E2psS/8J.Kj/5H3*J>y69SflpRdW>kk5U=Wi;ih,H3L-/5H8ZAh?", "col17": "9G!&Shr?TRk=c;0MmBkB^ctv3%D_(zKTH"} {"col1": -1331045850, "col2": 56, "col3": -31044, "col4": 1, "col5": -7244667617013002360, "col6": 1902503764317765481, "col7": -25882.256, "col8": -380049302.431098, "col9": -9606911474006002.109, "col10": 17328632045627481.982, "col11": "2023-04-19", "col12": "2023-05-27 13:22:43", "col13": "2023-02-13", "col14": "2022-12-13 04:36:42", "col15": "4C`o>N#W(XW)F.M8UuUtJLRU8%S7T6cVK^5x^DY-Lr=8V.LyxYo+9uJ6W.9)t9k_(t@V.BTcR8i+", "col17": "Iul)yq?wr*jT~A&Xw3eC)!It21loq%CSn^Im)$t/-ye4SweU1!^S?t"} {"col1": -1125037299, "col2": 82, "col3": -22808, "col4": 1, "col5": -8303816131517042997, "col6": 4386623234696664296, "col7": 31390.795, "col8": -321331979.556449, "col9": -9500951408855814.912, "col10": -15572524372861648.542, "col11": "2023-04-24", "col12": "2023-02-14 08:58:45", "col13": "2023-05-26", "col14": "2023-09-15 23:55:02", "col15": "3&@", "col16": "h6tMUgR4ZgYkbTaz3l-cZqOXH=$c0$eVnBq~Z`/i-OIcycC?o!,Tbp/%", "col17": "~rMw9K?15@l`?G7zbS;w6D0-l0oVmD.G<#ZjEEw)j.$#RVLAW`/XFk7--,~z;2b"} {"col1": 1558710429, "col2": 12, "col3": 28523, "col4": 0, "col5": 5442602451983227812, "col6": 5264019481572723786, "col7": 30198.125, "col8": 506413823.027176, "col9": 45601850479542885.984, "col10": -13258345057980610.190, "col11": "2023-03-14", "col12": "2023-05-08 22:21:46", "col13": "2023-07-05", "col14": "2023-01-05 03:50:50", "col15": null, "col16": "uHkiv$KU)dNI6W8DU?>>zIIh^.^)Qjpr2ppOZD!?6,)sOBEFe%a4w4skFT4rk", "col17": "S,Xu`uz3QhH;COFcN9*6PnsH)Mf4%GW^OV/#xce)*BANp@263aBjV2?qIB-5$^Q/>Hv6%~ph"} {"col1": 610229798, "col2": 63, "col3": -23158, "col4": 1, "col5": 2607349881852175976, "col6": -4831004874800938260, "col7": -21914.416, "col8": -2107006238.699932, "col9": -13894840376099276.889, "col10": 49077690290463004.191, "col11": "2023-11-02", "col12": "2023-07-29 16:40:01", "col13": "2023-04-14", "col14": "2023-09-11 12:24:43", "col15": "StJUT(wB>@", "col16": "y(@?NZdvk3O3axN-AN=ps9=!~^5apnzz!RW.CZzs`4&%l5p0SY/>)/%t#.ZXpJfgj>^d_FGhtphZ$P-ZY?;/", "col17": "oFI/=&hVVm+Y7MJssb&KP^M7GQ!+)5`.CNOZRfqwR$1S%cMZW!Os$(+rfJB&###*Pg)uDu,IdFK)DpOq"} --8526590106902518025 {"col1": -2135397004, "col2": 94, "col3": -29670, "col4": 1, "col5": 7090872835518711333, "col6": -1916621235651057979, "col7": 23394.068, "col8": 1655037893.333014, "col9": -36143234288746464.456, "col10": -61754523073078713.138, "col11": "2023-10-09", "col12": "2023-01-10 08:53:04", "col13": "2023-04-07", "col14": "2023-05-09 07:46:38", "col15": "1V97aoL?&c!o=", "col16": "GjA`VBdRgX", "col17": "KgFF&je5+,NvGEdAz_;dufCth_a&5,gSu~orh%)pUn1FyV+5,cyA(Yw"} {"col1": 768834811, "col2": 111, "col3": -12368, "col4": 0, "col5": 6987671692766035939, "col6": -7494881589590755673, "col7": -11690.967, "col8": -800701084.768676, "col9": 85704989772506616.614, "col10": 49389328660634750.811, "col11": "2023-10-26", "col12": "2023-10-06 18:51:32", "col13": "2023-05-11", "col14": "2022-12-08 01:37:15", "col15": "n&JJ$4r4K)8Q", "col16": "W&x/kQI;(P/PQ`9#VVbW~Ouv,vI", "col17": "fa)$MGzGg"} {"col1": -1823219684, "col2": -12, "col3": 26992, "col4": 1, "col5": -1836403498572963938, "col6": 1722310216718493557, "col7": 24048.455, "col8": 1916478884.258523, "col9": -99164804684678355.416, "col10": -91191031383207337.116, "col11": "2023-02-20", "col12": "2023-10-01 18:54:49", "col13": "2023-02-06", "col14": "2022-11-15 12:19:11", "col15": "LRU?R2&pR9H", "col16": "2_%90#WoB//HfXMKVl7ssi1Kg.$uZtbpR6Flbn+XO=<92;Vb=3Aq/", "col17": "a.lBcPe-v&wALCzy~?~mno?9LeLdec=K-_7Lh,9.UWsu@T"} {"col1": 2046878137, "col2": -45, "col3": 24125, "col4": 1, "col5": 8733335759463317387, "col6": -4889254601679646071, "col7": -1522.2361, "col8": 1772345507.502007, "col9": -4765781927035297.105, "col10": 49534300407852204.210, "col11": "2023-11-06", "col12": "2023-07-01 02:40:28", "col13": "2023-06-17", "col14": "2023-08-09 11:36:07", "col15": ";WRfOM.%/G", "col16": "hUfxWQK%VuMWj=k.n

f8M?e_IifBVczWQR<%b#x96h", "col17": "9ORK=%nvv7$j;+?!=/"} {"col1": 1931749918, "col2": -61, "col3": -26023, "col4": 1, "col5": 655886868675975318, "col6": -6228523992121274715, "col7": -30416.277, "col8": 404494499.593156, "col9": -90704723127910362.852, "col10": -48830702924564917.200, "col11": "2023-03-22", "col12": "2023-03-30 14:30:20", "col13": "2023-06-25", "col14": "2023-08-03 20:58:14", "col15": "1", "col16": "w0XlSO`^~3Mc8`J_AZ$kD-9.eZbvk65/TZkg8fU!4yciWdSUGfE?+cJ0yEI8I+f>O@en+%I%1R!ccmY", "col17": "nArT@GE)iq0,`KrBS9uyh#*Y.T=ACL.m>^xc-!ZvF=VH@v1E$K;iR_Z=z#;5~~/s&/>s)-d=Z!t%s=UY/fMQ~6IE", "col17": "w)j>29dIuV0;P13d#*("} {"col1": -784154300, "col2": -62, "col3": -25126, "col4": 1, "col5": -4498219135499881772, "col6": 6856401980615832763, "col7": 12140.458, "col8": -242951193.82197, "col9": 39747421746866133.595, "col10": 98412075066012684.979, "col11": "2023-05-29", "col12": "2023-09-07 20:05:21", "col13": "2023-04-21", "col14": "2022-11-19 03:04:38", "col15": "K=O^alW)L`", "col16": "EgcIHa^Hd(GE~3gM@UK", "col17": "qJo9+1Ho39e*Tf2S@62#FbSIF5)+e?pxfhlOEHe*S8k%#MlOplPx&U/0`7erPd3E%lWIR<"} {"col1": -1345998070, "col2": 73, "col3": -12307, "col4": 1, "col5": -2346592350776300502, "col6": 4576202285731461241, "col7": -676.7377, "col8": 1364540328.064018, "col9": 13432767121839671.998, "col10": -26324936959989359.594, "col11": "2023-02-11", "col12": "2023-02-07 07:08:09", "col13": "2023-03-21", "col14": "2023-07-24 06:50:49", "col15": null, "col16": "to_qGASeSl*X2nbC3", "col17": "WBZww5;5h5_7hv6TiCrx9wJbP@A22S3FHcCK#KGPF8("} {"col1": -1988183162, "col2": 40, "col3": -24136, "col4": 1, "col5": -417379002178085796, "col6": -1474977584348316966, "col7": 5310.985, "col8": 1063839607.392107, "col9": -54413137402446947.803, "col10": -73693930358854252.940, "col11": "2023-02-25", "col12": "2022-11-22 16:29:59", "col13": "2023-03-22", "col14": "2023-07-05 19:30:45", "col15": "qgH`_", "col16": "V^;OOSkIoiGuYYAl4y*X3sBY.3_t*@/B5&19@6-q~", "col17": "MF#?r7V9tm8lGzpKoSphji8*=z%mYM5OU,Fiq`El=0snqAJll%6LM!n^H`"} {"col1": -1180095966, "col2": 75, "col3": -9704, "col4": 1, "col5": -7929307379393601542, "col6": -3221655257874030538, "col7": -22961.36, "col8": 1350934064.919748, "col9": 71590329804082297.316, "col10": 68490249642371318.980, "col11": "2023-09-22", "col12": "2023-10-06 19:04:38", "col13": "2023-01-07", "col14": "2023-04-03 03:02:49", "col15": ")?", "col16": "Ghw%4pXF_LI1P?M^f7c4&o2K-QEW%p8&trAj~DH4=dQ+2E!n%U8"} {"col1": -1042939487, "col2": -102, "col3": -20093, "col4": 1, "col5": 258704357774718873, "col6": -4387908451084538500, "col7": -30131.84, "col8": 265721776.737866, "col9": -2616511530016594.215, "col10": 28484710821627763.956, "col11": "2023-03-30", "col12": "2023-06-19 03:13:57", "col13": "2023-03-11", "col14": "2022-12-06 13:04:22", "col15": "3rKKL3s>", "col16": "FVWF@8vMgd)ePWR?u@V+I9eSr0FK`!x;+%l6^u+bkBH+Tk+1SRrL88J4;xG%X~kxh0Rf*5b", "col17": "almPDzqhC!rL*)c8j5XLkhv~Y/y~V3x.>iD/msL)N.c8(J_s?Qlpu^zsxiIg^Ig$G%y^,_r+lsHbIaKLW9X3sP)2bRwu/(!dOKA?TZaDI`MfFd0K+9f@Dbf_xh9>n!I22MqP2X)pY7@g0PjtRR", "col17": "/m6JI,%hrjW*C/EMawnUA+P%AHG"} {"col1": -96922114, "col2": 23, "col3": -28004, "col4": 1, "col5": 8446860350965531770, "col6": 5642173086219796099, "col7": -3171.0913, "col8": -634821029.823853, "col9": -98654792721280301.185, "col10": 90696742528251983.209, "col11": "2023-01-13", "col12": "2023-11-06 05:10:39", "col13": "2023-06-18", "col14": "2023-08-12 12:51:35", "col15": "N6W4", "col16": "EXbHnU*G*x1(Fs>=`Oh;QjqM7>q5S6x=l%AeX9@p~_ubptVMbC$9/L4", "col17": "KkAN)vprmfxmbZ3-BQ2w27g2X=YtRc6!_e_Gj#H."} {"col1": 913460251, "col2": -122, "col3": -668, "col4": 0, "col5": 6507538830189845573, "col6": -9049683691868904419, "col7": 32287.156, "col8": -589894718.031317, "col9": -42663927076874213.955, "col10": -59265662945486651.537, "col11": "2023-04-28", "col12": "2023-09-26 23:37:43", "col13": "2022-12-02", "col14": "2023-01-20 15:16:56", "col15": "hJND)Sz", "col16": "VFdc4H=RSuNZ/C,6N", "col17": "PBo("} --8505366084515032753 {"col1": 382502710, "col2": -10, "col3": -1057, "col4": 1, "col5": -1053404092722092555, "col6": -3224814438034550078, "col7": -303.36923, "col8": 1394068216.774496, "col9": 35385157086902073.490, "col10": 28542472828538829.527, "col11": "2023-06-15", "col12": "2023-08-08 18:11:20", "col13": "2022-12-18", "col14": "2022-12-31 10:35:49", "col15": "aNDd", "col16": "rf&g;llr0AcaHMvj==5.x^T6<5#,s9g6Ce+%%shkcvv==<-%32nk0UKGn/Xv0ze1BPHIuC5b/=LGg6Z3S8gm`F)#w", "col17": ")xh~)TJqjj.DjX1yU2Ri6KQJax"} {"col1": -1855122167, "col2": -3, "col3": 15689, "col4": 1, "col5": -2367363947390869432, "col6": -6532659416199639957, "col7": 23066.408, "col8": 1319308662.25036, "col9": 75101865537681458.145, "col10": 847059006678943.372, "col11": "2023-06-22", "col12": "2023-03-26 14:27:35", "col13": "2023-07-13", "col14": "2023-08-19 17:08:01", "col15": null, "col16": "rspt?wZj`f,b.aEWAm5KI&s_q;yFo(>%OYX+WlZQ4uEBzq4^kJGGNIJ1W;", "col17": ",JBXQweU"} {"col1": 863299634, "col2": 19, "col3": 26127, "col4": 0, "col5": -3722113302586638684, "col6": -851562457423560807, "col7": 12379.872, "col8": 1344459261.478156, "col9": -5722993038821801.748, "col10": -17110044615450491.806, "col11": "2023-05-22", "col12": "2023-07-06 18:43:09", "col13": "2023-03-30", "col14": "2023-01-03 17:58:06", "col15": "CW4hXqcNhZ(7NV", "col16": "^-GcQPOz2j/^JouKfQ!j", "col17": "fL@>t?5)3esV/+),%xsD`;^ModFpKCj^qhGyEThhB+s.w_#0ZSEvdtmUPKcU3!I5DBaoc(?6--TxUy0lMqgGGJ_1?Ba?Q@*b6->;I_koUI5", "col17": "lu<.4A8;Po5"} {"col1": 517718032, "col2": 8, "col3": 5617, "col4": 1, "col5": 2036983629624140619, "col6": -8004741025176861266, "col7": 29875.326, "col8": 518876871.957944, "col9": -91214823930019420.126, "col10": -83897543475024225.103, "col11": "2023-11-04", "col12": "2023-02-17 02:18:52", "col13": "2022-11-25", "col14": "2023-04-16 21:00:34", "col15": null, "col16": "6hv*w,;~7ReMx-z)RyB0SncbrE_E4=ar0X(QPSxbv?v,sYR/.nsST,Lsf2lC-", "col17": "5+@eImE(-#Aq7Ti,Z7I9SmCU8jGwXs.adUs152`KV,SUN8r$A>_I(Mzpo1wyUTbQVQF+ynd*"} {"col1": -26851415, "col2": 77, "col3": 20803, "col4": 1, "col5": 8462280744723342223, "col6": 4028913701469404239, "col7": -27780.814, "col8": -1695167601.009997, "col9": -49423859244307827.797, "col10": 21504216931240673.598, "col11": "2023-01-01", "col12": "2023-06-27 05:34:56", "col13": "2023-05-01", "col14": "2022-11-26 20:17:19", "col15": ";jWy1&q3blu>6IO^dh9#B_@I.JL1FWW,Kat?I5;?foXR#s^pWy8aAQ1M=Pc+(dz&/"} {"col1": -604602583, "col2": 57, "col3": 13011, "col4": 0, "col5": -5302358667068573583, "col6": -5456138891970329645, "col7": 20375.229, "col8": 1419926154.765488, "col9": 64309450696316848.480, "col10": 30650186013769395.238, "col11": "2023-10-23", "col12": "2023-11-06 06:40:28", "col13": "2022-11-21", "col14": "2022-11-25 01:32:41", "col15": "ienLsZZoNc", "col16": "Z`7h~<62l*T,(Fum0!A=a2Dql0", "col17": "7^=JYmEr9?Js%P%1Pgiy,!l5>e-*GgFF%F#iJ/FV`0-Bjg6uR%W-LK%B2QZf*gE-(IO!p>whxfod2)eg4%/NZ4"} {"col1": 1296845509, "col2": 59, "col3": 21046, "col4": 1, "col5": 724993822370556458, "col6": 6265074313340910084, "col7": 29620.066, "col8": 1513249955.591215, "col9": -15705720077200863.493, "col10": -18756131852709044.646, "col11": "2023-05-11", "col12": "2023-08-17 11:43:03", "col13": "2023-03-17", "col14": "2023-08-17 16:03:28", "col15": "EYv*0AKQ3", "col16": "%k%,cq5^6AW4k^*D(IFeA?jMf8TZfP@AmmNj3-EVFkT>~2GHzC3=pd)R6Vu;E`0A;WrJzpo`Fv4Cqo*^^!C.($,Akh9A;+RKM^W&", "col17": "?6BBn/4tSggoWM=V`-YK=u_5*D=WP3;/G3s<6mFMa5725,9$t.!)nMta1kaI?l6t`P!+k&nKc-"} {"col1": 1787385854, "col2": -123, "col3": 29564, "col4": 1, "col5": -4220216585811082502, "col6": 4960039834428859787, "col7": -14863.338, "col8": 1683405330.677428, "col9": 57974039101802622.279, "col10": 19353920084990675.742, "col11": "2022-11-24", "col12": "2023-04-16 23:42:22", "col13": "2023-01-29", "col14": "2023-05-15 05:35:02", "col15": "O>5PB6i>NmB", "col16": "VezoSRw-mx0j6ye?a6/6pnEPl`$i#NMvQ(x+_s,ZJN9?.MK", "col17": "N%RxT2%Al_#SU<6TZK.FZa-.25+sb!hILyv?#fn^szkG=hO>G,A0`7pM/NskTuH1+E&G=K@yg;I8iUf7ONGj3"} {"col1": 181016402, "col2": -66, "col3": 30163, "col4": 1, "col5": 4495758931964433648, "col6": -8653734159677839442, "col7": 15644.355, "col8": -1356097265.535016, "col9": -89608254464744295.275, "col10": -42975241952851160.770, "col11": "2023-05-25", "col12": "2023-05-21 12:36:03", "col13": "2023-01-15", "col14": "2022-12-02 00:23:30", "col15": "IIywcqM", "col16": "T;)^_Mbku6CT1MIc0bD^#%2IaYOh@rhnrjC", "col17": "CpS3bbNX)rH#8Js5ieM<;5R?YBeE5/nUmmx7p~oY~=c/yfvRiASR*R6v"} {"col1": 1469934754, "col2": 1, "col3": 485, "col4": 0, "col5": 1224735581054006788, "col6": 6089508584939008713, "col7": 20772.271, "col8": -340537207.844391, "col9": -25669600080047259.795, "col10": 55365122064805386.858, "col11": "2023-01-02", "col12": "2022-12-30 04:14:03", "col13": "2023-05-24", "col14": "2023-03-07 14:05:07", "col15": "x4JeBv", "col16": "(o!sVg*!Z#dt0lF<*vxkfoK#1b", "col17": "D29^$!xZ)vz3.+);W", "col17": "(6t&$tmJvo`XL3s4z(t*P-~*+gau$i.NWn?VD&.`jFTF?0voTgJ)C7PgDj/_oiZw/q&A(u-9S"} {"col1": -731917057, "col2": 37, "col3": 6151, "col4": 0, "col5": 7777078010512157661, "col6": -2759816014023267952, "col7": 10645.079, "col8": 883698261.707048, "col9": -76310146256900243.312, "col10": -6973273195653891.327, "col11": "2023-06-18", "col12": "2023-10-22 04:11:48", "col13": "2023-04-26", "col14": "2023-04-25 11:45:34", "col15": "UXuOuREEJ", "col16": "l^rtqAEr4>ec.Vw;QBrajvx(?d07he1jyx-z.!(h`Ya&Zh?O", "col17": "VED-)l&4%vqo$g$hEMQZ=!"} {"col1": -951913828, "col2": -49, "col3": -19436, "col4": 0, "col5": -6614975947088839054, "col6": -2347794520629140789, "col7": 18287.795, "col8": -265026577.394333, "col9": 95136006648803303.130, "col10": 46455594961007726.578, "col11": "2023-06-25", "col12": "2023-09-08 11:02:25", "col13": "2022-12-23", "col14": "2023-07-11 20:33:27", "col15": "GD*~", "col16": "MlBbK%Y(G3,Q>8.z&KMwUHBt0p/m<6c!!xkI8L%9Pri", "col17": "h%LK"} --8368163552280161902 {"col1": 1769209089, "col2": 41, "col3": 31160, "col4": 1, "col5": -2575336798099083185, "col6": -883044937893669077, "col7": -19593.564, "col8": 732727904.190433, "col9": 24471993109695208.242, "col10": 7027799225935328.300, "col11": "2023-03-14", "col12": "2023-06-17 01:00:36", "col13": "2022-12-16", "col14": "2023-06-01 03:23:44", "col15": ")ysk+f.Rb;Mk", "col16": "rpXzdz#~NQOpWj8uq%$3Uo(7)2wSmy&XbeF~mpb80bhCN$<%UqoFQ).xInr)z1e%Wm)miFk/gPZIOC=DS=$-P-e~ZKT*Gc#n", "col17": "Zw/sJQD+!qGN&,V0gq!>&KcN-5HzygFJT(3%YCpX2p6GIkmQJK-4hkf^o^Gzo0"} {"col1": -1128656019, "col2": 38, "col3": -31755, "col4": 1, "col5": -2435632141806412164, "col6": 8136450037899463794, "col7": -459.44894, "col8": -831192457.489055, "col9": 97591785640602819.751, "col10": -62968590713393600.518, "col11": "2023-01-16", "col12": "2023-04-07 18:36:15", "col13": "2022-11-21", "col14": "2022-11-11 20:28:59", "col15": "-C?2=,2G1e^#Y", "col16": "9W$$AAoJo2lzO$@;&SOg", "col17": "BF=Zg9mC%Tk"} {"col1": 116046830, "col2": 94, "col3": -22557, "col4": 1, "col5": -1598164460844399072, "col6": -4158706534326890839, "col7": 24433.285, "col8": 2134151714.625505, "col9": 32526239216662343.382, "col10": 36428786060450888.560, "col11": "2023-05-03", "col12": "2023-07-10 18:46:30", "col13": "2023-04-22", "col14": "2022-12-11 00:40:44", "col15": "=AL", "col16": "nBEdvMoi&Ku%CS#9YR)1e)w&InunfqVq@z5%j97_AX2sH", "col17": "^3Lnzbz)b%j@!d_1I)@T;K,Qd#L)aCv*0U(Rnys3LLod%ZUxhCjt&7~gd5NW/ji+6Ay^d_b23=HfC&X0GqfS,vu#WV2/o;q1"} {"col1": -931769087, "col2": -29, "col3": 24745, "col4": 0, "col5": 3139286240265536402, "col6": 6172939574734784743, "col7": -9849.977, "col8": 144474395.964448, "col9": 74949219831536557.243, "col10": -61657785466666969.507, "col11": "2023-02-10", "col12": "2023-06-15 06:30:30", "col13": "2022-12-03", "col14": "2023-01-04 01:09:40", "col15": "MJ~0M", "col16": "7S3w*O`K", "col17": "f1<.Ruq+++&Lj1_yd)tT>PWT91>"} {"col1": 95091621, "col2": -34, "col3": -29230, "col4": 0, "col5": 2881528624934468265, "col6": 7807966468061685861, "col7": 12235.277, "col8": -952013846.37979, "col9": 8704675164427700.119, "col10": 22241492001285031.114, "col11": "2022-12-18", "col12": "2023-08-18 10:03:10", "col13": "2023-09-29", "col14": "2022-12-06 07:47:44", "col15": "cb-fe=HQ2", "col16": "ODws3EY*izfCOE90(2iFs7^BdkVssW7cg/k#pQQk1u,cOMReo/fn7@MJ&unJK5OI=>QVS(.7.JQmm3Ue61_WTcqwU@t<@r5qj,TJ2?L", "col17": "CpZMP1~/4GLggIi95mY%IiBHMb+iZK/3&J2+135ostS!jE,cpgIt3FGZ=!=b2ua=,wi+l.7#VU4(aUrSu^-y~T$l1eEi.b,S9Na&vIC)9E=P_mrOw_J$I;Ss?5h"} {"col1": 549081643, "col2": -89, "col3": -18860, "col4": 0, "col5": 2268837686650169392, "col6": -3564791349665118608, "col7": 5688.7407, "col8": 299803683.69027, "col9": 92982331476439301.594, "col10": -93330243753042154.201, "col11": "2023-06-05", "col12": "2023-10-08 21:25:31", "col13": "2023-02-20", "col14": "2023-05-03 02:23:37", "col15": "d=GDd,", "col16": "-hCK9Q%sfXLRfN35e1W`WAWi(A3s!+;wwL(hRvzT~Ipp`jAY%q8o-z(ueZptTS,Ua9?gt^y9Z8yQK=h#44s", "col17": "Up4HiD^Brz.),~KbbW"} {"col1": -1783476026, "col2": -48, "col3": -17310, "col4": 0, "col5": -7963598298499820103, "col6": 4904571652507647260, "col7": -10607.233, "col8": -1974193014.984611, "col9": -42459355958681098.454, "col10": -18238483948356281.750, "col11": "2023-08-30", "col12": "2023-05-06 07:37:46", "col13": "2023-02-08", "col14": "2023-09-27 21:55:52", "col15": "A,blh00/y,", "col16": "iOn`m", "col17": "9+5KWeLDsbd/&Uq+1-Ehvu2^S-RxzF>sTzA)dO76#CJ+q0b_W3%Vz8t(xi9$Pzr7XGmRC3qTg!qQf&`%Dd@I()5gfj9^+j_0AgHM?!I()c=li^>"} {"col1": -496454371, "col2": 121, "col3": -32536, "col4": 1, "col5": 5109585439962885589, "col6": -7561145607543036624, "col7": -1663.4861, "col8": -956519190.050091, "col9": -10288691912800152.494, "col10": 29496554612133109.983, "col11": "2023-08-28", "col12": "2023-08-31 09:50:56", "col13": "2023-03-24", "col14": "2023-03-19 20:42:21", "col15": "%+.U&gn<1ZU>Mf", "col16": "=Y$EVG,h-h23^r", "col17": "NR.ZpMOo%1E?"} {"col1": 1238201496, "col2": -10, "col3": 31686, "col4": 1, "col5": 1122137690708375175, "col6": 3751166452543437548, "col7": -15929.366, "col8": -209845314.081667, "col9": 82928606746951351.951, "col10": -24921390371752053.504, "col11": "2023-04-16", "col12": "2023-03-20 23:55:33", "col13": "2023-10-31", "col14": "2023-02-09 06:24:56", "col15": "I-", "col16": "J3iltfk&9#5Qc~44Xu@_f?^u;(7J", "col17": "J,>9sWD,HEb+f)sMZy,=e?YLj#W)CQw&Tryuy?2q!C&2;cNp4j3~95VzfeI9QTh*o~=y?!D0Md#6G;1g2$8Q3j5Eq%"} {"col1": -2126172544, "col2": -43, "col3": -30224, "col4": 1, "col5": 4477399578851748461, "col6": -8164663132923309779, "col7": 4598.504, "col8": -2145707155.719386, "col9": -16186361543705830.429, "col10": -70898288416135568.483, "col11": "2022-12-22", "col12": "2022-12-05 11:00:58", "col13": "2023-07-10", "col14": "2023-03-03 03:45:05", "col15": "v++#N", "col16": "jB/H(1KjyS,Y2-f`64cMz>$24^IOxrk~%", "col17": "DH3k3igl~`7pO`wlSAWbcAW&n^d#jy;6RME&e$6^bc/Sl(;kcBgpWt(17t/Q7%AP5l@MQm8BK8Saq=dqtSl#89iEyJF=5d4eQ*5,7RX!MW(O&4V5.ra&`wwkhoT"} --8130752084420850754 {"col1": -630784508, "col2": -107, "col3": -22332, "col4": 1, "col5": 2526767180146544499, "col6": 3669637146075805854, "col7": -2381.3687, "col8": 75875226.650256, "col9": -16215099298195794.320, "col10": -33531867113672142.943, "col11": "2023-10-15", "col12": "2022-12-26 23:51:13", "col13": "2023-10-01", "col14": "2023-07-14 10:34:13", "col15": "Y", "col16": "3/j4pBCb;)0fp(F45MD7@FNT=R1kj93(_4_wA5)vOYD!W#6LWF8", "col17": "&lOgTZ!dZ^,iG>4Ps!-)S+KQIOSClIaQYS$N@ei~(rVZwKb*7?Qzomi&K8GfdD1-hs1S"} {"col1": -520495782, "col2": -18, "col3": -10052, "col4": 1, "col5": -5500653227385262734, "col6": 2071128999812670433, "col7": -1284.549, "col8": -1758340715.165546, "col9": -40984045024860021.904, "col10": -69726335010103532.380, "col11": "2023-09-26", "col12": "2023-02-20 13:33:55", "col13": "2022-11-17", "col14": "2022-11-14 20:14:11", "col15": "tA&/#h_LkO", "col16": "*4WJcDm&K370&0pg7#s).g=_BsN9(fU3npbI0/!x,WIAg3;SqALl^~7Rx?", "col17": "ku^@V1&/5o/C@m1*?33C9-wNN?UQ+ax`g&UYfdlr+m)6v"} {"col1": -254305488, "col2": -32, "col3": -23700, "col4": 1, "col5": -6047527938938229808, "col6": -8390007357285860601, "col7": -4994.1514, "col8": -1938449016.468337, "col9": 34009355692319729.341, "col10": -49705304084897838.366, "col11": "2023-06-07", "col12": "2023-10-19 02:54:45", "col13": "2023-10-08", "col14": "2023-06-23 15:47:35", "col15": "L+L", "col16": "Zt)P", "col17": "fqxwKRGS,E8oDUevQ!TRV-a12"} {"col1": 1320721215, "col2": 91, "col3": -14366, "col4": 1, "col5": -4901320206869872612, "col6": -6734233068323413885, "col7": 3092.9668, "col8": -2128909677.420208, "col9": 91585706825195524.237, "col10": -18583607961702373.593, "col11": "2023-06-08", "col12": "2023-08-08 09:11:42", "col13": "2023-01-29", "col14": "2023-04-01 20:42:08", "col15": "R*%oyx", "col16": "+aq(16wM3z_Gbqra)J8j.T_drPtA_sN.vnF2-&JKv`PtifOZ..`zm6wP", "col17": "5,~$Gt=a&1wHdruBM),mb!a;~UdshW)Nd*-+nSShC(0MX0CynnazHS4U*ng#,<&Ys,B/Xb=?;.Zm/1./xOgBa"} {"col1": 81795598, "col2": 24, "col3": 28966, "col4": 1, "col5": 394278581012445475, "col6": 8538625659064010725, "col7": 3152.8525, "col8": -582541726.405779, "col9": 74628837758040294.322, "col10": 70855409169031646.167, "col11": "2023-06-25", "col12": "2022-11-20 10:41:56", "col13": "2023-03-21", "col14": "2023-10-19 06:51:35", "col15": "8zN?XTqrRsgWSTE-hq2gietM!", "col17": "VkB&g~;#eP)mzBF#6Y(3_wO+gRlSCvb_oH4IzGQtrF-LJVrE/^FPdN@ACS?o7Iz~+8/41D&rV&`"} {"col1": 1584719334, "col2": -122, "col3": -18196, "col4": 1, "col5": -3719741203767950872, "col6": 8275693320339631705, "col7": -21392.152, "col8": 84254794.270132, "col9": -88846332068119370.580, "col10": -64509349060859205.997, "col11": "2023-02-27", "col12": "2023-10-22 15:43:08", "col13": "2023-11-10", "col14": "2023-04-27 15:46:11", "col15": null, "col16": "jX5hB0vr%uqgmVY,_+ckuo_@<@N>rjV<%ow&J4QU?*U06h~r@kT@HB,b0fXU*#fyW.>6iiL!o^u*Xk;V0>dNuCul/gAlq?&O^/%q4?3`^Ku;"} {"col1": -1929296815, "col2": -14, "col3": -29091, "col4": 1, "col5": 2209692967284329947, "col6": -4467649585163870281, "col7": -28066.814, "col8": -1125999447.229004, "col9": -22573967746140374.696, "col10": -77244170296332062.250, "col11": "2023-03-31", "col12": "2023-10-13 17:39:26", "col13": "2023-04-29", "col14": "2023-02-20 15:16:10", "col15": "?`!+Ichf,4w;", "col16": "18O.M!HtHcPtwhzY*_JgpBqBwGX_PfEbo;AZ?H3xh~m&4ssjAQfi$c%H>hse0zz`Rej$GM4mKAsHub;X+PooPp1x&WDwKVQ>eI1", "col17": "$hJo#yv`YGqSzy7esvlz2mTr9g#,RXfBE-;ga.WmS?JIr==kx4eam`y8Xnj/!U;I$fOrK2,W>PDAEJkaZ35LM9hhWHAx6mm(uq2J"} {"col1": 419519048, "col2": 50, "col3": 28572, "col4": 0, "col5": 5109939873256684424, "col6": -5732498347084127922, "col7": -32468.19, "col8": -1737443888.096589, "col9": 73968231814261632.732, "col10": 43931705735412210.900, "col11": "2023-01-27", "col12": "2023-07-20 19:48:07", "col13": "2023-10-11", "col14": "2023-10-12 11:52:25", "col15": "_h%", "col16": "LE3vk3YdPS<%a@h,YBI&^lyt.+W,", "col17": "CA,wAaQsoJ3(USyxwejK43Qn0lazs5W&r-2N8Sp~(T0x7piIcs/4R&HXws>v((jTF_3a"} {"col1": -1581073211, "col2": -69, "col3": -26033, "col4": 0, "col5": -804312312636283370, "col6": -6625806106514412241, "col7": -29053.072, "col8": -1698261199.931556, "col9": 76451253322373236.900, "col10": 11769426737212010.997, "col11": "2023-07-27", "col12": "2023-08-24 17:29:23", "col13": "2023-03-14", "col14": "2023-05-15 10:54:11", "col15": "?*GQsppENz", "col16": "aaW4;dDES2~8!eT0$TM+=23", "col17": "u*n7(_rGh#5F&)yMsXd.nRd6~No2,+UsWc?;y+;)x(uqQA7*x4)rew#6U9yI^&!UAK32hbGSl=;gF4,k`eU7(aXaw8Q2j_#&3i&<>NAJYF"} {"col1": 1428826758, "col2": -33, "col3": -28399, "col4": 1, "col5": -6469244622958594179, "col6": 8335848240829608549, "col7": 1618.6619, "col8": -1903223955.308646, "col9": 93206268136712031.791, "col10": 89306733804707873.770, "col11": "2023-08-31", "col12": "2023-09-04 12:06:05", "col13": "2023-05-04", "col14": "2023-02-07 02:04:35", "col15": "!YW", "col16": "/", "col17": "(6m.hGHHlnXdK_`ZZ)YcreXek%Ytz)l=g*Ps)oQtGsF0_y17ZWLb?P,gsyU"} {"col1": -1069306143, "col2": -4, "col3": -8547, "col4": 0, "col5": -1383569491875123898, "col6": -8034778851940663966, "col7": -27188.469, "col8": 1926605339.570438, "col9": 46458896379925035.526, "col10": -94635160698411887.823, "col11": "2023-02-22", "col12": "2023-01-07 15:18:48", "col13": "2023-08-08", "col14": "2023-11-06 22:37:56", "col15": "p$BN", "col16": "!;Dy4P$X7F", "col17": "_KKaRhOuw;s,J$nS6oDa96EaYOry<@mBk_.B,_K-ckvEf8lQAjHh6j.J", "col16": ",J.~MKo4)2pg/R23DVNA=7Tf)J*Sg-s", "col17": "tq&IP/6U)Cxr%D20@z+kgOn>QZLNEL3rM4a`Yy^~sKbb-++RSmR$TZ&+s4y,el=.yCT>B96adZW"} {"col1": 985501155, "col2": -24, "col3": 21311, "col4": 0, "col5": 5527964666005317471, "col6": 6946948188736388580, "col7": -8703.959, "col8": -103891562.352326, "col9": -72256959944011241.745, "col10": -15805720823720834.900, "col11": "2022-11-11", "col12": "2023-06-25 00:53:52", "col13": "2023-04-03", "col14": "2023-09-27 16:58:07", "col15": null, "col16": "4lu5D#+1Z&7@8R1q", "col17": "cyNXc*5#q!p$", "col17": "Ky"} {"col1": 1596224467, "col2": 106, "col3": 9539, "col4": 0, "col5": -809051164961171210, "col6": 6250982782242314377, "col7": -26671.64, "col8": 56606733.145908, "col9": -80540802744766207.953, "col10": 77085717692287751.994, "col11": "2023-02-11", "col12": "2023-04-13 15:33:02", "col13": "2023-06-12", "col14": "2023-07-03 11:55:11", "col15": "3_", "col16": "tE9nr=yFH~l?QxREEq@#4NdI7AbN%jb-*uF<4l/jDiFl7%Hw3Ho>n/C%Wn;XQA-pUiNGUo6$84+MKhB#WZkimtAej"} {"col1": -1218975697, "col2": -70, "col3": 32402, "col4": 0, "col5": -5168465205297713683, "col6": -42506747499361319, "col7": 11149.558, "col8": -124984675.779518, "col9": -82155323751512945.216, "col10": -89459933378296748.604, "col11": "2023-01-09", "col12": "2023-04-16 20:26:33", "col13": "2023-01-19", "col14": "2023-03-31 10:02:16", "col15": "R-qvD+", "col16": "62H?H_R;SrrD5?a0LNWH~(5xwLE9=aXt", "col17": "QIqR?RRBaZ=.0EF3$p>_hD2_l)R%G^jvH`;gSz?*W@p,)>ddPiKr;o9)#45Us+j1;KXqqw?)$9XPBYjIQ-<(qcTdu>H)eN5?0oMzM)A%toAOGK$+6!``", "col16": "Rq`)B_wCqr~3D", "col17": ".-G1FfO_&y6ciUgItDFzp3^xj2wT)3,3YL"} {"col1": 949190741, "col2": -109, "col3": 23132, "col4": 0, "col5": -8107750618520010248, "col6": -6431170840840398337, "col7": -31010.111, "col8": 19577291.956868, "col9": -42853285297909894.649, "col10": -69573641063301319.816, "col11": "2023-10-25", "col12": "2023-05-21 17:21:28", "col13": "2023-10-10", "col14": "2022-12-31 16:39:27", "col15": null, "col16": "Y;VSV@?j+eHK0~CFokCe*r.$gq*^sqPIxHI", "col17": ",f>E=XC%CFYUP7&tvYjb%LJu#GDnMQP5.~)SQH0P-D;yaR5DiVr%<5ouv$YkhXeLAR@Ym1!vkwTZ2,8bUERr?MuA"} {"col1": 1527563124, "col2": 9, "col3": -25868, "col4": 1, "col5": -8331595583387132313, "col6": -6031385467825388820, "col7": 17599.04, "col8": -1485375156.20568, "col9": -16742871194598893.775, "col10": 66735741323698862.142, "col11": "2023-04-27", "col12": "2023-01-19 11:37:46", "col13": "2023-03-29", "col14": "2023-08-27 01:48:45", "col15": "RCFOt+1", "col16": "%2~aM)waci$;?$Y~?hdzsOQTTP+Zq2lipeXn#QC*u1@QX62!5-A7727V3LQ+", "col17": "70#?^Ow/rdFvrFFVDP@NtWebpxm;jgcl8#0QEyC`7v0rh<~2h@ofB$Fue"} {"col1": 2018260508, "col2": -103, "col3": -24472, "col4": 0, "col5": 8997678386359787116, "col6": 2451818178827354507, "col7": 4805.7744, "col8": -839371064.997656, "col9": -2820518180207585.420, "col10": -27518074549067322.799, "col11": "2023-04-01", "col12": "2023-01-20 23:26:49", "col13": "2023-10-20", "col14": "2023-08-25 00:04:01", "col15": "8iYzEiw7AMOd5", "col16": "0@P#6", "col17": "BdWm*QfNDS2ty?^cxcNgHxDda3rHiFvXbHrs;L"} {"col1": -1482004443, "col2": 102, "col3": -12999, "col4": 1, "col5": -6961079697649502866, "col6": 5857042070324174976, "col7": 14277.545, "col8": -1583282209.721317, "col9": -78563765934769168.374, "col10": 59319192883565341.984, "col11": "2022-12-24", "col12": "2023-07-26 04:50:03", "col13": "2023-09-07", "col14": "2023-01-10 21:29:43", "col15": "VaJH/X*K/D+w", "col16": "h49&Y9FGYt&D6Aig^lqbP)c+qDpi>R#$OlL6,gqY,", "col17": "&m+v03q6D@;Z9te5S)o8@h/2cGZ=Cpy*G6h8VOK9wSgH_(82bI~N96CfoepoO0`t`Rh_~BIPuq76R8ezFW>;z"} {"col1": 652276964, "col2": -54, "col3": -19502, "col4": 0, "col5": -2722052385324355445, "col6": -2372892998911631963, "col7": 17475.604, "col8": -1783374012.97851, "col9": 43667004322191647.526, "col10": 75072779420286165.380, "col11": "2023-03-15", "col12": "2023-10-09 08:54:52", "col13": "2022-12-15", "col14": "2023-09-04 07:53:29", "col15": "i,i~yA;2Zl9P7*", "col16": "7E1;FbW9.LRT1yBl>#", "col17": "AN@^I?9/?l/GllxiB)^&k*y/Hy,Epewpdy-mL~#Bh4*?NQ+S~y,X2rI9+$ws8l_./&ESS/&;ANFrN&DZT@"} {"col1": -627269573, "col2": 23, "col3": -8953, "col4": 1, "col5": -8611933685663538328, "col6": -8745338265499505032, "col7": 28135.436, "col8": 2058707064.219137, "col9": -19839219197164786.827, "col10": 55688732490232678.640, "col11": "2023-05-11", "col12": "2023-05-26 09:59:24", "col13": "2023-01-07", "col14": "2023-01-16 16:52:43", "col15": "pz7^U", "col16": "0ji0UC6", "col17": "&(?Ko0h^g,FULq(8DcTPXxO@`"} {"col1": -1974740230, "col2": 34, "col3": 22263, "col4": 1, "col5": -5083433021044869188, "col6": -6379889206909365694, "col7": -24358.887, "col8": -1581447038.60196, "col9": 1659553167832696.312, "col10": -74926401344917067.130, "col11": "2023-02-01", "col12": "2023-05-03 07:39:31", "col13": "2023-08-15", "col14": "2023-06-28 17:49:47", "col15": "?ckjkT$l,Ce", "col16": "Q85oUjT9DK=u1+sL#(e7DK(L3uSUNcHEbrjO>poN~U1V%HCndj`&GVPE1MvSnKyM0+rOlBcXzdRkrM#x8q$i-Vb#n@pVB4S", "col17": "=^^G7T07*EQfcOn6FhSzr=$X*!jPo5fP!uTLyQ@cZF).pS`^_rW9=&9hVOYifYjg"} +-9052855404401710281 {"col1":261079681, "col2":93, "col3":20178, "col4":1, "col5":2163705202391578899, "col6":-2190600110707822922, "col7":-7382.004, "col8":-1200294565.951719, "col9":-91960534868632856.281, "col10":-89949948257620846.844, "col11":"2022-12-18", "col12":"2022-12-04 16:19:09", "col13":"2023-10-03", "col14":"2023-10-18 20:19:55", "col15":"@i*~Y^&~Nw", "col16":"I&*/wB(4Ke-", "col17":"LTl)O&FsU0<4mq5_a!VkB(dy"} {"col1":293498095, "col2":-121, "col3":-25965, "col4":0, "col5":-3576656064125326132, "col6":-5657804083675264268, "col7":-30704.178, "col8":-904104728.103341, "col9":-3159432710175410.370, "col10":-45496500895008845.756, "col11":"2022-12-08", "col12":"2022-11-19 03:19:20", "col13":"2023-04-19", "col14":"2023-10-01 09:10:42", "col15":"M1/gn^", "col16":"3e3^nd>C*R&P-K`Q(/l#S@p#~VG6N8bakqb!6JOCPi>OKf@FyVx2v!E_GzXS&iI_rvtU3@nH~~jWu6@%4>", "col17":"ECpA8MXR9"} {"col1":1891310032, "col2":-26, "col3":26695, "col4":0, "col5":-374125000529149443, "col6":2171945590552452381, "col7":1041.4928, "col8":1273785834.848136, "col9":97681462870233953.548, "col10":80612975133223453.920, "col11":"2023-03-28", "col12":"2023-09-23 19:05:17", "col13":"2023-01-08", "col14":"2023-04-22 18:50:43", "col15":"EC><,k", "col16":"UuW2bFgOk", "col17":".yuEbs~=_md6Q=p_rC#4rM5Fv>2;)`1?vo@o*OHlmw%w1yqWi&8heNZ?~8!C0qL"} {"col1":-741198949, "col2":-125, "col3":-19192, "col4":1, "col5":5676011356690276916, "col6":-7208944717181851294, "col7":-16968.037, "col8":-172360599.036606, "col9":11062817494936380.754, "col10":-20473655271393218.620, "col11":"2023-01-05", "col12":"2023-06-05 05:32:43", "col13":"2023-09-25", "col14":"2022-12-11 18:46:30", "col15":"uo*`,0x4WusV8", "col16":"YBjQda$7u07noHXpbBeAqy^0Z~K5eC*l7NE8r`O^-*K3H(Q3c1i1R%FZTC-#ol`8`.uTDxsBrtnv~^41TTL,f-#Nx=fx1)U3#;9K=osN(BCPa/VJP^yb=x-wC", "col17":"$Uo7qZ)*QOk#*nXua`~=qi4*+F-DcC+~)8y#C6+UzS;8wr%?omo(XHQ9$C;A)a1Aw%T", "col17":"hv6lk51=2%oZ~k?s?jbdcE92t;q^*11S5Gni&", "col17":"h%EzOW5YYzGlD+#n8sn"} {"col1":20035609, "col2":3, "col3":15349, "col4":0, "col5":-822097466612981862, "col6":-8411765013373638349, "col7":31527.754, "col8":-563702334.28447, "col9":-73307201008760924.624, "col10":41041091789555799.240, "col11":"2022-11-28", "col12":"2023-06-13 08:38:26", "col13":"2023-09-11", "col14":"2023-02-24 05:04:10", "col15":"k<,$", "col16":"8KGA*R`O`xc4ahsU,OfQF8U+L-MYW81RD@q_vBkcCAU=~)%kzq>I419e", "col17":">hq0RmfoN8GY1KhcX%8kSVgNepBIx=64zIC5w1cd2)@HTg"} {"col1":681801015, "col2":33, "col3":-3520, "col4":1, "col5":7366609877737053742, "col6":-3161246756640427052, "col7":-30325.709, "col8":305541624.015199, "col9":-68808724306427475.611, "col10":-27445248172763847.371, "col11":"2023-01-23", "col12":"2023-09-01 22:06:09", "col13":"2022-12-04", "col14":"2023-08-31 22:26:56", "col15":"9~jInZTijOl/T", "col16":"t,BiuEz/IOh;/5Hgs^*toL%e-"} {"col1":-763764922, "col2":43, "col3":-23399, "col4":1, "col5":783989712103186350, "col6":4083110528859476183, "col7":23241.365, "col8":1995148265.406853, "col9":96770525970445251.550, "col10":-85979799906620535.713, "col11":"2023-09-25", "col12":"2023-06-07 09:35:00", "col13":"2023-07-19", "col14":"2023-02-04 03:54:25", "col15":"Z~$?K=)T", "col16":"%0Z7_jKvdtrLWiMO2&Q$>Jo<5zh`.sd0(YWT.~Q`-B/q7,up>lw5PAA+B?h~PAfqH1d", "col17":"^*Zk4=6jLr?;fmtbcE/?y5s$*_-bmXh#H_LT>ua>2H&Bv%#e7lKc@k-;^Aa7ukG/VI6TR227%h?LT+(_v", "col17":"6TIVHg^HUKpnL(vb%EUwGhk3;)"} {"col1":1370312656, "col2":41, "col3":18715, "col4":0, "col5":-3758233030181962206, "col6":-8987717996655162408, "col7":-31457.508, "col8":-1708794275.366794, "col9":-94588829972275923.445, "col10":3986165881623729.357, "col11":"2023-08-11", "col12":"2023-07-25 18:20:01", "col13":"2023-02-26", "col14":"2023-08-06 11:27:49", "col15":"@DS1", "col16":"T?bB7tU", "col17":"IiQ@J6tX~sm^jG.r&swNrVk1-2ONnvC5Ig(XkMI)X%@DxZbPkLG<84l_F0*kDbpId.dd@d%Tqv"} {"col1":-1169184786, "col2":71, "col3":31927, "col4":1, "col5":8390345726239927198, "col6":-7481515861580930114, "col7":-11882.879, "col8":1647353218.839473, "col9":-83496988101917566.310, "col10":8002364419087947.937, "col11":"2023-04-16", "col12":"2023-09-18 23:39:33", "col13":"2023-11-07", "col14":"2023-10-27 03:02:59", "col15":"=P", "col16":"62_"} {"col1":-1095228497, "col2":-62, "col3":-14579, "col4":1, "col5":8678662247688949464, "col6":2327812601777741478, "col7":-18123.812, "col8":1567963893.234542, "col9":9922994714498675.274, "col10":23455293548273884.488, "col11":"2023-02-23", "col12":"2023-01-05 12:37:47", "col13":"2022-11-13", "col14":"2023-07-28 23:53:46", "col15":"r1(NqlNf", "col16":"T1xKVofKWBof,<%7t>C;wtY<>3mbn/epHN2=GxB+(/*nt3YK7TLM,I14_bD@ZXu-2zy#l0j", "col17":"i~kdqVPVc+;_oW?-LRLh;FnQfLL?ieRtZ$WJm?blsQn32p6O@$J%cjb%nZTC.6m>w;UI<%)EB+n"} {"col1":577259683, "col2":18, "col3":-13537, "col4":0, "col5":5778440245350381673, "col6":1729667696812540134, "col7":-29986.787, "col8":462696869.740925, "col9":-64242297078135876.710, "col10":-34110060920083841.600, "col11":"2022-12-13", "col12":"2022-11-11 00:41:32", "col13":"2023-04-20", "col14":"2023-10-19 18:35:25", "col15":"k)W4Wbt8", "col16":"F<0)FFx0Ay&wdY%rRE#>t4QOL(pTd^BOW8@~KBXCvXgQ@20mrzFPd", "col17":"-WOU+(8-*I<*-F;U.4MF&Y>n*xNAbLHf/l9K_BjIdK;0T-&J0$DumP_scfWr!tpPd@g=/fyD;C7vV8&j>F/AC^r5^,t+pid@P)&^=&?g`?*iJzsx4k=<<;aqi@a%f"} {"col1":358052123, "col2":-20, "col3":-995, "col4":1, "col5":8462498483626768535, "col6":-4579777337458835014, "col7":5497.2812, "col8":-1675121192.209081, "col9":-55228000464087729.376, "col10":54075338566731730.689, "col11":"2023-05-09", "col12":"2023-08-19 11:53:12", "col13":"2023-01-30", "col14":"2023-06-08 14:32:40", "col15":"z$8+gBbZ", "col16":"0;^hCNKLqx=)", "col17":"QH=1=ezdz`3u@IwXC~q.Hjo5Tch6LPfj_$nX>*saEQU.Oz(cL.rR*iuahbYnb*0C4*G0``Q^Nd0RPP$vhA&95q)X<(a.PfZ,H>GHG=LjhC9G.-8!X", "col17":",DvFSRv&Ez!GJrEo1/;Nr,*Qm*_eV7S(CesYSTt3v_w>NRew~3h(IrQQ"} {"col1":196725014, "col2":-24, "col3":-13427, "col4":0, "col5":-7375318581248960057, "col6":-2543965274523748861, "col7":5780.991, "col8":-694770524.546083, "col9":-76123002210744723.992, "col10":-47697265631521692.335, "col11":"2023-04-24", "col12":"2023-01-08 11:35:37", "col13":"2022-11-13", "col14":"2022-12-03 12:55:19", "col15":"0KC+u_$>", "col16":"i@-@ASL*~~/iY)1+$rL)*DEk<Z%kd&Gc,s9FlWo!42P.yo_VO*Xewr$C@b?b8;/f-_7G=w^OX$m5#6*", "col17":"P+dMU%2GvWo=*+_U$#N871~QZ@pzc,~lLCYiY)~k"} {"col1":-688049528, "col2":-35, "col3":4321, "col4":0, "col5":7245845458805220394, "col6":3912116986726525719, "col7":10877.681, "col8":-87511596.70815, "col9":27431649310089463.872, "col10":53000349361497028.867, "col11":"2022-12-14", "col12":"2023-09-10 09:56:23", "col13":"2023-04-04", "col14":"2023-01-17 18:35:42", "col15":null, "col16":"%fS1#RR47;vSRM%nZorS5_/xpu.@SM.~5klrRc)^e;dFK@N-bkA$(NAX&-0Vu1LrvZ.cBjSFfYwOKQy6C!qVPw;arKX&W>p/w-P-*ZxmrLy", "col17":"o7(4@cOp3=~p%l7+23)~Jf5vb$t@yCV@CfjrxEvB`iJT0q;-)XCuX#h/6dAOP$%0fH0deJ8%DNNeH$XZ^C!Q="} {"col1":-1474368615, "col2":-21, "col3":5177, "col4":1, "col5":8174349037021096782, "col6":2571804249862798292, "col7":9933.032, "col8":-720750366.940295, "col9":-8590320354503227.221, "col10":-94099543687278644.814, "col11":"2023-03-03", "col12":"2023-07-11 13:00:08", "col13":"2023-03-29", "col14":"2023-01-22 03:42:30", "col15":"9gn!5C!BvEP", "col16":"X)1XT$`l2Lkr93E&?A?GWlurNp//;jSuTw>l6!?", "col17":"+<2ZMd=Xd0Q<2KT.%!K.Suj45?_lTHL3LptTpI^+(Kr8P6wx&(s8&"} {"col1":-1693846609, "col2":-73, "col3":9118, "col4":0, "col5":-2985094276774224395, "col6":8805992256826989074, "col7":6244.1, "col8":1813143653.166, "col9":-62764692014561863.442, "col10":-38325067730370117.681, "col11":"2023-09-07", "col12":"2023-01-28 12:49:35", "col13":"2023-04-18", "col14":"2023-01-17 20:14:35", "col15":"d65uY.r", "col16":")A>je?_.Gt<;n`w51eCBOWT-kR`1ASIA", "col17":"hQWT,ge>KGm#zleH67$,`Px&A`N*kPk.ZqkO!4SG~-x/9~x*+tmgjmK", "col17":"M=_wY3E`(,i21pX2tO=f;oHS6n5,1@LU+iPFypM2zE(+(>k6XxzUqU*OTtx#!P5k++x@p60GAA>D0deaeDV$@N0R5"} {"col1":519727040, "col2":80, "col3":14429, "col4":0, "col5":-617879460517437411, "col6":-7165327641490392420, "col7":-13084.128, "col8":1970316910.765143, "col9":-93976002804076259.534, "col10":-32558524385546329.363, "col11":"2022-11-13", "col12":"2023-02-16 09:07:20", "col13":"2023-07-28", "col14":"2023-01-08 22:38:58", "col15":"XsBMIBa^FI!d!", "col16":"pePuy7bPN&=l)?;@l6NJ7/V0Ukt1ubtmZMI$(d;ozN3!>1x2DDo>MRifl;4T8d`2_7R76B9&lePU^UK#$M`&ySGkb;)!x", "col17":"qY/@=?,a0!5EDHD"} {"col1":564937758, "col2":-10, "col3":-19719, "col4":1, "col5":6205568508580489074, "col6":-238554161903590528, "col7":-8137.3535, "col8":1023623642.337226, "col9":-2362569962650581.821, "col10":-68775335337492456.403, "col11":"2023-08-28", "col12":"2022-12-13 09:02:24", "col13":"2022-12-14", "col14":"2023-10-02 15:42:07", "col15":null, "col16":"B)a?p0>L8kL", "col17":"zvS`nT$&kYjuqvx6SM0>h*lkl^`~s$^LmTQN~*B^qdyQF^`Ofh~L.GJ5@Bvc%X>akZfc$9Xeabk1FOw1fJI@9-U-V"} {"col1":1914314437, "col2":14, "col3":-3885, "col4":0, "col5":5289140208274800927, "col6":5523134939016922802, "col7":-16044.735, "col8":-531461112.058018, "col9":20859664695767945.768, "col10":-95844141490303829.980, "col11":"2023-05-12", "col12":"2023-08-10 20:49:23", "col13":"2023-03-12", "col14":"2023-04-03 10:12:58", "col15":"THW", "col16":"0L35Dot/95xSb1igaBQY#jCm&q%c/MQ(2(0-sufN>BmBlt-`^L4rN2hH6D&Xy1Z8kY$>t5Z(,h1i4l2gU8e", "col17":"w`)of^9_@N=DZsU##xMKBfYAdm`fd=7V"} {"col1":-1700382114, "col2":115, "col3":-6204, "col4":1, "col5":-4126342125777344756, "col6":9054982454557719308, "col7":-19103.875, "col8":2031018782.572868, "col9":-83553942298914702.482, "col10":58591672291818154.504, "col11":"2022-12-12", "col12":"2023-09-28 14:22:44", "col13":"2023-03-03", "col14":"2023-06-25 13:19:15", "col15":"BV", "col16":")jJv", "col17":"EL_I^2A-KD9P^n0VGfY.DapPaHP4b=3QCZXQ0-zW@Nl$KVatwNIEs.fwG07haAK-w8kg>QA9*Q&Cq=rd5J=iOj,4b6T`YNn$!ToQlF/R-8~9-sE?mcNekAWsxWhyy="} {"col1":1976188027, "col2":39, "col3":-20199, "col4":1, "col5":54838796530721045, "col6":-4199157709856370965, "col7":-20633.107, "col8":-1314405206.528385, "col9":-17838244458606850.919, "col10":13993039380882130.769, "col11":"2023-04-28", "col12":"2023-07-21 06:48:51", "col13":"2022-11-14", "col14":"2023-05-29 15:07:03", "col15":"Z", "col16":null, "col17":"aMm_kYB`6gpU2h;uD&8/kw3X"} {"col1":-439380020, "col2":96, "col3":-17308, "col4":0, "col5":3579043460080517561, "col6":4240896818074065205, "col7":12152.55, "col8":1198053802.322113, "col9":2562915342156503.474, "col10":7583328329290118.446, "col11":"2023-03-31", "col12":"2023-04-17 02:55:52", "col13":"2023-03-19", "col14":"2023-03-29 13:17:27", "col15":"0&P0_,,9I&dn", "col16":"HTtzP,7Ob", "col17":">!M"} {"col1":-457160013, "col2":-87, "col3":-32076, "col4":0, "col5":2962490776305786988, "col6":-9219898190360409591, "col7":4773.356, "col8":124168385.283727, "col9":66564244852109284.538, "col10":-17698570145691684.721, "col11":"2023-09-09", "col12":"2023-05-12 14:33:56", "col13":"2023-05-19", "col14":"2023-08-07 19:17:09", "col15":null, "col16":"nsqUTDXMfOqg!S7C97`49QcZ4Os0TI?g6E2#J/(fV>(*X_Q`(6Znf?h$PS4u8NFcB49IFq/mgNAJX~p-C~4.", "col17":"0mntxHvG8zY_", "col16":"ca", "col17":"v.@WpiI1+`>Bj#II4"} {"col1":-1135173592, "col2":-24, "col3":12059, "col4":1, "col5":-4173609755187683516, "col6":9104229668324434517, "col7":-18978.926, "col8":1538129083.152786, "col9":49186343729636745.231, "col10":-7234568807819447.144, "col11":"2023-06-14", "col12":"2023-11-09 00:22:59", "col13":"2023-01-15", "col14":"2023-07-14 13:08:52", "col15":"(~twE21C", "col16":"o?XB9l_e*+?3UZH_qGT7/r7F4~rr1$k%;eaEMa?r4@P@jk)6P>XxpFY2(q9iiV~fm7eEP5oN<#zlsw~wji"} {"col1":441268110, "col2":102, "col3":13250, "col4":1, "col5":8597594907679023161, "col6":5667613937641491367, "col7":29102.045, "col8":-319989982.17985, "col9":-81087716870785483.143, "col10":-64800115883130558.550, "col11":"2023-06-02", "col12":"2023-10-04 21:25:45", "col13":"2023-03-03", "col14":"2023-09-23 07:27:31", "col15":"G-48d", "col16":")EWS(!Qtciw`^3x;+Gu,Qr", "col16":"tuV0Ia95UN4WJ,d>U,gXIq+AB&FWl@+ZIZ7n1(t.!rozlH3)L$I", "col17":";rwx#I@!I9>KNEo-e3~u2!Z7"} {"col1":1972978288, "col2":-50, "col3":-6168, "col4":0, "col5":-4179719101679261778, "col6":-5658599518714090609, "col7":28802.623, "col8":246142051.324034, "col9":-36754206589235888.236, "col10":-89884930143982612.342, "col11":"2023-01-05", "col12":"2023-03-15 03:20:04", "col13":"2023-09-07", "col14":"2022-12-27 21:53:40", "col15":"id>=nmLO", "col16":"q)ImOZMO-%"} {"col1":-857517907, "col2":-13, "col3":-26169, "col4":0, "col5":1324801886191525419, "col6":-633990266050297169, "col7":3735.309, "col8":789053200.026963, "col9":-57720955152670311.476, "col10":-8743840658043643.960, "col11":"2023-07-31", "col12":"2023-09-06 17:05:54", "col13":"2023-06-08", "col14":"2023-03-14 17:52:11", "col15":">rSQBh-<9$q~1/", "col16":"3=mvLVLYK#5M_mImzbf$m4pjO?xqaMnD3%Wk6z9!?VK>asTqihfTun&?rjnV@hCKqNFLZ!t?Z,$I&0VO14W?.$Ifn", "col17":"3$*wLCj/g;FeFuL?1)xDf1qi-2pC34-nHU*wrC"} {"col1":-794984628, "col2":-123, "col3":2770, "col4":0, "col5":-8407115878675052393, "col6":6290621142790299283, "col7":-20395.217, "col8":964838226.951184, "col9":62168795366363553.685, "col10":3990660931483287.956, "col11":"2023-08-01", "col12":"2022-11-15 03:39:25", "col13":"2023-05-22", "col14":"2023-01-16 06:11:45", "col15":"aBBlJ&qLR/", "col16":"j%jpN=i9M(qm~P6$lrFZX#%K/V,+lKT8PLo7S=nBDaW+%k", "col17":"SBYA;xsw12%VfP3h@H#t%K2217huCI5%Xzl7/uVQyqEDk+iuY4CfzD4+#n4o"} {"col1":-96204677, "col2":104, "col3":-25072, "col4":0, "col5":-495962334761368972, "col6":8827206595048036803, "col7":-11482.668, "col8":-1689118748.978966, "col9":67715972226386452.885, "col10":13169427423288280.809, "col11":"2023-08-15", "col12":"2023-01-02 17:50:30", "col13":"2023-07-23", "col14":"2023-08-06 21:07:43", "col15":"_ZVEgU^HRmfqt", "col16":".o2d+YKh6g42*c#", "col17":"_L!"} {"col1":-2115935053, "col2":27, "col3":-19348, "col4":1, "col5":6444729399502953215, "col6":-7824339815255256852, "col7":31207.164, "col8":-1416336003.514647, "col9":30769340447285264.393, "col10":-16602275863253066.303, "col11":"2023-09-03", "col12":"2023-01-20 01:35:08", "col13":"2023-06-14", "col14":"2023-01-16 04:44:31", "col15":"h", "col16":"_uZ^TAbpz$&E>G;g7Ke/", "col17":"qAFkpQ29_t~6-$W_G$@qi6q.wZ_l~O9gBk#aIkHjxu>-`~$Ur@M~VF%l.otQqlsdt-+c*/"} {"col1":-388835131, "col2":53, "col3":1173, "col4":1, "col5":1058814101912670358, "col6":-4766475424119347961, "col7":-9593.519, "col8":-2026900846.597067, "col9":32638844755892053.680, "col10":74267061673690142.256, "col11":"2023-04-10", "col12":"2023-01-23 06:01:37", "col13":"2023-01-05", "col14":"2023-01-10 20:32:45", "col15":"vatM?TjC", "col16":"-czPSz7d;hzG%`_L^Lh(iQR_TjXjNJu=4-pB20qcn@s`b&BXBJE", "col17":"ZC1C1b7bXzPw8eL$aQK!sAs+3mH~xq.Y,4sAf~aI!VrfJ!rEm9#g;,?(WY5XrY$Hu9ieq1JfeuoJq+?P0jB0tI64sM/>#E.kBRZ>E_%J`kg$iXvES2KqpLpF&Q>Cxm=u1GkyT8X(;^YVvxgd3ukoX<@0=UE=^@Fy1,3ZmN5y~gE179^6s=z,*X!"} {"col1":-890641036, "col2":-108, "col3":12687, "col4":0, "col5":5992849989632294216, "col6":-509868396952444310, "col7":25711.898, "col8":-155735546.802502, "col9":30165578514147105.800, "col10":-8197414077466183.531, "col11":"2023-05-22", "col12":"2023-08-29 18:34:13", "col13":"2023-05-16", "col14":"2023-03-01 21:45:35", "col15":"9A3@>H6t", "col16":"M2-d-@D17CX+$Co8K`<0TLns@%#PT3ZS(8JrM/2)lO~-9N~`AGr^!mg_I=.d/9GNP", "col17":"8/e,sjJC%Nb<.XIIkQEES~Is9JMzf-cUXnln.=;T@;d#K=TsahgOL9aJ+F!zDCEBBDDBo0d^BJjO(Pgm4X^x<@He,L;e^KJ+oLBp`(l-BHC70G5*~-"} {"col1":-214174654, "col2":-66, "col3":-26315, "col4":1, "col5":6675376020097387538, "col6":2349535819201158151, "col7":-2783.544, "col8":897715524.600938, "col9":-45965025270498650.974, "col10":-67730060493155209.887, "col11":"2022-12-15", "col12":"2023-11-09 12:10:53", "col13":"2023-03-18", "col14":"2023-04-16 19:23:56", "col15":"r4Y@2Ih#", "col16":"a>,4Qp!Y,o+~a4N_.rE_2eIhsgTH>vX(bm~3l$vdJtrnp@?pMKp_IBASj!i!*ruZ*3iMOWChwPRybRUmEbZ,s", "col17":")l+^jtn@MQLK*9a7G)MfSKuY8/=G2DNh0f>d%oCIq>!(.7YqV~yWmi%+pwWLRmU88TZI-->Y#"} {"col1":-2129952087, "col2":-126, "col3":-2059, "col4":1, "col5":-8837074953586926207, "col6":5112551742375942421, "col7":-6595.1167, "col8":419447242.935179, "col9":-92635600957786296.964, "col10":-99426600244345493.224, "col11":"2023-05-17", "col12":"2023-01-04 14:05:29", "col13":"2022-12-17", "col14":"2023-04-30 14:43:23", "col15":"-a", "col16":"Y@OQLeFB!n`xo?@hDQ(LQfTb^Ay_!Smggqhg%fceGJd", "col17":"/q-IbTh@0v-)i*,XOo1j>xlzCp2!-eN-giu(P7^aK#uk`,/yzbS"} +-8584330716254438722 {"col1":933995213, "col2":1, "col3":3267, "col4":0, "col5":-5550829509029152855, "col6":-8797152448685401671, "col7":-6807.821, "col8":1881218185.650995, "col9":44837386411291788.739, "col10":-77744549308538297.360, "col11":"2022-12-26", "col12":"2023-08-24 18:48:11", "col13":"2023-01-30", "col14":"2023-11-03 12:45:38", "col15":"4be", "col16":"1=)tT^~uN(d<%FlwM;`JYpKWzB<+x.PFYfbh!X9EElGf1&bba6;;i2iMz/2Kp_qh$-I^L;3?Sl"} {"col1":-1333802234, "col2":43, "col3":11242, "col4":0, "col5":1196312694517239929, "col6":6213937979195932063, "col7":12792.475, "col8":1428325473.834884, "col9":-62192826868698867.216, "col10":-93168441979234449.692, "col11":"2023-09-02", "col12":"2023-11-05 11:46:33", "col13":"2023-01-08", "col14":"2023-10-29 05:00:38", "col15":"EN6$dzs~(d53", "col16":"uEL)aj7RcOy2B>akn", "col17":"V.GohGHLV6J6/(Xx?9(7fB<_v9TByzA?7?6Yw$PhvyuFfYk^&DGstDc>KG3UqcU!.m;xm%@LE+gEsxk(/Pbbpw?"} {"col1":1086518829, "col2":19, "col3":8050, "col4":0, "col5":-3082049133083595029, "col6":5683422793173472738, "col7":-2291.2551, "col8":-432505729.081493, "col9":-47674030032621905.804, "col10":-80490934942919187.814, "col11":"2023-06-23", "col12":"2023-04-18 23:49:15", "col13":"2023-10-05", "col14":"2023-04-01 08:55:04", "col15":"#P-Bqu", "col16":"<,F@^IxJCX,4#vmwXV2ShV>C2mlige5>NJT.,/T/~@LOKo3cF_=^p", "col17":"Z.Hqh(h3Gl7V%5L%(kk7E37w/Go8wFJo?fBOhlH,qP#gA?HMc)E2psS/8J.Kj/5H3*J>y69SflpRdW>kk5U=Wi;ih,H3L-/5H8ZAh?", "col17":"9G!&Shr?TRk=c;0MmBkB^ctv3%D_(zKTH"} {"col1":-1331045850, "col2":56, "col3":-31044, "col4":1, "col5":-7244667617013002360, "col6":1902503764317765481, "col7":-25882.256, "col8":-380049302.431098, "col9":-9606911474006002.109, "col10":17328632045627481.982, "col11":"2023-04-19", "col12":"2023-05-27 13:22:43", "col13":"2023-02-13", "col14":"2022-12-13 04:36:42", "col15":"4C`o>N#W(XW)F.M8UuUtJLRU8%S7T6cVK^5x^DY-Lr=8V.LyxYo+9uJ6W.9)t9k_(t@V.BTcR8i+", "col17":"Iul)yq?wr*jT~A&Xw3eC)!It21loq%CSn^Im)$t/-ye4SweU1!^S?t"} {"col1":-1125037299, "col2":82, "col3":-22808, "col4":1, "col5":-8303816131517042997, "col6":4386623234696664296, "col7":31390.795, "col8":-321331979.556449, "col9":-9500951408855814.912, "col10":-15572524372861648.542, "col11":"2023-04-24", "col12":"2023-02-14 08:58:45", "col13":"2023-05-26", "col14":"2023-09-15 23:55:02", "col15":"3&@", "col16":"h6tMUgR4ZgYkbTaz3l-cZqOXH=$c0$eVnBq~Z`/i-OIcycC?o!,Tbp/%", "col17":"~rMw9K?15@l`?G7zbS;w6D0-l0oVmD.G<#ZjEEw)j.$#RVLAW`/XFk7--,~z;2b"} {"col1":1558710429, "col2":12, "col3":28523, "col4":0, "col5":5442602451983227812, "col6":5264019481572723786, "col7":30198.125, "col8":506413823.027176, "col9":45601850479542885.984, "col10":-13258345057980610.190, "col11":"2023-03-14", "col12":"2023-05-08 22:21:46", "col13":"2023-07-05", "col14":"2023-01-05 03:50:50", "col15":null, "col16":"uHkiv$KU)dNI6W8DU?>>zIIh^.^)Qjpr2ppOZD!?6,)sOBEFe%a4w4skFT4rk", "col17":"S,Xu`uz3QhH;COFcN9*6PnsH)Mf4%GW^OV/#xce)*BANp@263aBjV2?qIB-5$^Q/>Hv6%~ph"} {"col1":610229798, "col2":63, "col3":-23158, "col4":1, "col5":2607349881852175976, "col6":-4831004874800938260, "col7":-21914.416, "col8":-2107006238.699932, "col9":-13894840376099276.889, "col10":49077690290463004.191, "col11":"2023-11-02", "col12":"2023-07-29 16:40:01", "col13":"2023-04-14", "col14":"2023-09-11 12:24:43", "col15":"StJUT(wB>@", "col16":"y(@?NZdvk3O3axN-AN=ps9=!~^5apnzz!RW.CZzs`4&%l5p0SY/>)/%t#.ZXpJfgj>^d_FGhtphZ$P-ZY?;/", "col17":"oFI/=&hVVm+Y7MJssb&KP^M7GQ!+)5`.CNOZRfqwR$1S%cMZW!Os$(+rfJB&###*Pg)uDu,IdFK)DpOq"} +-8526590106902518025 {"col1":-2135397004, "col2":94, "col3":-29670, "col4":1, "col5":7090872835518711333, "col6":-1916621235651057979, "col7":23394.068, "col8":1655037893.333014, "col9":-36143234288746464.456, "col10":-61754523073078713.138, "col11":"2023-10-09", "col12":"2023-01-10 08:53:04", "col13":"2023-04-07", "col14":"2023-05-09 07:46:38", "col15":"1V97aoL?&c!o=", "col16":"GjA`VBdRgX", "col17":"KgFF&je5+,NvGEdAz_;dufCth_a&5,gSu~orh%)pUn1FyV+5,cyA(Yw"} {"col1":768834811, "col2":111, "col3":-12368, "col4":0, "col5":6987671692766035939, "col6":-7494881589590755673, "col7":-11690.967, "col8":-800701084.768676, "col9":85704989772506616.614, "col10":49389328660634750.811, "col11":"2023-10-26", "col12":"2023-10-06 18:51:32", "col13":"2023-05-11", "col14":"2022-12-08 01:37:15", "col15":"n&JJ$4r4K)8Q", "col16":"W&x/kQI;(P/PQ`9#VVbW~Ouv,vI", "col17":"fa)$MGzGg"} {"col1":-1823219684, "col2":-12, "col3":26992, "col4":1, "col5":-1836403498572963938, "col6":1722310216718493557, "col7":24048.455, "col8":1916478884.258523, "col9":-99164804684678355.416, "col10":-91191031383207337.116, "col11":"2023-02-20", "col12":"2023-10-01 18:54:49", "col13":"2023-02-06", "col14":"2022-11-15 12:19:11", "col15":"LRU?R2&pR9H", "col16":"2_%90#WoB//HfXMKVl7ssi1Kg.$uZtbpR6Flbn+XO=<92;Vb=3Aq/", "col17":"a.lBcPe-v&wALCzy~?~mno?9LeLdec=K-_7Lh,9.UWsu@T"} {"col1":2046878137, "col2":-45, "col3":24125, "col4":1, "col5":8733335759463317387, "col6":-4889254601679646071, "col7":-1522.2361, "col8":1772345507.502007, "col9":-4765781927035297.105, "col10":49534300407852204.210, "col11":"2023-11-06", "col12":"2023-07-01 02:40:28", "col13":"2023-06-17", "col14":"2023-08-09 11:36:07", "col15":";WRfOM.%/G", "col16":"hUfxWQK%VuMWj=k.n

f8M?e_IifBVczWQR<%b#x96h", "col17":"9ORK=%nvv7$j;+?!=/"} {"col1":1931749918, "col2":-61, "col3":-26023, "col4":1, "col5":655886868675975318, "col6":-6228523992121274715, "col7":-30416.277, "col8":404494499.593156, "col9":-90704723127910362.852, "col10":-48830702924564917.200, "col11":"2023-03-22", "col12":"2023-03-30 14:30:20", "col13":"2023-06-25", "col14":"2023-08-03 20:58:14", "col15":"1", "col16":"w0XlSO`^~3Mc8`J_AZ$kD-9.eZbvk65/TZkg8fU!4yciWdSUGfE?+cJ0yEI8I+f>O@en+%I%1R!ccmY", "col17":"nArT@GE)iq0,`KrBS9uyh#*Y.T=ACL.m>^xc-!ZvF=VH@v1E$K;iR_Z=z#;5~~/s&/>s)-d=Z!t%s=UY/fMQ~6IE", "col17":"w)j>29dIuV0;P13d#*("} {"col1":-784154300, "col2":-62, "col3":-25126, "col4":1, "col5":-4498219135499881772, "col6":6856401980615832763, "col7":12140.458, "col8":-242951193.82197, "col9":39747421746866133.595, "col10":98412075066012684.979, "col11":"2023-05-29", "col12":"2023-09-07 20:05:21", "col13":"2023-04-21", "col14":"2022-11-19 03:04:38", "col15":"K=O^alW)L`", "col16":"EgcIHa^Hd(GE~3gM@UK", "col17":"qJo9+1Ho39e*Tf2S@62#FbSIF5)+e?pxfhlOEHe*S8k%#MlOplPx&U/0`7erPd3E%lWIR<"} {"col1":-1345998070, "col2":73, "col3":-12307, "col4":1, "col5":-2346592350776300502, "col6":4576202285731461241, "col7":-676.7377, "col8":1364540328.064018, "col9":13432767121839671.998, "col10":-26324936959989359.594, "col11":"2023-02-11", "col12":"2023-02-07 07:08:09", "col13":"2023-03-21", "col14":"2023-07-24 06:50:49", "col15":null, "col16":"to_qGASeSl*X2nbC3", "col17":"WBZww5;5h5_7hv6TiCrx9wJbP@A22S3FHcCK#KGPF8("} {"col1":-1988183162, "col2":40, "col3":-24136, "col4":1, "col5":-417379002178085796, "col6":-1474977584348316966, "col7":5310.985, "col8":1063839607.392107, "col9":-54413137402446947.803, "col10":-73693930358854252.940, "col11":"2023-02-25", "col12":"2022-11-22 16:29:59", "col13":"2023-03-22", "col14":"2023-07-05 19:30:45", "col15":"qgH`_", "col16":"V^;OOSkIoiGuYYAl4y*X3sBY.3_t*@/B5&19@6-q~", "col17":"MF#?r7V9tm8lGzpKoSphji8*=z%mYM5OU,Fiq`El=0snqAJll%6LM!n^H`"} {"col1":-1180095966, "col2":75, "col3":-9704, "col4":1, "col5":-7929307379393601542, "col6":-3221655257874030538, "col7":-22961.36, "col8":1350934064.919748, "col9":71590329804082297.316, "col10":68490249642371318.980, "col11":"2023-09-22", "col12":"2023-10-06 19:04:38", "col13":"2023-01-07", "col14":"2023-04-03 03:02:49", "col15":")?", "col16":"Ghw%4pXF_LI1P?M^f7c4&o2K-QEW%p8&trAj~DH4=dQ+2E!n%U8"} {"col1":-1042939487, "col2":-102, "col3":-20093, "col4":1, "col5":258704357774718873, "col6":-4387908451084538500, "col7":-30131.84, "col8":265721776.737866, "col9":-2616511530016594.215, "col10":28484710821627763.956, "col11":"2023-03-30", "col12":"2023-06-19 03:13:57", "col13":"2023-03-11", "col14":"2022-12-06 13:04:22", "col15":"3rKKL3s>", "col16":"FVWF@8vMgd)ePWR?u@V+I9eSr0FK`!x;+%l6^u+bkBH+Tk+1SRrL88J4;xG%X~kxh0Rf*5b", "col17":"almPDzqhC!rL*)c8j5XLkhv~Y/y~V3x.>iD/msL)N.c8(J_s?Qlpu^zsxiIg^Ig$G%y^,_r+lsHbIaKLW9X3sP)2bRwu/(!dOKA?TZaDI`MfFd0K+9f@Dbf_xh9>n!I22MqP2X)pY7@g0PjtRR", "col17":"/m6JI,%hrjW*C/EMawnUA+P%AHG"} {"col1":-96922114, "col2":23, "col3":-28004, "col4":1, "col5":8446860350965531770, "col6":5642173086219796099, "col7":-3171.0913, "col8":-634821029.823853, "col9":-98654792721280301.185, "col10":90696742528251983.209, "col11":"2023-01-13", "col12":"2023-11-06 05:10:39", "col13":"2023-06-18", "col14":"2023-08-12 12:51:35", "col15":"N6W4", "col16":"EXbHnU*G*x1(Fs>=`Oh;QjqM7>q5S6x=l%AeX9@p~_ubptVMbC$9/L4", "col17":"KkAN)vprmfxmbZ3-BQ2w27g2X=YtRc6!_e_Gj#H."} {"col1":913460251, "col2":-122, "col3":-668, "col4":0, "col5":6507538830189845573, "col6":-9049683691868904419, "col7":32287.156, "col8":-589894718.031317, "col9":-42663927076874213.955, "col10":-59265662945486651.537, "col11":"2023-04-28", "col12":"2023-09-26 23:37:43", "col13":"2022-12-02", "col14":"2023-01-20 15:16:56", "col15":"hJND)Sz", "col16":"VFdc4H=RSuNZ/C,6N", "col17":"PBo("} +-8505366084515032753 {"col1":382502710, "col2":-10, "col3":-1057, "col4":1, "col5":-1053404092722092555, "col6":-3224814438034550078, "col7":-303.36923, "col8":1394068216.774496, "col9":35385157086902073.490, "col10":28542472828538829.527, "col11":"2023-06-15", "col12":"2023-08-08 18:11:20", "col13":"2022-12-18", "col14":"2022-12-31 10:35:49", "col15":"aNDd", "col16":"rf&g;llr0AcaHMvj==5.x^T6<5#,s9g6Ce+%%shkcvv==<-%32nk0UKGn/Xv0ze1BPHIuC5b/=LGg6Z3S8gm`F)#w", "col17":")xh~)TJqjj.DjX1yU2Ri6KQJax"} {"col1":-1855122167, "col2":-3, "col3":15689, "col4":1, "col5":-2367363947390869432, "col6":-6532659416199639957, "col7":23066.408, "col8":1319308662.25036, "col9":75101865537681458.145, "col10":847059006678943.372, "col11":"2023-06-22", "col12":"2023-03-26 14:27:35", "col13":"2023-07-13", "col14":"2023-08-19 17:08:01", "col15":null, "col16":"rspt?wZj`f,b.aEWAm5KI&s_q;yFo(>%OYX+WlZQ4uEBzq4^kJGGNIJ1W;", "col17":",JBXQweU"} {"col1":863299634, "col2":19, "col3":26127, "col4":0, "col5":-3722113302586638684, "col6":-851562457423560807, "col7":12379.872, "col8":1344459261.478156, "col9":-5722993038821801.748, "col10":-17110044615450491.806, "col11":"2023-05-22", "col12":"2023-07-06 18:43:09", "col13":"2023-03-30", "col14":"2023-01-03 17:58:06", "col15":"CW4hXqcNhZ(7NV", "col16":"^-GcQPOz2j/^JouKfQ!j", "col17":"fL@>t?5)3esV/+),%xsD`;^ModFpKCj^qhGyEThhB+s.w_#0ZSEvdtmUPKcU3!I5DBaoc(?6--TxUy0lMqgGGJ_1?Ba?Q@*b6->;I_koUI5", "col17":"lu<.4A8;Po5"} {"col1":517718032, "col2":8, "col3":5617, "col4":1, "col5":2036983629624140619, "col6":-8004741025176861266, "col7":29875.326, "col8":518876871.957944, "col9":-91214823930019420.126, "col10":-83897543475024225.103, "col11":"2023-11-04", "col12":"2023-02-17 02:18:52", "col13":"2022-11-25", "col14":"2023-04-16 21:00:34", "col15":null, "col16":"6hv*w,;~7ReMx-z)RyB0SncbrE_E4=ar0X(QPSxbv?v,sYR/.nsST,Lsf2lC-", "col17":"5+@eImE(-#Aq7Ti,Z7I9SmCU8jGwXs.adUs152`KV,SUN8r$A>_I(Mzpo1wyUTbQVQF+ynd*"} {"col1":-26851415, "col2":77, "col3":20803, "col4":1, "col5":8462280744723342223, "col6":4028913701469404239, "col7":-27780.814, "col8":-1695167601.009997, "col9":-49423859244307827.797, "col10":21504216931240673.598, "col11":"2023-01-01", "col12":"2023-06-27 05:34:56", "col13":"2023-05-01", "col14":"2022-11-26 20:17:19", "col15":";jWy1&q3blu>6IO^dh9#B_@I.JL1FWW,Kat?I5;?foXR#s^pWy8aAQ1M=Pc+(dz&/"} {"col1":-604602583, "col2":57, "col3":13011, "col4":0, "col5":-5302358667068573583, "col6":-5456138891970329645, "col7":20375.229, "col8":1419926154.765488, "col9":64309450696316848.480, "col10":30650186013769395.238, "col11":"2023-10-23", "col12":"2023-11-06 06:40:28", "col13":"2022-11-21", "col14":"2022-11-25 01:32:41", "col15":"ienLsZZoNc", "col16":"Z`7h~<62l*T,(Fum0!A=a2Dql0", "col17":"7^=JYmEr9?Js%P%1Pgiy,!l5>e-*GgFF%F#iJ/FV`0-Bjg6uR%W-LK%B2QZf*gE-(IO!p>whxfod2)eg4%/NZ4"} {"col1":1296845509, "col2":59, "col3":21046, "col4":1, "col5":724993822370556458, "col6":6265074313340910084, "col7":29620.066, "col8":1513249955.591215, "col9":-15705720077200863.493, "col10":-18756131852709044.646, "col11":"2023-05-11", "col12":"2023-08-17 11:43:03", "col13":"2023-03-17", "col14":"2023-08-17 16:03:28", "col15":"EYv*0AKQ3", "col16":"%k%,cq5^6AW4k^*D(IFeA?jMf8TZfP@AmmNj3-EVFkT>~2GHzC3=pd)R6Vu;E`0A;WrJzpo`Fv4Cqo*^^!C.($,Akh9A;+RKM^W&", "col17":"?6BBn/4tSggoWM=V`-YK=u_5*D=WP3;/G3s<6mFMa5725,9$t.!)nMta1kaI?l6t`P!+k&nKc-"} {"col1":1787385854, "col2":-123, "col3":29564, "col4":1, "col5":-4220216585811082502, "col6":4960039834428859787, "col7":-14863.338, "col8":1683405330.677428, "col9":57974039101802622.279, "col10":19353920084990675.742, "col11":"2022-11-24", "col12":"2023-04-16 23:42:22", "col13":"2023-01-29", "col14":"2023-05-15 05:35:02", "col15":"O>5PB6i>NmB", "col16":"VezoSRw-mx0j6ye?a6/6pnEPl`$i#NMvQ(x+_s,ZJN9?.MK", "col17":"N%RxT2%Al_#SU<6TZK.FZa-.25+sb!hILyv?#fn^szkG=hO>G,A0`7pM/NskTuH1+E&G=K@yg;I8iUf7ONGj3"} {"col1":181016402, "col2":-66, "col3":30163, "col4":1, "col5":4495758931964433648, "col6":-8653734159677839442, "col7":15644.355, "col8":-1356097265.535016, "col9":-89608254464744295.275, "col10":-42975241952851160.770, "col11":"2023-05-25", "col12":"2023-05-21 12:36:03", "col13":"2023-01-15", "col14":"2022-12-02 00:23:30", "col15":"IIywcqM", "col16":"T;)^_Mbku6CT1MIc0bD^#%2IaYOh@rhnrjC", "col17":"CpS3bbNX)rH#8Js5ieM<;5R?YBeE5/nUmmx7p~oY~=c/yfvRiASR*R6v"} {"col1":1469934754, "col2":1, "col3":485, "col4":0, "col5":1224735581054006788, "col6":6089508584939008713, "col7":20772.271, "col8":-340537207.844391, "col9":-25669600080047259.795, "col10":55365122064805386.858, "col11":"2023-01-02", "col12":"2022-12-30 04:14:03", "col13":"2023-05-24", "col14":"2023-03-07 14:05:07", "col15":"x4JeBv", "col16":"(o!sVg*!Z#dt0lF<*vxkfoK#1b", "col17":"D29^$!xZ)vz3.+);W", "col17":"(6t&$tmJvo`XL3s4z(t*P-~*+gau$i.NWn?VD&.`jFTF?0voTgJ)C7PgDj/_oiZw/q&A(u-9S"} {"col1":-731917057, "col2":37, "col3":6151, "col4":0, "col5":7777078010512157661, "col6":-2759816014023267952, "col7":10645.079, "col8":883698261.707048, "col9":-76310146256900243.312, "col10":-6973273195653891.327, "col11":"2023-06-18", "col12":"2023-10-22 04:11:48", "col13":"2023-04-26", "col14":"2023-04-25 11:45:34", "col15":"UXuOuREEJ", "col16":"l^rtqAEr4>ec.Vw;QBrajvx(?d07he1jyx-z.!(h`Ya&Zh?O", "col17":"VED-)l&4%vqo$g$hEMQZ=!"} {"col1":-951913828, "col2":-49, "col3":-19436, "col4":0, "col5":-6614975947088839054, "col6":-2347794520629140789, "col7":18287.795, "col8":-265026577.394333, "col9":95136006648803303.130, "col10":46455594961007726.578, "col11":"2023-06-25", "col12":"2023-09-08 11:02:25", "col13":"2022-12-23", "col14":"2023-07-11 20:33:27", "col15":"GD*~", "col16":"MlBbK%Y(G3,Q>8.z&KMwUHBt0p/m<6c!!xkI8L%9Pri", "col17":"h%LK"} +-8368163552280161902 {"col1":1769209089, "col2":41, "col3":31160, "col4":1, "col5":-2575336798099083185, "col6":-883044937893669077, "col7":-19593.564, "col8":732727904.190433, "col9":24471993109695208.242, "col10":7027799225935328.300, "col11":"2023-03-14", "col12":"2023-06-17 01:00:36", "col13":"2022-12-16", "col14":"2023-06-01 03:23:44", "col15":")ysk+f.Rb;Mk", "col16":"rpXzdz#~NQOpWj8uq%$3Uo(7)2wSmy&XbeF~mpb80bhCN$<%UqoFQ).xInr)z1e%Wm)miFk/gPZIOC=DS=$-P-e~ZKT*Gc#n", "col17":"Zw/sJQD+!qGN&,V0gq!>&KcN-5HzygFJT(3%YCpX2p6GIkmQJK-4hkf^o^Gzo0"} {"col1":-1128656019, "col2":38, "col3":-31755, "col4":1, "col5":-2435632141806412164, "col6":8136450037899463794, "col7":-459.44894, "col8":-831192457.489055, "col9":97591785640602819.751, "col10":-62968590713393600.518, "col11":"2023-01-16", "col12":"2023-04-07 18:36:15", "col13":"2022-11-21", "col14":"2022-11-11 20:28:59", "col15":"-C?2=,2G1e^#Y", "col16":"9W$$AAoJo2lzO$@;&SOg", "col17":"BF=Zg9mC%Tk"} {"col1":116046830, "col2":94, "col3":-22557, "col4":1, "col5":-1598164460844399072, "col6":-4158706534326890839, "col7":24433.285, "col8":2134151714.625505, "col9":32526239216662343.382, "col10":36428786060450888.560, "col11":"2023-05-03", "col12":"2023-07-10 18:46:30", "col13":"2023-04-22", "col14":"2022-12-11 00:40:44", "col15":"=AL", "col16":"nBEdvMoi&Ku%CS#9YR)1e)w&InunfqVq@z5%j97_AX2sH", "col17":"^3Lnzbz)b%j@!d_1I)@T;K,Qd#L)aCv*0U(Rnys3LLod%ZUxhCjt&7~gd5NW/ji+6Ay^d_b23=HfC&X0GqfS,vu#WV2/o;q1"} {"col1":-931769087, "col2":-29, "col3":24745, "col4":0, "col5":3139286240265536402, "col6":6172939574734784743, "col7":-9849.977, "col8":144474395.964448, "col9":74949219831536557.243, "col10":-61657785466666969.507, "col11":"2023-02-10", "col12":"2023-06-15 06:30:30", "col13":"2022-12-03", "col14":"2023-01-04 01:09:40", "col15":"MJ~0M", "col16":"7S3w*O`K", "col17":"f1<.Ruq+++&Lj1_yd)tT>PWT91>"} {"col1":95091621, "col2":-34, "col3":-29230, "col4":0, "col5":2881528624934468265, "col6":7807966468061685861, "col7":12235.277, "col8":-952013846.37979, "col9":8704675164427700.119, "col10":22241492001285031.114, "col11":"2022-12-18", "col12":"2023-08-18 10:03:10", "col13":"2023-09-29", "col14":"2022-12-06 07:47:44", "col15":"cb-fe=HQ2", "col16":"ODws3EY*izfCOE90(2iFs7^BdkVssW7cg/k#pQQk1u,cOMReo/fn7@MJ&unJK5OI=>QVS(.7.JQmm3Ue61_WTcqwU@t<@r5qj,TJ2?L", "col17":"CpZMP1~/4GLggIi95mY%IiBHMb+iZK/3&J2+135ostS!jE,cpgIt3FGZ=!=b2ua=,wi+l.7#VU4(aUrSu^-y~T$l1eEi.b,S9Na&vIC)9E=P_mrOw_J$I;Ss?5h"} {"col1":549081643, "col2":-89, "col3":-18860, "col4":0, "col5":2268837686650169392, "col6":-3564791349665118608, "col7":5688.7407, "col8":299803683.69027, "col9":92982331476439301.594, "col10":-93330243753042154.201, "col11":"2023-06-05", "col12":"2023-10-08 21:25:31", "col13":"2023-02-20", "col14":"2023-05-03 02:23:37", "col15":"d=GDd,", "col16":"-hCK9Q%sfXLRfN35e1W`WAWi(A3s!+;wwL(hRvzT~Ipp`jAY%q8o-z(ueZptTS,Ua9?gt^y9Z8yQK=h#44s", "col17":"Up4HiD^Brz.),~KbbW"} {"col1":-1783476026, "col2":-48, "col3":-17310, "col4":0, "col5":-7963598298499820103, "col6":4904571652507647260, "col7":-10607.233, "col8":-1974193014.984611, "col9":-42459355958681098.454, "col10":-18238483948356281.750, "col11":"2023-08-30", "col12":"2023-05-06 07:37:46", "col13":"2023-02-08", "col14":"2023-09-27 21:55:52", "col15":"A,blh00/y,", "col16":"iOn`m", "col17":"9+5KWeLDsbd/&Uq+1-Ehvu2^S-RxzF>sTzA)dO76#CJ+q0b_W3%Vz8t(xi9$Pzr7XGmRC3qTg!qQf&`%Dd@I()5gfj9^+j_0AgHM?!I()c=li^>"} {"col1":-496454371, "col2":121, "col3":-32536, "col4":1, "col5":5109585439962885589, "col6":-7561145607543036624, "col7":-1663.4861, "col8":-956519190.050091, "col9":-10288691912800152.494, "col10":29496554612133109.983, "col11":"2023-08-28", "col12":"2023-08-31 09:50:56", "col13":"2023-03-24", "col14":"2023-03-19 20:42:21", "col15":"%+.U&gn<1ZU>Mf", "col16":"=Y$EVG,h-h23^r", "col17":"NR.ZpMOo%1E?"} {"col1":1238201496, "col2":-10, "col3":31686, "col4":1, "col5":1122137690708375175, "col6":3751166452543437548, "col7":-15929.366, "col8":-209845314.081667, "col9":82928606746951351.951, "col10":-24921390371752053.504, "col11":"2023-04-16", "col12":"2023-03-20 23:55:33", "col13":"2023-10-31", "col14":"2023-02-09 06:24:56", "col15":"I-", "col16":"J3iltfk&9#5Qc~44Xu@_f?^u;(7J", "col17":"J,>9sWD,HEb+f)sMZy,=e?YLj#W)CQw&Tryuy?2q!C&2;cNp4j3~95VzfeI9QTh*o~=y?!D0Md#6G;1g2$8Q3j5Eq%"} {"col1":-2126172544, "col2":-43, "col3":-30224, "col4":1, "col5":4477399578851748461, "col6":-8164663132923309779, "col7":4598.504, "col8":-2145707155.719386, "col9":-16186361543705830.429, "col10":-70898288416135568.483, "col11":"2022-12-22", "col12":"2022-12-05 11:00:58", "col13":"2023-07-10", "col14":"2023-03-03 03:45:05", "col15":"v++#N", "col16":"jB/H(1KjyS,Y2-f`64cMz>$24^IOxrk~%", "col17":"DH3k3igl~`7pO`wlSAWbcAW&n^d#jy;6RME&e$6^bc/Sl(;kcBgpWt(17t/Q7%AP5l@MQm8BK8Saq=dqtSl#89iEyJF=5d4eQ*5,7RX!MW(O&4V5.ra&`wwkhoT"} +-8130752084420850754 {"col1":-630784508, "col2":-107, "col3":-22332, "col4":1, "col5":2526767180146544499, "col6":3669637146075805854, "col7":-2381.3687, "col8":75875226.650256, "col9":-16215099298195794.320, "col10":-33531867113672142.943, "col11":"2023-10-15", "col12":"2022-12-26 23:51:13", "col13":"2023-10-01", "col14":"2023-07-14 10:34:13", "col15":"Y", "col16":"3/j4pBCb;)0fp(F45MD7@FNT=R1kj93(_4_wA5)vOYD!W#6LWF8", "col17":"&lOgTZ!dZ^,iG>4Ps!-)S+KQIOSClIaQYS$N@ei~(rVZwKb*7?Qzomi&K8GfdD1-hs1S"} {"col1":-520495782, "col2":-18, "col3":-10052, "col4":1, "col5":-5500653227385262734, "col6":2071128999812670433, "col7":-1284.549, "col8":-1758340715.165546, "col9":-40984045024860021.904, "col10":-69726335010103532.380, "col11":"2023-09-26", "col12":"2023-02-20 13:33:55", "col13":"2022-11-17", "col14":"2022-11-14 20:14:11", "col15":"tA&/#h_LkO", "col16":"*4WJcDm&K370&0pg7#s).g=_BsN9(fU3npbI0/!x,WIAg3;SqALl^~7Rx?", "col17":"ku^@V1&/5o/C@m1*?33C9-wNN?UQ+ax`g&UYfdlr+m)6v"} {"col1":-254305488, "col2":-32, "col3":-23700, "col4":1, "col5":-6047527938938229808, "col6":-8390007357285860601, "col7":-4994.1514, "col8":-1938449016.468337, "col9":34009355692319729.341, "col10":-49705304084897838.366, "col11":"2023-06-07", "col12":"2023-10-19 02:54:45", "col13":"2023-10-08", "col14":"2023-06-23 15:47:35", "col15":"L+L", "col16":"Zt)P", "col17":"fqxwKRGS,E8oDUevQ!TRV-a12"} {"col1":1320721215, "col2":91, "col3":-14366, "col4":1, "col5":-4901320206869872612, "col6":-6734233068323413885, "col7":3092.9668, "col8":-2128909677.420208, "col9":91585706825195524.237, "col10":-18583607961702373.593, "col11":"2023-06-08", "col12":"2023-08-08 09:11:42", "col13":"2023-01-29", "col14":"2023-04-01 20:42:08", "col15":"R*%oyx", "col16":"+aq(16wM3z_Gbqra)J8j.T_drPtA_sN.vnF2-&JKv`PtifOZ..`zm6wP", "col17":"5,~$Gt=a&1wHdruBM),mb!a;~UdshW)Nd*-+nSShC(0MX0CynnazHS4U*ng#,<&Ys,B/Xb=?;.Zm/1./xOgBa"} {"col1":81795598, "col2":24, "col3":28966, "col4":1, "col5":394278581012445475, "col6":8538625659064010725, "col7":3152.8525, "col8":-582541726.405779, "col9":74628837758040294.322, "col10":70855409169031646.167, "col11":"2023-06-25", "col12":"2022-11-20 10:41:56", "col13":"2023-03-21", "col14":"2023-10-19 06:51:35", "col15":"8zN?XTqrRsgWSTE-hq2gietM!", "col17":"VkB&g~;#eP)mzBF#6Y(3_wO+gRlSCvb_oH4IzGQtrF-LJVrE/^FPdN@ACS?o7Iz~+8/41D&rV&`"} {"col1":1584719334, "col2":-122, "col3":-18196, "col4":1, "col5":-3719741203767950872, "col6":8275693320339631705, "col7":-21392.152, "col8":84254794.270132, "col9":-88846332068119370.580, "col10":-64509349060859205.997, "col11":"2023-02-27", "col12":"2023-10-22 15:43:08", "col13":"2023-11-10", "col14":"2023-04-27 15:46:11", "col15":null, "col16":"jX5hB0vr%uqgmVY,_+ckuo_@<@N>rjV<%ow&J4QU?*U06h~r@kT@HB,b0fXU*#fyW.>6iiL!o^u*Xk;V0>dNuCul/gAlq?&O^/%q4?3`^Ku;"} {"col1":-1929296815, "col2":-14, "col3":-29091, "col4":1, "col5":2209692967284329947, "col6":-4467649585163870281, "col7":-28066.814, "col8":-1125999447.229004, "col9":-22573967746140374.696, "col10":-77244170296332062.250, "col11":"2023-03-31", "col12":"2023-10-13 17:39:26", "col13":"2023-04-29", "col14":"2023-02-20 15:16:10", "col15":"?`!+Ichf,4w;", "col16":"18O.M!HtHcPtwhzY*_JgpBqBwGX_PfEbo;AZ?H3xh~m&4ssjAQfi$c%H>hse0zz`Rej$GM4mKAsHub;X+PooPp1x&WDwKVQ>eI1", "col17":"$hJo#yv`YGqSzy7esvlz2mTr9g#,RXfBE-;ga.WmS?JIr==kx4eam`y8Xnj/!U;I$fOrK2,W>PDAEJkaZ35LM9hhWHAx6mm(uq2J"} {"col1":419519048, "col2":50, "col3":28572, "col4":0, "col5":5109939873256684424, "col6":-5732498347084127922, "col7":-32468.19, "col8":-1737443888.096589, "col9":73968231814261632.732, "col10":43931705735412210.900, "col11":"2023-01-27", "col12":"2023-07-20 19:48:07", "col13":"2023-10-11", "col14":"2023-10-12 11:52:25", "col15":"_h%", "col16":"LE3vk3YdPS<%a@h,YBI&^lyt.+W,", "col17":"CA,wAaQsoJ3(USyxwejK43Qn0lazs5W&r-2N8Sp~(T0x7piIcs/4R&HXws>v((jTF_3a"} {"col1":-1581073211, "col2":-69, "col3":-26033, "col4":0, "col5":-804312312636283370, "col6":-6625806106514412241, "col7":-29053.072, "col8":-1698261199.931556, "col9":76451253322373236.900, "col10":11769426737212010.997, "col11":"2023-07-27", "col12":"2023-08-24 17:29:23", "col13":"2023-03-14", "col14":"2023-05-15 10:54:11", "col15":"?*GQsppENz", "col16":"aaW4;dDES2~8!eT0$TM+=23", "col17":"u*n7(_rGh#5F&)yMsXd.nRd6~No2,+UsWc?;y+;)x(uqQA7*x4)rew#6U9yI^&!UAK32hbGSl=;gF4,k`eU7(aXaw8Q2j_#&3i&<>NAJYF"} {"col1":1428826758, "col2":-33, "col3":-28399, "col4":1, "col5":-6469244622958594179, "col6":8335848240829608549, "col7":1618.6619, "col8":-1903223955.308646, "col9":93206268136712031.791, "col10":89306733804707873.770, "col11":"2023-08-31", "col12":"2023-09-04 12:06:05", "col13":"2023-05-04", "col14":"2023-02-07 02:04:35", "col15":"!YW", "col16":"/", "col17":"(6m.hGHHlnXdK_`ZZ)YcreXek%Ytz)l=g*Ps)oQtGsF0_y17ZWLb?P,gsyU"} {"col1":-1069306143, "col2":-4, "col3":-8547, "col4":0, "col5":-1383569491875123898, "col6":-8034778851940663966, "col7":-27188.469, "col8":1926605339.570438, "col9":46458896379925035.526, "col10":-94635160698411887.823, "col11":"2023-02-22", "col12":"2023-01-07 15:18:48", "col13":"2023-08-08", "col14":"2023-11-06 22:37:56", "col15":"p$BN", "col16":"!;Dy4P$X7F", "col17":"_KKaRhOuw;s,J$nS6oDa96EaYOry<@mBk_.B,_K-ckvEf8lQAjHh6j.J", "col16":",J.~MKo4)2pg/R23DVNA=7Tf)J*Sg-s", "col17":"tq&IP/6U)Cxr%D20@z+kgOn>QZLNEL3rM4a`Yy^~sKbb-++RSmR$TZ&+s4y,el=.yCT>B96adZW"} {"col1":985501155, "col2":-24, "col3":21311, "col4":0, "col5":5527964666005317471, "col6":6946948188736388580, "col7":-8703.959, "col8":-103891562.352326, "col9":-72256959944011241.745, "col10":-15805720823720834.900, "col11":"2022-11-11", "col12":"2023-06-25 00:53:52", "col13":"2023-04-03", "col14":"2023-09-27 16:58:07", "col15":null, "col16":"4lu5D#+1Z&7@8R1q", "col17":"cyNXc*5#q!p$", "col17":"Ky"} {"col1":1596224467, "col2":106, "col3":9539, "col4":0, "col5":-809051164961171210, "col6":6250982782242314377, "col7":-26671.64, "col8":56606733.145908, "col9":-80540802744766207.953, "col10":77085717692287751.994, "col11":"2023-02-11", "col12":"2023-04-13 15:33:02", "col13":"2023-06-12", "col14":"2023-07-03 11:55:11", "col15":"3_", "col16":"tE9nr=yFH~l?QxREEq@#4NdI7AbN%jb-*uF<4l/jDiFl7%Hw3Ho>n/C%Wn;XQA-pUiNGUo6$84+MKhB#WZkimtAej"} {"col1":-1218975697, "col2":-70, "col3":32402, "col4":0, "col5":-5168465205297713683, "col6":-42506747499361319, "col7":11149.558, "col8":-124984675.779518, "col9":-82155323751512945.216, "col10":-89459933378296748.604, "col11":"2023-01-09", "col12":"2023-04-16 20:26:33", "col13":"2023-01-19", "col14":"2023-03-31 10:02:16", "col15":"R-qvD+", "col16":"62H?H_R;SrrD5?a0LNWH~(5xwLE9=aXt", "col17":"QIqR?RRBaZ=.0EF3$p>_hD2_l)R%G^jvH`;gSz?*W@p,)>ddPiKr;o9)#45Us+j1;KXqqw?)$9XPBYjIQ-<(qcTdu>H)eN5?0oMzM)A%toAOGK$+6!``", "col16":"Rq`)B_wCqr~3D", "col17":".-G1FfO_&y6ciUgItDFzp3^xj2wT)3,3YL"} {"col1":949190741, "col2":-109, "col3":23132, "col4":0, "col5":-8107750618520010248, "col6":-6431170840840398337, "col7":-31010.111, "col8":19577291.956868, "col9":-42853285297909894.649, "col10":-69573641063301319.816, "col11":"2023-10-25", "col12":"2023-05-21 17:21:28", "col13":"2023-10-10", "col14":"2022-12-31 16:39:27", "col15":null, "col16":"Y;VSV@?j+eHK0~CFokCe*r.$gq*^sqPIxHI", "col17":",f>E=XC%CFYUP7&tvYjb%LJu#GDnMQP5.~)SQH0P-D;yaR5DiVr%<5ouv$YkhXeLAR@Ym1!vkwTZ2,8bUERr?MuA"} {"col1":1527563124, "col2":9, "col3":-25868, "col4":1, "col5":-8331595583387132313, "col6":-6031385467825388820, "col7":17599.04, "col8":-1485375156.20568, "col9":-16742871194598893.775, "col10":66735741323698862.142, "col11":"2023-04-27", "col12":"2023-01-19 11:37:46", "col13":"2023-03-29", "col14":"2023-08-27 01:48:45", "col15":"RCFOt+1", "col16":"%2~aM)waci$;?$Y~?hdzsOQTTP+Zq2lipeXn#QC*u1@QX62!5-A7727V3LQ+", "col17":"70#?^Ow/rdFvrFFVDP@NtWebpxm;jgcl8#0QEyC`7v0rh<~2h@ofB$Fue"} {"col1":2018260508, "col2":-103, "col3":-24472, "col4":0, "col5":8997678386359787116, "col6":2451818178827354507, "col7":4805.7744, "col8":-839371064.997656, "col9":-2820518180207585.420, "col10":-27518074549067322.799, "col11":"2023-04-01", "col12":"2023-01-20 23:26:49", "col13":"2023-10-20", "col14":"2023-08-25 00:04:01", "col15":"8iYzEiw7AMOd5", "col16":"0@P#6", "col17":"BdWm*QfNDS2ty?^cxcNgHxDda3rHiFvXbHrs;L"} {"col1":-1482004443, "col2":102, "col3":-12999, "col4":1, "col5":-6961079697649502866, "col6":5857042070324174976, "col7":14277.545, "col8":-1583282209.721317, "col9":-78563765934769168.374, "col10":59319192883565341.984, "col11":"2022-12-24", "col12":"2023-07-26 04:50:03", "col13":"2023-09-07", "col14":"2023-01-10 21:29:43", "col15":"VaJH/X*K/D+w", "col16":"h49&Y9FGYt&D6Aig^lqbP)c+qDpi>R#$OlL6,gqY,", "col17":"&m+v03q6D@;Z9te5S)o8@h/2cGZ=Cpy*G6h8VOK9wSgH_(82bI~N96CfoepoO0`t`Rh_~BIPuq76R8ezFW>;z"} {"col1":652276964, "col2":-54, "col3":-19502, "col4":0, "col5":-2722052385324355445, "col6":-2372892998911631963, "col7":17475.604, "col8":-1783374012.97851, "col9":43667004322191647.526, "col10":75072779420286165.380, "col11":"2023-03-15", "col12":"2023-10-09 08:54:52", "col13":"2022-12-15", "col14":"2023-09-04 07:53:29", "col15":"i,i~yA;2Zl9P7*", "col16":"7E1;FbW9.LRT1yBl>#", "col17":"AN@^I?9/?l/GllxiB)^&k*y/Hy,Epewpdy-mL~#Bh4*?NQ+S~y,X2rI9+$ws8l_./&ESS/&;ANFrN&DZT@"} {"col1":-627269573, "col2":23, "col3":-8953, "col4":1, "col5":-8611933685663538328, "col6":-8745338265499505032, "col7":28135.436, "col8":2058707064.219137, "col9":-19839219197164786.827, "col10":55688732490232678.640, "col11":"2023-05-11", "col12":"2023-05-26 09:59:24", "col13":"2023-01-07", "col14":"2023-01-16 16:52:43", "col15":"pz7^U", "col16":"0ji0UC6", "col17":"&(?Ko0h^g,FULq(8DcTPXxO@`"} {"col1":-1974740230, "col2":34, "col3":22263, "col4":1, "col5":-5083433021044869188, "col6":-6379889206909365694, "col7":-24358.887, "col8":-1581447038.60196, "col9":1659553167832696.312, "col10":-74926401344917067.130, "col11":"2023-02-01", "col12":"2023-05-03 07:39:31", "col13":"2023-08-15", "col14":"2023-06-28 17:49:47", "col15":"?ckjkT$l,Ce", "col16":"Q85oUjT9DK=u1+sL#(e7DK(L3uSUNcHEbrjO>poN~U1V%HCndj`&GVPE1MvSnKyM0+rOlBcXzdRkrM#x8q$i-Vb#n@pVB4S", "col17":"=^^G7T07*EQfcOn6FhSzr=$X*!jPo5fP!uTLyQ@cZF).pS`^_rW9=&9hVOYifYjg"} -- !sql_s3 -- -\N {"col1": -1640717181, "col2": 81, "col3": -28186, "col4": 1, "col5": -2384910521917839803, "col6": "-8671049934091498720", "col7": -24659.512, "col8": -1219672897.702773, "col9": 28464451948163873.805, "col10": 81312241556878151.403, "col11": "2023-06-10", "col12": "2022-12-04 17:56:00.000000", "col13": "2023-09-07", "col14": "2023-03-25 11:21:00.000000", "col15": "?k!Hvl.yOljS", "col16": "LO!$Rv&PWM`RCY=wW3MHp*e.>(-mwwO)up8=0aV,p9SEseGq#>", "col17": "WI-..k#Ztk/XDZbyHnMP,7#J.8j2NyFqw,I-"} {"col1": 204687839, "col2": -82, "col3": 2252, "col4": 1, "col5": -19971071040251667, "col6": "-4155088892121165336", "col7": 26448.963, "col8": 1770740365.125187, "col9": 60792873952372289.901, "col10": -14030812497137925.948, "col11": "2023-06-19", "col12": "2023-08-19 11:39:08.000000", "col13": "2023-10-15", "col14": "2023-06-11 10:49:52.000000", "col15": "vWMgFZ!&iZ5(F", "col16": "oJ$;rW2^gQ#mTA", "col17": "kI0/~du#OW9hW!>uv9ivK*Z,0bFlR+)yqznNUvMZwN+gzX;Wd)yNl9_(Gw7M`,*>Jec2iCu#_"} {"col1": -2003600874, "col2": -69, "col3": -22655, "col4": 1, "col5": -2569480559938805074, "col6": "1878064350493481255", "col7": 3894.8906, "col8": 789107031.013365, "col9": 422711248962606.869, "col10": 89317269874267004.107, "col11": "2023-02-09", "col12": "2023-08-23 01:13:38.000000", "col13": "2023-05-13", "col14": "2023-09-19 05:36:43.000000", "col15": "/EcG>MMvXu)m", "col16": "2__N+dyiBTMqik2gMX", "col17": "mgYMy@^eE%^&5bZhwi~d#~-?BVT-5(_sMr;j#d(^_ELknHw$kw-x0_4HuMb#uXZbJO_,_nUrH"} {"col1": 65437020, "col2": -46, "col3": -12018, "col4": 1, "col5": 2862131367901130287, "col6": "-3532338074579255894", "col7": -29409.672, "col8": -989688444.043172, "col9": 45161442099730151.250, "col10": 55537833004458471.913, "col11": "2023-04-03", "col12": "2023-04-11 20:34:26.000000", "col13": "2023-02-22", "col14": "2023-01-01 07:06:31.000000", "col15": ""} {"col1": 574017729, "col2": 1, "col3": 7437, "col4": 0, "col5": -9006050591013304373, "col6": "8641070966538487677", "col7": -28902.05, "col8": 1681509274.217499, "col9": -88825566803058829.347, "col10": 98533291755312883.350, "col11": "2023-04-15", "col12": "2023-01-06 06:23:32.000000", "col13": "2023-02-12", "col14": "2023-03-28 03:17:07.000000", "col15": "#>nWjJF$", "col16": "RM&jYf~KvhNyt1Y%=yobHgXQBmfNj%zcBZx0E3w=%Z1h!T9MCtKbAxgD/jVOMO$iG^H!tinX@XfqEx/h$", "col17": "JZK@m-4Zc0;O+*DLuxw?ESNcqN6GUEcz"} {"col1": 1312246670, "col2": 9, "col3": 19994, "col4": 0, "col5": -3267472655758334247, "col6": "8285340605613836903", "col7": -10209.022, "col8": 211608658.602411, "col9": 21651311306694744.296, "col10": 37400988704917411.582, "col11": "2023-10-07", "col12": "2023-05-31 03:59:17.000000", "col13": "2023-07-25", "col14": "2023-08-11 19:10:54.000000", "col15": "@Ij5I_3gR(kWG", "col16": "_/wD", "col17": "GrMdg72&fV53(_q?ZbYGrDKMi3-#4H3pu(M=c6*(^NY2?u*VMh7fmUTB?eopFxET9uZ3?WH3,.VWQ2c_/78@"} {"col1": 1683904273, "col2": 114, "col3": -24879, "col4": 1, "col5": 8135300646736071863, "col6": "-533138965112586068", "col7": -4603.649, "col8": 2137625112.86537, "col9": -63027635477510479.768, "col10": -51263852143163526.143, "col11": "2023-05-18", "col12": "2023-08-24 14:30:10.000000", "col13": "2022-11-23", "col14": "2023-08-31 07:10:41.000000", "col15": "?+wPp%X8bbj(^@", "col16": "`4>g*MM@EfHoKaK+cG~kyx+D>GG`/^wDc0z@V&310o71B2357$_;eZ@T*", "col17": "O$T=JM2a#e?o%F?BK^Y$#)AQEYQj-5%2BNDq)c`UAfE6Y<>588"} {"col1": 643219270, "col2": -20, "col3": -8137, "col4": 0, "col5": 2552650640448880115, "col6": "4674768345935204778", "col7": -28442.773, "col8": 611533148.902466, "col9": 25998828839996242.461, "col10": -14673004593363430.607, "col11": "2023-02-18", "col12": "2022-12-30 07:38:54.000000", "col13": "2023-05-17", "col14": "2022-11-29 16:40:22.000000", "col15": "fG~#TwD", "col16": "#,yvT(MI%p~l%+Rc_TRAA76-ofG7gA,%1bp%kNmvo;)H=$iqi", "col17": "6np/u"} {"col1": -1060443009, "col2": -67, "col3": -22580, "col4": 0, "col5": -4444031682962794134, "col6": "133763345107711635", "col7": 18073.379, "col8": 248387995.865393, "col9": 62095529744555286.698, "col10": 4044200079094191.880, "col11": "2022-12-12", "col12": "2023-05-27 09:33:57.000000", "col13": "2023-03-01", "col14": "2023-05-29 17:39:04.000000", "col15": "?riaicX", "col16": "rT_@BeZKwQk0TQx9C^POv(QR>Jqz2Ve?EyFm+TMYWh6j1Yu0hfBliCECY^b8)P^d*Jfh0kGqER?T", "col17": "Idver-_^5ceDdzdn^P/N.nRMSPuzCqczLSh?)bl^OcSH5?F@c;P$K_O?__RKb~8)`0WB5_YfUTZ>^pa;le^r2DwRjqbJs0T`DUd"} {"col1": 169247257, "col2": 84, "col3": 6693, "col4": 0, "col5": -3628860903341657653, "col6": "-5015295262109218606", "col7": 24289.36, "col8": -52506094.523564, "col9": 78795489215042230.357, "col10": -79644456932811905.834, "col11": "2023-05-02", "col12": "2023-05-02 06:48:52.000000", "col13": "2023-04-26", "col14": "2023-09-08 16:18:26.000000", "col15": "t_=Uk6Ck1zV2l($JF`Q/A5(Ev!gU_0?Q#2n&&qv,2pm+gnZoori_b.*#FF4#!O<-Fv", "col17": "_giXg)6;#0<=KzV->z4>QBYIa6L5q8GS%(GNeFb1&%LGKZ?=xYyJ+k_Muejd_8ZDM2+^t`+&m_0"} {"col1": 560863439, "col2": -71, "col3": 8799, "col4": 1, "col5": -7959962633037749654, "col6": "-328732735937660903", "col7": -13256.823, "col8": 831484450.670579, "col9": -87334457318899243.239, "col10": -8966873817392032.630, "col11": "2023-05-08", "col12": "2023-06-10 10:29:40.000000", "col13": "2022-12-02", "col14": "2023-08-07 18:35:43.000000", "col15": "Y", "col16": "g?CE?+WT`zvCP$U(EPr;8^W_4-Rd2Dm*pj;4qyAv#u@QWvaO~)0Q>H-8ooaCmcHrh@s`@^``(A", "col17": "C880^~j?1kcZRK$@2Aa$z4t$rD$"} {"col1": -515575452, "col2": -113, "col3": -24632, "col4": 0, "col5": 4872295739581785324, "col6": "1645563956122792580", "col7": -5648.7715, "col8": 2119787276.246767, "col9": 91142813279352061.648, "col10": -3227778190014385.836, "col11": "2023-01-13", "col12": "2023-03-19 11:17:52.000000", "col13": "2022-12-01", "col14": "2023-05-08 05:34:55.000000", "col15": "u,6RTgWApC", "col16": "c(0hRJGA@I,5qgH/`=>FRAaaM", "col17": "e8a-wH&;r>T>gz1YBDp%H29E5$o5Xkw,=Gz58o6/^t4pC9tMEa5A"} {"col1": -768191949, "col2": -22, "col3": -17958, "col4": 1, "col5": -5474863816659413511, "col6": "146498896644460146", "col7": -21183.82, "col8": 1533467928.404991, "col9": -65028045572118641.195, "col10": 42087598282844182.564, "col11": "2022-12-23", "col12": "2023-09-06 09:40:11.000000", "col13": "2023-02-15", "col14": "2022-12-27 19:12:20.000000", "col15": "*&,-SB", "col16": "tx", "col17": "B,>hor25X%ti4J8Y*ubr@?g$k0PR#wijM1UKm.ZY%6j3FI*zLReOB`WelJW^R!R#sbE&U!>`YYOFj*~#044AP~$Drdp=Q!"} {"col1": 172233591, "col2": 8, "col3": 15319, "col4": 0, "col5": 3502657102937957793, "col6": "3164146766365984227", "col7": -8501.518, "col8": -1750170652.325613, "col9": -52876700116535801.780, "col10": 77104328550003023.320, "col11": "2023-03-04", "col12": "2023-03-25 14:23:39.000000", "col13": "2023-07-03", "col14": "2023-08-20 15:49:48.000000", "col15": "5;cjMtPH5QfVO", "col16": "c#8L6dxjJSv7lGKr*_ww$^$I?%R*yeDp5C&hag$Q`P^8*k#!h$2aNolj0K5Bh?2%^;jkEhMFKj.rUuY*t!<#XI$nREm!t=1z+37Yo/R@905Fz)^10lSFStbOi8v%,oF"} {"col1": 1668695486, "col2": -16, "col3": 51, "col4": 1, "col5": -6120027227101236921, "col6": "8994890486569440069", "col7": 26802.582, "col8": 1225698961.52193, "col9": 85050625432102244.886, "col10": -62310261336359009.669, "col11": "2022-12-14", "col12": "2023-04-13 03:12:00.000000", "col13": "2023-03-23", "col14": "2022-12-14 09:54:32.000000", "col15": "UzA", "col16": "eil`B#4$+D4Qt--!DL@`L&$~$PMBw/V68/Avv<1xCT?A7?", "col17": "rLlE^DR2Emn"} -\N {"col1": -509008921, "col2": -27, "col3": -19163, "col4": 0, "col5": 1475648713457927736, "col6": "-3481435156122641780", "col7": 23285.066, "col8": -2144452069.906995, "col9": 26047508322316631.756, "col10": -74200637210404703.320, "col11": "2023-09-21", "col12": "2022-12-12 11:02:45.000000", "col13": "2022-12-16", "col14": "2023-07-16 16:34:15.000000", "col15": "YzCfOL-b%e).22", "col16": "gDH/)T=N9P4tHV@D@0p6h?@r%IL7#@Y$8iKxy.N~yXA@AB", "col17": "D&0!+fZ3M;LV.b~ARixpYVvQ>;tQFfZ*_<8?htD3ioNsBPKh;DMF/%`4y4&7E9tukeAp="} {"col1": 1151997700, "col2": 103, "col3": 23267, "col4": 1, "col5": -927023899465062923, "col6": "2739819997184443753", "col7": 10377.521, "col8": -1725387353.727131, "col9": -79830805627769803.173, "col10": -34194369851408639.927, "col11": "2023-05-11", "col12": "2023-08-15 22:24:05.000000", "col13": "2023-05-23", "col14": "2023-01-29 05:46:47.000000", "col15": "%#$tXx4(JB", "col16": "dNhPI+3c%MCS;n(&5Hcxz7", "col17": "%?q#H8=eNCXCPsC$+fQCXKsAXf,gWdTN*teRmiN)I_+btL_1n18)QlSC`fDR+/xBE/U#F.Zl>sE9yG0!l3_XF>by+xc5K-X%T1NSj0"} {"col1": 1421596361, "col2": 72, "col3": 3920, "col4": 0, "col5": -6118489479642225283, "col6": "7317635664738699657", "col7": 7737.5767, "col8": 2003407003.509362, "col9": 39552514893473143.869, "col10": -42730566174026754.489, "col11": "2022-12-09", "col12": "2022-12-26 15:15:57.000000", "col13": "2023-07-24", "col14": "2022-11-11 08:30:04.000000", "col15": "&4/G3ObN440?", "col16": "~ZyffyDC`xmz5O7#F_lm>pWH$tE*kQP*D*$RcgLBeB6jm=WP/!58K=E-5#0T;i;js5<1?akyXQ=?J_cO,YaK.szT$^Jm/w*rK1h~9Bfm>"} {"col1": 422243534, "col2": -41, "col3": -17148, "col4": 0, "col5": 507889730531854312, "col6": "-7687587853317523595", "col7": 15600.064, "col8": -452506793.454084, "col9": -80779650241170514.708, "col10": 66213669753600024.718, "col11": "2023-07-28", "col12": "2023-04-16 21:25:39.000000", "col13": "2022-11-18", "col14": "2023-02-27 05:35:33.000000", "col15": "t^Pb@l5", "col16": "6^fu$V49hN?sz+&Qbo6DhgfBIhPq=,,h49OudoMd9X4FCz8j+IBv%~r=NlP1,_sTPTDm1@%=7z92Y,fi6K_hR", "col17": "WY/;q*JBEBIsz^>tj6FmJXAi`;(;nPP(6=OP9qco7t(>gO_Jjvvff1!)nFF1Hp;b?RgkP&n2&($T47abJ#wfk=Q^UpwSmQ4rqMK,usfVhCtF-=3gtwF5z^.Qh*0U/41ZC@,N1K3RAWsmT*~q7Zg_q/mJ!_"} {"col1": -1964996452, "col2": -4, "col3": 20556, "col4": 0, "col5": 8315246488290679100, "col6": "7572158780311200589", "col7": -18410.236, "col8": 1606647238.822878, "col9": -89134765801837206.538, "col10": 31618570701256890.422, "col11": "2023-04-19", "col12": "2023-07-11 14:23:28.000000", "col13": "2022-12-01", "col14": "2023-02-24 11:13:04.000000", "col15": "No*-^", "col16": ".gI^(Xr=>A5)`Dm>nNB#0(ZYk%E^F7sH&rj`1yn$.>HtY?4lV4TGzOy5U.Mc", "col17": "FxB)jFhMjAY;B)Y?gx@yY>_7.o=mP))^&S49x478?%K9Y?!S..$tv03)Z4~(aw!!uJT8_eLY81$3iQSGwqZ;$TXw*5<@wXYGfkC7^pk1-hj!e>!eUjWjmEq&"} {"col1": 227935475, "col2": 71, "col3": 11088, "col4": 1, "col5": 7650681200215890031, "col6": "4730937172673466965", "col7": -27321.963, "col8": 1257272054.24069, "col9": 14931750839744403.562, "col10": 99429378055862630.805, "col11": "2023-05-29", "col12": "2023-06-08 11:18:03.000000", "col13": "2023-03-28", "col14": "2023-10-01 22:39:24.000000", "col15": "IY_-iuFqVlJ_", "col16": ")G&*ByCK%g0a,K-@-.aYJUuXZdW($!,9Y_zve>J", "col17": "#~dH>lqOzrLT>#v&N`Wp~ok`@fBAo8gvhrrE2i7.Nk_,BVCdFjch4YWNcn!E50,c$K2"} {"col1": -217244015, "col2": -68, "col3": -22267, "col4": 1, "col5": -1646866721402246441, "col6": "8084098841923390485", "col7": -14844.271, "col8": -1972311570.899041, "col9": -35753532293436342.172, "col10": -71646062497318666.824, "col11": "2023-07-19", "col12": "2022-11-27 08:58:04.000000", "col13": "2023-01-17", "col14": "2023-06-03 13:25:35.000000", "col15": "U;", "col16": "i7PaF53S%u9_J+McGv5E_4dT75dYYLBspxuB=SY*B5qyXO9lHMR_d?F,/+Q,_(*HIG+WJ8s?"} {"col1": 1010916742, "col2": -11, "col3": -22359, "col4": 0, "col5": 2930583999829427139, "col6": "-7116265985222936851", "col7": -10714.571, "col8": -1680657480.454771, "col9": -99245732093918387.868, "col10": 96449786654190081.563, "col11": "2023-10-29", "col12": "2023-02-17 12:53:10.000000", "col13": "2022-12-01", "col14": "2023-06-24 18:12:02.000000", "col15": "!", "col16": "BW(V->#Bx)#C6e5,*iquBz%3V.xQ-%cpxCV#gncLGoyW7/Uw!Ys3IPSF9)N8!y6Wi@gjPbHh%SL+;X9uiRCte$f7fr$XMarl#+YT`.Kc-%o4gwfus>H0>)1*#qfW,nES?.>@3.@jwVF`~gl,qY?f^ec_Ur,1N!Gyee;~zp+jDaXfsdr1_lfyNYjPOXJ"} {"col1": -1176341229, "col2": -59, "col3": -17596, "col4": 0, "col5": 5225706367147128291, "col6": "7482023791772342755", "col7": 4907.7124, "col8": -69589660.206571, "col9": -74210811743941554.967, "col10": 37134395679332766.718, "col11": "2023-07-17", "col12": "2023-10-25 12:45:07.000000", "col13": "2023-06-10", "col14": "2023-08-03 05:37:13.000000", "col15": "h", "col16": "WHu/qO7D", "col17": "(p"} {"col1": 1419943662, "col2": 78, "col3": -26881, "col4": 1, "col5": -1935981815279221488, "col6": "515392747522788801", "col7": -10079.102, "col8": 166391426.979885, "col9": -98837509190739959.541, "col10": -44427137572921229.590, "col11": "2023-03-24", "col12": "2023-07-10 01:00:19.000000", "col13": "2023-04-22", "col14": "2023-10-14 14:30:44.000000", "col15": "u`A<=p6c`B", "col16": ".<&=zdb`tx~qLk!g#~oDZ^=yK)Hk2(>cFR0FS2_mC8A-?Rxb%z>oV,*W$WX>;(UJtBl4Je)g&DeY+BO^A=ezgQf", "col17": "rQfNcGI$nD5!`Q?e29e(gto_2DE/~4m~e;=X6p3E;%Gn%%,>9RPTU_g,qJxmagkp=ka*z4b"} {"col1": 1267116125, "col2": -33, "col3": 4031, "col4": 0, "col5": 4145604857134925353, "col6": "-224925331868005887", "col7": 26411.283, "col8": 1169746682.545244, "col9": 8572034354541309.272, "col10": 96151106049464759.806, "col11": "2023-07-21", "col12": "2022-12-25 01:03:54.000000", "col13": "2023-02-04", "col14": "2023-09-19 00:51:48.000000", "col15": "K>G*Dvh6A2xKWCX,bh>W*IBP^4?i;Ild6@^3cGh30L,a@-CP>lw8"} {"col1": -1508153295, "col2": -81, "col3": -19137, "col4": 1, "col5": 1077763455007258639, "col6": "-7549681434461673229", "col7": 26029.754, "col8": -204288435.299404, "col9": -80133776891054495.450, "col10": 1044641312148988.879, "col11": "2022-11-11", "col12": "2022-12-10 22:10:19.000000", "col13": "2023-02-20", "col14": "2023-01-03 20:19:38.000000", "col15": "oM9WX#5~", "col16": "^p7MMUb3O?gUp?g1E>o$Dn=90jm2XoqrJ1q!v&zuetA1N2c;G$+e", "col17": "i7.yWzza$F"} {"col1": -1957786302, "col2": 111, "col3": 687, "col4": 1, "col5": -329175267162713131, "col6": "6644820929726960152", "col7": -4319.3433, "col8": 1093662158.163057, "col9": -13018786555221977.392, "col10": 43944835139524800.189, "col11": "2023-07-10", "col12": "2023-08-11 15:40:43.000000", "col13": "2023-10-18", "col14": "2022-12-18 07:51:22.000000", "col15": "Bgd~3Z(Q.Di?@6pZl", "col17": "wqT8f;XnYAhjl^(CLkB", "col16": null, "col17": "JAZkO+11LB>w=a~yJ.nY5QKew*AtYmM^8Ip;o-Dqzbe3Za%>"} {"col1": 1434407077, "col2": 44, "col3": -23990, "col4": 1, "col5": 7759166642335176493, "col6": "-339315168127929241", "col7": 25013.748, "col8": -1897052142.267418, "col9": 49827457190844264.800, "col10": 85276312414130905.552, "col11": "2023-11-05", "col12": "2023-06-23 18:14:37.000000", "col13": "2023-03-09", "col14": "2023-11-06 16:29:14.000000", "col15": "o", "col16": "_R?KjiY>?Gv7vvg<1slZbu/W3yn/Ht-=yx;?`GcR.1aEPD?", "col17": "7Qh#O!OH9,o;aYe&JR,@J-tF/x7WzAAqlR=-B$H^G^QxP=lVN3dE"} {"col1": -2142436014, "col2": 112, "col3": -13779, "col4": 0, "col5": 4376296518422862612, "col6": "-2788487280869040538", "col7": -10449.303, "col8": 1911814619.522788, "col9": 78399317344786522.440, "col10": -88978986475903265.183, "col11": "2023-08-11", "col12": "2023-01-05 06:39:04.000000", "col13": "2023-05-29", "col14": "2023-09-10 00:13:54.000000", "col15": null, "col16": "2cV.3m?&3f`dKPNwEz)Yzqv#7/RfPD>ie#R>M#6DeY!ESRi4x_WNWcq", "col17": "z#76kMJRT%,;)Q`)5PRypZ.BykX=RW>E74~CZX=659+yC"} {"col1": 657834527, "col2": 82, "col3": -32157, "col4": 0, "col5": 4672634700889493540, "col6": "-7582842389135920340", "col7": 17082.41, "col8": -158467709.716171, "col9": -14184714635790844.455, "col10": -43596646954534245.626, "col11": "2023-10-06", "col12": "2023-06-17 11:50:02.000000", "col13": "2023-03-25", "col14": "2023-05-22 16:49:23.000000", "col15": "t", "col16": "f$Bgrye~#0ZZB_W=t0~h54X`eoZXPvY9h&,=4rKh@gLqIxI_~fHR!F2^Y*i#CY54j.,L.l3Kg6;z~0%HIPpvjC0oXT", "col17": "=.SJukh.@+ij0BWOJoXMba4F5rJkSj9Zb*kYgE0Nq2sJxB,vgG+jAMify4@)4JbBH~RMIZ*0KdXkJhSr45n3"} {"col1": 1511945047, "col2": -69, "col3": 19081, "col4": 0, "col5": 8771278776240250901, "col6": "1577044811093584542", "col7": 29968.03, "col8": 1155141123.389221, "col9": -39083065061490350.514, "col10": -19079192123719468.564, "col11": "2023-01-26", "col12": "2023-02-19 15:01:44.000000", "col13": "2023-06-04", "col14": "2023-09-09 18:03:08.000000", "col15": "&V1lDl64nyZ?#", "col16": "On+$X2e&dPz;LFV#tkO9!jFFu1UIcwP>pWjg>Q!KwD?GX", "col17": "Zi#Ld175.ld;.fB7GhWbxlk"} {"col1": 610894160, "col2": 65, "col3": 1018, "col4": 0, "col5": 3605394011254706763, "col6": "-3478982256520993022", "col7": 8121.156, "col8": 1025591253.456631, "col9": 81365968128401633.153, "col10": -81101382005088661.503, "col11": "2022-11-14", "col12": "2023-05-07 19:49:51.000000", "col13": "2022-11-19", "col14": "2023-03-25 16:19:35.000000", "col15": "ES)x=aMdIGmlT", "col16": "t/C$)nDCAK1yJ;^bJ7eE-LVy%cwb3jt49uCCq,PqOHwhk.T1yZW#O^JG@Fj8+?4z=7p", "col17": "1YCR$f%H_", "col17": "lzRPS/a8x_8pVZa$_P6,rb?g1da6/."} {"col1": -990480672, "col2": -55, "col3": -10708, "col4": 0, "col5": -4935291170825143958, "col6": "3384694337473565906", "col7": 9817.05, "col8": 2122107422.283364, "col9": -90356948255074812.910, "col10": 32770598240140924.717, "col11": "2023-08-20", "col12": "2023-07-09 22:23:54.000000", "col13": "2023-08-09", "col14": "2023-09-26 06:41:52.000000", "col15": "qc^eY8dd;w0&7", "col16": "znLeaJ~!L#rs2H", "col17": "Z;Xv,>li/Cyg2ZN,J;3&tzL#8udu=iHO,(Bu!N>wg6Apwd7tio6Ek@H@*rtZA$_T!p5lOfV##t.d)Z3JVd&@4k!X!l^K@aM@nt80Hb^/hW)r#-msijc,"} {"col1": 555766812, "col2": -81, "col3": 17557, "col4": 0, "col5": -3341927921358411772, "col6": "-6165250980065362285", "col7": -18895.7, "col8": -337416378.21902, "col9": -69836366696538069.535, "col10": -53494446298127305.916, "col11": "2023-03-20", "col12": "2023-11-04 03:12:35.000000", "col13": "2023-10-08", "col14": "2023-10-16 05:30:03.000000", "col15": "uP5RPe0!2w%YCZ", "col16": "wzq8zoI?nNJS", "col17": "n3;)J0zIV7u~>)xl$xoA"} {"col1": 1240578282, "col2": 51, "col3": 28317, "col4": 0, "col5": -6967229457925271456, "col6": "5570408718636605614", "col7": 21332.59, "col8": 48729495.590622, "col9": 59949626553560852.576, "col10": 95363730377398985.351, "col11": "2022-12-25", "col12": "2023-07-31 20:54:14.000000", "col13": "2023-03-18", "col14": "2023-03-14 19:47:27.000000", "col15": "ng%W.dJucV", "col16": "OQ.&Yd0lS#=)cDLsZ$n69)T9Ap)#0&F5B5JqXeN/gBpYh"} {"col1": -202536028, "col2": 102, "col3": 22321, "col4": 1, "col5": -4064308883480338960, "col6": "1299022891257543900", "col7": 5586.1284, "col8": 1073495949.461598, "col9": 25815878476649991.271, "col10": -41099988391402435.149, "col11": "2023-03-20", "col12": "2023-06-26 06:43:55.000000", "col13": "2023-10-18", "col14": "2023-09-27 10:38:15.000000", "col15": null, "col16": "++0y0w_B1uU-_nX1_wtfQ2.*KL^iUm4KC^z%bExhd05", "col17": "H+-KLfu`v@L#;z%k%?,Ati97@N<#Yw1tCJ88BAMYmwr90o1N^82S6kbAK5mC>)@unAiSck9>3OcjAv-XUdMg)e~*@E5CiAbc?oIC-rsGoQ`0", "col17": "Em3@9nt^w=_Lw~0&%7-chkQKhUGqj.,tz>SoqN`,Jj@"} {"col1": -1944951577, "col2": 82, "col3": 9319, "col4": 0, "col5": -6735411524378743936, "col6": "-3087230098102468185", "col7": 21840.625, "col8": -339534084.734941, "col9": -60500672577753918.683, "col10": 87018608768317029.549, "col11": "2022-12-31", "col12": "2022-11-22 19:12:11.000000", "col13": "2023-02-07", "col14": "2023-08-07 16:57:54.000000", "col15": "!", "col16": "b#Ng_Ogf`Lu-X.yz4QFNguvOf^R1*DW!YVilYEX4lY==z!`5<>=;X>o%ai`~6#IZyx+^WP?", "col17": "D72Q4Co~ta>yz1nErVUjhW`ZLHZpzzN*O=l?XJ.qW4720-*x(35xILFK,=#QtmS(39tTKPi7DvbSAUTy=53NVz1EiG>v;CrTZo"} {"col1": 234114787, "col2": 99, "col3": 32123, "col4": 1, "col5": -6965933224881843437, "col6": "-2028774596582884327", "col7": 32596.664, "col8": 1218403806.342796, "col9": -39226254369715538.282, "col10": 62972701386517228.800, "col11": "2023-02-11", "col12": "2023-01-04 20:21:53.000000", "col13": "2022-12-03", "col14": "2023-06-05 00:34:37.000000", "col15": "L", "col16": "=chLu0;am8NT7v73+;.4.h4cPaJi&cgSIrO", "col17": "xr!Uw9#LWk#%E8Wd&PdjB>4;4Bg-x2dpnQWNBiz)84q;,-ST*"} {"col1": 1713558477, "col2": -64, "col3": 23299, "col4": 1, "col5": -3655067400428113111, "col6": "-971001965512541678", "col7": -13785.417, "col8": -106881665.080796, "col9": 29809265404205967.810, "col10": -29977477300742062.732, "col11": "2023-10-26", "col12": "2022-11-22 15:44:59.000000", "col13": "2023-10-25", "col14": "2023-07-09 09:57:20.000000", "col15": ";YWl_wN7!/l", "col16": "DOevlkm/XO+IIhi~-3kR%%", "col17": "=6A95Lm9LX$(vxAboou%,NY4qk$sNc!+NKCeS8<#`7N^?"} {"col1": 920373695, "col2": 62, "col3": -13307, "col4": 0, "col5": 2315855827060133738, "col6": "2892134711552638253", "col7": -15204.923, "col8": 7196941.716221, "col9": 28960057270497525.509, "col10": 55610225204972104.249, "col11": "2022-12-30", "col12": "2023-04-23 12:59:48.000000", "col13": "2023-10-25", "col14": "2023-02-09 16:07:12.000000", "col15": ">Q5DGk#9z$z", "col16": "=q%,,02Vhx.!+vSpx7jL*L8m0EsQ>(NG43!n6_r~!x2g9BeKKj7$Cbr~R.xdF,OIoGt*", "col17": "X^EV@gll?znU~j78>)8%+3u#8Q!8;oO."} {"col1": -333781995, "col2": 90, "col3": 23250, "col4": 1, "col5": -2400027152784178446, "col6": "-1279962128679669598", "col7": 15358.365, "col8": -604161626.327051, "col9": 24398441755883018.463, "col10": 25132973924003857.266, "col11": "2023-04-19", "col12": "2023-05-08 13:25:29.000000", "col13": "2023-03-08", "col14": "2023-01-30 02:39:49.000000", "col15": "&q", "col16": "qUKk&`1I`o>.%THD?=E,;IcVHlaLwd+Hkbi@7Ji)+Ma8!AO1TicYo=+FBW=XT^EMV8*&8g4Jka/AxU*Q7+g./gXE~~Jmbbm.m/OM"} {"col1": -1606282538, "col2": 11, "col3": -3615, "col4": 1, "col5": 756292685090331785, "col6": "5925846768287126056", "col7": 7165.806, "col8": 2004792133.709086, "col9": 14151425806777272.721, "col10": 82461381788038896.830, "col11": "2023-01-01", "col12": "2023-06-27 11:43:03.000000", "col13": "2023-03-31", "col14": "2023-09-10 23:08:31.000000", "col15": ".%riu`", "col16": "A?sp9M^C6O.EEsXlXpRj$Azg=$0O1za&o_)DjyOzE++B+(.VwyvMsfTtr,C>OfS_?N/VEUXCX", "col17": "#b%h2%1rBH+<;Cj=Yq*(h0wYaB1p%S5Iqt9Q1"} {"col1": -301303501, "col2": -14, "col3": 20978, "col4": 0, "col5": 3071911585008707334, "col6": "610247436068778006", "col7": -9658.79, "col8": 454069105.89132, "col9": 27771028156388318.185, "col10": 78744669615573568.773, "col11": "2022-11-21", "col12": "2023-02-14 12:01:45.000000", "col13": "2022-11-16", "col14": "2023-08-30 11:55:29.000000", "col15": "eJ", "col16": "Q,7IORo3!>P9HFUCaHT1WUobo*$bZp(Y+9wz.#3Z60;;W~`yRh*)-tR<@gO4K~;GR1j?t-2~O20jpZET0bZTPY>$Ho!Rw0AiVX2kHSmf2>I)!ft=_%e-XyPt1bi6*sTgvE@wN0#G7K"} {"col1": -1936211661, "col2": -122, "col3": -23211, "col4": 0, "col5": -5540740830240461096, "col6": "7009626545118772440", "col7": -16446.195, "col8": -775937464.459849, "col9": -61698507725639460.885, "col10": 3879413632663669.319, "col11": "2023-03-30", "col12": "2023-05-04 08:56:03.000000", "col13": "2023-08-26", "col14": "2023-03-15 05:45:03.000000", "col15": "Ou8r#Ddwir,w#", "col16": "X815bcqKInnc+vjvzfrzVzN=Ip+yX9V+S&Wh=u%O;*PrNG~`E~9rxnHn.0<44PPjWz", "col17": "Nd&Ej;;G.CBSk5*3SoL4H@Z4_TzuSMzd3j@Px46sR"} {"col1": -1926966604, "col2": -18, "col3": 24791, "col4": 0, "col5": 2921317845794227618, "col6": "8114429751870216975", "col7": -9627.225, "col8": 1055221307.44863, "col9": -20442685919602826.571, "col10": 56210848181278655.146, "col11": "2023-07-27", "col12": "2023-07-10 17:02:57.000000", "col13": "2023-02-15", "col14": "2022-11-29 13:51:37.000000", "col15": "!", "col16": "Ke", "col17": "v+rxDv>5n#zPr1nPn8~ianE_-o7P!HT!~AK~)G>;cgWAJ7?eQ,I"} {"col1": 348414278, "col2": -112, "col3": 10967, "col4": 0, "col5": 22875989281754084, "col6": "-308924971579099934", "col7": 8971.96, "col8": 1595999005.478195, "col9": -45770313571158668.125, "col10": 12503300784959910.525, "col11": "2023-01-28", "col12": "2023-06-17 15:24:52.000000", "col13": "2023-02-14", "col14": "2023-05-24 14:28:24.000000", "col15": "Mx8+(-4K7Ub8k6u1auF5y9C;)-&;OUD/hE*1Q(_t5#CVNESc^k!&/zCnuT47sEq>tIO/iTM;YxQmeehnT^K62~w*&dzbl`7!FnCu%k(QT"} {"col1": 1689276863, "col2": 31, "col3": -27488, "col4": 1, "col5": 1413705707860766508, "col6": "8626885641484079374", "col7": 10747.075, "col8": -1725385712.668506, "col9": -43030410959042437.577, "col10": 65351213011512347.235, "col11": "2023-10-23", "col12": "2023-04-26 16:07:51.000000", "col13": "2023-06-05", "col14": "2023-02-10 08:04:51.000000", "col15": "b4SAoee", "col16": null, "col17": "$RiRQdW-Z0!`bZGKj4hXyZCtU$Td9qVkG;(P;pC$ZTbD?TV4J,j0RQkaLFK>!7-;za"} {"col1": 1307588401, "col2": 118, "col3": -230, "col4": 0, "col5": -9003147224024323648, "col6": "-2834821371169576495", "col7": -23682.217, "col8": -1057477971.37014, "col9": 7442718637323324.671, "col10": 23979138129054233.376, "col11": "2023-01-10", "col12": "2023-09-26 16:46:28.000000", "col13": "2023-02-26", "col14": "2023-04-28 23:21:07.000000", "col15": "z>5$heX.naO9", "col16": "Q6CwRV&x4(5?)IN4W=A1Km%ij.seM~;iG#n(=e@8@0F6fh6al/)yy`_IkCE1-e)", "col17": "$XUvhrW.53YNg<$auhwq`/.kX&t+QCVq"} -\N {"col1": 286636, "col2": 40, "col3": 12531, "col4": 0, "col5": -2314336941027611643, "col6": "325716261438789569", "col7": 32479.145, "col8": -1658974100.936647, "col9": 11853795084347828.361, "col10": 62514140879293637.625, "col11": "2023-06-08", "col12": "2023-04-11 04:47:26.000000", "col13": "2023-07-19", "col14": "2023-03-24 14:29:58.000000", "col15": "CE/$ty", "col16": "h~JCUN)yt_PIz%X8ZZhwvPgx`GjEU9sb2`Yt$uc~=STGn6a*.OaG>/svCkKbLb*g&XEh5pNN@zux@"} {"col1": 1761523268, "col2": 111, "col3": 19405, "col4": 0, "col5": -1410410496357211184, "col6": "-8199224635820068032", "col7": 22934.434, "col8": 627538448.05242, "col9": -45064148478173929.176, "col10": 73410053241837519.345, "col11": "2023-04-29", "col12": "2023-06-22 10:49:00.000000", "col13": "2023-03-05", "col14": "2023-05-31 15:44:41.000000", "col15": "", "col17": "(dfQv~g1NTfr27mribQ"} {"col1": 1772566035, "col2": -63, "col3": -29273, "col4": 0, "col5": 8745264170466134585, "col6": "-5506842273306313157", "col7": 3759.1814, "col8": -1452285594.876885, "col9": -60197265634701597.901, "col10": -95081102937771943.624, "col11": "2023-03-02", "col12": "2023-03-12 04:22:55.000000", "col13": "2023-05-31", "col14": "2023-11-01 09:54:42.000000", "col15": "TT1.q1I67`kl", "col16": "Ps", "col17": "FVv20/F-=ByPeQ3nF+?(_^#_iPrS+u1_ZHJ`zi83m#+b(@Y=(q^F/L9"} {"col1": 114127467, "col2": 87, "col3": 793, "col4": 1, "col5": -428535361954066498, "col6": "4697713311229287983", "col7": -6481.3823, "col8": -1924904573.8708, "col9": 45709405300291925.157, "col10": 1577321435926722.138, "col11": "2023-11-09", "col12": "2023-03-25 02:19:32.000000", "col13": "2023-07-28", "col14": "2023-01-19 02:23:09.000000", "col15": "f2-`M54d(eOQ#", "col16": "XxP&n&hF*/h==ul)5~?jC%uziFEl=/7>5rm+`lt5$+hAAWdD", "col17": "ws@.x^hDAc0g(PQ@~tZ2Ga.+J6TGTIjAO#+eKcYwKL2NB<,w*BqwNo$hY;/>h(b3RID%fyKbTH5#U*q-WDDS9lb6(^R~SzsZKs"} {"col1": -1891520405, "col2": 124, "col3": 8855, "col4": 1, "col5": -913657545924566585, "col6": "-1536770753715164108", "col7": 6998.9185, "col8": 511030433.623111, "col9": -10830494740800769.178, "col10": 78391274234937148.959, "col11": "2023-08-06", "col12": "2023-02-22 13:11:30.000000", "col13": "2023-09-24", "col14": "2023-06-13 20:30:12.000000", "col15": "k", "col16": "wvdkyd*9nP1", "col17": "A5J)3lWuThPKL`H=o-b6Mj#/JsG?^47VpsM&h7<6Tg&1hR92WWv13)d5N6q)g2i_j_1Gl3_On+&Kb#hZa1"} {"col1": 1975678310, "col2": -78, "col3": 20283, "col4": 1, "col5": -6645481965792488411, "col6": "1567102139313612320", "col7": -23824.113, "col8": 1658568100.136103, "col9": -80600254825061679.751, "col10": 30197107892252230.108, "col11": "2023-01-27", "col12": "2022-11-13 04:42:17.000000", "col13": "2023-06-19", "col14": "2023-04-12 01:20:33.000000", "col15": ",+4NzIq2dl5", "col16": "4!CcT;-T3C6+fTB&clJ/Z,uK>GVqB4LEN^5sR2LWIp90nUH)ta7T`", "col17": "y2r6_*;YvqS=IF<9pNoVm6fWbjV!eGlcRP1kI<-*tzIqC~5ea", "col17": "!707G-OCekwr2^P<;JAAaPC0fUC", "col16": "kD*64pf#WguZnpBe(Z>V+G@#K/sFJL^4vU7W.JNgDAqxOi/!!W8^a~_D/vTChag3", "col17": "rrg45ezp?`&=7Ize#JggS2c=>75nio3VWl#3*H%,4XrJC<;cfm@K.49"} {"col1": -2088545982, "col2": -34, "col3": 31082, "col4": 1, "col5": 5811404451403597720, "col6": "7826096519969022070", "col7": 30825.854, "col8": 404659070.586117, "col9": -58291318173774590.227, "col10": 87552520044200423.105, "col11": "2023-02-28", "col12": "2023-01-04 03:21:34.000000", "col13": "2023-06-24", "col14": "2023-03-23 07:03:33.000000", "col15": "$@w#", "col16": "9J!>TQzsZ#;VhcTeu)ZBd-WA3s~_!GNrn)Vc(=)u9$!YVz3vCpZ2Z6TjqHC", "col17": "GY(Kq`"} {"col1": -643943399, "col2": 97, "col3": 10260, "col4": 1, "col5": 6000646543942719109, "col6": "-5870128463593245825", "col7": -31959.92, "col8": 766947397.493618, "col9": -35062983341828929.800, "col10": 93064025838296084.345, "col11": "2022-11-22", "col12": "2023-01-04 20:49:57.000000", "col13": "2023-05-09", "col14": "2023-06-05 15:33:04.000000", "col15": "8H", "col16": "_$(l`W;6F6_IxAj~ZsfguZ,XK9pj8wBTA5hC7U54VDIror*I.ESU7", "col17": "n8S)_m=GNx7@DO_GLnsb/0Mx(gT&fw", "col17": "y3,LMyGp9+UXUdjv;rVb6nVkXfB#Pkjqs"} {"col1": 934345248, "col2": 23, "col3": -23564, "col4": 1, "col5": -8266523705337718865, "col6": "4786905438011282083", "col7": 6888.2563, "col8": 1792227006.464728, "col9": 35418424816196567.740, "col10": -51218829150912924.968, "col11": "2023-03-30", "col12": "2023-05-06 04:14:15.000000", "col13": "2023-03-06", "col14": "2023-08-07 03:43:52.000000", "col15": "WH6,qomN`D", "col16": "3*LN))ex+zT$/t#5/>,EGIOtXnI94.r8wP7-Yjzn_8OX99Q^XG&&_f/ae_wLIu", "col17": "VB)l`ohAY^ccC,.`1o--&0xv#8%l_0L6I,7ab,jvuDQ.@Qqtq!$uI.LAlqZmnFOw#c*%)g&5-"} -\N {"col1": 362462240, "col2": 107, "col3": -19403, "col4": 1, "col5": -2086043196257155238, "col6": "3865964499005646003", "col7": 22711.371, "col8": 725299699.801546, "col9": -45387828698461027.545, "col10": 43814986570507758.100, "col11": "2023-05-20", "col12": "2023-10-22 07:46:07.000000", "col13": "2023-03-22", "col14": "2023-07-09 20:48:12.000000", "col15": ")k4IDm>W@", "col16": "z<@LtFP9F@LS5^I", "col17": "U36Y)13J7a*y+5uRC&I?qKH#nYN2GZBPEzSf`h33_z4GklvW,mMBgNO=94*&A"} {"col1": 1687785038, "col2": -107, "col3": -9903, "col4": 0, "col5": -1284597074098258744, "col6": "4255739912045331949", "col7": 3686.9778, "col8": -686626859.048087, "col9": 93576326533596209.242, "col10": -72503896890548707.722, "col11": "2023-01-10", "col12": "2023-07-21 18:04:27.000000", "col13": "2023-05-30", "col14": "2023-05-08 04:56:30.000000", "col15": "Z!BV;CtgPYdP", "col16": "7EwD#)uY4kkdr6-JD^jLW4XhFkD9w=%A&_4o*?", "col17": "69f,q-^KD2(#<145hA)(g3fSQ(_>D2R13_8)n+ycz)<#k"} {"col1": 2096768982, "col2": -34, "col3": 29058, "col4": 0, "col5": -6549673997206638743, "col6": "6127489394831520395", "col7": -17730.66, "col8": 1478347723.502807, "col9": -50631199631210331.799, "col10": 11089858765247247.904, "col11": "2023-05-18", "col12": "2023-06-16 01:16:33.000000", "col13": "2023-11-04", "col14": "2023-06-14 17:34:35.000000", "col15": "~Uut", "col16": ".H@eCx23Fn85`ok4Tj*u7V,/M,5p4HouKmH;6fu,4W)E9>NsP_@e3P+vv%xIQ)AP^hAQg&FA2FqsFFe7dLgQNALodq", "col17": "7ZjfxOe+l@x^+"} {"col1": 1771065349, "col2": 53, "col3": 7046, "col4": 0, "col5": 6486422408055459438, "col6": "1553889049848122326", "col7": -10102.512, "col8": -1378044883.486697, "col9": 51706531060270979.396, "col10": 26168096158080868.665, "col11": "2023-02-25", "col12": "2022-11-18 08:32:06.000000", "col13": "2023-02-24", "col14": "2023-08-29 04:21:41.000000", "col15": "9-hq2", "col16": "9I4SmYLtT=`kF9X!#~D?rOvzq#cCD", "col17": "ANjFd42e3"} {"col1": -1588160227, "col2": -116, "col3": 13817, "col4": 1, "col5": -4296149395358621914, "col6": "-6836906242783581735", "col7": 29637.39, "col8": -75798249.092423, "col9": 2497472774459503.589, "col10": -90761335260520957.241, "col11": "2023-02-11", "col12": "2022-11-26 12:43:50.000000", "col13": "2023-07-10", "col14": "2023-05-21 14:25:20.000000", "col15": "O1b(iK", "col16": "ukoKp~~$~9<%6_g3$Jj,yK2.)v-D!>M%-", "col17": "hT#S6BGS)6GZSirhv=hVbs_IYNG%3!Zw5nqF._^J"} {"col1": -1036552242, "col2": -86, "col3": 23770, "col4": 1, "col5": 405167630719134959, "col6": "-211756583294689265", "col7": 22159.436, "col8": -1295725525.582972, "col9": -83614908689396406.993, "col10": -50555993612523832.443, "col11": "2023-06-19", "col12": "2023-10-23 07:29:43.000000", "col13": "2023-05-06", "col14": "2023-02-19 23:07:21.000000", "col15": "1r&)dE", "col16": "!7fZGY.4yft+4q@uam)~!H&_`5ea<%2,Gw#EPr*SVeCz$>RWC$kLrJaROE?u", "col17": "61)Y^Gi@H/vx.?QSZjJC"} {"col1": 889243397, "col2": -69, "col3": -4674, "col4": 0, "col5": -1919184636690999337, "col6": "-1912156216644268562", "col7": -22623.336, "col8": 1382859654.868149, "col9": -1497126140853661.537, "col10": 9109805582223006.744, "col11": "2023-06-13", "col12": "2023-02-26 05:53:39.000000", "col13": "2023-09-03", "col14": "2023-04-30 03:56:33.000000", "col15": "f", "col16": "9Wzh`Xb2c^mv!g161uS`F=-al@N<$R;?)`Ol5zHM-tUk%!qVQlum.m@5W1GAn1;9DC8npQ$h1)_3", "col17": "H>A)>>0XsnZi4V=aF-G-W(Z?^9G8ahRy^Nh=Y!xBTr_f736El3_G(VREI@L&0J)YYA=RheQ?YKQj9H2YM&&71d11LL6yhXR?463%1!zKtG-"} {"col1": -1291944714, "col2": 106, "col3": -1048, "col4": 0, "col5": -8233818128720950805, "col6": "6417417188254389423", "col7": -7141.208, "col8": -713810670.066522, "col9": -72223604538769031.332, "col10": 28938197253502224.607, "col11": "2023-04-08", "col12": "2023-04-09 05:23:36.000000", "col13": "2023-04-04", "col14": "2023-08-16 08:34:49.000000", "col15": "s,c", "col16": "TW0efT%7IM6V)&^hrAVlUS~%50=tex%nJBWePivPA)4Qsfu)zM8/UJ_zfDD;T<8rxR7!V;wGbqxU?yxp%~^&Bba", "col17": "uoaP0W6%IpkkjcVzz+<&IOCHGeoKPu!M.4bFEFL=~(++^y12ISswkzkulyjB(~OR02b"} {"col1": -1249441565, "col2": 91, "col3": 12027, "col4": 1, "col5": 4065635472874095639, "col6": "-2376945415387094371", "col7": -14409.862, "col8": -1239902270.695204, "col9": -33646059432117784.248, "col10": -71716101260479540.163, "col11": "2022-11-28", "col12": "2023-06-06 13:27:35.000000", "col13": "2023-11-06", "col14": "2023-10-17 13:06:14.000000", "col15": "4<=DZ&OB=H", "col16": "tFT`X-cR+.z4tR&g1uGeqh1ql)C=U>9e(@xzn5cpS", "col17": "hp23=Xb%?=b&^3%Gnv%%FrWBX#&tvz!v6+EDl&>eRz_jnOz)rzLz"} {"col1": -1536145286, "col2": -38, "col3": 28552, "col4": 1, "col5": 9083537221448637629, "col6": "2089265029844927384", "col7": -7274.4077, "col8": -428636344.093785, "col9": 73589132532644102.675, "col10": -5938584116809747.553, "col11": "2023-07-13", "col12": "2023-01-11 08:36:36.000000", "col13": "2023-08-25", "col14": "2023-09-01 15:52:29.000000", "col15": "6hv;P#K*wfy`", "col16": "yRDRHc(SP7Vzoil!N3SV?H)eEB=PBj,(-&LQ(tsFjbNE?_Ha)4Hs_gTYZ4&(-Ti;", "col17": "ZdiW>jg3r*ruRbigVg,E^k#MtX%lT-.,<5Y-L7&PbWcq,h+=`8f*Xpw1$-#*>POeYJ=M!o"} {"col1": 167169924, "col2": 4, "col3": 14674, "col4": 1, "col5": 2347843046354796458, "col6": "-696172936130542592", "col7": 22341.732, "col8": 979533389.734254, "col9": 60968044483849204.353, "col10": 30200553599060726.618, "col11": "2023-06-20", "col12": "2023-03-28 05:02:57.000000", "col13": "2023-01-24", "col14": "2023-10-29 11:40:58.000000", "col15": "AQe^", "col16": "CF%eqVbnb1c4`e(K!`n!Muj4BxT89", "col17": "x8(m?F*e&V,Igt8=5#1R(lzS~j@Hn^,LC-vZjlE)LtC^rqLsrW~f^?U/Xn`ZVf&I&oW=y-%leuuda%dLq;e9X+XWw8-NY`3OA$q", "col17": "4pw!lM=U;Z,fQc$"} {"col1": -1657087814, "col2": 1, "col3": -26359, "col4": 1, "col5": -2371384929867156666, "col6": "3775942651477303585", "col7": -21169.385, "col8": -845820801.63316, "col9": 47918734590593217.759, "col10": 74462264410504498.159, "col11": "2022-11-27", "col12": "2023-06-21 22:32:17.000000", "col13": "2023-09-10", "col14": "2023-03-06 22:21:45.000000", "col15": "#MQXBt27fOy-84QpDJi.%0X5sSk/*kuk$?)+;>*Q.e=5PkF<1Q>IOPO2^?=?/~Fucgbrn", "col17": "rBFXfu>!KM!+Mu~iH"} -\N {"col1": 47817694, "col2": -23, "col3": 17759, "col4": 0, "col5": -2592767188593682012, "col6": "-1917916342557241438", "col7": 19111.617, "col8": -1045747727.139381, "col9": -77856575383144612.699, "col10": -86130057040674962.742, "col11": "2023-08-21", "col12": "2023-06-02 13:59:25.000000", "col13": "2023-03-29", "col14": "2023-01-05 23:55:07.000000", "col15": "-r(1D", "col16": "8pQW;fR8tUWwoIA_rM;pR(F%*P/2?gPI/Vwti^5B`Ytx)!s#PtUyNKL+O,hYq)+dY8jzQvVF/5>", "col17": "r*gsVKh,uy`^e!W^&4hSjCO+3;yC0^8K-CO1~Da+phd2rWd8L~1S&QGH.O66)5?H+!aV=1%eY5"} {"col1": -26249996, "col2": 61, "col3": 18052, "col4": 1, "col5": -361005233824192772, "col6": "-1351496023545458172", "col7": 2805.9014, "col8": -737538715.989399, "col9": 90422987849359214.754, "col10": 66747731473323379.835, "col11": "2023-07-26", "col12": "2023-07-17 10:28:21.000000", "col13": "2023-03-27", "col14": "2023-03-07 15:03:53.000000", "col15": "dodMKqi>N7k%v$", "col16": "iPB", "col17": "UPfh25?E6Pfpf3EogN9ujIiak*x@OG<0il6+EE19k-lPEZJac=C@Qj-"} {"col1": -1520622638, "col2": -90, "col3": 11515, "col4": 0, "col5": -4009716856944176555, "col6": "-4763301688224260064", "col7": 6702.3447, "col8": 798392384.256083, "col9": 75665032011082251.451, "col10": 34201762262152502.147, "col11": "2023-05-11", "col12": "2023-05-31 22:45:15.000000", "col13": "2023-10-09", "col14": "2023-10-10 02:53:02.000000", "col15": "yPS&?m", "col16": "cNeMO$(mORdi#0f>bnGNcIYxb7eT(jlq4g#>nYBGt1`e>"} {"col1": -1943129515, "col2": 50, "col3": 11579, "col4": 0, "col5": 2799362801208622844, "col6": "-1948899835302220937", "col7": 3235.7126, "col8": 206154929.5756, "col9": 22606996553063829.342, "col10": -65714174487506859.315, "col11": "2023-03-04", "col12": "2023-08-13 10:24:14.000000", "col13": "2023-03-19", "col14": "2023-03-16 14:59:46.000000", "col15": "^e", "col16": "9c0WW2wSr%)FqeU/CuGIl/Kgz`UFTQ/0d`.O0wzY`39^p4Z,;v-xaQJ3)Vvla9~04~NUXl$^lId/9P/GtCe9;z1SOC&2z-", "col17": "F6M+_Pc0iJw;.M5GyC/)&U=&"} {"col1": 366784492, "col2": -91, "col3": 5343, "col4": 0, "col5": 285484482479435330, "col6": "4401895463845494554", "col7": 23758.332, "col8": -325384021.555593, "col9": -50455152503318203.449, "col10": 65244455548239672.160, "col11": "2023-01-19", "col12": "2022-12-18 07:17:46.000000", "col13": "2023-02-03", "col14": "2022-11-14 11:48:04.000000", "col15": null, "col16": "cdyVRDf*>%*RPqOgpEg%Ti6FIZ)V(WrjX_eHWl7dPX0z5dhLKbA9+GuZ0I!gf*/T!S_/c#7NR&MAH#Tk2UN", "col17": "Rs*$@~;A%US+wC1Cq8enU!L4N=_/dHrhUN+d>oIw8i9Qqz&rW0E"} {"col1": 1177567574, "col2": -126, "col3": -4059, "col4": 1, "col5": 4286979026530110942, "col6": "-6963589946162575091", "col7": -565.9203, "col8": 182212496.114089, "col9": 81434412723303110.327, "col10": 40581272774311981.379, "col11": "2023-10-14", "col12": "2023-08-22 19:58:50.000000", "col13": "2023-11-09", "col14": "2023-09-22 01:29:02.000000", "col15": "OdnKqKet", "col16": ")BiuAN,,3H,u0xos-HqTGcro3J_6BV9Ev3bA_i@C?82Cw-j!!4Rp^Bpg", "col17": "LP8;=d$^WX3x+F1fb_Dev+AlYyvT1(DEFRa0Y.H0hot&Y1)/e6Qk0Do0^`wJ"} {"col1": 252819544, "col2": 6, "col3": -5693, "col4": 1, "col5": -3871447155054953032, "col6": "-1891127181338244549", "col7": 1470.908, "col8": -396385857.38936, "col9": 77121196514062171.380, "col10": -76861447925560213.478, "col11": "2023-05-30", "col12": "2023-04-28 02:28:30.000000", "col13": "2023-04-27", "col14": "2022-12-19 21:16:15.000000", "col15": "X;iF^sn9dndWoEb&;<1#~JU+gL)W1p3vyVUraPXmm=88Ea5i0OCx;3.a6=ky?"} {"col1": 576136288, "col2": -75, "col3": 7643, "col4": 1, "col5": 5799786671761075428, "col6": "916707314575044419", "col7": -22797.441, "col8": -2139432915.195112, "col9": 53906879174554699.108, "col10": 43663435803801309.118, "col11": "2023-05-31", "col12": "2022-12-15 05:07:26.000000", "col13": "2023-03-20", "col14": "2022-12-25 06:16:53.000000", "col15": "!WE8H#N7Z@CQx", "col16": "FJ$3E,G9N*wOeHzbml;@L&)sSx?/jB>tWXVlJmsdPsE@GG^A1!kD,~h?Q*SFN", "col17": ";_4o!co`.YXY,.b3sK+1rT%IVr7u1cy7%)B(x"} {"col1": -1883971659, "col2": 99, "col3": 10543, "col4": 1, "col5": -6728365874054023417, "col6": "-2328573775928406762", "col7": -2735.7705, "col8": -470549814.163389, "col9": -24454876926389819.379, "col10": 16483429508200308.120, "col11": "2023-01-20", "col12": "2023-01-27 05:31:49.000000", "col13": "2023-09-22", "col14": "2023-09-10 20:55:16.000000", "col15": "d!jdHwSL", "col16": "RXES-4ZoVQUghRY~#kZ-IeUJ^oe=,(", "col17": ";!h>V5Aqh@+TnG~EDzP*Bs0_AgZg^7SO3h9v12X!>enKhKmJl#)4q%>j<.?jS/t", "col17": ".5#MUXb1Cv?3>bHw0a#MV!vr3%"} {"col1": -2030375227, "col2": 54, "col3": 4384, "col4": 0, "col5": -7125092162125811206, "col6": "-4232776774567000152", "col7": 26837.652, "col8": 1917723626.45192, "col9": -15896016299014652.442, "col10": -68084327262626945.294, "col11": "2023-10-13", "col12": "2023-10-30 01:46:52.000000", "col13": "2023-09-27", "col14": "2023-01-06 04:24:47.000000", "col15": "FArbkY", "col16": "V;_5p", "col17": "z=wz%nr+n-,)/Vi#u!)M%Y,UhL)0mo=OLh;f$6x/6O&ut_H2W3)q(tATkEHSkB6cd-m"} {"col1": 1369414688, "col2": 12, "col3": 7964, "col4": 0, "col5": 1428861763881105022, "col6": "2927268561583567702", "col7": 25576.006, "col8": -484934950.126092, "col9": -80396552750778333.144, "col10": 65920321358287276.326, "col11": "2022-11-25", "col12": "2023-07-29 20:42:00.000000", "col13": "2023-01-11", "col14": "2023-04-27 17:19:01.000000", "col15": "-x,", "col16": "5w*P!Z;H+vrmxXzH?TCeoWWR.t3A35^B6Tp9rP`+@yFD9o1hF+qj(_U6Ml7<2sGhz+<>ooD,ag,^Ob8R2#*99?w2E3)F&B>HZ`I", "col17": "cZ/Hd;c*lG#Ri`&u*(C"} {"col1": 1800931837, "col2": 53, "col3": -6430, "col4": 1, "col5": -6410417525054536956, "col6": "668753896008119484", "col7": 3743.2031, "col8": -1177072535.248117, "col9": -47987051810775598.276, "col10": 39810223410294879.600, "col11": "2022-11-29", "col12": "2023-07-06 14:49:35.000000", "col13": "2023-04-30", "col14": "2023-10-13 17:48:58.000000", "col15": "Wea/KX", "col16": "OLc,m^(MTIfxn.%l29uZ?+(eC5szoGE~,+xv_GsR!bOPfrTUKWLpTKky6d`,wh&azAS!+q9xqm9LB2R", "col17": "w=LWqr~KT)La5/sN+CtM>265=,"} --8903033418165608020 {"col1": -1174247920, "col2": 36, "col3": -22731, "col4": 0, "col5": 7899564070391978274, "col6": "699172697713213350", "col7": -4668.7007, "col8": -615162117.884674, "col9": -68837064230431691.639, "col10": 70891119436876294.790, "col11": "2023-11-10", "col12": "2023-01-30 02:08:18.000000", "col13": "2023-03-27", "col14": "2023-08-16 16:00:27.000000", "col15": "hCET~vllh5Nl$KVatwNIEs.fwG07haAK-w8kg>QA9*Q&Cq=rd5J=iOj,4b6T`YNn$!ToQlF/R-8~9-sE?mcNekAWsxWhyy="} {"col1": 1976188027, "col2": 39, "col3": -20199, "col4": 1, "col5": 54838796530721045, "col6": "-4199157709856370965", "col7": -20633.107, "col8": -1314405206.528385, "col9": -17838244458606850.919, "col10": 13993039380882130.769, "col11": "2023-04-28", "col12": "2023-07-21 06:48:51.000000", "col13": "2022-11-14", "col14": "2023-05-29 15:07:03.000000", "col15": "Z", "col16": null, "col17": "aMm_kYB`6gpU2h;uD&8/kw3X"} {"col1": -439380020, "col2": 96, "col3": -17308, "col4": 0, "col5": 3579043460080517561, "col6": "4240896818074065205", "col7": 12152.55, "col8": 1198053802.322113, "col9": 2562915342156503.474, "col10": 7583328329290118.446, "col11": "2023-03-31", "col12": "2023-04-17 02:55:52.000000", "col13": "2023-03-19", "col14": "2023-03-29 13:17:27.000000", "col15": "0&P0_,,9I&dn", "col16": "HTtzP,7Ob", "col17": ">!M"} {"col1": -457160013, "col2": -87, "col3": -32076, "col4": 0, "col5": 2962490776305786988, "col6": "-9219898190360409591", "col7": 4773.356, "col8": 124168385.283727, "col9": 66564244852109284.538, "col10": -17698570145691684.721, "col11": "2023-09-09", "col12": "2023-05-12 14:33:56.000000", "col13": "2023-05-19", "col14": "2023-08-07 19:17:09.000000", "col15": null, "col16": "nsqUTDXMfOqg!S7C97`49QcZ4Os0TI?g6E2#J/(fV>(*X_Q`(6Znf?h$PS4u8NFcB49IFq/mgNAJX~p-C~4.", "col17": "0mntxHvG8zY_", "col16": "ca", "col17": "v.@WpiI1+`>Bj#II4"} {"col1": -1135173592, "col2": -24, "col3": 12059, "col4": 1, "col5": -4173609755187683516, "col6": "9104229668324434517", "col7": -18978.926, "col8": 1538129083.152786, "col9": 49186343729636745.231, "col10": -7234568807819447.144, "col11": "2023-06-14", "col12": "2023-11-09 00:22:59.000000", "col13": "2023-01-15", "col14": "2023-07-14 13:08:52.000000", "col15": "(~twE21C", "col16": "o?XB9l_e*+?3UZH_qGT7/r7F4~rr1$k%;eaEMa?r4@P@jk)6P>XxpFY2(q9iiV~fm7eEP5oN<#zlsw~wji"} {"col1": 441268110, "col2": 102, "col3": 13250, "col4": 1, "col5": 8597594907679023161, "col6": "5667613937641491367", "col7": 29102.045, "col8": -319989982.17985, "col9": -81087716870785483.143, "col10": -64800115883130558.550, "col11": "2023-06-02", "col12": "2023-10-04 21:25:45.000000", "col13": "2023-03-03", "col14": "2023-09-23 07:27:31.000000", "col15": "G-48d", "col16": ")EWS(!Qtciw`^3x;+Guc+;_oW?-LRLh;FnQfLL?ieRtZ$WJm?blsQn32p6O@$J%cjb%nZTC.6m>w;UI<%)EB+n"} {"col1": 577259683, "col2": 18, "col3": -13537, "col4": 0, "col5": 5778440245350381673, "col6": "1729667696812540134", "col7": -29986.787, "col8": 462696869.740925, "col9": -64242297078135876.710, "col10": -34110060920083841.600, "col11": "2022-12-13", "col12": "2022-11-11 00:41:32.000000", "col13": "2023-04-20", "col14": "2023-10-19 18:35:25.000000", "col15": "k)W4Wbt8", "col16": "F<0)FFx0Ay&wdY%rRE#>t4QOL(pTd^BOW8@~KBXCvXgQ@20mrzFPd", "col17": "-WOU+(8-*I<*-F;U.4MF&Y>n*xNAbLHf/l9K_BjIdK;0T-&J0$DumP_scfWr!tpPd@g=/fyD;C7vV8&j>F/AC^r5^,t+pid@P)&^=&?g`?*iJzsx4k=<<;aqi@a%f"} {"col1": 358052123, "col2": -20, "col3": -995, "col4": 1, "col5": 8462498483626768535, "col6": "-4579777337458835014", "col7": 5497.2812, "col8": -1675121192.209081, "col9": -55228000464087729.376, "col10": 54075338566731730.689, "col11": "2023-05-09", "col12": "2023-08-19 11:53:12.000000", "col13": "2023-01-30", "col14": "2023-06-08 14:32:40.000000", "col15": "z$8+gBbZ", "col16": "0;^hCNKLqx=)", "col17": "QH=1=ezdz`3u@IwXC~q.Hjo5Tch6LPfj_$nX>*saEQU.Oz(cL.rR*iuahbYnb*0C4*G0``Q^Nd0RPP$vhA&95q)X<(a.PfZ,H>GHG=LjhC9G.-8!X", "col17": ",DvFSRv&Ez!GJrEo1/;Nr,*Qm*_eV7S(CesYSTt3v_w>NRew~3h(IrQQ"} {"col1": 196725014, "col2": -24, "col3": -13427, "col4": 0, "col5": -7375318581248960057, "col6": "-2543965274523748861", "col7": 5780.991, "col8": -694770524.546083, "col9": -76123002210744723.992, "col10": -47697265631521692.335, "col11": "2023-04-24", "col12": "2023-01-08 11:35:37.000000", "col13": "2022-11-13", "col14": "2022-12-03 12:55:19.000000", "col15": "0KC+u_$>", "col16": "i@-@ASL*~~/iY)1+$rL)*DEk<Z%kd&Gc,s9FlWo!42P.yo_VO*Xewr$C@b?b8;/f-_7G=w^OX$m5#6*", "col17": "P+dMU%2GvWo=*+_U$#N871~QZ@pzc,~lLCYiY)~k"} {"col1": -688049528, "col2": -35, "col3": 4321, "col4": 0, "col5": 7245845458805220394, "col6": "3912116986726525719", "col7": 10877.681, "col8": -87511596.70815, "col9": 27431649310089463.872, "col10": 53000349361497028.867, "col11": "2022-12-14", "col12": "2023-09-10 09:56:23.000000", "col13": "2023-04-04", "col14": "2023-01-17 18:35:42.000000", "col15": null, "col16": "%fS1#RR47;vSRM%nZorS5_/xpu.@SM.~5klrRc)^e;dFK@N-bkA$(NAX&-0Vu1LrvZ.cBjSFfYwOKQy6C!qVPw;arKX&W>p/w-P-*ZxmrLy", "col17": "o7(4@cOp3=~p%l7+23)~Jf5vb$t@yCV@CfjrxEvB`iJT0q;-)XCuX#h/6dAOP$%0fH0deJ8%DNNeH$XZ^C!Q="} {"col1": -1474368615, "col2": -21, "col3": 5177, "col4": 1, "col5": 8174349037021096782, "col6": "2571804249862798292", "col7": 9933.032, "col8": -720750366.940295, "col9": -8590320354503227.221, "col10": -94099543687278644.814, "col11": "2023-03-03", "col12": "2023-07-11 13:00:08.000000", "col13": "2023-03-29", "col14": "2023-01-22 03:42:30.000000", "col15": "9gn!5C!BvEP", "col16": "X)1XT$`l2Lkr93E&?A?GWlurNp//;jSuTw>l6!?", "col17": "+<2ZMd=Xd0Q<2KT.%!K.Suj45?_lTHL3LptTpI^+(Kr8P6wx&(s8&"} {"col1": -1693846609, "col2": -73, "col3": 9118, "col4": 0, "col5": -2985094276774224395, "col6": "8805992256826989074", "col7": 6244.1, "col8": 1813143653.166, "col9": -62764692014561863.442, "col10": -38325067730370117.681, "col11": "2023-09-07", "col12": "2023-01-28 12:49:35.000000", "col13": "2023-04-18", "col14": "2023-01-17 20:14:35.000000", "col15": "d65uY.r", "col16": ")A>je?_.Gt<;n`w51eCBOWT-kR`1ASIA", "col17": "hQWT,ge>KGm#zleH67$,`Px&A`N*kPk.ZqkO!4SG~-x/9~x*+tmgjmK", "col17": "M=_wY3E`(,i21pX2tO=f;oHS6n5,1@LU+iPFypM2zE(+(>k6XxzUqU*OTtx#!P5k++x@p60GAA>D0deaeDV$@N0R5"} {"col1": 519727040, "col2": 80, "col3": 14429, "col4": 0, "col5": -617879460517437411, "col6": "-7165327641490392420", "col7": -13084.128, "col8": 1970316910.765143, "col9": -93976002804076259.534, "col10": -32558524385546329.363, "col11": "2022-11-13", "col12": "2023-02-16 09:07:20.000000", "col13": "2023-07-28", "col14": "2023-01-08 22:38:58.000000", "col15": "XsBMIBa^FI!d!", "col16": "pePuy7bPN&=l)?;@l6NJ7/V0Ukt1ubtmZMI$(d;ozN3!>1x2DDo>MRifl;4T8d`2_7R76B9&lePU^UK#$M`&ySGkb;)!x", "col17": "qY/@=?,a0!5EDHD"} {"col1": 564937758, "col2": -10, "col3": -19719, "col4": 1, "col5": 6205568508580489074, "col6": "-238554161903590528", "col7": -8137.3535, "col8": 1023623642.337226, "col9": -2362569962650581.821, "col10": -68775335337492456.403, "col11": "2023-08-28", "col12": "2022-12-13 09:02:24.000000", "col13": "2022-12-14", "col14": "2023-10-02 15:42:07.000000", "col15": null, "col16": "B)a?p0>L8kL", "col17": "zvS`nT$&kYjuqvx6SM0>h*lkl^`~s$^LmTQN~*B^qdyQF^`Ofh~L.GJ5@Bvc%X>akZfc$9Xeabk1FOw1fJI@9-U-V"} {"col1": 1914314437, "col2": 14, "col3": -3885, "col4": 0, "col5": 5289140208274800927, "col6": "5523134939016922802", "col7": -16044.735, "col8": -531461112.058018, "col9": 20859664695767945.768, "col10": -95844141490303829.980, "col11": "2023-05-12", "col12": "2023-08-10 20:49:23.000000", "col13": "2023-03-12", "col14": "2023-04-03 10:12:58.000000", "col15": "THW", "col16": "0L35Dot/95xSb1igaBQY#jCm&q%c/MQ(2(0-sufN>BmBlt-`^L4rN2hH6D&Xy1Z8kY$>t5Z(,h1i4l2gU8e", "col17": "w`)of^9_@N=DZsU##xMKBfYAdm`fd=7V"} {"col1": -1700382114, "col2": 115, "col3": -6204, "col4": 1, "col5": -4126342125777344756, "col6": "9054982454557719308", "col7": -19103.875, "col8": 2031018782.572868, "col9": -83553942298914702.482, "col10": 58591672291818154.504, "col11": "2022-12-12", "col12": "2023-09-28 14:22:44.000000", "col13": "2023-03-03", "col14": "2023-06-25 13:19:15.000000", "col15": "BV", "col16": ")jJv", "col17": "EL_I^2A-KD9P^n0VGfY.DapPaHP4b=3QCZXQ0-zW@Ke-", "col17": "LTl)O&FsU0<4mq5_a!VkB(dy"} {"col1": 293498095, "col2": -121, "col3": -25965, "col4": 0, "col5": -3576656064125326132, "col6": "-5657804083675264268", "col7": -30704.178, "col8": -904104728.103341, "col9": -3159432710175410.370, "col10": -45496500895008845.756, "col11": "2022-12-08", "col12": "2022-11-19 03:19:20.000000", "col13": "2023-04-19", "col14": "2023-10-01 09:10:42.000000", "col15": "M1/gn^", "col16": "3e3^nd>C*R&P-K`Q(/l#S@p#~VG6N8bakqb!6JOCPi>OKf@FyVx2v!E_GzXS&iI_rvtU3@nH~~jWu6@%4>", "col17": "ECpA8MXR9"} {"col1": 1891310032, "col2": -26, "col3": 26695, "col4": 0, "col5": -374125000529149443, "col6": "2171945590552452381", "col7": 1041.4928, "col8": 1273785834.848136, "col9": 97681462870233953.548, "col10": 80612975133223453.920, "col11": "2023-03-28", "col12": "2023-09-23 19:05:17.000000", "col13": "2023-01-08", "col14": "2023-04-22 18:50:43.000000", "col15": "EC><,k", "col16": "UuW2bFgOk", "col17": ".yuEbs~=_md6Q=p_rC#4rM5Fv>2;)`1?vo@o*OHlmw%w1yqWi&8heNZ?~8!C0qL"} {"col1": -741198949, "col2": -125, "col3": -19192, "col4": 1, "col5": 5676011356690276916, "col6": "-7208944717181851294", "col7": -16968.037, "col8": -172360599.036606, "col9": 11062817494936380.754, "col10": -20473655271393218.620, "col11": "2023-01-05", "col12": "2023-06-05 05:32:43.000000", "col13": "2023-09-25", "col14": "2022-12-11 18:46:30.000000", "col15": "uo*`,0x4WusV8", "col16": "YBjQda$7u07noHXpbBeAqy^0Z~K5eC*l7NE8r`O^-*K3H(Q3c1i1R%FZTC-#ol`8`.uTDxsBrtnv~^41TTL,f-#Nx=fx1)U3#;9K=osN(BCPa/VJP^yb=x-wC", "col17": "$Uo7qZ)*QOk#*nXua`~=qi4*+F-DcC+~)8y#C6+UzS;8wr%?omo(XHQ9$C;A)a1Aw%T", "col17": "hv6lk51=2%oZ~k?s?jbdcE92t;q^*11S5Gni&", "col17": "h%EzOW5YYzGlD+#n8sn"} {"col1": 20035609, "col2": 3, "col3": 15349, "col4": 0, "col5": -822097466612981862, "col6": "-8411765013373638349", "col7": 31527.754, "col8": -563702334.28447, "col9": -73307201008760924.624, "col10": 41041091789555799.240, "col11": "2022-11-28", "col12": "2023-06-13 08:38:26.000000", "col13": "2023-09-11", "col14": "2023-02-24 05:04:10.000000", "col15": "k<,$", "col16": "8KGA*R`O`xc4ahsU,OfQF8U+L-MYW81RD@q_vBkcCAU=~)%kzq>I419e", "col17": ">hq0RmfoN8GY1KhcX%8kSVgNepBIx=64zIC5w1cd2)@HTg"} {"col1": 681801015, "col2": 33, "col3": -3520, "col4": 1, "col5": 7366609877737053742, "col6": "-3161246756640427052", "col7": -30325.709, "col8": 305541624.015199, "col9": -68808724306427475.611, "col10": -27445248172763847.371, "col11": "2023-01-23", "col12": "2023-09-01 22:06:09.000000", "col13": "2022-12-04", "col14": "2023-08-31 22:26:56.000000", "col15": "9~jInZTijOl/T", "col16": "t,BiuEz/IOh;/5Hgs^*toL%e-"} {"col1": -763764922, "col2": 43, "col3": -23399, "col4": 1, "col5": 783989712103186350, "col6": "4083110528859476183", "col7": 23241.365, "col8": 1995148265.406853, "col9": 96770525970445251.550, "col10": -85979799906620535.713, "col11": "2023-09-25", "col12": "2023-06-07 09:35:00.000000", "col13": "2023-07-19", "col14": "2023-02-04 03:54:25.000000", "col15": "Z~$?K=)T", "col16": "%0Z7_jKvdtrLWiMO2&Q$>Jo<5zh`.sd0(YWT.~Q`-B/q7,up>lw5PAA+B?h~PAfqH1d", "col17": "^*Zk4=6jLr?;fmtbcE/?y5s$*_-bmXh#H_LT>ua>2H&Bv%#e7lKc@k-;^Aa7ukG/VI6TR227%h?LT+(_v", "col17": "6TIVHg^HUKpnL(vb%EUwGhk3;)"} {"col1": 1370312656, "col2": 41, "col3": 18715, "col4": 0, "col5": -3758233030181962206, "col6": "-8987717996655162408", "col7": -31457.508, "col8": -1708794275.366794, "col9": -94588829972275923.445, "col10": 3986165881623729.357, "col11": "2023-08-11", "col12": "2023-07-25 18:20:01.000000", "col13": "2023-02-26", "col14": "2023-08-06 11:27:49.000000", "col15": "@DS1", "col16": "T?bB7tU", "col17": "IiQ@J6tX~sm^jG.r&swNrVk1-2ONnvC5Ig(XkMI)X%@DxZbPkLG<84l_F0*kDbpId.dd@d%Tqv"} {"col1": -1169184786, "col2": 71, "col3": 31927, "col4": 1, "col5": 8390345726239927198, "col6": "-7481515861580930114", "col7": -11882.879, "col8": 1647353218.839473, "col9": -83496988101917566.310, "col10": 8002364419087947.937, "col11": "2023-04-16", "col12": "2023-09-18 23:39:33.000000", "col13": "2023-11-07", "col14": "2023-10-27 03:02:59.000000", "col15": "=P", "col16": "62_"} {"col1": -1095228497, "col2": -62, "col3": -14579, "col4": 1, "col5": 8678662247688949464, "col6": "2327812601777741478", "col7": -18123.812, "col8": 1567963893.234542, "col9": 9922994714498675.274, "col10": 23455293548273884.488, "col11": "2023-02-23", "col12": "2023-01-05 12:37:47.000000", "col13": "2022-11-13", "col14": "2023-07-28 23:53:46.000000", "col15": "r1(NqlNf", "col16": "T1xKVofKWBof,<%7t>C;wtY<>3mbn/epHN2=GxB+(/*nt3YK7TLM,I14_bD@ZXu-2zy#l0j", "col17": "i~kdqVPV(-mwwO)up8=0aV,p9SEseGq#>", "col17":"WI-..k#Ztk/XDZbyHnMP,7#J.8j2NyFqw,I-"} {"col1":204687839, "col2":-82, "col3":2252, "col4":1, "col5":-19971071040251667, "col6":"-4155088892121165336", "col7":26448.963, "col8":1770740365.125187, "col9":60792873952372289.901, "col10":-14030812497137925.948, "col11":"2023-06-19", "col12":"2023-08-19 11:39:08.000000", "col13":"2023-10-15", "col14":"2023-06-11 10:49:52.000000", "col15":"vWMgFZ!&iZ5(F", "col16":"oJ$;rW2^gQ#mTA", "col17":"kI0/~du#OW9hW!>uv9ivK*Z,0bFlR+)yqznNUvMZwN+gzX;Wd)yNl9_(Gw7M`,*>Jec2iCu#_"} {"col1":-2003600874, "col2":-69, "col3":-22655, "col4":1, "col5":-2569480559938805074, "col6":"1878064350493481255", "col7":3894.8906, "col8":789107031.013365, "col9":422711248962606.869, "col10":89317269874267004.107, "col11":"2023-02-09", "col12":"2023-08-23 01:13:38.000000", "col13":"2023-05-13", "col14":"2023-09-19 05:36:43.000000", "col15":"/EcG>MMvXu)m", "col16":"2__N+dyiBTMqik2gMX", "col17":"mgYMy@^eE%^&5bZhwi~d#~-?BVT-5(_sMr;j#d(^_ELknHw$kw-x0_4HuMb#uXZbJO_,_nUrH"} {"col1":65437020, "col2":-46, "col3":-12018, "col4":1, "col5":2862131367901130287, "col6":"-3532338074579255894", "col7":-29409.672, "col8":-989688444.043172, "col9":45161442099730151.250, "col10":55537833004458471.913, "col11":"2023-04-03", "col12":"2023-04-11 20:34:26.000000", "col13":"2023-02-22", "col14":"2023-01-01 07:06:31.000000", "col15":""} {"col1":574017729, "col2":1, "col3":7437, "col4":0, "col5":-9006050591013304373, "col6":"8641070966538487677", "col7":-28902.05, "col8":1681509274.217499, "col9":-88825566803058829.347, "col10":98533291755312883.350, "col11":"2023-04-15", "col12":"2023-01-06 06:23:32.000000", "col13":"2023-02-12", "col14":"2023-03-28 03:17:07.000000", "col15":"#>nWjJF$", "col16":"RM&jYf~KvhNyt1Y%=yobHgXQBmfNj%zcBZx0E3w=%Z1h!T9MCtKbAxgD/jVOMO$iG^H!tinX@XfqEx/h$", "col17":"JZK@m-4Zc0;O+*DLuxw?ESNcqN6GUEcz"} {"col1":1312246670, "col2":9, "col3":19994, "col4":0, "col5":-3267472655758334247, "col6":"8285340605613836903", "col7":-10209.022, "col8":211608658.602411, "col9":21651311306694744.296, "col10":37400988704917411.582, "col11":"2023-10-07", "col12":"2023-05-31 03:59:17.000000", "col13":"2023-07-25", "col14":"2023-08-11 19:10:54.000000", "col15":"@Ij5I_3gR(kWG", "col16":"_/wD", "col17":"GrMdg72&fV53(_q?ZbYGrDKMi3-#4H3pu(M=c6*(^NY2?u*VMh7fmUTB?eopFxET9uZ3?WH3,.VWQ2c_/78@"} {"col1":1683904273, "col2":114, "col3":-24879, "col4":1, "col5":8135300646736071863, "col6":"-533138965112586068", "col7":-4603.649, "col8":2137625112.86537, "col9":-63027635477510479.768, "col10":-51263852143163526.143, "col11":"2023-05-18", "col12":"2023-08-24 14:30:10.000000", "col13":"2022-11-23", "col14":"2023-08-31 07:10:41.000000", "col15":"?+wPp%X8bbj(^@", "col16":"`4>g*MM@EfHoKaK+cG~kyx+D>GG`/^wDc0z@V&310o71B2357$_;eZ@T*", "col17":"O$T=JM2a#e?o%F?BK^Y$#)AQEYQj-5%2BNDq)c`UAfE6Y<>588"} {"col1":643219270, "col2":-20, "col3":-8137, "col4":0, "col5":2552650640448880115, "col6":"4674768345935204778", "col7":-28442.773, "col8":611533148.902466, "col9":25998828839996242.461, "col10":-14673004593363430.607, "col11":"2023-02-18", "col12":"2022-12-30 07:38:54.000000", "col13":"2023-05-17", "col14":"2022-11-29 16:40:22.000000", "col15":"fG~#TwD", "col16":"#,yvT(MI%p~l%+Rc_TRAA76-ofG7gA,%1bp%kNmvo;)H=$iqi", "col17":"6np/u"} {"col1":-1060443009, "col2":-67, "col3":-22580, "col4":0, "col5":-4444031682962794134, "col6":"133763345107711635", "col7":18073.379, "col8":248387995.865393, "col9":62095529744555286.698, "col10":4044200079094191.880, "col11":"2022-12-12", "col12":"2023-05-27 09:33:57.000000", "col13":"2023-03-01", "col14":"2023-05-29 17:39:04.000000", "col15":"?riaicX", "col16":"rT_@BeZKwQk0TQx9C^POv(QR>Jqz2Ve?EyFm+TMYWh6j1Yu0hfBliCECY^b8)P^d*Jfh0kGqER?T", "col17":"Idver-_^5ceDdzdn^P/N.nRMSPuzCqczLSh?)bl^OcSH5?F@c;P$K_O?__RKb~8)`0WB5_YfUTZ>^pa;le^r2DwRjqbJs0T`DUd"} {"col1":169247257, "col2":84, "col3":6693, "col4":0, "col5":-3628860903341657653, "col6":"-5015295262109218606", "col7":24289.36, "col8":-52506094.523564, "col9":78795489215042230.357, "col10":-79644456932811905.834, "col11":"2023-05-02", "col12":"2023-05-02 06:48:52.000000", "col13":"2023-04-26", "col14":"2023-09-08 16:18:26.000000", "col15":"t_=Uk6Ck1zV2l($JF`Q/A5(Ev!gU_0?Q#2n&&qv,2pm+gnZoori_b.*#FF4#!O<-Fv", "col17":"_giXg)6;#0<=KzV->z4>QBYIa6L5q8GS%(GNeFb1&%LGKZ?=xYyJ+k_Muejd_8ZDM2+^t`+&m_0"} {"col1":560863439, "col2":-71, "col3":8799, "col4":1, "col5":-7959962633037749654, "col6":"-328732735937660903", "col7":-13256.823, "col8":831484450.670579, "col9":-87334457318899243.239, "col10":-8966873817392032.630, "col11":"2023-05-08", "col12":"2023-06-10 10:29:40.000000", "col13":"2022-12-02", "col14":"2023-08-07 18:35:43.000000", "col15":"Y", "col16":"g?CE?+WT`zvCP$U(EPr;8^W_4-Rd2Dm*pj;4qyAv#u@QWvaO~)0Q>H-8ooaCmcHrh@s`@^``(A", "col17":"C880^~j?1kcZRK$@2Aa$z4t$rD$"} {"col1":-515575452, "col2":-113, "col3":-24632, "col4":0, "col5":4872295739581785324, "col6":"1645563956122792580", "col7":-5648.7715, "col8":2119787276.246767, "col9":91142813279352061.648, "col10":-3227778190014385.836, "col11":"2023-01-13", "col12":"2023-03-19 11:17:52.000000", "col13":"2022-12-01", "col14":"2023-05-08 05:34:55.000000", "col15":"u,6RTgWApC", "col16":"c(0hRJGA@I,5qgH/`=>FRAaaM", "col17":"e8a-wH&;r>T>gz1YBDp%H29E5$o5Xkw,=Gz58o6/^t4pC9tMEa5A"} {"col1":-768191949, "col2":-22, "col3":-17958, "col4":1, "col5":-5474863816659413511, "col6":"146498896644460146", "col7":-21183.82, "col8":1533467928.404991, "col9":-65028045572118641.195, "col10":42087598282844182.564, "col11":"2022-12-23", "col12":"2023-09-06 09:40:11.000000", "col13":"2023-02-15", "col14":"2022-12-27 19:12:20.000000", "col15":"*&,-SB", "col16":"tx", "col17":"B,>hor25X%ti4J8Y*ubr@?g$k0PR#wijM1UKm.ZY%6j3FI*zLReOB`WelJW^R!R#sbE&U!>`YYOFj*~#044AP~$Drdp=Q!"} {"col1":172233591, "col2":8, "col3":15319, "col4":0, "col5":3502657102937957793, "col6":"3164146766365984227", "col7":-8501.518, "col8":-1750170652.325613, "col9":-52876700116535801.780, "col10":77104328550003023.320, "col11":"2023-03-04", "col12":"2023-03-25 14:23:39.000000", "col13":"2023-07-03", "col14":"2023-08-20 15:49:48.000000", "col15":"5;cjMtPH5QfVO", "col16":"c#8L6dxjJSv7lGKr*_ww$^$I?%R*yeDp5C&hag$Q`P^8*k#!h$2aNolj0K5Bh?2%^;jkEhMFKj.rUuY*t!<#XI$nREm!t=1z+37Yo/R@905Fz)^10lSFStbOi8v%,oF"} {"col1":1668695486, "col2":-16, "col3":51, "col4":1, "col5":-6120027227101236921, "col6":"8994890486569440069", "col7":26802.582, "col8":1225698961.52193, "col9":85050625432102244.886, "col10":-62310261336359009.669, "col11":"2022-12-14", "col12":"2023-04-13 03:12:00.000000", "col13":"2023-03-23", "col14":"2022-12-14 09:54:32.000000", "col15":"UzA", "col16":"eil`B#4$+D4Qt--!DL@`L&$~$PMBw/V68/Avv<1xCT?A7?", "col17":"rLlE^DR2Emn"} +\N {"col1":-509008921, "col2":-27, "col3":-19163, "col4":0, "col5":1475648713457927736, "col6":"-3481435156122641780", "col7":23285.066, "col8":-2144452069.906995, "col9":26047508322316631.756, "col10":-74200637210404703.320, "col11":"2023-09-21", "col12":"2022-12-12 11:02:45.000000", "col13":"2022-12-16", "col14":"2023-07-16 16:34:15.000000", "col15":"YzCfOL-b%e).22", "col16":"gDH/)T=N9P4tHV@D@0p6h?@r%IL7#@Y$8iKxy.N~yXA@AB", "col17":"D&0!+fZ3M;LV.b~ARixpYVvQ>;tQFfZ*_<8?htD3ioNsBPKh;DMF/%`4y4&7E9tukeAp="} {"col1":1151997700, "col2":103, "col3":23267, "col4":1, "col5":-927023899465062923, "col6":"2739819997184443753", "col7":10377.521, "col8":-1725387353.727131, "col9":-79830805627769803.173, "col10":-34194369851408639.927, "col11":"2023-05-11", "col12":"2023-08-15 22:24:05.000000", "col13":"2023-05-23", "col14":"2023-01-29 05:46:47.000000", "col15":"%#$tXx4(JB", "col16":"dNhPI+3c%MCS;n(&5Hcxz7", "col17":"%?q#H8=eNCXCPsC$+fQCXKsAXf,gWdTN*teRmiN)I_+btL_1n18)QlSC`fDR+/xBE/U#F.Zl>sE9yG0!l3_XF>by+xc5K-X%T1NSj0"} {"col1":1421596361, "col2":72, "col3":3920, "col4":0, "col5":-6118489479642225283, "col6":"7317635664738699657", "col7":7737.5767, "col8":2003407003.509362, "col9":39552514893473143.869, "col10":-42730566174026754.489, "col11":"2022-12-09", "col12":"2022-12-26 15:15:57.000000", "col13":"2023-07-24", "col14":"2022-11-11 08:30:04.000000", "col15":"&4/G3ObN440?", "col16":"~ZyffyDC`xmz5O7#F_lm>pWH$tE*kQP*D*$RcgLBeB6jm=WP/!58K=E-5#0T;i;js5<1?akyXQ=?J_cO,YaK.szT$^Jm/w*rK1h~9Bfm>"} {"col1":422243534, "col2":-41, "col3":-17148, "col4":0, "col5":507889730531854312, "col6":"-7687587853317523595", "col7":15600.064, "col8":-452506793.454084, "col9":-80779650241170514.708, "col10":66213669753600024.718, "col11":"2023-07-28", "col12":"2023-04-16 21:25:39.000000", "col13":"2022-11-18", "col14":"2023-02-27 05:35:33.000000", "col15":"t^Pb@l5", "col16":"6^fu$V49hN?sz+&Qbo6DhgfBIhPq=,,h49OudoMd9X4FCz8j+IBv%~r=NlP1,_sTPTDm1@%=7z92Y,fi6K_hR", "col17":"WY/;q*JBEBIsz^>tj6FmJXAi`;(;nPP(6=OP9qco7t(>gO_Jjvvff1!)nFF1Hp;b?RgkP&n2&($T47abJ#wfk=Q^UpwSmQ4rqMK,usfVhCtF-=3gtwF5z^.Qh*0U/41ZC@,N1K3RAWsmT*~q7Zg_q/mJ!_"} {"col1":-1964996452, "col2":-4, "col3":20556, "col4":0, "col5":8315246488290679100, "col6":"7572158780311200589", "col7":-18410.236, "col8":1606647238.822878, "col9":-89134765801837206.538, "col10":31618570701256890.422, "col11":"2023-04-19", "col12":"2023-07-11 14:23:28.000000", "col13":"2022-12-01", "col14":"2023-02-24 11:13:04.000000", "col15":"No*-^", "col16":".gI^(Xr=>A5)`Dm>nNB#0(ZYk%E^F7sH&rj`1yn$.>HtY?4lV4TGzOy5U.Mc", "col17":"FxB)jFhMjAY;B)Y?gx@yY>_7.o=mP))^&S49x478?%K9Y?!S..$tv03)Z4~(aw!!uJT8_eLY81$3iQSGwqZ;$TXw*5<@wXYGfkC7^pk1-hj!e>!eUjWjmEq&"} {"col1":227935475, "col2":71, "col3":11088, "col4":1, "col5":7650681200215890031, "col6":"4730937172673466965", "col7":-27321.963, "col8":1257272054.24069, "col9":14931750839744403.562, "col10":99429378055862630.805, "col11":"2023-05-29", "col12":"2023-06-08 11:18:03.000000", "col13":"2023-03-28", "col14":"2023-10-01 22:39:24.000000", "col15":"IY_-iuFqVlJ_", "col16":")G&*ByCK%g0a,K-@-.aYJUuXZdW($!,9Y_zve>J", "col17":"#~dH>lqOzrLT>#v&N`Wp~ok`@fBAo8gvhrrE2i7.Nk_,BVCdFjch4YWNcn!E50,c$K2"} {"col1":-217244015, "col2":-68, "col3":-22267, "col4":1, "col5":-1646866721402246441, "col6":"8084098841923390485", "col7":-14844.271, "col8":-1972311570.899041, "col9":-35753532293436342.172, "col10":-71646062497318666.824, "col11":"2023-07-19", "col12":"2022-11-27 08:58:04.000000", "col13":"2023-01-17", "col14":"2023-06-03 13:25:35.000000", "col15":"U;", "col16":"i7PaF53S%u9_J+McGv5E_4dT75dYYLBspxuB=SY*B5qyXO9lHMR_d?F,/+Q,_(*HIG+WJ8s?"} {"col1":1010916742, "col2":-11, "col3":-22359, "col4":0, "col5":2930583999829427139, "col6":"-7116265985222936851", "col7":-10714.571, "col8":-1680657480.454771, "col9":-99245732093918387.868, "col10":96449786654190081.563, "col11":"2023-10-29", "col12":"2023-02-17 12:53:10.000000", "col13":"2022-12-01", "col14":"2023-06-24 18:12:02.000000", "col15":"!", "col16":"BW(V->#Bx)#C6e5,*iquBz%3V.xQ-%cpxCV#gncLGoyW7/Uw!Ys3IPSF9)N8!y6Wi@gjPbHh%SL+;X9uiRCte$f7fr$XMarl#+YT`.Kc-%o4gwfus>H0>)1*#qfW,nES?.>@3.@jwVF`~gl,qY?f^ec_Ur,1N!Gyee;~zp+jDaXfsdr1_lfyNYjPOXJ"} {"col1":-1176341229, "col2":-59, "col3":-17596, "col4":0, "col5":5225706367147128291, "col6":"7482023791772342755", "col7":4907.7124, "col8":-69589660.206571, "col9":-74210811743941554.967, "col10":37134395679332766.718, "col11":"2023-07-17", "col12":"2023-10-25 12:45:07.000000", "col13":"2023-06-10", "col14":"2023-08-03 05:37:13.000000", "col15":"h", "col16":"WHu/qO7D", "col17":"(p"} {"col1":1419943662, "col2":78, "col3":-26881, "col4":1, "col5":-1935981815279221488, "col6":"515392747522788801", "col7":-10079.102, "col8":166391426.979885, "col9":-98837509190739959.541, "col10":-44427137572921229.590, "col11":"2023-03-24", "col12":"2023-07-10 01:00:19.000000", "col13":"2023-04-22", "col14":"2023-10-14 14:30:44.000000", "col15":"u`A<=p6c`B", "col16":".<&=zdb`tx~qLk!g#~oDZ^=yK)Hk2(>cFR0FS2_mC8A-?Rxb%z>oV,*W$WX>;(UJtBl4Je)g&DeY+BO^A=ezgQf", "col17":"rQfNcGI$nD5!`Q?e29e(gto_2DE/~4m~e;=X6p3E;%Gn%%,>9RPTU_g,qJxmagkp=ka*z4b"} {"col1":1267116125, "col2":-33, "col3":4031, "col4":0, "col5":4145604857134925353, "col6":"-224925331868005887", "col7":26411.283, "col8":1169746682.545244, "col9":8572034354541309.272, "col10":96151106049464759.806, "col11":"2023-07-21", "col12":"2022-12-25 01:03:54.000000", "col13":"2023-02-04", "col14":"2023-09-19 00:51:48.000000", "col15":"K>G*Dvh6A2xKWCX,bh>W*IBP^4?i;Ild6@^3cGh30L,a@-CP>lw8"} {"col1":-1508153295, "col2":-81, "col3":-19137, "col4":1, "col5":1077763455007258639, "col6":"-7549681434461673229", "col7":26029.754, "col8":-204288435.299404, "col9":-80133776891054495.450, "col10":1044641312148988.879, "col11":"2022-11-11", "col12":"2022-12-10 22:10:19.000000", "col13":"2023-02-20", "col14":"2023-01-03 20:19:38.000000", "col15":"oM9WX#5~", "col16":"^p7MMUb3O?gUp?g1E>o$Dn=90jm2XoqrJ1q!v&zuetA1N2c;G$+e", "col17":"i7.yWzza$F"} {"col1":-1957786302, "col2":111, "col3":687, "col4":1, "col5":-329175267162713131, "col6":"6644820929726960152", "col7":-4319.3433, "col8":1093662158.163057, "col9":-13018786555221977.392, "col10":43944835139524800.189, "col11":"2023-07-10", "col12":"2023-08-11 15:40:43.000000", "col13":"2023-10-18", "col14":"2022-12-18 07:51:22.000000", "col15":"Bgd~3Z(Q.Di?@6pZl", "col17":"wqT8f;XnYAhjl^(CLkB", "col16":null, "col17":"JAZkO+11LB>w=a~yJ.nY5QKew*AtYmM^8Ip;o-Dqzbe3Za%>"} {"col1":1434407077, "col2":44, "col3":-23990, "col4":1, "col5":7759166642335176493, "col6":"-339315168127929241", "col7":25013.748, "col8":-1897052142.267418, "col9":49827457190844264.800, "col10":85276312414130905.552, "col11":"2023-11-05", "col12":"2023-06-23 18:14:37.000000", "col13":"2023-03-09", "col14":"2023-11-06 16:29:14.000000", "col15":"o", "col16":"_R?KjiY>?Gv7vvg<1slZbu/W3yn/Ht-=yx;?`GcR.1aEPD?", "col17":"7Qh#O!OH9,o;aYe&JR,@J-tF/x7WzAAqlR=-B$H^G^QxP=lVN3dE"} {"col1":-2142436014, "col2":112, "col3":-13779, "col4":0, "col5":4376296518422862612, "col6":"-2788487280869040538", "col7":-10449.303, "col8":1911814619.522788, "col9":78399317344786522.440, "col10":-88978986475903265.183, "col11":"2023-08-11", "col12":"2023-01-05 06:39:04.000000", "col13":"2023-05-29", "col14":"2023-09-10 00:13:54.000000", "col15":null, "col16":"2cV.3m?&3f`dKPNwEz)Yzqv#7/RfPD>ie#R>M#6DeY!ESRi4x_WNWcq", "col17":"z#76kMJRT%,;)Q`)5PRypZ.BykX=RW>E74~CZX=659+yC"} {"col1":657834527, "col2":82, "col3":-32157, "col4":0, "col5":4672634700889493540, "col6":"-7582842389135920340", "col7":17082.41, "col8":-158467709.716171, "col9":-14184714635790844.455, "col10":-43596646954534245.626, "col11":"2023-10-06", "col12":"2023-06-17 11:50:02.000000", "col13":"2023-03-25", "col14":"2023-05-22 16:49:23.000000", "col15":"t", "col16":"f$Bgrye~#0ZZB_W=t0~h54X`eoZXPvY9h&,=4rKh@gLqIxI_~fHR!F2^Y*i#CY54j.,L.l3Kg6;z~0%HIPpvjC0oXT", "col17":"=.SJukh.@+ij0BWOJoXMba4F5rJkSj9Zb*kYgE0Nq2sJxB,vgG+jAMify4@)4JbBH~RMIZ*0KdXkJhSr45n3"} {"col1":1511945047, "col2":-69, "col3":19081, "col4":0, "col5":8771278776240250901, "col6":"1577044811093584542", "col7":29968.03, "col8":1155141123.389221, "col9":-39083065061490350.514, "col10":-19079192123719468.564, "col11":"2023-01-26", "col12":"2023-02-19 15:01:44.000000", "col13":"2023-06-04", "col14":"2023-09-09 18:03:08.000000", "col15":"&V1lDl64nyZ?#", "col16":"On+$X2e&dPz;LFV#tkO9!jFFu1UIcwP>pWjg>Q!KwD?GX", "col17":"Zi#Ld175.ld;.fB7GhWbxlk"} {"col1":610894160, "col2":65, "col3":1018, "col4":0, "col5":3605394011254706763, "col6":"-3478982256520993022", "col7":8121.156, "col8":1025591253.456631, "col9":81365968128401633.153, "col10":-81101382005088661.503, "col11":"2022-11-14", "col12":"2023-05-07 19:49:51.000000", "col13":"2022-11-19", "col14":"2023-03-25 16:19:35.000000", "col15":"ES)x=aMdIGmlT", "col16":"t/C$)nDCAK1yJ;^bJ7eE-LVy%cwb3jt49uCCq,PqOHwhk.T1yZW#O^JG@Fj8+?4z=7p", "col17":"1YCR$f%H_", "col17":"lzRPS/a8x_8pVZa$_P6,rb?g1da6/."} {"col1":-990480672, "col2":-55, "col3":-10708, "col4":0, "col5":-4935291170825143958, "col6":"3384694337473565906", "col7":9817.05, "col8":2122107422.283364, "col9":-90356948255074812.910, "col10":32770598240140924.717, "col11":"2023-08-20", "col12":"2023-07-09 22:23:54.000000", "col13":"2023-08-09", "col14":"2023-09-26 06:41:52.000000", "col15":"qc^eY8dd;w0&7", "col16":"znLeaJ~!L#rs2H", "col17":"Z;Xv,>li/Cyg2ZN,J;3&tzL#8udu=iHO,(Bu!N>wg6Apwd7tio6Ek@H@*rtZA$_T!p5lOfV##t.d)Z3JVd&@4k!X!l^K@aM@nt80Hb^/hW)r#-msijc,"} {"col1":555766812, "col2":-81, "col3":17557, "col4":0, "col5":-3341927921358411772, "col6":"-6165250980065362285", "col7":-18895.7, "col8":-337416378.21902, "col9":-69836366696538069.535, "col10":-53494446298127305.916, "col11":"2023-03-20", "col12":"2023-11-04 03:12:35.000000", "col13":"2023-10-08", "col14":"2023-10-16 05:30:03.000000", "col15":"uP5RPe0!2w%YCZ", "col16":"wzq8zoI?nNJS", "col17":"n3;)J0zIV7u~>)xl$xoA"} {"col1":1240578282, "col2":51, "col3":28317, "col4":0, "col5":-6967229457925271456, "col6":"5570408718636605614", "col7":21332.59, "col8":48729495.590622, "col9":59949626553560852.576, "col10":95363730377398985.351, "col11":"2022-12-25", "col12":"2023-07-31 20:54:14.000000", "col13":"2023-03-18", "col14":"2023-03-14 19:47:27.000000", "col15":"ng%W.dJucV", "col16":"OQ.&Yd0lS#=)cDLsZ$n69)T9Ap)#0&F5B5JqXeN/gBpYh"} {"col1":-202536028, "col2":102, "col3":22321, "col4":1, "col5":-4064308883480338960, "col6":"1299022891257543900", "col7":5586.1284, "col8":1073495949.461598, "col9":25815878476649991.271, "col10":-41099988391402435.149, "col11":"2023-03-20", "col12":"2023-06-26 06:43:55.000000", "col13":"2023-10-18", "col14":"2023-09-27 10:38:15.000000", "col15":null, "col16":"++0y0w_B1uU-_nX1_wtfQ2.*KL^iUm4KC^z%bExhd05", "col17":"H+-KLfu`v@L#;z%k%?,Ati97@N<#Yw1tCJ88BAMYmwr90o1N^82S6kbAK5mC>)@unAiSck9>3OcjAv-XUdMg)e~*@E5CiAbc?oIC-rsGoQ`0", "col17":"Em3@9nt^w=_Lw~0&%7-chkQKhUGqj.,tz>SoqN`,Jj@"} {"col1":-1944951577, "col2":82, "col3":9319, "col4":0, "col5":-6735411524378743936, "col6":"-3087230098102468185", "col7":21840.625, "col8":-339534084.734941, "col9":-60500672577753918.683, "col10":87018608768317029.549, "col11":"2022-12-31", "col12":"2022-11-22 19:12:11.000000", "col13":"2023-02-07", "col14":"2023-08-07 16:57:54.000000", "col15":"!", "col16":"b#Ng_Ogf`Lu-X.yz4QFNguvOf^R1*DW!YVilYEX4lY==z!`5<>=;X>o%ai`~6#IZyx+^WP?", "col17":"D72Q4Co~ta>yz1nErVUjhW`ZLHZpzzN*O=l?XJ.qW4720-*x(35xILFK,=#QtmS(39tTKPi7DvbSAUTy=53NVz1EiG>v;CrTZo"} {"col1":234114787, "col2":99, "col3":32123, "col4":1, "col5":-6965933224881843437, "col6":"-2028774596582884327", "col7":32596.664, "col8":1218403806.342796, "col9":-39226254369715538.282, "col10":62972701386517228.800, "col11":"2023-02-11", "col12":"2023-01-04 20:21:53.000000", "col13":"2022-12-03", "col14":"2023-06-05 00:34:37.000000", "col15":"L", "col16":"=chLu0;am8NT7v73+;.4.h4cPaJi&cgSIrO", "col17":"xr!Uw9#LWk#%E8Wd&PdjB>4;4Bg-x2dpnQWNBiz)84q;,-ST*"} {"col1":1713558477, "col2":-64, "col3":23299, "col4":1, "col5":-3655067400428113111, "col6":"-971001965512541678", "col7":-13785.417, "col8":-106881665.080796, "col9":29809265404205967.810, "col10":-29977477300742062.732, "col11":"2023-10-26", "col12":"2022-11-22 15:44:59.000000", "col13":"2023-10-25", "col14":"2023-07-09 09:57:20.000000", "col15":";YWl_wN7!/l", "col16":"DOevlkm/XO+IIhi~-3kR%%", "col17":"=6A95Lm9LX$(vxAboou%,NY4qk$sNc!+NKCeS8<#`7N^?"} {"col1":920373695, "col2":62, "col3":-13307, "col4":0, "col5":2315855827060133738, "col6":"2892134711552638253", "col7":-15204.923, "col8":7196941.716221, "col9":28960057270497525.509, "col10":55610225204972104.249, "col11":"2022-12-30", "col12":"2023-04-23 12:59:48.000000", "col13":"2023-10-25", "col14":"2023-02-09 16:07:12.000000", "col15":">Q5DGk#9z$z", "col16":"=q%,,02Vhx.!+vSpx7jL*L8m0EsQ>(NG43!n6_r~!x2g9BeKKj7$Cbr~R.xdF,OIoGt*", "col17":"X^EV@gll?znU~j78>)8%+3u#8Q!8;oO."} {"col1":-333781995, "col2":90, "col3":23250, "col4":1, "col5":-2400027152784178446, "col6":"-1279962128679669598", "col7":15358.365, "col8":-604161626.327051, "col9":24398441755883018.463, "col10":25132973924003857.266, "col11":"2023-04-19", "col12":"2023-05-08 13:25:29.000000", "col13":"2023-03-08", "col14":"2023-01-30 02:39:49.000000", "col15":"&q", "col16":"qUKk&`1I`o>.%THD?=E,;IcVHlaLwd+Hkbi@7Ji)+Ma8!AO1TicYo=+FBW=XT^EMV8*&8g4Jka/AxU*Q7+g./gXE~~Jmbbm.m/OM"} {"col1":-1606282538, "col2":11, "col3":-3615, "col4":1, "col5":756292685090331785, "col6":"5925846768287126056", "col7":7165.806, "col8":2004792133.709086, "col9":14151425806777272.721, "col10":82461381788038896.830, "col11":"2023-01-01", "col12":"2023-06-27 11:43:03.000000", "col13":"2023-03-31", "col14":"2023-09-10 23:08:31.000000", "col15":".%riu`", "col16":"A?sp9M^C6O.EEsXlXpRj$Azg=$0O1za&o_)DjyOzE++B+(.VwyvMsfTtr,C>OfS_?N/VEUXCX", "col17":"#b%h2%1rBH+<;Cj=Yq*(h0wYaB1p%S5Iqt9Q1"} {"col1":-301303501, "col2":-14, "col3":20978, "col4":0, "col5":3071911585008707334, "col6":"610247436068778006", "col7":-9658.79, "col8":454069105.89132, "col9":27771028156388318.185, "col10":78744669615573568.773, "col11":"2022-11-21", "col12":"2023-02-14 12:01:45.000000", "col13":"2022-11-16", "col14":"2023-08-30 11:55:29.000000", "col15":"eJ", "col16":"Q,7IORo3!>P9HFUCaHT1WUobo*$bZp(Y+9wz.#3Z60;;W~`yRh*)-tR<@gO4K~;GR1j?t-2~O20jpZET0bZTPY>$Ho!Rw0AiVX2kHSmf2>I)!ft=_%e-XyPt1bi6*sTgvE@wN0#G7K"} {"col1":-1936211661, "col2":-122, "col3":-23211, "col4":0, "col5":-5540740830240461096, "col6":"7009626545118772440", "col7":-16446.195, "col8":-775937464.459849, "col9":-61698507725639460.885, "col10":3879413632663669.319, "col11":"2023-03-30", "col12":"2023-05-04 08:56:03.000000", "col13":"2023-08-26", "col14":"2023-03-15 05:45:03.000000", "col15":"Ou8r#Ddwir,w#", "col16":"X815bcqKInnc+vjvzfrzVzN=Ip+yX9V+S&Wh=u%O;*PrNG~`E~9rxnHn.0<44PPjWz", "col17":"Nd&Ej;;G.CBSk5*3SoL4H@Z4_TzuSMzd3j@Px46sR"} {"col1":-1926966604, "col2":-18, "col3":24791, "col4":0, "col5":2921317845794227618, "col6":"8114429751870216975", "col7":-9627.225, "col8":1055221307.44863, "col9":-20442685919602826.571, "col10":56210848181278655.146, "col11":"2023-07-27", "col12":"2023-07-10 17:02:57.000000", "col13":"2023-02-15", "col14":"2022-11-29 13:51:37.000000", "col15":"!", "col16":"Ke", "col17":"v+rxDv>5n#zPr1nPn8~ianE_-o7P!HT!~AK~)G>;cgWAJ7?eQ,I"} {"col1":348414278, "col2":-112, "col3":10967, "col4":0, "col5":22875989281754084, "col6":"-308924971579099934", "col7":8971.96, "col8":1595999005.478195, "col9":-45770313571158668.125, "col10":12503300784959910.525, "col11":"2023-01-28", "col12":"2023-06-17 15:24:52.000000", "col13":"2023-02-14", "col14":"2023-05-24 14:28:24.000000", "col15":"Mx8+(-4K7Ub8k6u1auF5y9C;)-&;OUD/hE*1Q(_t5#CVNESc^k!&/zCnuT47sEq>tIO/iTM;YxQmeehnT^K62~w*&dzbl`7!FnCu%k(QT"} {"col1":1689276863, "col2":31, "col3":-27488, "col4":1, "col5":1413705707860766508, "col6":"8626885641484079374", "col7":10747.075, "col8":-1725385712.668506, "col9":-43030410959042437.577, "col10":65351213011512347.235, "col11":"2023-10-23", "col12":"2023-04-26 16:07:51.000000", "col13":"2023-06-05", "col14":"2023-02-10 08:04:51.000000", "col15":"b4SAoee", "col16":null, "col17":"$RiRQdW-Z0!`bZGKj4hXyZCtU$Td9qVkG;(P;pC$ZTbD?TV4J,j0RQkaLFK>!7-;za"} {"col1":1307588401, "col2":118, "col3":-230, "col4":0, "col5":-9003147224024323648, "col6":"-2834821371169576495", "col7":-23682.217, "col8":-1057477971.37014, "col9":7442718637323324.671, "col10":23979138129054233.376, "col11":"2023-01-10", "col12":"2023-09-26 16:46:28.000000", "col13":"2023-02-26", "col14":"2023-04-28 23:21:07.000000", "col15":"z>5$heX.naO9", "col16":"Q6CwRV&x4(5?)IN4W=A1Km%ij.seM~;iG#n(=e@8@0F6fh6al/)yy`_IkCE1-e)", "col17":"$XUvhrW.53YNg<$auhwq`/.kX&t+QCVq"} +\N {"col1":286636, "col2":40, "col3":12531, "col4":0, "col5":-2314336941027611643, "col6":"325716261438789569", "col7":32479.145, "col8":-1658974100.936647, "col9":11853795084347828.361, "col10":62514140879293637.625, "col11":"2023-06-08", "col12":"2023-04-11 04:47:26.000000", "col13":"2023-07-19", "col14":"2023-03-24 14:29:58.000000", "col15":"CE/$ty", "col16":"h~JCUN)yt_PIz%X8ZZhwvPgx`GjEU9sb2`Yt$uc~=STGn6a*.OaG>/svCkKbLb*g&XEh5pNN@zux@"} {"col1":1761523268, "col2":111, "col3":19405, "col4":0, "col5":-1410410496357211184, "col6":"-8199224635820068032", "col7":22934.434, "col8":627538448.05242, "col9":-45064148478173929.176, "col10":73410053241837519.345, "col11":"2023-04-29", "col12":"2023-06-22 10:49:00.000000", "col13":"2023-03-05", "col14":"2023-05-31 15:44:41.000000", "col15":"", "col17":"(dfQv~g1NTfr27mribQ"} {"col1":1772566035, "col2":-63, "col3":-29273, "col4":0, "col5":8745264170466134585, "col6":"-5506842273306313157", "col7":3759.1814, "col8":-1452285594.876885, "col9":-60197265634701597.901, "col10":-95081102937771943.624, "col11":"2023-03-02", "col12":"2023-03-12 04:22:55.000000", "col13":"2023-05-31", "col14":"2023-11-01 09:54:42.000000", "col15":"TT1.q1I67`kl", "col16":"Ps", "col17":"FVv20/F-=ByPeQ3nF+?(_^#_iPrS+u1_ZHJ`zi83m#+b(@Y=(q^F/L9"} {"col1":114127467, "col2":87, "col3":793, "col4":1, "col5":-428535361954066498, "col6":"4697713311229287983", "col7":-6481.3823, "col8":-1924904573.8708, "col9":45709405300291925.157, "col10":1577321435926722.138, "col11":"2023-11-09", "col12":"2023-03-25 02:19:32.000000", "col13":"2023-07-28", "col14":"2023-01-19 02:23:09.000000", "col15":"f2-`M54d(eOQ#", "col16":"XxP&n&hF*/h==ul)5~?jC%uziFEl=/7>5rm+`lt5$+hAAWdD", "col17":"ws@.x^hDAc0g(PQ@~tZ2Ga.+J6TGTIjAO#+eKcYwKL2NB<,w*BqwNo$hY;/>h(b3RID%fyKbTH5#U*q-WDDS9lb6(^R~SzsZKs"} {"col1":-1891520405, "col2":124, "col3":8855, "col4":1, "col5":-913657545924566585, "col6":"-1536770753715164108", "col7":6998.9185, "col8":511030433.623111, "col9":-10830494740800769.178, "col10":78391274234937148.959, "col11":"2023-08-06", "col12":"2023-02-22 13:11:30.000000", "col13":"2023-09-24", "col14":"2023-06-13 20:30:12.000000", "col15":"k", "col16":"wvdkyd*9nP1", "col17":"A5J)3lWuThPKL`H=o-b6Mj#/JsG?^47VpsM&h7<6Tg&1hR92WWv13)d5N6q)g2i_j_1Gl3_On+&Kb#hZa1"} {"col1":1975678310, "col2":-78, "col3":20283, "col4":1, "col5":-6645481965792488411, "col6":"1567102139313612320", "col7":-23824.113, "col8":1658568100.136103, "col9":-80600254825061679.751, "col10":30197107892252230.108, "col11":"2023-01-27", "col12":"2022-11-13 04:42:17.000000", "col13":"2023-06-19", "col14":"2023-04-12 01:20:33.000000", "col15":",+4NzIq2dl5", "col16":"4!CcT;-T3C6+fTB&clJ/Z,uK>GVqB4LEN^5sR2LWIp90nUH)ta7T`", "col17":"y2r6_*;YvqS=IF<9pNoVm6fWbjV!eGlcRP1kI<-*tzIqC~5ea", "col17":"!707G-OCekwr2^P<;JAAaPC0fUC", "col16":"kD*64pf#WguZnpBe(Z>V+G@#K/sFJL^4vU7W.JNgDAqxOi/!!W8^a~_D/vTChag3", "col17":"rrg45ezp?`&=7Ize#JggS2c=>75nio3VWl#3*H%,4XrJC<;cfm@K.49"} {"col1":-2088545982, "col2":-34, "col3":31082, "col4":1, "col5":5811404451403597720, "col6":"7826096519969022070", "col7":30825.854, "col8":404659070.586117, "col9":-58291318173774590.227, "col10":87552520044200423.105, "col11":"2023-02-28", "col12":"2023-01-04 03:21:34.000000", "col13":"2023-06-24", "col14":"2023-03-23 07:03:33.000000", "col15":"$@w#", "col16":"9J!>TQzsZ#;VhcTeu)ZBd-WA3s~_!GNrn)Vc(=)u9$!YVz3vCpZ2Z6TjqHC", "col17":"GY(Kq`"} {"col1":-643943399, "col2":97, "col3":10260, "col4":1, "col5":6000646543942719109, "col6":"-5870128463593245825", "col7":-31959.92, "col8":766947397.493618, "col9":-35062983341828929.800, "col10":93064025838296084.345, "col11":"2022-11-22", "col12":"2023-01-04 20:49:57.000000", "col13":"2023-05-09", "col14":"2023-06-05 15:33:04.000000", "col15":"8H", "col16":"_$(l`W;6F6_IxAj~ZsfguZ,XK9pj8wBTA5hC7U54VDIror*I.ESU7", "col17":"n8S)_m=GNx7@DO_GLnsb/0Mx(gT&fw", "col17":"y3,LMyGp9+UXUdjv;rVb6nVkXfB#Pkjqs"} {"col1":934345248, "col2":23, "col3":-23564, "col4":1, "col5":-8266523705337718865, "col6":"4786905438011282083", "col7":6888.2563, "col8":1792227006.464728, "col9":35418424816196567.740, "col10":-51218829150912924.968, "col11":"2023-03-30", "col12":"2023-05-06 04:14:15.000000", "col13":"2023-03-06", "col14":"2023-08-07 03:43:52.000000", "col15":"WH6,qomN`D", "col16":"3*LN))ex+zT$/t#5/>,EGIOtXnI94.r8wP7-Yjzn_8OX99Q^XG&&_f/ae_wLIu", "col17":"VB)l`ohAY^ccC,.`1o--&0xv#8%l_0L6I,7ab,jvuDQ.@Qqtq!$uI.LAlqZmnFOw#c*%)g&5-"} +\N {"col1":362462240, "col2":107, "col3":-19403, "col4":1, "col5":-2086043196257155238, "col6":"3865964499005646003", "col7":22711.371, "col8":725299699.801546, "col9":-45387828698461027.545, "col10":43814986570507758.100, "col11":"2023-05-20", "col12":"2023-10-22 07:46:07.000000", "col13":"2023-03-22", "col14":"2023-07-09 20:48:12.000000", "col15":")k4IDm>W@", "col16":"z<@LtFP9F@LS5^I", "col17":"U36Y)13J7a*y+5uRC&I?qKH#nYN2GZBPEzSf`h33_z4GklvW,mMBgNO=94*&A"} {"col1":1687785038, "col2":-107, "col3":-9903, "col4":0, "col5":-1284597074098258744, "col6":"4255739912045331949", "col7":3686.9778, "col8":-686626859.048087, "col9":93576326533596209.242, "col10":-72503896890548707.722, "col11":"2023-01-10", "col12":"2023-07-21 18:04:27.000000", "col13":"2023-05-30", "col14":"2023-05-08 04:56:30.000000", "col15":"Z!BV;CtgPYdP", "col16":"7EwD#)uY4kkdr6-JD^jLW4XhFkD9w=%A&_4o*?", "col17":"69f,q-^KD2(#<145hA)(g3fSQ(_>D2R13_8)n+ycz)<#k"} {"col1":2096768982, "col2":-34, "col3":29058, "col4":0, "col5":-6549673997206638743, "col6":"6127489394831520395", "col7":-17730.66, "col8":1478347723.502807, "col9":-50631199631210331.799, "col10":11089858765247247.904, "col11":"2023-05-18", "col12":"2023-06-16 01:16:33.000000", "col13":"2023-11-04", "col14":"2023-06-14 17:34:35.000000", "col15":"~Uut", "col16":".H@eCx23Fn85`ok4Tj*u7V,/M,5p4HouKmH;6fu,4W)E9>NsP_@e3P+vv%xIQ)AP^hAQg&FA2FqsFFe7dLgQNALodq", "col17":"7ZjfxOe+l@x^+"} {"col1":1771065349, "col2":53, "col3":7046, "col4":0, "col5":6486422408055459438, "col6":"1553889049848122326", "col7":-10102.512, "col8":-1378044883.486697, "col9":51706531060270979.396, "col10":26168096158080868.665, "col11":"2023-02-25", "col12":"2022-11-18 08:32:06.000000", "col13":"2023-02-24", "col14":"2023-08-29 04:21:41.000000", "col15":"9-hq2", "col16":"9I4SmYLtT=`kF9X!#~D?rOvzq#cCD", "col17":"ANjFd42e3"} {"col1":-1588160227, "col2":-116, "col3":13817, "col4":1, "col5":-4296149395358621914, "col6":"-6836906242783581735", "col7":29637.39, "col8":-75798249.092423, "col9":2497472774459503.589, "col10":-90761335260520957.241, "col11":"2023-02-11", "col12":"2022-11-26 12:43:50.000000", "col13":"2023-07-10", "col14":"2023-05-21 14:25:20.000000", "col15":"O1b(iK", "col16":"ukoKp~~$~9<%6_g3$Jj,yK2.)v-D!>M%-", "col17":"hT#S6BGS)6GZSirhv=hVbs_IYNG%3!Zw5nqF._^J"} {"col1":-1036552242, "col2":-86, "col3":23770, "col4":1, "col5":405167630719134959, "col6":"-211756583294689265", "col7":22159.436, "col8":-1295725525.582972, "col9":-83614908689396406.993, "col10":-50555993612523832.443, "col11":"2023-06-19", "col12":"2023-10-23 07:29:43.000000", "col13":"2023-05-06", "col14":"2023-02-19 23:07:21.000000", "col15":"1r&)dE", "col16":"!7fZGY.4yft+4q@uam)~!H&_`5ea<%2,Gw#EPr*SVeCz$>RWC$kLrJaROE?u", "col17":"61)Y^Gi@H/vx.?QSZjJC"} {"col1":889243397, "col2":-69, "col3":-4674, "col4":0, "col5":-1919184636690999337, "col6":"-1912156216644268562", "col7":-22623.336, "col8":1382859654.868149, "col9":-1497126140853661.537, "col10":9109805582223006.744, "col11":"2023-06-13", "col12":"2023-02-26 05:53:39.000000", "col13":"2023-09-03", "col14":"2023-04-30 03:56:33.000000", "col15":"f", "col16":"9Wzh`Xb2c^mv!g161uS`F=-al@N<$R;?)`Ol5zHM-tUk%!qVQlum.m@5W1GAn1;9DC8npQ$h1)_3", "col17":"H>A)>>0XsnZi4V=aF-G-W(Z?^9G8ahRy^Nh=Y!xBTr_f736El3_G(VREI@L&0J)YYA=RheQ?YKQj9H2YM&&71d11LL6yhXR?463%1!zKtG-"} {"col1":-1291944714, "col2":106, "col3":-1048, "col4":0, "col5":-8233818128720950805, "col6":"6417417188254389423", "col7":-7141.208, "col8":-713810670.066522, "col9":-72223604538769031.332, "col10":28938197253502224.607, "col11":"2023-04-08", "col12":"2023-04-09 05:23:36.000000", "col13":"2023-04-04", "col14":"2023-08-16 08:34:49.000000", "col15":"s,c", "col16":"TW0efT%7IM6V)&^hrAVlUS~%50=tex%nJBWePivPA)4Qsfu)zM8/UJ_zfDD;T<8rxR7!V;wGbqxU?yxp%~^&Bba", "col17":"uoaP0W6%IpkkjcVzz+<&IOCHGeoKPu!M.4bFEFL=~(++^y12ISswkzkulyjB(~OR02b"} {"col1":-1249441565, "col2":91, "col3":12027, "col4":1, "col5":4065635472874095639, "col6":"-2376945415387094371", "col7":-14409.862, "col8":-1239902270.695204, "col9":-33646059432117784.248, "col10":-71716101260479540.163, "col11":"2022-11-28", "col12":"2023-06-06 13:27:35.000000", "col13":"2023-11-06", "col14":"2023-10-17 13:06:14.000000", "col15":"4<=DZ&OB=H", "col16":"tFT`X-cR+.z4tR&g1uGeqh1ql)C=U>9e(@xzn5cpS", "col17":"hp23=Xb%?=b&^3%Gnv%%FrWBX#&tvz!v6+EDl&>eRz_jnOz)rzLz"} {"col1":-1536145286, "col2":-38, "col3":28552, "col4":1, "col5":9083537221448637629, "col6":"2089265029844927384", "col7":-7274.4077, "col8":-428636344.093785, "col9":73589132532644102.675, "col10":-5938584116809747.553, "col11":"2023-07-13", "col12":"2023-01-11 08:36:36.000000", "col13":"2023-08-25", "col14":"2023-09-01 15:52:29.000000", "col15":"6hv;P#K*wfy`", "col16":"yRDRHc(SP7Vzoil!N3SV?H)eEB=PBj,(-&LQ(tsFjbNE?_Ha)4Hs_gTYZ4&(-Ti;", "col17":"ZdiW>jg3r*ruRbigVg,E^k#MtX%lT-.,<5Y-L7&PbWcq,h+=`8f*Xpw1$-#*>POeYJ=M!o"} {"col1":167169924, "col2":4, "col3":14674, "col4":1, "col5":2347843046354796458, "col6":"-696172936130542592", "col7":22341.732, "col8":979533389.734254, "col9":60968044483849204.353, "col10":30200553599060726.618, "col11":"2023-06-20", "col12":"2023-03-28 05:02:57.000000", "col13":"2023-01-24", "col14":"2023-10-29 11:40:58.000000", "col15":"AQe^", "col16":"CF%eqVbnb1c4`e(K!`n!Muj4BxT89", "col17":"x8(m?F*e&V,Igt8=5#1R(lzS~j@Hn^,LC-vZjlE)LtC^rqLsrW~f^?U/Xn`ZVf&I&oW=y-%leuuda%dLq;e9X+XWw8-NY`3OA$q", "col17":"4pw!lM=U;Z,fQc$"} {"col1":-1657087814, "col2":1, "col3":-26359, "col4":1, "col5":-2371384929867156666, "col6":"3775942651477303585", "col7":-21169.385, "col8":-845820801.63316, "col9":47918734590593217.759, "col10":74462264410504498.159, "col11":"2022-11-27", "col12":"2023-06-21 22:32:17.000000", "col13":"2023-09-10", "col14":"2023-03-06 22:21:45.000000", "col15":"#MQXBt27fOy-84QpDJi.%0X5sSk/*kuk$?)+;>*Q.e=5PkF<1Q>IOPO2^?=?/~Fucgbrn", "col17":"rBFXfu>!KM!+Mu~iH"} +\N {"col1":47817694, "col2":-23, "col3":17759, "col4":0, "col5":-2592767188593682012, "col6":"-1917916342557241438", "col7":19111.617, "col8":-1045747727.139381, "col9":-77856575383144612.699, "col10":-86130057040674962.742, "col11":"2023-08-21", "col12":"2023-06-02 13:59:25.000000", "col13":"2023-03-29", "col14":"2023-01-05 23:55:07.000000", "col15":"-r(1D", "col16":"8pQW;fR8tUWwoIA_rM;pR(F%*P/2?gPI/Vwti^5B`Ytx)!s#PtUyNKL+O,hYq)+dY8jzQvVF/5>", "col17":"r*gsVKh,uy`^e!W^&4hSjCO+3;yC0^8K-CO1~Da+phd2rWd8L~1S&QGH.O66)5?H+!aV=1%eY5"} {"col1":-26249996, "col2":61, "col3":18052, "col4":1, "col5":-361005233824192772, "col6":"-1351496023545458172", "col7":2805.9014, "col8":-737538715.989399, "col9":90422987849359214.754, "col10":66747731473323379.835, "col11":"2023-07-26", "col12":"2023-07-17 10:28:21.000000", "col13":"2023-03-27", "col14":"2023-03-07 15:03:53.000000", "col15":"dodMKqi>N7k%v$", "col16":"iPB", "col17":"UPfh25?E6Pfpf3EogN9ujIiak*x@OG<0il6+EE19k-lPEZJac=C@Qj-"} {"col1":-1520622638, "col2":-90, "col3":11515, "col4":0, "col5":-4009716856944176555, "col6":"-4763301688224260064", "col7":6702.3447, "col8":798392384.256083, "col9":75665032011082251.451, "col10":34201762262152502.147, "col11":"2023-05-11", "col12":"2023-05-31 22:45:15.000000", "col13":"2023-10-09", "col14":"2023-10-10 02:53:02.000000", "col15":"yPS&?m", "col16":"cNeMO$(mORdi#0f>bnGNcIYxb7eT(jlq4g#>nYBGt1`e>"} {"col1":-1943129515, "col2":50, "col3":11579, "col4":0, "col5":2799362801208622844, "col6":"-1948899835302220937", "col7":3235.7126, "col8":206154929.5756, "col9":22606996553063829.342, "col10":-65714174487506859.315, "col11":"2023-03-04", "col12":"2023-08-13 10:24:14.000000", "col13":"2023-03-19", "col14":"2023-03-16 14:59:46.000000", "col15":"^e", "col16":"9c0WW2wSr%)FqeU/CuGIl/Kgz`UFTQ/0d`.O0wzY`39^p4Z,;v-xaQJ3)Vvla9~04~NUXl$^lId/9P/GtCe9;z1SOC&2z-", "col17":"F6M+_Pc0iJw;.M5GyC/)&U=&"} {"col1":366784492, "col2":-91, "col3":5343, "col4":0, "col5":285484482479435330, "col6":"4401895463845494554", "col7":23758.332, "col8":-325384021.555593, "col9":-50455152503318203.449, "col10":65244455548239672.160, "col11":"2023-01-19", "col12":"2022-12-18 07:17:46.000000", "col13":"2023-02-03", "col14":"2022-11-14 11:48:04.000000", "col15":null, "col16":"cdyVRDf*>%*RPqOgpEg%Ti6FIZ)V(WrjX_eHWl7dPX0z5dhLKbA9+GuZ0I!gf*/T!S_/c#7NR&MAH#Tk2UN", "col17":"Rs*$@~;A%US+wC1Cq8enU!L4N=_/dHrhUN+d>oIw8i9Qqz&rW0E"} {"col1":1177567574, "col2":-126, "col3":-4059, "col4":1, "col5":4286979026530110942, "col6":"-6963589946162575091", "col7":-565.9203, "col8":182212496.114089, "col9":81434412723303110.327, "col10":40581272774311981.379, "col11":"2023-10-14", "col12":"2023-08-22 19:58:50.000000", "col13":"2023-11-09", "col14":"2023-09-22 01:29:02.000000", "col15":"OdnKqKet", "col16":")BiuAN,,3H,u0xos-HqTGcro3J_6BV9Ev3bA_i@C?82Cw-j!!4Rp^Bpg", "col17":"LP8;=d$^WX3x+F1fb_Dev+AlYyvT1(DEFRa0Y.H0hot&Y1)/e6Qk0Do0^`wJ"} {"col1":252819544, "col2":6, "col3":-5693, "col4":1, "col5":-3871447155054953032, "col6":"-1891127181338244549", "col7":1470.908, "col8":-396385857.38936, "col9":77121196514062171.380, "col10":-76861447925560213.478, "col11":"2023-05-30", "col12":"2023-04-28 02:28:30.000000", "col13":"2023-04-27", "col14":"2022-12-19 21:16:15.000000", "col15":"X;iF^sn9dndWoEb&;<1#~JU+gL)W1p3vyVUraPXmm=88Ea5i0OCx;3.a6=ky?"} {"col1":576136288, "col2":-75, "col3":7643, "col4":1, "col5":5799786671761075428, "col6":"916707314575044419", "col7":-22797.441, "col8":-2139432915.195112, "col9":53906879174554699.108, "col10":43663435803801309.118, "col11":"2023-05-31", "col12":"2022-12-15 05:07:26.000000", "col13":"2023-03-20", "col14":"2022-12-25 06:16:53.000000", "col15":"!WE8H#N7Z@CQx", "col16":"FJ$3E,G9N*wOeHzbml;@L&)sSx?/jB>tWXVlJmsdPsE@GG^A1!kD,~h?Q*SFN", "col17":";_4o!co`.YXY,.b3sK+1rT%IVr7u1cy7%)B(x"} {"col1":-1883971659, "col2":99, "col3":10543, "col4":1, "col5":-6728365874054023417, "col6":"-2328573775928406762", "col7":-2735.7705, "col8":-470549814.163389, "col9":-24454876926389819.379, "col10":16483429508200308.120, "col11":"2023-01-20", "col12":"2023-01-27 05:31:49.000000", "col13":"2023-09-22", "col14":"2023-09-10 20:55:16.000000", "col15":"d!jdHwSL", "col16":"RXES-4ZoVQUghRY~#kZ-IeUJ^oe=,(", "col17":";!h>V5Aqh@+TnG~EDzP*Bs0_AgZg^7SO3h9v12X!>enKhKmJl#)4q%>j<.?jS/t", "col17":".5#MUXb1Cv?3>bHw0a#MV!vr3%"} {"col1":-2030375227, "col2":54, "col3":4384, "col4":0, "col5":-7125092162125811206, "col6":"-4232776774567000152", "col7":26837.652, "col8":1917723626.45192, "col9":-15896016299014652.442, "col10":-68084327262626945.294, "col11":"2023-10-13", "col12":"2023-10-30 01:46:52.000000", "col13":"2023-09-27", "col14":"2023-01-06 04:24:47.000000", "col15":"FArbkY", "col16":"V;_5p", "col17":"z=wz%nr+n-,)/Vi#u!)M%Y,UhL)0mo=OLh;f$6x/6O&ut_H2W3)q(tATkEHSkB6cd-m"} {"col1":1369414688, "col2":12, "col3":7964, "col4":0, "col5":1428861763881105022, "col6":"2927268561583567702", "col7":25576.006, "col8":-484934950.126092, "col9":-80396552750778333.144, "col10":65920321358287276.326, "col11":"2022-11-25", "col12":"2023-07-29 20:42:00.000000", "col13":"2023-01-11", "col14":"2023-04-27 17:19:01.000000", "col15":"-x,", "col16":"5w*P!Z;H+vrmxXzH?TCeoWWR.t3A35^B6Tp9rP`+@yFD9o1hF+qj(_U6Ml7<2sGhz+<>ooD,ag,^Ob8R2#*99?w2E3)F&B>HZ`I", "col17":"cZ/Hd;c*lG#Ri`&u*(C"} {"col1":1800931837, "col2":53, "col3":-6430, "col4":1, "col5":-6410417525054536956, "col6":"668753896008119484", "col7":3743.2031, "col8":-1177072535.248117, "col9":-47987051810775598.276, "col10":39810223410294879.600, "col11":"2022-11-29", "col12":"2023-07-06 14:49:35.000000", "col13":"2023-04-30", "col14":"2023-10-13 17:48:58.000000", "col15":"Wea/KX", "col16":"OLc,m^(MTIfxn.%l29uZ?+(eC5szoGE~,+xv_GsR!bOPfrTUKWLpTKky6d`,wh&azAS!+q9xqm9LB2R", "col17":"w=LWqr~KT)La5/sN+CtM>265=,"} +-8903033418165608020 {"col1":-1174247920, "col2":36, "col3":-22731, "col4":0, "col5":7899564070391978274, "col6":"699172697713213350", "col7":-4668.7007, "col8":-615162117.884674, "col9":-68837064230431691.639, "col10":70891119436876294.790, "col11":"2023-11-10", "col12":"2023-01-30 02:08:18.000000", "col13":"2023-03-27", "col14":"2023-08-16 16:00:27.000000", "col15":"hCET~vllh5Nl$KVatwNIEs.fwG07haAK-w8kg>QA9*Q&Cq=rd5J=iOj,4b6T`YNn$!ToQlF/R-8~9-sE?mcNekAWsxWhyy="} {"col1":1976188027, "col2":39, "col3":-20199, "col4":1, "col5":54838796530721045, "col6":"-4199157709856370965", "col7":-20633.107, "col8":-1314405206.528385, "col9":-17838244458606850.919, "col10":13993039380882130.769, "col11":"2023-04-28", "col12":"2023-07-21 06:48:51.000000", "col13":"2022-11-14", "col14":"2023-05-29 15:07:03.000000", "col15":"Z", "col16":null, "col17":"aMm_kYB`6gpU2h;uD&8/kw3X"} {"col1":-439380020, "col2":96, "col3":-17308, "col4":0, "col5":3579043460080517561, "col6":"4240896818074065205", "col7":12152.55, "col8":1198053802.322113, "col9":2562915342156503.474, "col10":7583328329290118.446, "col11":"2023-03-31", "col12":"2023-04-17 02:55:52.000000", "col13":"2023-03-19", "col14":"2023-03-29 13:17:27.000000", "col15":"0&P0_,,9I&dn", "col16":"HTtzP,7Ob", "col17":">!M"} {"col1":-457160013, "col2":-87, "col3":-32076, "col4":0, "col5":2962490776305786988, "col6":"-9219898190360409591", "col7":4773.356, "col8":124168385.283727, "col9":66564244852109284.538, "col10":-17698570145691684.721, "col11":"2023-09-09", "col12":"2023-05-12 14:33:56.000000", "col13":"2023-05-19", "col14":"2023-08-07 19:17:09.000000", "col15":null, "col16":"nsqUTDXMfOqg!S7C97`49QcZ4Os0TI?g6E2#J/(fV>(*X_Q`(6Znf?h$PS4u8NFcB49IFq/mgNAJX~p-C~4.", "col17":"0mntxHvG8zY_", "col16":"ca", "col17":"v.@WpiI1+`>Bj#II4"} {"col1":-1135173592, "col2":-24, "col3":12059, "col4":1, "col5":-4173609755187683516, "col6":"9104229668324434517", "col7":-18978.926, "col8":1538129083.152786, "col9":49186343729636745.231, "col10":-7234568807819447.144, "col11":"2023-06-14", "col12":"2023-11-09 00:22:59.000000", "col13":"2023-01-15", "col14":"2023-07-14 13:08:52.000000", "col15":"(~twE21C", "col16":"o?XB9l_e*+?3UZH_qGT7/r7F4~rr1$k%;eaEMa?r4@P@jk)6P>XxpFY2(q9iiV~fm7eEP5oN<#zlsw~wji"} {"col1":441268110, "col2":102, "col3":13250, "col4":1, "col5":8597594907679023161, "col6":"5667613937641491367", "col7":29102.045, "col8":-319989982.17985, "col9":-81087716870785483.143, "col10":-64800115883130558.550, "col11":"2023-06-02", "col12":"2023-10-04 21:25:45.000000", "col13":"2023-03-03", "col14":"2023-09-23 07:27:31.000000", "col15":"G-48d", "col16":")EWS(!Qtciw`^3x;+Guc+;_oW?-LRLh;FnQfLL?ieRtZ$WJm?blsQn32p6O@$J%cjb%nZTC.6m>w;UI<%)EB+n"} {"col1":577259683, "col2":18, "col3":-13537, "col4":0, "col5":5778440245350381673, "col6":"1729667696812540134", "col7":-29986.787, "col8":462696869.740925, "col9":-64242297078135876.710, "col10":-34110060920083841.600, "col11":"2022-12-13", "col12":"2022-11-11 00:41:32.000000", "col13":"2023-04-20", "col14":"2023-10-19 18:35:25.000000", "col15":"k)W4Wbt8", "col16":"F<0)FFx0Ay&wdY%rRE#>t4QOL(pTd^BOW8@~KBXCvXgQ@20mrzFPd", "col17":"-WOU+(8-*I<*-F;U.4MF&Y>n*xNAbLHf/l9K_BjIdK;0T-&J0$DumP_scfWr!tpPd@g=/fyD;C7vV8&j>F/AC^r5^,t+pid@P)&^=&?g`?*iJzsx4k=<<;aqi@a%f"} {"col1":358052123, "col2":-20, "col3":-995, "col4":1, "col5":8462498483626768535, "col6":"-4579777337458835014", "col7":5497.2812, "col8":-1675121192.209081, "col9":-55228000464087729.376, "col10":54075338566731730.689, "col11":"2023-05-09", "col12":"2023-08-19 11:53:12.000000", "col13":"2023-01-30", "col14":"2023-06-08 14:32:40.000000", "col15":"z$8+gBbZ", "col16":"0;^hCNKLqx=)", "col17":"QH=1=ezdz`3u@IwXC~q.Hjo5Tch6LPfj_$nX>*saEQU.Oz(cL.rR*iuahbYnb*0C4*G0``Q^Nd0RPP$vhA&95q)X<(a.PfZ,H>GHG=LjhC9G.-8!X", "col17":",DvFSRv&Ez!GJrEo1/;Nr,*Qm*_eV7S(CesYSTt3v_w>NRew~3h(IrQQ"} {"col1":196725014, "col2":-24, "col3":-13427, "col4":0, "col5":-7375318581248960057, "col6":"-2543965274523748861", "col7":5780.991, "col8":-694770524.546083, "col9":-76123002210744723.992, "col10":-47697265631521692.335, "col11":"2023-04-24", "col12":"2023-01-08 11:35:37.000000", "col13":"2022-11-13", "col14":"2022-12-03 12:55:19.000000", "col15":"0KC+u_$>", "col16":"i@-@ASL*~~/iY)1+$rL)*DEk<Z%kd&Gc,s9FlWo!42P.yo_VO*Xewr$C@b?b8;/f-_7G=w^OX$m5#6*", "col17":"P+dMU%2GvWo=*+_U$#N871~QZ@pzc,~lLCYiY)~k"} {"col1":-688049528, "col2":-35, "col3":4321, "col4":0, "col5":7245845458805220394, "col6":"3912116986726525719", "col7":10877.681, "col8":-87511596.70815, "col9":27431649310089463.872, "col10":53000349361497028.867, "col11":"2022-12-14", "col12":"2023-09-10 09:56:23.000000", "col13":"2023-04-04", "col14":"2023-01-17 18:35:42.000000", "col15":null, "col16":"%fS1#RR47;vSRM%nZorS5_/xpu.@SM.~5klrRc)^e;dFK@N-bkA$(NAX&-0Vu1LrvZ.cBjSFfYwOKQy6C!qVPw;arKX&W>p/w-P-*ZxmrLy", "col17":"o7(4@cOp3=~p%l7+23)~Jf5vb$t@yCV@CfjrxEvB`iJT0q;-)XCuX#h/6dAOP$%0fH0deJ8%DNNeH$XZ^C!Q="} {"col1":-1474368615, "col2":-21, "col3":5177, "col4":1, "col5":8174349037021096782, "col6":"2571804249862798292", "col7":9933.032, "col8":-720750366.940295, "col9":-8590320354503227.221, "col10":-94099543687278644.814, "col11":"2023-03-03", "col12":"2023-07-11 13:00:08.000000", "col13":"2023-03-29", "col14":"2023-01-22 03:42:30.000000", "col15":"9gn!5C!BvEP", "col16":"X)1XT$`l2Lkr93E&?A?GWlurNp//;jSuTw>l6!?", "col17":"+<2ZMd=Xd0Q<2KT.%!K.Suj45?_lTHL3LptTpI^+(Kr8P6wx&(s8&"} {"col1":-1693846609, "col2":-73, "col3":9118, "col4":0, "col5":-2985094276774224395, "col6":"8805992256826989074", "col7":6244.1, "col8":1813143653.166, "col9":-62764692014561863.442, "col10":-38325067730370117.681, "col11":"2023-09-07", "col12":"2023-01-28 12:49:35.000000", "col13":"2023-04-18", "col14":"2023-01-17 20:14:35.000000", "col15":"d65uY.r", "col16":")A>je?_.Gt<;n`w51eCBOWT-kR`1ASIA", "col17":"hQWT,ge>KGm#zleH67$,`Px&A`N*kPk.ZqkO!4SG~-x/9~x*+tmgjmK", "col17":"M=_wY3E`(,i21pX2tO=f;oHS6n5,1@LU+iPFypM2zE(+(>k6XxzUqU*OTtx#!P5k++x@p60GAA>D0deaeDV$@N0R5"} {"col1":519727040, "col2":80, "col3":14429, "col4":0, "col5":-617879460517437411, "col6":"-7165327641490392420", "col7":-13084.128, "col8":1970316910.765143, "col9":-93976002804076259.534, "col10":-32558524385546329.363, "col11":"2022-11-13", "col12":"2023-02-16 09:07:20.000000", "col13":"2023-07-28", "col14":"2023-01-08 22:38:58.000000", "col15":"XsBMIBa^FI!d!", "col16":"pePuy7bPN&=l)?;@l6NJ7/V0Ukt1ubtmZMI$(d;ozN3!>1x2DDo>MRifl;4T8d`2_7R76B9&lePU^UK#$M`&ySGkb;)!x", "col17":"qY/@=?,a0!5EDHD"} {"col1":564937758, "col2":-10, "col3":-19719, "col4":1, "col5":6205568508580489074, "col6":"-238554161903590528", "col7":-8137.3535, "col8":1023623642.337226, "col9":-2362569962650581.821, "col10":-68775335337492456.403, "col11":"2023-08-28", "col12":"2022-12-13 09:02:24.000000", "col13":"2022-12-14", "col14":"2023-10-02 15:42:07.000000", "col15":null, "col16":"B)a?p0>L8kL", "col17":"zvS`nT$&kYjuqvx6SM0>h*lkl^`~s$^LmTQN~*B^qdyQF^`Ofh~L.GJ5@Bvc%X>akZfc$9Xeabk1FOw1fJI@9-U-V"} {"col1":1914314437, "col2":14, "col3":-3885, "col4":0, "col5":5289140208274800927, "col6":"5523134939016922802", "col7":-16044.735, "col8":-531461112.058018, "col9":20859664695767945.768, "col10":-95844141490303829.980, "col11":"2023-05-12", "col12":"2023-08-10 20:49:23.000000", "col13":"2023-03-12", "col14":"2023-04-03 10:12:58.000000", "col15":"THW", "col16":"0L35Dot/95xSb1igaBQY#jCm&q%c/MQ(2(0-sufN>BmBlt-`^L4rN2hH6D&Xy1Z8kY$>t5Z(,h1i4l2gU8e", "col17":"w`)of^9_@N=DZsU##xMKBfYAdm`fd=7V"} {"col1":-1700382114, "col2":115, "col3":-6204, "col4":1, "col5":-4126342125777344756, "col6":"9054982454557719308", "col7":-19103.875, "col8":2031018782.572868, "col9":-83553942298914702.482, "col10":58591672291818154.504, "col11":"2022-12-12", "col12":"2023-09-28 14:22:44.000000", "col13":"2023-03-03", "col14":"2023-06-25 13:19:15.000000", "col15":"BV", "col16":")jJv", "col17":"EL_I^2A-KD9P^n0VGfY.DapPaHP4b=3QCZXQ0-zW@Ke-", "col17":"LTl)O&FsU0<4mq5_a!VkB(dy"} {"col1":293498095, "col2":-121, "col3":-25965, "col4":0, "col5":-3576656064125326132, "col6":"-5657804083675264268", "col7":-30704.178, "col8":-904104728.103341, "col9":-3159432710175410.370, "col10":-45496500895008845.756, "col11":"2022-12-08", "col12":"2022-11-19 03:19:20.000000", "col13":"2023-04-19", "col14":"2023-10-01 09:10:42.000000", "col15":"M1/gn^", "col16":"3e3^nd>C*R&P-K`Q(/l#S@p#~VG6N8bakqb!6JOCPi>OKf@FyVx2v!E_GzXS&iI_rvtU3@nH~~jWu6@%4>", "col17":"ECpA8MXR9"} {"col1":1891310032, "col2":-26, "col3":26695, "col4":0, "col5":-374125000529149443, "col6":"2171945590552452381", "col7":1041.4928, "col8":1273785834.848136, "col9":97681462870233953.548, "col10":80612975133223453.920, "col11":"2023-03-28", "col12":"2023-09-23 19:05:17.000000", "col13":"2023-01-08", "col14":"2023-04-22 18:50:43.000000", "col15":"EC><,k", "col16":"UuW2bFgOk", "col17":".yuEbs~=_md6Q=p_rC#4rM5Fv>2;)`1?vo@o*OHlmw%w1yqWi&8heNZ?~8!C0qL"} {"col1":-741198949, "col2":-125, "col3":-19192, "col4":1, "col5":5676011356690276916, "col6":"-7208944717181851294", "col7":-16968.037, "col8":-172360599.036606, "col9":11062817494936380.754, "col10":-20473655271393218.620, "col11":"2023-01-05", "col12":"2023-06-05 05:32:43.000000", "col13":"2023-09-25", "col14":"2022-12-11 18:46:30.000000", "col15":"uo*`,0x4WusV8", "col16":"YBjQda$7u07noHXpbBeAqy^0Z~K5eC*l7NE8r`O^-*K3H(Q3c1i1R%FZTC-#ol`8`.uTDxsBrtnv~^41TTL,f-#Nx=fx1)U3#;9K=osN(BCPa/VJP^yb=x-wC", "col17":"$Uo7qZ)*QOk#*nXua`~=qi4*+F-DcC+~)8y#C6+UzS;8wr%?omo(XHQ9$C;A)a1Aw%T", "col17":"hv6lk51=2%oZ~k?s?jbdcE92t;q^*11S5Gni&", "col17":"h%EzOW5YYzGlD+#n8sn"} {"col1":20035609, "col2":3, "col3":15349, "col4":0, "col5":-822097466612981862, "col6":"-8411765013373638349", "col7":31527.754, "col8":-563702334.28447, "col9":-73307201008760924.624, "col10":41041091789555799.240, "col11":"2022-11-28", "col12":"2023-06-13 08:38:26.000000", "col13":"2023-09-11", "col14":"2023-02-24 05:04:10.000000", "col15":"k<,$", "col16":"8KGA*R`O`xc4ahsU,OfQF8U+L-MYW81RD@q_vBkcCAU=~)%kzq>I419e", "col17":">hq0RmfoN8GY1KhcX%8kSVgNepBIx=64zIC5w1cd2)@HTg"} {"col1":681801015, "col2":33, "col3":-3520, "col4":1, "col5":7366609877737053742, "col6":"-3161246756640427052", "col7":-30325.709, "col8":305541624.015199, "col9":-68808724306427475.611, "col10":-27445248172763847.371, "col11":"2023-01-23", "col12":"2023-09-01 22:06:09.000000", "col13":"2022-12-04", "col14":"2023-08-31 22:26:56.000000", "col15":"9~jInZTijOl/T", "col16":"t,BiuEz/IOh;/5Hgs^*toL%e-"} {"col1":-763764922, "col2":43, "col3":-23399, "col4":1, "col5":783989712103186350, "col6":"4083110528859476183", "col7":23241.365, "col8":1995148265.406853, "col9":96770525970445251.550, "col10":-85979799906620535.713, "col11":"2023-09-25", "col12":"2023-06-07 09:35:00.000000", "col13":"2023-07-19", "col14":"2023-02-04 03:54:25.000000", "col15":"Z~$?K=)T", "col16":"%0Z7_jKvdtrLWiMO2&Q$>Jo<5zh`.sd0(YWT.~Q`-B/q7,up>lw5PAA+B?h~PAfqH1d", "col17":"^*Zk4=6jLr?;fmtbcE/?y5s$*_-bmXh#H_LT>ua>2H&Bv%#e7lKc@k-;^Aa7ukG/VI6TR227%h?LT+(_v", "col17":"6TIVHg^HUKpnL(vb%EUwGhk3;)"} {"col1":1370312656, "col2":41, "col3":18715, "col4":0, "col5":-3758233030181962206, "col6":"-8987717996655162408", "col7":-31457.508, "col8":-1708794275.366794, "col9":-94588829972275923.445, "col10":3986165881623729.357, "col11":"2023-08-11", "col12":"2023-07-25 18:20:01.000000", "col13":"2023-02-26", "col14":"2023-08-06 11:27:49.000000", "col15":"@DS1", "col16":"T?bB7tU", "col17":"IiQ@J6tX~sm^jG.r&swNrVk1-2ONnvC5Ig(XkMI)X%@DxZbPkLG<84l_F0*kDbpId.dd@d%Tqv"} {"col1":-1169184786, "col2":71, "col3":31927, "col4":1, "col5":8390345726239927198, "col6":"-7481515861580930114", "col7":-11882.879, "col8":1647353218.839473, "col9":-83496988101917566.310, "col10":8002364419087947.937, "col11":"2023-04-16", "col12":"2023-09-18 23:39:33.000000", "col13":"2023-11-07", "col14":"2023-10-27 03:02:59.000000", "col15":"=P", "col16":"62_"} {"col1":-1095228497, "col2":-62, "col3":-14579, "col4":1, "col5":8678662247688949464, "col6":"2327812601777741478", "col7":-18123.812, "col8":1567963893.234542, "col9":9922994714498675.274, "col10":23455293548273884.488, "col11":"2023-02-23", "col12":"2023-01-05 12:37:47.000000", "col13":"2022-11-13", "col14":"2023-07-28 23:53:46.000000", "col15":"r1(NqlNf", "col16":"T1xKVofKWBof,<%7t>C;wtY<>3mbn/epHN2=GxB+(/*nt3YK7TLM,I14_bD@ZXu-2zy#l0j", "col17":"i~kdqVPVKe-", "col17": "LTl)O&FsU0<4mq5_a!VkB(dy"} {"col1": 293498095, "col2": -121, "col3": -25965, "col4": 0, "col5": -3576656064125326132, "col6": -5657804083675264268, "col7": -30704.178, "col8": -904104728.103341, "col9": -3159432710175410.370, "col10": -45496500895008845.756, "col11": "2022-12-08", "col12": "2022-11-19 03:19:20", "col13": "2023-04-19", "col14": "2023-10-01 09:10:42", "col15": "M1/gn^", "col16": "3e3^nd>C*R&P-K`Q(/l#S@p#~VG6N8bakqb!6JOCPi>OKf@FyVx2v!E_GzXS&iI_rvtU3@nH~~jWu6@%4>", "col17": "ECpA8MXR9"} {"col1": 1891310032, "col2": -26, "col3": 26695, "col4": 0, "col5": -374125000529149443, "col6": 2171945590552452381, "col7": 1041.4928, "col8": 1273785834.848136, "col9": 97681462870233953.548, "col10": 80612975133223453.920, "col11": "2023-03-28", "col12": "2023-09-23 19:05:17", "col13": "2023-01-08", "col14": "2023-04-22 18:50:43", "col15": "EC><,k", "col16": "UuW2bFgOk", "col17": ".yuEbs~=_md6Q=p_rC#4rM5Fv>2;)`1?vo@o*OHlmw%w1yqWi&8heNZ?~8!C0qL"} {"col1": -741198949, "col2": -125, "col3": -19192, "col4": 1, "col5": 5676011356690276916, "col6": -7208944717181851294, "col7": -16968.037, "col8": -172360599.036606, "col9": 11062817494936380.754, "col10": -20473655271393218.620, "col11": "2023-01-05", "col12": "2023-06-05 05:32:43", "col13": "2023-09-25", "col14": "2022-12-11 18:46:30", "col15": "uo*`,0x4WusV8", "col16": "YBjQda$7u07noHXpbBeAqy^0Z~K5eC*l7NE8r`O^-*K3H(Q3c1i1R%FZTC-#ol`8`.uTDxsBrtnv~^41TTL,f-#Nx=fx1)U3#;9K=osN(BCPa/VJP^yb=x-wC", "col17": "$Uo7qZ)*QOk#*nXua`~=qi4*+F-DcC+~)8y#C6+UzS;8wr%?omo(XHQ9$C;A)a1Aw%T", "col17": "hv6lk51=2%oZ~k?s?jbdcE92t;q^*11S5Gni&", "col17": "h%EzOW5YYzGlD+#n8sn"} {"col1": 20035609, "col2": 3, "col3": 15349, "col4": 0, "col5": -822097466612981862, "col6": -8411765013373638349, "col7": 31527.754, "col8": -563702334.28447, "col9": -73307201008760924.624, "col10": 41041091789555799.240, "col11": "2022-11-28", "col12": "2023-06-13 08:38:26", "col13": "2023-09-11", "col14": "2023-02-24 05:04:10", "col15": "k<,$", "col16": "8KGA*R`O`xc4ahsU,OfQF8U+L-MYW81RD@q_vBkcCAU=~)%kzq>I419e", "col17": ">hq0RmfoN8GY1KhcX%8kSVgNepBIx=64zIC5w1cd2)@HTg"} {"col1": 681801015, "col2": 33, "col3": -3520, "col4": 1, "col5": 7366609877737053742, "col6": -3161246756640427052, "col7": -30325.709, "col8": 305541624.015199, "col9": -68808724306427475.611, "col10": -27445248172763847.371, "col11": "2023-01-23", "col12": "2023-09-01 22:06:09", "col13": "2022-12-04", "col14": "2023-08-31 22:26:56", "col15": "9~jInZTijOl/T", "col16": "t,BiuEz/IOh;/5Hgs^*toL%e-"} {"col1": -763764922, "col2": 43, "col3": -23399, "col4": 1, "col5": 783989712103186350, "col6": 4083110528859476183, "col7": 23241.365, "col8": 1995148265.406853, "col9": 96770525970445251.550, "col10": -85979799906620535.713, "col11": "2023-09-25", "col12": "2023-06-07 09:35:00", "col13": "2023-07-19", "col14": "2023-02-04 03:54:25", "col15": "Z~$?K=)T", "col16": "%0Z7_jKvdtrLWiMO2&Q$>Jo<5zh`.sd0(YWT.~Q`-B/q7,up>lw5PAA+B?h~PAfqH1d", "col17": "^*Zk4=6jLr?;fmtbcE/?y5s$*_-bmXh#H_LT>ua>2H&Bv%#e7lKc@k-;^Aa7ukG/VI6TR227%h?LT+(_v", "col17": "6TIVHg^HUKpnL(vb%EUwGhk3;)"} {"col1": 1370312656, "col2": 41, "col3": 18715, "col4": 0, "col5": -3758233030181962206, "col6": -8987717996655162408, "col7": -31457.508, "col8": -1708794275.366794, "col9": -94588829972275923.445, "col10": 3986165881623729.357, "col11": "2023-08-11", "col12": "2023-07-25 18:20:01", "col13": "2023-02-26", "col14": "2023-08-06 11:27:49", "col15": "@DS1", "col16": "T?bB7tU", "col17": "IiQ@J6tX~sm^jG.r&swNrVk1-2ONnvC5Ig(XkMI)X%@DxZbPkLG<84l_F0*kDbpId.dd@d%Tqv"} {"col1": -1169184786, "col2": 71, "col3": 31927, "col4": 1, "col5": 8390345726239927198, "col6": -7481515861580930114, "col7": -11882.879, "col8": 1647353218.839473, "col9": -83496988101917566.310, "col10": 8002364419087947.937, "col11": "2023-04-16", "col12": "2023-09-18 23:39:33", "col13": "2023-11-07", "col14": "2023-10-27 03:02:59", "col15": "=P", "col16": "62_"} {"col1": -1095228497, "col2": -62, "col3": -14579, "col4": 1, "col5": 8678662247688949464, "col6": 2327812601777741478, "col7": -18123.812, "col8": 1567963893.234542, "col9": 9922994714498675.274, "col10": 23455293548273884.488, "col11": "2023-02-23", "col12": "2023-01-05 12:37:47", "col13": "2022-11-13", "col14": "2023-07-28 23:53:46", "col15": "r1(NqlNf", "col16": "T1xKVofKWBof,<%7t>C;wtY<>3mbn/epHN2=GxB+(/*nt3YK7TLM,I14_bD@ZXu-2zy#l0j", "col17": "i~kdqVPVc+;_oW?-LRLh;FnQfLL?ieRtZ$WJm?blsQn32p6O@$J%cjb%nZTC.6m>w;UI<%)EB+n"} {"col1": 577259683, "col2": 18, "col3": -13537, "col4": 0, "col5": 5778440245350381673, "col6": 1729667696812540134, "col7": -29986.787, "col8": 462696869.740925, "col9": -64242297078135876.710, "col10": -34110060920083841.600, "col11": "2022-12-13", "col12": "2022-11-11 00:41:32", "col13": "2023-04-20", "col14": "2023-10-19 18:35:25", "col15": "k)W4Wbt8", "col16": "F<0)FFx0Ay&wdY%rRE#>t4QOL(pTd^BOW8@~KBXCvXgQ@20mrzFPd", "col17": "-WOU+(8-*I<*-F;U.4MF&Y>n*xNAbLHf/l9K_BjIdK;0T-&J0$DumP_scfWr!tpPd@g=/fyD;C7vV8&j>F/AC^r5^,t+pid@P)&^=&?g`?*iJzsx4k=<<;aqi@a%f"} {"col1": 358052123, "col2": -20, "col3": -995, "col4": 1, "col5": 8462498483626768535, "col6": -4579777337458835014, "col7": 5497.2812, "col8": -1675121192.209081, "col9": -55228000464087729.376, "col10": 54075338566731730.689, "col11": "2023-05-09", "col12": "2023-08-19 11:53:12", "col13": "2023-01-30", "col14": "2023-06-08 14:32:40", "col15": "z$8+gBbZ", "col16": "0;^hCNKLqx=)", "col17": "QH=1=ezdz`3u@IwXC~q.Hjo5Tch6LPfj_$nX>*saEQU.Oz(cL.rR*iuahbYnb*0C4*G0``Q^Nd0RPP$vhA&95q)X<(a.PfZ,H>GHG=LjhC9G.-8!X", "col17": ",DvFSRv&Ez!GJrEo1/;Nr,*Qm*_eV7S(CesYSTt3v_w>NRew~3h(IrQQ"} {"col1": 196725014, "col2": -24, "col3": -13427, "col4": 0, "col5": -7375318581248960057, "col6": -2543965274523748861, "col7": 5780.991, "col8": -694770524.546083, "col9": -76123002210744723.992, "col10": -47697265631521692.335, "col11": "2023-04-24", "col12": "2023-01-08 11:35:37", "col13": "2022-11-13", "col14": "2022-12-03 12:55:19", "col15": "0KC+u_$>", "col16": "i@-@ASL*~~/iY)1+$rL)*DEk<Z%kd&Gc,s9FlWo!42P.yo_VO*Xewr$C@b?b8;/f-_7G=w^OX$m5#6*", "col17": "P+dMU%2GvWo=*+_U$#N871~QZ@pzc,~lLCYiY)~k"} {"col1": -688049528, "col2": -35, "col3": 4321, "col4": 0, "col5": 7245845458805220394, "col6": 3912116986726525719, "col7": 10877.681, "col8": -87511596.70815, "col9": 27431649310089463.872, "col10": 53000349361497028.867, "col11": "2022-12-14", "col12": "2023-09-10 09:56:23", "col13": "2023-04-04", "col14": "2023-01-17 18:35:42", "col15": null, "col16": "%fS1#RR47;vSRM%nZorS5_/xpu.@SM.~5klrRc)^e;dFK@N-bkA$(NAX&-0Vu1LrvZ.cBjSFfYwOKQy6C!qVPw;arKX&W>p/w-P-*ZxmrLy", "col17": "o7(4@cOp3=~p%l7+23)~Jf5vb$t@yCV@CfjrxEvB`iJT0q;-)XCuX#h/6dAOP$%0fH0deJ8%DNNeH$XZ^C!Q="} {"col1": -1474368615, "col2": -21, "col3": 5177, "col4": 1, "col5": 8174349037021096782, "col6": 2571804249862798292, "col7": 9933.032, "col8": -720750366.940295, "col9": -8590320354503227.221, "col10": -94099543687278644.814, "col11": "2023-03-03", "col12": "2023-07-11 13:00:08", "col13": "2023-03-29", "col14": "2023-01-22 03:42:30", "col15": "9gn!5C!BvEP", "col16": "X)1XT$`l2Lkr93E&?A?GWlurNp//;jSuTw>l6!?", "col17": "+<2ZMd=Xd0Q<2KT.%!K.Suj45?_lTHL3LptTpI^+(Kr8P6wx&(s8&"} {"col1": -1693846609, "col2": -73, "col3": 9118, "col4": 0, "col5": -2985094276774224395, "col6": 8805992256826989074, "col7": 6244.1, "col8": 1813143653.166, "col9": -62764692014561863.442, "col10": -38325067730370117.681, "col11": "2023-09-07", "col12": "2023-01-28 12:49:35", "col13": "2023-04-18", "col14": "2023-01-17 20:14:35", "col15": "d65uY.r", "col16": ")A>je?_.Gt<;n`w51eCBOWT-kR`1ASIA", "col17": "hQWT,ge>KGm#zleH67$,`Px&A`N*kPk.ZqkO!4SG~-x/9~x*+tmgjmK", "col17": "M=_wY3E`(,i21pX2tO=f;oHS6n5,1@LU+iPFypM2zE(+(>k6XxzUqU*OTtx#!P5k++x@p60GAA>D0deaeDV$@N0R5"} {"col1": 519727040, "col2": 80, "col3": 14429, "col4": 0, "col5": -617879460517437411, "col6": -7165327641490392420, "col7": -13084.128, "col8": 1970316910.765143, "col9": -93976002804076259.534, "col10": -32558524385546329.363, "col11": "2022-11-13", "col12": "2023-02-16 09:07:20", "col13": "2023-07-28", "col14": "2023-01-08 22:38:58", "col15": "XsBMIBa^FI!d!", "col16": "pePuy7bPN&=l)?;@l6NJ7/V0Ukt1ubtmZMI$(d;ozN3!>1x2DDo>MRifl;4T8d`2_7R76B9&lePU^UK#$M`&ySGkb;)!x", "col17": "qY/@=?,a0!5EDHD"} {"col1": 564937758, "col2": -10, "col3": -19719, "col4": 1, "col5": 6205568508580489074, "col6": -238554161903590528, "col7": -8137.3535, "col8": 1023623642.337226, "col9": -2362569962650581.821, "col10": -68775335337492456.403, "col11": "2023-08-28", "col12": "2022-12-13 09:02:24", "col13": "2022-12-14", "col14": "2023-10-02 15:42:07", "col15": null, "col16": "B)a?p0>L8kL", "col17": "zvS`nT$&kYjuqvx6SM0>h*lkl^`~s$^LmTQN~*B^qdyQF^`Ofh~L.GJ5@Bvc%X>akZfc$9Xeabk1FOw1fJI@9-U-V"} {"col1": 1914314437, "col2": 14, "col3": -3885, "col4": 0, "col5": 5289140208274800927, "col6": 5523134939016922802, "col7": -16044.735, "col8": -531461112.058018, "col9": 20859664695767945.768, "col10": -95844141490303829.980, "col11": "2023-05-12", "col12": "2023-08-10 20:49:23", "col13": "2023-03-12", "col14": "2023-04-03 10:12:58", "col15": "THW", "col16": "0L35Dot/95xSb1igaBQY#jCm&q%c/MQ(2(0-sufN>BmBlt-`^L4rN2hH6D&Xy1Z8kY$>t5Z(,h1i4l2gU8e", "col17": "w`)of^9_@N=DZsU##xMKBfYAdm`fd=7V"} {"col1": -1700382114, "col2": 115, "col3": -6204, "col4": 1, "col5": -4126342125777344756, "col6": 9054982454557719308, "col7": -19103.875, "col8": 2031018782.572868, "col9": -83553942298914702.482, "col10": 58591672291818154.504, "col11": "2022-12-12", "col12": "2023-09-28 14:22:44", "col13": "2023-03-03", "col14": "2023-06-25 13:19:15", "col15": "BV", "col16": ")jJv", "col17": "EL_I^2A-KD9P^n0VGfY.DapPaHP4b=3QCZXQ0-zW@Nl$KVatwNIEs.fwG07haAK-w8kg>QA9*Q&Cq=rd5J=iOj,4b6T`YNn$!ToQlF/R-8~9-sE?mcNekAWsxWhyy="} {"col1": 1976188027, "col2": 39, "col3": -20199, "col4": 1, "col5": 54838796530721045, "col6": -4199157709856370965, "col7": -20633.107, "col8": -1314405206.528385, "col9": -17838244458606850.919, "col10": 13993039380882130.769, "col11": "2023-04-28", "col12": "2023-07-21 06:48:51", "col13": "2022-11-14", "col14": "2023-05-29 15:07:03", "col15": "Z", "col16": null, "col17": "aMm_kYB`6gpU2h;uD&8/kw3X"} {"col1": -439380020, "col2": 96, "col3": -17308, "col4": 0, "col5": 3579043460080517561, "col6": 4240896818074065205, "col7": 12152.55, "col8": 1198053802.322113, "col9": 2562915342156503.474, "col10": 7583328329290118.446, "col11": "2023-03-31", "col12": "2023-04-17 02:55:52", "col13": "2023-03-19", "col14": "2023-03-29 13:17:27", "col15": "0&P0_,,9I&dn", "col16": "HTtzP,7Ob", "col17": ">!M"} {"col1": -457160013, "col2": -87, "col3": -32076, "col4": 0, "col5": 2962490776305786988, "col6": -9219898190360409591, "col7": 4773.356, "col8": 124168385.283727, "col9": 66564244852109284.538, "col10": -17698570145691684.721, "col11": "2023-09-09", "col12": "2023-05-12 14:33:56", "col13": "2023-05-19", "col14": "2023-08-07 19:17:09", "col15": null, "col16": "nsqUTDXMfOqg!S7C97`49QcZ4Os0TI?g6E2#J/(fV>(*X_Q`(6Znf?h$PS4u8NFcB49IFq/mgNAJX~p-C~4.", "col17": "0mntxHvG8zY_", "col16": "ca", "col17": "v.@WpiI1+`>Bj#II4"} {"col1": -1135173592, "col2": -24, "col3": 12059, "col4": 1, "col5": -4173609755187683516, "col6": 9104229668324434517, "col7": -18978.926, "col8": 1538129083.152786, "col9": 49186343729636745.231, "col10": -7234568807819447.144, "col11": "2023-06-14", "col12": "2023-11-09 00:22:59", "col13": "2023-01-15", "col14": "2023-07-14 13:08:52", "col15": "(~twE21C", "col16": "o?XB9l_e*+?3UZH_qGT7/r7F4~rr1$k%;eaEMa?r4@P@jk)6P>XxpFY2(q9iiV~fm7eEP5oN<#zlsw~wji"} {"col1": 441268110, "col2": 102, "col3": 13250, "col4": 1, "col5": 8597594907679023161, "col6": 5667613937641491367, "col7": 29102.045, "col8": -319989982.17985, "col9": -81087716870785483.143, "col10": -64800115883130558.550, "col11": "2023-06-02", "col12": "2023-10-04 21:25:45", "col13": "2023-03-03", "col14": "2023-09-23 07:27:31", "col15": "G-48d", "col16": ")EWS(!Qtciw`^3x;+Gu,Qr", "col16": "tuV0Ia95UN4WJ,d>U,gXIq+AB&FWl@+ZIZ7n1(t.!rozlH3)L$I", "col17": ";rwx#I@!I9>KNEo-e3~u2!Z7"} {"col1": 1972978288, "col2": -50, "col3": -6168, "col4": 0, "col5": -4179719101679261778, "col6": -5658599518714090609, "col7": 28802.623, "col8": 246142051.324034, "col9": -36754206589235888.236, "col10": -89884930143982612.342, "col11": "2023-01-05", "col12": "2023-03-15 03:20:04", "col13": "2023-09-07", "col14": "2022-12-27 21:53:40", "col15": "id>=nmLO", "col16": "q)ImOZMO-%"} {"col1": -857517907, "col2": -13, "col3": -26169, "col4": 0, "col5": 1324801886191525419, "col6": -633990266050297169, "col7": 3735.309, "col8": 789053200.026963, "col9": -57720955152670311.476, "col10": -8743840658043643.960, "col11": "2023-07-31", "col12": "2023-09-06 17:05:54", "col13": "2023-06-08", "col14": "2023-03-14 17:52:11", "col15": ">rSQBh-<9$q~1/", "col16": "3=mvLVLYK#5M_mImzbf$m4pjO?xqaMnD3%Wk6z9!?VK>asTqihfTun&?rjnV@hCKqNFLZ!t?Z,$I&0VO14W?.$Ifn", "col17": "3$*wLCj/g;FeFuL?1)xDf1qi-2pC34-nHU*wrC"} {"col1": -794984628, "col2": -123, "col3": 2770, "col4": 0, "col5": -8407115878675052393, "col6": 6290621142790299283, "col7": -20395.217, "col8": 964838226.951184, "col9": 62168795366363553.685, "col10": 3990660931483287.956, "col11": "2023-08-01", "col12": "2022-11-15 03:39:25", "col13": "2023-05-22", "col14": "2023-01-16 06:11:45", "col15": "aBBlJ&qLR/", "col16": "j%jpN=i9M(qm~P6$lrFZX#%K/V,+lKT8PLo7S=nBDaW+%k", "col17": "SBYA;xsw12%VfP3h@H#t%K2217huCI5%Xzl7/uVQyqEDk+iuY4CfzD4+#n4o"} {"col1": -96204677, "col2": 104, "col3": -25072, "col4": 0, "col5": -495962334761368972, "col6": 8827206595048036803, "col7": -11482.668, "col8": -1689118748.978966, "col9": 67715972226386452.885, "col10": 13169427423288280.809, "col11": "2023-08-15", "col12": "2023-01-02 17:50:30", "col13": "2023-07-23", "col14": "2023-08-06 21:07:43", "col15": "_ZVEgU^HRmfqt", "col16": ".o2d+YKh6g42*c#", "col17": "_L!"} {"col1": -2115935053, "col2": 27, "col3": -19348, "col4": 1, "col5": 6444729399502953215, "col6": -7824339815255256852, "col7": 31207.164, "col8": -1416336003.514647, "col9": 30769340447285264.393, "col10": -16602275863253066.303, "col11": "2023-09-03", "col12": "2023-01-20 01:35:08", "col13": "2023-06-14", "col14": "2023-01-16 04:44:31", "col15": "h", "col16": "_uZ^TAbpz$&E>G;g7Ke/", "col17": "qAFkpQ29_t~6-$W_G$@qi6q.wZ_l~O9gBk#aIkHjxu>-`~$Ur@M~VF%l.otQqlsdt-+c*/"} {"col1": -388835131, "col2": 53, "col3": 1173, "col4": 1, "col5": 1058814101912670358, "col6": -4766475424119347961, "col7": -9593.519, "col8": -2026900846.597067, "col9": 32638844755892053.680, "col10": 74267061673690142.256, "col11": "2023-04-10", "col12": "2023-01-23 06:01:37", "col13": "2023-01-05", "col14": "2023-01-10 20:32:45", "col15": "vatM?TjC", "col16": "-czPSz7d;hzG%`_L^Lh(iQR_TjXjNJu=4-pB20qcn@s`b&BXBJE", "col17": "ZC1C1b7bXzPw8eL$aQK!sAs+3mH~xq.Y,4sAf~aI!VrfJ!rEm9#g;,?(WY5XrY$Hu9ieq1JfeuoJq+?P0jB0tI64sM/>#E.kBRZ>E_%J`kg$iXvES2KqpLpF&Q>Cxm=u1GkyT8X(;^YVvxgd3ukoX<@0=UE=^@Fy1,3ZmN5y~gE179^6s=z,*X!"} {"col1": -890641036, "col2": -108, "col3": 12687, "col4": 0, "col5": 5992849989632294216, "col6": -509868396952444310, "col7": 25711.898, "col8": -155735546.802502, "col9": 30165578514147105.800, "col10": -8197414077466183.531, "col11": "2023-05-22", "col12": "2023-08-29 18:34:13", "col13": "2023-05-16", "col14": "2023-03-01 21:45:35", "col15": "9A3@>H6t", "col16": "M2-d-@D17CX+$Co8K`<0TLns@%#PT3ZS(8JrM/2)lO~-9N~`AGr^!mg_I=.d/9GNP", "col17": "8/e,sjJC%Nb<.XIIkQEES~Is9JMzf-cUXnln.=;T@;d#K=TsahgOL9aJ+F!zDCEBBDDBo0d^BJjO(Pgm4X^x<@He,L;e^KJ+oLBp`(l-BHC70G5*~-"} {"col1": -214174654, "col2": -66, "col3": -26315, "col4": 1, "col5": 6675376020097387538, "col6": 2349535819201158151, "col7": -2783.544, "col8": 897715524.600938, "col9": -45965025270498650.974, "col10": -67730060493155209.887, "col11": "2022-12-15", "col12": "2023-11-09 12:10:53", "col13": "2023-03-18", "col14": "2023-04-16 19:23:56", "col15": "r4Y@2Ih#", "col16": "a>,4Qp!Y,o+~a4N_.rE_2eIhsgTH>vX(bm~3l$vdJtrnp@?pMKp_IBASj!i!*ruZ*3iMOWChwPRybRUmEbZ,s", "col17": ")l+^jtn@MQLK*9a7G)MfSKuY8/=G2DNh0f>d%oCIq>!(.7YqV~yWmi%+pwWLRmU88TZI-->Y#"} {"col1": -2129952087, "col2": -126, "col3": -2059, "col4": 1, "col5": -8837074953586926207, "col6": 5112551742375942421, "col7": -6595.1167, "col8": 419447242.935179, "col9": -92635600957786296.964, "col10": -99426600244345493.224, "col11": "2023-05-17", "col12": "2023-01-04 14:05:29", "col13": "2022-12-17", "col14": "2023-04-30 14:43:23", "col15": "-a", "col16": "Y@OQLeFB!n`xo?@hDQ(LQfTb^Ay_!Smggqhg%fceGJd", "col17": "/q-IbTh@0v-)i*,XOo1j>xlzCp2!-eN-giu(P7^aK#uk`,/yzbS"} --8584330716254438722 {"col1": 933995213, "col2": 1, "col3": 3267, "col4": 0, "col5": -5550829509029152855, "col6": -8797152448685401671, "col7": -6807.821, "col8": 1881218185.650995, "col9": 44837386411291788.739, "col10": -77744549308538297.360, "col11": "2022-12-26", "col12": "2023-08-24 18:48:11", "col13": "2023-01-30", "col14": "2023-11-03 12:45:38", "col15": "4be", "col16": "1=)tT^~uN(d<%FlwM;`JYpKWzB<+x.PFYfbh!X9EElGf1&bba6;;i2iMz/2Kp_qh$-I^L;3?Sl"} {"col1": -1333802234, "col2": 43, "col3": 11242, "col4": 0, "col5": 1196312694517239929, "col6": 6213937979195932063, "col7": 12792.475, "col8": 1428325473.834884, "col9": -62192826868698867.216, "col10": -93168441979234449.692, "col11": "2023-09-02", "col12": "2023-11-05 11:46:33", "col13": "2023-01-08", "col14": "2023-10-29 05:00:38", "col15": "EN6$dzs~(d53", "col16": "uEL)aj7RcOy2B>akn", "col17": "V.GohGHLV6J6/(Xx?9(7fB<_v9TByzA?7?6Yw$PhvyuFfYk^&DGstDc>KG3UqcU!.m;xm%@LE+gEsxk(/Pbbpw?"} {"col1": 1086518829, "col2": 19, "col3": 8050, "col4": 0, "col5": -3082049133083595029, "col6": 5683422793173472738, "col7": -2291.2551, "col8": -432505729.081493, "col9": -47674030032621905.804, "col10": -80490934942919187.814, "col11": "2023-06-23", "col12": "2023-04-18 23:49:15", "col13": "2023-10-05", "col14": "2023-04-01 08:55:04", "col15": "#P-Bqu", "col16": "<,F@^IxJCX,4#vmwXV2ShV>C2mlige5>NJT.,/T/~@LOKo3cF_=^p", "col17": "Z.Hqh(h3Gl7V%5L%(kk7E37w/Go8wFJo?fBOhlH,qP#gA?HMc)E2psS/8J.Kj/5H3*J>y69SflpRdW>kk5U=Wi;ih,H3L-/5H8ZAh?", "col17": "9G!&Shr?TRk=c;0MmBkB^ctv3%D_(zKTH"} {"col1": -1331045850, "col2": 56, "col3": -31044, "col4": 1, "col5": -7244667617013002360, "col6": 1902503764317765481, "col7": -25882.256, "col8": -380049302.431098, "col9": -9606911474006002.109, "col10": 17328632045627481.982, "col11": "2023-04-19", "col12": "2023-05-27 13:22:43", "col13": "2023-02-13", "col14": "2022-12-13 04:36:42", "col15": "4C`o>N#W(XW)F.M8UuUtJLRU8%S7T6cVK^5x^DY-Lr=8V.LyxYo+9uJ6W.9)t9k_(t@V.BTcR8i+", "col17": "Iul)yq?wr*jT~A&Xw3eC)!It21loq%CSn^Im)$t/-ye4SweU1!^S?t"} {"col1": -1125037299, "col2": 82, "col3": -22808, "col4": 1, "col5": -8303816131517042997, "col6": 4386623234696664296, "col7": 31390.795, "col8": -321331979.556449, "col9": -9500951408855814.912, "col10": -15572524372861648.542, "col11": "2023-04-24", "col12": "2023-02-14 08:58:45", "col13": "2023-05-26", "col14": "2023-09-15 23:55:02", "col15": "3&@", "col16": "h6tMUgR4ZgYkbTaz3l-cZqOXH=$c0$eVnBq~Z`/i-OIcycC?o!,Tbp/%", "col17": "~rMw9K?15@l`?G7zbS;w6D0-l0oVmD.G<#ZjEEw)j.$#RVLAW`/XFk7--,~z;2b"} {"col1": 1558710429, "col2": 12, "col3": 28523, "col4": 0, "col5": 5442602451983227812, "col6": 5264019481572723786, "col7": 30198.125, "col8": 506413823.027176, "col9": 45601850479542885.984, "col10": -13258345057980610.190, "col11": "2023-03-14", "col12": "2023-05-08 22:21:46", "col13": "2023-07-05", "col14": "2023-01-05 03:50:50", "col15": null, "col16": "uHkiv$KU)dNI6W8DU?>>zIIh^.^)Qjpr2ppOZD!?6,)sOBEFe%a4w4skFT4rk", "col17": "S,Xu`uz3QhH;COFcN9*6PnsH)Mf4%GW^OV/#xce)*BANp@263aBjV2?qIB-5$^Q/>Hv6%~ph"} {"col1": 610229798, "col2": 63, "col3": -23158, "col4": 1, "col5": 2607349881852175976, "col6": -4831004874800938260, "col7": -21914.416, "col8": -2107006238.699932, "col9": -13894840376099276.889, "col10": 49077690290463004.191, "col11": "2023-11-02", "col12": "2023-07-29 16:40:01", "col13": "2023-04-14", "col14": "2023-09-11 12:24:43", "col15": "StJUT(wB>@", "col16": "y(@?NZdvk3O3axN-AN=ps9=!~^5apnzz!RW.CZzs`4&%l5p0SY/>)/%t#.ZXpJfgj>^d_FGhtphZ$P-ZY?;/", "col17": "oFI/=&hVVm+Y7MJssb&KP^M7GQ!+)5`.CNOZRfqwR$1S%cMZW!Os$(+rfJB&###*Pg)uDu,IdFK)DpOq"} --8526590106902518025 {"col1": -2135397004, "col2": 94, "col3": -29670, "col4": 1, "col5": 7090872835518711333, "col6": -1916621235651057979, "col7": 23394.068, "col8": 1655037893.333014, "col9": -36143234288746464.456, "col10": -61754523073078713.138, "col11": "2023-10-09", "col12": "2023-01-10 08:53:04", "col13": "2023-04-07", "col14": "2023-05-09 07:46:38", "col15": "1V97aoL?&c!o=", "col16": "GjA`VBdRgX", "col17": "KgFF&je5+,NvGEdAz_;dufCth_a&5,gSu~orh%)pUn1FyV+5,cyA(Yw"} {"col1": 768834811, "col2": 111, "col3": -12368, "col4": 0, "col5": 6987671692766035939, "col6": -7494881589590755673, "col7": -11690.967, "col8": -800701084.768676, "col9": 85704989772506616.614, "col10": 49389328660634750.811, "col11": "2023-10-26", "col12": "2023-10-06 18:51:32", "col13": "2023-05-11", "col14": "2022-12-08 01:37:15", "col15": "n&JJ$4r4K)8Q", "col16": "W&x/kQI;(P/PQ`9#VVbW~Ouv,vI", "col17": "fa)$MGzGg"} {"col1": -1823219684, "col2": -12, "col3": 26992, "col4": 1, "col5": -1836403498572963938, "col6": 1722310216718493557, "col7": 24048.455, "col8": 1916478884.258523, "col9": -99164804684678355.416, "col10": -91191031383207337.116, "col11": "2023-02-20", "col12": "2023-10-01 18:54:49", "col13": "2023-02-06", "col14": "2022-11-15 12:19:11", "col15": "LRU?R2&pR9H", "col16": "2_%90#WoB//HfXMKVl7ssi1Kg.$uZtbpR6Flbn+XO=<92;Vb=3Aq/", "col17": "a.lBcPe-v&wALCzy~?~mno?9LeLdec=K-_7Lh,9.UWsu@T"} {"col1": 2046878137, "col2": -45, "col3": 24125, "col4": 1, "col5": 8733335759463317387, "col6": -4889254601679646071, "col7": -1522.2361, "col8": 1772345507.502007, "col9": -4765781927035297.105, "col10": 49534300407852204.210, "col11": "2023-11-06", "col12": "2023-07-01 02:40:28", "col13": "2023-06-17", "col14": "2023-08-09 11:36:07", "col15": ";WRfOM.%/G", "col16": "hUfxWQK%VuMWj=k.n

f8M?e_IifBVczWQR<%b#x96h", "col17": "9ORK=%nvv7$j;+?!=/"} {"col1": 1931749918, "col2": -61, "col3": -26023, "col4": 1, "col5": 655886868675975318, "col6": -6228523992121274715, "col7": -30416.277, "col8": 404494499.593156, "col9": -90704723127910362.852, "col10": -48830702924564917.200, "col11": "2023-03-22", "col12": "2023-03-30 14:30:20", "col13": "2023-06-25", "col14": "2023-08-03 20:58:14", "col15": "1", "col16": "w0XlSO`^~3Mc8`J_AZ$kD-9.eZbvk65/TZkg8fU!4yciWdSUGfE?+cJ0yEI8I+f>O@en+%I%1R!ccmY", "col17": "nArT@GE)iq0,`KrBS9uyh#*Y.T=ACL.m>^xc-!ZvF=VH@v1E$K;iR_Z=z#;5~~/s&/>s)-d=Z!t%s=UY/fMQ~6IE", "col17": "w)j>29dIuV0;P13d#*("} {"col1": -784154300, "col2": -62, "col3": -25126, "col4": 1, "col5": -4498219135499881772, "col6": 6856401980615832763, "col7": 12140.458, "col8": -242951193.82197, "col9": 39747421746866133.595, "col10": 98412075066012684.979, "col11": "2023-05-29", "col12": "2023-09-07 20:05:21", "col13": "2023-04-21", "col14": "2022-11-19 03:04:38", "col15": "K=O^alW)L`", "col16": "EgcIHa^Hd(GE~3gM@UK", "col17": "qJo9+1Ho39e*Tf2S@62#FbSIF5)+e?pxfhlOEHe*S8k%#MlOplPx&U/0`7erPd3E%lWIR<"} {"col1": -1345998070, "col2": 73, "col3": -12307, "col4": 1, "col5": -2346592350776300502, "col6": 4576202285731461241, "col7": -676.7377, "col8": 1364540328.064018, "col9": 13432767121839671.998, "col10": -26324936959989359.594, "col11": "2023-02-11", "col12": "2023-02-07 07:08:09", "col13": "2023-03-21", "col14": "2023-07-24 06:50:49", "col15": null, "col16": "to_qGASeSl*X2nbC3", "col17": "WBZww5;5h5_7hv6TiCrx9wJbP@A22S3FHcCK#KGPF8("} {"col1": -1988183162, "col2": 40, "col3": -24136, "col4": 1, "col5": -417379002178085796, "col6": -1474977584348316966, "col7": 5310.985, "col8": 1063839607.392107, "col9": -54413137402446947.803, "col10": -73693930358854252.940, "col11": "2023-02-25", "col12": "2022-11-22 16:29:59", "col13": "2023-03-22", "col14": "2023-07-05 19:30:45", "col15": "qgH`_", "col16": "V^;OOSkIoiGuYYAl4y*X3sBY.3_t*@/B5&19@6-q~", "col17": "MF#?r7V9tm8lGzpKoSphji8*=z%mYM5OU,Fiq`El=0snqAJll%6LM!n^H`"} {"col1": -1180095966, "col2": 75, "col3": -9704, "col4": 1, "col5": -7929307379393601542, "col6": -3221655257874030538, "col7": -22961.36, "col8": 1350934064.919748, "col9": 71590329804082297.316, "col10": 68490249642371318.980, "col11": "2023-09-22", "col12": "2023-10-06 19:04:38", "col13": "2023-01-07", "col14": "2023-04-03 03:02:49", "col15": ")?", "col16": "Ghw%4pXF_LI1P?M^f7c4&o2K-QEW%p8&trAj~DH4=dQ+2E!n%U8"} {"col1": -1042939487, "col2": -102, "col3": -20093, "col4": 1, "col5": 258704357774718873, "col6": -4387908451084538500, "col7": -30131.84, "col8": 265721776.737866, "col9": -2616511530016594.215, "col10": 28484710821627763.956, "col11": "2023-03-30", "col12": "2023-06-19 03:13:57", "col13": "2023-03-11", "col14": "2022-12-06 13:04:22", "col15": "3rKKL3s>", "col16": "FVWF@8vMgd)ePWR?u@V+I9eSr0FK`!x;+%l6^u+bkBH+Tk+1SRrL88J4;xG%X~kxh0Rf*5b", "col17": "almPDzqhC!rL*)c8j5XLkhv~Y/y~V3x.>iD/msL)N.c8(J_s?Qlpu^zsxiIg^Ig$G%y^,_r+lsHbIaKLW9X3sP)2bRwu/(!dOKA?TZaDI`MfFd0K+9f@Dbf_xh9>n!I22MqP2X)pY7@g0PjtRR", "col17": "/m6JI,%hrjW*C/EMawnUA+P%AHG"} {"col1": -96922114, "col2": 23, "col3": -28004, "col4": 1, "col5": 8446860350965531770, "col6": 5642173086219796099, "col7": -3171.0913, "col8": -634821029.823853, "col9": -98654792721280301.185, "col10": 90696742528251983.209, "col11": "2023-01-13", "col12": "2023-11-06 05:10:39", "col13": "2023-06-18", "col14": "2023-08-12 12:51:35", "col15": "N6W4", "col16": "EXbHnU*G*x1(Fs>=`Oh;QjqM7>q5S6x=l%AeX9@p~_ubptVMbC$9/L4", "col17": "KkAN)vprmfxmbZ3-BQ2w27g2X=YtRc6!_e_Gj#H."} {"col1": 913460251, "col2": -122, "col3": -668, "col4": 0, "col5": 6507538830189845573, "col6": -9049683691868904419, "col7": 32287.156, "col8": -589894718.031317, "col9": -42663927076874213.955, "col10": -59265662945486651.537, "col11": "2023-04-28", "col12": "2023-09-26 23:37:43", "col13": "2022-12-02", "col14": "2023-01-20 15:16:56", "col15": "hJND)Sz", "col16": "VFdc4H=RSuNZ/C,6N", "col17": "PBo("} --8505366084515032753 {"col1": 382502710, "col2": -10, "col3": -1057, "col4": 1, "col5": -1053404092722092555, "col6": -3224814438034550078, "col7": -303.36923, "col8": 1394068216.774496, "col9": 35385157086902073.490, "col10": 28542472828538829.527, "col11": "2023-06-15", "col12": "2023-08-08 18:11:20", "col13": "2022-12-18", "col14": "2022-12-31 10:35:49", "col15": "aNDd", "col16": "rf&g;llr0AcaHMvj==5.x^T6<5#,s9g6Ce+%%shkcvv==<-%32nk0UKGn/Xv0ze1BPHIuC5b/=LGg6Z3S8gm`F)#w", "col17": ")xh~)TJqjj.DjX1yU2Ri6KQJax"} {"col1": -1855122167, "col2": -3, "col3": 15689, "col4": 1, "col5": -2367363947390869432, "col6": -6532659416199639957, "col7": 23066.408, "col8": 1319308662.25036, "col9": 75101865537681458.145, "col10": 847059006678943.372, "col11": "2023-06-22", "col12": "2023-03-26 14:27:35", "col13": "2023-07-13", "col14": "2023-08-19 17:08:01", "col15": null, "col16": "rspt?wZj`f,b.aEWAm5KI&s_q;yFo(>%OYX+WlZQ4uEBzq4^kJGGNIJ1W;", "col17": ",JBXQweU"} {"col1": 863299634, "col2": 19, "col3": 26127, "col4": 0, "col5": -3722113302586638684, "col6": -851562457423560807, "col7": 12379.872, "col8": 1344459261.478156, "col9": -5722993038821801.748, "col10": -17110044615450491.806, "col11": "2023-05-22", "col12": "2023-07-06 18:43:09", "col13": "2023-03-30", "col14": "2023-01-03 17:58:06", "col15": "CW4hXqcNhZ(7NV", "col16": "^-GcQPOz2j/^JouKfQ!j", "col17": "fL@>t?5)3esV/+),%xsD`;^ModFpKCj^qhGyEThhB+s.w_#0ZSEvdtmUPKcU3!I5DBaoc(?6--TxUy0lMqgGGJ_1?Ba?Q@*b6->;I_koUI5", "col17": "lu<.4A8;Po5"} {"col1": 517718032, "col2": 8, "col3": 5617, "col4": 1, "col5": 2036983629624140619, "col6": -8004741025176861266, "col7": 29875.326, "col8": 518876871.957944, "col9": -91214823930019420.126, "col10": -83897543475024225.103, "col11": "2023-11-04", "col12": "2023-02-17 02:18:52", "col13": "2022-11-25", "col14": "2023-04-16 21:00:34", "col15": null, "col16": "6hv*w,;~7ReMx-z)RyB0SncbrE_E4=ar0X(QPSxbv?v,sYR/.nsST,Lsf2lC-", "col17": "5+@eImE(-#Aq7Ti,Z7I9SmCU8jGwXs.adUs152`KV,SUN8r$A>_I(Mzpo1wyUTbQVQF+ynd*"} {"col1": -26851415, "col2": 77, "col3": 20803, "col4": 1, "col5": 8462280744723342223, "col6": 4028913701469404239, "col7": -27780.814, "col8": -1695167601.009997, "col9": -49423859244307827.797, "col10": 21504216931240673.598, "col11": "2023-01-01", "col12": "2023-06-27 05:34:56", "col13": "2023-05-01", "col14": "2022-11-26 20:17:19", "col15": ";jWy1&q3blu>6IO^dh9#B_@I.JL1FWW,Kat?I5;?foXR#s^pWy8aAQ1M=Pc+(dz&/"} {"col1": -604602583, "col2": 57, "col3": 13011, "col4": 0, "col5": -5302358667068573583, "col6": -5456138891970329645, "col7": 20375.229, "col8": 1419926154.765488, "col9": 64309450696316848.480, "col10": 30650186013769395.238, "col11": "2023-10-23", "col12": "2023-11-06 06:40:28", "col13": "2022-11-21", "col14": "2022-11-25 01:32:41", "col15": "ienLsZZoNc", "col16": "Z`7h~<62l*T,(Fum0!A=a2Dql0", "col17": "7^=JYmEr9?Js%P%1Pgiy,!l5>e-*GgFF%F#iJ/FV`0-Bjg6uR%W-LK%B2QZf*gE-(IO!p>whxfod2)eg4%/NZ4"} {"col1": 1296845509, "col2": 59, "col3": 21046, "col4": 1, "col5": 724993822370556458, "col6": 6265074313340910084, "col7": 29620.066, "col8": 1513249955.591215, "col9": -15705720077200863.493, "col10": -18756131852709044.646, "col11": "2023-05-11", "col12": "2023-08-17 11:43:03", "col13": "2023-03-17", "col14": "2023-08-17 16:03:28", "col15": "EYv*0AKQ3", "col16": "%k%,cq5^6AW4k^*D(IFeA?jMf8TZfP@AmmNj3-EVFkT>~2GHzC3=pd)R6Vu;E`0A;WrJzpo`Fv4Cqo*^^!C.($,Akh9A;+RKM^W&", "col17": "?6BBn/4tSggoWM=V`-YK=u_5*D=WP3;/G3s<6mFMa5725,9$t.!)nMta1kaI?l6t`P!+k&nKc-"} {"col1": 1787385854, "col2": -123, "col3": 29564, "col4": 1, "col5": -4220216585811082502, "col6": 4960039834428859787, "col7": -14863.338, "col8": 1683405330.677428, "col9": 57974039101802622.279, "col10": 19353920084990675.742, "col11": "2022-11-24", "col12": "2023-04-16 23:42:22", "col13": "2023-01-29", "col14": "2023-05-15 05:35:02", "col15": "O>5PB6i>NmB", "col16": "VezoSRw-mx0j6ye?a6/6pnEPl`$i#NMvQ(x+_s,ZJN9?.MK", "col17": "N%RxT2%Al_#SU<6TZK.FZa-.25+sb!hILyv?#fn^szkG=hO>G,A0`7pM/NskTuH1+E&G=K@yg;I8iUf7ONGj3"} {"col1": 181016402, "col2": -66, "col3": 30163, "col4": 1, "col5": 4495758931964433648, "col6": -8653734159677839442, "col7": 15644.355, "col8": -1356097265.535016, "col9": -89608254464744295.275, "col10": -42975241952851160.770, "col11": "2023-05-25", "col12": "2023-05-21 12:36:03", "col13": "2023-01-15", "col14": "2022-12-02 00:23:30", "col15": "IIywcqM", "col16": "T;)^_Mbku6CT1MIc0bD^#%2IaYOh@rhnrjC", "col17": "CpS3bbNX)rH#8Js5ieM<;5R?YBeE5/nUmmx7p~oY~=c/yfvRiASR*R6v"} {"col1": 1469934754, "col2": 1, "col3": 485, "col4": 0, "col5": 1224735581054006788, "col6": 6089508584939008713, "col7": 20772.271, "col8": -340537207.844391, "col9": -25669600080047259.795, "col10": 55365122064805386.858, "col11": "2023-01-02", "col12": "2022-12-30 04:14:03", "col13": "2023-05-24", "col14": "2023-03-07 14:05:07", "col15": "x4JeBv", "col16": "(o!sVg*!Z#dt0lF<*vxkfoK#1b", "col17": "D29^$!xZ)vz3.+);W", "col17": "(6t&$tmJvo`XL3s4z(t*P-~*+gau$i.NWn?VD&.`jFTF?0voTgJ)C7PgDj/_oiZw/q&A(u-9S"} {"col1": -731917057, "col2": 37, "col3": 6151, "col4": 0, "col5": 7777078010512157661, "col6": -2759816014023267952, "col7": 10645.079, "col8": 883698261.707048, "col9": -76310146256900243.312, "col10": -6973273195653891.327, "col11": "2023-06-18", "col12": "2023-10-22 04:11:48", "col13": "2023-04-26", "col14": "2023-04-25 11:45:34", "col15": "UXuOuREEJ", "col16": "l^rtqAEr4>ec.Vw;QBrajvx(?d07he1jyx-z.!(h`Ya&Zh?O", "col17": "VED-)l&4%vqo$g$hEMQZ=!"} {"col1": -951913828, "col2": -49, "col3": -19436, "col4": 0, "col5": -6614975947088839054, "col6": -2347794520629140789, "col7": 18287.795, "col8": -265026577.394333, "col9": 95136006648803303.130, "col10": 46455594961007726.578, "col11": "2023-06-25", "col12": "2023-09-08 11:02:25", "col13": "2022-12-23", "col14": "2023-07-11 20:33:27", "col15": "GD*~", "col16": "MlBbK%Y(G3,Q>8.z&KMwUHBt0p/m<6c!!xkI8L%9Pri", "col17": "h%LK"} --8368163552280161902 {"col1": 1769209089, "col2": 41, "col3": 31160, "col4": 1, "col5": -2575336798099083185, "col6": -883044937893669077, "col7": -19593.564, "col8": 732727904.190433, "col9": 24471993109695208.242, "col10": 7027799225935328.300, "col11": "2023-03-14", "col12": "2023-06-17 01:00:36", "col13": "2022-12-16", "col14": "2023-06-01 03:23:44", "col15": ")ysk+f.Rb;Mk", "col16": "rpXzdz#~NQOpWj8uq%$3Uo(7)2wSmy&XbeF~mpb80bhCN$<%UqoFQ).xInr)z1e%Wm)miFk/gPZIOC=DS=$-P-e~ZKT*Gc#n", "col17": "Zw/sJQD+!qGN&,V0gq!>&KcN-5HzygFJT(3%YCpX2p6GIkmQJK-4hkf^o^Gzo0"} {"col1": -1128656019, "col2": 38, "col3": -31755, "col4": 1, "col5": -2435632141806412164, "col6": 8136450037899463794, "col7": -459.44894, "col8": -831192457.489055, "col9": 97591785640602819.751, "col10": -62968590713393600.518, "col11": "2023-01-16", "col12": "2023-04-07 18:36:15", "col13": "2022-11-21", "col14": "2022-11-11 20:28:59", "col15": "-C?2=,2G1e^#Y", "col16": "9W$$AAoJo2lzO$@;&SOg", "col17": "BF=Zg9mC%Tk"} {"col1": 116046830, "col2": 94, "col3": -22557, "col4": 1, "col5": -1598164460844399072, "col6": -4158706534326890839, "col7": 24433.285, "col8": 2134151714.625505, "col9": 32526239216662343.382, "col10": 36428786060450888.560, "col11": "2023-05-03", "col12": "2023-07-10 18:46:30", "col13": "2023-04-22", "col14": "2022-12-11 00:40:44", "col15": "=AL", "col16": "nBEdvMoi&Ku%CS#9YR)1e)w&InunfqVq@z5%j97_AX2sH", "col17": "^3Lnzbz)b%j@!d_1I)@T;K,Qd#L)aCv*0U(Rnys3LLod%ZUxhCjt&7~gd5NW/ji+6Ay^d_b23=HfC&X0GqfS,vu#WV2/o;q1"} {"col1": -931769087, "col2": -29, "col3": 24745, "col4": 0, "col5": 3139286240265536402, "col6": 6172939574734784743, "col7": -9849.977, "col8": 144474395.964448, "col9": 74949219831536557.243, "col10": -61657785466666969.507, "col11": "2023-02-10", "col12": "2023-06-15 06:30:30", "col13": "2022-12-03", "col14": "2023-01-04 01:09:40", "col15": "MJ~0M", "col16": "7S3w*O`K", "col17": "f1<.Ruq+++&Lj1_yd)tT>PWT91>"} {"col1": 95091621, "col2": -34, "col3": -29230, "col4": 0, "col5": 2881528624934468265, "col6": 7807966468061685861, "col7": 12235.277, "col8": -952013846.37979, "col9": 8704675164427700.119, "col10": 22241492001285031.114, "col11": "2022-12-18", "col12": "2023-08-18 10:03:10", "col13": "2023-09-29", "col14": "2022-12-06 07:47:44", "col15": "cb-fe=HQ2", "col16": "ODws3EY*izfCOE90(2iFs7^BdkVssW7cg/k#pQQk1u,cOMReo/fn7@MJ&unJK5OI=>QVS(.7.JQmm3Ue61_WTcqwU@t<@r5qj,TJ2?L", "col17": "CpZMP1~/4GLggIi95mY%IiBHMb+iZK/3&J2+135ostS!jE,cpgIt3FGZ=!=b2ua=,wi+l.7#VU4(aUrSu^-y~T$l1eEi.b,S9Na&vIC)9E=P_mrOw_J$I;Ss?5h"} {"col1": 549081643, "col2": -89, "col3": -18860, "col4": 0, "col5": 2268837686650169392, "col6": -3564791349665118608, "col7": 5688.7407, "col8": 299803683.69027, "col9": 92982331476439301.594, "col10": -93330243753042154.201, "col11": "2023-06-05", "col12": "2023-10-08 21:25:31", "col13": "2023-02-20", "col14": "2023-05-03 02:23:37", "col15": "d=GDd,", "col16": "-hCK9Q%sfXLRfN35e1W`WAWi(A3s!+;wwL(hRvzT~Ipp`jAY%q8o-z(ueZptTS,Ua9?gt^y9Z8yQK=h#44s", "col17": "Up4HiD^Brz.),~KbbW"} {"col1": -1783476026, "col2": -48, "col3": -17310, "col4": 0, "col5": -7963598298499820103, "col6": 4904571652507647260, "col7": -10607.233, "col8": -1974193014.984611, "col9": -42459355958681098.454, "col10": -18238483948356281.750, "col11": "2023-08-30", "col12": "2023-05-06 07:37:46", "col13": "2023-02-08", "col14": "2023-09-27 21:55:52", "col15": "A,blh00/y,", "col16": "iOn`m", "col17": "9+5KWeLDsbd/&Uq+1-Ehvu2^S-RxzF>sTzA)dO76#CJ+q0b_W3%Vz8t(xi9$Pzr7XGmRC3qTg!qQf&`%Dd@I()5gfj9^+j_0AgHM?!I()c=li^>"} {"col1": -496454371, "col2": 121, "col3": -32536, "col4": 1, "col5": 5109585439962885589, "col6": -7561145607543036624, "col7": -1663.4861, "col8": -956519190.050091, "col9": -10288691912800152.494, "col10": 29496554612133109.983, "col11": "2023-08-28", "col12": "2023-08-31 09:50:56", "col13": "2023-03-24", "col14": "2023-03-19 20:42:21", "col15": "%+.U&gn<1ZU>Mf", "col16": "=Y$EVG,h-h23^r", "col17": "NR.ZpMOo%1E?"} {"col1": 1238201496, "col2": -10, "col3": 31686, "col4": 1, "col5": 1122137690708375175, "col6": 3751166452543437548, "col7": -15929.366, "col8": -209845314.081667, "col9": 82928606746951351.951, "col10": -24921390371752053.504, "col11": "2023-04-16", "col12": "2023-03-20 23:55:33", "col13": "2023-10-31", "col14": "2023-02-09 06:24:56", "col15": "I-", "col16": "J3iltfk&9#5Qc~44Xu@_f?^u;(7J", "col17": "J,>9sWD,HEb+f)sMZy,=e?YLj#W)CQw&Tryuy?2q!C&2;cNp4j3~95VzfeI9QTh*o~=y?!D0Md#6G;1g2$8Q3j5Eq%"} {"col1": -2126172544, "col2": -43, "col3": -30224, "col4": 1, "col5": 4477399578851748461, "col6": -8164663132923309779, "col7": 4598.504, "col8": -2145707155.719386, "col9": -16186361543705830.429, "col10": -70898288416135568.483, "col11": "2022-12-22", "col12": "2022-12-05 11:00:58", "col13": "2023-07-10", "col14": "2023-03-03 03:45:05", "col15": "v++#N", "col16": "jB/H(1KjyS,Y2-f`64cMz>$24^IOxrk~%", "col17": "DH3k3igl~`7pO`wlSAWbcAW&n^d#jy;6RME&e$6^bc/Sl(;kcBgpWt(17t/Q7%AP5l@MQm8BK8Saq=dqtSl#89iEyJF=5d4eQ*5,7RX!MW(O&4V5.ra&`wwkhoT"} --8130752084420850754 {"col1": -630784508, "col2": -107, "col3": -22332, "col4": 1, "col5": 2526767180146544499, "col6": 3669637146075805854, "col7": -2381.3687, "col8": 75875226.650256, "col9": -16215099298195794.320, "col10": -33531867113672142.943, "col11": "2023-10-15", "col12": "2022-12-26 23:51:13", "col13": "2023-10-01", "col14": "2023-07-14 10:34:13", "col15": "Y", "col16": "3/j4pBCb;)0fp(F45MD7@FNT=R1kj93(_4_wA5)vOYD!W#6LWF8", "col17": "&lOgTZ!dZ^,iG>4Ps!-)S+KQIOSClIaQYS$N@ei~(rVZwKb*7?Qzomi&K8GfdD1-hs1S"} {"col1": -520495782, "col2": -18, "col3": -10052, "col4": 1, "col5": -5500653227385262734, "col6": 2071128999812670433, "col7": -1284.549, "col8": -1758340715.165546, "col9": -40984045024860021.904, "col10": -69726335010103532.380, "col11": "2023-09-26", "col12": "2023-02-20 13:33:55", "col13": "2022-11-17", "col14": "2022-11-14 20:14:11", "col15": "tA&/#h_LkO", "col16": "*4WJcDm&K370&0pg7#s).g=_BsN9(fU3npbI0/!x,WIAg3;SqALl^~7Rx?", "col17": "ku^@V1&/5o/C@m1*?33C9-wNN?UQ+ax`g&UYfdlr+m)6v"} {"col1": -254305488, "col2": -32, "col3": -23700, "col4": 1, "col5": -6047527938938229808, "col6": -8390007357285860601, "col7": -4994.1514, "col8": -1938449016.468337, "col9": 34009355692319729.341, "col10": -49705304084897838.366, "col11": "2023-06-07", "col12": "2023-10-19 02:54:45", "col13": "2023-10-08", "col14": "2023-06-23 15:47:35", "col15": "L+L", "col16": "Zt)P", "col17": "fqxwKRGS,E8oDUevQ!TRV-a12"} {"col1": 1320721215, "col2": 91, "col3": -14366, "col4": 1, "col5": -4901320206869872612, "col6": -6734233068323413885, "col7": 3092.9668, "col8": -2128909677.420208, "col9": 91585706825195524.237, "col10": -18583607961702373.593, "col11": "2023-06-08", "col12": "2023-08-08 09:11:42", "col13": "2023-01-29", "col14": "2023-04-01 20:42:08", "col15": "R*%oyx", "col16": "+aq(16wM3z_Gbqra)J8j.T_drPtA_sN.vnF2-&JKv`PtifOZ..`zm6wP", "col17": "5,~$Gt=a&1wHdruBM),mb!a;~UdshW)Nd*-+nSShC(0MX0CynnazHS4U*ng#,<&Ys,B/Xb=?;.Zm/1./xOgBa"} {"col1": 81795598, "col2": 24, "col3": 28966, "col4": 1, "col5": 394278581012445475, "col6": 8538625659064010725, "col7": 3152.8525, "col8": -582541726.405779, "col9": 74628837758040294.322, "col10": 70855409169031646.167, "col11": "2023-06-25", "col12": "2022-11-20 10:41:56", "col13": "2023-03-21", "col14": "2023-10-19 06:51:35", "col15": "8zN?XTqrRsgWSTE-hq2gietM!", "col17": "VkB&g~;#eP)mzBF#6Y(3_wO+gRlSCvb_oH4IzGQtrF-LJVrE/^FPdN@ACS?o7Iz~+8/41D&rV&`"} {"col1": 1584719334, "col2": -122, "col3": -18196, "col4": 1, "col5": -3719741203767950872, "col6": 8275693320339631705, "col7": -21392.152, "col8": 84254794.270132, "col9": -88846332068119370.580, "col10": -64509349060859205.997, "col11": "2023-02-27", "col12": "2023-10-22 15:43:08", "col13": "2023-11-10", "col14": "2023-04-27 15:46:11", "col15": null, "col16": "jX5hB0vr%uqgmVY,_+ckuo_@<@N>rjV<%ow&J4QU?*U06h~r@kT@HB,b0fXU*#fyW.>6iiL!o^u*Xk;V0>dNuCul/gAlq?&O^/%q4?3`^Ku;"} {"col1": -1929296815, "col2": -14, "col3": -29091, "col4": 1, "col5": 2209692967284329947, "col6": -4467649585163870281, "col7": -28066.814, "col8": -1125999447.229004, "col9": -22573967746140374.696, "col10": -77244170296332062.250, "col11": "2023-03-31", "col12": "2023-10-13 17:39:26", "col13": "2023-04-29", "col14": "2023-02-20 15:16:10", "col15": "?`!+Ichf,4w;", "col16": "18O.M!HtHcPtwhzY*_JgpBqBwGX_PfEbo;AZ?H3xh~m&4ssjAQfi$c%H>hse0zz`Rej$GM4mKAsHub;X+PooPp1x&WDwKVQ>eI1", "col17": "$hJo#yv`YGqSzy7esvlz2mTr9g#,RXfBE-;ga.WmS?JIr==kx4eam`y8Xnj/!U;I$fOrK2,W>PDAEJkaZ35LM9hhWHAx6mm(uq2J"} {"col1": 419519048, "col2": 50, "col3": 28572, "col4": 0, "col5": 5109939873256684424, "col6": -5732498347084127922, "col7": -32468.19, "col8": -1737443888.096589, "col9": 73968231814261632.732, "col10": 43931705735412210.900, "col11": "2023-01-27", "col12": "2023-07-20 19:48:07", "col13": "2023-10-11", "col14": "2023-10-12 11:52:25", "col15": "_h%", "col16": "LE3vk3YdPS<%a@h,YBI&^lyt.+W,", "col17": "CA,wAaQsoJ3(USyxwejK43Qn0lazs5W&r-2N8Sp~(T0x7piIcs/4R&HXws>v((jTF_3a"} {"col1": -1581073211, "col2": -69, "col3": -26033, "col4": 0, "col5": -804312312636283370, "col6": -6625806106514412241, "col7": -29053.072, "col8": -1698261199.931556, "col9": 76451253322373236.900, "col10": 11769426737212010.997, "col11": "2023-07-27", "col12": "2023-08-24 17:29:23", "col13": "2023-03-14", "col14": "2023-05-15 10:54:11", "col15": "?*GQsppENz", "col16": "aaW4;dDES2~8!eT0$TM+=23", "col17": "u*n7(_rGh#5F&)yMsXd.nRd6~No2,+UsWc?;y+;)x(uqQA7*x4)rew#6U9yI^&!UAK32hbGSl=;gF4,k`eU7(aXaw8Q2j_#&3i&<>NAJYF"} {"col1": 1428826758, "col2": -33, "col3": -28399, "col4": 1, "col5": -6469244622958594179, "col6": 8335848240829608549, "col7": 1618.6619, "col8": -1903223955.308646, "col9": 93206268136712031.791, "col10": 89306733804707873.770, "col11": "2023-08-31", "col12": "2023-09-04 12:06:05", "col13": "2023-05-04", "col14": "2023-02-07 02:04:35", "col15": "!YW", "col16": "/", "col17": "(6m.hGHHlnXdK_`ZZ)YcreXek%Ytz)l=g*Ps)oQtGsF0_y17ZWLb?P,gsyU"} {"col1": -1069306143, "col2": -4, "col3": -8547, "col4": 0, "col5": -1383569491875123898, "col6": -8034778851940663966, "col7": -27188.469, "col8": 1926605339.570438, "col9": 46458896379925035.526, "col10": -94635160698411887.823, "col11": "2023-02-22", "col12": "2023-01-07 15:18:48", "col13": "2023-08-08", "col14": "2023-11-06 22:37:56", "col15": "p$BN", "col16": "!;Dy4P$X7F", "col17": "_KKaRhOuw;s,J$nS6oDa96EaYOry<@mBk_.B,_K-ckvEf8lQAjHh6j.J", "col16": ",J.~MKo4)2pg/R23DVNA=7Tf)J*Sg-s", "col17": "tq&IP/6U)Cxr%D20@z+kgOn>QZLNEL3rM4a`Yy^~sKbb-++RSmR$TZ&+s4y,el=.yCT>B96adZW"} {"col1": 985501155, "col2": -24, "col3": 21311, "col4": 0, "col5": 5527964666005317471, "col6": 6946948188736388580, "col7": -8703.959, "col8": -103891562.352326, "col9": -72256959944011241.745, "col10": -15805720823720834.900, "col11": "2022-11-11", "col12": "2023-06-25 00:53:52", "col13": "2023-04-03", "col14": "2023-09-27 16:58:07", "col15": null, "col16": "4lu5D#+1Z&7@8R1q", "col17": "cyNXc*5#q!p$", "col17": "Ky"} {"col1": 1596224467, "col2": 106, "col3": 9539, "col4": 0, "col5": -809051164961171210, "col6": 6250982782242314377, "col7": -26671.64, "col8": 56606733.145908, "col9": -80540802744766207.953, "col10": 77085717692287751.994, "col11": "2023-02-11", "col12": "2023-04-13 15:33:02", "col13": "2023-06-12", "col14": "2023-07-03 11:55:11", "col15": "3_", "col16": "tE9nr=yFH~l?QxREEq@#4NdI7AbN%jb-*uF<4l/jDiFl7%Hw3Ho>n/C%Wn;XQA-pUiNGUo6$84+MKhB#WZkimtAej"} {"col1": -1218975697, "col2": -70, "col3": 32402, "col4": 0, "col5": -5168465205297713683, "col6": -42506747499361319, "col7": 11149.558, "col8": -124984675.779518, "col9": -82155323751512945.216, "col10": -89459933378296748.604, "col11": "2023-01-09", "col12": "2023-04-16 20:26:33", "col13": "2023-01-19", "col14": "2023-03-31 10:02:16", "col15": "R-qvD+", "col16": "62H?H_R;SrrD5?a0LNWH~(5xwLE9=aXt", "col17": "QIqR?RRBaZ=.0EF3$p>_hD2_l)R%G^jvH`;gSz?*W@p,)>ddPiKr;o9)#45Us+j1;KXqqw?)$9XPBYjIQ-<(qcTdu>H)eN5?0oMzM)A%toAOGK$+6!``", "col16": "Rq`)B_wCqr~3D", "col17": ".-G1FfO_&y6ciUgItDFzp3^xj2wT)3,3YL"} {"col1": 949190741, "col2": -109, "col3": 23132, "col4": 0, "col5": -8107750618520010248, "col6": -6431170840840398337, "col7": -31010.111, "col8": 19577291.956868, "col9": -42853285297909894.649, "col10": -69573641063301319.816, "col11": "2023-10-25", "col12": "2023-05-21 17:21:28", "col13": "2023-10-10", "col14": "2022-12-31 16:39:27", "col15": null, "col16": "Y;VSV@?j+eHK0~CFokCe*r.$gq*^sqPIxHI", "col17": ",f>E=XC%CFYUP7&tvYjb%LJu#GDnMQP5.~)SQH0P-D;yaR5DiVr%<5ouv$YkhXeLAR@Ym1!vkwTZ2,8bUERr?MuA"} {"col1": 1527563124, "col2": 9, "col3": -25868, "col4": 1, "col5": -8331595583387132313, "col6": -6031385467825388820, "col7": 17599.04, "col8": -1485375156.20568, "col9": -16742871194598893.775, "col10": 66735741323698862.142, "col11": "2023-04-27", "col12": "2023-01-19 11:37:46", "col13": "2023-03-29", "col14": "2023-08-27 01:48:45", "col15": "RCFOt+1", "col16": "%2~aM)waci$;?$Y~?hdzsOQTTP+Zq2lipeXn#QC*u1@QX62!5-A7727V3LQ+", "col17": "70#?^Ow/rdFvrFFVDP@NtWebpxm;jgcl8#0QEyC`7v0rh<~2h@ofB$Fue"} {"col1": 2018260508, "col2": -103, "col3": -24472, "col4": 0, "col5": 8997678386359787116, "col6": 2451818178827354507, "col7": 4805.7744, "col8": -839371064.997656, "col9": -2820518180207585.420, "col10": -27518074549067322.799, "col11": "2023-04-01", "col12": "2023-01-20 23:26:49", "col13": "2023-10-20", "col14": "2023-08-25 00:04:01", "col15": "8iYzEiw7AMOd5", "col16": "0@P#6", "col17": "BdWm*QfNDS2ty?^cxcNgHxDda3rHiFvXbHrs;L"} {"col1": -1482004443, "col2": 102, "col3": -12999, "col4": 1, "col5": -6961079697649502866, "col6": 5857042070324174976, "col7": 14277.545, "col8": -1583282209.721317, "col9": -78563765934769168.374, "col10": 59319192883565341.984, "col11": "2022-12-24", "col12": "2023-07-26 04:50:03", "col13": "2023-09-07", "col14": "2023-01-10 21:29:43", "col15": "VaJH/X*K/D+w", "col16": "h49&Y9FGYt&D6Aig^lqbP)c+qDpi>R#$OlL6,gqY,", "col17": "&m+v03q6D@;Z9te5S)o8@h/2cGZ=Cpy*G6h8VOK9wSgH_(82bI~N96CfoepoO0`t`Rh_~BIPuq76R8ezFW>;z"} {"col1": 652276964, "col2": -54, "col3": -19502, "col4": 0, "col5": -2722052385324355445, "col6": -2372892998911631963, "col7": 17475.604, "col8": -1783374012.97851, "col9": 43667004322191647.526, "col10": 75072779420286165.380, "col11": "2023-03-15", "col12": "2023-10-09 08:54:52", "col13": "2022-12-15", "col14": "2023-09-04 07:53:29", "col15": "i,i~yA;2Zl9P7*", "col16": "7E1;FbW9.LRT1yBl>#", "col17": "AN@^I?9/?l/GllxiB)^&k*y/Hy,Epewpdy-mL~#Bh4*?NQ+S~y,X2rI9+$ws8l_./&ESS/&;ANFrN&DZT@"} {"col1": -627269573, "col2": 23, "col3": -8953, "col4": 1, "col5": -8611933685663538328, "col6": -8745338265499505032, "col7": 28135.436, "col8": 2058707064.219137, "col9": -19839219197164786.827, "col10": 55688732490232678.640, "col11": "2023-05-11", "col12": "2023-05-26 09:59:24", "col13": "2023-01-07", "col14": "2023-01-16 16:52:43", "col15": "pz7^U", "col16": "0ji0UC6", "col17": "&(?Ko0h^g,FULq(8DcTPXxO@`"} {"col1": -1974740230, "col2": 34, "col3": 22263, "col4": 1, "col5": -5083433021044869188, "col6": -6379889206909365694, "col7": -24358.887, "col8": -1581447038.60196, "col9": 1659553167832696.312, "col10": -74926401344917067.130, "col11": "2023-02-01", "col12": "2023-05-03 07:39:31", "col13": "2023-08-15", "col14": "2023-06-28 17:49:47", "col15": "?ckjkT$l,Ce", "col16": "Q85oUjT9DK=u1+sL#(e7DK(L3uSUNcHEbrjO>poN~U1V%HCndj`&GVPE1MvSnKyM0+rOlBcXzdRkrM#x8q$i-Vb#n@pVB4S", "col17": "=^^G7T07*EQfcOn6FhSzr=$X*!jPo5fP!uTLyQ@cZF).pS`^_rW9=&9hVOYifYjg"} +-9052855404401710281 {"col1":261079681, "col2":93, "col3":20178, "col4":1, "col5":2163705202391578899, "col6":-2190600110707822922, "col7":-7382.004, "col8":-1200294565.951719, "col9":-91960534868632856.281, "col10":-89949948257620846.844, "col11":"2022-12-18", "col12":"2022-12-04 16:19:09", "col13":"2023-10-03", "col14":"2023-10-18 20:19:55", "col15":"@i*~Y^&~Nw", "col16":"I&*/wB(4Ke-", "col17":"LTl)O&FsU0<4mq5_a!VkB(dy"} {"col1":293498095, "col2":-121, "col3":-25965, "col4":0, "col5":-3576656064125326132, "col6":-5657804083675264268, "col7":-30704.178, "col8":-904104728.103341, "col9":-3159432710175410.370, "col10":-45496500895008845.756, "col11":"2022-12-08", "col12":"2022-11-19 03:19:20", "col13":"2023-04-19", "col14":"2023-10-01 09:10:42", "col15":"M1/gn^", "col16":"3e3^nd>C*R&P-K`Q(/l#S@p#~VG6N8bakqb!6JOCPi>OKf@FyVx2v!E_GzXS&iI_rvtU3@nH~~jWu6@%4>", "col17":"ECpA8MXR9"} {"col1":1891310032, "col2":-26, "col3":26695, "col4":0, "col5":-374125000529149443, "col6":2171945590552452381, "col7":1041.4928, "col8":1273785834.848136, "col9":97681462870233953.548, "col10":80612975133223453.920, "col11":"2023-03-28", "col12":"2023-09-23 19:05:17", "col13":"2023-01-08", "col14":"2023-04-22 18:50:43", "col15":"EC><,k", "col16":"UuW2bFgOk", "col17":".yuEbs~=_md6Q=p_rC#4rM5Fv>2;)`1?vo@o*OHlmw%w1yqWi&8heNZ?~8!C0qL"} {"col1":-741198949, "col2":-125, "col3":-19192, "col4":1, "col5":5676011356690276916, "col6":-7208944717181851294, "col7":-16968.037, "col8":-172360599.036606, "col9":11062817494936380.754, "col10":-20473655271393218.620, "col11":"2023-01-05", "col12":"2023-06-05 05:32:43", "col13":"2023-09-25", "col14":"2022-12-11 18:46:30", "col15":"uo*`,0x4WusV8", "col16":"YBjQda$7u07noHXpbBeAqy^0Z~K5eC*l7NE8r`O^-*K3H(Q3c1i1R%FZTC-#ol`8`.uTDxsBrtnv~^41TTL,f-#Nx=fx1)U3#;9K=osN(BCPa/VJP^yb=x-wC", "col17":"$Uo7qZ)*QOk#*nXua`~=qi4*+F-DcC+~)8y#C6+UzS;8wr%?omo(XHQ9$C;A)a1Aw%T", "col17":"hv6lk51=2%oZ~k?s?jbdcE92t;q^*11S5Gni&", "col17":"h%EzOW5YYzGlD+#n8sn"} {"col1":20035609, "col2":3, "col3":15349, "col4":0, "col5":-822097466612981862, "col6":-8411765013373638349, "col7":31527.754, "col8":-563702334.28447, "col9":-73307201008760924.624, "col10":41041091789555799.240, "col11":"2022-11-28", "col12":"2023-06-13 08:38:26", "col13":"2023-09-11", "col14":"2023-02-24 05:04:10", "col15":"k<,$", "col16":"8KGA*R`O`xc4ahsU,OfQF8U+L-MYW81RD@q_vBkcCAU=~)%kzq>I419e", "col17":">hq0RmfoN8GY1KhcX%8kSVgNepBIx=64zIC5w1cd2)@HTg"} {"col1":681801015, "col2":33, "col3":-3520, "col4":1, "col5":7366609877737053742, "col6":-3161246756640427052, "col7":-30325.709, "col8":305541624.015199, "col9":-68808724306427475.611, "col10":-27445248172763847.371, "col11":"2023-01-23", "col12":"2023-09-01 22:06:09", "col13":"2022-12-04", "col14":"2023-08-31 22:26:56", "col15":"9~jInZTijOl/T", "col16":"t,BiuEz/IOh;/5Hgs^*toL%e-"} {"col1":-763764922, "col2":43, "col3":-23399, "col4":1, "col5":783989712103186350, "col6":4083110528859476183, "col7":23241.365, "col8":1995148265.406853, "col9":96770525970445251.550, "col10":-85979799906620535.713, "col11":"2023-09-25", "col12":"2023-06-07 09:35:00", "col13":"2023-07-19", "col14":"2023-02-04 03:54:25", "col15":"Z~$?K=)T", "col16":"%0Z7_jKvdtrLWiMO2&Q$>Jo<5zh`.sd0(YWT.~Q`-B/q7,up>lw5PAA+B?h~PAfqH1d", "col17":"^*Zk4=6jLr?;fmtbcE/?y5s$*_-bmXh#H_LT>ua>2H&Bv%#e7lKc@k-;^Aa7ukG/VI6TR227%h?LT+(_v", "col17":"6TIVHg^HUKpnL(vb%EUwGhk3;)"} {"col1":1370312656, "col2":41, "col3":18715, "col4":0, "col5":-3758233030181962206, "col6":-8987717996655162408, "col7":-31457.508, "col8":-1708794275.366794, "col9":-94588829972275923.445, "col10":3986165881623729.357, "col11":"2023-08-11", "col12":"2023-07-25 18:20:01", "col13":"2023-02-26", "col14":"2023-08-06 11:27:49", "col15":"@DS1", "col16":"T?bB7tU", "col17":"IiQ@J6tX~sm^jG.r&swNrVk1-2ONnvC5Ig(XkMI)X%@DxZbPkLG<84l_F0*kDbpId.dd@d%Tqv"} {"col1":-1169184786, "col2":71, "col3":31927, "col4":1, "col5":8390345726239927198, "col6":-7481515861580930114, "col7":-11882.879, "col8":1647353218.839473, "col9":-83496988101917566.310, "col10":8002364419087947.937, "col11":"2023-04-16", "col12":"2023-09-18 23:39:33", "col13":"2023-11-07", "col14":"2023-10-27 03:02:59", "col15":"=P", "col16":"62_"} {"col1":-1095228497, "col2":-62, "col3":-14579, "col4":1, "col5":8678662247688949464, "col6":2327812601777741478, "col7":-18123.812, "col8":1567963893.234542, "col9":9922994714498675.274, "col10":23455293548273884.488, "col11":"2023-02-23", "col12":"2023-01-05 12:37:47", "col13":"2022-11-13", "col14":"2023-07-28 23:53:46", "col15":"r1(NqlNf", "col16":"T1xKVofKWBof,<%7t>C;wtY<>3mbn/epHN2=GxB+(/*nt3YK7TLM,I14_bD@ZXu-2zy#l0j", "col17":"i~kdqVPVc+;_oW?-LRLh;FnQfLL?ieRtZ$WJm?blsQn32p6O@$J%cjb%nZTC.6m>w;UI<%)EB+n"} {"col1":577259683, "col2":18, "col3":-13537, "col4":0, "col5":5778440245350381673, "col6":1729667696812540134, "col7":-29986.787, "col8":462696869.740925, "col9":-64242297078135876.710, "col10":-34110060920083841.600, "col11":"2022-12-13", "col12":"2022-11-11 00:41:32", "col13":"2023-04-20", "col14":"2023-10-19 18:35:25", "col15":"k)W4Wbt8", "col16":"F<0)FFx0Ay&wdY%rRE#>t4QOL(pTd^BOW8@~KBXCvXgQ@20mrzFPd", "col17":"-WOU+(8-*I<*-F;U.4MF&Y>n*xNAbLHf/l9K_BjIdK;0T-&J0$DumP_scfWr!tpPd@g=/fyD;C7vV8&j>F/AC^r5^,t+pid@P)&^=&?g`?*iJzsx4k=<<;aqi@a%f"} {"col1":358052123, "col2":-20, "col3":-995, "col4":1, "col5":8462498483626768535, "col6":-4579777337458835014, "col7":5497.2812, "col8":-1675121192.209081, "col9":-55228000464087729.376, "col10":54075338566731730.689, "col11":"2023-05-09", "col12":"2023-08-19 11:53:12", "col13":"2023-01-30", "col14":"2023-06-08 14:32:40", "col15":"z$8+gBbZ", "col16":"0;^hCNKLqx=)", "col17":"QH=1=ezdz`3u@IwXC~q.Hjo5Tch6LPfj_$nX>*saEQU.Oz(cL.rR*iuahbYnb*0C4*G0``Q^Nd0RPP$vhA&95q)X<(a.PfZ,H>GHG=LjhC9G.-8!X", "col17":",DvFSRv&Ez!GJrEo1/;Nr,*Qm*_eV7S(CesYSTt3v_w>NRew~3h(IrQQ"} {"col1":196725014, "col2":-24, "col3":-13427, "col4":0, "col5":-7375318581248960057, "col6":-2543965274523748861, "col7":5780.991, "col8":-694770524.546083, "col9":-76123002210744723.992, "col10":-47697265631521692.335, "col11":"2023-04-24", "col12":"2023-01-08 11:35:37", "col13":"2022-11-13", "col14":"2022-12-03 12:55:19", "col15":"0KC+u_$>", "col16":"i@-@ASL*~~/iY)1+$rL)*DEk<Z%kd&Gc,s9FlWo!42P.yo_VO*Xewr$C@b?b8;/f-_7G=w^OX$m5#6*", "col17":"P+dMU%2GvWo=*+_U$#N871~QZ@pzc,~lLCYiY)~k"} {"col1":-688049528, "col2":-35, "col3":4321, "col4":0, "col5":7245845458805220394, "col6":3912116986726525719, "col7":10877.681, "col8":-87511596.70815, "col9":27431649310089463.872, "col10":53000349361497028.867, "col11":"2022-12-14", "col12":"2023-09-10 09:56:23", "col13":"2023-04-04", "col14":"2023-01-17 18:35:42", "col15":null, "col16":"%fS1#RR47;vSRM%nZorS5_/xpu.@SM.~5klrRc)^e;dFK@N-bkA$(NAX&-0Vu1LrvZ.cBjSFfYwOKQy6C!qVPw;arKX&W>p/w-P-*ZxmrLy", "col17":"o7(4@cOp3=~p%l7+23)~Jf5vb$t@yCV@CfjrxEvB`iJT0q;-)XCuX#h/6dAOP$%0fH0deJ8%DNNeH$XZ^C!Q="} {"col1":-1474368615, "col2":-21, "col3":5177, "col4":1, "col5":8174349037021096782, "col6":2571804249862798292, "col7":9933.032, "col8":-720750366.940295, "col9":-8590320354503227.221, "col10":-94099543687278644.814, "col11":"2023-03-03", "col12":"2023-07-11 13:00:08", "col13":"2023-03-29", "col14":"2023-01-22 03:42:30", "col15":"9gn!5C!BvEP", "col16":"X)1XT$`l2Lkr93E&?A?GWlurNp//;jSuTw>l6!?", "col17":"+<2ZMd=Xd0Q<2KT.%!K.Suj45?_lTHL3LptTpI^+(Kr8P6wx&(s8&"} {"col1":-1693846609, "col2":-73, "col3":9118, "col4":0, "col5":-2985094276774224395, "col6":8805992256826989074, "col7":6244.1, "col8":1813143653.166, "col9":-62764692014561863.442, "col10":-38325067730370117.681, "col11":"2023-09-07", "col12":"2023-01-28 12:49:35", "col13":"2023-04-18", "col14":"2023-01-17 20:14:35", "col15":"d65uY.r", "col16":")A>je?_.Gt<;n`w51eCBOWT-kR`1ASIA", "col17":"hQWT,ge>KGm#zleH67$,`Px&A`N*kPk.ZqkO!4SG~-x/9~x*+tmgjmK", "col17":"M=_wY3E`(,i21pX2tO=f;oHS6n5,1@LU+iPFypM2zE(+(>k6XxzUqU*OTtx#!P5k++x@p60GAA>D0deaeDV$@N0R5"} {"col1":519727040, "col2":80, "col3":14429, "col4":0, "col5":-617879460517437411, "col6":-7165327641490392420, "col7":-13084.128, "col8":1970316910.765143, "col9":-93976002804076259.534, "col10":-32558524385546329.363, "col11":"2022-11-13", "col12":"2023-02-16 09:07:20", "col13":"2023-07-28", "col14":"2023-01-08 22:38:58", "col15":"XsBMIBa^FI!d!", "col16":"pePuy7bPN&=l)?;@l6NJ7/V0Ukt1ubtmZMI$(d;ozN3!>1x2DDo>MRifl;4T8d`2_7R76B9&lePU^UK#$M`&ySGkb;)!x", "col17":"qY/@=?,a0!5EDHD"} {"col1":564937758, "col2":-10, "col3":-19719, "col4":1, "col5":6205568508580489074, "col6":-238554161903590528, "col7":-8137.3535, "col8":1023623642.337226, "col9":-2362569962650581.821, "col10":-68775335337492456.403, "col11":"2023-08-28", "col12":"2022-12-13 09:02:24", "col13":"2022-12-14", "col14":"2023-10-02 15:42:07", "col15":null, "col16":"B)a?p0>L8kL", "col17":"zvS`nT$&kYjuqvx6SM0>h*lkl^`~s$^LmTQN~*B^qdyQF^`Ofh~L.GJ5@Bvc%X>akZfc$9Xeabk1FOw1fJI@9-U-V"} {"col1":1914314437, "col2":14, "col3":-3885, "col4":0, "col5":5289140208274800927, "col6":5523134939016922802, "col7":-16044.735, "col8":-531461112.058018, "col9":20859664695767945.768, "col10":-95844141490303829.980, "col11":"2023-05-12", "col12":"2023-08-10 20:49:23", "col13":"2023-03-12", "col14":"2023-04-03 10:12:58", "col15":"THW", "col16":"0L35Dot/95xSb1igaBQY#jCm&q%c/MQ(2(0-sufN>BmBlt-`^L4rN2hH6D&Xy1Z8kY$>t5Z(,h1i4l2gU8e", "col17":"w`)of^9_@N=DZsU##xMKBfYAdm`fd=7V"} {"col1":-1700382114, "col2":115, "col3":-6204, "col4":1, "col5":-4126342125777344756, "col6":9054982454557719308, "col7":-19103.875, "col8":2031018782.572868, "col9":-83553942298914702.482, "col10":58591672291818154.504, "col11":"2022-12-12", "col12":"2023-09-28 14:22:44", "col13":"2023-03-03", "col14":"2023-06-25 13:19:15", "col15":"BV", "col16":")jJv", "col17":"EL_I^2A-KD9P^n0VGfY.DapPaHP4b=3QCZXQ0-zW@Nl$KVatwNIEs.fwG07haAK-w8kg>QA9*Q&Cq=rd5J=iOj,4b6T`YNn$!ToQlF/R-8~9-sE?mcNekAWsxWhyy="} {"col1":1976188027, "col2":39, "col3":-20199, "col4":1, "col5":54838796530721045, "col6":-4199157709856370965, "col7":-20633.107, "col8":-1314405206.528385, "col9":-17838244458606850.919, "col10":13993039380882130.769, "col11":"2023-04-28", "col12":"2023-07-21 06:48:51", "col13":"2022-11-14", "col14":"2023-05-29 15:07:03", "col15":"Z", "col16":null, "col17":"aMm_kYB`6gpU2h;uD&8/kw3X"} {"col1":-439380020, "col2":96, "col3":-17308, "col4":0, "col5":3579043460080517561, "col6":4240896818074065205, "col7":12152.55, "col8":1198053802.322113, "col9":2562915342156503.474, "col10":7583328329290118.446, "col11":"2023-03-31", "col12":"2023-04-17 02:55:52", "col13":"2023-03-19", "col14":"2023-03-29 13:17:27", "col15":"0&P0_,,9I&dn", "col16":"HTtzP,7Ob", "col17":">!M"} {"col1":-457160013, "col2":-87, "col3":-32076, "col4":0, "col5":2962490776305786988, "col6":-9219898190360409591, "col7":4773.356, "col8":124168385.283727, "col9":66564244852109284.538, "col10":-17698570145691684.721, "col11":"2023-09-09", "col12":"2023-05-12 14:33:56", "col13":"2023-05-19", "col14":"2023-08-07 19:17:09", "col15":null, "col16":"nsqUTDXMfOqg!S7C97`49QcZ4Os0TI?g6E2#J/(fV>(*X_Q`(6Znf?h$PS4u8NFcB49IFq/mgNAJX~p-C~4.", "col17":"0mntxHvG8zY_", "col16":"ca", "col17":"v.@WpiI1+`>Bj#II4"} {"col1":-1135173592, "col2":-24, "col3":12059, "col4":1, "col5":-4173609755187683516, "col6":9104229668324434517, "col7":-18978.926, "col8":1538129083.152786, "col9":49186343729636745.231, "col10":-7234568807819447.144, "col11":"2023-06-14", "col12":"2023-11-09 00:22:59", "col13":"2023-01-15", "col14":"2023-07-14 13:08:52", "col15":"(~twE21C", "col16":"o?XB9l_e*+?3UZH_qGT7/r7F4~rr1$k%;eaEMa?r4@P@jk)6P>XxpFY2(q9iiV~fm7eEP5oN<#zlsw~wji"} {"col1":441268110, "col2":102, "col3":13250, "col4":1, "col5":8597594907679023161, "col6":5667613937641491367, "col7":29102.045, "col8":-319989982.17985, "col9":-81087716870785483.143, "col10":-64800115883130558.550, "col11":"2023-06-02", "col12":"2023-10-04 21:25:45", "col13":"2023-03-03", "col14":"2023-09-23 07:27:31", "col15":"G-48d", "col16":")EWS(!Qtciw`^3x;+Gu,Qr", "col16":"tuV0Ia95UN4WJ,d>U,gXIq+AB&FWl@+ZIZ7n1(t.!rozlH3)L$I", "col17":";rwx#I@!I9>KNEo-e3~u2!Z7"} {"col1":1972978288, "col2":-50, "col3":-6168, "col4":0, "col5":-4179719101679261778, "col6":-5658599518714090609, "col7":28802.623, "col8":246142051.324034, "col9":-36754206589235888.236, "col10":-89884930143982612.342, "col11":"2023-01-05", "col12":"2023-03-15 03:20:04", "col13":"2023-09-07", "col14":"2022-12-27 21:53:40", "col15":"id>=nmLO", "col16":"q)ImOZMO-%"} {"col1":-857517907, "col2":-13, "col3":-26169, "col4":0, "col5":1324801886191525419, "col6":-633990266050297169, "col7":3735.309, "col8":789053200.026963, "col9":-57720955152670311.476, "col10":-8743840658043643.960, "col11":"2023-07-31", "col12":"2023-09-06 17:05:54", "col13":"2023-06-08", "col14":"2023-03-14 17:52:11", "col15":">rSQBh-<9$q~1/", "col16":"3=mvLVLYK#5M_mImzbf$m4pjO?xqaMnD3%Wk6z9!?VK>asTqihfTun&?rjnV@hCKqNFLZ!t?Z,$I&0VO14W?.$Ifn", "col17":"3$*wLCj/g;FeFuL?1)xDf1qi-2pC34-nHU*wrC"} {"col1":-794984628, "col2":-123, "col3":2770, "col4":0, "col5":-8407115878675052393, "col6":6290621142790299283, "col7":-20395.217, "col8":964838226.951184, "col9":62168795366363553.685, "col10":3990660931483287.956, "col11":"2023-08-01", "col12":"2022-11-15 03:39:25", "col13":"2023-05-22", "col14":"2023-01-16 06:11:45", "col15":"aBBlJ&qLR/", "col16":"j%jpN=i9M(qm~P6$lrFZX#%K/V,+lKT8PLo7S=nBDaW+%k", "col17":"SBYA;xsw12%VfP3h@H#t%K2217huCI5%Xzl7/uVQyqEDk+iuY4CfzD4+#n4o"} {"col1":-96204677, "col2":104, "col3":-25072, "col4":0, "col5":-495962334761368972, "col6":8827206595048036803, "col7":-11482.668, "col8":-1689118748.978966, "col9":67715972226386452.885, "col10":13169427423288280.809, "col11":"2023-08-15", "col12":"2023-01-02 17:50:30", "col13":"2023-07-23", "col14":"2023-08-06 21:07:43", "col15":"_ZVEgU^HRmfqt", "col16":".o2d+YKh6g42*c#", "col17":"_L!"} {"col1":-2115935053, "col2":27, "col3":-19348, "col4":1, "col5":6444729399502953215, "col6":-7824339815255256852, "col7":31207.164, "col8":-1416336003.514647, "col9":30769340447285264.393, "col10":-16602275863253066.303, "col11":"2023-09-03", "col12":"2023-01-20 01:35:08", "col13":"2023-06-14", "col14":"2023-01-16 04:44:31", "col15":"h", "col16":"_uZ^TAbpz$&E>G;g7Ke/", "col17":"qAFkpQ29_t~6-$W_G$@qi6q.wZ_l~O9gBk#aIkHjxu>-`~$Ur@M~VF%l.otQqlsdt-+c*/"} {"col1":-388835131, "col2":53, "col3":1173, "col4":1, "col5":1058814101912670358, "col6":-4766475424119347961, "col7":-9593.519, "col8":-2026900846.597067, "col9":32638844755892053.680, "col10":74267061673690142.256, "col11":"2023-04-10", "col12":"2023-01-23 06:01:37", "col13":"2023-01-05", "col14":"2023-01-10 20:32:45", "col15":"vatM?TjC", "col16":"-czPSz7d;hzG%`_L^Lh(iQR_TjXjNJu=4-pB20qcn@s`b&BXBJE", "col17":"ZC1C1b7bXzPw8eL$aQK!sAs+3mH~xq.Y,4sAf~aI!VrfJ!rEm9#g;,?(WY5XrY$Hu9ieq1JfeuoJq+?P0jB0tI64sM/>#E.kBRZ>E_%J`kg$iXvES2KqpLpF&Q>Cxm=u1GkyT8X(;^YVvxgd3ukoX<@0=UE=^@Fy1,3ZmN5y~gE179^6s=z,*X!"} {"col1":-890641036, "col2":-108, "col3":12687, "col4":0, "col5":5992849989632294216, "col6":-509868396952444310, "col7":25711.898, "col8":-155735546.802502, "col9":30165578514147105.800, "col10":-8197414077466183.531, "col11":"2023-05-22", "col12":"2023-08-29 18:34:13", "col13":"2023-05-16", "col14":"2023-03-01 21:45:35", "col15":"9A3@>H6t", "col16":"M2-d-@D17CX+$Co8K`<0TLns@%#PT3ZS(8JrM/2)lO~-9N~`AGr^!mg_I=.d/9GNP", "col17":"8/e,sjJC%Nb<.XIIkQEES~Is9JMzf-cUXnln.=;T@;d#K=TsahgOL9aJ+F!zDCEBBDDBo0d^BJjO(Pgm4X^x<@He,L;e^KJ+oLBp`(l-BHC70G5*~-"} {"col1":-214174654, "col2":-66, "col3":-26315, "col4":1, "col5":6675376020097387538, "col6":2349535819201158151, "col7":-2783.544, "col8":897715524.600938, "col9":-45965025270498650.974, "col10":-67730060493155209.887, "col11":"2022-12-15", "col12":"2023-11-09 12:10:53", "col13":"2023-03-18", "col14":"2023-04-16 19:23:56", "col15":"r4Y@2Ih#", "col16":"a>,4Qp!Y,o+~a4N_.rE_2eIhsgTH>vX(bm~3l$vdJtrnp@?pMKp_IBASj!i!*ruZ*3iMOWChwPRybRUmEbZ,s", "col17":")l+^jtn@MQLK*9a7G)MfSKuY8/=G2DNh0f>d%oCIq>!(.7YqV~yWmi%+pwWLRmU88TZI-->Y#"} {"col1":-2129952087, "col2":-126, "col3":-2059, "col4":1, "col5":-8837074953586926207, "col6":5112551742375942421, "col7":-6595.1167, "col8":419447242.935179, "col9":-92635600957786296.964, "col10":-99426600244345493.224, "col11":"2023-05-17", "col12":"2023-01-04 14:05:29", "col13":"2022-12-17", "col14":"2023-04-30 14:43:23", "col15":"-a", "col16":"Y@OQLeFB!n`xo?@hDQ(LQfTb^Ay_!Smggqhg%fceGJd", "col17":"/q-IbTh@0v-)i*,XOo1j>xlzCp2!-eN-giu(P7^aK#uk`,/yzbS"} +-8584330716254438722 {"col1":933995213, "col2":1, "col3":3267, "col4":0, "col5":-5550829509029152855, "col6":-8797152448685401671, "col7":-6807.821, "col8":1881218185.650995, "col9":44837386411291788.739, "col10":-77744549308538297.360, "col11":"2022-12-26", "col12":"2023-08-24 18:48:11", "col13":"2023-01-30", "col14":"2023-11-03 12:45:38", "col15":"4be", "col16":"1=)tT^~uN(d<%FlwM;`JYpKWzB<+x.PFYfbh!X9EElGf1&bba6;;i2iMz/2Kp_qh$-I^L;3?Sl"} {"col1":-1333802234, "col2":43, "col3":11242, "col4":0, "col5":1196312694517239929, "col6":6213937979195932063, "col7":12792.475, "col8":1428325473.834884, "col9":-62192826868698867.216, "col10":-93168441979234449.692, "col11":"2023-09-02", "col12":"2023-11-05 11:46:33", "col13":"2023-01-08", "col14":"2023-10-29 05:00:38", "col15":"EN6$dzs~(d53", "col16":"uEL)aj7RcOy2B>akn", "col17":"V.GohGHLV6J6/(Xx?9(7fB<_v9TByzA?7?6Yw$PhvyuFfYk^&DGstDc>KG3UqcU!.m;xm%@LE+gEsxk(/Pbbpw?"} {"col1":1086518829, "col2":19, "col3":8050, "col4":0, "col5":-3082049133083595029, "col6":5683422793173472738, "col7":-2291.2551, "col8":-432505729.081493, "col9":-47674030032621905.804, "col10":-80490934942919187.814, "col11":"2023-06-23", "col12":"2023-04-18 23:49:15", "col13":"2023-10-05", "col14":"2023-04-01 08:55:04", "col15":"#P-Bqu", "col16":"<,F@^IxJCX,4#vmwXV2ShV>C2mlige5>NJT.,/T/~@LOKo3cF_=^p", "col17":"Z.Hqh(h3Gl7V%5L%(kk7E37w/Go8wFJo?fBOhlH,qP#gA?HMc)E2psS/8J.Kj/5H3*J>y69SflpRdW>kk5U=Wi;ih,H3L-/5H8ZAh?", "col17":"9G!&Shr?TRk=c;0MmBkB^ctv3%D_(zKTH"} {"col1":-1331045850, "col2":56, "col3":-31044, "col4":1, "col5":-7244667617013002360, "col6":1902503764317765481, "col7":-25882.256, "col8":-380049302.431098, "col9":-9606911474006002.109, "col10":17328632045627481.982, "col11":"2023-04-19", "col12":"2023-05-27 13:22:43", "col13":"2023-02-13", "col14":"2022-12-13 04:36:42", "col15":"4C`o>N#W(XW)F.M8UuUtJLRU8%S7T6cVK^5x^DY-Lr=8V.LyxYo+9uJ6W.9)t9k_(t@V.BTcR8i+", "col17":"Iul)yq?wr*jT~A&Xw3eC)!It21loq%CSn^Im)$t/-ye4SweU1!^S?t"} {"col1":-1125037299, "col2":82, "col3":-22808, "col4":1, "col5":-8303816131517042997, "col6":4386623234696664296, "col7":31390.795, "col8":-321331979.556449, "col9":-9500951408855814.912, "col10":-15572524372861648.542, "col11":"2023-04-24", "col12":"2023-02-14 08:58:45", "col13":"2023-05-26", "col14":"2023-09-15 23:55:02", "col15":"3&@", "col16":"h6tMUgR4ZgYkbTaz3l-cZqOXH=$c0$eVnBq~Z`/i-OIcycC?o!,Tbp/%", "col17":"~rMw9K?15@l`?G7zbS;w6D0-l0oVmD.G<#ZjEEw)j.$#RVLAW`/XFk7--,~z;2b"} {"col1":1558710429, "col2":12, "col3":28523, "col4":0, "col5":5442602451983227812, "col6":5264019481572723786, "col7":30198.125, "col8":506413823.027176, "col9":45601850479542885.984, "col10":-13258345057980610.190, "col11":"2023-03-14", "col12":"2023-05-08 22:21:46", "col13":"2023-07-05", "col14":"2023-01-05 03:50:50", "col15":null, "col16":"uHkiv$KU)dNI6W8DU?>>zIIh^.^)Qjpr2ppOZD!?6,)sOBEFe%a4w4skFT4rk", "col17":"S,Xu`uz3QhH;COFcN9*6PnsH)Mf4%GW^OV/#xce)*BANp@263aBjV2?qIB-5$^Q/>Hv6%~ph"} {"col1":610229798, "col2":63, "col3":-23158, "col4":1, "col5":2607349881852175976, "col6":-4831004874800938260, "col7":-21914.416, "col8":-2107006238.699932, "col9":-13894840376099276.889, "col10":49077690290463004.191, "col11":"2023-11-02", "col12":"2023-07-29 16:40:01", "col13":"2023-04-14", "col14":"2023-09-11 12:24:43", "col15":"StJUT(wB>@", "col16":"y(@?NZdvk3O3axN-AN=ps9=!~^5apnzz!RW.CZzs`4&%l5p0SY/>)/%t#.ZXpJfgj>^d_FGhtphZ$P-ZY?;/", "col17":"oFI/=&hVVm+Y7MJssb&KP^M7GQ!+)5`.CNOZRfqwR$1S%cMZW!Os$(+rfJB&###*Pg)uDu,IdFK)DpOq"} +-8526590106902518025 {"col1":-2135397004, "col2":94, "col3":-29670, "col4":1, "col5":7090872835518711333, "col6":-1916621235651057979, "col7":23394.068, "col8":1655037893.333014, "col9":-36143234288746464.456, "col10":-61754523073078713.138, "col11":"2023-10-09", "col12":"2023-01-10 08:53:04", "col13":"2023-04-07", "col14":"2023-05-09 07:46:38", "col15":"1V97aoL?&c!o=", "col16":"GjA`VBdRgX", "col17":"KgFF&je5+,NvGEdAz_;dufCth_a&5,gSu~orh%)pUn1FyV+5,cyA(Yw"} {"col1":768834811, "col2":111, "col3":-12368, "col4":0, "col5":6987671692766035939, "col6":-7494881589590755673, "col7":-11690.967, "col8":-800701084.768676, "col9":85704989772506616.614, "col10":49389328660634750.811, "col11":"2023-10-26", "col12":"2023-10-06 18:51:32", "col13":"2023-05-11", "col14":"2022-12-08 01:37:15", "col15":"n&JJ$4r4K)8Q", "col16":"W&x/kQI;(P/PQ`9#VVbW~Ouv,vI", "col17":"fa)$MGzGg"} {"col1":-1823219684, "col2":-12, "col3":26992, "col4":1, "col5":-1836403498572963938, "col6":1722310216718493557, "col7":24048.455, "col8":1916478884.258523, "col9":-99164804684678355.416, "col10":-91191031383207337.116, "col11":"2023-02-20", "col12":"2023-10-01 18:54:49", "col13":"2023-02-06", "col14":"2022-11-15 12:19:11", "col15":"LRU?R2&pR9H", "col16":"2_%90#WoB//HfXMKVl7ssi1Kg.$uZtbpR6Flbn+XO=<92;Vb=3Aq/", "col17":"a.lBcPe-v&wALCzy~?~mno?9LeLdec=K-_7Lh,9.UWsu@T"} {"col1":2046878137, "col2":-45, "col3":24125, "col4":1, "col5":8733335759463317387, "col6":-4889254601679646071, "col7":-1522.2361, "col8":1772345507.502007, "col9":-4765781927035297.105, "col10":49534300407852204.210, "col11":"2023-11-06", "col12":"2023-07-01 02:40:28", "col13":"2023-06-17", "col14":"2023-08-09 11:36:07", "col15":";WRfOM.%/G", "col16":"hUfxWQK%VuMWj=k.n

f8M?e_IifBVczWQR<%b#x96h", "col17":"9ORK=%nvv7$j;+?!=/"} {"col1":1931749918, "col2":-61, "col3":-26023, "col4":1, "col5":655886868675975318, "col6":-6228523992121274715, "col7":-30416.277, "col8":404494499.593156, "col9":-90704723127910362.852, "col10":-48830702924564917.200, "col11":"2023-03-22", "col12":"2023-03-30 14:30:20", "col13":"2023-06-25", "col14":"2023-08-03 20:58:14", "col15":"1", "col16":"w0XlSO`^~3Mc8`J_AZ$kD-9.eZbvk65/TZkg8fU!4yciWdSUGfE?+cJ0yEI8I+f>O@en+%I%1R!ccmY", "col17":"nArT@GE)iq0,`KrBS9uyh#*Y.T=ACL.m>^xc-!ZvF=VH@v1E$K;iR_Z=z#;5~~/s&/>s)-d=Z!t%s=UY/fMQ~6IE", "col17":"w)j>29dIuV0;P13d#*("} {"col1":-784154300, "col2":-62, "col3":-25126, "col4":1, "col5":-4498219135499881772, "col6":6856401980615832763, "col7":12140.458, "col8":-242951193.82197, "col9":39747421746866133.595, "col10":98412075066012684.979, "col11":"2023-05-29", "col12":"2023-09-07 20:05:21", "col13":"2023-04-21", "col14":"2022-11-19 03:04:38", "col15":"K=O^alW)L`", "col16":"EgcIHa^Hd(GE~3gM@UK", "col17":"qJo9+1Ho39e*Tf2S@62#FbSIF5)+e?pxfhlOEHe*S8k%#MlOplPx&U/0`7erPd3E%lWIR<"} {"col1":-1345998070, "col2":73, "col3":-12307, "col4":1, "col5":-2346592350776300502, "col6":4576202285731461241, "col7":-676.7377, "col8":1364540328.064018, "col9":13432767121839671.998, "col10":-26324936959989359.594, "col11":"2023-02-11", "col12":"2023-02-07 07:08:09", "col13":"2023-03-21", "col14":"2023-07-24 06:50:49", "col15":null, "col16":"to_qGASeSl*X2nbC3", "col17":"WBZww5;5h5_7hv6TiCrx9wJbP@A22S3FHcCK#KGPF8("} {"col1":-1988183162, "col2":40, "col3":-24136, "col4":1, "col5":-417379002178085796, "col6":-1474977584348316966, "col7":5310.985, "col8":1063839607.392107, "col9":-54413137402446947.803, "col10":-73693930358854252.940, "col11":"2023-02-25", "col12":"2022-11-22 16:29:59", "col13":"2023-03-22", "col14":"2023-07-05 19:30:45", "col15":"qgH`_", "col16":"V^;OOSkIoiGuYYAl4y*X3sBY.3_t*@/B5&19@6-q~", "col17":"MF#?r7V9tm8lGzpKoSphji8*=z%mYM5OU,Fiq`El=0snqAJll%6LM!n^H`"} {"col1":-1180095966, "col2":75, "col3":-9704, "col4":1, "col5":-7929307379393601542, "col6":-3221655257874030538, "col7":-22961.36, "col8":1350934064.919748, "col9":71590329804082297.316, "col10":68490249642371318.980, "col11":"2023-09-22", "col12":"2023-10-06 19:04:38", "col13":"2023-01-07", "col14":"2023-04-03 03:02:49", "col15":")?", "col16":"Ghw%4pXF_LI1P?M^f7c4&o2K-QEW%p8&trAj~DH4=dQ+2E!n%U8"} {"col1":-1042939487, "col2":-102, "col3":-20093, "col4":1, "col5":258704357774718873, "col6":-4387908451084538500, "col7":-30131.84, "col8":265721776.737866, "col9":-2616511530016594.215, "col10":28484710821627763.956, "col11":"2023-03-30", "col12":"2023-06-19 03:13:57", "col13":"2023-03-11", "col14":"2022-12-06 13:04:22", "col15":"3rKKL3s>", "col16":"FVWF@8vMgd)ePWR?u@V+I9eSr0FK`!x;+%l6^u+bkBH+Tk+1SRrL88J4;xG%X~kxh0Rf*5b", "col17":"almPDzqhC!rL*)c8j5XLkhv~Y/y~V3x.>iD/msL)N.c8(J_s?Qlpu^zsxiIg^Ig$G%y^,_r+lsHbIaKLW9X3sP)2bRwu/(!dOKA?TZaDI`MfFd0K+9f@Dbf_xh9>n!I22MqP2X)pY7@g0PjtRR", "col17":"/m6JI,%hrjW*C/EMawnUA+P%AHG"} {"col1":-96922114, "col2":23, "col3":-28004, "col4":1, "col5":8446860350965531770, "col6":5642173086219796099, "col7":-3171.0913, "col8":-634821029.823853, "col9":-98654792721280301.185, "col10":90696742528251983.209, "col11":"2023-01-13", "col12":"2023-11-06 05:10:39", "col13":"2023-06-18", "col14":"2023-08-12 12:51:35", "col15":"N6W4", "col16":"EXbHnU*G*x1(Fs>=`Oh;QjqM7>q5S6x=l%AeX9@p~_ubptVMbC$9/L4", "col17":"KkAN)vprmfxmbZ3-BQ2w27g2X=YtRc6!_e_Gj#H."} {"col1":913460251, "col2":-122, "col3":-668, "col4":0, "col5":6507538830189845573, "col6":-9049683691868904419, "col7":32287.156, "col8":-589894718.031317, "col9":-42663927076874213.955, "col10":-59265662945486651.537, "col11":"2023-04-28", "col12":"2023-09-26 23:37:43", "col13":"2022-12-02", "col14":"2023-01-20 15:16:56", "col15":"hJND)Sz", "col16":"VFdc4H=RSuNZ/C,6N", "col17":"PBo("} +-8505366084515032753 {"col1":382502710, "col2":-10, "col3":-1057, "col4":1, "col5":-1053404092722092555, "col6":-3224814438034550078, "col7":-303.36923, "col8":1394068216.774496, "col9":35385157086902073.490, "col10":28542472828538829.527, "col11":"2023-06-15", "col12":"2023-08-08 18:11:20", "col13":"2022-12-18", "col14":"2022-12-31 10:35:49", "col15":"aNDd", "col16":"rf&g;llr0AcaHMvj==5.x^T6<5#,s9g6Ce+%%shkcvv==<-%32nk0UKGn/Xv0ze1BPHIuC5b/=LGg6Z3S8gm`F)#w", "col17":")xh~)TJqjj.DjX1yU2Ri6KQJax"} {"col1":-1855122167, "col2":-3, "col3":15689, "col4":1, "col5":-2367363947390869432, "col6":-6532659416199639957, "col7":23066.408, "col8":1319308662.25036, "col9":75101865537681458.145, "col10":847059006678943.372, "col11":"2023-06-22", "col12":"2023-03-26 14:27:35", "col13":"2023-07-13", "col14":"2023-08-19 17:08:01", "col15":null, "col16":"rspt?wZj`f,b.aEWAm5KI&s_q;yFo(>%OYX+WlZQ4uEBzq4^kJGGNIJ1W;", "col17":",JBXQweU"} {"col1":863299634, "col2":19, "col3":26127, "col4":0, "col5":-3722113302586638684, "col6":-851562457423560807, "col7":12379.872, "col8":1344459261.478156, "col9":-5722993038821801.748, "col10":-17110044615450491.806, "col11":"2023-05-22", "col12":"2023-07-06 18:43:09", "col13":"2023-03-30", "col14":"2023-01-03 17:58:06", "col15":"CW4hXqcNhZ(7NV", "col16":"^-GcQPOz2j/^JouKfQ!j", "col17":"fL@>t?5)3esV/+),%xsD`;^ModFpKCj^qhGyEThhB+s.w_#0ZSEvdtmUPKcU3!I5DBaoc(?6--TxUy0lMqgGGJ_1?Ba?Q@*b6->;I_koUI5", "col17":"lu<.4A8;Po5"} {"col1":517718032, "col2":8, "col3":5617, "col4":1, "col5":2036983629624140619, "col6":-8004741025176861266, "col7":29875.326, "col8":518876871.957944, "col9":-91214823930019420.126, "col10":-83897543475024225.103, "col11":"2023-11-04", "col12":"2023-02-17 02:18:52", "col13":"2022-11-25", "col14":"2023-04-16 21:00:34", "col15":null, "col16":"6hv*w,;~7ReMx-z)RyB0SncbrE_E4=ar0X(QPSxbv?v,sYR/.nsST,Lsf2lC-", "col17":"5+@eImE(-#Aq7Ti,Z7I9SmCU8jGwXs.adUs152`KV,SUN8r$A>_I(Mzpo1wyUTbQVQF+ynd*"} {"col1":-26851415, "col2":77, "col3":20803, "col4":1, "col5":8462280744723342223, "col6":4028913701469404239, "col7":-27780.814, "col8":-1695167601.009997, "col9":-49423859244307827.797, "col10":21504216931240673.598, "col11":"2023-01-01", "col12":"2023-06-27 05:34:56", "col13":"2023-05-01", "col14":"2022-11-26 20:17:19", "col15":";jWy1&q3blu>6IO^dh9#B_@I.JL1FWW,Kat?I5;?foXR#s^pWy8aAQ1M=Pc+(dz&/"} {"col1":-604602583, "col2":57, "col3":13011, "col4":0, "col5":-5302358667068573583, "col6":-5456138891970329645, "col7":20375.229, "col8":1419926154.765488, "col9":64309450696316848.480, "col10":30650186013769395.238, "col11":"2023-10-23", "col12":"2023-11-06 06:40:28", "col13":"2022-11-21", "col14":"2022-11-25 01:32:41", "col15":"ienLsZZoNc", "col16":"Z`7h~<62l*T,(Fum0!A=a2Dql0", "col17":"7^=JYmEr9?Js%P%1Pgiy,!l5>e-*GgFF%F#iJ/FV`0-Bjg6uR%W-LK%B2QZf*gE-(IO!p>whxfod2)eg4%/NZ4"} {"col1":1296845509, "col2":59, "col3":21046, "col4":1, "col5":724993822370556458, "col6":6265074313340910084, "col7":29620.066, "col8":1513249955.591215, "col9":-15705720077200863.493, "col10":-18756131852709044.646, "col11":"2023-05-11", "col12":"2023-08-17 11:43:03", "col13":"2023-03-17", "col14":"2023-08-17 16:03:28", "col15":"EYv*0AKQ3", "col16":"%k%,cq5^6AW4k^*D(IFeA?jMf8TZfP@AmmNj3-EVFkT>~2GHzC3=pd)R6Vu;E`0A;WrJzpo`Fv4Cqo*^^!C.($,Akh9A;+RKM^W&", "col17":"?6BBn/4tSggoWM=V`-YK=u_5*D=WP3;/G3s<6mFMa5725,9$t.!)nMta1kaI?l6t`P!+k&nKc-"} {"col1":1787385854, "col2":-123, "col3":29564, "col4":1, "col5":-4220216585811082502, "col6":4960039834428859787, "col7":-14863.338, "col8":1683405330.677428, "col9":57974039101802622.279, "col10":19353920084990675.742, "col11":"2022-11-24", "col12":"2023-04-16 23:42:22", "col13":"2023-01-29", "col14":"2023-05-15 05:35:02", "col15":"O>5PB6i>NmB", "col16":"VezoSRw-mx0j6ye?a6/6pnEPl`$i#NMvQ(x+_s,ZJN9?.MK", "col17":"N%RxT2%Al_#SU<6TZK.FZa-.25+sb!hILyv?#fn^szkG=hO>G,A0`7pM/NskTuH1+E&G=K@yg;I8iUf7ONGj3"} {"col1":181016402, "col2":-66, "col3":30163, "col4":1, "col5":4495758931964433648, "col6":-8653734159677839442, "col7":15644.355, "col8":-1356097265.535016, "col9":-89608254464744295.275, "col10":-42975241952851160.770, "col11":"2023-05-25", "col12":"2023-05-21 12:36:03", "col13":"2023-01-15", "col14":"2022-12-02 00:23:30", "col15":"IIywcqM", "col16":"T;)^_Mbku6CT1MIc0bD^#%2IaYOh@rhnrjC", "col17":"CpS3bbNX)rH#8Js5ieM<;5R?YBeE5/nUmmx7p~oY~=c/yfvRiASR*R6v"} {"col1":1469934754, "col2":1, "col3":485, "col4":0, "col5":1224735581054006788, "col6":6089508584939008713, "col7":20772.271, "col8":-340537207.844391, "col9":-25669600080047259.795, "col10":55365122064805386.858, "col11":"2023-01-02", "col12":"2022-12-30 04:14:03", "col13":"2023-05-24", "col14":"2023-03-07 14:05:07", "col15":"x4JeBv", "col16":"(o!sVg*!Z#dt0lF<*vxkfoK#1b", "col17":"D29^$!xZ)vz3.+);W", "col17":"(6t&$tmJvo`XL3s4z(t*P-~*+gau$i.NWn?VD&.`jFTF?0voTgJ)C7PgDj/_oiZw/q&A(u-9S"} {"col1":-731917057, "col2":37, "col3":6151, "col4":0, "col5":7777078010512157661, "col6":-2759816014023267952, "col7":10645.079, "col8":883698261.707048, "col9":-76310146256900243.312, "col10":-6973273195653891.327, "col11":"2023-06-18", "col12":"2023-10-22 04:11:48", "col13":"2023-04-26", "col14":"2023-04-25 11:45:34", "col15":"UXuOuREEJ", "col16":"l^rtqAEr4>ec.Vw;QBrajvx(?d07he1jyx-z.!(h`Ya&Zh?O", "col17":"VED-)l&4%vqo$g$hEMQZ=!"} {"col1":-951913828, "col2":-49, "col3":-19436, "col4":0, "col5":-6614975947088839054, "col6":-2347794520629140789, "col7":18287.795, "col8":-265026577.394333, "col9":95136006648803303.130, "col10":46455594961007726.578, "col11":"2023-06-25", "col12":"2023-09-08 11:02:25", "col13":"2022-12-23", "col14":"2023-07-11 20:33:27", "col15":"GD*~", "col16":"MlBbK%Y(G3,Q>8.z&KMwUHBt0p/m<6c!!xkI8L%9Pri", "col17":"h%LK"} +-8368163552280161902 {"col1":1769209089, "col2":41, "col3":31160, "col4":1, "col5":-2575336798099083185, "col6":-883044937893669077, "col7":-19593.564, "col8":732727904.190433, "col9":24471993109695208.242, "col10":7027799225935328.300, "col11":"2023-03-14", "col12":"2023-06-17 01:00:36", "col13":"2022-12-16", "col14":"2023-06-01 03:23:44", "col15":")ysk+f.Rb;Mk", "col16":"rpXzdz#~NQOpWj8uq%$3Uo(7)2wSmy&XbeF~mpb80bhCN$<%UqoFQ).xInr)z1e%Wm)miFk/gPZIOC=DS=$-P-e~ZKT*Gc#n", "col17":"Zw/sJQD+!qGN&,V0gq!>&KcN-5HzygFJT(3%YCpX2p6GIkmQJK-4hkf^o^Gzo0"} {"col1":-1128656019, "col2":38, "col3":-31755, "col4":1, "col5":-2435632141806412164, "col6":8136450037899463794, "col7":-459.44894, "col8":-831192457.489055, "col9":97591785640602819.751, "col10":-62968590713393600.518, "col11":"2023-01-16", "col12":"2023-04-07 18:36:15", "col13":"2022-11-21", "col14":"2022-11-11 20:28:59", "col15":"-C?2=,2G1e^#Y", "col16":"9W$$AAoJo2lzO$@;&SOg", "col17":"BF=Zg9mC%Tk"} {"col1":116046830, "col2":94, "col3":-22557, "col4":1, "col5":-1598164460844399072, "col6":-4158706534326890839, "col7":24433.285, "col8":2134151714.625505, "col9":32526239216662343.382, "col10":36428786060450888.560, "col11":"2023-05-03", "col12":"2023-07-10 18:46:30", "col13":"2023-04-22", "col14":"2022-12-11 00:40:44", "col15":"=AL", "col16":"nBEdvMoi&Ku%CS#9YR)1e)w&InunfqVq@z5%j97_AX2sH", "col17":"^3Lnzbz)b%j@!d_1I)@T;K,Qd#L)aCv*0U(Rnys3LLod%ZUxhCjt&7~gd5NW/ji+6Ay^d_b23=HfC&X0GqfS,vu#WV2/o;q1"} {"col1":-931769087, "col2":-29, "col3":24745, "col4":0, "col5":3139286240265536402, "col6":6172939574734784743, "col7":-9849.977, "col8":144474395.964448, "col9":74949219831536557.243, "col10":-61657785466666969.507, "col11":"2023-02-10", "col12":"2023-06-15 06:30:30", "col13":"2022-12-03", "col14":"2023-01-04 01:09:40", "col15":"MJ~0M", "col16":"7S3w*O`K", "col17":"f1<.Ruq+++&Lj1_yd)tT>PWT91>"} {"col1":95091621, "col2":-34, "col3":-29230, "col4":0, "col5":2881528624934468265, "col6":7807966468061685861, "col7":12235.277, "col8":-952013846.37979, "col9":8704675164427700.119, "col10":22241492001285031.114, "col11":"2022-12-18", "col12":"2023-08-18 10:03:10", "col13":"2023-09-29", "col14":"2022-12-06 07:47:44", "col15":"cb-fe=HQ2", "col16":"ODws3EY*izfCOE90(2iFs7^BdkVssW7cg/k#pQQk1u,cOMReo/fn7@MJ&unJK5OI=>QVS(.7.JQmm3Ue61_WTcqwU@t<@r5qj,TJ2?L", "col17":"CpZMP1~/4GLggIi95mY%IiBHMb+iZK/3&J2+135ostS!jE,cpgIt3FGZ=!=b2ua=,wi+l.7#VU4(aUrSu^-y~T$l1eEi.b,S9Na&vIC)9E=P_mrOw_J$I;Ss?5h"} {"col1":549081643, "col2":-89, "col3":-18860, "col4":0, "col5":2268837686650169392, "col6":-3564791349665118608, "col7":5688.7407, "col8":299803683.69027, "col9":92982331476439301.594, "col10":-93330243753042154.201, "col11":"2023-06-05", "col12":"2023-10-08 21:25:31", "col13":"2023-02-20", "col14":"2023-05-03 02:23:37", "col15":"d=GDd,", "col16":"-hCK9Q%sfXLRfN35e1W`WAWi(A3s!+;wwL(hRvzT~Ipp`jAY%q8o-z(ueZptTS,Ua9?gt^y9Z8yQK=h#44s", "col17":"Up4HiD^Brz.),~KbbW"} {"col1":-1783476026, "col2":-48, "col3":-17310, "col4":0, "col5":-7963598298499820103, "col6":4904571652507647260, "col7":-10607.233, "col8":-1974193014.984611, "col9":-42459355958681098.454, "col10":-18238483948356281.750, "col11":"2023-08-30", "col12":"2023-05-06 07:37:46", "col13":"2023-02-08", "col14":"2023-09-27 21:55:52", "col15":"A,blh00/y,", "col16":"iOn`m", "col17":"9+5KWeLDsbd/&Uq+1-Ehvu2^S-RxzF>sTzA)dO76#CJ+q0b_W3%Vz8t(xi9$Pzr7XGmRC3qTg!qQf&`%Dd@I()5gfj9^+j_0AgHM?!I()c=li^>"} {"col1":-496454371, "col2":121, "col3":-32536, "col4":1, "col5":5109585439962885589, "col6":-7561145607543036624, "col7":-1663.4861, "col8":-956519190.050091, "col9":-10288691912800152.494, "col10":29496554612133109.983, "col11":"2023-08-28", "col12":"2023-08-31 09:50:56", "col13":"2023-03-24", "col14":"2023-03-19 20:42:21", "col15":"%+.U&gn<1ZU>Mf", "col16":"=Y$EVG,h-h23^r", "col17":"NR.ZpMOo%1E?"} {"col1":1238201496, "col2":-10, "col3":31686, "col4":1, "col5":1122137690708375175, "col6":3751166452543437548, "col7":-15929.366, "col8":-209845314.081667, "col9":82928606746951351.951, "col10":-24921390371752053.504, "col11":"2023-04-16", "col12":"2023-03-20 23:55:33", "col13":"2023-10-31", "col14":"2023-02-09 06:24:56", "col15":"I-", "col16":"J3iltfk&9#5Qc~44Xu@_f?^u;(7J", "col17":"J,>9sWD,HEb+f)sMZy,=e?YLj#W)CQw&Tryuy?2q!C&2;cNp4j3~95VzfeI9QTh*o~=y?!D0Md#6G;1g2$8Q3j5Eq%"} {"col1":-2126172544, "col2":-43, "col3":-30224, "col4":1, "col5":4477399578851748461, "col6":-8164663132923309779, "col7":4598.504, "col8":-2145707155.719386, "col9":-16186361543705830.429, "col10":-70898288416135568.483, "col11":"2022-12-22", "col12":"2022-12-05 11:00:58", "col13":"2023-07-10", "col14":"2023-03-03 03:45:05", "col15":"v++#N", "col16":"jB/H(1KjyS,Y2-f`64cMz>$24^IOxrk~%", "col17":"DH3k3igl~`7pO`wlSAWbcAW&n^d#jy;6RME&e$6^bc/Sl(;kcBgpWt(17t/Q7%AP5l@MQm8BK8Saq=dqtSl#89iEyJF=5d4eQ*5,7RX!MW(O&4V5.ra&`wwkhoT"} +-8130752084420850754 {"col1":-630784508, "col2":-107, "col3":-22332, "col4":1, "col5":2526767180146544499, "col6":3669637146075805854, "col7":-2381.3687, "col8":75875226.650256, "col9":-16215099298195794.320, "col10":-33531867113672142.943, "col11":"2023-10-15", "col12":"2022-12-26 23:51:13", "col13":"2023-10-01", "col14":"2023-07-14 10:34:13", "col15":"Y", "col16":"3/j4pBCb;)0fp(F45MD7@FNT=R1kj93(_4_wA5)vOYD!W#6LWF8", "col17":"&lOgTZ!dZ^,iG>4Ps!-)S+KQIOSClIaQYS$N@ei~(rVZwKb*7?Qzomi&K8GfdD1-hs1S"} {"col1":-520495782, "col2":-18, "col3":-10052, "col4":1, "col5":-5500653227385262734, "col6":2071128999812670433, "col7":-1284.549, "col8":-1758340715.165546, "col9":-40984045024860021.904, "col10":-69726335010103532.380, "col11":"2023-09-26", "col12":"2023-02-20 13:33:55", "col13":"2022-11-17", "col14":"2022-11-14 20:14:11", "col15":"tA&/#h_LkO", "col16":"*4WJcDm&K370&0pg7#s).g=_BsN9(fU3npbI0/!x,WIAg3;SqALl^~7Rx?", "col17":"ku^@V1&/5o/C@m1*?33C9-wNN?UQ+ax`g&UYfdlr+m)6v"} {"col1":-254305488, "col2":-32, "col3":-23700, "col4":1, "col5":-6047527938938229808, "col6":-8390007357285860601, "col7":-4994.1514, "col8":-1938449016.468337, "col9":34009355692319729.341, "col10":-49705304084897838.366, "col11":"2023-06-07", "col12":"2023-10-19 02:54:45", "col13":"2023-10-08", "col14":"2023-06-23 15:47:35", "col15":"L+L", "col16":"Zt)P", "col17":"fqxwKRGS,E8oDUevQ!TRV-a12"} {"col1":1320721215, "col2":91, "col3":-14366, "col4":1, "col5":-4901320206869872612, "col6":-6734233068323413885, "col7":3092.9668, "col8":-2128909677.420208, "col9":91585706825195524.237, "col10":-18583607961702373.593, "col11":"2023-06-08", "col12":"2023-08-08 09:11:42", "col13":"2023-01-29", "col14":"2023-04-01 20:42:08", "col15":"R*%oyx", "col16":"+aq(16wM3z_Gbqra)J8j.T_drPtA_sN.vnF2-&JKv`PtifOZ..`zm6wP", "col17":"5,~$Gt=a&1wHdruBM),mb!a;~UdshW)Nd*-+nSShC(0MX0CynnazHS4U*ng#,<&Ys,B/Xb=?;.Zm/1./xOgBa"} {"col1":81795598, "col2":24, "col3":28966, "col4":1, "col5":394278581012445475, "col6":8538625659064010725, "col7":3152.8525, "col8":-582541726.405779, "col9":74628837758040294.322, "col10":70855409169031646.167, "col11":"2023-06-25", "col12":"2022-11-20 10:41:56", "col13":"2023-03-21", "col14":"2023-10-19 06:51:35", "col15":"8zN?XTqrRsgWSTE-hq2gietM!", "col17":"VkB&g~;#eP)mzBF#6Y(3_wO+gRlSCvb_oH4IzGQtrF-LJVrE/^FPdN@ACS?o7Iz~+8/41D&rV&`"} {"col1":1584719334, "col2":-122, "col3":-18196, "col4":1, "col5":-3719741203767950872, "col6":8275693320339631705, "col7":-21392.152, "col8":84254794.270132, "col9":-88846332068119370.580, "col10":-64509349060859205.997, "col11":"2023-02-27", "col12":"2023-10-22 15:43:08", "col13":"2023-11-10", "col14":"2023-04-27 15:46:11", "col15":null, "col16":"jX5hB0vr%uqgmVY,_+ckuo_@<@N>rjV<%ow&J4QU?*U06h~r@kT@HB,b0fXU*#fyW.>6iiL!o^u*Xk;V0>dNuCul/gAlq?&O^/%q4?3`^Ku;"} {"col1":-1929296815, "col2":-14, "col3":-29091, "col4":1, "col5":2209692967284329947, "col6":-4467649585163870281, "col7":-28066.814, "col8":-1125999447.229004, "col9":-22573967746140374.696, "col10":-77244170296332062.250, "col11":"2023-03-31", "col12":"2023-10-13 17:39:26", "col13":"2023-04-29", "col14":"2023-02-20 15:16:10", "col15":"?`!+Ichf,4w;", "col16":"18O.M!HtHcPtwhzY*_JgpBqBwGX_PfEbo;AZ?H3xh~m&4ssjAQfi$c%H>hse0zz`Rej$GM4mKAsHub;X+PooPp1x&WDwKVQ>eI1", "col17":"$hJo#yv`YGqSzy7esvlz2mTr9g#,RXfBE-;ga.WmS?JIr==kx4eam`y8Xnj/!U;I$fOrK2,W>PDAEJkaZ35LM9hhWHAx6mm(uq2J"} {"col1":419519048, "col2":50, "col3":28572, "col4":0, "col5":5109939873256684424, "col6":-5732498347084127922, "col7":-32468.19, "col8":-1737443888.096589, "col9":73968231814261632.732, "col10":43931705735412210.900, "col11":"2023-01-27", "col12":"2023-07-20 19:48:07", "col13":"2023-10-11", "col14":"2023-10-12 11:52:25", "col15":"_h%", "col16":"LE3vk3YdPS<%a@h,YBI&^lyt.+W,", "col17":"CA,wAaQsoJ3(USyxwejK43Qn0lazs5W&r-2N8Sp~(T0x7piIcs/4R&HXws>v((jTF_3a"} {"col1":-1581073211, "col2":-69, "col3":-26033, "col4":0, "col5":-804312312636283370, "col6":-6625806106514412241, "col7":-29053.072, "col8":-1698261199.931556, "col9":76451253322373236.900, "col10":11769426737212010.997, "col11":"2023-07-27", "col12":"2023-08-24 17:29:23", "col13":"2023-03-14", "col14":"2023-05-15 10:54:11", "col15":"?*GQsppENz", "col16":"aaW4;dDES2~8!eT0$TM+=23", "col17":"u*n7(_rGh#5F&)yMsXd.nRd6~No2,+UsWc?;y+;)x(uqQA7*x4)rew#6U9yI^&!UAK32hbGSl=;gF4,k`eU7(aXaw8Q2j_#&3i&<>NAJYF"} {"col1":1428826758, "col2":-33, "col3":-28399, "col4":1, "col5":-6469244622958594179, "col6":8335848240829608549, "col7":1618.6619, "col8":-1903223955.308646, "col9":93206268136712031.791, "col10":89306733804707873.770, "col11":"2023-08-31", "col12":"2023-09-04 12:06:05", "col13":"2023-05-04", "col14":"2023-02-07 02:04:35", "col15":"!YW", "col16":"/", "col17":"(6m.hGHHlnXdK_`ZZ)YcreXek%Ytz)l=g*Ps)oQtGsF0_y17ZWLb?P,gsyU"} {"col1":-1069306143, "col2":-4, "col3":-8547, "col4":0, "col5":-1383569491875123898, "col6":-8034778851940663966, "col7":-27188.469, "col8":1926605339.570438, "col9":46458896379925035.526, "col10":-94635160698411887.823, "col11":"2023-02-22", "col12":"2023-01-07 15:18:48", "col13":"2023-08-08", "col14":"2023-11-06 22:37:56", "col15":"p$BN", "col16":"!;Dy4P$X7F", "col17":"_KKaRhOuw;s,J$nS6oDa96EaYOry<@mBk_.B,_K-ckvEf8lQAjHh6j.J", "col16":",J.~MKo4)2pg/R23DVNA=7Tf)J*Sg-s", "col17":"tq&IP/6U)Cxr%D20@z+kgOn>QZLNEL3rM4a`Yy^~sKbb-++RSmR$TZ&+s4y,el=.yCT>B96adZW"} {"col1":985501155, "col2":-24, "col3":21311, "col4":0, "col5":5527964666005317471, "col6":6946948188736388580, "col7":-8703.959, "col8":-103891562.352326, "col9":-72256959944011241.745, "col10":-15805720823720834.900, "col11":"2022-11-11", "col12":"2023-06-25 00:53:52", "col13":"2023-04-03", "col14":"2023-09-27 16:58:07", "col15":null, "col16":"4lu5D#+1Z&7@8R1q", "col17":"cyNXc*5#q!p$", "col17":"Ky"} {"col1":1596224467, "col2":106, "col3":9539, "col4":0, "col5":-809051164961171210, "col6":6250982782242314377, "col7":-26671.64, "col8":56606733.145908, "col9":-80540802744766207.953, "col10":77085717692287751.994, "col11":"2023-02-11", "col12":"2023-04-13 15:33:02", "col13":"2023-06-12", "col14":"2023-07-03 11:55:11", "col15":"3_", "col16":"tE9nr=yFH~l?QxREEq@#4NdI7AbN%jb-*uF<4l/jDiFl7%Hw3Ho>n/C%Wn;XQA-pUiNGUo6$84+MKhB#WZkimtAej"} {"col1":-1218975697, "col2":-70, "col3":32402, "col4":0, "col5":-5168465205297713683, "col6":-42506747499361319, "col7":11149.558, "col8":-124984675.779518, "col9":-82155323751512945.216, "col10":-89459933378296748.604, "col11":"2023-01-09", "col12":"2023-04-16 20:26:33", "col13":"2023-01-19", "col14":"2023-03-31 10:02:16", "col15":"R-qvD+", "col16":"62H?H_R;SrrD5?a0LNWH~(5xwLE9=aXt", "col17":"QIqR?RRBaZ=.0EF3$p>_hD2_l)R%G^jvH`;gSz?*W@p,)>ddPiKr;o9)#45Us+j1;KXqqw?)$9XPBYjIQ-<(qcTdu>H)eN5?0oMzM)A%toAOGK$+6!``", "col16":"Rq`)B_wCqr~3D", "col17":".-G1FfO_&y6ciUgItDFzp3^xj2wT)3,3YL"} {"col1":949190741, "col2":-109, "col3":23132, "col4":0, "col5":-8107750618520010248, "col6":-6431170840840398337, "col7":-31010.111, "col8":19577291.956868, "col9":-42853285297909894.649, "col10":-69573641063301319.816, "col11":"2023-10-25", "col12":"2023-05-21 17:21:28", "col13":"2023-10-10", "col14":"2022-12-31 16:39:27", "col15":null, "col16":"Y;VSV@?j+eHK0~CFokCe*r.$gq*^sqPIxHI", "col17":",f>E=XC%CFYUP7&tvYjb%LJu#GDnMQP5.~)SQH0P-D;yaR5DiVr%<5ouv$YkhXeLAR@Ym1!vkwTZ2,8bUERr?MuA"} {"col1":1527563124, "col2":9, "col3":-25868, "col4":1, "col5":-8331595583387132313, "col6":-6031385467825388820, "col7":17599.04, "col8":-1485375156.20568, "col9":-16742871194598893.775, "col10":66735741323698862.142, "col11":"2023-04-27", "col12":"2023-01-19 11:37:46", "col13":"2023-03-29", "col14":"2023-08-27 01:48:45", "col15":"RCFOt+1", "col16":"%2~aM)waci$;?$Y~?hdzsOQTTP+Zq2lipeXn#QC*u1@QX62!5-A7727V3LQ+", "col17":"70#?^Ow/rdFvrFFVDP@NtWebpxm;jgcl8#0QEyC`7v0rh<~2h@ofB$Fue"} {"col1":2018260508, "col2":-103, "col3":-24472, "col4":0, "col5":8997678386359787116, "col6":2451818178827354507, "col7":4805.7744, "col8":-839371064.997656, "col9":-2820518180207585.420, "col10":-27518074549067322.799, "col11":"2023-04-01", "col12":"2023-01-20 23:26:49", "col13":"2023-10-20", "col14":"2023-08-25 00:04:01", "col15":"8iYzEiw7AMOd5", "col16":"0@P#6", "col17":"BdWm*QfNDS2ty?^cxcNgHxDda3rHiFvXbHrs;L"} {"col1":-1482004443, "col2":102, "col3":-12999, "col4":1, "col5":-6961079697649502866, "col6":5857042070324174976, "col7":14277.545, "col8":-1583282209.721317, "col9":-78563765934769168.374, "col10":59319192883565341.984, "col11":"2022-12-24", "col12":"2023-07-26 04:50:03", "col13":"2023-09-07", "col14":"2023-01-10 21:29:43", "col15":"VaJH/X*K/D+w", "col16":"h49&Y9FGYt&D6Aig^lqbP)c+qDpi>R#$OlL6,gqY,", "col17":"&m+v03q6D@;Z9te5S)o8@h/2cGZ=Cpy*G6h8VOK9wSgH_(82bI~N96CfoepoO0`t`Rh_~BIPuq76R8ezFW>;z"} {"col1":652276964, "col2":-54, "col3":-19502, "col4":0, "col5":-2722052385324355445, "col6":-2372892998911631963, "col7":17475.604, "col8":-1783374012.97851, "col9":43667004322191647.526, "col10":75072779420286165.380, "col11":"2023-03-15", "col12":"2023-10-09 08:54:52", "col13":"2022-12-15", "col14":"2023-09-04 07:53:29", "col15":"i,i~yA;2Zl9P7*", "col16":"7E1;FbW9.LRT1yBl>#", "col17":"AN@^I?9/?l/GllxiB)^&k*y/Hy,Epewpdy-mL~#Bh4*?NQ+S~y,X2rI9+$ws8l_./&ESS/&;ANFrN&DZT@"} {"col1":-627269573, "col2":23, "col3":-8953, "col4":1, "col5":-8611933685663538328, "col6":-8745338265499505032, "col7":28135.436, "col8":2058707064.219137, "col9":-19839219197164786.827, "col10":55688732490232678.640, "col11":"2023-05-11", "col12":"2023-05-26 09:59:24", "col13":"2023-01-07", "col14":"2023-01-16 16:52:43", "col15":"pz7^U", "col16":"0ji0UC6", "col17":"&(?Ko0h^g,FULq(8DcTPXxO@`"} {"col1":-1974740230, "col2":34, "col3":22263, "col4":1, "col5":-5083433021044869188, "col6":-6379889206909365694, "col7":-24358.887, "col8":-1581447038.60196, "col9":1659553167832696.312, "col10":-74926401344917067.130, "col11":"2023-02-01", "col12":"2023-05-03 07:39:31", "col13":"2023-08-15", "col14":"2023-06-28 17:49:47", "col15":"?ckjkT$l,Ce", "col16":"Q85oUjT9DK=u1+sL#(e7DK(L3uSUNcHEbrjO>poN~U1V%HCndj`&GVPE1MvSnKyM0+rOlBcXzdRkrM#x8q$i-Vb#n@pVB4S", "col17":"=^^G7T07*EQfcOn6FhSzr=$X*!jPo5fP!uTLyQ@cZF).pS`^_rW9=&9hVOYifYjg"} -- !sql_s3 -- \N {"col1":-1640717181,"col2":81,"col3":-28186,"col4":TRUE,"col5":-2384910521917839803,"col6":-8671049934091498720,"col7":-24659.511719,"col8":-1219672897.702773,"col9":28464451948163873.805,"col10":81312241556878151.403,"col11":"2023-06-10","col12":"2022-12-04 17:56:00","col13":"2023-09-07","col14":"2023-03-25 11:21:00","col15":"?k!Hvl.yOljS","col16":"LO!$Rv&PWM`RCY=wW3MHp*e.>(-mwwO)up8=0aV,p9SEseGq#>","col17":"WI-..k#Ztk/XDZbyHnMP,7#J.8j2NyFqw,I-"} {"col1":204687839,"col2":-82,"col3":2252,"col4":TRUE,"col5":-19971071040251667,"col6":-4155088892121165336,"col7":26448.962891,"col8":1770740365.125187,"col9":60792873952372289.901,"col10":-14030812497137925.948,"col11":"2023-06-19","col12":"2023-08-19 11:39:08","col13":"2023-10-15","col14":"2023-06-11 10:49:52","col15":"vWMgFZ!&iZ5(F","col16":"oJ$;rW2^gQ#mTA","col17":"kI0/~du#OW9hW!>uv9ivK*Z,0bFlR+)yqznNUvMZwN+gzX;Wd)yNl9_(Gw7M`,*>Jec2iCu#_"} {"col1":-2003600874,"col2":-69,"col3":-22655,"col4":TRUE,"col5":-2569480559938805074,"col6":1878064350493481255,"col7":3894.890625,"col8":789107031.013365,"col9":422711248962606.869,"col10":89317269874267004.107,"col11":"2023-02-09","col12":"2023-08-23 01:13:38","col13":"2023-05-13","col14":"2023-09-19 05:36:43","col15":"/EcG>MMvXu)m","col16":"2__N+dyiBTMqik2gMX","col17":"mgYMy@^eE%^&5bZhwi~d#~-?BVT-5(_sMr;j#d(^_ELknHw$kw-x0_4HuMb#uXZbJO_,_nUrH"} {"col1":65437020,"col2":-46,"col3":-12018,"col4":TRUE,"col5":2862131367901130287,"col6":-3532338074579255894,"col7":-29409.671875,"col8":-989688444.043172,"col9":45161442099730151.250,"col10":55537833004458471.913,"col11":"2023-04-03","col12":"2023-04-11 20:34:26","col13":"2023-02-22","col14":"2023-01-01 07:06:31","col15":""} {"col1":574017729,"col2":1,"col3":7437,"col4":FALSE,"col5":-9006050591013304373,"col6":8641070966538487677,"col7":-28902.050781,"col8":1681509274.217499,"col9":-88825566803058829.347,"col10":98533291755312883.350,"col11":"2023-04-15","col12":"2023-01-06 06:23:32","col13":"2023-02-12","col14":"2023-03-28 03:17:07","col15":"#>nWjJF$","col16":"RM&jYf~KvhNyt1Y%=yobHgXQBmfNj%zcBZx0E3w=%Z1h!T9MCtKbAxgD/jVOMO$iG^H!tinX@XfqEx/h$","col17":"JZK@m-4Zc0;O+*DLuxw?ESNcqN6GUEcz"} {"col1":1312246670,"col2":9,"col3":19994,"col4":FALSE,"col5":-3267472655758334247,"col6":8285340605613836903,"col7":-10209.022461,"col8":211608658.602411,"col9":21651311306694744.296,"col10":37400988704917411.582,"col11":"2023-10-07","col12":"2023-05-31 03:59:17","col13":"2023-07-25","col14":"2023-08-11 19:10:54","col15":"@Ij5I_3gR(kWG","col16":"_/wD","col17":"GrMdg72&fV53(_q?ZbYGrDKMi3-#4H3pu(M=c6*(^NY2?u*VMh7fmUTB?eopFxET9uZ3?WH3,.VWQ2c_/78@"} {"col1":1683904273,"col2":114,"col3":-24879,"col4":TRUE,"col5":8135300646736071863,"col6":-533138965112586068,"col7":-4603.648926,"col8":2137625112.865370,"col9":-63027635477510479.768,"col10":-51263852143163526.143,"col11":"2023-05-18","col12":"2023-08-24 14:30:10","col13":"2022-11-23","col14":"2023-08-31 07:10:41","col15":"?+wPp%X8bbj(^@","col16":"`4>g*MM@EfHoKaK+cG~kyx+D>GG`/^wDc0z@V&310o71B2357$_;eZ@T*","col17":"O$T=JM2a#e?o%F?BK^Y$#)AQEYQj-5%2BNDq)c`UAfE6Y<>588"} {"col1":643219270,"col2":-20,"col3":-8137,"col4":FALSE,"col5":2552650640448880115,"col6":4674768345935204778,"col7":-28442.773438,"col8":611533148.902466,"col9":25998828839996242.461,"col10":-14673004593363430.607,"col11":"2023-02-18","col12":"2022-12-30 07:38:54","col13":"2023-05-17","col14":"2022-11-29 16:40:22","col15":"fG~#TwD","col16":"#,yvT(MI%p~l%+Rc_TRAA76-ofG7gA,%1bp%kNmvo;)H=$iqi","col17":"6np/u"} {"col1":-1060443009,"col2":-67,"col3":-22580,"col4":FALSE,"col5":-4444031682962794134,"col6":133763345107711635,"col7":18073.378906,"col8":248387995.865393,"col9":62095529744555286.698,"col10":4044200079094191.88,"col11":"2022-12-12","col12":"2023-05-27 09:33:57","col13":"2023-03-01","col14":"2023-05-29 17:39:04","col15":"?riaicX","col16":"rT_@BeZKwQk0TQx9C^POv(QR>Jqz2Ve?EyFm+TMYWh6j1Yu0hfBliCECY^b8)P^d*Jfh0kGqER?T","col17":"Idver-_^5ceDdzdn^P/N.nRMSPuzCqczLSh?)bl^OcSH5?F@c;P$K_O?__RKb~8)`0WB5_YfUTZ>^pa;le^r2DwRjqbJs0T`DUd"} {"col1":169247257,"col2":84,"col3":6693,"col4":FALSE,"col5":-3628860903341657653,"col6":-5015295262109218606,"col7":24289.359375,"col8":-52506094.523564,"col9":78795489215042230.357,"col10":-79644456932811905.834,"col11":"2023-05-02","col12":"2023-05-02 06:48:52","col13":"2023-04-26","col14":"2023-09-08 16:18:26","col15":"t_=Uk6Ck1zV2l($JF`Q/A5(Ev!gU_0?Q#2n&&qv,2pm+gnZoori_b.*#FF4#!O<-Fv","col17":"_giXg)6;#0<=KzV->z4>QBYIa6L5q8GS%(GNeFb1&%LGKZ?=xYyJ+k_Muejd_8ZDM2+^t`+&m_0"} {"col1":560863439,"col2":-71,"col3":8799,"col4":TRUE,"col5":-7959962633037749654,"col6":-328732735937660903,"col7":-13256.823242,"col8":831484450.670579,"col9":-87334457318899243.239,"col10":-8966873817392032.630,"col11":"2023-05-08","col12":"2023-06-10 10:29:40","col13":"2022-12-02","col14":"2023-08-07 18:35:43","col15":"Y","col16":"g?CE?+WT`zvCP$U(EPr;8^W_4-Rd2Dm*pj;4qyAv#u@QWvaO~)0Q>H-8ooaCmcHrh@s`@^``(A","col17":"C880^~j?1kcZRK$@2Aa$z4t$rD$"} {"col1":-515575452,"col2":-113,"col3":-24632,"col4":FALSE,"col5":4872295739581785324,"col6":1645563956122792580,"col7":-5648.771484,"col8":2119787276.246767,"col9":91142813279352061.648,"col10":-3227778190014385.836,"col11":"2023-01-13","col12":"2023-03-19 11:17:52","col13":"2022-12-01","col14":"2023-05-08 05:34:55","col15":"u,6RTgWApC","col16":"c(0hRJGA@I,5qgH/`=>FRAaaM","col17":"e8a-wH&;r>T>gz1YBDp%H29E5$o5Xkw,=Gz58o6/^t4pC9tMEa5A"} {"col1":-768191949,"col2":-22,"col3":-17958,"col4":TRUE,"col5":-5474863816659413511,"col6":146498896644460146,"col7":-21183.820312,"col8":1533467928.404991,"col9":-65028045572118641.195,"col10":42087598282844182.564,"col11":"2022-12-23","col12":"2023-09-06 09:40:11","col13":"2023-02-15","col14":"2022-12-27 19:12:20","col15":"*&,-SB","col16":"tx","col17":"B,>hor25X%ti4J8Y*ubr@?g$k0PR#wijM1UKm.ZY%6j3FI*zLReOB`WelJW^R!R#sbE&U!>`YYOFj*~#044AP~$Drdp=Q!"} {"col1":172233591,"col2":8,"col3":15319,"col4":FALSE,"col5":3502657102937957793,"col6":3164146766365984227,"col7":-8501.517578,"col8":-1750170652.325613,"col9":-52876700116535801.78,"col10":77104328550003023.32,"col11":"2023-03-04","col12":"2023-03-25 14:23:39","col13":"2023-07-03","col14":"2023-08-20 15:49:48","col15":"5;cjMtPH5QfVO","col16":"c#8L6dxjJSv7lGKr*_ww$^$I?%R*yeDp5C&hag$Q`P^8*k#!h$2aNolj0K5Bh?2%^;jkEhMFKj.rUuY*t!<#XI$nREm!t=1z+37Yo/R@905Fz)^10lSFStbOi8v%,oF"} {"col1":1668695486,"col2":-16,"col3":51,"col4":TRUE,"col5":-6120027227101236921,"col6":8994890486569440069,"col7":26802.582031,"col8":1225698961.521930,"col9":85050625432102244.886,"col10":-62310261336359009.669,"col11":"2022-12-14","col12":"2023-04-13 03:12:00","col13":"2023-03-23","col14":"2022-12-14 09:54:32","col15":"UzA","col16":"eil`B#4$+D4Qt--!DL@`L&$~$PMBw/V68/Avv<1xCT?A7?","col17":"rLlE^DR2Emn"} @@ -5723,16 +5723,16 @@ false -1305655648024129881 {"col1":-109018203,"col2":95,"col3":1040,"col4":FALSE,"col5":1213573253739426718,"col6":5887198535544692924,"col7":-31140.394531,"col8":1255965892.212168,"col9":-61962838739943387.470,"col10":-19056223934465544.729,"col11":"2023-01-19","col12":"2023-01-22 10:45:42","col13":"2022-12-06","col14":"2023-10-09 15:55:41","col15":"iPQ*p3F&pa.","col16":"ii)GAjUPROVV#3i=^),/A9@YPP/64/E,v.ddLlxIJ2d9.DvfyrMas-Oau5GRQ~=TjOy,~YTI@g6hDE@XtEeJNoy87>bboE9`^!UC7VtGBLWkH,NEh_lvSit)cy%.8+yhiKwo4Wh_n4Hor)7$Xt$gD?014","col17":"`vCpFq8TA-q0!zvROGPCai0yg)?5@kt)8YA~zmxzbrP!uk2>hj+9^xwjFre.=2Zeg7^dgC2`y0$u*fg/o#S6/MK.(Pr%"} {"col1":1899943463,"col2":37,"col3":2246,"col4":FALSE,"col5":-4951688928843487257,"col6":-5871708612517920873,"col7":-30955.121094,"col8":-1310741529.497881,"col9":-28114589493480839.180,"col10":-4666787140170392.754,"col11":"2023-05-12","col12":"2023-06-20 14:43:31","col13":"2023-07-09","col14":"2022-12-21 18:35:35","col15":"~$ql","col16":"3u<66R!%f7;oabC/L;.w$r?aJ<>6CMcr@2CD&pSNKDN(F8v&RrIG7sH/L7h`!^A7yvin5GyyNpANe4qa+;yFdwa*Yh)C7"} {"col1":-617605788,"col2":-74,"col3":-2757,"col4":TRUE,"col5":6487724033499106645,"col6":8648649976215234807,"col7":-24932.902344,"col8":-1737652464.637855,"col9":47661928494923464.514,"col10":-18871661962508848.13,"col11":"2023-07-22","col12":"2023-08-17 18:45:43","col13":"2023-10-10","col14":"2023-10-30 20:43:50","col15":"yqP`gkELa^~v","col16":"=NT1%","col17":"7WcRN!/_?q692HDT;r&<<=HIEo^p_F`f.Wx%/Xo*=xjxBpG9$XChpd*$IcZm<&h)7NSPXi4W(L-0yH-"} {"col1":-146004545,"col2":-99,"col3":-13874,"col4":TRUE,"col5":-1873662616929194825,"col6":-4102872614774951796,"col7":-30981.337891,"col8":1146549364.026826,"col9":4053407742694729.857,"col10":-34115166491637095.998,"col11":"2023-04-25","col12":"2023-06-25 01:48:02","col13":"2023-08-15","col14":"2023-07-14 12:17:35","col15":"@kJ","col16":"k8A7B*ojSf,OL7_9j,/H52na","col17":">"} {"col1":-1420183606,"col2":60,"col3":-16224,"col4":TRUE,"col5":890907351795771091,"col6":-8002612642135446978,"col7":22398.701172,"col8":-1564084786.232473,"col9":77801571926256180.537,"col10":80532948741812600.53,"col11":"2023-06-28","col12":"2023-11-04 19:25:59","col13":"2023-02-23","col14":"2023-03-03 20:46:12","col15":"T","col16":"uQBDD3h%t!lg_GK-F9O#qHi>GWl7&6&MpMjKBn6a.U^^7tFz.n/79,uc>-a6X;Ar","col17":"*8j@D!LFYa"} {"col1":1396846721,"col2":-85,"col3":-1773,"col4":FALSE,"col5":-3730705072218316389,"col6":122220062156248410,"col7":-5694.234375,"col8":-489611342.166949,"col9":11046974871535574.832,"col10":-13104723613919106.467,"col11":"2022-12-10","col12":"2023-11-08 17:25:04","col13":"2023-07-10","col14":"2023-09-12 13:37:25","col15":"cQ(vqvfj","col16":"V.RdHTfYbtdR4$N6e5dp&bq>5UM<00,~1jrKPGN#(Ccc`Itro(G4^0B^kwiOh8K_","col17":";`fbudZVKNewSu;?Sg/wx7d~L5!@2"} {"col1":-56128305,"col2":40,"col3":20188,"col4":FALSE,"col5":7666328627803390251,"col6":923144418878203497,"col7":31984.298828,"col8":-1664240520.054270,"col9":-74938556587882655.371,"col10":-41218250646381327.153,"col11":"2023-09-03","col12":"2022-12-02 00:39:47","col13":"2022-12-16","col14":"2023-04-04 07:41:30","col15":"TE(_ks/_XN","col16":"s7=kNGeQ9%i.tP+bB","col17":"YDKTThW0/sLoB9AFEeFg9`AoBeQX)).3UL628pB-eissM+s~u-"} {"col1":1806780854,"col2":93,"col3":-25860,"col4":TRUE,"col5":-1102612234507953349,"col6":8588082954630703639,"col7":-4749.482910,"col8":-1223993865.069274,"col9":-22132350049705251.542,"col10":-1817877420496083.590,"col11":"2023-06-03","col12":"2023-06-25 15:37:33","col13":"2023-07-19","col14":"2023-07-01 06:20:47","col15":"ONgOO3!+2_PN8zuM1^H,7a>9hnZ","col17":"f7yclgxQg0iSmRt3ed*dgCd(qK/_b)zspK6@DiC!7~ZuSqw/FAv~PpK7C~GfUXb&ZfgL/O7SM-OZ@1y1(nvjr+dXHL!a3HG=XFo!d/2teg;"} {"col1":475405657,"col2":21,"col3":-23022,"col4":TRUE,"col5":-5689090111554222280,"col6":-1629545821989207710,"col7":-21382.814453,"col8":-1799941460.309764,"col9":-34084440974483515.433,"col10":-83001267799238306.638,"col11":"2023-08-31","col12":"2023-10-26 09:25:46","col13":"2023-02-13","col14":"2023-01-07 02:03:41","col15":"$rKuXQzd","col16":";","col17":"C!wFqx8MM_eO>mtTRou0>=O6y);~M4M9.S,n!n&(X0(A"} {"col1":-1444041529,"col2":-50,"col3":28282,"col4":TRUE,"col5":5456726727166450140,"col6":4693800342884617808,"col7":2611.711426,"col8":667209713.832867,"col9":-64903236422359117.367,"col10":-68840982433536152.863,"col11":"2023-05-29","col12":"2023-05-29 07:02:05","col13":"2023-05-22","col14":"2023-02-14 05:53:56","col15":"IueMk,7hu3(B0","col16":"GjcIl~IASg@g&D6tFOw(S#*%o/;rl9u@RsvKe-", "col17": "LTl)O&FsU0<4mq5_a!VkB(dy"} {"col1": 293498095, "col2": -121, "col3": -25965, "col4": 0, "col5": -3576656064125326132, "col6": -5657804083675264268, "col7": -30704.178, "col8": -904104728.103341, "col9": -3159432710175410.370, "col10": -45496500895008845.756, "col11": "2022-12-08", "col12": "2022-11-19 03:19:20", "col13": "2023-04-19", "col14": "2023-10-01 09:10:42", "col15": "M1/gn^", "col16": "3e3^nd>C*R&P-K`Q(/l#S@p#~VG6N8bakqb!6JOCPi>OKf@FyVx2v!E_GzXS&iI_rvtU3@nH~~jWu6@%4>", "col17": "ECpA8MXR9"} {"col1": 1891310032, "col2": -26, "col3": 26695, "col4": 0, "col5": -374125000529149443, "col6": 2171945590552452381, "col7": 1041.4928, "col8": 1273785834.848136, "col9": 97681462870233953.548, "col10": 80612975133223453.920, "col11": "2023-03-28", "col12": "2023-09-23 19:05:17", "col13": "2023-01-08", "col14": "2023-04-22 18:50:43", "col15": "EC><,k", "col16": "UuW2bFgOk", "col17": ".yuEbs~=_md6Q=p_rC#4rM5Fv>2;)`1?vo@o*OHlmw%w1yqWi&8heNZ?~8!C0qL"} {"col1": -741198949, "col2": -125, "col3": -19192, "col4": 1, "col5": 5676011356690276916, "col6": -7208944717181851294, "col7": -16968.037, "col8": -172360599.036606, "col9": 11062817494936380.754, "col10": -20473655271393218.620, "col11": "2023-01-05", "col12": "2023-06-05 05:32:43", "col13": "2023-09-25", "col14": "2022-12-11 18:46:30", "col15": "uo*`,0x4WusV8", "col16": "YBjQda$7u07noHXpbBeAqy^0Z~K5eC*l7NE8r`O^-*K3H(Q3c1i1R%FZTC-#ol`8`.uTDxsBrtnv~^41TTL,f-#Nx=fx1)U3#;9K=osN(BCPa/VJP^yb=x-wC", "col17": "$Uo7qZ)*QOk#*nXua`~=qi4*+F-DcC+~)8y#C6+UzS;8wr%?omo(XHQ9$C;A)a1Aw%T", "col17": "hv6lk51=2%oZ~k?s?jbdcE92t;q^*11S5Gni&", "col17": "h%EzOW5YYzGlD+#n8sn"} {"col1": 20035609, "col2": 3, "col3": 15349, "col4": 0, "col5": -822097466612981862, "col6": -8411765013373638349, "col7": 31527.754, "col8": -563702334.28447, "col9": -73307201008760924.624, "col10": 41041091789555799.240, "col11": "2022-11-28", "col12": "2023-06-13 08:38:26", "col13": "2023-09-11", "col14": "2023-02-24 05:04:10", "col15": "k<,$", "col16": "8KGA*R`O`xc4ahsU,OfQF8U+L-MYW81RD@q_vBkcCAU=~)%kzq>I419e", "col17": ">hq0RmfoN8GY1KhcX%8kSVgNepBIx=64zIC5w1cd2)@HTg"} {"col1": 681801015, "col2": 33, "col3": -3520, "col4": 1, "col5": 7366609877737053742, "col6": -3161246756640427052, "col7": -30325.709, "col8": 305541624.015199, "col9": -68808724306427475.611, "col10": -27445248172763847.371, "col11": "2023-01-23", "col12": "2023-09-01 22:06:09", "col13": "2022-12-04", "col14": "2023-08-31 22:26:56", "col15": "9~jInZTijOl/T", "col16": "t,BiuEz/IOh;/5Hgs^*toL%e-"} {"col1": -763764922, "col2": 43, "col3": -23399, "col4": 1, "col5": 783989712103186350, "col6": 4083110528859476183, "col7": 23241.365, "col8": 1995148265.406853, "col9": 96770525970445251.550, "col10": -85979799906620535.713, "col11": "2023-09-25", "col12": "2023-06-07 09:35:00", "col13": "2023-07-19", "col14": "2023-02-04 03:54:25", "col15": "Z~$?K=)T", "col16": "%0Z7_jKvdtrLWiMO2&Q$>Jo<5zh`.sd0(YWT.~Q`-B/q7,up>lw5PAA+B?h~PAfqH1d", "col17": "^*Zk4=6jLr?;fmtbcE/?y5s$*_-bmXh#H_LT>ua>2H&Bv%#e7lKc@k-;^Aa7ukG/VI6TR227%h?LT+(_v", "col17": "6TIVHg^HUKpnL(vb%EUwGhk3;)"} {"col1": 1370312656, "col2": 41, "col3": 18715, "col4": 0, "col5": -3758233030181962206, "col6": -8987717996655162408, "col7": -31457.508, "col8": -1708794275.366794, "col9": -94588829972275923.445, "col10": 3986165881623729.357, "col11": "2023-08-11", "col12": "2023-07-25 18:20:01", "col13": "2023-02-26", "col14": "2023-08-06 11:27:49", "col15": "@DS1", "col16": "T?bB7tU", "col17": "IiQ@J6tX~sm^jG.r&swNrVk1-2ONnvC5Ig(XkMI)X%@DxZbPkLG<84l_F0*kDbpId.dd@d%Tqv"} {"col1": -1169184786, "col2": 71, "col3": 31927, "col4": 1, "col5": 8390345726239927198, "col6": -7481515861580930114, "col7": -11882.879, "col8": 1647353218.839473, "col9": -83496988101917566.310, "col10": 8002364419087947.937, "col11": "2023-04-16", "col12": "2023-09-18 23:39:33", "col13": "2023-11-07", "col14": "2023-10-27 03:02:59", "col15": "=P", "col16": "62_"} {"col1": -1095228497, "col2": -62, "col3": -14579, "col4": 1, "col5": 8678662247688949464, "col6": 2327812601777741478, "col7": -18123.812, "col8": 1567963893.234542, "col9": 9922994714498675.274, "col10": 23455293548273884.488, "col11": "2023-02-23", "col12": "2023-01-05 12:37:47", "col13": "2022-11-13", "col14": "2023-07-28 23:53:46", "col15": "r1(NqlNf", "col16": "T1xKVofKWBof,<%7t>C;wtY<>3mbn/epHN2=GxB+(/*nt3YK7TLM,I14_bD@ZXu-2zy#l0j", "col17": "i~kdqVPVc+;_oW?-LRLh;FnQfLL?ieRtZ$WJm?blsQn32p6O@$J%cjb%nZTC.6m>w;UI<%)EB+n"} {"col1": 577259683, "col2": 18, "col3": -13537, "col4": 0, "col5": 5778440245350381673, "col6": 1729667696812540134, "col7": -29986.787, "col8": 462696869.740925, "col9": -64242297078135876.710, "col10": -34110060920083841.600, "col11": "2022-12-13", "col12": "2022-11-11 00:41:32", "col13": "2023-04-20", "col14": "2023-10-19 18:35:25", "col15": "k)W4Wbt8", "col16": "F<0)FFx0Ay&wdY%rRE#>t4QOL(pTd^BOW8@~KBXCvXgQ@20mrzFPd", "col17": "-WOU+(8-*I<*-F;U.4MF&Y>n*xNAbLHf/l9K_BjIdK;0T-&J0$DumP_scfWr!tpPd@g=/fyD;C7vV8&j>F/AC^r5^,t+pid@P)&^=&?g`?*iJzsx4k=<<;aqi@a%f"} {"col1": 358052123, "col2": -20, "col3": -995, "col4": 1, "col5": 8462498483626768535, "col6": -4579777337458835014, "col7": 5497.2812, "col8": -1675121192.209081, "col9": -55228000464087729.376, "col10": 54075338566731730.689, "col11": "2023-05-09", "col12": "2023-08-19 11:53:12", "col13": "2023-01-30", "col14": "2023-06-08 14:32:40", "col15": "z$8+gBbZ", "col16": "0;^hCNKLqx=)", "col17": "QH=1=ezdz`3u@IwXC~q.Hjo5Tch6LPfj_$nX>*saEQU.Oz(cL.rR*iuahbYnb*0C4*G0``Q^Nd0RPP$vhA&95q)X<(a.PfZ,H>GHG=LjhC9G.-8!X", "col17": ",DvFSRv&Ez!GJrEo1/;Nr,*Qm*_eV7S(CesYSTt3v_w>NRew~3h(IrQQ"} {"col1": 196725014, "col2": -24, "col3": -13427, "col4": 0, "col5": -7375318581248960057, "col6": -2543965274523748861, "col7": 5780.991, "col8": -694770524.546083, "col9": -76123002210744723.992, "col10": -47697265631521692.335, "col11": "2023-04-24", "col12": "2023-01-08 11:35:37", "col13": "2022-11-13", "col14": "2022-12-03 12:55:19", "col15": "0KC+u_$>", "col16": "i@-@ASL*~~/iY)1+$rL)*DEk<Z%kd&Gc,s9FlWo!42P.yo_VO*Xewr$C@b?b8;/f-_7G=w^OX$m5#6*", "col17": "P+dMU%2GvWo=*+_U$#N871~QZ@pzc,~lLCYiY)~k"} {"col1": -688049528, "col2": -35, "col3": 4321, "col4": 0, "col5": 7245845458805220394, "col6": 3912116986726525719, "col7": 10877.681, "col8": -87511596.70815, "col9": 27431649310089463.872, "col10": 53000349361497028.867, "col11": "2022-12-14", "col12": "2023-09-10 09:56:23", "col13": "2023-04-04", "col14": "2023-01-17 18:35:42", "col15": "", "col16": "%fS1#RR47;vSRM%nZorS5_/xpu.@SM.~5klrRc)^e;dFK@N-bkA$(NAX&-0Vu1LrvZ.cBjSFfYwOKQy6C!qVPw;arKX&W>p/w-P-*ZxmrLy", "col17": "o7(4@cOp3=~p%l7+23)~Jf5vb$t@yCV@CfjrxEvB`iJT0q;-)XCuX#h/6dAOP$%0fH0deJ8%DNNeH$XZ^C!Q="} {"col1": -1474368615, "col2": -21, "col3": 5177, "col4": 1, "col5": 8174349037021096782, "col6": 2571804249862798292, "col7": 9933.032, "col8": -720750366.940295, "col9": -8590320354503227.221, "col10": -94099543687278644.814, "col11": "2023-03-03", "col12": "2023-07-11 13:00:08", "col13": "2023-03-29", "col14": "2023-01-22 03:42:30", "col15": "9gn!5C!BvEP", "col16": "X)1XT$`l2Lkr93E&?A?GWlurNp//;jSuTw>l6!?", "col17": "+<2ZMd=Xd0Q<2KT.%!K.Suj45?_lTHL3LptTpI^+(Kr8P6wx&(s8&"} {"col1": -1693846609, "col2": -73, "col3": 9118, "col4": 0, "col5": -2985094276774224395, "col6": 8805992256826989074, "col7": 6244.1, "col8": 1813143653.166, "col9": -62764692014561863.442, "col10": -38325067730370117.681, "col11": "2023-09-07", "col12": "2023-01-28 12:49:35", "col13": "2023-04-18", "col14": "2023-01-17 20:14:35", "col15": "d65uY.r", "col16": ")A>je?_.Gt<;n`w51eCBOWT-kR`1ASIA", "col17": "hQWT,ge>KGm#zleH67$,`Px&A`N*kPk.ZqkO!4SG~-x/9~x*+tmgjmK", "col17": "M=_wY3E`(,i21pX2tO=f;oHS6n5,1@LU+iPFypM2zE(+(>k6XxzUqU*OTtx#!P5k++x@p60GAA>D0deaeDV$@N0R5"} {"col1": 519727040, "col2": 80, "col3": 14429, "col4": 0, "col5": -617879460517437411, "col6": -7165327641490392420, "col7": -13084.128, "col8": 1970316910.765143, "col9": -93976002804076259.534, "col10": -32558524385546329.363, "col11": "2022-11-13", "col12": "2023-02-16 09:07:20", "col13": "2023-07-28", "col14": "2023-01-08 22:38:58", "col15": "XsBMIBa^FI!d!", "col16": "pePuy7bPN&=l)?;@l6NJ7/V0Ukt1ubtmZMI$(d;ozN3!>1x2DDo>MRifl;4T8d`2_7R76B9&lePU^UK#$M`&ySGkb;)!x", "col17": "qY/@=?,a0!5EDHD"} {"col1": 564937758, "col2": -10, "col3": -19719, "col4": 1, "col5": 6205568508580489074, "col6": -238554161903590528, "col7": -8137.3535, "col8": 1023623642.337226, "col9": -2362569962650581.821, "col10": -68775335337492456.403, "col11": "2023-08-28", "col12": "2022-12-13 09:02:24", "col13": "2022-12-14", "col14": "2023-10-02 15:42:07", "col15": "", "col16": "B)a?p0>L8kL", "col17": "zvS`nT$&kYjuqvx6SM0>h*lkl^`~s$^LmTQN~*B^qdyQF^`Ofh~L.GJ5@Bvc%X>akZfc$9Xeabk1FOw1fJI@9-U-V"} {"col1": 1914314437, "col2": 14, "col3": -3885, "col4": 0, "col5": 5289140208274800927, "col6": 5523134939016922802, "col7": -16044.735, "col8": -531461112.058018, "col9": 20859664695767945.768, "col10": -95844141490303829.980, "col11": "2023-05-12", "col12": "2023-08-10 20:49:23", "col13": "2023-03-12", "col14": "2023-04-03 10:12:58", "col15": "THW", "col16": "0L35Dot/95xSb1igaBQY#jCm&q%c/MQ(2(0-sufN>BmBlt-`^L4rN2hH6D&Xy1Z8kY$>t5Z(,h1i4l2gU8e", "col17": "w`)of^9_@N=DZsU##xMKBfYAdm`fd=7V"} {"col1": -1700382114, "col2": 115, "col3": -6204, "col4": 1, "col5": -4126342125777344756, "col6": 9054982454557719308, "col7": -19103.875, "col8": 2031018782.572868, "col9": -83553942298914702.482, "col10": 58591672291818154.504, "col11": "2022-12-12", "col12": "2023-09-28 14:22:44", "col13": "2023-03-03", "col14": "2023-06-25 13:19:15", "col15": "BV", "col16": ")jJv", "col17": "EL_I^2A-KD9P^n0VGfY.DapPaHP4b=3QCZXQ0-zW@Nl$KVatwNIEs.fwG07haAK-w8kg>QA9*Q&Cq=rd5J=iOj,4b6T`YNn$!ToQlF/R-8~9-sE?mcNekAWsxWhyy="} {"col1": 1976188027, "col2": 39, "col3": -20199, "col4": 1, "col5": 54838796530721045, "col6": -4199157709856370965, "col7": -20633.107, "col8": -1314405206.528385, "col9": -17838244458606850.919, "col10": 13993039380882130.769, "col11": "2023-04-28", "col12": "2023-07-21 06:48:51", "col13": "2022-11-14", "col14": "2023-05-29 15:07:03", "col15": "Z", "col16": "", "col17": "aMm_kYB`6gpU2h;uD&8/kw3X"} {"col1": -439380020, "col2": 96, "col3": -17308, "col4": 0, "col5": 3579043460080517561, "col6": 4240896818074065205, "col7": 12152.55, "col8": 1198053802.322113, "col9": 2562915342156503.474, "col10": 7583328329290118.446, "col11": "2023-03-31", "col12": "2023-04-17 02:55:52", "col13": "2023-03-19", "col14": "2023-03-29 13:17:27", "col15": "0&P0_,,9I&dn", "col16": "HTtzP,7Ob", "col17": ">!M"} {"col1": -457160013, "col2": -87, "col3": -32076, "col4": 0, "col5": 2962490776305786988, "col6": -9219898190360409591, "col7": 4773.356, "col8": 124168385.283727, "col9": 66564244852109284.538, "col10": -17698570145691684.721, "col11": "2023-09-09", "col12": "2023-05-12 14:33:56", "col13": "2023-05-19", "col14": "2023-08-07 19:17:09", "col15": "", "col16": "nsqUTDXMfOqg!S7C97`49QcZ4Os0TI?g6E2#J/(fV>(*X_Q`(6Znf?h$PS4u8NFcB49IFq/mgNAJX~p-C~4.", "col17": "0mntxHvG8zY_", "col16": "ca", "col17": "v.@WpiI1+`>Bj#II4"} {"col1": -1135173592, "col2": -24, "col3": 12059, "col4": 1, "col5": -4173609755187683516, "col6": 9104229668324434517, "col7": -18978.926, "col8": 1538129083.152786, "col9": 49186343729636745.231, "col10": -7234568807819447.144, "col11": "2023-06-14", "col12": "2023-11-09 00:22:59", "col13": "2023-01-15", "col14": "2023-07-14 13:08:52", "col15": "(~twE21C", "col16": "o?XB9l_e*+?3UZH_qGT7/r7F4~rr1$k%;eaEMa?r4@P@jk)6P>XxpFY2(q9iiV~fm7eEP5oN<#zlsw~wji"} {"col1": 441268110, "col2": 102, "col3": 13250, "col4": 1, "col5": 8597594907679023161, "col6": 5667613937641491367, "col7": 29102.045, "col8": -319989982.17985, "col9": -81087716870785483.143, "col10": -64800115883130558.550, "col11": "2023-06-02", "col12": "2023-10-04 21:25:45", "col13": "2023-03-03", "col14": "2023-09-23 07:27:31", "col15": "G-48d", "col16": ")EWS(!Qtciw`^3x;+Gu,Qr", "col16": "tuV0Ia95UN4WJ,d>U,gXIq+AB&FWl@+ZIZ7n1(t.!rozlH3)L$I", "col17": ";rwx#I@!I9>KNEo-e3~u2!Z7"} {"col1": 1972978288, "col2": -50, "col3": -6168, "col4": 0, "col5": -4179719101679261778, "col6": -5658599518714090609, "col7": 28802.623, "col8": 246142051.324034, "col9": -36754206589235888.236, "col10": -89884930143982612.342, "col11": "2023-01-05", "col12": "2023-03-15 03:20:04", "col13": "2023-09-07", "col14": "2022-12-27 21:53:40", "col15": "id>=nmLO", "col16": "q)ImOZMO-%"} {"col1": -857517907, "col2": -13, "col3": -26169, "col4": 0, "col5": 1324801886191525419, "col6": -633990266050297169, "col7": 3735.309, "col8": 789053200.026963, "col9": -57720955152670311.476, "col10": -8743840658043643.960, "col11": "2023-07-31", "col12": "2023-09-06 17:05:54", "col13": "2023-06-08", "col14": "2023-03-14 17:52:11", "col15": ">rSQBh-<9$q~1/", "col16": "3=mvLVLYK#5M_mImzbf$m4pjO?xqaMnD3%Wk6z9!?VK>asTqihfTun&?rjnV@hCKqNFLZ!t?Z,$I&0VO14W?.$Ifn", "col17": "3$*wLCj/g;FeFuL?1)xDf1qi-2pC34-nHU*wrC"} {"col1": -794984628, "col2": -123, "col3": 2770, "col4": 0, "col5": -8407115878675052393, "col6": 6290621142790299283, "col7": -20395.217, "col8": 964838226.951184, "col9": 62168795366363553.685, "col10": 3990660931483287.956, "col11": "2023-08-01", "col12": "2022-11-15 03:39:25", "col13": "2023-05-22", "col14": "2023-01-16 06:11:45", "col15": "aBBlJ&qLR/", "col16": "j%jpN=i9M(qm~P6$lrFZX#%K/V,+lKT8PLo7S=nBDaW+%k", "col17": "SBYA;xsw12%VfP3h@H#t%K2217huCI5%Xzl7/uVQyqEDk+iuY4CfzD4+#n4o"} {"col1": -96204677, "col2": 104, "col3": -25072, "col4": 0, "col5": -495962334761368972, "col6": 8827206595048036803, "col7": -11482.668, "col8": -1689118748.978966, "col9": 67715972226386452.885, "col10": 13169427423288280.809, "col11": "2023-08-15", "col12": "2023-01-02 17:50:30", "col13": "2023-07-23", "col14": "2023-08-06 21:07:43", "col15": "_ZVEgU^HRmfqt", "col16": ".o2d+YKh6g42*c#", "col17": "_L!"} {"col1": -2115935053, "col2": 27, "col3": -19348, "col4": 1, "col5": 6444729399502953215, "col6": -7824339815255256852, "col7": 31207.164, "col8": -1416336003.514647, "col9": 30769340447285264.393, "col10": -16602275863253066.303, "col11": "2023-09-03", "col12": "2023-01-20 01:35:08", "col13": "2023-06-14", "col14": "2023-01-16 04:44:31", "col15": "h", "col16": "_uZ^TAbpz$&E>G;g7Ke/", "col17": "qAFkpQ29_t~6-$W_G$@qi6q.wZ_l~O9gBk#aIkHjxu>-`~$Ur@M~VF%l.otQqlsdt-+c*/"} {"col1": -388835131, "col2": 53, "col3": 1173, "col4": 1, "col5": 1058814101912670358, "col6": -4766475424119347961, "col7": -9593.519, "col8": -2026900846.597067, "col9": 32638844755892053.680, "col10": 74267061673690142.256, "col11": "2023-04-10", "col12": "2023-01-23 06:01:37", "col13": "2023-01-05", "col14": "2023-01-10 20:32:45", "col15": "vatM?TjC", "col16": "-czPSz7d;hzG%`_L^Lh(iQR_TjXjNJu=4-pB20qcn@s`b&BXBJE", "col17": "ZC1C1b7bXzPw8eL$aQK!sAs+3mH~xq.Y,4sAf~aI!VrfJ!rEm9#g;,?(WY5XrY$Hu9ieq1JfeuoJq+?P0jB0tI64sM/>#E.kBRZ>E_%J`kg$iXvES2KqpLpF&Q>Cxm=u1GkyT8X(;^YVvxgd3ukoX<@0=UE=^@Fy1,3ZmN5y~gE179^6s=z,*X!"} {"col1": -890641036, "col2": -108, "col3": 12687, "col4": 0, "col5": 5992849989632294216, "col6": -509868396952444310, "col7": 25711.898, "col8": -155735546.802502, "col9": 30165578514147105.800, "col10": -8197414077466183.531, "col11": "2023-05-22", "col12": "2023-08-29 18:34:13", "col13": "2023-05-16", "col14": "2023-03-01 21:45:35", "col15": "9A3@>H6t", "col16": "M2-d-@D17CX+$Co8K`<0TLns@%#PT3ZS(8JrM/2)lO~-9N~`AGr^!mg_I=.d/9GNP", "col17": "8/e,sjJC%Nb<.XIIkQEES~Is9JMzf-cUXnln.=;T@;d#K=TsahgOL9aJ+F!zDCEBBDDBo0d^BJjO(Pgm4X^x<@He,L;e^KJ+oLBp`(l-BHC70G5*~-"} {"col1": -214174654, "col2": -66, "col3": -26315, "col4": 1, "col5": 6675376020097387538, "col6": 2349535819201158151, "col7": -2783.544, "col8": 897715524.600938, "col9": -45965025270498650.974, "col10": -67730060493155209.887, "col11": "2022-12-15", "col12": "2023-11-09 12:10:53", "col13": "2023-03-18", "col14": "2023-04-16 19:23:56", "col15": "r4Y@2Ih#", "col16": "a>,4Qp!Y,o+~a4N_.rE_2eIhsgTH>vX(bm~3l$vdJtrnp@?pMKp_IBASj!i!*ruZ*3iMOWChwPRybRUmEbZ,s", "col17": ")l+^jtn@MQLK*9a7G)MfSKuY8/=G2DNh0f>d%oCIq>!(.7YqV~yWmi%+pwWLRmU88TZI-->Y#"} {"col1": -2129952087, "col2": -126, "col3": -2059, "col4": 1, "col5": -8837074953586926207, "col6": 5112551742375942421, "col7": -6595.1167, "col8": 419447242.935179, "col9": -92635600957786296.964, "col10": -99426600244345493.224, "col11": "2023-05-17", "col12": "2023-01-04 14:05:29", "col13": "2022-12-17", "col14": "2023-04-30 14:43:23", "col15": "-a", "col16": "Y@OQLeFB!n`xo?@hDQ(LQfTb^Ay_!Smggqhg%fceGJd", "col17": "/q-IbTh@0v-)i*,XOo1j>xlzCp2!-eN-giu(P7^aK#uk`,/yzbS"} --8584330716254438722 {"col1": 933995213, "col2": 1, "col3": 3267, "col4": 0, "col5": -5550829509029152855, "col6": -8797152448685401671, "col7": -6807.821, "col8": 1881218185.650995, "col9": 44837386411291788.739, "col10": -77744549308538297.360, "col11": "2022-12-26", "col12": "2023-08-24 18:48:11", "col13": "2023-01-30", "col14": "2023-11-03 12:45:38", "col15": "4be", "col16": "1=)tT^~uN(d<%FlwM;`JYpKWzB<+x.PFYfbh!X9EElGf1&bba6;;i2iMz/2Kp_qh$-I^L;3?Sl"} {"col1": -1333802234, "col2": 43, "col3": 11242, "col4": 0, "col5": 1196312694517239929, "col6": 6213937979195932063, "col7": 12792.475, "col8": 1428325473.834884, "col9": -62192826868698867.216, "col10": -93168441979234449.692, "col11": "2023-09-02", "col12": "2023-11-05 11:46:33", "col13": "2023-01-08", "col14": "2023-10-29 05:00:38", "col15": "EN6$dzs~(d53", "col16": "uEL)aj7RcOy2B>akn", "col17": "V.GohGHLV6J6/(Xx?9(7fB<_v9TByzA?7?6Yw$PhvyuFfYk^&DGstDc>KG3UqcU!.m;xm%@LE+gEsxk(/Pbbpw?"} {"col1": 1086518829, "col2": 19, "col3": 8050, "col4": 0, "col5": -3082049133083595029, "col6": 5683422793173472738, "col7": -2291.2551, "col8": -432505729.081493, "col9": -47674030032621905.804, "col10": -80490934942919187.814, "col11": "2023-06-23", "col12": "2023-04-18 23:49:15", "col13": "2023-10-05", "col14": "2023-04-01 08:55:04", "col15": "#P-Bqu", "col16": "<,F@^IxJCX,4#vmwXV2ShV>C2mlige5>NJT.,/T/~@LOKo3cF_=^p", "col17": "Z.Hqh(h3Gl7V%5L%(kk7E37w/Go8wFJo?fBOhlH,qP#gA?HMc)E2psS/8J.Kj/5H3*J>y69SflpRdW>kk5U=Wi;ih,H3L-/5H8ZAh?", "col17": "9G!&Shr?TRk=c;0MmBkB^ctv3%D_(zKTH"} {"col1": -1331045850, "col2": 56, "col3": -31044, "col4": 1, "col5": -7244667617013002360, "col6": 1902503764317765481, "col7": -25882.256, "col8": -380049302.431098, "col9": -9606911474006002.109, "col10": 17328632045627481.982, "col11": "2023-04-19", "col12": "2023-05-27 13:22:43", "col13": "2023-02-13", "col14": "2022-12-13 04:36:42", "col15": "4C`o>N#W(XW)F.M8UuUtJLRU8%S7T6cVK^5x^DY-Lr=8V.LyxYo+9uJ6W.9)t9k_(t@V.BTcR8i+", "col17": "Iul)yq?wr*jT~A&Xw3eC)!It21loq%CSn^Im)$t/-ye4SweU1!^S?t"} {"col1": -1125037299, "col2": 82, "col3": -22808, "col4": 1, "col5": -8303816131517042997, "col6": 4386623234696664296, "col7": 31390.795, "col8": -321331979.556449, "col9": -9500951408855814.912, "col10": -15572524372861648.542, "col11": "2023-04-24", "col12": "2023-02-14 08:58:45", "col13": "2023-05-26", "col14": "2023-09-15 23:55:02", "col15": "3&@", "col16": "h6tMUgR4ZgYkbTaz3l-cZqOXH=$c0$eVnBq~Z`/i-OIcycC?o!,Tbp/%", "col17": "~rMw9K?15@l`?G7zbS;w6D0-l0oVmD.G<#ZjEEw)j.$#RVLAW`/XFk7--,~z;2b"} {"col1": 1558710429, "col2": 12, "col3": 28523, "col4": 0, "col5": 5442602451983227812, "col6": 5264019481572723786, "col7": 30198.125, "col8": 506413823.027176, "col9": 45601850479542885.984, "col10": -13258345057980610.190, "col11": "2023-03-14", "col12": "2023-05-08 22:21:46", "col13": "2023-07-05", "col14": "2023-01-05 03:50:50", "col15": "", "col16": "uHkiv$KU)dNI6W8DU?>>zIIh^.^)Qjpr2ppOZD!?6,)sOBEFe%a4w4skFT4rk", "col17": "S,Xu`uz3QhH;COFcN9*6PnsH)Mf4%GW^OV/#xce)*BANp@263aBjV2?qIB-5$^Q/>Hv6%~ph"} {"col1": 610229798, "col2": 63, "col3": -23158, "col4": 1, "col5": 2607349881852175976, "col6": -4831004874800938260, "col7": -21914.416, "col8": -2107006238.699932, "col9": -13894840376099276.889, "col10": 49077690290463004.191, "col11": "2023-11-02", "col12": "2023-07-29 16:40:01", "col13": "2023-04-14", "col14": "2023-09-11 12:24:43", "col15": "StJUT(wB>@", "col16": "y(@?NZdvk3O3axN-AN=ps9=!~^5apnzz!RW.CZzs`4&%l5p0SY/>)/%t#.ZXpJfgj>^d_FGhtphZ$P-ZY?;/", "col17": "oFI/=&hVVm+Y7MJssb&KP^M7GQ!+)5`.CNOZRfqwR$1S%cMZW!Os$(+rfJB&###*Pg)uDu,IdFK)DpOq"} --8526590106902518025 {"col1": -2135397004, "col2": 94, "col3": -29670, "col4": 1, "col5": 7090872835518711333, "col6": -1916621235651057979, "col7": 23394.068, "col8": 1655037893.333014, "col9": -36143234288746464.456, "col10": -61754523073078713.138, "col11": "2023-10-09", "col12": "2023-01-10 08:53:04", "col13": "2023-04-07", "col14": "2023-05-09 07:46:38", "col15": "1V97aoL?&c!o=", "col16": "GjA`VBdRgX", "col17": "KgFF&je5+,NvGEdAz_;dufCth_a&5,gSu~orh%)pUn1FyV+5,cyA(Yw"} {"col1": 768834811, "col2": 111, "col3": -12368, "col4": 0, "col5": 6987671692766035939, "col6": -7494881589590755673, "col7": -11690.967, "col8": -800701084.768676, "col9": 85704989772506616.614, "col10": 49389328660634750.811, "col11": "2023-10-26", "col12": "2023-10-06 18:51:32", "col13": "2023-05-11", "col14": "2022-12-08 01:37:15", "col15": "n&JJ$4r4K)8Q", "col16": "W&x/kQI;(P/PQ`9#VVbW~Ouv,vI", "col17": "fa)$MGzGg"} {"col1": -1823219684, "col2": -12, "col3": 26992, "col4": 1, "col5": -1836403498572963938, "col6": 1722310216718493557, "col7": 24048.455, "col8": 1916478884.258523, "col9": -99164804684678355.416, "col10": -91191031383207337.116, "col11": "2023-02-20", "col12": "2023-10-01 18:54:49", "col13": "2023-02-06", "col14": "2022-11-15 12:19:11", "col15": "LRU?R2&pR9H", "col16": "2_%90#WoB//HfXMKVl7ssi1Kg.$uZtbpR6Flbn+XO=<92;Vb=3Aq/", "col17": "a.lBcPe-v&wALCzy~?~mno?9LeLdec=K-_7Lh,9.UWsu@T"} {"col1": 2046878137, "col2": -45, "col3": 24125, "col4": 1, "col5": 8733335759463317387, "col6": -4889254601679646071, "col7": -1522.2361, "col8": 1772345507.502007, "col9": -4765781927035297.105, "col10": 49534300407852204.210, "col11": "2023-11-06", "col12": "2023-07-01 02:40:28", "col13": "2023-06-17", "col14": "2023-08-09 11:36:07", "col15": ";WRfOM.%/G", "col16": "hUfxWQK%VuMWj=k.n

f8M?e_IifBVczWQR<%b#x96h", "col17": "9ORK=%nvv7$j;+?!=/"} {"col1": 1931749918, "col2": -61, "col3": -26023, "col4": 1, "col5": 655886868675975318, "col6": -6228523992121274715, "col7": -30416.277, "col8": 404494499.593156, "col9": -90704723127910362.852, "col10": -48830702924564917.200, "col11": "2023-03-22", "col12": "2023-03-30 14:30:20", "col13": "2023-06-25", "col14": "2023-08-03 20:58:14", "col15": "1", "col16": "w0XlSO`^~3Mc8`J_AZ$kD-9.eZbvk65/TZkg8fU!4yciWdSUGfE?+cJ0yEI8I+f>O@en+%I%1R!ccmY", "col17": "nArT@GE)iq0,`KrBS9uyh#*Y.T=ACL.m>^xc-!ZvF=VH@v1E$K;iR_Z=z#;5~~/s&/>s)-d=Z!t%s=UY/fMQ~6IE", "col17": "w)j>29dIuV0;P13d#*("} {"col1": -784154300, "col2": -62, "col3": -25126, "col4": 1, "col5": -4498219135499881772, "col6": 6856401980615832763, "col7": 12140.458, "col8": -242951193.82197, "col9": 39747421746866133.595, "col10": 98412075066012684.979, "col11": "2023-05-29", "col12": "2023-09-07 20:05:21", "col13": "2023-04-21", "col14": "2022-11-19 03:04:38", "col15": "K=O^alW)L`", "col16": "EgcIHa^Hd(GE~3gM@UK", "col17": "qJo9+1Ho39e*Tf2S@62#FbSIF5)+e?pxfhlOEHe*S8k%#MlOplPx&U/0`7erPd3E%lWIR<"} {"col1": -1345998070, "col2": 73, "col3": -12307, "col4": 1, "col5": -2346592350776300502, "col6": 4576202285731461241, "col7": -676.7377, "col8": 1364540328.064018, "col9": 13432767121839671.998, "col10": -26324936959989359.594, "col11": "2023-02-11", "col12": "2023-02-07 07:08:09", "col13": "2023-03-21", "col14": "2023-07-24 06:50:49", "col15": "", "col16": "to_qGASeSl*X2nbC3", "col17": "WBZww5;5h5_7hv6TiCrx9wJbP@A22S3FHcCK#KGPF8("} {"col1": -1988183162, "col2": 40, "col3": -24136, "col4": 1, "col5": -417379002178085796, "col6": -1474977584348316966, "col7": 5310.985, "col8": 1063839607.392107, "col9": -54413137402446947.803, "col10": -73693930358854252.940, "col11": "2023-02-25", "col12": "2022-11-22 16:29:59", "col13": "2023-03-22", "col14": "2023-07-05 19:30:45", "col15": "qgH`_", "col16": "V^;OOSkIoiGuYYAl4y*X3sBY.3_t*@/B5&19@6-q~", "col17": "MF#?r7V9tm8lGzpKoSphji8*=z%mYM5OU,Fiq`El=0snqAJll%6LM!n^H`"} {"col1": -1180095966, "col2": 75, "col3": -9704, "col4": 1, "col5": -7929307379393601542, "col6": -3221655257874030538, "col7": -22961.36, "col8": 1350934064.919748, "col9": 71590329804082297.316, "col10": 68490249642371318.980, "col11": "2023-09-22", "col12": "2023-10-06 19:04:38", "col13": "2023-01-07", "col14": "2023-04-03 03:02:49", "col15": ")?", "col16": "Ghw%4pXF_LI1P?M^f7c4&o2K-QEW%p8&trAj~DH4=dQ+2E!n%U8"} {"col1": -1042939487, "col2": -102, "col3": -20093, "col4": 1, "col5": 258704357774718873, "col6": -4387908451084538500, "col7": -30131.84, "col8": 265721776.737866, "col9": -2616511530016594.215, "col10": 28484710821627763.956, "col11": "2023-03-30", "col12": "2023-06-19 03:13:57", "col13": "2023-03-11", "col14": "2022-12-06 13:04:22", "col15": "3rKKL3s>", "col16": "FVWF@8vMgd)ePWR?u@V+I9eSr0FK`!x;+%l6^u+bkBH+Tk+1SRrL88J4;xG%X~kxh0Rf*5b", "col17": "almPDzqhC!rL*)c8j5XLkhv~Y/y~V3x.>iD/msL)N.c8(J_s?Qlpu^zsxiIg^Ig$G%y^,_r+lsHbIaKLW9X3sP)2bRwu/(!dOKA?TZaDI`MfFd0K+9f@Dbf_xh9>n!I22MqP2X)pY7@g0PjtRR", "col17": "/m6JI,%hrjW*C/EMawnUA+P%AHG"} {"col1": -96922114, "col2": 23, "col3": -28004, "col4": 1, "col5": 8446860350965531770, "col6": 5642173086219796099, "col7": -3171.0913, "col8": -634821029.823853, "col9": -98654792721280301.185, "col10": 90696742528251983.209, "col11": "2023-01-13", "col12": "2023-11-06 05:10:39", "col13": "2023-06-18", "col14": "2023-08-12 12:51:35", "col15": "N6W4", "col16": "EXbHnU*G*x1(Fs>=`Oh;QjqM7>q5S6x=l%AeX9@p~_ubptVMbC$9/L4", "col17": "KkAN)vprmfxmbZ3-BQ2w27g2X=YtRc6!_e_Gj#H."} {"col1": 913460251, "col2": -122, "col3": -668, "col4": 0, "col5": 6507538830189845573, "col6": -9049683691868904419, "col7": 32287.156, "col8": -589894718.031317, "col9": -42663927076874213.955, "col10": -59265662945486651.537, "col11": "2023-04-28", "col12": "2023-09-26 23:37:43", "col13": "2022-12-02", "col14": "2023-01-20 15:16:56", "col15": "hJND)Sz", "col16": "VFdc4H=RSuNZ/C,6N", "col17": "PBo("} --8505366084515032753 {"col1": 382502710, "col2": -10, "col3": -1057, "col4": 1, "col5": -1053404092722092555, "col6": -3224814438034550078, "col7": -303.36923, "col8": 1394068216.774496, "col9": 35385157086902073.490, "col10": 28542472828538829.527, "col11": "2023-06-15", "col12": "2023-08-08 18:11:20", "col13": "2022-12-18", "col14": "2022-12-31 10:35:49", "col15": "aNDd", "col16": "rf&g;llr0AcaHMvj==5.x^T6<5#,s9g6Ce+%%shkcvv==<-%32nk0UKGn/Xv0ze1BPHIuC5b/=LGg6Z3S8gm`F)#w", "col17": ")xh~)TJqjj.DjX1yU2Ri6KQJax"} {"col1": -1855122167, "col2": -3, "col3": 15689, "col4": 1, "col5": -2367363947390869432, "col6": -6532659416199639957, "col7": 23066.408, "col8": 1319308662.25036, "col9": 75101865537681458.145, "col10": 847059006678943.372, "col11": "2023-06-22", "col12": "2023-03-26 14:27:35", "col13": "2023-07-13", "col14": "2023-08-19 17:08:01", "col15": "", "col16": "rspt?wZj`f,b.aEWAm5KI&s_q;yFo(>%OYX+WlZQ4uEBzq4^kJGGNIJ1W;", "col17": ",JBXQweU"} {"col1": 863299634, "col2": 19, "col3": 26127, "col4": 0, "col5": -3722113302586638684, "col6": -851562457423560807, "col7": 12379.872, "col8": 1344459261.478156, "col9": -5722993038821801.748, "col10": -17110044615450491.806, "col11": "2023-05-22", "col12": "2023-07-06 18:43:09", "col13": "2023-03-30", "col14": "2023-01-03 17:58:06", "col15": "CW4hXqcNhZ(7NV", "col16": "^-GcQPOz2j/^JouKfQ!j", "col17": "fL@>t?5)3esV/+),%xsD`;^ModFpKCj^qhGyEThhB+s.w_#0ZSEvdtmUPKcU3!I5DBaoc(?6--TxUy0lMqgGGJ_1?Ba?Q@*b6->;I_koUI5", "col17": "lu<.4A8;Po5"} {"col1": 517718032, "col2": 8, "col3": 5617, "col4": 1, "col5": 2036983629624140619, "col6": -8004741025176861266, "col7": 29875.326, "col8": 518876871.957944, "col9": -91214823930019420.126, "col10": -83897543475024225.103, "col11": "2023-11-04", "col12": "2023-02-17 02:18:52", "col13": "2022-11-25", "col14": "2023-04-16 21:00:34", "col15": "", "col16": "6hv*w,;~7ReMx-z)RyB0SncbrE_E4=ar0X(QPSxbv?v,sYR/.nsST,Lsf2lC-", "col17": "5+@eImE(-#Aq7Ti,Z7I9SmCU8jGwXs.adUs152`KV,SUN8r$A>_I(Mzpo1wyUTbQVQF+ynd*"} {"col1": -26851415, "col2": 77, "col3": 20803, "col4": 1, "col5": 8462280744723342223, "col6": 4028913701469404239, "col7": -27780.814, "col8": -1695167601.009997, "col9": -49423859244307827.797, "col10": 21504216931240673.598, "col11": "2023-01-01", "col12": "2023-06-27 05:34:56", "col13": "2023-05-01", "col14": "2022-11-26 20:17:19", "col15": ";jWy1&q3blu>6IO^dh9#B_@I.JL1FWW,Kat?I5;?foXR#s^pWy8aAQ1M=Pc+(dz&/"} {"col1": -604602583, "col2": 57, "col3": 13011, "col4": 0, "col5": -5302358667068573583, "col6": -5456138891970329645, "col7": 20375.229, "col8": 1419926154.765488, "col9": 64309450696316848.480, "col10": 30650186013769395.238, "col11": "2023-10-23", "col12": "2023-11-06 06:40:28", "col13": "2022-11-21", "col14": "2022-11-25 01:32:41", "col15": "ienLsZZoNc", "col16": "Z`7h~<62l*T,(Fum0!A=a2Dql0", "col17": "7^=JYmEr9?Js%P%1Pgiy,!l5>e-*GgFF%F#iJ/FV`0-Bjg6uR%W-LK%B2QZf*gE-(IO!p>whxfod2)eg4%/NZ4"} {"col1": 1296845509, "col2": 59, "col3": 21046, "col4": 1, "col5": 724993822370556458, "col6": 6265074313340910084, "col7": 29620.066, "col8": 1513249955.591215, "col9": -15705720077200863.493, "col10": -18756131852709044.646, "col11": "2023-05-11", "col12": "2023-08-17 11:43:03", "col13": "2023-03-17", "col14": "2023-08-17 16:03:28", "col15": "EYv*0AKQ3", "col16": "%k%,cq5^6AW4k^*D(IFeA?jMf8TZfP@AmmNj3-EVFkT>~2GHzC3=pd)R6Vu;E`0A;WrJzpo`Fv4Cqo*^^!C.($,Akh9A;+RKM^W&", "col17": "?6BBn/4tSggoWM=V`-YK=u_5*D=WP3;/G3s<6mFMa5725,9$t.!)nMta1kaI?l6t`P!+k&nKc-"} {"col1": 1787385854, "col2": -123, "col3": 29564, "col4": 1, "col5": -4220216585811082502, "col6": 4960039834428859787, "col7": -14863.338, "col8": 1683405330.677428, "col9": 57974039101802622.279, "col10": 19353920084990675.742, "col11": "2022-11-24", "col12": "2023-04-16 23:42:22", "col13": "2023-01-29", "col14": "2023-05-15 05:35:02", "col15": "O>5PB6i>NmB", "col16": "VezoSRw-mx0j6ye?a6/6pnEPl`$i#NMvQ(x+_s,ZJN9?.MK", "col17": "N%RxT2%Al_#SU<6TZK.FZa-.25+sb!hILyv?#fn^szkG=hO>G,A0`7pM/NskTuH1+E&G=K@yg;I8iUf7ONGj3"} {"col1": 181016402, "col2": -66, "col3": 30163, "col4": 1, "col5": 4495758931964433648, "col6": -8653734159677839442, "col7": 15644.355, "col8": -1356097265.535016, "col9": -89608254464744295.275, "col10": -42975241952851160.770, "col11": "2023-05-25", "col12": "2023-05-21 12:36:03", "col13": "2023-01-15", "col14": "2022-12-02 00:23:30", "col15": "IIywcqM", "col16": "T;)^_Mbku6CT1MIc0bD^#%2IaYOh@rhnrjC", "col17": "CpS3bbNX)rH#8Js5ieM<;5R?YBeE5/nUmmx7p~oY~=c/yfvRiASR*R6v"} {"col1": 1469934754, "col2": 1, "col3": 485, "col4": 0, "col5": 1224735581054006788, "col6": 6089508584939008713, "col7": 20772.271, "col8": -340537207.844391, "col9": -25669600080047259.795, "col10": 55365122064805386.858, "col11": "2023-01-02", "col12": "2022-12-30 04:14:03", "col13": "2023-05-24", "col14": "2023-03-07 14:05:07", "col15": "x4JeBv", "col16": "(o!sVg*!Z#dt0lF<*vxkfoK#1b", "col17": "D29^$!xZ)vz3.+);W", "col17": "(6t&$tmJvo`XL3s4z(t*P-~*+gau$i.NWn?VD&.`jFTF?0voTgJ)C7PgDj/_oiZw/q&A(u-9S"} {"col1": -731917057, "col2": 37, "col3": 6151, "col4": 0, "col5": 7777078010512157661, "col6": -2759816014023267952, "col7": 10645.079, "col8": 883698261.707048, "col9": -76310146256900243.312, "col10": -6973273195653891.327, "col11": "2023-06-18", "col12": "2023-10-22 04:11:48", "col13": "2023-04-26", "col14": "2023-04-25 11:45:34", "col15": "UXuOuREEJ", "col16": "l^rtqAEr4>ec.Vw;QBrajvx(?d07he1jyx-z.!(h`Ya&Zh?O", "col17": "VED-)l&4%vqo$g$hEMQZ=!"} {"col1": -951913828, "col2": -49, "col3": -19436, "col4": 0, "col5": -6614975947088839054, "col6": -2347794520629140789, "col7": 18287.795, "col8": -265026577.394333, "col9": 95136006648803303.130, "col10": 46455594961007726.578, "col11": "2023-06-25", "col12": "2023-09-08 11:02:25", "col13": "2022-12-23", "col14": "2023-07-11 20:33:27", "col15": "GD*~", "col16": "MlBbK%Y(G3,Q>8.z&KMwUHBt0p/m<6c!!xkI8L%9Pri", "col17": "h%LK"} --8368163552280161902 {"col1": 1769209089, "col2": 41, "col3": 31160, "col4": 1, "col5": -2575336798099083185, "col6": -883044937893669077, "col7": -19593.564, "col8": 732727904.190433, "col9": 24471993109695208.242, "col10": 7027799225935328.300, "col11": "2023-03-14", "col12": "2023-06-17 01:00:36", "col13": "2022-12-16", "col14": "2023-06-01 03:23:44", "col15": ")ysk+f.Rb;Mk", "col16": "rpXzdz#~NQOpWj8uq%$3Uo(7)2wSmy&XbeF~mpb80bhCN$<%UqoFQ).xInr)z1e%Wm)miFk/gPZIOC=DS=$-P-e~ZKT*Gc#n", "col17": "Zw/sJQD+!qGN&,V0gq!>&KcN-5HzygFJT(3%YCpX2p6GIkmQJK-4hkf^o^Gzo0"} {"col1": -1128656019, "col2": 38, "col3": -31755, "col4": 1, "col5": -2435632141806412164, "col6": 8136450037899463794, "col7": -459.44894, "col8": -831192457.489055, "col9": 97591785640602819.751, "col10": -62968590713393600.518, "col11": "2023-01-16", "col12": "2023-04-07 18:36:15", "col13": "2022-11-21", "col14": "2022-11-11 20:28:59", "col15": "-C?2=,2G1e^#Y", "col16": "9W$$AAoJo2lzO$@;&SOg", "col17": "BF=Zg9mC%Tk"} {"col1": 116046830, "col2": 94, "col3": -22557, "col4": 1, "col5": -1598164460844399072, "col6": -4158706534326890839, "col7": 24433.285, "col8": 2134151714.625505, "col9": 32526239216662343.382, "col10": 36428786060450888.560, "col11": "2023-05-03", "col12": "2023-07-10 18:46:30", "col13": "2023-04-22", "col14": "2022-12-11 00:40:44", "col15": "=AL", "col16": "nBEdvMoi&Ku%CS#9YR)1e)w&InunfqVq@z5%j97_AX2sH", "col17": "^3Lnzbz)b%j@!d_1I)@T;K,Qd#L)aCv*0U(Rnys3LLod%ZUxhCjt&7~gd5NW/ji+6Ay^d_b23=HfC&X0GqfS,vu#WV2/o;q1"} {"col1": -931769087, "col2": -29, "col3": 24745, "col4": 0, "col5": 3139286240265536402, "col6": 6172939574734784743, "col7": -9849.977, "col8": 144474395.964448, "col9": 74949219831536557.243, "col10": -61657785466666969.507, "col11": "2023-02-10", "col12": "2023-06-15 06:30:30", "col13": "2022-12-03", "col14": "2023-01-04 01:09:40", "col15": "MJ~0M", "col16": "7S3w*O`K", "col17": "f1<.Ruq+++&Lj1_yd)tT>PWT91>"} {"col1": 95091621, "col2": -34, "col3": -29230, "col4": 0, "col5": 2881528624934468265, "col6": 7807966468061685861, "col7": 12235.277, "col8": -952013846.37979, "col9": 8704675164427700.119, "col10": 22241492001285031.114, "col11": "2022-12-18", "col12": "2023-08-18 10:03:10", "col13": "2023-09-29", "col14": "2022-12-06 07:47:44", "col15": "cb-fe=HQ2", "col16": "ODws3EY*izfCOE90(2iFs7^BdkVssW7cg/k#pQQk1u,cOMReo/fn7@MJ&unJK5OI=>QVS(.7.JQmm3Ue61_WTcqwU@t<@r5qj,TJ2?L", "col17": "CpZMP1~/4GLggIi95mY%IiBHMb+iZK/3&J2+135ostS!jE,cpgIt3FGZ=!=b2ua=,wi+l.7#VU4(aUrSu^-y~T$l1eEi.b,S9Na&vIC)9E=P_mrOw_J$I;Ss?5h"} {"col1": 549081643, "col2": -89, "col3": -18860, "col4": 0, "col5": 2268837686650169392, "col6": -3564791349665118608, "col7": 5688.7407, "col8": 299803683.69027, "col9": 92982331476439301.594, "col10": -93330243753042154.201, "col11": "2023-06-05", "col12": "2023-10-08 21:25:31", "col13": "2023-02-20", "col14": "2023-05-03 02:23:37", "col15": "d=GDd,", "col16": "-hCK9Q%sfXLRfN35e1W`WAWi(A3s!+;wwL(hRvzT~Ipp`jAY%q8o-z(ueZptTS,Ua9?gt^y9Z8yQK=h#44s", "col17": "Up4HiD^Brz.),~KbbW"} {"col1": -1783476026, "col2": -48, "col3": -17310, "col4": 0, "col5": -7963598298499820103, "col6": 4904571652507647260, "col7": -10607.233, "col8": -1974193014.984611, "col9": -42459355958681098.454, "col10": -18238483948356281.750, "col11": "2023-08-30", "col12": "2023-05-06 07:37:46", "col13": "2023-02-08", "col14": "2023-09-27 21:55:52", "col15": "A,blh00/y,", "col16": "iOn`m", "col17": "9+5KWeLDsbd/&Uq+1-Ehvu2^S-RxzF>sTzA)dO76#CJ+q0b_W3%Vz8t(xi9$Pzr7XGmRC3qTg!qQf&`%Dd@I()5gfj9^+j_0AgHM?!I()c=li^>"} {"col1": -496454371, "col2": 121, "col3": -32536, "col4": 1, "col5": 5109585439962885589, "col6": -7561145607543036624, "col7": -1663.4861, "col8": -956519190.050091, "col9": -10288691912800152.494, "col10": 29496554612133109.983, "col11": "2023-08-28", "col12": "2023-08-31 09:50:56", "col13": "2023-03-24", "col14": "2023-03-19 20:42:21", "col15": "%+.U&gn<1ZU>Mf", "col16": "=Y$EVG,h-h23^r", "col17": "NR.ZpMOo%1E?"} {"col1": 1238201496, "col2": -10, "col3": 31686, "col4": 1, "col5": 1122137690708375175, "col6": 3751166452543437548, "col7": -15929.366, "col8": -209845314.081667, "col9": 82928606746951351.951, "col10": -24921390371752053.504, "col11": "2023-04-16", "col12": "2023-03-20 23:55:33", "col13": "2023-10-31", "col14": "2023-02-09 06:24:56", "col15": "I-", "col16": "J3iltfk&9#5Qc~44Xu@_f?^u;(7J", "col17": "J,>9sWD,HEb+f)sMZy,=e?YLj#W)CQw&Tryuy?2q!C&2;cNp4j3~95VzfeI9QTh*o~=y?!D0Md#6G;1g2$8Q3j5Eq%"} {"col1": -2126172544, "col2": -43, "col3": -30224, "col4": 1, "col5": 4477399578851748461, "col6": -8164663132923309779, "col7": 4598.504, "col8": -2145707155.719386, "col9": -16186361543705830.429, "col10": -70898288416135568.483, "col11": "2022-12-22", "col12": "2022-12-05 11:00:58", "col13": "2023-07-10", "col14": "2023-03-03 03:45:05", "col15": "v++#N", "col16": "jB/H(1KjyS,Y2-f`64cMz>$24^IOxrk~%", "col17": "DH3k3igl~`7pO`wlSAWbcAW&n^d#jy;6RME&e$6^bc/Sl(;kcBgpWt(17t/Q7%AP5l@MQm8BK8Saq=dqtSl#89iEyJF=5d4eQ*5,7RX!MW(O&4V5.ra&`wwkhoT"} --8130752084420850754 {"col1": -630784508, "col2": -107, "col3": -22332, "col4": 1, "col5": 2526767180146544499, "col6": 3669637146075805854, "col7": -2381.3687, "col8": 75875226.650256, "col9": -16215099298195794.320, "col10": -33531867113672142.943, "col11": "2023-10-15", "col12": "2022-12-26 23:51:13", "col13": "2023-10-01", "col14": "2023-07-14 10:34:13", "col15": "Y", "col16": "3/j4pBCb;)0fp(F45MD7@FNT=R1kj93(_4_wA5)vOYD!W#6LWF8", "col17": "&lOgTZ!dZ^,iG>4Ps!-)S+KQIOSClIaQYS$N@ei~(rVZwKb*7?Qzomi&K8GfdD1-hs1S"} {"col1": -520495782, "col2": -18, "col3": -10052, "col4": 1, "col5": -5500653227385262734, "col6": 2071128999812670433, "col7": -1284.549, "col8": -1758340715.165546, "col9": -40984045024860021.904, "col10": -69726335010103532.380, "col11": "2023-09-26", "col12": "2023-02-20 13:33:55", "col13": "2022-11-17", "col14": "2022-11-14 20:14:11", "col15": "tA&/#h_LkO", "col16": "*4WJcDm&K370&0pg7#s).g=_BsN9(fU3npbI0/!x,WIAg3;SqALl^~7Rx?", "col17": "ku^@V1&/5o/C@m1*?33C9-wNN?UQ+ax`g&UYfdlr+m)6v"} {"col1": -254305488, "col2": -32, "col3": -23700, "col4": 1, "col5": -6047527938938229808, "col6": -8390007357285860601, "col7": -4994.1514, "col8": -1938449016.468337, "col9": 34009355692319729.341, "col10": -49705304084897838.366, "col11": "2023-06-07", "col12": "2023-10-19 02:54:45", "col13": "2023-10-08", "col14": "2023-06-23 15:47:35", "col15": "L+L", "col16": "Zt)P", "col17": "fqxwKRGS,E8oDUevQ!TRV-a12"} {"col1": 1320721215, "col2": 91, "col3": -14366, "col4": 1, "col5": -4901320206869872612, "col6": -6734233068323413885, "col7": 3092.9668, "col8": -2128909677.420208, "col9": 91585706825195524.237, "col10": -18583607961702373.593, "col11": "2023-06-08", "col12": "2023-08-08 09:11:42", "col13": "2023-01-29", "col14": "2023-04-01 20:42:08", "col15": "R*%oyx", "col16": "+aq(16wM3z_Gbqra)J8j.T_drPtA_sN.vnF2-&JKv`PtifOZ..`zm6wP", "col17": "5,~$Gt=a&1wHdruBM),mb!a;~UdshW)Nd*-+nSShC(0MX0CynnazHS4U*ng#,<&Ys,B/Xb=?;.Zm/1./xOgBa"} {"col1": 81795598, "col2": 24, "col3": 28966, "col4": 1, "col5": 394278581012445475, "col6": 8538625659064010725, "col7": 3152.8525, "col8": -582541726.405779, "col9": 74628837758040294.322, "col10": 70855409169031646.167, "col11": "2023-06-25", "col12": "2022-11-20 10:41:56", "col13": "2023-03-21", "col14": "2023-10-19 06:51:35", "col15": "8zN?XTqrRsgWSTE-hq2gietM!", "col17": "VkB&g~;#eP)mzBF#6Y(3_wO+gRlSCvb_oH4IzGQtrF-LJVrE/^FPdN@ACS?o7Iz~+8/41D&rV&`"} {"col1": 1584719334, "col2": -122, "col3": -18196, "col4": 1, "col5": -3719741203767950872, "col6": 8275693320339631705, "col7": -21392.152, "col8": 84254794.270132, "col9": -88846332068119370.580, "col10": -64509349060859205.997, "col11": "2023-02-27", "col12": "2023-10-22 15:43:08", "col13": "2023-11-10", "col14": "2023-04-27 15:46:11", "col15": "", "col16": "jX5hB0vr%uqgmVY,_+ckuo_@<@N>rjV<%ow&J4QU?*U06h~r@kT@HB,b0fXU*#fyW.>6iiL!o^u*Xk;V0>dNuCul/gAlq?&O^/%q4?3`^Ku;"} {"col1": -1929296815, "col2": -14, "col3": -29091, "col4": 1, "col5": 2209692967284329947, "col6": -4467649585163870281, "col7": -28066.814, "col8": -1125999447.229004, "col9": -22573967746140374.696, "col10": -77244170296332062.250, "col11": "2023-03-31", "col12": "2023-10-13 17:39:26", "col13": "2023-04-29", "col14": "2023-02-20 15:16:10", "col15": "?`!+Ichf,4w;", "col16": "18O.M!HtHcPtwhzY*_JgpBqBwGX_PfEbo;AZ?H3xh~m&4ssjAQfi$c%H>hse0zz`Rej$GM4mKAsHub;X+PooPp1x&WDwKVQ>eI1", "col17": "$hJo#yv`YGqSzy7esvlz2mTr9g#,RXfBE-;ga.WmS?JIr==kx4eam`y8Xnj/!U;I$fOrK2,W>PDAEJkaZ35LM9hhWHAx6mm(uq2J"} {"col1": 419519048, "col2": 50, "col3": 28572, "col4": 0, "col5": 5109939873256684424, "col6": -5732498347084127922, "col7": -32468.19, "col8": -1737443888.096589, "col9": 73968231814261632.732, "col10": 43931705735412210.900, "col11": "2023-01-27", "col12": "2023-07-20 19:48:07", "col13": "2023-10-11", "col14": "2023-10-12 11:52:25", "col15": "_h%", "col16": "LE3vk3YdPS<%a@h,YBI&^lyt.+W,", "col17": "CA,wAaQsoJ3(USyxwejK43Qn0lazs5W&r-2N8Sp~(T0x7piIcs/4R&HXws>v((jTF_3a"} {"col1": -1581073211, "col2": -69, "col3": -26033, "col4": 0, "col5": -804312312636283370, "col6": -6625806106514412241, "col7": -29053.072, "col8": -1698261199.931556, "col9": 76451253322373236.900, "col10": 11769426737212010.997, "col11": "2023-07-27", "col12": "2023-08-24 17:29:23", "col13": "2023-03-14", "col14": "2023-05-15 10:54:11", "col15": "?*GQsppENz", "col16": "aaW4;dDES2~8!eT0$TM+=23", "col17": "u*n7(_rGh#5F&)yMsXd.nRd6~No2,+UsWc?;y+;)x(uqQA7*x4)rew#6U9yI^&!UAK32hbGSl=;gF4,k`eU7(aXaw8Q2j_#&3i&<>NAJYF"} {"col1": 1428826758, "col2": -33, "col3": -28399, "col4": 1, "col5": -6469244622958594179, "col6": 8335848240829608549, "col7": 1618.6619, "col8": -1903223955.308646, "col9": 93206268136712031.791, "col10": 89306733804707873.770, "col11": "2023-08-31", "col12": "2023-09-04 12:06:05", "col13": "2023-05-04", "col14": "2023-02-07 02:04:35", "col15": "!YW", "col16": "/", "col17": "(6m.hGHHlnXdK_`ZZ)YcreXek%Ytz)l=g*Ps)oQtGsF0_y17ZWLb?P,gsyU"} {"col1": -1069306143, "col2": -4, "col3": -8547, "col4": 0, "col5": -1383569491875123898, "col6": -8034778851940663966, "col7": -27188.469, "col8": 1926605339.570438, "col9": 46458896379925035.526, "col10": -94635160698411887.823, "col11": "2023-02-22", "col12": "2023-01-07 15:18:48", "col13": "2023-08-08", "col14": "2023-11-06 22:37:56", "col15": "p$BN", "col16": "!;Dy4P$X7F", "col17": "_KKaRhOuw;s,J$nS6oDa96EaYOry<@mBk_.B,_K-ckvEf8lQAjHh6j.J", "col16": ",J.~MKo4)2pg/R23DVNA=7Tf)J*Sg-s", "col17": "tq&IP/6U)Cxr%D20@z+kgOn>QZLNEL3rM4a`Yy^~sKbb-++RSmR$TZ&+s4y,el=.yCT>B96adZW"} {"col1": 985501155, "col2": -24, "col3": 21311, "col4": 0, "col5": 5527964666005317471, "col6": 6946948188736388580, "col7": -8703.959, "col8": -103891562.352326, "col9": -72256959944011241.745, "col10": -15805720823720834.900, "col11": "2022-11-11", "col12": "2023-06-25 00:53:52", "col13": "2023-04-03", "col14": "2023-09-27 16:58:07", "col15": "", "col16": "4lu5D#+1Z&7@8R1q", "col17": "cyNXc*5#q!p$", "col17": "Ky"} {"col1": 1596224467, "col2": 106, "col3": 9539, "col4": 0, "col5": -809051164961171210, "col6": 6250982782242314377, "col7": -26671.64, "col8": 56606733.145908, "col9": -80540802744766207.953, "col10": 77085717692287751.994, "col11": "2023-02-11", "col12": "2023-04-13 15:33:02", "col13": "2023-06-12", "col14": "2023-07-03 11:55:11", "col15": "3_", "col16": "tE9nr=yFH~l?QxREEq@#4NdI7AbN%jb-*uF<4l/jDiFl7%Hw3Ho>n/C%Wn;XQA-pUiNGUo6$84+MKhB#WZkimtAej"} {"col1": -1218975697, "col2": -70, "col3": 32402, "col4": 0, "col5": -5168465205297713683, "col6": -42506747499361319, "col7": 11149.558, "col8": -124984675.779518, "col9": -82155323751512945.216, "col10": -89459933378296748.604, "col11": "2023-01-09", "col12": "2023-04-16 20:26:33", "col13": "2023-01-19", "col14": "2023-03-31 10:02:16", "col15": "R-qvD+", "col16": "62H?H_R;SrrD5?a0LNWH~(5xwLE9=aXt", "col17": "QIqR?RRBaZ=.0EF3$p>_hD2_l)R%G^jvH`;gSz?*W@p,)>ddPiKr;o9)#45Us+j1;KXqqw?)$9XPBYjIQ-<(qcTdu>H)eN5?0oMzM)A%toAOGK$+6!``", "col16": "Rq`)B_wCqr~3D", "col17": ".-G1FfO_&y6ciUgItDFzp3^xj2wT)3,3YL"} {"col1": 949190741, "col2": -109, "col3": 23132, "col4": 0, "col5": -8107750618520010248, "col6": -6431170840840398337, "col7": -31010.111, "col8": 19577291.956868, "col9": -42853285297909894.649, "col10": -69573641063301319.816, "col11": "2023-10-25", "col12": "2023-05-21 17:21:28", "col13": "2023-10-10", "col14": "2022-12-31 16:39:27", "col15": "", "col16": "Y;VSV@?j+eHK0~CFokCe*r.$gq*^sqPIxHI", "col17": ",f>E=XC%CFYUP7&tvYjb%LJu#GDnMQP5.~)SQH0P-D;yaR5DiVr%<5ouv$YkhXeLAR@Ym1!vkwTZ2,8bUERr?MuA"} {"col1": 1527563124, "col2": 9, "col3": -25868, "col4": 1, "col5": -8331595583387132313, "col6": -6031385467825388820, "col7": 17599.04, "col8": -1485375156.20568, "col9": -16742871194598893.775, "col10": 66735741323698862.142, "col11": "2023-04-27", "col12": "2023-01-19 11:37:46", "col13": "2023-03-29", "col14": "2023-08-27 01:48:45", "col15": "RCFOt+1", "col16": "%2~aM)waci$;?$Y~?hdzsOQTTP+Zq2lipeXn#QC*u1@QX62!5-A7727V3LQ+", "col17": "70#?^Ow/rdFvrFFVDP@NtWebpxm;jgcl8#0QEyC`7v0rh<~2h@ofB$Fue"} {"col1": 2018260508, "col2": -103, "col3": -24472, "col4": 0, "col5": 8997678386359787116, "col6": 2451818178827354507, "col7": 4805.7744, "col8": -839371064.997656, "col9": -2820518180207585.420, "col10": -27518074549067322.799, "col11": "2023-04-01", "col12": "2023-01-20 23:26:49", "col13": "2023-10-20", "col14": "2023-08-25 00:04:01", "col15": "8iYzEiw7AMOd5", "col16": "0@P#6", "col17": "BdWm*QfNDS2ty?^cxcNgHxDda3rHiFvXbHrs;L"} {"col1": -1482004443, "col2": 102, "col3": -12999, "col4": 1, "col5": -6961079697649502866, "col6": 5857042070324174976, "col7": 14277.545, "col8": -1583282209.721317, "col9": -78563765934769168.374, "col10": 59319192883565341.984, "col11": "2022-12-24", "col12": "2023-07-26 04:50:03", "col13": "2023-09-07", "col14": "2023-01-10 21:29:43", "col15": "VaJH/X*K/D+w", "col16": "h49&Y9FGYt&D6Aig^lqbP)c+qDpi>R#$OlL6,gqY,", "col17": "&m+v03q6D@;Z9te5S)o8@h/2cGZ=Cpy*G6h8VOK9wSgH_(82bI~N96CfoepoO0`t`Rh_~BIPuq76R8ezFW>;z"} {"col1": 652276964, "col2": -54, "col3": -19502, "col4": 0, "col5": -2722052385324355445, "col6": -2372892998911631963, "col7": 17475.604, "col8": -1783374012.97851, "col9": 43667004322191647.526, "col10": 75072779420286165.380, "col11": "2023-03-15", "col12": "2023-10-09 08:54:52", "col13": "2022-12-15", "col14": "2023-09-04 07:53:29", "col15": "i,i~yA;2Zl9P7*", "col16": "7E1;FbW9.LRT1yBl>#", "col17": "AN@^I?9/?l/GllxiB)^&k*y/Hy,Epewpdy-mL~#Bh4*?NQ+S~y,X2rI9+$ws8l_./&ESS/&;ANFrN&DZT@"} {"col1": -627269573, "col2": 23, "col3": -8953, "col4": 1, "col5": -8611933685663538328, "col6": -8745338265499505032, "col7": 28135.436, "col8": 2058707064.219137, "col9": -19839219197164786.827, "col10": 55688732490232678.640, "col11": "2023-05-11", "col12": "2023-05-26 09:59:24", "col13": "2023-01-07", "col14": "2023-01-16 16:52:43", "col15": "pz7^U", "col16": "0ji0UC6", "col17": "&(?Ko0h^g,FULq(8DcTPXxO@`"} {"col1": -1974740230, "col2": 34, "col3": 22263, "col4": 1, "col5": -5083433021044869188, "col6": -6379889206909365694, "col7": -24358.887, "col8": -1581447038.60196, "col9": 1659553167832696.312, "col10": -74926401344917067.130, "col11": "2023-02-01", "col12": "2023-05-03 07:39:31", "col13": "2023-08-15", "col14": "2023-06-28 17:49:47", "col15": "?ckjkT$l,Ce", "col16": "Q85oUjT9DK=u1+sL#(e7DK(L3uSUNcHEbrjO>poN~U1V%HCndj`&GVPE1MvSnKyM0+rOlBcXzdRkrM#x8q$i-Vb#n@pVB4S", "col17": "=^^G7T07*EQfcOn6FhSzr=$X*!jPo5fP!uTLyQ@cZF).pS`^_rW9=&9hVOYifYjg"} +-9052855404401710281 {"col1":261079681, "col2":93, "col3":20178, "col4":1, "col5":2163705202391578899, "col6":-2190600110707822922, "col7":-7382.004, "col8":-1200294565.951719, "col9":-91960534868632856.281, "col10":-89949948257620846.844, "col11":"2022-12-18", "col12":"2022-12-04 16:19:09", "col13":"2023-10-03", "col14":"2023-10-18 20:19:55", "col15":"@i*~Y^&~Nw", "col16":"I&*/wB(4Ke-", "col17":"LTl)O&FsU0<4mq5_a!VkB(dy"} {"col1":293498095, "col2":-121, "col3":-25965, "col4":0, "col5":-3576656064125326132, "col6":-5657804083675264268, "col7":-30704.178, "col8":-904104728.103341, "col9":-3159432710175410.370, "col10":-45496500895008845.756, "col11":"2022-12-08", "col12":"2022-11-19 03:19:20", "col13":"2023-04-19", "col14":"2023-10-01 09:10:42", "col15":"M1/gn^", "col16":"3e3^nd>C*R&P-K`Q(/l#S@p#~VG6N8bakqb!6JOCPi>OKf@FyVx2v!E_GzXS&iI_rvtU3@nH~~jWu6@%4>", "col17":"ECpA8MXR9"} {"col1":1891310032, "col2":-26, "col3":26695, "col4":0, "col5":-374125000529149443, "col6":2171945590552452381, "col7":1041.4928, "col8":1273785834.848136, "col9":97681462870233953.548, "col10":80612975133223453.920, "col11":"2023-03-28", "col12":"2023-09-23 19:05:17", "col13":"2023-01-08", "col14":"2023-04-22 18:50:43", "col15":"EC><,k", "col16":"UuW2bFgOk", "col17":".yuEbs~=_md6Q=p_rC#4rM5Fv>2;)`1?vo@o*OHlmw%w1yqWi&8heNZ?~8!C0qL"} {"col1":-741198949, "col2":-125, "col3":-19192, "col4":1, "col5":5676011356690276916, "col6":-7208944717181851294, "col7":-16968.037, "col8":-172360599.036606, "col9":11062817494936380.754, "col10":-20473655271393218.620, "col11":"2023-01-05", "col12":"2023-06-05 05:32:43", "col13":"2023-09-25", "col14":"2022-12-11 18:46:30", "col15":"uo*`,0x4WusV8", "col16":"YBjQda$7u07noHXpbBeAqy^0Z~K5eC*l7NE8r`O^-*K3H(Q3c1i1R%FZTC-#ol`8`.uTDxsBrtnv~^41TTL,f-#Nx=fx1)U3#;9K=osN(BCPa/VJP^yb=x-wC", "col17":"$Uo7qZ)*QOk#*nXua`~=qi4*+F-DcC+~)8y#C6+UzS;8wr%?omo(XHQ9$C;A)a1Aw%T", "col17":"hv6lk51=2%oZ~k?s?jbdcE92t;q^*11S5Gni&", "col17":"h%EzOW5YYzGlD+#n8sn"} {"col1":20035609, "col2":3, "col3":15349, "col4":0, "col5":-822097466612981862, "col6":-8411765013373638349, "col7":31527.754, "col8":-563702334.28447, "col9":-73307201008760924.624, "col10":41041091789555799.240, "col11":"2022-11-28", "col12":"2023-06-13 08:38:26", "col13":"2023-09-11", "col14":"2023-02-24 05:04:10", "col15":"k<,$", "col16":"8KGA*R`O`xc4ahsU,OfQF8U+L-MYW81RD@q_vBkcCAU=~)%kzq>I419e", "col17":">hq0RmfoN8GY1KhcX%8kSVgNepBIx=64zIC5w1cd2)@HTg"} {"col1":681801015, "col2":33, "col3":-3520, "col4":1, "col5":7366609877737053742, "col6":-3161246756640427052, "col7":-30325.709, "col8":305541624.015199, "col9":-68808724306427475.611, "col10":-27445248172763847.371, "col11":"2023-01-23", "col12":"2023-09-01 22:06:09", "col13":"2022-12-04", "col14":"2023-08-31 22:26:56", "col15":"9~jInZTijOl/T", "col16":"t,BiuEz/IOh;/5Hgs^*toL%e-"} {"col1":-763764922, "col2":43, "col3":-23399, "col4":1, "col5":783989712103186350, "col6":4083110528859476183, "col7":23241.365, "col8":1995148265.406853, "col9":96770525970445251.550, "col10":-85979799906620535.713, "col11":"2023-09-25", "col12":"2023-06-07 09:35:00", "col13":"2023-07-19", "col14":"2023-02-04 03:54:25", "col15":"Z~$?K=)T", "col16":"%0Z7_jKvdtrLWiMO2&Q$>Jo<5zh`.sd0(YWT.~Q`-B/q7,up>lw5PAA+B?h~PAfqH1d", "col17":"^*Zk4=6jLr?;fmtbcE/?y5s$*_-bmXh#H_LT>ua>2H&Bv%#e7lKc@k-;^Aa7ukG/VI6TR227%h?LT+(_v", "col17":"6TIVHg^HUKpnL(vb%EUwGhk3;)"} {"col1":1370312656, "col2":41, "col3":18715, "col4":0, "col5":-3758233030181962206, "col6":-8987717996655162408, "col7":-31457.508, "col8":-1708794275.366794, "col9":-94588829972275923.445, "col10":3986165881623729.357, "col11":"2023-08-11", "col12":"2023-07-25 18:20:01", "col13":"2023-02-26", "col14":"2023-08-06 11:27:49", "col15":"@DS1", "col16":"T?bB7tU", "col17":"IiQ@J6tX~sm^jG.r&swNrVk1-2ONnvC5Ig(XkMI)X%@DxZbPkLG<84l_F0*kDbpId.dd@d%Tqv"} {"col1":-1169184786, "col2":71, "col3":31927, "col4":1, "col5":8390345726239927198, "col6":-7481515861580930114, "col7":-11882.879, "col8":1647353218.839473, "col9":-83496988101917566.310, "col10":8002364419087947.937, "col11":"2023-04-16", "col12":"2023-09-18 23:39:33", "col13":"2023-11-07", "col14":"2023-10-27 03:02:59", "col15":"=P", "col16":"62_"} {"col1":-1095228497, "col2":-62, "col3":-14579, "col4":1, "col5":8678662247688949464, "col6":2327812601777741478, "col7":-18123.812, "col8":1567963893.234542, "col9":9922994714498675.274, "col10":23455293548273884.488, "col11":"2023-02-23", "col12":"2023-01-05 12:37:47", "col13":"2022-11-13", "col14":"2023-07-28 23:53:46", "col15":"r1(NqlNf", "col16":"T1xKVofKWBof,<%7t>C;wtY<>3mbn/epHN2=GxB+(/*nt3YK7TLM,I14_bD@ZXu-2zy#l0j", "col17":"i~kdqVPVc+;_oW?-LRLh;FnQfLL?ieRtZ$WJm?blsQn32p6O@$J%cjb%nZTC.6m>w;UI<%)EB+n"} {"col1":577259683, "col2":18, "col3":-13537, "col4":0, "col5":5778440245350381673, "col6":1729667696812540134, "col7":-29986.787, "col8":462696869.740925, "col9":-64242297078135876.710, "col10":-34110060920083841.600, "col11":"2022-12-13", "col12":"2022-11-11 00:41:32", "col13":"2023-04-20", "col14":"2023-10-19 18:35:25", "col15":"k)W4Wbt8", "col16":"F<0)FFx0Ay&wdY%rRE#>t4QOL(pTd^BOW8@~KBXCvXgQ@20mrzFPd", "col17":"-WOU+(8-*I<*-F;U.4MF&Y>n*xNAbLHf/l9K_BjIdK;0T-&J0$DumP_scfWr!tpPd@g=/fyD;C7vV8&j>F/AC^r5^,t+pid@P)&^=&?g`?*iJzsx4k=<<;aqi@a%f"} {"col1":358052123, "col2":-20, "col3":-995, "col4":1, "col5":8462498483626768535, "col6":-4579777337458835014, "col7":5497.2812, "col8":-1675121192.209081, "col9":-55228000464087729.376, "col10":54075338566731730.689, "col11":"2023-05-09", "col12":"2023-08-19 11:53:12", "col13":"2023-01-30", "col14":"2023-06-08 14:32:40", "col15":"z$8+gBbZ", "col16":"0;^hCNKLqx=)", "col17":"QH=1=ezdz`3u@IwXC~q.Hjo5Tch6LPfj_$nX>*saEQU.Oz(cL.rR*iuahbYnb*0C4*G0``Q^Nd0RPP$vhA&95q)X<(a.PfZ,H>GHG=LjhC9G.-8!X", "col17":",DvFSRv&Ez!GJrEo1/;Nr,*Qm*_eV7S(CesYSTt3v_w>NRew~3h(IrQQ"} {"col1":196725014, "col2":-24, "col3":-13427, "col4":0, "col5":-7375318581248960057, "col6":-2543965274523748861, "col7":5780.991, "col8":-694770524.546083, "col9":-76123002210744723.992, "col10":-47697265631521692.335, "col11":"2023-04-24", "col12":"2023-01-08 11:35:37", "col13":"2022-11-13", "col14":"2022-12-03 12:55:19", "col15":"0KC+u_$>", "col16":"i@-@ASL*~~/iY)1+$rL)*DEk<Z%kd&Gc,s9FlWo!42P.yo_VO*Xewr$C@b?b8;/f-_7G=w^OX$m5#6*", "col17":"P+dMU%2GvWo=*+_U$#N871~QZ@pzc,~lLCYiY)~k"} {"col1":-688049528, "col2":-35, "col3":4321, "col4":0, "col5":7245845458805220394, "col6":3912116986726525719, "col7":10877.681, "col8":-87511596.70815, "col9":27431649310089463.872, "col10":53000349361497028.867, "col11":"2022-12-14", "col12":"2023-09-10 09:56:23", "col13":"2023-04-04", "col14":"2023-01-17 18:35:42", "col15":"", "col16":"%fS1#RR47;vSRM%nZorS5_/xpu.@SM.~5klrRc)^e;dFK@N-bkA$(NAX&-0Vu1LrvZ.cBjSFfYwOKQy6C!qVPw;arKX&W>p/w-P-*ZxmrLy", "col17":"o7(4@cOp3=~p%l7+23)~Jf5vb$t@yCV@CfjrxEvB`iJT0q;-)XCuX#h/6dAOP$%0fH0deJ8%DNNeH$XZ^C!Q="} {"col1":-1474368615, "col2":-21, "col3":5177, "col4":1, "col5":8174349037021096782, "col6":2571804249862798292, "col7":9933.032, "col8":-720750366.940295, "col9":-8590320354503227.221, "col10":-94099543687278644.814, "col11":"2023-03-03", "col12":"2023-07-11 13:00:08", "col13":"2023-03-29", "col14":"2023-01-22 03:42:30", "col15":"9gn!5C!BvEP", "col16":"X)1XT$`l2Lkr93E&?A?GWlurNp//;jSuTw>l6!?", "col17":"+<2ZMd=Xd0Q<2KT.%!K.Suj45?_lTHL3LptTpI^+(Kr8P6wx&(s8&"} {"col1":-1693846609, "col2":-73, "col3":9118, "col4":0, "col5":-2985094276774224395, "col6":8805992256826989074, "col7":6244.1, "col8":1813143653.166, "col9":-62764692014561863.442, "col10":-38325067730370117.681, "col11":"2023-09-07", "col12":"2023-01-28 12:49:35", "col13":"2023-04-18", "col14":"2023-01-17 20:14:35", "col15":"d65uY.r", "col16":")A>je?_.Gt<;n`w51eCBOWT-kR`1ASIA", "col17":"hQWT,ge>KGm#zleH67$,`Px&A`N*kPk.ZqkO!4SG~-x/9~x*+tmgjmK", "col17":"M=_wY3E`(,i21pX2tO=f;oHS6n5,1@LU+iPFypM2zE(+(>k6XxzUqU*OTtx#!P5k++x@p60GAA>D0deaeDV$@N0R5"} {"col1":519727040, "col2":80, "col3":14429, "col4":0, "col5":-617879460517437411, "col6":-7165327641490392420, "col7":-13084.128, "col8":1970316910.765143, "col9":-93976002804076259.534, "col10":-32558524385546329.363, "col11":"2022-11-13", "col12":"2023-02-16 09:07:20", "col13":"2023-07-28", "col14":"2023-01-08 22:38:58", "col15":"XsBMIBa^FI!d!", "col16":"pePuy7bPN&=l)?;@l6NJ7/V0Ukt1ubtmZMI$(d;ozN3!>1x2DDo>MRifl;4T8d`2_7R76B9&lePU^UK#$M`&ySGkb;)!x", "col17":"qY/@=?,a0!5EDHD"} {"col1":564937758, "col2":-10, "col3":-19719, "col4":1, "col5":6205568508580489074, "col6":-238554161903590528, "col7":-8137.3535, "col8":1023623642.337226, "col9":-2362569962650581.821, "col10":-68775335337492456.403, "col11":"2023-08-28", "col12":"2022-12-13 09:02:24", "col13":"2022-12-14", "col14":"2023-10-02 15:42:07", "col15":"", "col16":"B)a?p0>L8kL", "col17":"zvS`nT$&kYjuqvx6SM0>h*lkl^`~s$^LmTQN~*B^qdyQF^`Ofh~L.GJ5@Bvc%X>akZfc$9Xeabk1FOw1fJI@9-U-V"} {"col1":1914314437, "col2":14, "col3":-3885, "col4":0, "col5":5289140208274800927, "col6":5523134939016922802, "col7":-16044.735, "col8":-531461112.058018, "col9":20859664695767945.768, "col10":-95844141490303829.980, "col11":"2023-05-12", "col12":"2023-08-10 20:49:23", "col13":"2023-03-12", "col14":"2023-04-03 10:12:58", "col15":"THW", "col16":"0L35Dot/95xSb1igaBQY#jCm&q%c/MQ(2(0-sufN>BmBlt-`^L4rN2hH6D&Xy1Z8kY$>t5Z(,h1i4l2gU8e", "col17":"w`)of^9_@N=DZsU##xMKBfYAdm`fd=7V"} {"col1":-1700382114, "col2":115, "col3":-6204, "col4":1, "col5":-4126342125777344756, "col6":9054982454557719308, "col7":-19103.875, "col8":2031018782.572868, "col9":-83553942298914702.482, "col10":58591672291818154.504, "col11":"2022-12-12", "col12":"2023-09-28 14:22:44", "col13":"2023-03-03", "col14":"2023-06-25 13:19:15", "col15":"BV", "col16":")jJv", "col17":"EL_I^2A-KD9P^n0VGfY.DapPaHP4b=3QCZXQ0-zW@Nl$KVatwNIEs.fwG07haAK-w8kg>QA9*Q&Cq=rd5J=iOj,4b6T`YNn$!ToQlF/R-8~9-sE?mcNekAWsxWhyy="} {"col1":1976188027, "col2":39, "col3":-20199, "col4":1, "col5":54838796530721045, "col6":-4199157709856370965, "col7":-20633.107, "col8":-1314405206.528385, "col9":-17838244458606850.919, "col10":13993039380882130.769, "col11":"2023-04-28", "col12":"2023-07-21 06:48:51", "col13":"2022-11-14", "col14":"2023-05-29 15:07:03", "col15":"Z", "col16":"", "col17":"aMm_kYB`6gpU2h;uD&8/kw3X"} {"col1":-439380020, "col2":96, "col3":-17308, "col4":0, "col5":3579043460080517561, "col6":4240896818074065205, "col7":12152.55, "col8":1198053802.322113, "col9":2562915342156503.474, "col10":7583328329290118.446, "col11":"2023-03-31", "col12":"2023-04-17 02:55:52", "col13":"2023-03-19", "col14":"2023-03-29 13:17:27", "col15":"0&P0_,,9I&dn", "col16":"HTtzP,7Ob", "col17":">!M"} {"col1":-457160013, "col2":-87, "col3":-32076, "col4":0, "col5":2962490776305786988, "col6":-9219898190360409591, "col7":4773.356, "col8":124168385.283727, "col9":66564244852109284.538, "col10":-17698570145691684.721, "col11":"2023-09-09", "col12":"2023-05-12 14:33:56", "col13":"2023-05-19", "col14":"2023-08-07 19:17:09", "col15":"", "col16":"nsqUTDXMfOqg!S7C97`49QcZ4Os0TI?g6E2#J/(fV>(*X_Q`(6Znf?h$PS4u8NFcB49IFq/mgNAJX~p-C~4.", "col17":"0mntxHvG8zY_", "col16":"ca", "col17":"v.@WpiI1+`>Bj#II4"} {"col1":-1135173592, "col2":-24, "col3":12059, "col4":1, "col5":-4173609755187683516, "col6":9104229668324434517, "col7":-18978.926, "col8":1538129083.152786, "col9":49186343729636745.231, "col10":-7234568807819447.144, "col11":"2023-06-14", "col12":"2023-11-09 00:22:59", "col13":"2023-01-15", "col14":"2023-07-14 13:08:52", "col15":"(~twE21C", "col16":"o?XB9l_e*+?3UZH_qGT7/r7F4~rr1$k%;eaEMa?r4@P@jk)6P>XxpFY2(q9iiV~fm7eEP5oN<#zlsw~wji"} {"col1":441268110, "col2":102, "col3":13250, "col4":1, "col5":8597594907679023161, "col6":5667613937641491367, "col7":29102.045, "col8":-319989982.17985, "col9":-81087716870785483.143, "col10":-64800115883130558.550, "col11":"2023-06-02", "col12":"2023-10-04 21:25:45", "col13":"2023-03-03", "col14":"2023-09-23 07:27:31", "col15":"G-48d", "col16":")EWS(!Qtciw`^3x;+Gu,Qr", "col16":"tuV0Ia95UN4WJ,d>U,gXIq+AB&FWl@+ZIZ7n1(t.!rozlH3)L$I", "col17":";rwx#I@!I9>KNEo-e3~u2!Z7"} {"col1":1972978288, "col2":-50, "col3":-6168, "col4":0, "col5":-4179719101679261778, "col6":-5658599518714090609, "col7":28802.623, "col8":246142051.324034, "col9":-36754206589235888.236, "col10":-89884930143982612.342, "col11":"2023-01-05", "col12":"2023-03-15 03:20:04", "col13":"2023-09-07", "col14":"2022-12-27 21:53:40", "col15":"id>=nmLO", "col16":"q)ImOZMO-%"} {"col1":-857517907, "col2":-13, "col3":-26169, "col4":0, "col5":1324801886191525419, "col6":-633990266050297169, "col7":3735.309, "col8":789053200.026963, "col9":-57720955152670311.476, "col10":-8743840658043643.960, "col11":"2023-07-31", "col12":"2023-09-06 17:05:54", "col13":"2023-06-08", "col14":"2023-03-14 17:52:11", "col15":">rSQBh-<9$q~1/", "col16":"3=mvLVLYK#5M_mImzbf$m4pjO?xqaMnD3%Wk6z9!?VK>asTqihfTun&?rjnV@hCKqNFLZ!t?Z,$I&0VO14W?.$Ifn", "col17":"3$*wLCj/g;FeFuL?1)xDf1qi-2pC34-nHU*wrC"} {"col1":-794984628, "col2":-123, "col3":2770, "col4":0, "col5":-8407115878675052393, "col6":6290621142790299283, "col7":-20395.217, "col8":964838226.951184, "col9":62168795366363553.685, "col10":3990660931483287.956, "col11":"2023-08-01", "col12":"2022-11-15 03:39:25", "col13":"2023-05-22", "col14":"2023-01-16 06:11:45", "col15":"aBBlJ&qLR/", "col16":"j%jpN=i9M(qm~P6$lrFZX#%K/V,+lKT8PLo7S=nBDaW+%k", "col17":"SBYA;xsw12%VfP3h@H#t%K2217huCI5%Xzl7/uVQyqEDk+iuY4CfzD4+#n4o"} {"col1":-96204677, "col2":104, "col3":-25072, "col4":0, "col5":-495962334761368972, "col6":8827206595048036803, "col7":-11482.668, "col8":-1689118748.978966, "col9":67715972226386452.885, "col10":13169427423288280.809, "col11":"2023-08-15", "col12":"2023-01-02 17:50:30", "col13":"2023-07-23", "col14":"2023-08-06 21:07:43", "col15":"_ZVEgU^HRmfqt", "col16":".o2d+YKh6g42*c#", "col17":"_L!"} {"col1":-2115935053, "col2":27, "col3":-19348, "col4":1, "col5":6444729399502953215, "col6":-7824339815255256852, "col7":31207.164, "col8":-1416336003.514647, "col9":30769340447285264.393, "col10":-16602275863253066.303, "col11":"2023-09-03", "col12":"2023-01-20 01:35:08", "col13":"2023-06-14", "col14":"2023-01-16 04:44:31", "col15":"h", "col16":"_uZ^TAbpz$&E>G;g7Ke/", "col17":"qAFkpQ29_t~6-$W_G$@qi6q.wZ_l~O9gBk#aIkHjxu>-`~$Ur@M~VF%l.otQqlsdt-+c*/"} {"col1":-388835131, "col2":53, "col3":1173, "col4":1, "col5":1058814101912670358, "col6":-4766475424119347961, "col7":-9593.519, "col8":-2026900846.597067, "col9":32638844755892053.680, "col10":74267061673690142.256, "col11":"2023-04-10", "col12":"2023-01-23 06:01:37", "col13":"2023-01-05", "col14":"2023-01-10 20:32:45", "col15":"vatM?TjC", "col16":"-czPSz7d;hzG%`_L^Lh(iQR_TjXjNJu=4-pB20qcn@s`b&BXBJE", "col17":"ZC1C1b7bXzPw8eL$aQK!sAs+3mH~xq.Y,4sAf~aI!VrfJ!rEm9#g;,?(WY5XrY$Hu9ieq1JfeuoJq+?P0jB0tI64sM/>#E.kBRZ>E_%J`kg$iXvES2KqpLpF&Q>Cxm=u1GkyT8X(;^YVvxgd3ukoX<@0=UE=^@Fy1,3ZmN5y~gE179^6s=z,*X!"} {"col1":-890641036, "col2":-108, "col3":12687, "col4":0, "col5":5992849989632294216, "col6":-509868396952444310, "col7":25711.898, "col8":-155735546.802502, "col9":30165578514147105.800, "col10":-8197414077466183.531, "col11":"2023-05-22", "col12":"2023-08-29 18:34:13", "col13":"2023-05-16", "col14":"2023-03-01 21:45:35", "col15":"9A3@>H6t", "col16":"M2-d-@D17CX+$Co8K`<0TLns@%#PT3ZS(8JrM/2)lO~-9N~`AGr^!mg_I=.d/9GNP", "col17":"8/e,sjJC%Nb<.XIIkQEES~Is9JMzf-cUXnln.=;T@;d#K=TsahgOL9aJ+F!zDCEBBDDBo0d^BJjO(Pgm4X^x<@He,L;e^KJ+oLBp`(l-BHC70G5*~-"} {"col1":-214174654, "col2":-66, "col3":-26315, "col4":1, "col5":6675376020097387538, "col6":2349535819201158151, "col7":-2783.544, "col8":897715524.600938, "col9":-45965025270498650.974, "col10":-67730060493155209.887, "col11":"2022-12-15", "col12":"2023-11-09 12:10:53", "col13":"2023-03-18", "col14":"2023-04-16 19:23:56", "col15":"r4Y@2Ih#", "col16":"a>,4Qp!Y,o+~a4N_.rE_2eIhsgTH>vX(bm~3l$vdJtrnp@?pMKp_IBASj!i!*ruZ*3iMOWChwPRybRUmEbZ,s", "col17":")l+^jtn@MQLK*9a7G)MfSKuY8/=G2DNh0f>d%oCIq>!(.7YqV~yWmi%+pwWLRmU88TZI-->Y#"} {"col1":-2129952087, "col2":-126, "col3":-2059, "col4":1, "col5":-8837074953586926207, "col6":5112551742375942421, "col7":-6595.1167, "col8":419447242.935179, "col9":-92635600957786296.964, "col10":-99426600244345493.224, "col11":"2023-05-17", "col12":"2023-01-04 14:05:29", "col13":"2022-12-17", "col14":"2023-04-30 14:43:23", "col15":"-a", "col16":"Y@OQLeFB!n`xo?@hDQ(LQfTb^Ay_!Smggqhg%fceGJd", "col17":"/q-IbTh@0v-)i*,XOo1j>xlzCp2!-eN-giu(P7^aK#uk`,/yzbS"} +-8584330716254438722 {"col1":933995213, "col2":1, "col3":3267, "col4":0, "col5":-5550829509029152855, "col6":-8797152448685401671, "col7":-6807.821, "col8":1881218185.650995, "col9":44837386411291788.739, "col10":-77744549308538297.360, "col11":"2022-12-26", "col12":"2023-08-24 18:48:11", "col13":"2023-01-30", "col14":"2023-11-03 12:45:38", "col15":"4be", "col16":"1=)tT^~uN(d<%FlwM;`JYpKWzB<+x.PFYfbh!X9EElGf1&bba6;;i2iMz/2Kp_qh$-I^L;3?Sl"} {"col1":-1333802234, "col2":43, "col3":11242, "col4":0, "col5":1196312694517239929, "col6":6213937979195932063, "col7":12792.475, "col8":1428325473.834884, "col9":-62192826868698867.216, "col10":-93168441979234449.692, "col11":"2023-09-02", "col12":"2023-11-05 11:46:33", "col13":"2023-01-08", "col14":"2023-10-29 05:00:38", "col15":"EN6$dzs~(d53", "col16":"uEL)aj7RcOy2B>akn", "col17":"V.GohGHLV6J6/(Xx?9(7fB<_v9TByzA?7?6Yw$PhvyuFfYk^&DGstDc>KG3UqcU!.m;xm%@LE+gEsxk(/Pbbpw?"} {"col1":1086518829, "col2":19, "col3":8050, "col4":0, "col5":-3082049133083595029, "col6":5683422793173472738, "col7":-2291.2551, "col8":-432505729.081493, "col9":-47674030032621905.804, "col10":-80490934942919187.814, "col11":"2023-06-23", "col12":"2023-04-18 23:49:15", "col13":"2023-10-05", "col14":"2023-04-01 08:55:04", "col15":"#P-Bqu", "col16":"<,F@^IxJCX,4#vmwXV2ShV>C2mlige5>NJT.,/T/~@LOKo3cF_=^p", "col17":"Z.Hqh(h3Gl7V%5L%(kk7E37w/Go8wFJo?fBOhlH,qP#gA?HMc)E2psS/8J.Kj/5H3*J>y69SflpRdW>kk5U=Wi;ih,H3L-/5H8ZAh?", "col17":"9G!&Shr?TRk=c;0MmBkB^ctv3%D_(zKTH"} {"col1":-1331045850, "col2":56, "col3":-31044, "col4":1, "col5":-7244667617013002360, "col6":1902503764317765481, "col7":-25882.256, "col8":-380049302.431098, "col9":-9606911474006002.109, "col10":17328632045627481.982, "col11":"2023-04-19", "col12":"2023-05-27 13:22:43", "col13":"2023-02-13", "col14":"2022-12-13 04:36:42", "col15":"4C`o>N#W(XW)F.M8UuUtJLRU8%S7T6cVK^5x^DY-Lr=8V.LyxYo+9uJ6W.9)t9k_(t@V.BTcR8i+", "col17":"Iul)yq?wr*jT~A&Xw3eC)!It21loq%CSn^Im)$t/-ye4SweU1!^S?t"} {"col1":-1125037299, "col2":82, "col3":-22808, "col4":1, "col5":-8303816131517042997, "col6":4386623234696664296, "col7":31390.795, "col8":-321331979.556449, "col9":-9500951408855814.912, "col10":-15572524372861648.542, "col11":"2023-04-24", "col12":"2023-02-14 08:58:45", "col13":"2023-05-26", "col14":"2023-09-15 23:55:02", "col15":"3&@", "col16":"h6tMUgR4ZgYkbTaz3l-cZqOXH=$c0$eVnBq~Z`/i-OIcycC?o!,Tbp/%", "col17":"~rMw9K?15@l`?G7zbS;w6D0-l0oVmD.G<#ZjEEw)j.$#RVLAW`/XFk7--,~z;2b"} {"col1":1558710429, "col2":12, "col3":28523, "col4":0, "col5":5442602451983227812, "col6":5264019481572723786, "col7":30198.125, "col8":506413823.027176, "col9":45601850479542885.984, "col10":-13258345057980610.190, "col11":"2023-03-14", "col12":"2023-05-08 22:21:46", "col13":"2023-07-05", "col14":"2023-01-05 03:50:50", "col15":"", "col16":"uHkiv$KU)dNI6W8DU?>>zIIh^.^)Qjpr2ppOZD!?6,)sOBEFe%a4w4skFT4rk", "col17":"S,Xu`uz3QhH;COFcN9*6PnsH)Mf4%GW^OV/#xce)*BANp@263aBjV2?qIB-5$^Q/>Hv6%~ph"} {"col1":610229798, "col2":63, "col3":-23158, "col4":1, "col5":2607349881852175976, "col6":-4831004874800938260, "col7":-21914.416, "col8":-2107006238.699932, "col9":-13894840376099276.889, "col10":49077690290463004.191, "col11":"2023-11-02", "col12":"2023-07-29 16:40:01", "col13":"2023-04-14", "col14":"2023-09-11 12:24:43", "col15":"StJUT(wB>@", "col16":"y(@?NZdvk3O3axN-AN=ps9=!~^5apnzz!RW.CZzs`4&%l5p0SY/>)/%t#.ZXpJfgj>^d_FGhtphZ$P-ZY?;/", "col17":"oFI/=&hVVm+Y7MJssb&KP^M7GQ!+)5`.CNOZRfqwR$1S%cMZW!Os$(+rfJB&###*Pg)uDu,IdFK)DpOq"} +-8526590106902518025 {"col1":-2135397004, "col2":94, "col3":-29670, "col4":1, "col5":7090872835518711333, "col6":-1916621235651057979, "col7":23394.068, "col8":1655037893.333014, "col9":-36143234288746464.456, "col10":-61754523073078713.138, "col11":"2023-10-09", "col12":"2023-01-10 08:53:04", "col13":"2023-04-07", "col14":"2023-05-09 07:46:38", "col15":"1V97aoL?&c!o=", "col16":"GjA`VBdRgX", "col17":"KgFF&je5+,NvGEdAz_;dufCth_a&5,gSu~orh%)pUn1FyV+5,cyA(Yw"} {"col1":768834811, "col2":111, "col3":-12368, "col4":0, "col5":6987671692766035939, "col6":-7494881589590755673, "col7":-11690.967, "col8":-800701084.768676, "col9":85704989772506616.614, "col10":49389328660634750.811, "col11":"2023-10-26", "col12":"2023-10-06 18:51:32", "col13":"2023-05-11", "col14":"2022-12-08 01:37:15", "col15":"n&JJ$4r4K)8Q", "col16":"W&x/kQI;(P/PQ`9#VVbW~Ouv,vI", "col17":"fa)$MGzGg"} {"col1":-1823219684, "col2":-12, "col3":26992, "col4":1, "col5":-1836403498572963938, "col6":1722310216718493557, "col7":24048.455, "col8":1916478884.258523, "col9":-99164804684678355.416, "col10":-91191031383207337.116, "col11":"2023-02-20", "col12":"2023-10-01 18:54:49", "col13":"2023-02-06", "col14":"2022-11-15 12:19:11", "col15":"LRU?R2&pR9H", "col16":"2_%90#WoB//HfXMKVl7ssi1Kg.$uZtbpR6Flbn+XO=<92;Vb=3Aq/", "col17":"a.lBcPe-v&wALCzy~?~mno?9LeLdec=K-_7Lh,9.UWsu@T"} {"col1":2046878137, "col2":-45, "col3":24125, "col4":1, "col5":8733335759463317387, "col6":-4889254601679646071, "col7":-1522.2361, "col8":1772345507.502007, "col9":-4765781927035297.105, "col10":49534300407852204.210, "col11":"2023-11-06", "col12":"2023-07-01 02:40:28", "col13":"2023-06-17", "col14":"2023-08-09 11:36:07", "col15":";WRfOM.%/G", "col16":"hUfxWQK%VuMWj=k.n

f8M?e_IifBVczWQR<%b#x96h", "col17":"9ORK=%nvv7$j;+?!=/"} {"col1":1931749918, "col2":-61, "col3":-26023, "col4":1, "col5":655886868675975318, "col6":-6228523992121274715, "col7":-30416.277, "col8":404494499.593156, "col9":-90704723127910362.852, "col10":-48830702924564917.200, "col11":"2023-03-22", "col12":"2023-03-30 14:30:20", "col13":"2023-06-25", "col14":"2023-08-03 20:58:14", "col15":"1", "col16":"w0XlSO`^~3Mc8`J_AZ$kD-9.eZbvk65/TZkg8fU!4yciWdSUGfE?+cJ0yEI8I+f>O@en+%I%1R!ccmY", "col17":"nArT@GE)iq0,`KrBS9uyh#*Y.T=ACL.m>^xc-!ZvF=VH@v1E$K;iR_Z=z#;5~~/s&/>s)-d=Z!t%s=UY/fMQ~6IE", "col17":"w)j>29dIuV0;P13d#*("} {"col1":-784154300, "col2":-62, "col3":-25126, "col4":1, "col5":-4498219135499881772, "col6":6856401980615832763, "col7":12140.458, "col8":-242951193.82197, "col9":39747421746866133.595, "col10":98412075066012684.979, "col11":"2023-05-29", "col12":"2023-09-07 20:05:21", "col13":"2023-04-21", "col14":"2022-11-19 03:04:38", "col15":"K=O^alW)L`", "col16":"EgcIHa^Hd(GE~3gM@UK", "col17":"qJo9+1Ho39e*Tf2S@62#FbSIF5)+e?pxfhlOEHe*S8k%#MlOplPx&U/0`7erPd3E%lWIR<"} {"col1":-1345998070, "col2":73, "col3":-12307, "col4":1, "col5":-2346592350776300502, "col6":4576202285731461241, "col7":-676.7377, "col8":1364540328.064018, "col9":13432767121839671.998, "col10":-26324936959989359.594, "col11":"2023-02-11", "col12":"2023-02-07 07:08:09", "col13":"2023-03-21", "col14":"2023-07-24 06:50:49", "col15":"", "col16":"to_qGASeSl*X2nbC3", "col17":"WBZww5;5h5_7hv6TiCrx9wJbP@A22S3FHcCK#KGPF8("} {"col1":-1988183162, "col2":40, "col3":-24136, "col4":1, "col5":-417379002178085796, "col6":-1474977584348316966, "col7":5310.985, "col8":1063839607.392107, "col9":-54413137402446947.803, "col10":-73693930358854252.940, "col11":"2023-02-25", "col12":"2022-11-22 16:29:59", "col13":"2023-03-22", "col14":"2023-07-05 19:30:45", "col15":"qgH`_", "col16":"V^;OOSkIoiGuYYAl4y*X3sBY.3_t*@/B5&19@6-q~", "col17":"MF#?r7V9tm8lGzpKoSphji8*=z%mYM5OU,Fiq`El=0snqAJll%6LM!n^H`"} {"col1":-1180095966, "col2":75, "col3":-9704, "col4":1, "col5":-7929307379393601542, "col6":-3221655257874030538, "col7":-22961.36, "col8":1350934064.919748, "col9":71590329804082297.316, "col10":68490249642371318.980, "col11":"2023-09-22", "col12":"2023-10-06 19:04:38", "col13":"2023-01-07", "col14":"2023-04-03 03:02:49", "col15":")?", "col16":"Ghw%4pXF_LI1P?M^f7c4&o2K-QEW%p8&trAj~DH4=dQ+2E!n%U8"} {"col1":-1042939487, "col2":-102, "col3":-20093, "col4":1, "col5":258704357774718873, "col6":-4387908451084538500, "col7":-30131.84, "col8":265721776.737866, "col9":-2616511530016594.215, "col10":28484710821627763.956, "col11":"2023-03-30", "col12":"2023-06-19 03:13:57", "col13":"2023-03-11", "col14":"2022-12-06 13:04:22", "col15":"3rKKL3s>", "col16":"FVWF@8vMgd)ePWR?u@V+I9eSr0FK`!x;+%l6^u+bkBH+Tk+1SRrL88J4;xG%X~kxh0Rf*5b", "col17":"almPDzqhC!rL*)c8j5XLkhv~Y/y~V3x.>iD/msL)N.c8(J_s?Qlpu^zsxiIg^Ig$G%y^,_r+lsHbIaKLW9X3sP)2bRwu/(!dOKA?TZaDI`MfFd0K+9f@Dbf_xh9>n!I22MqP2X)pY7@g0PjtRR", "col17":"/m6JI,%hrjW*C/EMawnUA+P%AHG"} {"col1":-96922114, "col2":23, "col3":-28004, "col4":1, "col5":8446860350965531770, "col6":5642173086219796099, "col7":-3171.0913, "col8":-634821029.823853, "col9":-98654792721280301.185, "col10":90696742528251983.209, "col11":"2023-01-13", "col12":"2023-11-06 05:10:39", "col13":"2023-06-18", "col14":"2023-08-12 12:51:35", "col15":"N6W4", "col16":"EXbHnU*G*x1(Fs>=`Oh;QjqM7>q5S6x=l%AeX9@p~_ubptVMbC$9/L4", "col17":"KkAN)vprmfxmbZ3-BQ2w27g2X=YtRc6!_e_Gj#H."} {"col1":913460251, "col2":-122, "col3":-668, "col4":0, "col5":6507538830189845573, "col6":-9049683691868904419, "col7":32287.156, "col8":-589894718.031317, "col9":-42663927076874213.955, "col10":-59265662945486651.537, "col11":"2023-04-28", "col12":"2023-09-26 23:37:43", "col13":"2022-12-02", "col14":"2023-01-20 15:16:56", "col15":"hJND)Sz", "col16":"VFdc4H=RSuNZ/C,6N", "col17":"PBo("} +-8505366084515032753 {"col1":382502710, "col2":-10, "col3":-1057, "col4":1, "col5":-1053404092722092555, "col6":-3224814438034550078, "col7":-303.36923, "col8":1394068216.774496, "col9":35385157086902073.490, "col10":28542472828538829.527, "col11":"2023-06-15", "col12":"2023-08-08 18:11:20", "col13":"2022-12-18", "col14":"2022-12-31 10:35:49", "col15":"aNDd", "col16":"rf&g;llr0AcaHMvj==5.x^T6<5#,s9g6Ce+%%shkcvv==<-%32nk0UKGn/Xv0ze1BPHIuC5b/=LGg6Z3S8gm`F)#w", "col17":")xh~)TJqjj.DjX1yU2Ri6KQJax"} {"col1":-1855122167, "col2":-3, "col3":15689, "col4":1, "col5":-2367363947390869432, "col6":-6532659416199639957, "col7":23066.408, "col8":1319308662.25036, "col9":75101865537681458.145, "col10":847059006678943.372, "col11":"2023-06-22", "col12":"2023-03-26 14:27:35", "col13":"2023-07-13", "col14":"2023-08-19 17:08:01", "col15":"", "col16":"rspt?wZj`f,b.aEWAm5KI&s_q;yFo(>%OYX+WlZQ4uEBzq4^kJGGNIJ1W;", "col17":",JBXQweU"} {"col1":863299634, "col2":19, "col3":26127, "col4":0, "col5":-3722113302586638684, "col6":-851562457423560807, "col7":12379.872, "col8":1344459261.478156, "col9":-5722993038821801.748, "col10":-17110044615450491.806, "col11":"2023-05-22", "col12":"2023-07-06 18:43:09", "col13":"2023-03-30", "col14":"2023-01-03 17:58:06", "col15":"CW4hXqcNhZ(7NV", "col16":"^-GcQPOz2j/^JouKfQ!j", "col17":"fL@>t?5)3esV/+),%xsD`;^ModFpKCj^qhGyEThhB+s.w_#0ZSEvdtmUPKcU3!I5DBaoc(?6--TxUy0lMqgGGJ_1?Ba?Q@*b6->;I_koUI5", "col17":"lu<.4A8;Po5"} {"col1":517718032, "col2":8, "col3":5617, "col4":1, "col5":2036983629624140619, "col6":-8004741025176861266, "col7":29875.326, "col8":518876871.957944, "col9":-91214823930019420.126, "col10":-83897543475024225.103, "col11":"2023-11-04", "col12":"2023-02-17 02:18:52", "col13":"2022-11-25", "col14":"2023-04-16 21:00:34", "col15":"", "col16":"6hv*w,;~7ReMx-z)RyB0SncbrE_E4=ar0X(QPSxbv?v,sYR/.nsST,Lsf2lC-", "col17":"5+@eImE(-#Aq7Ti,Z7I9SmCU8jGwXs.adUs152`KV,SUN8r$A>_I(Mzpo1wyUTbQVQF+ynd*"} {"col1":-26851415, "col2":77, "col3":20803, "col4":1, "col5":8462280744723342223, "col6":4028913701469404239, "col7":-27780.814, "col8":-1695167601.009997, "col9":-49423859244307827.797, "col10":21504216931240673.598, "col11":"2023-01-01", "col12":"2023-06-27 05:34:56", "col13":"2023-05-01", "col14":"2022-11-26 20:17:19", "col15":";jWy1&q3blu>6IO^dh9#B_@I.JL1FWW,Kat?I5;?foXR#s^pWy8aAQ1M=Pc+(dz&/"} {"col1":-604602583, "col2":57, "col3":13011, "col4":0, "col5":-5302358667068573583, "col6":-5456138891970329645, "col7":20375.229, "col8":1419926154.765488, "col9":64309450696316848.480, "col10":30650186013769395.238, "col11":"2023-10-23", "col12":"2023-11-06 06:40:28", "col13":"2022-11-21", "col14":"2022-11-25 01:32:41", "col15":"ienLsZZoNc", "col16":"Z`7h~<62l*T,(Fum0!A=a2Dql0", "col17":"7^=JYmEr9?Js%P%1Pgiy,!l5>e-*GgFF%F#iJ/FV`0-Bjg6uR%W-LK%B2QZf*gE-(IO!p>whxfod2)eg4%/NZ4"} {"col1":1296845509, "col2":59, "col3":21046, "col4":1, "col5":724993822370556458, "col6":6265074313340910084, "col7":29620.066, "col8":1513249955.591215, "col9":-15705720077200863.493, "col10":-18756131852709044.646, "col11":"2023-05-11", "col12":"2023-08-17 11:43:03", "col13":"2023-03-17", "col14":"2023-08-17 16:03:28", "col15":"EYv*0AKQ3", "col16":"%k%,cq5^6AW4k^*D(IFeA?jMf8TZfP@AmmNj3-EVFkT>~2GHzC3=pd)R6Vu;E`0A;WrJzpo`Fv4Cqo*^^!C.($,Akh9A;+RKM^W&", "col17":"?6BBn/4tSggoWM=V`-YK=u_5*D=WP3;/G3s<6mFMa5725,9$t.!)nMta1kaI?l6t`P!+k&nKc-"} {"col1":1787385854, "col2":-123, "col3":29564, "col4":1, "col5":-4220216585811082502, "col6":4960039834428859787, "col7":-14863.338, "col8":1683405330.677428, "col9":57974039101802622.279, "col10":19353920084990675.742, "col11":"2022-11-24", "col12":"2023-04-16 23:42:22", "col13":"2023-01-29", "col14":"2023-05-15 05:35:02", "col15":"O>5PB6i>NmB", "col16":"VezoSRw-mx0j6ye?a6/6pnEPl`$i#NMvQ(x+_s,ZJN9?.MK", "col17":"N%RxT2%Al_#SU<6TZK.FZa-.25+sb!hILyv?#fn^szkG=hO>G,A0`7pM/NskTuH1+E&G=K@yg;I8iUf7ONGj3"} {"col1":181016402, "col2":-66, "col3":30163, "col4":1, "col5":4495758931964433648, "col6":-8653734159677839442, "col7":15644.355, "col8":-1356097265.535016, "col9":-89608254464744295.275, "col10":-42975241952851160.770, "col11":"2023-05-25", "col12":"2023-05-21 12:36:03", "col13":"2023-01-15", "col14":"2022-12-02 00:23:30", "col15":"IIywcqM", "col16":"T;)^_Mbku6CT1MIc0bD^#%2IaYOh@rhnrjC", "col17":"CpS3bbNX)rH#8Js5ieM<;5R?YBeE5/nUmmx7p~oY~=c/yfvRiASR*R6v"} {"col1":1469934754, "col2":1, "col3":485, "col4":0, "col5":1224735581054006788, "col6":6089508584939008713, "col7":20772.271, "col8":-340537207.844391, "col9":-25669600080047259.795, "col10":55365122064805386.858, "col11":"2023-01-02", "col12":"2022-12-30 04:14:03", "col13":"2023-05-24", "col14":"2023-03-07 14:05:07", "col15":"x4JeBv", "col16":"(o!sVg*!Z#dt0lF<*vxkfoK#1b", "col17":"D29^$!xZ)vz3.+);W", "col17":"(6t&$tmJvo`XL3s4z(t*P-~*+gau$i.NWn?VD&.`jFTF?0voTgJ)C7PgDj/_oiZw/q&A(u-9S"} {"col1":-731917057, "col2":37, "col3":6151, "col4":0, "col5":7777078010512157661, "col6":-2759816014023267952, "col7":10645.079, "col8":883698261.707048, "col9":-76310146256900243.312, "col10":-6973273195653891.327, "col11":"2023-06-18", "col12":"2023-10-22 04:11:48", "col13":"2023-04-26", "col14":"2023-04-25 11:45:34", "col15":"UXuOuREEJ", "col16":"l^rtqAEr4>ec.Vw;QBrajvx(?d07he1jyx-z.!(h`Ya&Zh?O", "col17":"VED-)l&4%vqo$g$hEMQZ=!"} {"col1":-951913828, "col2":-49, "col3":-19436, "col4":0, "col5":-6614975947088839054, "col6":-2347794520629140789, "col7":18287.795, "col8":-265026577.394333, "col9":95136006648803303.130, "col10":46455594961007726.578, "col11":"2023-06-25", "col12":"2023-09-08 11:02:25", "col13":"2022-12-23", "col14":"2023-07-11 20:33:27", "col15":"GD*~", "col16":"MlBbK%Y(G3,Q>8.z&KMwUHBt0p/m<6c!!xkI8L%9Pri", "col17":"h%LK"} +-8368163552280161902 {"col1":1769209089, "col2":41, "col3":31160, "col4":1, "col5":-2575336798099083185, "col6":-883044937893669077, "col7":-19593.564, "col8":732727904.190433, "col9":24471993109695208.242, "col10":7027799225935328.300, "col11":"2023-03-14", "col12":"2023-06-17 01:00:36", "col13":"2022-12-16", "col14":"2023-06-01 03:23:44", "col15":")ysk+f.Rb;Mk", "col16":"rpXzdz#~NQOpWj8uq%$3Uo(7)2wSmy&XbeF~mpb80bhCN$<%UqoFQ).xInr)z1e%Wm)miFk/gPZIOC=DS=$-P-e~ZKT*Gc#n", "col17":"Zw/sJQD+!qGN&,V0gq!>&KcN-5HzygFJT(3%YCpX2p6GIkmQJK-4hkf^o^Gzo0"} {"col1":-1128656019, "col2":38, "col3":-31755, "col4":1, "col5":-2435632141806412164, "col6":8136450037899463794, "col7":-459.44894, "col8":-831192457.489055, "col9":97591785640602819.751, "col10":-62968590713393600.518, "col11":"2023-01-16", "col12":"2023-04-07 18:36:15", "col13":"2022-11-21", "col14":"2022-11-11 20:28:59", "col15":"-C?2=,2G1e^#Y", "col16":"9W$$AAoJo2lzO$@;&SOg", "col17":"BF=Zg9mC%Tk"} {"col1":116046830, "col2":94, "col3":-22557, "col4":1, "col5":-1598164460844399072, "col6":-4158706534326890839, "col7":24433.285, "col8":2134151714.625505, "col9":32526239216662343.382, "col10":36428786060450888.560, "col11":"2023-05-03", "col12":"2023-07-10 18:46:30", "col13":"2023-04-22", "col14":"2022-12-11 00:40:44", "col15":"=AL", "col16":"nBEdvMoi&Ku%CS#9YR)1e)w&InunfqVq@z5%j97_AX2sH", "col17":"^3Lnzbz)b%j@!d_1I)@T;K,Qd#L)aCv*0U(Rnys3LLod%ZUxhCjt&7~gd5NW/ji+6Ay^d_b23=HfC&X0GqfS,vu#WV2/o;q1"} {"col1":-931769087, "col2":-29, "col3":24745, "col4":0, "col5":3139286240265536402, "col6":6172939574734784743, "col7":-9849.977, "col8":144474395.964448, "col9":74949219831536557.243, "col10":-61657785466666969.507, "col11":"2023-02-10", "col12":"2023-06-15 06:30:30", "col13":"2022-12-03", "col14":"2023-01-04 01:09:40", "col15":"MJ~0M", "col16":"7S3w*O`K", "col17":"f1<.Ruq+++&Lj1_yd)tT>PWT91>"} {"col1":95091621, "col2":-34, "col3":-29230, "col4":0, "col5":2881528624934468265, "col6":7807966468061685861, "col7":12235.277, "col8":-952013846.37979, "col9":8704675164427700.119, "col10":22241492001285031.114, "col11":"2022-12-18", "col12":"2023-08-18 10:03:10", "col13":"2023-09-29", "col14":"2022-12-06 07:47:44", "col15":"cb-fe=HQ2", "col16":"ODws3EY*izfCOE90(2iFs7^BdkVssW7cg/k#pQQk1u,cOMReo/fn7@MJ&unJK5OI=>QVS(.7.JQmm3Ue61_WTcqwU@t<@r5qj,TJ2?L", "col17":"CpZMP1~/4GLggIi95mY%IiBHMb+iZK/3&J2+135ostS!jE,cpgIt3FGZ=!=b2ua=,wi+l.7#VU4(aUrSu^-y~T$l1eEi.b,S9Na&vIC)9E=P_mrOw_J$I;Ss?5h"} {"col1":549081643, "col2":-89, "col3":-18860, "col4":0, "col5":2268837686650169392, "col6":-3564791349665118608, "col7":5688.7407, "col8":299803683.69027, "col9":92982331476439301.594, "col10":-93330243753042154.201, "col11":"2023-06-05", "col12":"2023-10-08 21:25:31", "col13":"2023-02-20", "col14":"2023-05-03 02:23:37", "col15":"d=GDd,", "col16":"-hCK9Q%sfXLRfN35e1W`WAWi(A3s!+;wwL(hRvzT~Ipp`jAY%q8o-z(ueZptTS,Ua9?gt^y9Z8yQK=h#44s", "col17":"Up4HiD^Brz.),~KbbW"} {"col1":-1783476026, "col2":-48, "col3":-17310, "col4":0, "col5":-7963598298499820103, "col6":4904571652507647260, "col7":-10607.233, "col8":-1974193014.984611, "col9":-42459355958681098.454, "col10":-18238483948356281.750, "col11":"2023-08-30", "col12":"2023-05-06 07:37:46", "col13":"2023-02-08", "col14":"2023-09-27 21:55:52", "col15":"A,blh00/y,", "col16":"iOn`m", "col17":"9+5KWeLDsbd/&Uq+1-Ehvu2^S-RxzF>sTzA)dO76#CJ+q0b_W3%Vz8t(xi9$Pzr7XGmRC3qTg!qQf&`%Dd@I()5gfj9^+j_0AgHM?!I()c=li^>"} {"col1":-496454371, "col2":121, "col3":-32536, "col4":1, "col5":5109585439962885589, "col6":-7561145607543036624, "col7":-1663.4861, "col8":-956519190.050091, "col9":-10288691912800152.494, "col10":29496554612133109.983, "col11":"2023-08-28", "col12":"2023-08-31 09:50:56", "col13":"2023-03-24", "col14":"2023-03-19 20:42:21", "col15":"%+.U&gn<1ZU>Mf", "col16":"=Y$EVG,h-h23^r", "col17":"NR.ZpMOo%1E?"} {"col1":1238201496, "col2":-10, "col3":31686, "col4":1, "col5":1122137690708375175, "col6":3751166452543437548, "col7":-15929.366, "col8":-209845314.081667, "col9":82928606746951351.951, "col10":-24921390371752053.504, "col11":"2023-04-16", "col12":"2023-03-20 23:55:33", "col13":"2023-10-31", "col14":"2023-02-09 06:24:56", "col15":"I-", "col16":"J3iltfk&9#5Qc~44Xu@_f?^u;(7J", "col17":"J,>9sWD,HEb+f)sMZy,=e?YLj#W)CQw&Tryuy?2q!C&2;cNp4j3~95VzfeI9QTh*o~=y?!D0Md#6G;1g2$8Q3j5Eq%"} {"col1":-2126172544, "col2":-43, "col3":-30224, "col4":1, "col5":4477399578851748461, "col6":-8164663132923309779, "col7":4598.504, "col8":-2145707155.719386, "col9":-16186361543705830.429, "col10":-70898288416135568.483, "col11":"2022-12-22", "col12":"2022-12-05 11:00:58", "col13":"2023-07-10", "col14":"2023-03-03 03:45:05", "col15":"v++#N", "col16":"jB/H(1KjyS,Y2-f`64cMz>$24^IOxrk~%", "col17":"DH3k3igl~`7pO`wlSAWbcAW&n^d#jy;6RME&e$6^bc/Sl(;kcBgpWt(17t/Q7%AP5l@MQm8BK8Saq=dqtSl#89iEyJF=5d4eQ*5,7RX!MW(O&4V5.ra&`wwkhoT"} +-8130752084420850754 {"col1":-630784508, "col2":-107, "col3":-22332, "col4":1, "col5":2526767180146544499, "col6":3669637146075805854, "col7":-2381.3687, "col8":75875226.650256, "col9":-16215099298195794.320, "col10":-33531867113672142.943, "col11":"2023-10-15", "col12":"2022-12-26 23:51:13", "col13":"2023-10-01", "col14":"2023-07-14 10:34:13", "col15":"Y", "col16":"3/j4pBCb;)0fp(F45MD7@FNT=R1kj93(_4_wA5)vOYD!W#6LWF8", "col17":"&lOgTZ!dZ^,iG>4Ps!-)S+KQIOSClIaQYS$N@ei~(rVZwKb*7?Qzomi&K8GfdD1-hs1S"} {"col1":-520495782, "col2":-18, "col3":-10052, "col4":1, "col5":-5500653227385262734, "col6":2071128999812670433, "col7":-1284.549, "col8":-1758340715.165546, "col9":-40984045024860021.904, "col10":-69726335010103532.380, "col11":"2023-09-26", "col12":"2023-02-20 13:33:55", "col13":"2022-11-17", "col14":"2022-11-14 20:14:11", "col15":"tA&/#h_LkO", "col16":"*4WJcDm&K370&0pg7#s).g=_BsN9(fU3npbI0/!x,WIAg3;SqALl^~7Rx?", "col17":"ku^@V1&/5o/C@m1*?33C9-wNN?UQ+ax`g&UYfdlr+m)6v"} {"col1":-254305488, "col2":-32, "col3":-23700, "col4":1, "col5":-6047527938938229808, "col6":-8390007357285860601, "col7":-4994.1514, "col8":-1938449016.468337, "col9":34009355692319729.341, "col10":-49705304084897838.366, "col11":"2023-06-07", "col12":"2023-10-19 02:54:45", "col13":"2023-10-08", "col14":"2023-06-23 15:47:35", "col15":"L+L", "col16":"Zt)P", "col17":"fqxwKRGS,E8oDUevQ!TRV-a12"} {"col1":1320721215, "col2":91, "col3":-14366, "col4":1, "col5":-4901320206869872612, "col6":-6734233068323413885, "col7":3092.9668, "col8":-2128909677.420208, "col9":91585706825195524.237, "col10":-18583607961702373.593, "col11":"2023-06-08", "col12":"2023-08-08 09:11:42", "col13":"2023-01-29", "col14":"2023-04-01 20:42:08", "col15":"R*%oyx", "col16":"+aq(16wM3z_Gbqra)J8j.T_drPtA_sN.vnF2-&JKv`PtifOZ..`zm6wP", "col17":"5,~$Gt=a&1wHdruBM),mb!a;~UdshW)Nd*-+nSShC(0MX0CynnazHS4U*ng#,<&Ys,B/Xb=?;.Zm/1./xOgBa"} {"col1":81795598, "col2":24, "col3":28966, "col4":1, "col5":394278581012445475, "col6":8538625659064010725, "col7":3152.8525, "col8":-582541726.405779, "col9":74628837758040294.322, "col10":70855409169031646.167, "col11":"2023-06-25", "col12":"2022-11-20 10:41:56", "col13":"2023-03-21", "col14":"2023-10-19 06:51:35", "col15":"8zN?XTqrRsgWSTE-hq2gietM!", "col17":"VkB&g~;#eP)mzBF#6Y(3_wO+gRlSCvb_oH4IzGQtrF-LJVrE/^FPdN@ACS?o7Iz~+8/41D&rV&`"} {"col1":1584719334, "col2":-122, "col3":-18196, "col4":1, "col5":-3719741203767950872, "col6":8275693320339631705, "col7":-21392.152, "col8":84254794.270132, "col9":-88846332068119370.580, "col10":-64509349060859205.997, "col11":"2023-02-27", "col12":"2023-10-22 15:43:08", "col13":"2023-11-10", "col14":"2023-04-27 15:46:11", "col15":"", "col16":"jX5hB0vr%uqgmVY,_+ckuo_@<@N>rjV<%ow&J4QU?*U06h~r@kT@HB,b0fXU*#fyW.>6iiL!o^u*Xk;V0>dNuCul/gAlq?&O^/%q4?3`^Ku;"} {"col1":-1929296815, "col2":-14, "col3":-29091, "col4":1, "col5":2209692967284329947, "col6":-4467649585163870281, "col7":-28066.814, "col8":-1125999447.229004, "col9":-22573967746140374.696, "col10":-77244170296332062.250, "col11":"2023-03-31", "col12":"2023-10-13 17:39:26", "col13":"2023-04-29", "col14":"2023-02-20 15:16:10", "col15":"?`!+Ichf,4w;", "col16":"18O.M!HtHcPtwhzY*_JgpBqBwGX_PfEbo;AZ?H3xh~m&4ssjAQfi$c%H>hse0zz`Rej$GM4mKAsHub;X+PooPp1x&WDwKVQ>eI1", "col17":"$hJo#yv`YGqSzy7esvlz2mTr9g#,RXfBE-;ga.WmS?JIr==kx4eam`y8Xnj/!U;I$fOrK2,W>PDAEJkaZ35LM9hhWHAx6mm(uq2J"} {"col1":419519048, "col2":50, "col3":28572, "col4":0, "col5":5109939873256684424, "col6":-5732498347084127922, "col7":-32468.19, "col8":-1737443888.096589, "col9":73968231814261632.732, "col10":43931705735412210.900, "col11":"2023-01-27", "col12":"2023-07-20 19:48:07", "col13":"2023-10-11", "col14":"2023-10-12 11:52:25", "col15":"_h%", "col16":"LE3vk3YdPS<%a@h,YBI&^lyt.+W,", "col17":"CA,wAaQsoJ3(USyxwejK43Qn0lazs5W&r-2N8Sp~(T0x7piIcs/4R&HXws>v((jTF_3a"} {"col1":-1581073211, "col2":-69, "col3":-26033, "col4":0, "col5":-804312312636283370, "col6":-6625806106514412241, "col7":-29053.072, "col8":-1698261199.931556, "col9":76451253322373236.900, "col10":11769426737212010.997, "col11":"2023-07-27", "col12":"2023-08-24 17:29:23", "col13":"2023-03-14", "col14":"2023-05-15 10:54:11", "col15":"?*GQsppENz", "col16":"aaW4;dDES2~8!eT0$TM+=23", "col17":"u*n7(_rGh#5F&)yMsXd.nRd6~No2,+UsWc?;y+;)x(uqQA7*x4)rew#6U9yI^&!UAK32hbGSl=;gF4,k`eU7(aXaw8Q2j_#&3i&<>NAJYF"} {"col1":1428826758, "col2":-33, "col3":-28399, "col4":1, "col5":-6469244622958594179, "col6":8335848240829608549, "col7":1618.6619, "col8":-1903223955.308646, "col9":93206268136712031.791, "col10":89306733804707873.770, "col11":"2023-08-31", "col12":"2023-09-04 12:06:05", "col13":"2023-05-04", "col14":"2023-02-07 02:04:35", "col15":"!YW", "col16":"/", "col17":"(6m.hGHHlnXdK_`ZZ)YcreXek%Ytz)l=g*Ps)oQtGsF0_y17ZWLb?P,gsyU"} {"col1":-1069306143, "col2":-4, "col3":-8547, "col4":0, "col5":-1383569491875123898, "col6":-8034778851940663966, "col7":-27188.469, "col8":1926605339.570438, "col9":46458896379925035.526, "col10":-94635160698411887.823, "col11":"2023-02-22", "col12":"2023-01-07 15:18:48", "col13":"2023-08-08", "col14":"2023-11-06 22:37:56", "col15":"p$BN", "col16":"!;Dy4P$X7F", "col17":"_KKaRhOuw;s,J$nS6oDa96EaYOry<@mBk_.B,_K-ckvEf8lQAjHh6j.J", "col16":",J.~MKo4)2pg/R23DVNA=7Tf)J*Sg-s", "col17":"tq&IP/6U)Cxr%D20@z+kgOn>QZLNEL3rM4a`Yy^~sKbb-++RSmR$TZ&+s4y,el=.yCT>B96adZW"} {"col1":985501155, "col2":-24, "col3":21311, "col4":0, "col5":5527964666005317471, "col6":6946948188736388580, "col7":-8703.959, "col8":-103891562.352326, "col9":-72256959944011241.745, "col10":-15805720823720834.900, "col11":"2022-11-11", "col12":"2023-06-25 00:53:52", "col13":"2023-04-03", "col14":"2023-09-27 16:58:07", "col15":"", "col16":"4lu5D#+1Z&7@8R1q", "col17":"cyNXc*5#q!p$", "col17":"Ky"} {"col1":1596224467, "col2":106, "col3":9539, "col4":0, "col5":-809051164961171210, "col6":6250982782242314377, "col7":-26671.64, "col8":56606733.145908, "col9":-80540802744766207.953, "col10":77085717692287751.994, "col11":"2023-02-11", "col12":"2023-04-13 15:33:02", "col13":"2023-06-12", "col14":"2023-07-03 11:55:11", "col15":"3_", "col16":"tE9nr=yFH~l?QxREEq@#4NdI7AbN%jb-*uF<4l/jDiFl7%Hw3Ho>n/C%Wn;XQA-pUiNGUo6$84+MKhB#WZkimtAej"} {"col1":-1218975697, "col2":-70, "col3":32402, "col4":0, "col5":-5168465205297713683, "col6":-42506747499361319, "col7":11149.558, "col8":-124984675.779518, "col9":-82155323751512945.216, "col10":-89459933378296748.604, "col11":"2023-01-09", "col12":"2023-04-16 20:26:33", "col13":"2023-01-19", "col14":"2023-03-31 10:02:16", "col15":"R-qvD+", "col16":"62H?H_R;SrrD5?a0LNWH~(5xwLE9=aXt", "col17":"QIqR?RRBaZ=.0EF3$p>_hD2_l)R%G^jvH`;gSz?*W@p,)>ddPiKr;o9)#45Us+j1;KXqqw?)$9XPBYjIQ-<(qcTdu>H)eN5?0oMzM)A%toAOGK$+6!``", "col16":"Rq`)B_wCqr~3D", "col17":".-G1FfO_&y6ciUgItDFzp3^xj2wT)3,3YL"} {"col1":949190741, "col2":-109, "col3":23132, "col4":0, "col5":-8107750618520010248, "col6":-6431170840840398337, "col7":-31010.111, "col8":19577291.956868, "col9":-42853285297909894.649, "col10":-69573641063301319.816, "col11":"2023-10-25", "col12":"2023-05-21 17:21:28", "col13":"2023-10-10", "col14":"2022-12-31 16:39:27", "col15":"", "col16":"Y;VSV@?j+eHK0~CFokCe*r.$gq*^sqPIxHI", "col17":",f>E=XC%CFYUP7&tvYjb%LJu#GDnMQP5.~)SQH0P-D;yaR5DiVr%<5ouv$YkhXeLAR@Ym1!vkwTZ2,8bUERr?MuA"} {"col1":1527563124, "col2":9, "col3":-25868, "col4":1, "col5":-8331595583387132313, "col6":-6031385467825388820, "col7":17599.04, "col8":-1485375156.20568, "col9":-16742871194598893.775, "col10":66735741323698862.142, "col11":"2023-04-27", "col12":"2023-01-19 11:37:46", "col13":"2023-03-29", "col14":"2023-08-27 01:48:45", "col15":"RCFOt+1", "col16":"%2~aM)waci$;?$Y~?hdzsOQTTP+Zq2lipeXn#QC*u1@QX62!5-A7727V3LQ+", "col17":"70#?^Ow/rdFvrFFVDP@NtWebpxm;jgcl8#0QEyC`7v0rh<~2h@ofB$Fue"} {"col1":2018260508, "col2":-103, "col3":-24472, "col4":0, "col5":8997678386359787116, "col6":2451818178827354507, "col7":4805.7744, "col8":-839371064.997656, "col9":-2820518180207585.420, "col10":-27518074549067322.799, "col11":"2023-04-01", "col12":"2023-01-20 23:26:49", "col13":"2023-10-20", "col14":"2023-08-25 00:04:01", "col15":"8iYzEiw7AMOd5", "col16":"0@P#6", "col17":"BdWm*QfNDS2ty?^cxcNgHxDda3rHiFvXbHrs;L"} {"col1":-1482004443, "col2":102, "col3":-12999, "col4":1, "col5":-6961079697649502866, "col6":5857042070324174976, "col7":14277.545, "col8":-1583282209.721317, "col9":-78563765934769168.374, "col10":59319192883565341.984, "col11":"2022-12-24", "col12":"2023-07-26 04:50:03", "col13":"2023-09-07", "col14":"2023-01-10 21:29:43", "col15":"VaJH/X*K/D+w", "col16":"h49&Y9FGYt&D6Aig^lqbP)c+qDpi>R#$OlL6,gqY,", "col17":"&m+v03q6D@;Z9te5S)o8@h/2cGZ=Cpy*G6h8VOK9wSgH_(82bI~N96CfoepoO0`t`Rh_~BIPuq76R8ezFW>;z"} {"col1":652276964, "col2":-54, "col3":-19502, "col4":0, "col5":-2722052385324355445, "col6":-2372892998911631963, "col7":17475.604, "col8":-1783374012.97851, "col9":43667004322191647.526, "col10":75072779420286165.380, "col11":"2023-03-15", "col12":"2023-10-09 08:54:52", "col13":"2022-12-15", "col14":"2023-09-04 07:53:29", "col15":"i,i~yA;2Zl9P7*", "col16":"7E1;FbW9.LRT1yBl>#", "col17":"AN@^I?9/?l/GllxiB)^&k*y/Hy,Epewpdy-mL~#Bh4*?NQ+S~y,X2rI9+$ws8l_./&ESS/&;ANFrN&DZT@"} {"col1":-627269573, "col2":23, "col3":-8953, "col4":1, "col5":-8611933685663538328, "col6":-8745338265499505032, "col7":28135.436, "col8":2058707064.219137, "col9":-19839219197164786.827, "col10":55688732490232678.640, "col11":"2023-05-11", "col12":"2023-05-26 09:59:24", "col13":"2023-01-07", "col14":"2023-01-16 16:52:43", "col15":"pz7^U", "col16":"0ji0UC6", "col17":"&(?Ko0h^g,FULq(8DcTPXxO@`"} {"col1":-1974740230, "col2":34, "col3":22263, "col4":1, "col5":-5083433021044869188, "col6":-6379889206909365694, "col7":-24358.887, "col8":-1581447038.60196, "col9":1659553167832696.312, "col10":-74926401344917067.130, "col11":"2023-02-01", "col12":"2023-05-03 07:39:31", "col13":"2023-08-15", "col14":"2023-06-28 17:49:47", "col15":"?ckjkT$l,Ce", "col16":"Q85oUjT9DK=u1+sL#(e7DK(L3uSUNcHEbrjO>poN~U1V%HCndj`&GVPE1MvSnKyM0+rOlBcXzdRkrM#x8q$i-Vb#n@pVB4S", "col17":"=^^G7T07*EQfcOn6FhSzr=$X*!jPo5fP!uTLyQ@cZF).pS`^_rW9=&9hVOYifYjg"} -- !select_struct -- -1174247920 -1174247920 @@ -5759,16 +5759,16 @@ k k tq&IP/6U)Cxr%D20@z+kgOn>QZLNEL3rM4a`Yy^~sKbb-++RSmR$TZ&+s4y,el=.yCT>B96adZW tq&IP/6U)Cxr%D20@z+kgOn>QZLNEL3rM4a`Yy^~sKbb-++RSmR$TZ&+s4y,el=.yCT>B96adZW -- !select_struct -- --7338583824704649419 {"col1": 1244218944, "col2": -103, "col3": 6094, "col4": 0, "col5": -5138514713196135496, "col6": -3666748819255329633, "col7": 21135.002, "col8": -2004887562.758153, "col9": 14468816519180237.179, "col10": 95895842888389347.378, "col11": "2023-04-09", "col12": "2023-02-23 14:42:04", "col13": "2023-03-11", "col14": "2022-11-30 11:59:12", "col15": "xMOD1b>*", "col16": "C0n`(eKXVGGeyjhgEd7i)4v~ySxEaaWarSp#!NyV^82"} {"col1": 473779489, "col2": -27, "col3": 10078, "col4": 0, "col5": -4211603212688337032, "col6": 5244579342157463694, "col7": -27215.285, "col8": -334726943.608619, "col9": -54538553987394924.420, "col10": -93673670369645248.328, "col11": "2023-09-25", "col12": "2022-12-07 08:35:24", "col13": "2023-02-23", "col14": "2023-06-05 20:32:04", "col15": "X", "col16": "YmDn!T5dhRbUr4,$P^WB=3s#e>Ji7YMUVKirpz+,XBoPpYtW%&?B*=@I-r", "col17": "&Bo*O!7w!/Y9z>UY2p%I.1dgTw;TfwA?`xTCOjKY"} {"col1": -637277675, "col2": 30, "col3": -8329, "col4": 1, "col5": 7243201707895745880, "col6": -2600139732363544985, "col7": -24954.652, "col8": -547592360.670918, "col9": 17942494151830136.120, "col10": -73269357992586522.251, "col11": "2023-10-06", "col12": "2023-06-30 20:40:45", "col13": "2023-02-09", "col14": "2023-06-03 15:43:02", "col15": "uqp+iNH;KyS", "col16": "WtvEe*?FlHnwO>>!?LufX2ZgGOCxoJ6YtQ+q&1fLU#1KaJskS9EcAo&", "col17": "A>p8hF"} {"col1": 1284289061, "col2": -32, "col3": -26648, "col4": 0, "col5": 8681873401813098818, "col6": -7595910498357413111, "col7": 2438.322, "col8": 398029728.517982, "col9": -2203609636417001.485, "col10": 72676896115876061.354, "col11": "2023-10-18", "col12": "2023-11-03 16:26:19", "col13": "2023-04-08", "col14": "2023-08-05 20:57:58", "col15": "~`VXVqsy*#", "col16": "$Ad/4xcYmP!g)*@--*g?-vaMjyP_tO9/d+mPiTvBJ1Rny,BI1XFa3JA(gIH8>;Jj4Rl`", "col17": "s~Qc^YotSrih9wOn.4`e~dqWwLn21%G_)eQsl688h,sc42yrg@$9;xdKb!p/_7&)$7(xo/GIAvK9+Xi"} {"col1": -14691888, "col2": 61, "col3": -6717, "col4": 1, "col5": -6432704696099112306, "col6": 8367636778203422069, "col7": -9545.541, "col8": -269168795.393257, "col9": -2875508363598708.238, "col10": 7927152603571778.580, "col11": "2023-05-12", "col12": "2022-12-17 13:32:51", "col13": "2022-12-28", "col14": "2023-01-28 14:13:11", "col15": "!EF2", "col16": "Q9Z#fPi$Zz./BOb-xQIrciK&28?ghvbQSB<.X@1z#SDadnlk^4k`y#"} {"col1": 799582733, "col2": 74, "col3": -16496, "col4": 1, "col5": -6730125425115399812, "col6": 7947658438097907538, "col7": -8632.835, "col8": -1325682785.498742, "col9": -79285233151927981.486, "col10": 59649336400118134.771, "col11": "2023-07-06", "col12": "2023-09-08 21:26:24", "col13": "2023-03-10", "col14": "2023-09-26 18:38:23", "col15": "h&Bv/4zkFK9+d", "col16": "$50R9~)DiIdP@L6@La%0WRuolw&53~8Z$2GGkqy3GBIHc8>/b!1XPVBB>84+,d$U+O;oySaW!L", "col17": "^m~gK0ra`_b;?G^~FV-#CbH@dqT%;;eXQGn4%,Z^pD*~/Z05OZf&xliF$*bEjm^ja6dx_H4ep*j2x9TVgi=s;/c"} {"col1": 656121410, "col2": 97, "col3": -5321, "col4": 0, "col5": 1305280403700159449, "col6": -3724531396202387145, "col7": -2241.7322, "col8": -183938512.834313, "col9": 66433592269021956.708, "col10": 90683977356347451.659, "col11": "2023-03-21", "col12": "2023-04-08 22:02:11", "col13": "2023-09-20", "col14": "2023-05-18 23:54:23", "col15": "s", "col16": "bxZp*4Hz,s5lsm)$7d$!tTH3tiSm2jC4WU?da2=_$TU_v!7vh#zvnX(Xa`5oaIV15Z~E3", "col17": "+@Hv8#jQ)DL8.u.>3PJ*WL+&Q$w9Q`bNLqYbIZmwqSToDNbthi72X3Vr&aGfHbgP8.J(Wpv$)X>h;,^QBu`N*uxz^Z/Z!#/OGzP`AsX7NSl0%%1PF,3A"} {"col1": 2137829245, "col2": 69, "col3": -24328, "col4": 1, "col5": -7214010171913118823, "col6": 6383489972449258786, "col7": 27749.186, "col8": -1262149261.858624, "col9": 71750656893291974.834, "col10": -31083183104428671.245, "col11": "2022-12-01", "col12": "2023-07-05 00:58:45", "col13": "2023-01-13", "col14": "2023-08-07 10:37:03", "col15": "1i./UHw;ctfd", "col16": "k2Hfm#a<", "col17": "+*Tu*TxJHyo8+iMnXGhGt~CwYH&"} {"col1": 575217703, "col2": 48, "col3": -23736, "col4": 0, "col5": 6811488086545464174, "col6": 3803523150376799044, "col7": 32135.055, "col8": 1777416417.466329, "col9": 10509450858811898.293, "col10": 89356259442111433.523, "col11": "2023-03-16", "col12": "2022-11-15 10:44:50", "col13": "2023-07-16", "col14": "2022-11-17 02:03:15", "col15": "", "col16": "5hv6HC7>=rnwo0%lPtAR<%K!FJtyTHQ=E+@I-R5v@YRY8", "col17": "-?Iwrgs#wRAlbUdTY;l=jq7gA2?B+g^iB=vf)au;=$Jgk", "col17": "6OL"} {"col1": -319448230, "col2": 77, "col3": 30732, "col4": 1, "col5": 5381726112765580324, "col6": -7205549115252513881, "col7": 1416.8165, "col8": 677302653.276727, "col9": -50190396509154592.764, "col10": -13335679312394197.137, "col11": "2023-07-08", "col12": "2023-02-07 18:22:59", "col13": "2023-04-10", "col14": "2022-12-16 11:56:36", "col15": "T.c?5", "col16": "lLbm0qCb~jecm7Z+lXw((/JL~lv/+X1x%Na+PdLB?paw;w8GZA3NjVmCB6`D~(cEVrPByF*/>aK(mWn", "col17": ")@Y-EW*=ey_4TwdAT4kdd-JK9)z)9~mPh^T,zGW%k=Nq?e%ad6=,YSiRjq%if2Zrzd>5ov#Q~X%4vEJo^Da=/h_!0P**j$E/fdb4TrdIMng"} {"col1": 1983077617, "col2": 41, "col3": 32601, "col4": 1, "col5": -7201826594575591951, "col6": -2778573909688343802, "col7": 4938.927, "col8": -1220266379.239603, "col9": -76727521516155175.955, "col10": 25039714832787681.341, "col11": "2023-09-02", "col12": "2023-08-04 15:55:47", "col13": "2023-04-28", "col14": "2023-06-10 08:17:15", "col15": "l#4ZYskXD+K", "col16": "~^2POIkAYt)l/*#8+q3NC/o<5/Tf0/-*`$FT+Qd~>mIn.O!Sp", "col17": "lszz3Eg2LqT%Y4QXU4.,Q/n1f#F)HcG?E&/<*hKn9m~,V8s#H+u!v&W`4D~kd#CJ@-W^Iho?5pY-ivU$GD%8zHJ&!n9Y89d^)JE9d9>l1iX%!A,enWSqa9Vq?", "col17": "$try(1>@8wjja8S4=3m;/W"} {"col1": -1762623761, "col2": 58, "col3": 25147, "col4": 1, "col5": -8195187424138705578, "col6": 2322503311781948620, "col7": 14849.233, "col8": 1309835704.426427, "col9": 20038999583743129.707, "col10": -50219824348359158.423, "col11": "2023-03-09", "col12": "2023-05-20 10:28:02", "col13": "2023-11-01", "col14": "2023-07-08 19:08:38", "col15": "_oF8", "col16": "i-TpQtM~2gh3V!U1%~Xra`yrI/OgSm1mpj!5T1nU.H0KiHK$sO,Yq"} {"col1": -947096066, "col2": -10, "col3": 16085, "col4": 0, "col5": -7903999106441943514, "col6": -5558924474920162475, "col7": -1580.9252, "col8": -1172517310.920912, "col9": -2862777116229017.951, "col10": 83689507004374566.700, "col11": "2023-09-01", "col12": "2023-07-28 14:13:23", "col13": "2023-04-18", "col14": "2023-04-03 21:16:55", "col15": "&", "col16": "p?Oto9p/`mmy6*SLKF+q;r>NlJaGcp8>K(^9naD*k$nT(@8@I5z%E!*l>k*N!/Fl;%d$S==*,yl/Rn6>T6FXYy5C/6m>oJML?=Ru5Nvu(xrQHzRFs"} --7599802346492204617 {"col1": 70532645, "col2": 38, "col3": -11481, "col4": 0, "col5": -6080216617259928190, "col6": -4997939091762056136, "col7": 21105.764, "col8": -2143803715.702904, "col9": -68742271080582065.747, "col10": -78907587704694939.944, "col11": "2023-08-26", "col12": "2023-02-11 05:32:56", "col13": "2023-02-22", "col14": "2022-12-30 03:56:55", "col15": "HGY3KiQ", "col16": "!J0a^`1D7hNl13W^G@n+HO7yIjt33TgFs46<.+ebUD;nR~TNu~W%fy0)@r^G*Kw.v6.TWce^3`UZr(krqKz0EnunP>"} {"col1": -1409399031, "col2": -48, "col3": -1046, "col4": 1, "col5": 7436624307467470969, "col6": 2225003963120775741, "col7": -21390.691, "col8": 1073721140.443469, "col9": 57732513549026124.902, "col10": 87719596108805404.360, "col11": "2023-01-08", "col12": "2023-01-20 15:47:09", "col13": "2022-12-12", "col14": "2023-05-23 09:47:41", "col15": ");+Dl)", "col16": "rut&V5,FwyZiDPk%NhX0r*Xz#+Nv33MG/fBYUTvZ>S4*B9>*obS`vP_gd!wIX#dHgY2-78O^@@(", "col17": "Meqvzs)`"} {"col1": 579265680, "col2": 14, "col3": -27719, "col4": 0, "col5": -6501809104707863511, "col6": 8147280180529551490, "col7": -19808.918, "col8": -164250068.171114, "col9": 30022902217485843.400, "col10": -54447874666848264.749, "col11": "2023-02-20", "col12": "2023-06-25 09:55:04", "col13": "2023-05-15", "col14": "2023-11-09 22:22:50", "col15": "w^%t).($", "col16": "bRIuK9mWn.LAlz631W./6e!pC!22@vLnQPr;5uUT^cdyvm9", "col17": "-%T`!*X%pDzp-gh`d9U@RVfVmpF#-N7a8pMvQjAoTZ?0fRc)6?x$Z3v2mk(GL/ilgoMV/<$5Qvl~hceLuckS"} {"col1": -187216112, "col2": 10, "col3": -16693, "col4": 0, "col5": -8385817273247521869, "col6": 2848188566561972798, "col7": 23670.527, "col8": -1380994829.508567, "col9": 30402754127779193.192, "col10": -61650880621774203.609, "col11": "2023-05-30", "col12": "2022-11-30 01:11:54", "col13": "2023-02-24", "col14": "2023-06-29 00:57:09", "col15": "y467#K5zDue", "col16": "%/rkQZV#aj", "col17": "ThZNW_p6Nh4%#H#M.tNd6hiB,;5vnFq/9Hw32%SRGwwl%89neU>c.=1BAnR)?(qV"} {"col1": -945517334, "col2": 25, "col3": -521, "col4": 1, "col5": -8000179397635968020, "col6": 4799611016251697001, "col7": -17143.889, "col8": 610896895.267918, "col9": 97009722657431368.579, "col10": -69421983554676755.148, "col11": "2023-10-23", "col12": "2023-07-14 10:43:01", "col13": "2023-02-23", "col14": "2023-07-26 17:50:13", "col15": "#qVD9fW7wtVC1", "col16": "nXRQRkYE3%bCiMJ.f_!uDl(_pPT*Xs-OGmM4O@O$xO=)rFm6z4yNnaVidSXwlChk%MRDh48nMD+y;lSAsuxo>f>o@vrLTP5J8,@I=s=M;2qpGL-Mv@o(qLTV)!L"} {"col1": -107851984, "col2": 28, "col3": 5960, "col4": 1, "col5": -4506358863775406913, "col6": 1394714002716153925, "col7": 3481.7158, "col8": 1683478841.461369, "col9": -84596227021108807.926, "col10": -76645289918951457.460, "col11": "2023-11-08", "col12": "2023-08-12 09:47:29", "col13": "2023-08-17", "col14": "2023-03-08 09:26:27", "col15": "Xn9J9^GySeGm", "col16": ")waakLEu-Sr!FBaA2DNrW)k7KoUYlh^gK@4lFT#)l9oGNPwQ364`A6!3Uk1nCK.H5(k--=&N", "col17": "jvECpnDW@2#;1>6JWETs1dV@F&;JNiiecq$t`fQMb#6zHeuVd-NxJ4DU7C5rnMGOHzb0hxig0wTu,!L$q*`2ebmukS5-UhI*UIt$Nfn-j$B`5uKHcccX;^@WDZ_32H"} {"col1": -695083957, "col2": 104, "col3": 13909, "col4": 0, "col5": 1522503074186491778, "col6": 8843150698429180408, "col7": -5885.859, "col8": 628703014.411657, "col9": 1551947058114949.576, "col10": 37730565625610546.678, "col11": "2023-11-09", "col12": "2023-08-12 21:59:20", "col13": "2023-09-20", "col14": "2023-09-05 16:41:40", "col15": "9>@(qR=^;xJ", "col16": "+%6phN5<_F)ZS3~QyQuKv4*JBiqJ8>-dL2Q47W;11PT%b4evE65NNi", "col17": "EQy4;np2_>O*T;O,;#bfQ`p1T/o=v7#/$TFm_dDwVdI9+HVjt4qvgr2HRF7GYX=ete"} {"col1": -1765911255, "col2": -7, "col3": 22976, "col4": 0, "col5": 9140324716205168745, "col6": -812222686418441384, "col7": 13551.454, "col8": -1940739129.829414, "col9": 69602463252623799.299, "col10": -67266115722170811.529, "col11": "2023-06-27", "col12": "2023-01-07 14:43:27", "col13": "2023-04-17", "col14": "2022-11-23 14:53:39", "col15": "/e&7", "col16": "Ji1SfE^>bu(RDcaAG)>^Z<_ZDW", "col17": "0WoT+_n^)9D)lB,D_IRQR"} {"col1": -1456506490, "col2": -35, "col3": -29639, "col4": 1, "col5": -4069173633585469108, "col6": 1871696868291301537, "col7": 23579.47, "col8": 1491786276.410192, "col9": 57381012450664748.195, "col10": -10875194524569681.857, "col11": "2023-07-07", "col12": "2022-12-01 19:13:15", "col13": "2023-01-10", "col14": "2023-06-17 04:10:20", "col15": "oewq;&m&8,", "col16": "5r3XGx/7GL7Fc4+qCJdjBNMcFi).S%F", "col17": "b1Ho_Cu,>ir,^5zab,g`bDK3x4F_geCo~z6=l_opFTf;JsBajP#L;uh8*-SjXnMd)pHng-hpeY/ZeLe3%u9D$TtNM~hnNUIc.,L6(K%)EF<7S"} {"col1": 1641741458, "col2": -86, "col3": -4843, "col4": 0, "col5": 1416568697674603435, "col6": 7198614014087506238, "col7": -26080.13, "col8": 723656788.660648, "col9": 2705009026622083.498, "col10": -7894682496366720.868, "col11": "2022-11-13", "col12": "2023-04-26 23:22:33", "col13": "2023-06-19", "col14": "2023-07-03 03:15:40", "col15": "5O>/dlz", "col16": "i>=znt", "col17": "y25kp4lHFIDewL@6fD6$"} {"col1": 74923791, "col2": -108, "col3": -7153, "col4": 1, "col5": 6719228417437922271, "col6": 3381414400970006559, "col7": 30199.275, "col8": 16688838.136819, "col9": -52744139547293261.621, "col10": -39976840817695468.226, "col11": "2023-11-09", "col12": "2022-12-09 13:21:53", "col13": "2022-11-23", "col14": "2023-02-26 18:31:31", "col15": "OJYRLL78q*VKRS", "col16": "$uOkboxDzT2*g2q(S`m2sMC3&iM.$m", "col17": "p@k87.UpvD$GI5b^99gqFwGETsM1B*Nggz55p)yKo0$5OKZb&qs`n)A(fjD6wfbtS2!~"} {"col1": 1099207618, "col2": 114, "col3": -10108, "col4": 0, "col5": 2839511385114703755, "col6": 8468135079658517211, "col7": 12409.44, "col8": 1979825675.414341, "col9": 73536095983205255.660, "col10": 42436385395826356.123, "col11": "2023-05-31", "col12": "2023-10-19 04:17:57", "col13": "2022-12-03", "col14": "2023-05-13 10:44:57", "col15": "HInOO;+<", "col16": "uEagU>arOFJygxMJK.)<,hA^wp9xP66JJ&gOvT&tC", "col17": "-`24S`sdI#m#SEfR2kE@,#5s/sso2EEWNKWns1VTQ/m#tG!%J5$=zP1BEUu?cQvAx.=r#o$qB7X47sU-K1ThxYB.,S~%<;TH?VGESo~hGC8/R,-nY"} {"col1": -1168878569, "col2": -70, "col3": 26150, "col4": 0, "col5": -5584088329317055402, "col6": 4769575263937288380, "col7": 15294.835, "col8": 2132280561.070479, "col9": 54400172764875232.687, "col10": -89766087581684119.928, "col11": "2023-05-11", "col12": "2023-02-16 04:33:00", "col13": "2023-09-05", "col14": "2023-05-09 09:59:17", "col15": "t_", "col16": ">n?KzJ1UmKv~$i,7DIaooMGU_`1AGXFW)/zPnw/Es-WQqAFd;ZIyXDM(o6,N", "col17": "QMBG5oz/Xd_E7Sb!Wv8~8cRun&GKr44mrSFFWC?%I@^h~Uh>)Sf@&T/Ayn?SRWq*xk76CBVjIw$>zo;S"} {"col1": 464901072, "col2": -46, "col3": -31773, "col4": 1, "col5": -8800067100317078925, "col6": -1992206679721783824, "col7": 24296.098, "col8": -839735596.246354, "col9": 43866529059010613.449, "col10": -32536634947320487.600, "col11": "2022-12-09", "col12": "2023-08-17 10:16:30", "col13": "2023-03-05", "col14": "2023-07-14 09:45:26", "col15": "=w", "col16": "VMU1AR8HwSv4hEUp#`W5ue#Inr.;79&fnvx7hhJz9#=,9Yy`-%gWO7B", "col17": "9f/It2gRwTSzqU~CpNWiui.pC@Q5$Hmf7VjWiEGKp>KBvnM4R@+wKIQ*SIG"} --7602293582603585821 {"col1": 1108997818, "col2": 88, "col3": -10835, "col4": 1, "col5": 1620302022713107805, "col6": 1107539017849531714, "col7": 10706.154, "col8": 465127120.550139, "col9": -90929545480424873.124, "col10": -22300919712070428.511, "col11": "2023-08-16", "col12": "2023-10-31 05:07:42", "col13": "2022-12-07", "col14": "2023-09-11 03:45:16", "col15": "#mtD=M+uLt>", "col16": "rR6VAXM7&?RJ&@SssqkljzwsBTNob8KxRJhOjo8m#d&+0x", "col17": "/kU1ek/Ry&AuDiSGkP2uCXmobC!bc3w&&eh(l>-gIIg*)7vJTAuinnW~AHKT3OoP)cxr/i?jj"} {"col1": -395709882, "col2": -114, "col3": -1132, "col4": 1, "col5": -5766105393048322803, "col6": 1507490083118702916, "col7": 14539.895, "col8": 2051339430.904966, "col9": 620199164422727.182, "col10": -25945401500624854.280, "col11": "2023-03-28", "col12": "2023-04-18 00:33:09", "col13": "2023-01-09", "col14": "2023-02-25 07:41:15", "col15": "(Jp7Wc9i9L#J(", "col16": "ueISoQLZb0OG!d;/Sjo2OnR207z4$uu", "col17": "2Z^4QA,;UpzS3.9j=>=y5M-ulNT=%9z/llL^M!VQd;w#MYq`4@@VE3!vBf@gQh~(%21BtlpJ&juB>%vh6jxb.rF8TFR?tC#Eu#eK`I/!<", "col17": "xawmmU@iow_eAZ_Mf6ob^f7JU7H(0~fusUGDHjjUyvfn=N3UK^;t`+-PntV!ZXB"} {"col1": -1548229487, "col2": -17, "col3": -6492, "col4": 1, "col5": -5045348534937748635, "col6": 5680037810143630607, "col7": 18039.988, "col8": -571360899.943858, "col9": 88274209210341581.189, "col10": -32178351285864604.550, "col11": "2023-10-02", "col12": "2023-10-26 11:11:34", "col13": "2022-12-16", "col14": "2023-03-25 16:22:55", "col15": "^oOf5vZ*RdB%Pa", "col16": "LkKG/8,R1L(s5WDk`hU4WBFWDP890buL~,O+vI`SSUjd^HB&naD,#ufK+cR0#>bw0D;y+K$4kesjDS&n*3RGMY;W_7NuN9=.)+dSveo)Y#%Yx3?&p2>`&lPZ", "col16": "vs^avRiTo@tP%iN%^Ye7=CR@3ok#!Rv6ZU`%E0Hc1Mrb*wU#(,r/T>uNd65Tg*d6SK4U-/~", "col16": "S^", "col17": "^AO#B/p-aqHVJx~~rUugVbEUz$=EdDO0,p.1H"} {"col1": -1325190663, "col2": -112, "col3": -29946, "col4": 1, "col5": 4926631896026922567, "col6": -6454501923179047613, "col7": -28918.643, "col8": -2015495178.625516, "col9": -78275374629606262.572, "col10": 249190501061421.681, "col11": "2022-11-23", "col12": "2023-02-22 21:31:00", "col13": "2023-03-22", "col14": "2023-10-02 15:56:10", "col15": "O&cAJPfzK", "col16": "y=ME09s/)Ivp05`)?/?$-%S+L&KNCa0.wkl#eYhb4jWaHU", "col17": "qpgE5yW>Ad^TKq7n80h;pvz#;+3"} {"col1": 505423149, "col2": -26, "col3": -23812, "col4": 0, "col5": -6936749430337340135, "col6": -4453163693816947454, "col7": 32117.152, "col8": -160594476.730871, "col9": 88463454316432813.450, "col10": -31715815681536723.275, "col11": "2023-01-10", "col12": "2023-02-18 08:31:42", "col13": "2023-06-15", "col14": "2023-10-21 10:01:42", "col15": "-u+!%C", "col16": "KWlF7cOVh6-#&_MO6pAy)/ivui_xe(S5=KDm<)NG", "col17": "s7Wn;8fYuqRMhl^~qI"} {"col1": 264317389, "col2": -117, "col3": 17138, "col4": 1, "col5": -7606036300612871875, "col6": -7555318172034769064, "col7": -24252.111, "col8": -1187613661.845431, "col9": -5278278979519595.751, "col10": -54853854418402936.369, "col11": "2023-06-15", "col12": "2023-09-21 12:03:19", "col13": "2023-07-27", "col14": "2022-11-15 04:28:22", "col15": "", "col16": "Q(YLFpUPnj^h%fAWXIB7-l;@8*UK~WVvCvKTml8?uihK4*-=ZNjZ)0dpT%f~dl2Vbj~rZuH<`J8`y@D<%0ld1*zE0hP8>w4", "col17": "cXn>/JkS`E7gKUma%MxX"} {"col1": 1230555474, "col2": -24, "col3": 2120, "col4": 0, "col5": 6229758246705093581, "col6": 8128195223554710920, "col7": 16533.473, "col8": 1521640876.376356, "col9": -59572145160677336.155, "col10": 79937134041627134.269, "col11": "2022-12-15", "col12": "2023-08-16 19:19:23", "col13": "2023-05-21", "col14": "2022-12-06 07:57:02", "col15": "yB", "col16": "?#KYiDM+Zmy4pM>>sh#-kk.GVol4lR69w9G(kI0&S7wj%jaK44HG`", "col17": "Cz-FVN<7v7Z,SZ^)UO5ylmHOSPK&kyDcTmFq,He_a~pCT`8UGP+#W$wJCb4O*d-~IxP$2Ib4~Sl4*~*CyZ$OJ&Ne-wH4&;b93`UP^96`"} {"col1": -1343753364, "col2": 103, "col3": -6161, "col4": 1, "col5": -670090785965987866, "col6": 595502520483276571, "col7": -8248.421, "col8": -299408296.135217, "col9": -67098926356391548.532, "col10": 81064348450384543.810, "col11": "2022-11-29", "col12": "2023-09-15 06:56:47", "col13": "2023-04-05", "col14": "2023-05-22 04:26:21", "col15": "H)sI", "col16": "PN4$81d;t7HS2,xIwLr!", "col17": "S?W5!H5LBfClw7&*"} {"col1": 2050367541, "col2": -44, "col3": 11713, "col4": 0, "col5": 2622815905733995307, "col6": 3166796413710412614, "col7": -12813.965, "col8": 1449332938.702781, "col9": -16286343553710226.850, "col10": 36114374319727924.908, "col11": "2023-08-27", "col12": "2023-03-02 11:55:18", "col13": "2023-09-09", "col14": "2023-06-03 07:22:19", "col15": "q9qrMph1!ij", "col16": "k?>%PK~EwZyAAxI6e1w@!4&*0>bFD!MVI,Duy6Nyz`1VtTRa>N9(r2K1X~34>fXJLPbc2XxQL%dYm*x7wR!l##VP)hHvi2Oa%A.8Yf*j14TXuLH.zK.8M#3dL%3Ghh2C-OtmC`DhF3;cphfi`~#%e,krrDoeTV$79M8#X)?1xIg*S6Jgl52DpmpW6!NA)f&?EiVGhl7?(#9", "col17": "Ik,R98FHfH0sj"} {"col1": -886304619, "col2": 15, "col3": -16695, "col4": 0, "col5": 8762549779530024365, "col6": -5873578382208441888, "col7": -8024.6294, "col8": -854765665.300112, "col9": -27611170815511042.221, "col10": 52293916561740672.950, "col11": "2022-12-10", "col12": "2023-03-13 05:33:46", "col13": "2022-11-15", "col14": "2023-03-04 00:34:52", "col15": "(", "col16": "rw9+ZnOC`q,Z+Rry*lR+hS$~Xea7-Hcsa%uDc~@BjMw/4?w-bMWewKtZ,VMjyj3SjIJ^6bSh&>MT?;YYo", "col17": "rTR(?<$LJ=qi3"} {"col1": 783573780, "col2": 79, "col3": 14782, "col4": 1, "col5": -6560181443346561353, "col6": 3600505800536771620, "col7": -11686.845, "col8": 392495927.478627, "col9": -70776089048694504.857, "col10": 5319783474358005.254, "col11": "2023-02-16", "col12": "2023-02-11 16:47:59", "col13": "2022-12-24", "col14": "2023-07-29 17:00:02", "col15": ">5nGGdZ_*iFJc6", "col16": "v1s9k)lF4@MmvAs_lqx5_>^)i%45~3kK1X#05TE5z!-W8yJrvmFQc3J2uNG<1m*(VmLQCunoUvNbBtlC=)@5Gf"} {"col1": -439539335, "col2": -94, "col3": -8688, "col4": 0, "col5": 5658189954154855620, "col6": 3450214172403067501, "col7": 2691.2466, "col8": -1601227943.689999, "col9": 50885264787164741.331, "col10": 6445750028437297.160, "col11": "2023-08-16", "col12": "2023-06-15 06:19:06", "col13": "2023-08-14", "col14": "2023-02-03 18:24:52", "col15": "#g#/eL", "col16": "=p0Vydu`Y!MaI,c4=TULDx", "col17": "%RJazH~p_,x9FreCIU"} {"col1": -1094787832, "col2": 15, "col3": 12888, "col4": 0, "col5": -3352622416438446834, "col6": 9004643913779025626, "col7": -30781.781, "col8": -756929973.337352, "col9": -36718117087839084.510, "col10": 37106311414844516.850, "col11": "2023-10-02", "col12": "2023-10-01 07:17:26", "col13": "2023-10-08", "col14": "2023-08-20 19:01:53", "col15": "->1,;", "col16": ">rns2`(y_yH2OEWRJ~>~pt@s>DDNCe,e*xfhz#", "col17": "w_7?<*WuQOIidfuJ*="} {"col1": 1605015523, "col2": -51, "col3": -12871, "col4": 1, "col5": 8445583839829839983, "col6": 3295796674402566912, "col7": -5563.6445, "col8": 783167106.137578, "col9": -90272363543934543.214, "col10": 37557229125170592.520, "col11": "2023-08-02", "col12": "2023-09-09 18:33:12", "col13": "2022-11-12", "col14": "2022-12-09 14:42:34", "col15": "Q^7G~6)kx3", "col16": "sGI^Q!V#0k+(l@/U,dKw66T*IppdX_BBH0g+uD)STB,K%V6eOKk.rjUBCQEb9iqU6T#QEZ&A+", "col17": "EV+XX$Y;p^", "col16": "?X70d.3BD(FBi8_UP,6igh+wVMC0KB`B)uh,G?,)L;g2c!XvRMv`X2vHNA.YHh;jkyu6m^VlEvmHXXMy8,S(,d!*,UeP;TJ=~t", "col17": "*+J-fJJmFA!.4^S2J;Sj`0jMAa_!c3RreHn?3`iO=ZzRU83=si#28QKQ4skW8K$CoS#9kK8nS_SNFygm", "col17": "zdcJQ3O(eY3..F088uDJP&>mZgN/#=CUn!GOCNq@;2v1T46+2as`)0TP>vM,!4TK@SAIs7/u", "col16": "#K50jWd9/ZX.E5r+FE^S.wAo%)L~l1kixP!k%`", "col17": "ddbD+PgA~sx"} {"col1": 488743899, "col2": 107, "col3": -25066, "col4": 0, "col5": 7201525036451225724, "col6": 4534308612824587476, "col7": -6403.148, "col8": -1084682016.563441, "col9": 40125453274656905.378, "col10": -76595716069306480.966, "col11": "2023-02-06", "col12": "2023-02-28 09:54:04", "col13": "2023-03-20", "col14": "2023-04-04 12:56:09", "col15": "wqe=XH`", "col16": "Y)1yqj>(m&u%+B_mk7&gi5%9C/h,48Na,h5ylXnv1K62.?_h)D.09-%1s/jQpQSq", "col17": "=0vx7*d2asv+eQHUY3767ZGz2wz4+u-UA+8/!47MJHi*ERTdT&6+z&`/d>Q2I+Oe>Ad1rSLGyM_x0mb,gB2<`KVfuE)FWYP"} {"col1": 1945706352, "col2": -79, "col3": 4167, "col4": 1, "col5": 5243923978234719391, "col6": 9216687002657284873, "col7": 1812.7032, "col8": 1245419886.087395, "col9": 13230580424394204.714, "col10": 94391184589076872.686, "col11": "2023-07-31", "col12": "2023-05-17 10:03:34", "col13": "2023-09-15", "col14": "2023-07-22 14:48:37", "col15": "!X*Du28.YYa", "col16": "-vwfhEfLCWnjiTQ55I#Pf?;4Yq66#QjkB3__/ou.O1iZhnZGBxr", "col17": "zzFWUf=YqUMA.QW(l$u;xm0D6S)p,`yn"} {"col1": 1216960738, "col2": 21, "col3": 558, "col4": 0, "col5": 5110561233367455994, "col6": 9093995871392702167, "col7": -17949.723, "col8": -1017053409.339787, "col9": 82049948884867970.312, "col10": -10891937193171814.305, "col11": "2023-07-15", "col12": "2023-01-06 16:04:15", "col13": "2023-06-30", "col14": "2023-05-02 18:31:26", "col15": "h0_1", "col16": "HWmar*8kwVNP>hqg(", "col17": "OP#F8m7(Mftj^EIL9FTb`#dslTy0v46YVcx^kV($FFE>g1dUhF2_eLp?-e_GjNtc"} --7955538097647954727 {"col1": 1438134160, "col2": -13, "col3": 25559, "col4": 1, "col5": 5607581613934148142, "col6": -4919209465525182709, "col7": -15043.658, "col8": -385832723.653489, "col9": -27845876168572465.963, "col10": -4649354184790065.270, "col11": "2023-09-17", "col12": "2023-11-08 21:27:41", "col13": "2023-04-07", "col14": "2023-09-30 08:36:56", "col15": ",/.O", "col16": "4i.gCuX)k?t;dvjd1HM=YcWWJqqVnfUEE#!copJb(Q1(.^.`iz#>", "col17": "tq&IP/6U)Cxr%D20@z+kgOn>QZLNEL3rM4a`Yy^~sKbb-++RSmR$TZ&+s4y,el=.yCT>B96adZW"} {"col1": 985501155, "col2": -24, "col3": 21311, "col4": 0, "col5": 5527964666005317471, "col6": 6946948188736388580, "col7": -8703.959, "col8": -103891562.352326, "col9": -72256959944011241.745, "col10": -15805720823720834.900, "col11": "2022-11-11", "col12": "2023-06-25 00:53:52", "col13": "2023-04-03", "col14": "2023-09-27 16:58:07", "col15": "", "col16": "4lu5D#+1Z&7@8R1q", "col17": "cyNXc*5#q!p$", "col17": "Ky"} {"col1": 1596224467, "col2": 106, "col3": 9539, "col4": 0, "col5": -809051164961171210, "col6": 6250982782242314377, "col7": -26671.64, "col8": 56606733.145908, "col9": -80540802744766207.953, "col10": 77085717692287751.994, "col11": "2023-02-11", "col12": "2023-04-13 15:33:02", "col13": "2023-06-12", "col14": "2023-07-03 11:55:11", "col15": "3_", "col16": "tE9nr=yFH~l?QxREEq@#4NdI7AbN%jb-*uF<4l/jDiFl7%Hw3Ho>n/C%Wn;XQA-pUiNGUo6$84+MKhB#WZkimtAej"} {"col1": -1218975697, "col2": -70, "col3": 32402, "col4": 0, "col5": -5168465205297713683, "col6": -42506747499361319, "col7": 11149.558, "col8": -124984675.779518, "col9": -82155323751512945.216, "col10": -89459933378296748.604, "col11": "2023-01-09", "col12": "2023-04-16 20:26:33", "col13": "2023-01-19", "col14": "2023-03-31 10:02:16", "col15": "R-qvD+", "col16": "62H?H_R;SrrD5?a0LNWH~(5xwLE9=aXt", "col17": "QIqR?RRBaZ=.0EF3$p>_hD2_l)R%G^jvH`;gSz?*W@p,)>ddPiKr;o9)#45Us+j1;KXqqw?)$9XPBYjIQ-<(qcTdu>H)eN5?0oMzM)A%toAOGK$+6!``", "col16": "Rq`)B_wCqr~3D", "col17": ".-G1FfO_&y6ciUgItDFzp3^xj2wT)3,3YL"} {"col1": 949190741, "col2": -109, "col3": 23132, "col4": 0, "col5": -8107750618520010248, "col6": -6431170840840398337, "col7": -31010.111, "col8": 19577291.956868, "col9": -42853285297909894.649, "col10": -69573641063301319.816, "col11": "2023-10-25", "col12": "2023-05-21 17:21:28", "col13": "2023-10-10", "col14": "2022-12-31 16:39:27", "col15": "", "col16": "Y;VSV@?j+eHK0~CFokCe*r.$gq*^sqPIxHI", "col17": ",f>E=XC%CFYUP7&tvYjb%LJu#GDnMQP5.~)SQH0P-D;yaR5DiVr%<5ouv$YkhXeLAR@Ym1!vkwTZ2,8bUERr?MuA"} {"col1": 1527563124, "col2": 9, "col3": -25868, "col4": 1, "col5": -8331595583387132313, "col6": -6031385467825388820, "col7": 17599.04, "col8": -1485375156.20568, "col9": -16742871194598893.775, "col10": 66735741323698862.142, "col11": "2023-04-27", "col12": "2023-01-19 11:37:46", "col13": "2023-03-29", "col14": "2023-08-27 01:48:45", "col15": "RCFOt+1", "col16": "%2~aM)waci$;?$Y~?hdzsOQTTP+Zq2lipeXn#QC*u1@QX62!5-A7727V3LQ+", "col17": "70#?^Ow/rdFvrFFVDP@NtWebpxm;jgcl8#0QEyC`7v0rh<~2h@ofB$Fue"} {"col1": 2018260508, "col2": -103, "col3": -24472, "col4": 0, "col5": 8997678386359787116, "col6": 2451818178827354507, "col7": 4805.7744, "col8": -839371064.997656, "col9": -2820518180207585.420, "col10": -27518074549067322.799, "col11": "2023-04-01", "col12": "2023-01-20 23:26:49", "col13": "2023-10-20", "col14": "2023-08-25 00:04:01", "col15": "8iYzEiw7AMOd5", "col16": "0@P#6", "col17": "BdWm*QfNDS2ty?^cxcNgHxDda3rHiFvXbHrs;L"} {"col1": -1482004443, "col2": 102, "col3": -12999, "col4": 1, "col5": -6961079697649502866, "col6": 5857042070324174976, "col7": 14277.545, "col8": -1583282209.721317, "col9": -78563765934769168.374, "col10": 59319192883565341.984, "col11": "2022-12-24", "col12": "2023-07-26 04:50:03", "col13": "2023-09-07", "col14": "2023-01-10 21:29:43", "col15": "VaJH/X*K/D+w", "col16": "h49&Y9FGYt&D6Aig^lqbP)c+qDpi>R#$OlL6,gqY,", "col17": "&m+v03q6D@;Z9te5S)o8@h/2cGZ=Cpy*G6h8VOK9wSgH_(82bI~N96CfoepoO0`t`Rh_~BIPuq76R8ezFW>;z"} {"col1": 652276964, "col2": -54, "col3": -19502, "col4": 0, "col5": -2722052385324355445, "col6": -2372892998911631963, "col7": 17475.604, "col8": -1783374012.97851, "col9": 43667004322191647.526, "col10": 75072779420286165.380, "col11": "2023-03-15", "col12": "2023-10-09 08:54:52", "col13": "2022-12-15", "col14": "2023-09-04 07:53:29", "col15": "i,i~yA;2Zl9P7*", "col16": "7E1;FbW9.LRT1yBl>#", "col17": "AN@^I?9/?l/GllxiB)^&k*y/Hy,Epewpdy-mL~#Bh4*?NQ+S~y,X2rI9+$ws8l_./&ESS/&;ANFrN&DZT@"} {"col1": -627269573, "col2": 23, "col3": -8953, "col4": 1, "col5": -8611933685663538328, "col6": -8745338265499505032, "col7": 28135.436, "col8": 2058707064.219137, "col9": -19839219197164786.827, "col10": 55688732490232678.640, "col11": "2023-05-11", "col12": "2023-05-26 09:59:24", "col13": "2023-01-07", "col14": "2023-01-16 16:52:43", "col15": "pz7^U", "col16": "0ji0UC6", "col17": "&(?Ko0h^g,FULq(8DcTPXxO@`"} {"col1": -1974740230, "col2": 34, "col3": 22263, "col4": 1, "col5": -5083433021044869188, "col6": -6379889206909365694, "col7": -24358.887, "col8": -1581447038.60196, "col9": 1659553167832696.312, "col10": -74926401344917067.130, "col11": "2023-02-01", "col12": "2023-05-03 07:39:31", "col13": "2023-08-15", "col14": "2023-06-28 17:49:47", "col15": "?ckjkT$l,Ce", "col16": "Q85oUjT9DK=u1+sL#(e7DK(L3uSUNcHEbrjO>poN~U1V%HCndj`&GVPE1MvSnKyM0+rOlBcXzdRkrM#x8q$i-Vb#n@pVB4S", "col17": "=^^G7T07*EQfcOn6FhSzr=$X*!jPo5fP!uTLyQ@cZF).pS`^_rW9=&9hVOYifYjg"} --8368163552280161902 {"col1": 1769209089, "col2": 41, "col3": 31160, "col4": 1, "col5": -2575336798099083185, "col6": -883044937893669077, "col7": -19593.564, "col8": 732727904.190433, "col9": 24471993109695208.242, "col10": 7027799225935328.300, "col11": "2023-03-14", "col12": "2023-06-17 01:00:36", "col13": "2022-12-16", "col14": "2023-06-01 03:23:44", "col15": ")ysk+f.Rb;Mk", "col16": "rpXzdz#~NQOpWj8uq%$3Uo(7)2wSmy&XbeF~mpb80bhCN$<%UqoFQ).xInr)z1e%Wm)miFk/gPZIOC=DS=$-P-e~ZKT*Gc#n", "col17": "Zw/sJQD+!qGN&,V0gq!>&KcN-5HzygFJT(3%YCpX2p6GIkmQJK-4hkf^o^Gzo0"} {"col1": -1128656019, "col2": 38, "col3": -31755, "col4": 1, "col5": -2435632141806412164, "col6": 8136450037899463794, "col7": -459.44894, "col8": -831192457.489055, "col9": 97591785640602819.751, "col10": -62968590713393600.518, "col11": "2023-01-16", "col12": "2023-04-07 18:36:15", "col13": "2022-11-21", "col14": "2022-11-11 20:28:59", "col15": "-C?2=,2G1e^#Y", "col16": "9W$$AAoJo2lzO$@;&SOg", "col17": "BF=Zg9mC%Tk"} {"col1": 116046830, "col2": 94, "col3": -22557, "col4": 1, "col5": -1598164460844399072, "col6": -4158706534326890839, "col7": 24433.285, "col8": 2134151714.625505, "col9": 32526239216662343.382, "col10": 36428786060450888.560, "col11": "2023-05-03", "col12": "2023-07-10 18:46:30", "col13": "2023-04-22", "col14": "2022-12-11 00:40:44", "col15": "=AL", "col16": "nBEdvMoi&Ku%CS#9YR)1e)w&InunfqVq@z5%j97_AX2sH", "col17": "^3Lnzbz)b%j@!d_1I)@T;K,Qd#L)aCv*0U(Rnys3LLod%ZUxhCjt&7~gd5NW/ji+6Ay^d_b23=HfC&X0GqfS,vu#WV2/o;q1"} {"col1": -931769087, "col2": -29, "col3": 24745, "col4": 0, "col5": 3139286240265536402, "col6": 6172939574734784743, "col7": -9849.977, "col8": 144474395.964448, "col9": 74949219831536557.243, "col10": -61657785466666969.507, "col11": "2023-02-10", "col12": "2023-06-15 06:30:30", "col13": "2022-12-03", "col14": "2023-01-04 01:09:40", "col15": "MJ~0M", "col16": "7S3w*O`K", "col17": "f1<.Ruq+++&Lj1_yd)tT>PWT91>"} {"col1": 95091621, "col2": -34, "col3": -29230, "col4": 0, "col5": 2881528624934468265, "col6": 7807966468061685861, "col7": 12235.277, "col8": -952013846.37979, "col9": 8704675164427700.119, "col10": 22241492001285031.114, "col11": "2022-12-18", "col12": "2023-08-18 10:03:10", "col13": "2023-09-29", "col14": "2022-12-06 07:47:44", "col15": "cb-fe=HQ2", "col16": "ODws3EY*izfCOE90(2iFs7^BdkVssW7cg/k#pQQk1u,cOMReo/fn7@MJ&unJK5OI=>QVS(.7.JQmm3Ue61_WTcqwU@t<@r5qj,TJ2?L", "col17": "CpZMP1~/4GLggIi95mY%IiBHMb+iZK/3&J2+135ostS!jE,cpgIt3FGZ=!=b2ua=,wi+l.7#VU4(aUrSu^-y~T$l1eEi.b,S9Na&vIC)9E=P_mrOw_J$I;Ss?5h"} {"col1": 549081643, "col2": -89, "col3": -18860, "col4": 0, "col5": 2268837686650169392, "col6": -3564791349665118608, "col7": 5688.7407, "col8": 299803683.69027, "col9": 92982331476439301.594, "col10": -93330243753042154.201, "col11": "2023-06-05", "col12": "2023-10-08 21:25:31", "col13": "2023-02-20", "col14": "2023-05-03 02:23:37", "col15": "d=GDd,", "col16": "-hCK9Q%sfXLRfN35e1W`WAWi(A3s!+;wwL(hRvzT~Ipp`jAY%q8o-z(ueZptTS,Ua9?gt^y9Z8yQK=h#44s", "col17": "Up4HiD^Brz.),~KbbW"} {"col1": -1783476026, "col2": -48, "col3": -17310, "col4": 0, "col5": -7963598298499820103, "col6": 4904571652507647260, "col7": -10607.233, "col8": -1974193014.984611, "col9": -42459355958681098.454, "col10": -18238483948356281.750, "col11": "2023-08-30", "col12": "2023-05-06 07:37:46", "col13": "2023-02-08", "col14": "2023-09-27 21:55:52", "col15": "A,blh00/y,", "col16": "iOn`m", "col17": "9+5KWeLDsbd/&Uq+1-Ehvu2^S-RxzF>sTzA)dO76#CJ+q0b_W3%Vz8t(xi9$Pzr7XGmRC3qTg!qQf&`%Dd@I()5gfj9^+j_0AgHM?!I()c=li^>"} {"col1": -496454371, "col2": 121, "col3": -32536, "col4": 1, "col5": 5109585439962885589, "col6": -7561145607543036624, "col7": -1663.4861, "col8": -956519190.050091, "col9": -10288691912800152.494, "col10": 29496554612133109.983, "col11": "2023-08-28", "col12": "2023-08-31 09:50:56", "col13": "2023-03-24", "col14": "2023-03-19 20:42:21", "col15": "%+.U&gn<1ZU>Mf", "col16": "=Y$EVG,h-h23^r", "col17": "NR.ZpMOo%1E?"} {"col1": 1238201496, "col2": -10, "col3": 31686, "col4": 1, "col5": 1122137690708375175, "col6": 3751166452543437548, "col7": -15929.366, "col8": -209845314.081667, "col9": 82928606746951351.951, "col10": -24921390371752053.504, "col11": "2023-04-16", "col12": "2023-03-20 23:55:33", "col13": "2023-10-31", "col14": "2023-02-09 06:24:56", "col15": "I-", "col16": "J3iltfk&9#5Qc~44Xu@_f?^u;(7J", "col17": "J,>9sWD,HEb+f)sMZy,=e?YLj#W)CQw&Tryuy?2q!C&2;cNp4j3~95VzfeI9QTh*o~=y?!D0Md#6G;1g2$8Q3j5Eq%"} {"col1": -2126172544, "col2": -43, "col3": -30224, "col4": 1, "col5": 4477399578851748461, "col6": -8164663132923309779, "col7": 4598.504, "col8": -2145707155.719386, "col9": -16186361543705830.429, "col10": -70898288416135568.483, "col11": "2022-12-22", "col12": "2022-12-05 11:00:58", "col13": "2023-07-10", "col14": "2023-03-03 03:45:05", "col15": "v++#N", "col16": "jB/H(1KjyS,Y2-f`64cMz>$24^IOxrk~%", "col17": "DH3k3igl~`7pO`wlSAWbcAW&n^d#jy;6RME&e$6^bc/Sl(;kcBgpWt(17t/Q7%AP5l@MQm8BK8Saq=dqtSl#89iEyJF=5d4eQ*5,7RX!MW(O&4V5.ra&`wwkhoT"} --8505366084515032753 {"col1": 382502710, "col2": -10, "col3": -1057, "col4": 1, "col5": -1053404092722092555, "col6": -3224814438034550078, "col7": -303.36923, "col8": 1394068216.774496, "col9": 35385157086902073.490, "col10": 28542472828538829.527, "col11": "2023-06-15", "col12": "2023-08-08 18:11:20", "col13": "2022-12-18", "col14": "2022-12-31 10:35:49", "col15": "aNDd", "col16": "rf&g;llr0AcaHMvj==5.x^T6<5#,s9g6Ce+%%shkcvv==<-%32nk0UKGn/Xv0ze1BPHIuC5b/=LGg6Z3S8gm`F)#w", "col17": ")xh~)TJqjj.DjX1yU2Ri6KQJax"} {"col1": -1855122167, "col2": -3, "col3": 15689, "col4": 1, "col5": -2367363947390869432, "col6": -6532659416199639957, "col7": 23066.408, "col8": 1319308662.25036, "col9": 75101865537681458.145, "col10": 847059006678943.372, "col11": "2023-06-22", "col12": "2023-03-26 14:27:35", "col13": "2023-07-13", "col14": "2023-08-19 17:08:01", "col15": "", "col16": "rspt?wZj`f,b.aEWAm5KI&s_q;yFo(>%OYX+WlZQ4uEBzq4^kJGGNIJ1W;", "col17": ",JBXQweU"} {"col1": 863299634, "col2": 19, "col3": 26127, "col4": 0, "col5": -3722113302586638684, "col6": -851562457423560807, "col7": 12379.872, "col8": 1344459261.478156, "col9": -5722993038821801.748, "col10": -17110044615450491.806, "col11": "2023-05-22", "col12": "2023-07-06 18:43:09", "col13": "2023-03-30", "col14": "2023-01-03 17:58:06", "col15": "CW4hXqcNhZ(7NV", "col16": "^-GcQPOz2j/^JouKfQ!j", "col17": "fL@>t?5)3esV/+),%xsD`;^ModFpKCj^qhGyEThhB+s.w_#0ZSEvdtmUPKcU3!I5DBaoc(?6--TxUy0lMqgGGJ_1?Ba?Q@*b6->;I_koUI5", "col17": "lu<.4A8;Po5"} {"col1": 517718032, "col2": 8, "col3": 5617, "col4": 1, "col5": 2036983629624140619, "col6": -8004741025176861266, "col7": 29875.326, "col8": 518876871.957944, "col9": -91214823930019420.126, "col10": -83897543475024225.103, "col11": "2023-11-04", "col12": "2023-02-17 02:18:52", "col13": "2022-11-25", "col14": "2023-04-16 21:00:34", "col15": "", "col16": "6hv*w,;~7ReMx-z)RyB0SncbrE_E4=ar0X(QPSxbv?v,sYR/.nsST,Lsf2lC-", "col17": "5+@eImE(-#Aq7Ti,Z7I9SmCU8jGwXs.adUs152`KV,SUN8r$A>_I(Mzpo1wyUTbQVQF+ynd*"} {"col1": -26851415, "col2": 77, "col3": 20803, "col4": 1, "col5": 8462280744723342223, "col6": 4028913701469404239, "col7": -27780.814, "col8": -1695167601.009997, "col9": -49423859244307827.797, "col10": 21504216931240673.598, "col11": "2023-01-01", "col12": "2023-06-27 05:34:56", "col13": "2023-05-01", "col14": "2022-11-26 20:17:19", "col15": ";jWy1&q3blu>6IO^dh9#B_@I.JL1FWW,Kat?I5;?foXR#s^pWy8aAQ1M=Pc+(dz&/"} {"col1": -604602583, "col2": 57, "col3": 13011, "col4": 0, "col5": -5302358667068573583, "col6": -5456138891970329645, "col7": 20375.229, "col8": 1419926154.765488, "col9": 64309450696316848.480, "col10": 30650186013769395.238, "col11": "2023-10-23", "col12": "2023-11-06 06:40:28", "col13": "2022-11-21", "col14": "2022-11-25 01:32:41", "col15": "ienLsZZoNc", "col16": "Z`7h~<62l*T,(Fum0!A=a2Dql0", "col17": "7^=JYmEr9?Js%P%1Pgiy,!l5>e-*GgFF%F#iJ/FV`0-Bjg6uR%W-LK%B2QZf*gE-(IO!p>whxfod2)eg4%/NZ4"} {"col1": 1296845509, "col2": 59, "col3": 21046, "col4": 1, "col5": 724993822370556458, "col6": 6265074313340910084, "col7": 29620.066, "col8": 1513249955.591215, "col9": -15705720077200863.493, "col10": -18756131852709044.646, "col11": "2023-05-11", "col12": "2023-08-17 11:43:03", "col13": "2023-03-17", "col14": "2023-08-17 16:03:28", "col15": "EYv*0AKQ3", "col16": "%k%,cq5^6AW4k^*D(IFeA?jMf8TZfP@AmmNj3-EVFkT>~2GHzC3=pd)R6Vu;E`0A;WrJzpo`Fv4Cqo*^^!C.($,Akh9A;+RKM^W&", "col17": "?6BBn/4tSggoWM=V`-YK=u_5*D=WP3;/G3s<6mFMa5725,9$t.!)nMta1kaI?l6t`P!+k&nKc-"} {"col1": 1787385854, "col2": -123, "col3": 29564, "col4": 1, "col5": -4220216585811082502, "col6": 4960039834428859787, "col7": -14863.338, "col8": 1683405330.677428, "col9": 57974039101802622.279, "col10": 19353920084990675.742, "col11": "2022-11-24", "col12": "2023-04-16 23:42:22", "col13": "2023-01-29", "col14": "2023-05-15 05:35:02", "col15": "O>5PB6i>NmB", "col16": "VezoSRw-mx0j6ye?a6/6pnEPl`$i#NMvQ(x+_s,ZJN9?.MK", "col17": "N%RxT2%Al_#SU<6TZK.FZa-.25+sb!hILyv?#fn^szkG=hO>G,A0`7pM/NskTuH1+E&G=K@yg;I8iUf7ONGj3"} {"col1": 181016402, "col2": -66, "col3": 30163, "col4": 1, "col5": 4495758931964433648, "col6": -8653734159677839442, "col7": 15644.355, "col8": -1356097265.535016, "col9": -89608254464744295.275, "col10": -42975241952851160.770, "col11": "2023-05-25", "col12": "2023-05-21 12:36:03", "col13": "2023-01-15", "col14": "2022-12-02 00:23:30", "col15": "IIywcqM", "col16": "T;)^_Mbku6CT1MIc0bD^#%2IaYOh@rhnrjC", "col17": "CpS3bbNX)rH#8Js5ieM<;5R?YBeE5/nUmmx7p~oY~=c/yfvRiASR*R6v"} {"col1": 1469934754, "col2": 1, "col3": 485, "col4": 0, "col5": 1224735581054006788, "col6": 6089508584939008713, "col7": 20772.271, "col8": -340537207.844391, "col9": -25669600080047259.795, "col10": 55365122064805386.858, "col11": "2023-01-02", "col12": "2022-12-30 04:14:03", "col13": "2023-05-24", "col14": "2023-03-07 14:05:07", "col15": "x4JeBv", "col16": "(o!sVg*!Z#dt0lF<*vxkfoK#1b", "col17": "D29^$!xZ)vz3.+);W", "col17": "(6t&$tmJvo`XL3s4z(t*P-~*+gau$i.NWn?VD&.`jFTF?0voTgJ)C7PgDj/_oiZw/q&A(u-9S"} {"col1": -731917057, "col2": 37, "col3": 6151, "col4": 0, "col5": 7777078010512157661, "col6": -2759816014023267952, "col7": 10645.079, "col8": 883698261.707048, "col9": -76310146256900243.312, "col10": -6973273195653891.327, "col11": "2023-06-18", "col12": "2023-10-22 04:11:48", "col13": "2023-04-26", "col14": "2023-04-25 11:45:34", "col15": "UXuOuREEJ", "col16": "l^rtqAEr4>ec.Vw;QBrajvx(?d07he1jyx-z.!(h`Ya&Zh?O", "col17": "VED-)l&4%vqo$g$hEMQZ=!"} {"col1": -951913828, "col2": -49, "col3": -19436, "col4": 0, "col5": -6614975947088839054, "col6": -2347794520629140789, "col7": 18287.795, "col8": -265026577.394333, "col9": 95136006648803303.130, "col10": 46455594961007726.578, "col11": "2023-06-25", "col12": "2023-09-08 11:02:25", "col13": "2022-12-23", "col14": "2023-07-11 20:33:27", "col15": "GD*~", "col16": "MlBbK%Y(G3,Q>8.z&KMwUHBt0p/m<6c!!xkI8L%9Pri", "col17": "h%LK"} --8584330716254438722 {"col1": 933995213, "col2": 1, "col3": 3267, "col4": 0, "col5": -5550829509029152855, "col6": -8797152448685401671, "col7": -6807.821, "col8": 1881218185.650995, "col9": 44837386411291788.739, "col10": -77744549308538297.360, "col11": "2022-12-26", "col12": "2023-08-24 18:48:11", "col13": "2023-01-30", "col14": "2023-11-03 12:45:38", "col15": "4be", "col16": "1=)tT^~uN(d<%FlwM;`JYpKWzB<+x.PFYfbh!X9EElGf1&bba6;;i2iMz/2Kp_qh$-I^L;3?Sl"} {"col1": -1333802234, "col2": 43, "col3": 11242, "col4": 0, "col5": 1196312694517239929, "col6": 6213937979195932063, "col7": 12792.475, "col8": 1428325473.834884, "col9": -62192826868698867.216, "col10": -93168441979234449.692, "col11": "2023-09-02", "col12": "2023-11-05 11:46:33", "col13": "2023-01-08", "col14": "2023-10-29 05:00:38", "col15": "EN6$dzs~(d53", "col16": "uEL)aj7RcOy2B>akn", "col17": "V.GohGHLV6J6/(Xx?9(7fB<_v9TByzA?7?6Yw$PhvyuFfYk^&DGstDc>KG3UqcU!.m;xm%@LE+gEsxk(/Pbbpw?"} {"col1": 1086518829, "col2": 19, "col3": 8050, "col4": 0, "col5": -3082049133083595029, "col6": 5683422793173472738, "col7": -2291.2551, "col8": -432505729.081493, "col9": -47674030032621905.804, "col10": -80490934942919187.814, "col11": "2023-06-23", "col12": "2023-04-18 23:49:15", "col13": "2023-10-05", "col14": "2023-04-01 08:55:04", "col15": "#P-Bqu", "col16": "<,F@^IxJCX,4#vmwXV2ShV>C2mlige5>NJT.,/T/~@LOKo3cF_=^p", "col17": "Z.Hqh(h3Gl7V%5L%(kk7E37w/Go8wFJo?fBOhlH,qP#gA?HMc)E2psS/8J.Kj/5H3*J>y69SflpRdW>kk5U=Wi;ih,H3L-/5H8ZAh?", "col17": "9G!&Shr?TRk=c;0MmBkB^ctv3%D_(zKTH"} {"col1": -1331045850, "col2": 56, "col3": -31044, "col4": 1, "col5": -7244667617013002360, "col6": 1902503764317765481, "col7": -25882.256, "col8": -380049302.431098, "col9": -9606911474006002.109, "col10": 17328632045627481.982, "col11": "2023-04-19", "col12": "2023-05-27 13:22:43", "col13": "2023-02-13", "col14": "2022-12-13 04:36:42", "col15": "4C`o>N#W(XW)F.M8UuUtJLRU8%S7T6cVK^5x^DY-Lr=8V.LyxYo+9uJ6W.9)t9k_(t@V.BTcR8i+", "col17": "Iul)yq?wr*jT~A&Xw3eC)!It21loq%CSn^Im)$t/-ye4SweU1!^S?t"} {"col1": -1125037299, "col2": 82, "col3": -22808, "col4": 1, "col5": -8303816131517042997, "col6": 4386623234696664296, "col7": 31390.795, "col8": -321331979.556449, "col9": -9500951408855814.912, "col10": -15572524372861648.542, "col11": "2023-04-24", "col12": "2023-02-14 08:58:45", "col13": "2023-05-26", "col14": "2023-09-15 23:55:02", "col15": "3&@", "col16": "h6tMUgR4ZgYkbTaz3l-cZqOXH=$c0$eVnBq~Z`/i-OIcycC?o!,Tbp/%", "col17": "~rMw9K?15@l`?G7zbS;w6D0-l0oVmD.G<#ZjEEw)j.$#RVLAW`/XFk7--,~z;2b"} {"col1": 1558710429, "col2": 12, "col3": 28523, "col4": 0, "col5": 5442602451983227812, "col6": 5264019481572723786, "col7": 30198.125, "col8": 506413823.027176, "col9": 45601850479542885.984, "col10": -13258345057980610.190, "col11": "2023-03-14", "col12": "2023-05-08 22:21:46", "col13": "2023-07-05", "col14": "2023-01-05 03:50:50", "col15": "", "col16": "uHkiv$KU)dNI6W8DU?>>zIIh^.^)Qjpr2ppOZD!?6,)sOBEFe%a4w4skFT4rk", "col17": "S,Xu`uz3QhH;COFcN9*6PnsH)Mf4%GW^OV/#xce)*BANp@263aBjV2?qIB-5$^Q/>Hv6%~ph"} {"col1": 610229798, "col2": 63, "col3": -23158, "col4": 1, "col5": 2607349881852175976, "col6": -4831004874800938260, "col7": -21914.416, "col8": -2107006238.699932, "col9": -13894840376099276.889, "col10": 49077690290463004.191, "col11": "2023-11-02", "col12": "2023-07-29 16:40:01", "col13": "2023-04-14", "col14": "2023-09-11 12:24:43", "col15": "StJUT(wB>@", "col16": "y(@?NZdvk3O3axN-AN=ps9=!~^5apnzz!RW.CZzs`4&%l5p0SY/>)/%t#.ZXpJfgj>^d_FGhtphZ$P-ZY?;/", "col17": "oFI/=&hVVm+Y7MJssb&KP^M7GQ!+)5`.CNOZRfqwR$1S%cMZW!Os$(+rfJB&###*Pg)uDu,IdFK)DpOq"} --8696072892588497420 {"col1": 2039445442, "col2": -53, "col3": -26405, "col4": 0, "col5": 6687518459785395543, "col6": -1021792500766523300, "col7": 20019.04, "col8": 1557400130.093494, "col9": -96882930588706562.618, "col10": 26086925481865334.897, "col11": "2023-04-11", "col12": "2023-09-13 02:47:42", "col13": "2023-07-08", "col14": "2023-03-17 13:33:54", "col15": "~7KsA>,Qr", "col16": "tuV0Ia95UN4WJ,d>U,gXIq+AB&FWl@+ZIZ7n1(t.!rozlH3)L$I", "col17": ";rwx#I@!I9>KNEo-e3~u2!Z7"} {"col1": 1972978288, "col2": -50, "col3": -6168, "col4": 0, "col5": -4179719101679261778, "col6": -5658599518714090609, "col7": 28802.623, "col8": 246142051.324034, "col9": -36754206589235888.236, "col10": -89884930143982612.342, "col11": "2023-01-05", "col12": "2023-03-15 03:20:04", "col13": "2023-09-07", "col14": "2022-12-27 21:53:40", "col15": "id>=nmLO", "col16": "q)ImOZMO-%"} {"col1": -857517907, "col2": -13, "col3": -26169, "col4": 0, "col5": 1324801886191525419, "col6": -633990266050297169, "col7": 3735.309, "col8": 789053200.026963, "col9": -57720955152670311.476, "col10": -8743840658043643.960, "col11": "2023-07-31", "col12": "2023-09-06 17:05:54", "col13": "2023-06-08", "col14": "2023-03-14 17:52:11", "col15": ">rSQBh-<9$q~1/", "col16": "3=mvLVLYK#5M_mImzbf$m4pjO?xqaMnD3%Wk6z9!?VK>asTqihfTun&?rjnV@hCKqNFLZ!t?Z,$I&0VO14W?.$Ifn", "col17": "3$*wLCj/g;FeFuL?1)xDf1qi-2pC34-nHU*wrC"} {"col1": -794984628, "col2": -123, "col3": 2770, "col4": 0, "col5": -8407115878675052393, "col6": 6290621142790299283, "col7": -20395.217, "col8": 964838226.951184, "col9": 62168795366363553.685, "col10": 3990660931483287.956, "col11": "2023-08-01", "col12": "2022-11-15 03:39:25", "col13": "2023-05-22", "col14": "2023-01-16 06:11:45", "col15": "aBBlJ&qLR/", "col16": "j%jpN=i9M(qm~P6$lrFZX#%K/V,+lKT8PLo7S=nBDaW+%k", "col17": "SBYA;xsw12%VfP3h@H#t%K2217huCI5%Xzl7/uVQyqEDk+iuY4CfzD4+#n4o"} {"col1": -96204677, "col2": 104, "col3": -25072, "col4": 0, "col5": -495962334761368972, "col6": 8827206595048036803, "col7": -11482.668, "col8": -1689118748.978966, "col9": 67715972226386452.885, "col10": 13169427423288280.809, "col11": "2023-08-15", "col12": "2023-01-02 17:50:30", "col13": "2023-07-23", "col14": "2023-08-06 21:07:43", "col15": "_ZVEgU^HRmfqt", "col16": ".o2d+YKh6g42*c#", "col17": "_L!"} {"col1": -2115935053, "col2": 27, "col3": -19348, "col4": 1, "col5": 6444729399502953215, "col6": -7824339815255256852, "col7": 31207.164, "col8": -1416336003.514647, "col9": 30769340447285264.393, "col10": -16602275863253066.303, "col11": "2023-09-03", "col12": "2023-01-20 01:35:08", "col13": "2023-06-14", "col14": "2023-01-16 04:44:31", "col15": "h", "col16": "_uZ^TAbpz$&E>G;g7Ke/", "col17": "qAFkpQ29_t~6-$W_G$@qi6q.wZ_l~O9gBk#aIkHjxu>-`~$Ur@M~VF%l.otQqlsdt-+c*/"} {"col1": -388835131, "col2": 53, "col3": 1173, "col4": 1, "col5": 1058814101912670358, "col6": -4766475424119347961, "col7": -9593.519, "col8": -2026900846.597067, "col9": 32638844755892053.680, "col10": 74267061673690142.256, "col11": "2023-04-10", "col12": "2023-01-23 06:01:37", "col13": "2023-01-05", "col14": "2023-01-10 20:32:45", "col15": "vatM?TjC", "col16": "-czPSz7d;hzG%`_L^Lh(iQR_TjXjNJu=4-pB20qcn@s`b&BXBJE", "col17": "ZC1C1b7bXzPw8eL$aQK!sAs+3mH~xq.Y,4sAf~aI!VrfJ!rEm9#g;,?(WY5XrY$Hu9ieq1JfeuoJq+?P0jB0tI64sM/>#E.kBRZ>E_%J`kg$iXvES2KqpLpF&Q>Cxm=u1GkyT8X(;^YVvxgd3ukoX<@0=UE=^@Fy1,3ZmN5y~gE179^6s=z,*X!"} {"col1": -890641036, "col2": -108, "col3": 12687, "col4": 0, "col5": 5992849989632294216, "col6": -509868396952444310, "col7": 25711.898, "col8": -155735546.802502, "col9": 30165578514147105.800, "col10": -8197414077466183.531, "col11": "2023-05-22", "col12": "2023-08-29 18:34:13", "col13": "2023-05-16", "col14": "2023-03-01 21:45:35", "col15": "9A3@>H6t", "col16": "M2-d-@D17CX+$Co8K`<0TLns@%#PT3ZS(8JrM/2)lO~-9N~`AGr^!mg_I=.d/9GNP", "col17": "8/e,sjJC%Nb<.XIIkQEES~Is9JMzf-cUXnln.=;T@;d#K=TsahgOL9aJ+F!zDCEBBDDBo0d^BJjO(Pgm4X^x<@He,L;e^KJ+oLBp`(l-BHC70G5*~-"} {"col1": -214174654, "col2": -66, "col3": -26315, "col4": 1, "col5": 6675376020097387538, "col6": 2349535819201158151, "col7": -2783.544, "col8": 897715524.600938, "col9": -45965025270498650.974, "col10": -67730060493155209.887, "col11": "2022-12-15", "col12": "2023-11-09 12:10:53", "col13": "2023-03-18", "col14": "2023-04-16 19:23:56", "col15": "r4Y@2Ih#", "col16": "a>,4Qp!Y,o+~a4N_.rE_2eIhsgTH>vX(bm~3l$vdJtrnp@?pMKp_IBASj!i!*ruZ*3iMOWChwPRybRUmEbZ,s", "col17": ")l+^jtn@MQLK*9a7G)MfSKuY8/=G2DNh0f>d%oCIq>!(.7YqV~yWmi%+pwWLRmU88TZI-->Y#"} {"col1": -2129952087, "col2": -126, "col3": -2059, "col4": 1, "col5": -8837074953586926207, "col6": 5112551742375942421, "col7": -6595.1167, "col8": 419447242.935179, "col9": -92635600957786296.964, "col10": -99426600244345493.224, "col11": "2023-05-17", "col12": "2023-01-04 14:05:29", "col13": "2022-12-17", "col14": "2023-04-30 14:43:23", "col15": "-a", "col16": "Y@OQLeFB!n`xo?@hDQ(LQfTb^Ay_!Smggqhg%fceGJd", "col17": "/q-IbTh@0v-)i*,XOo1j>xlzCp2!-eN-giu(P7^aK#uk`,/yzbS"} --9052855404401710281 {"col1": 261079681, "col2": 93, "col3": 20178, "col4": 1, "col5": 2163705202391578899, "col6": -2190600110707822922, "col7": -7382.004, "col8": -1200294565.951719, "col9": -91960534868632856.281, "col10": -89949948257620846.844, "col11": "2022-12-18", "col12": "2022-12-04 16:19:09", "col13": "2023-10-03", "col14": "2023-10-18 20:19:55", "col15": "@i*~Y^&~Nw", "col16": "I&*/wB(4Ke-", "col17": "LTl)O&FsU0<4mq5_a!VkB(dy"} {"col1": 293498095, "col2": -121, "col3": -25965, "col4": 0, "col5": -3576656064125326132, "col6": -5657804083675264268, "col7": -30704.178, "col8": -904104728.103341, "col9": -3159432710175410.370, "col10": -45496500895008845.756, "col11": "2022-12-08", "col12": "2022-11-19 03:19:20", "col13": "2023-04-19", "col14": "2023-10-01 09:10:42", "col15": "M1/gn^", "col16": "3e3^nd>C*R&P-K`Q(/l#S@p#~VG6N8bakqb!6JOCPi>OKf@FyVx2v!E_GzXS&iI_rvtU3@nH~~jWu6@%4>", "col17": "ECpA8MXR9"} {"col1": 1891310032, "col2": -26, "col3": 26695, "col4": 0, "col5": -374125000529149443, "col6": 2171945590552452381, "col7": 1041.4928, "col8": 1273785834.848136, "col9": 97681462870233953.548, "col10": 80612975133223453.920, "col11": "2023-03-28", "col12": "2023-09-23 19:05:17", "col13": "2023-01-08", "col14": "2023-04-22 18:50:43", "col15": "EC><,k", "col16": "UuW2bFgOk", "col17": ".yuEbs~=_md6Q=p_rC#4rM5Fv>2;)`1?vo@o*OHlmw%w1yqWi&8heNZ?~8!C0qL"} {"col1": -741198949, "col2": -125, "col3": -19192, "col4": 1, "col5": 5676011356690276916, "col6": -7208944717181851294, "col7": -16968.037, "col8": -172360599.036606, "col9": 11062817494936380.754, "col10": -20473655271393218.620, "col11": "2023-01-05", "col12": "2023-06-05 05:32:43", "col13": "2023-09-25", "col14": "2022-12-11 18:46:30", "col15": "uo*`,0x4WusV8", "col16": "YBjQda$7u07noHXpbBeAqy^0Z~K5eC*l7NE8r`O^-*K3H(Q3c1i1R%FZTC-#ol`8`.uTDxsBrtnv~^41TTL,f-#Nx=fx1)U3#;9K=osN(BCPa/VJP^yb=x-wC", "col17": "$Uo7qZ)*QOk#*nXua`~=qi4*+F-DcC+~)8y#C6+UzS;8wr%?omo(XHQ9$C;A)a1Aw%T", "col17": "hv6lk51=2%oZ~k?s?jbdcE92t;q^*11S5Gni&", "col17": "h%EzOW5YYzGlD+#n8sn"} {"col1": 20035609, "col2": 3, "col3": 15349, "col4": 0, "col5": -822097466612981862, "col6": -8411765013373638349, "col7": 31527.754, "col8": -563702334.28447, "col9": -73307201008760924.624, "col10": 41041091789555799.240, "col11": "2022-11-28", "col12": "2023-06-13 08:38:26", "col13": "2023-09-11", "col14": "2023-02-24 05:04:10", "col15": "k<,$", "col16": "8KGA*R`O`xc4ahsU,OfQF8U+L-MYW81RD@q_vBkcCAU=~)%kzq>I419e", "col17": ">hq0RmfoN8GY1KhcX%8kSVgNepBIx=64zIC5w1cd2)@HTg"} {"col1": 681801015, "col2": 33, "col3": -3520, "col4": 1, "col5": 7366609877737053742, "col6": -3161246756640427052, "col7": -30325.709, "col8": 305541624.015199, "col9": -68808724306427475.611, "col10": -27445248172763847.371, "col11": "2023-01-23", "col12": "2023-09-01 22:06:09", "col13": "2022-12-04", "col14": "2023-08-31 22:26:56", "col15": "9~jInZTijOl/T", "col16": "t,BiuEz/IOh;/5Hgs^*toL%e-"} {"col1": -763764922, "col2": 43, "col3": -23399, "col4": 1, "col5": 783989712103186350, "col6": 4083110528859476183, "col7": 23241.365, "col8": 1995148265.406853, "col9": 96770525970445251.550, "col10": -85979799906620535.713, "col11": "2023-09-25", "col12": "2023-06-07 09:35:00", "col13": "2023-07-19", "col14": "2023-02-04 03:54:25", "col15": "Z~$?K=)T", "col16": "%0Z7_jKvdtrLWiMO2&Q$>Jo<5zh`.sd0(YWT.~Q`-B/q7,up>lw5PAA+B?h~PAfqH1d", "col17": "^*Zk4=6jLr?;fmtbcE/?y5s$*_-bmXh#H_LT>ua>2H&Bv%#e7lKc@k-;^Aa7ukG/VI6TR227%h?LT+(_v", "col17": "6TIVHg^HUKpnL(vb%EUwGhk3;)"} {"col1": 1370312656, "col2": 41, "col3": 18715, "col4": 0, "col5": -3758233030181962206, "col6": -8987717996655162408, "col7": -31457.508, "col8": -1708794275.366794, "col9": -94588829972275923.445, "col10": 3986165881623729.357, "col11": "2023-08-11", "col12": "2023-07-25 18:20:01", "col13": "2023-02-26", "col14": "2023-08-06 11:27:49", "col15": "@DS1", "col16": "T?bB7tU", "col17": "IiQ@J6tX~sm^jG.r&swNrVk1-2ONnvC5Ig(XkMI)X%@DxZbPkLG<84l_F0*kDbpId.dd@d%Tqv"} {"col1": -1169184786, "col2": 71, "col3": 31927, "col4": 1, "col5": 8390345726239927198, "col6": -7481515861580930114, "col7": -11882.879, "col8": 1647353218.839473, "col9": -83496988101917566.310, "col10": 8002364419087947.937, "col11": "2023-04-16", "col12": "2023-09-18 23:39:33", "col13": "2023-11-07", "col14": "2023-10-27 03:02:59", "col15": "=P", "col16": "62_"} {"col1": -1095228497, "col2": -62, "col3": -14579, "col4": 1, "col5": 8678662247688949464, "col6": 2327812601777741478, "col7": -18123.812, "col8": 1567963893.234542, "col9": 9922994714498675.274, "col10": 23455293548273884.488, "col11": "2023-02-23", "col12": "2023-01-05 12:37:47", "col13": "2022-11-13", "col14": "2023-07-28 23:53:46", "col15": "r1(NqlNf", "col16": "T1xKVofKWBof,<%7t>C;wtY<>3mbn/epHN2=GxB+(/*nt3YK7TLM,I14_bD@ZXu-2zy#l0j", "col17": "i~kdqVPV*", "col16":"C0n`(eKXVGGeyjhgEd7i)4v~ySxEaaWarSp#!NyV^82"} {"col1":473779489, "col2":-27, "col3":10078, "col4":0, "col5":-4211603212688337032, "col6":5244579342157463694, "col7":-27215.285, "col8":-334726943.608619, "col9":-54538553987394924.420, "col10":-93673670369645248.328, "col11":"2023-09-25", "col12":"2022-12-07 08:35:24", "col13":"2023-02-23", "col14":"2023-06-05 20:32:04", "col15":"X", "col16":"YmDn!T5dhRbUr4,$P^WB=3s#e>Ji7YMUVKirpz+,XBoPpYtW%&?B*=@I-r", "col17":"&Bo*O!7w!/Y9z>UY2p%I.1dgTw;TfwA?`xTCOjKY"} {"col1":-637277675, "col2":30, "col3":-8329, "col4":1, "col5":7243201707895745880, "col6":-2600139732363544985, "col7":-24954.652, "col8":-547592360.670918, "col9":17942494151830136.120, "col10":-73269357992586522.251, "col11":"2023-10-06", "col12":"2023-06-30 20:40:45", "col13":"2023-02-09", "col14":"2023-06-03 15:43:02", "col15":"uqp+iNH;KyS", "col16":"WtvEe*?FlHnwO>>!?LufX2ZgGOCxoJ6YtQ+q&1fLU#1KaJskS9EcAo&", "col17":"A>p8hF"} {"col1":1284289061, "col2":-32, "col3":-26648, "col4":0, "col5":8681873401813098818, "col6":-7595910498357413111, "col7":2438.322, "col8":398029728.517982, "col9":-2203609636417001.485, "col10":72676896115876061.354, "col11":"2023-10-18", "col12":"2023-11-03 16:26:19", "col13":"2023-04-08", "col14":"2023-08-05 20:57:58", "col15":"~`VXVqsy*#", "col16":"$Ad/4xcYmP!g)*@--*g?-vaMjyP_tO9/d+mPiTvBJ1Rny,BI1XFa3JA(gIH8>;Jj4Rl`", "col17":"s~Qc^YotSrih9wOn.4`e~dqWwLn21%G_)eQsl688h,sc42yrg@$9;xdKb!p/_7&)$7(xo/GIAvK9+Xi"} {"col1":-14691888, "col2":61, "col3":-6717, "col4":1, "col5":-6432704696099112306, "col6":8367636778203422069, "col7":-9545.541, "col8":-269168795.393257, "col9":-2875508363598708.238, "col10":7927152603571778.580, "col11":"2023-05-12", "col12":"2022-12-17 13:32:51", "col13":"2022-12-28", "col14":"2023-01-28 14:13:11", "col15":"!EF2", "col16":"Q9Z#fPi$Zz./BOb-xQIrciK&28?ghvbQSB<.X@1z#SDadnlk^4k`y#"} {"col1":799582733, "col2":74, "col3":-16496, "col4":1, "col5":-6730125425115399812, "col6":7947658438097907538, "col7":-8632.835, "col8":-1325682785.498742, "col9":-79285233151927981.486, "col10":59649336400118134.771, "col11":"2023-07-06", "col12":"2023-09-08 21:26:24", "col13":"2023-03-10", "col14":"2023-09-26 18:38:23", "col15":"h&Bv/4zkFK9+d", "col16":"$50R9~)DiIdP@L6@La%0WRuolw&53~8Z$2GGkqy3GBIHc8>/b!1XPVBB>84+,d$U+O;oySaW!L", "col17":"^m~gK0ra`_b;?G^~FV-#CbH@dqT%;;eXQGn4%,Z^pD*~/Z05OZf&xliF$*bEjm^ja6dx_H4ep*j2x9TVgi=s;/c"} {"col1":656121410, "col2":97, "col3":-5321, "col4":0, "col5":1305280403700159449, "col6":-3724531396202387145, "col7":-2241.7322, "col8":-183938512.834313, "col9":66433592269021956.708, "col10":90683977356347451.659, "col11":"2023-03-21", "col12":"2023-04-08 22:02:11", "col13":"2023-09-20", "col14":"2023-05-18 23:54:23", "col15":"s", "col16":"bxZp*4Hz,s5lsm)$7d$!tTH3tiSm2jC4WU?da2=_$TU_v!7vh#zvnX(Xa`5oaIV15Z~E3", "col17":"+@Hv8#jQ)DL8.u.>3PJ*WL+&Q$w9Q`bNLqYbIZmwqSToDNbthi72X3Vr&aGfHbgP8.J(Wpv$)X>h;,^QBu`N*uxz^Z/Z!#/OGzP`AsX7NSl0%%1PF,3A"} {"col1":2137829245, "col2":69, "col3":-24328, "col4":1, "col5":-7214010171913118823, "col6":6383489972449258786, "col7":27749.186, "col8":-1262149261.858624, "col9":71750656893291974.834, "col10":-31083183104428671.245, "col11":"2022-12-01", "col12":"2023-07-05 00:58:45", "col13":"2023-01-13", "col14":"2023-08-07 10:37:03", "col15":"1i./UHw;ctfd", "col16":"k2Hfm#a<", "col17":"+*Tu*TxJHyo8+iMnXGhGt~CwYH&"} {"col1":575217703, "col2":48, "col3":-23736, "col4":0, "col5":6811488086545464174, "col6":3803523150376799044, "col7":32135.055, "col8":1777416417.466329, "col9":10509450858811898.293, "col10":89356259442111433.523, "col11":"2023-03-16", "col12":"2022-11-15 10:44:50", "col13":"2023-07-16", "col14":"2022-11-17 02:03:15", "col15":"", "col16":"5hv6HC7>=rnwo0%lPtAR<%K!FJtyTHQ=E+@I-R5v@YRY8", "col17":"-?Iwrgs#wRAlbUdTY;l=jq7gA2?B+g^iB=vf)au;=$Jgk", "col17":"6OL"} {"col1":-319448230, "col2":77, "col3":30732, "col4":1, "col5":5381726112765580324, "col6":-7205549115252513881, "col7":1416.8165, "col8":677302653.276727, "col9":-50190396509154592.764, "col10":-13335679312394197.137, "col11":"2023-07-08", "col12":"2023-02-07 18:22:59", "col13":"2023-04-10", "col14":"2022-12-16 11:56:36", "col15":"T.c?5", "col16":"lLbm0qCb~jecm7Z+lXw((/JL~lv/+X1x%Na+PdLB?paw;w8GZA3NjVmCB6`D~(cEVrPByF*/>aK(mWn", "col17":")@Y-EW*=ey_4TwdAT4kdd-JK9)z)9~mPh^T,zGW%k=Nq?e%ad6=,YSiRjq%if2Zrzd>5ov#Q~X%4vEJo^Da=/h_!0P**j$E/fdb4TrdIMng"} {"col1":1983077617, "col2":41, "col3":32601, "col4":1, "col5":-7201826594575591951, "col6":-2778573909688343802, "col7":4938.927, "col8":-1220266379.239603, "col9":-76727521516155175.955, "col10":25039714832787681.341, "col11":"2023-09-02", "col12":"2023-08-04 15:55:47", "col13":"2023-04-28", "col14":"2023-06-10 08:17:15", "col15":"l#4ZYskXD+K", "col16":"~^2POIkAYt)l/*#8+q3NC/o<5/Tf0/-*`$FT+Qd~>mIn.O!Sp", "col17":"lszz3Eg2LqT%Y4QXU4.,Q/n1f#F)HcG?E&/<*hKn9m~,V8s#H+u!v&W`4D~kd#CJ@-W^Iho?5pY-ivU$GD%8zHJ&!n9Y89d^)JE9d9>l1iX%!A,enWSqa9Vq?", "col17":"$try(1>@8wjja8S4=3m;/W"} {"col1":-1762623761, "col2":58, "col3":25147, "col4":1, "col5":-8195187424138705578, "col6":2322503311781948620, "col7":14849.233, "col8":1309835704.426427, "col9":20038999583743129.707, "col10":-50219824348359158.423, "col11":"2023-03-09", "col12":"2023-05-20 10:28:02", "col13":"2023-11-01", "col14":"2023-07-08 19:08:38", "col15":"_oF8", "col16":"i-TpQtM~2gh3V!U1%~Xra`yrI/OgSm1mpj!5T1nU.H0KiHK$sO,Yq"} {"col1":-947096066, "col2":-10, "col3":16085, "col4":0, "col5":-7903999106441943514, "col6":-5558924474920162475, "col7":-1580.9252, "col8":-1172517310.920912, "col9":-2862777116229017.951, "col10":83689507004374566.700, "col11":"2023-09-01", "col12":"2023-07-28 14:13:23", "col13":"2023-04-18", "col14":"2023-04-03 21:16:55", "col15":"&", "col16":"p?Oto9p/`mmy6*SLKF+q;r>NlJaGcp8>K(^9naD*k$nT(@8@I5z%E!*l>k*N!/Fl;%d$S==*,yl/Rn6>T6FXYy5C/6m>oJML?=Ru5Nvu(xrQHzRFs"} +-7599802346492204617 {"col1":70532645, "col2":38, "col3":-11481, "col4":0, "col5":-6080216617259928190, "col6":-4997939091762056136, "col7":21105.764, "col8":-2143803715.702904, "col9":-68742271080582065.747, "col10":-78907587704694939.944, "col11":"2023-08-26", "col12":"2023-02-11 05:32:56", "col13":"2023-02-22", "col14":"2022-12-30 03:56:55", "col15":"HGY3KiQ", "col16":"!J0a^`1D7hNl13W^G@n+HO7yIjt33TgFs46<.+ebUD;nR~TNu~W%fy0)@r^G*Kw.v6.TWce^3`UZr(krqKz0EnunP>"} {"col1":-1409399031, "col2":-48, "col3":-1046, "col4":1, "col5":7436624307467470969, "col6":2225003963120775741, "col7":-21390.691, "col8":1073721140.443469, "col9":57732513549026124.902, "col10":87719596108805404.360, "col11":"2023-01-08", "col12":"2023-01-20 15:47:09", "col13":"2022-12-12", "col14":"2023-05-23 09:47:41", "col15":");+Dl)", "col16":"rut&V5,FwyZiDPk%NhX0r*Xz#+Nv33MG/fBYUTvZ>S4*B9>*obS`vP_gd!wIX#dHgY2-78O^@@(", "col17":"Meqvzs)`"} {"col1":579265680, "col2":14, "col3":-27719, "col4":0, "col5":-6501809104707863511, "col6":8147280180529551490, "col7":-19808.918, "col8":-164250068.171114, "col9":30022902217485843.400, "col10":-54447874666848264.749, "col11":"2023-02-20", "col12":"2023-06-25 09:55:04", "col13":"2023-05-15", "col14":"2023-11-09 22:22:50", "col15":"w^%t).($", "col16":"bRIuK9mWn.LAlz631W./6e!pC!22@vLnQPr;5uUT^cdyvm9", "col17":"-%T`!*X%pDzp-gh`d9U@RVfVmpF#-N7a8pMvQjAoTZ?0fRc)6?x$Z3v2mk(GL/ilgoMV/<$5Qvl~hceLuckS"} {"col1":-187216112, "col2":10, "col3":-16693, "col4":0, "col5":-8385817273247521869, "col6":2848188566561972798, "col7":23670.527, "col8":-1380994829.508567, "col9":30402754127779193.192, "col10":-61650880621774203.609, "col11":"2023-05-30", "col12":"2022-11-30 01:11:54", "col13":"2023-02-24", "col14":"2023-06-29 00:57:09", "col15":"y467#K5zDue", "col16":"%/rkQZV#aj", "col17":"ThZNW_p6Nh4%#H#M.tNd6hiB,;5vnFq/9Hw32%SRGwwl%89neU>c.=1BAnR)?(qV"} {"col1":-945517334, "col2":25, "col3":-521, "col4":1, "col5":-8000179397635968020, "col6":4799611016251697001, "col7":-17143.889, "col8":610896895.267918, "col9":97009722657431368.579, "col10":-69421983554676755.148, "col11":"2023-10-23", "col12":"2023-07-14 10:43:01", "col13":"2023-02-23", "col14":"2023-07-26 17:50:13", "col15":"#qVD9fW7wtVC1", "col16":"nXRQRkYE3%bCiMJ.f_!uDl(_pPT*Xs-OGmM4O@O$xO=)rFm6z4yNnaVidSXwlChk%MRDh48nMD+y;lSAsuxo>f>o@vrLTP5J8,@I=s=M;2qpGL-Mv@o(qLTV)!L"} {"col1":-107851984, "col2":28, "col3":5960, "col4":1, "col5":-4506358863775406913, "col6":1394714002716153925, "col7":3481.7158, "col8":1683478841.461369, "col9":-84596227021108807.926, "col10":-76645289918951457.460, "col11":"2023-11-08", "col12":"2023-08-12 09:47:29", "col13":"2023-08-17", "col14":"2023-03-08 09:26:27", "col15":"Xn9J9^GySeGm", "col16":")waakLEu-Sr!FBaA2DNrW)k7KoUYlh^gK@4lFT#)l9oGNPwQ364`A6!3Uk1nCK.H5(k--=&N", "col17":"jvECpnDW@2#;1>6JWETs1dV@F&;JNiiecq$t`fQMb#6zHeuVd-NxJ4DU7C5rnMGOHzb0hxig0wTu,!L$q*`2ebmukS5-UhI*UIt$Nfn-j$B`5uKHcccX;^@WDZ_32H"} {"col1":-695083957, "col2":104, "col3":13909, "col4":0, "col5":1522503074186491778, "col6":8843150698429180408, "col7":-5885.859, "col8":628703014.411657, "col9":1551947058114949.576, "col10":37730565625610546.678, "col11":"2023-11-09", "col12":"2023-08-12 21:59:20", "col13":"2023-09-20", "col14":"2023-09-05 16:41:40", "col15":"9>@(qR=^;xJ", "col16":"+%6phN5<_F)ZS3~QyQuKv4*JBiqJ8>-dL2Q47W;11PT%b4evE65NNi", "col17":"EQy4;np2_>O*T;O,;#bfQ`p1T/o=v7#/$TFm_dDwVdI9+HVjt4qvgr2HRF7GYX=ete"} {"col1":-1765911255, "col2":-7, "col3":22976, "col4":0, "col5":9140324716205168745, "col6":-812222686418441384, "col7":13551.454, "col8":-1940739129.829414, "col9":69602463252623799.299, "col10":-67266115722170811.529, "col11":"2023-06-27", "col12":"2023-01-07 14:43:27", "col13":"2023-04-17", "col14":"2022-11-23 14:53:39", "col15":"/e&7", "col16":"Ji1SfE^>bu(RDcaAG)>^Z<_ZDW", "col17":"0WoT+_n^)9D)lB,D_IRQR"} {"col1":-1456506490, "col2":-35, "col3":-29639, "col4":1, "col5":-4069173633585469108, "col6":1871696868291301537, "col7":23579.47, "col8":1491786276.410192, "col9":57381012450664748.195, "col10":-10875194524569681.857, "col11":"2023-07-07", "col12":"2022-12-01 19:13:15", "col13":"2023-01-10", "col14":"2023-06-17 04:10:20", "col15":"oewq;&m&8,", "col16":"5r3XGx/7GL7Fc4+qCJdjBNMcFi).S%F", "col17":"b1Ho_Cu,>ir,^5zab,g`bDK3x4F_geCo~z6=l_opFTf;JsBajP#L;uh8*-SjXnMd)pHng-hpeY/ZeLe3%u9D$TtNM~hnNUIc.,L6(K%)EF<7S"} {"col1":1641741458, "col2":-86, "col3":-4843, "col4":0, "col5":1416568697674603435, "col6":7198614014087506238, "col7":-26080.13, "col8":723656788.660648, "col9":2705009026622083.498, "col10":-7894682496366720.868, "col11":"2022-11-13", "col12":"2023-04-26 23:22:33", "col13":"2023-06-19", "col14":"2023-07-03 03:15:40", "col15":"5O>/dlz", "col16":"i>=znt", "col17":"y25kp4lHFIDewL@6fD6$"} {"col1":74923791, "col2":-108, "col3":-7153, "col4":1, "col5":6719228417437922271, "col6":3381414400970006559, "col7":30199.275, "col8":16688838.136819, "col9":-52744139547293261.621, "col10":-39976840817695468.226, "col11":"2023-11-09", "col12":"2022-12-09 13:21:53", "col13":"2022-11-23", "col14":"2023-02-26 18:31:31", "col15":"OJYRLL78q*VKRS", "col16":"$uOkboxDzT2*g2q(S`m2sMC3&iM.$m", "col17":"p@k87.UpvD$GI5b^99gqFwGETsM1B*Nggz55p)yKo0$5OKZb&qs`n)A(fjD6wfbtS2!~"} {"col1":1099207618, "col2":114, "col3":-10108, "col4":0, "col5":2839511385114703755, "col6":8468135079658517211, "col7":12409.44, "col8":1979825675.414341, "col9":73536095983205255.660, "col10":42436385395826356.123, "col11":"2023-05-31", "col12":"2023-10-19 04:17:57", "col13":"2022-12-03", "col14":"2023-05-13 10:44:57", "col15":"HInOO;+<", "col16":"uEagU>arOFJygxMJK.)<,hA^wp9xP66JJ&gOvT&tC", "col17":"-`24S`sdI#m#SEfR2kE@,#5s/sso2EEWNKWns1VTQ/m#tG!%J5$=zP1BEUu?cQvAx.=r#o$qB7X47sU-K1ThxYB.,S~%<;TH?VGESo~hGC8/R,-nY"} {"col1":-1168878569, "col2":-70, "col3":26150, "col4":0, "col5":-5584088329317055402, "col6":4769575263937288380, "col7":15294.835, "col8":2132280561.070479, "col9":54400172764875232.687, "col10":-89766087581684119.928, "col11":"2023-05-11", "col12":"2023-02-16 04:33:00", "col13":"2023-09-05", "col14":"2023-05-09 09:59:17", "col15":"t_", "col16":">n?KzJ1UmKv~$i,7DIaooMGU_`1AGXFW)/zPnw/Es-WQqAFd;ZIyXDM(o6,N", "col17":"QMBG5oz/Xd_E7Sb!Wv8~8cRun&GKr44mrSFFWC?%I@^h~Uh>)Sf@&T/Ayn?SRWq*xk76CBVjIw$>zo;S"} {"col1":464901072, "col2":-46, "col3":-31773, "col4":1, "col5":-8800067100317078925, "col6":-1992206679721783824, "col7":24296.098, "col8":-839735596.246354, "col9":43866529059010613.449, "col10":-32536634947320487.600, "col11":"2022-12-09", "col12":"2023-08-17 10:16:30", "col13":"2023-03-05", "col14":"2023-07-14 09:45:26", "col15":"=w", "col16":"VMU1AR8HwSv4hEUp#`W5ue#Inr.;79&fnvx7hhJz9#=,9Yy`-%gWO7B", "col17":"9f/It2gRwTSzqU~CpNWiui.pC@Q5$Hmf7VjWiEGKp>KBvnM4R@+wKIQ*SIG"} +-7602293582603585821 {"col1":1108997818, "col2":88, "col3":-10835, "col4":1, "col5":1620302022713107805, "col6":1107539017849531714, "col7":10706.154, "col8":465127120.550139, "col9":-90929545480424873.124, "col10":-22300919712070428.511, "col11":"2023-08-16", "col12":"2023-10-31 05:07:42", "col13":"2022-12-07", "col14":"2023-09-11 03:45:16", "col15":"#mtD=M+uLt>", "col16":"rR6VAXM7&?RJ&@SssqkljzwsBTNob8KxRJhOjo8m#d&+0x", "col17":"/kU1ek/Ry&AuDiSGkP2uCXmobC!bc3w&&eh(l>-gIIg*)7vJTAuinnW~AHKT3OoP)cxr/i?jj"} {"col1":-395709882, "col2":-114, "col3":-1132, "col4":1, "col5":-5766105393048322803, "col6":1507490083118702916, "col7":14539.895, "col8":2051339430.904966, "col9":620199164422727.182, "col10":-25945401500624854.280, "col11":"2023-03-28", "col12":"2023-04-18 00:33:09", "col13":"2023-01-09", "col14":"2023-02-25 07:41:15", "col15":"(Jp7Wc9i9L#J(", "col16":"ueISoQLZb0OG!d;/Sjo2OnR207z4$uu", "col17":"2Z^4QA,;UpzS3.9j=>=y5M-ulNT=%9z/llL^M!VQd;w#MYq`4@@VE3!vBf@gQh~(%21BtlpJ&juB>%vh6jxb.rF8TFR?tC#Eu#eK`I/!<", "col17":"xawmmU@iow_eAZ_Mf6ob^f7JU7H(0~fusUGDHjjUyvfn=N3UK^;t`+-PntV!ZXB"} {"col1":-1548229487, "col2":-17, "col3":-6492, "col4":1, "col5":-5045348534937748635, "col6":5680037810143630607, "col7":18039.988, "col8":-571360899.943858, "col9":88274209210341581.189, "col10":-32178351285864604.550, "col11":"2023-10-02", "col12":"2023-10-26 11:11:34", "col13":"2022-12-16", "col14":"2023-03-25 16:22:55", "col15":"^oOf5vZ*RdB%Pa", "col16":"LkKG/8,R1L(s5WDk`hU4WBFWDP890buL~,O+vI`SSUjd^HB&naD,#ufK+cR0#>bw0D;y+K$4kesjDS&n*3RGMY;W_7NuN9=.)+dSveo)Y#%Yx3?&p2>`&lPZ", "col16":"vs^avRiTo@tP%iN%^Ye7=CR@3ok#!Rv6ZU`%E0Hc1Mrb*wU#(,r/T>uNd65Tg*d6SK4U-/~", "col16":"S^", "col17":"^AO#B/p-aqHVJx~~rUugVbEUz$=EdDO0,p.1H"} {"col1":-1325190663, "col2":-112, "col3":-29946, "col4":1, "col5":4926631896026922567, "col6":-6454501923179047613, "col7":-28918.643, "col8":-2015495178.625516, "col9":-78275374629606262.572, "col10":249190501061421.681, "col11":"2022-11-23", "col12":"2023-02-22 21:31:00", "col13":"2023-03-22", "col14":"2023-10-02 15:56:10", "col15":"O&cAJPfzK", "col16":"y=ME09s/)Ivp05`)?/?$-%S+L&KNCa0.wkl#eYhb4jWaHU", "col17":"qpgE5yW>Ad^TKq7n80h;pvz#;+3"} {"col1":505423149, "col2":-26, "col3":-23812, "col4":0, "col5":-6936749430337340135, "col6":-4453163693816947454, "col7":32117.152, "col8":-160594476.730871, "col9":88463454316432813.450, "col10":-31715815681536723.275, "col11":"2023-01-10", "col12":"2023-02-18 08:31:42", "col13":"2023-06-15", "col14":"2023-10-21 10:01:42", "col15":"-u+!%C", "col16":"KWlF7cOVh6-#&_MO6pAy)/ivui_xe(S5=KDm<)NG", "col17":"s7Wn;8fYuqRMhl^~qI"} {"col1":264317389, "col2":-117, "col3":17138, "col4":1, "col5":-7606036300612871875, "col6":-7555318172034769064, "col7":-24252.111, "col8":-1187613661.845431, "col9":-5278278979519595.751, "col10":-54853854418402936.369, "col11":"2023-06-15", "col12":"2023-09-21 12:03:19", "col13":"2023-07-27", "col14":"2022-11-15 04:28:22", "col15":"", "col16":"Q(YLFpUPnj^h%fAWXIB7-l;@8*UK~WVvCvKTml8?uihK4*-=ZNjZ)0dpT%f~dl2Vbj~rZuH<`J8`y@D<%0ld1*zE0hP8>w4", "col17":"cXn>/JkS`E7gKUma%MxX"} {"col1":1230555474, "col2":-24, "col3":2120, "col4":0, "col5":6229758246705093581, "col6":8128195223554710920, "col7":16533.473, "col8":1521640876.376356, "col9":-59572145160677336.155, "col10":79937134041627134.269, "col11":"2022-12-15", "col12":"2023-08-16 19:19:23", "col13":"2023-05-21", "col14":"2022-12-06 07:57:02", "col15":"yB", "col16":"?#KYiDM+Zmy4pM>>sh#-kk.GVol4lR69w9G(kI0&S7wj%jaK44HG`", "col17":"Cz-FVN<7v7Z,SZ^)UO5ylmHOSPK&kyDcTmFq,He_a~pCT`8UGP+#W$wJCb4O*d-~IxP$2Ib4~Sl4*~*CyZ$OJ&Ne-wH4&;b93`UP^96`"} {"col1":-1343753364, "col2":103, "col3":-6161, "col4":1, "col5":-670090785965987866, "col6":595502520483276571, "col7":-8248.421, "col8":-299408296.135217, "col9":-67098926356391548.532, "col10":81064348450384543.810, "col11":"2022-11-29", "col12":"2023-09-15 06:56:47", "col13":"2023-04-05", "col14":"2023-05-22 04:26:21", "col15":"H)sI", "col16":"PN4$81d;t7HS2,xIwLr!", "col17":"S?W5!H5LBfClw7&*"} {"col1":2050367541, "col2":-44, "col3":11713, "col4":0, "col5":2622815905733995307, "col6":3166796413710412614, "col7":-12813.965, "col8":1449332938.702781, "col9":-16286343553710226.850, "col10":36114374319727924.908, "col11":"2023-08-27", "col12":"2023-03-02 11:55:18", "col13":"2023-09-09", "col14":"2023-06-03 07:22:19", "col15":"q9qrMph1!ij", "col16":"k?>%PK~EwZyAAxI6e1w@!4&*0>bFD!MVI,Duy6Nyz`1VtTRa>N9(r2K1X~34>fXJLPbc2XxQL%dYm*x7wR!l##VP)hHvi2Oa%A.8Yf*j14TXuLH.zK.8M#3dL%3Ghh2C-OtmC`DhF3;cphfi`~#%e,krrDoeTV$79M8#X)?1xIg*S6Jgl52DpmpW6!NA)f&?EiVGhl7?(#9", "col17":"Ik,R98FHfH0sj"} {"col1":-886304619, "col2":15, "col3":-16695, "col4":0, "col5":8762549779530024365, "col6":-5873578382208441888, "col7":-8024.6294, "col8":-854765665.300112, "col9":-27611170815511042.221, "col10":52293916561740672.950, "col11":"2022-12-10", "col12":"2023-03-13 05:33:46", "col13":"2022-11-15", "col14":"2023-03-04 00:34:52", "col15":"(", "col16":"rw9+ZnOC`q,Z+Rry*lR+hS$~Xea7-Hcsa%uDc~@BjMw/4?w-bMWewKtZ,VMjyj3SjIJ^6bSh&>MT?;YYo", "col17":"rTR(?<$LJ=qi3"} {"col1":783573780, "col2":79, "col3":14782, "col4":1, "col5":-6560181443346561353, "col6":3600505800536771620, "col7":-11686.845, "col8":392495927.478627, "col9":-70776089048694504.857, "col10":5319783474358005.254, "col11":"2023-02-16", "col12":"2023-02-11 16:47:59", "col13":"2022-12-24", "col14":"2023-07-29 17:00:02", "col15":">5nGGdZ_*iFJc6", "col16":"v1s9k)lF4@MmvAs_lqx5_>^)i%45~3kK1X#05TE5z!-W8yJrvmFQc3J2uNG<1m*(VmLQCunoUvNbBtlC=)@5Gf"} {"col1":-439539335, "col2":-94, "col3":-8688, "col4":0, "col5":5658189954154855620, "col6":3450214172403067501, "col7":2691.2466, "col8":-1601227943.689999, "col9":50885264787164741.331, "col10":6445750028437297.160, "col11":"2023-08-16", "col12":"2023-06-15 06:19:06", "col13":"2023-08-14", "col14":"2023-02-03 18:24:52", "col15":"#g#/eL", "col16":"=p0Vydu`Y!MaI,c4=TULDx", "col17":"%RJazH~p_,x9FreCIU"} {"col1":-1094787832, "col2":15, "col3":12888, "col4":0, "col5":-3352622416438446834, "col6":9004643913779025626, "col7":-30781.781, "col8":-756929973.337352, "col9":-36718117087839084.510, "col10":37106311414844516.850, "col11":"2023-10-02", "col12":"2023-10-01 07:17:26", "col13":"2023-10-08", "col14":"2023-08-20 19:01:53", "col15":"->1,;", "col16":">rns2`(y_yH2OEWRJ~>~pt@s>DDNCe,e*xfhz#", "col17":"w_7?<*WuQOIidfuJ*="} {"col1":1605015523, "col2":-51, "col3":-12871, "col4":1, "col5":8445583839829839983, "col6":3295796674402566912, "col7":-5563.6445, "col8":783167106.137578, "col9":-90272363543934543.214, "col10":37557229125170592.520, "col11":"2023-08-02", "col12":"2023-09-09 18:33:12", "col13":"2022-11-12", "col14":"2022-12-09 14:42:34", "col15":"Q^7G~6)kx3", "col16":"sGI^Q!V#0k+(l@/U,dKw66T*IppdX_BBH0g+uD)STB,K%V6eOKk.rjUBCQEb9iqU6T#QEZ&A+", "col17":"EV+XX$Y;p^", "col16":"?X70d.3BD(FBi8_UP,6igh+wVMC0KB`B)uh,G?,)L;g2c!XvRMv`X2vHNA.YHh;jkyu6m^VlEvmHXXMy8,S(,d!*,UeP;TJ=~t", "col17":"*+J-fJJmFA!.4^S2J;Sj`0jMAa_!c3RreHn?3`iO=ZzRU83=si#28QKQ4skW8K$CoS#9kK8nS_SNFygm", "col17":"zdcJQ3O(eY3..F088uDJP&>mZgN/#=CUn!GOCNq@;2v1T46+2as`)0TP>vM,!4TK@SAIs7/u", "col16":"#K50jWd9/ZX.E5r+FE^S.wAo%)L~l1kixP!k%`", "col17":"ddbD+PgA~sx"} {"col1":488743899, "col2":107, "col3":-25066, "col4":0, "col5":7201525036451225724, "col6":4534308612824587476, "col7":-6403.148, "col8":-1084682016.563441, "col9":40125453274656905.378, "col10":-76595716069306480.966, "col11":"2023-02-06", "col12":"2023-02-28 09:54:04", "col13":"2023-03-20", "col14":"2023-04-04 12:56:09", "col15":"wqe=XH`", "col16":"Y)1yqj>(m&u%+B_mk7&gi5%9C/h,48Na,h5ylXnv1K62.?_h)D.09-%1s/jQpQSq", "col17":"=0vx7*d2asv+eQHUY3767ZGz2wz4+u-UA+8/!47MJHi*ERTdT&6+z&`/d>Q2I+Oe>Ad1rSLGyM_x0mb,gB2<`KVfuE)FWYP"} {"col1":1945706352, "col2":-79, "col3":4167, "col4":1, "col5":5243923978234719391, "col6":9216687002657284873, "col7":1812.7032, "col8":1245419886.087395, "col9":13230580424394204.714, "col10":94391184589076872.686, "col11":"2023-07-31", "col12":"2023-05-17 10:03:34", "col13":"2023-09-15", "col14":"2023-07-22 14:48:37", "col15":"!X*Du28.YYa", "col16":"-vwfhEfLCWnjiTQ55I#Pf?;4Yq66#QjkB3__/ou.O1iZhnZGBxr", "col17":"zzFWUf=YqUMA.QW(l$u;xm0D6S)p,`yn"} {"col1":1216960738, "col2":21, "col3":558, "col4":0, "col5":5110561233367455994, "col6":9093995871392702167, "col7":-17949.723, "col8":-1017053409.339787, "col9":82049948884867970.312, "col10":-10891937193171814.305, "col11":"2023-07-15", "col12":"2023-01-06 16:04:15", "col13":"2023-06-30", "col14":"2023-05-02 18:31:26", "col15":"h0_1", "col16":"HWmar*8kwVNP>hqg(", "col17":"OP#F8m7(Mftj^EIL9FTb`#dslTy0v46YVcx^kV($FFE>g1dUhF2_eLp?-e_GjNtc"} +-7955538097647954727 {"col1":1438134160, "col2":-13, "col3":25559, "col4":1, "col5":5607581613934148142, "col6":-4919209465525182709, "col7":-15043.658, "col8":-385832723.653489, "col9":-27845876168572465.963, "col10":-4649354184790065.270, "col11":"2023-09-17", "col12":"2023-11-08 21:27:41", "col13":"2023-04-07", "col14":"2023-09-30 08:36:56", "col15":",/.O", "col16":"4i.gCuX)k?t;dvjd1HM=YcWWJqqVnfUEE#!copJb(Q1(.^.`iz#>", "col17":"tq&IP/6U)Cxr%D20@z+kgOn>QZLNEL3rM4a`Yy^~sKbb-++RSmR$TZ&+s4y,el=.yCT>B96adZW"} {"col1":985501155, "col2":-24, "col3":21311, "col4":0, "col5":5527964666005317471, "col6":6946948188736388580, "col7":-8703.959, "col8":-103891562.352326, "col9":-72256959944011241.745, "col10":-15805720823720834.900, "col11":"2022-11-11", "col12":"2023-06-25 00:53:52", "col13":"2023-04-03", "col14":"2023-09-27 16:58:07", "col15":"", "col16":"4lu5D#+1Z&7@8R1q", "col17":"cyNXc*5#q!p$", "col17":"Ky"} {"col1":1596224467, "col2":106, "col3":9539, "col4":0, "col5":-809051164961171210, "col6":6250982782242314377, "col7":-26671.64, "col8":56606733.145908, "col9":-80540802744766207.953, "col10":77085717692287751.994, "col11":"2023-02-11", "col12":"2023-04-13 15:33:02", "col13":"2023-06-12", "col14":"2023-07-03 11:55:11", "col15":"3_", "col16":"tE9nr=yFH~l?QxREEq@#4NdI7AbN%jb-*uF<4l/jDiFl7%Hw3Ho>n/C%Wn;XQA-pUiNGUo6$84+MKhB#WZkimtAej"} {"col1":-1218975697, "col2":-70, "col3":32402, "col4":0, "col5":-5168465205297713683, "col6":-42506747499361319, "col7":11149.558, "col8":-124984675.779518, "col9":-82155323751512945.216, "col10":-89459933378296748.604, "col11":"2023-01-09", "col12":"2023-04-16 20:26:33", "col13":"2023-01-19", "col14":"2023-03-31 10:02:16", "col15":"R-qvD+", "col16":"62H?H_R;SrrD5?a0LNWH~(5xwLE9=aXt", "col17":"QIqR?RRBaZ=.0EF3$p>_hD2_l)R%G^jvH`;gSz?*W@p,)>ddPiKr;o9)#45Us+j1;KXqqw?)$9XPBYjIQ-<(qcTdu>H)eN5?0oMzM)A%toAOGK$+6!``", "col16":"Rq`)B_wCqr~3D", "col17":".-G1FfO_&y6ciUgItDFzp3^xj2wT)3,3YL"} {"col1":949190741, "col2":-109, "col3":23132, "col4":0, "col5":-8107750618520010248, "col6":-6431170840840398337, "col7":-31010.111, "col8":19577291.956868, "col9":-42853285297909894.649, "col10":-69573641063301319.816, "col11":"2023-10-25", "col12":"2023-05-21 17:21:28", "col13":"2023-10-10", "col14":"2022-12-31 16:39:27", "col15":"", "col16":"Y;VSV@?j+eHK0~CFokCe*r.$gq*^sqPIxHI", "col17":",f>E=XC%CFYUP7&tvYjb%LJu#GDnMQP5.~)SQH0P-D;yaR5DiVr%<5ouv$YkhXeLAR@Ym1!vkwTZ2,8bUERr?MuA"} {"col1":1527563124, "col2":9, "col3":-25868, "col4":1, "col5":-8331595583387132313, "col6":-6031385467825388820, "col7":17599.04, "col8":-1485375156.20568, "col9":-16742871194598893.775, "col10":66735741323698862.142, "col11":"2023-04-27", "col12":"2023-01-19 11:37:46", "col13":"2023-03-29", "col14":"2023-08-27 01:48:45", "col15":"RCFOt+1", "col16":"%2~aM)waci$;?$Y~?hdzsOQTTP+Zq2lipeXn#QC*u1@QX62!5-A7727V3LQ+", "col17":"70#?^Ow/rdFvrFFVDP@NtWebpxm;jgcl8#0QEyC`7v0rh<~2h@ofB$Fue"} {"col1":2018260508, "col2":-103, "col3":-24472, "col4":0, "col5":8997678386359787116, "col6":2451818178827354507, "col7":4805.7744, "col8":-839371064.997656, "col9":-2820518180207585.420, "col10":-27518074549067322.799, "col11":"2023-04-01", "col12":"2023-01-20 23:26:49", "col13":"2023-10-20", "col14":"2023-08-25 00:04:01", "col15":"8iYzEiw7AMOd5", "col16":"0@P#6", "col17":"BdWm*QfNDS2ty?^cxcNgHxDda3rHiFvXbHrs;L"} {"col1":-1482004443, "col2":102, "col3":-12999, "col4":1, "col5":-6961079697649502866, "col6":5857042070324174976, "col7":14277.545, "col8":-1583282209.721317, "col9":-78563765934769168.374, "col10":59319192883565341.984, "col11":"2022-12-24", "col12":"2023-07-26 04:50:03", "col13":"2023-09-07", "col14":"2023-01-10 21:29:43", "col15":"VaJH/X*K/D+w", "col16":"h49&Y9FGYt&D6Aig^lqbP)c+qDpi>R#$OlL6,gqY,", "col17":"&m+v03q6D@;Z9te5S)o8@h/2cGZ=Cpy*G6h8VOK9wSgH_(82bI~N96CfoepoO0`t`Rh_~BIPuq76R8ezFW>;z"} {"col1":652276964, "col2":-54, "col3":-19502, "col4":0, "col5":-2722052385324355445, "col6":-2372892998911631963, "col7":17475.604, "col8":-1783374012.97851, "col9":43667004322191647.526, "col10":75072779420286165.380, "col11":"2023-03-15", "col12":"2023-10-09 08:54:52", "col13":"2022-12-15", "col14":"2023-09-04 07:53:29", "col15":"i,i~yA;2Zl9P7*", "col16":"7E1;FbW9.LRT1yBl>#", "col17":"AN@^I?9/?l/GllxiB)^&k*y/Hy,Epewpdy-mL~#Bh4*?NQ+S~y,X2rI9+$ws8l_./&ESS/&;ANFrN&DZT@"} {"col1":-627269573, "col2":23, "col3":-8953, "col4":1, "col5":-8611933685663538328, "col6":-8745338265499505032, "col7":28135.436, "col8":2058707064.219137, "col9":-19839219197164786.827, "col10":55688732490232678.640, "col11":"2023-05-11", "col12":"2023-05-26 09:59:24", "col13":"2023-01-07", "col14":"2023-01-16 16:52:43", "col15":"pz7^U", "col16":"0ji0UC6", "col17":"&(?Ko0h^g,FULq(8DcTPXxO@`"} {"col1":-1974740230, "col2":34, "col3":22263, "col4":1, "col5":-5083433021044869188, "col6":-6379889206909365694, "col7":-24358.887, "col8":-1581447038.60196, "col9":1659553167832696.312, "col10":-74926401344917067.130, "col11":"2023-02-01", "col12":"2023-05-03 07:39:31", "col13":"2023-08-15", "col14":"2023-06-28 17:49:47", "col15":"?ckjkT$l,Ce", "col16":"Q85oUjT9DK=u1+sL#(e7DK(L3uSUNcHEbrjO>poN~U1V%HCndj`&GVPE1MvSnKyM0+rOlBcXzdRkrM#x8q$i-Vb#n@pVB4S", "col17":"=^^G7T07*EQfcOn6FhSzr=$X*!jPo5fP!uTLyQ@cZF).pS`^_rW9=&9hVOYifYjg"} +-8368163552280161902 {"col1":1769209089, "col2":41, "col3":31160, "col4":1, "col5":-2575336798099083185, "col6":-883044937893669077, "col7":-19593.564, "col8":732727904.190433, "col9":24471993109695208.242, "col10":7027799225935328.300, "col11":"2023-03-14", "col12":"2023-06-17 01:00:36", "col13":"2022-12-16", "col14":"2023-06-01 03:23:44", "col15":")ysk+f.Rb;Mk", "col16":"rpXzdz#~NQOpWj8uq%$3Uo(7)2wSmy&XbeF~mpb80bhCN$<%UqoFQ).xInr)z1e%Wm)miFk/gPZIOC=DS=$-P-e~ZKT*Gc#n", "col17":"Zw/sJQD+!qGN&,V0gq!>&KcN-5HzygFJT(3%YCpX2p6GIkmQJK-4hkf^o^Gzo0"} {"col1":-1128656019, "col2":38, "col3":-31755, "col4":1, "col5":-2435632141806412164, "col6":8136450037899463794, "col7":-459.44894, "col8":-831192457.489055, "col9":97591785640602819.751, "col10":-62968590713393600.518, "col11":"2023-01-16", "col12":"2023-04-07 18:36:15", "col13":"2022-11-21", "col14":"2022-11-11 20:28:59", "col15":"-C?2=,2G1e^#Y", "col16":"9W$$AAoJo2lzO$@;&SOg", "col17":"BF=Zg9mC%Tk"} {"col1":116046830, "col2":94, "col3":-22557, "col4":1, "col5":-1598164460844399072, "col6":-4158706534326890839, "col7":24433.285, "col8":2134151714.625505, "col9":32526239216662343.382, "col10":36428786060450888.560, "col11":"2023-05-03", "col12":"2023-07-10 18:46:30", "col13":"2023-04-22", "col14":"2022-12-11 00:40:44", "col15":"=AL", "col16":"nBEdvMoi&Ku%CS#9YR)1e)w&InunfqVq@z5%j97_AX2sH", "col17":"^3Lnzbz)b%j@!d_1I)@T;K,Qd#L)aCv*0U(Rnys3LLod%ZUxhCjt&7~gd5NW/ji+6Ay^d_b23=HfC&X0GqfS,vu#WV2/o;q1"} {"col1":-931769087, "col2":-29, "col3":24745, "col4":0, "col5":3139286240265536402, "col6":6172939574734784743, "col7":-9849.977, "col8":144474395.964448, "col9":74949219831536557.243, "col10":-61657785466666969.507, "col11":"2023-02-10", "col12":"2023-06-15 06:30:30", "col13":"2022-12-03", "col14":"2023-01-04 01:09:40", "col15":"MJ~0M", "col16":"7S3w*O`K", "col17":"f1<.Ruq+++&Lj1_yd)tT>PWT91>"} {"col1":95091621, "col2":-34, "col3":-29230, "col4":0, "col5":2881528624934468265, "col6":7807966468061685861, "col7":12235.277, "col8":-952013846.37979, "col9":8704675164427700.119, "col10":22241492001285031.114, "col11":"2022-12-18", "col12":"2023-08-18 10:03:10", "col13":"2023-09-29", "col14":"2022-12-06 07:47:44", "col15":"cb-fe=HQ2", "col16":"ODws3EY*izfCOE90(2iFs7^BdkVssW7cg/k#pQQk1u,cOMReo/fn7@MJ&unJK5OI=>QVS(.7.JQmm3Ue61_WTcqwU@t<@r5qj,TJ2?L", "col17":"CpZMP1~/4GLggIi95mY%IiBHMb+iZK/3&J2+135ostS!jE,cpgIt3FGZ=!=b2ua=,wi+l.7#VU4(aUrSu^-y~T$l1eEi.b,S9Na&vIC)9E=P_mrOw_J$I;Ss?5h"} {"col1":549081643, "col2":-89, "col3":-18860, "col4":0, "col5":2268837686650169392, "col6":-3564791349665118608, "col7":5688.7407, "col8":299803683.69027, "col9":92982331476439301.594, "col10":-93330243753042154.201, "col11":"2023-06-05", "col12":"2023-10-08 21:25:31", "col13":"2023-02-20", "col14":"2023-05-03 02:23:37", "col15":"d=GDd,", "col16":"-hCK9Q%sfXLRfN35e1W`WAWi(A3s!+;wwL(hRvzT~Ipp`jAY%q8o-z(ueZptTS,Ua9?gt^y9Z8yQK=h#44s", "col17":"Up4HiD^Brz.),~KbbW"} {"col1":-1783476026, "col2":-48, "col3":-17310, "col4":0, "col5":-7963598298499820103, "col6":4904571652507647260, "col7":-10607.233, "col8":-1974193014.984611, "col9":-42459355958681098.454, "col10":-18238483948356281.750, "col11":"2023-08-30", "col12":"2023-05-06 07:37:46", "col13":"2023-02-08", "col14":"2023-09-27 21:55:52", "col15":"A,blh00/y,", "col16":"iOn`m", "col17":"9+5KWeLDsbd/&Uq+1-Ehvu2^S-RxzF>sTzA)dO76#CJ+q0b_W3%Vz8t(xi9$Pzr7XGmRC3qTg!qQf&`%Dd@I()5gfj9^+j_0AgHM?!I()c=li^>"} {"col1":-496454371, "col2":121, "col3":-32536, "col4":1, "col5":5109585439962885589, "col6":-7561145607543036624, "col7":-1663.4861, "col8":-956519190.050091, "col9":-10288691912800152.494, "col10":29496554612133109.983, "col11":"2023-08-28", "col12":"2023-08-31 09:50:56", "col13":"2023-03-24", "col14":"2023-03-19 20:42:21", "col15":"%+.U&gn<1ZU>Mf", "col16":"=Y$EVG,h-h23^r", "col17":"NR.ZpMOo%1E?"} {"col1":1238201496, "col2":-10, "col3":31686, "col4":1, "col5":1122137690708375175, "col6":3751166452543437548, "col7":-15929.366, "col8":-209845314.081667, "col9":82928606746951351.951, "col10":-24921390371752053.504, "col11":"2023-04-16", "col12":"2023-03-20 23:55:33", "col13":"2023-10-31", "col14":"2023-02-09 06:24:56", "col15":"I-", "col16":"J3iltfk&9#5Qc~44Xu@_f?^u;(7J", "col17":"J,>9sWD,HEb+f)sMZy,=e?YLj#W)CQw&Tryuy?2q!C&2;cNp4j3~95VzfeI9QTh*o~=y?!D0Md#6G;1g2$8Q3j5Eq%"} {"col1":-2126172544, "col2":-43, "col3":-30224, "col4":1, "col5":4477399578851748461, "col6":-8164663132923309779, "col7":4598.504, "col8":-2145707155.719386, "col9":-16186361543705830.429, "col10":-70898288416135568.483, "col11":"2022-12-22", "col12":"2022-12-05 11:00:58", "col13":"2023-07-10", "col14":"2023-03-03 03:45:05", "col15":"v++#N", "col16":"jB/H(1KjyS,Y2-f`64cMz>$24^IOxrk~%", "col17":"DH3k3igl~`7pO`wlSAWbcAW&n^d#jy;6RME&e$6^bc/Sl(;kcBgpWt(17t/Q7%AP5l@MQm8BK8Saq=dqtSl#89iEyJF=5d4eQ*5,7RX!MW(O&4V5.ra&`wwkhoT"} +-8505366084515032753 {"col1":382502710, "col2":-10, "col3":-1057, "col4":1, "col5":-1053404092722092555, "col6":-3224814438034550078, "col7":-303.36923, "col8":1394068216.774496, "col9":35385157086902073.490, "col10":28542472828538829.527, "col11":"2023-06-15", "col12":"2023-08-08 18:11:20", "col13":"2022-12-18", "col14":"2022-12-31 10:35:49", "col15":"aNDd", "col16":"rf&g;llr0AcaHMvj==5.x^T6<5#,s9g6Ce+%%shkcvv==<-%32nk0UKGn/Xv0ze1BPHIuC5b/=LGg6Z3S8gm`F)#w", "col17":")xh~)TJqjj.DjX1yU2Ri6KQJax"} {"col1":-1855122167, "col2":-3, "col3":15689, "col4":1, "col5":-2367363947390869432, "col6":-6532659416199639957, "col7":23066.408, "col8":1319308662.25036, "col9":75101865537681458.145, "col10":847059006678943.372, "col11":"2023-06-22", "col12":"2023-03-26 14:27:35", "col13":"2023-07-13", "col14":"2023-08-19 17:08:01", "col15":"", "col16":"rspt?wZj`f,b.aEWAm5KI&s_q;yFo(>%OYX+WlZQ4uEBzq4^kJGGNIJ1W;", "col17":",JBXQweU"} {"col1":863299634, "col2":19, "col3":26127, "col4":0, "col5":-3722113302586638684, "col6":-851562457423560807, "col7":12379.872, "col8":1344459261.478156, "col9":-5722993038821801.748, "col10":-17110044615450491.806, "col11":"2023-05-22", "col12":"2023-07-06 18:43:09", "col13":"2023-03-30", "col14":"2023-01-03 17:58:06", "col15":"CW4hXqcNhZ(7NV", "col16":"^-GcQPOz2j/^JouKfQ!j", "col17":"fL@>t?5)3esV/+),%xsD`;^ModFpKCj^qhGyEThhB+s.w_#0ZSEvdtmUPKcU3!I5DBaoc(?6--TxUy0lMqgGGJ_1?Ba?Q@*b6->;I_koUI5", "col17":"lu<.4A8;Po5"} {"col1":517718032, "col2":8, "col3":5617, "col4":1, "col5":2036983629624140619, "col6":-8004741025176861266, "col7":29875.326, "col8":518876871.957944, "col9":-91214823930019420.126, "col10":-83897543475024225.103, "col11":"2023-11-04", "col12":"2023-02-17 02:18:52", "col13":"2022-11-25", "col14":"2023-04-16 21:00:34", "col15":"", "col16":"6hv*w,;~7ReMx-z)RyB0SncbrE_E4=ar0X(QPSxbv?v,sYR/.nsST,Lsf2lC-", "col17":"5+@eImE(-#Aq7Ti,Z7I9SmCU8jGwXs.adUs152`KV,SUN8r$A>_I(Mzpo1wyUTbQVQF+ynd*"} {"col1":-26851415, "col2":77, "col3":20803, "col4":1, "col5":8462280744723342223, "col6":4028913701469404239, "col7":-27780.814, "col8":-1695167601.009997, "col9":-49423859244307827.797, "col10":21504216931240673.598, "col11":"2023-01-01", "col12":"2023-06-27 05:34:56", "col13":"2023-05-01", "col14":"2022-11-26 20:17:19", "col15":";jWy1&q3blu>6IO^dh9#B_@I.JL1FWW,Kat?I5;?foXR#s^pWy8aAQ1M=Pc+(dz&/"} {"col1":-604602583, "col2":57, "col3":13011, "col4":0, "col5":-5302358667068573583, "col6":-5456138891970329645, "col7":20375.229, "col8":1419926154.765488, "col9":64309450696316848.480, "col10":30650186013769395.238, "col11":"2023-10-23", "col12":"2023-11-06 06:40:28", "col13":"2022-11-21", "col14":"2022-11-25 01:32:41", "col15":"ienLsZZoNc", "col16":"Z`7h~<62l*T,(Fum0!A=a2Dql0", "col17":"7^=JYmEr9?Js%P%1Pgiy,!l5>e-*GgFF%F#iJ/FV`0-Bjg6uR%W-LK%B2QZf*gE-(IO!p>whxfod2)eg4%/NZ4"} {"col1":1296845509, "col2":59, "col3":21046, "col4":1, "col5":724993822370556458, "col6":6265074313340910084, "col7":29620.066, "col8":1513249955.591215, "col9":-15705720077200863.493, "col10":-18756131852709044.646, "col11":"2023-05-11", "col12":"2023-08-17 11:43:03", "col13":"2023-03-17", "col14":"2023-08-17 16:03:28", "col15":"EYv*0AKQ3", "col16":"%k%,cq5^6AW4k^*D(IFeA?jMf8TZfP@AmmNj3-EVFkT>~2GHzC3=pd)R6Vu;E`0A;WrJzpo`Fv4Cqo*^^!C.($,Akh9A;+RKM^W&", "col17":"?6BBn/4tSggoWM=V`-YK=u_5*D=WP3;/G3s<6mFMa5725,9$t.!)nMta1kaI?l6t`P!+k&nKc-"} {"col1":1787385854, "col2":-123, "col3":29564, "col4":1, "col5":-4220216585811082502, "col6":4960039834428859787, "col7":-14863.338, "col8":1683405330.677428, "col9":57974039101802622.279, "col10":19353920084990675.742, "col11":"2022-11-24", "col12":"2023-04-16 23:42:22", "col13":"2023-01-29", "col14":"2023-05-15 05:35:02", "col15":"O>5PB6i>NmB", "col16":"VezoSRw-mx0j6ye?a6/6pnEPl`$i#NMvQ(x+_s,ZJN9?.MK", "col17":"N%RxT2%Al_#SU<6TZK.FZa-.25+sb!hILyv?#fn^szkG=hO>G,A0`7pM/NskTuH1+E&G=K@yg;I8iUf7ONGj3"} {"col1":181016402, "col2":-66, "col3":30163, "col4":1, "col5":4495758931964433648, "col6":-8653734159677839442, "col7":15644.355, "col8":-1356097265.535016, "col9":-89608254464744295.275, "col10":-42975241952851160.770, "col11":"2023-05-25", "col12":"2023-05-21 12:36:03", "col13":"2023-01-15", "col14":"2022-12-02 00:23:30", "col15":"IIywcqM", "col16":"T;)^_Mbku6CT1MIc0bD^#%2IaYOh@rhnrjC", "col17":"CpS3bbNX)rH#8Js5ieM<;5R?YBeE5/nUmmx7p~oY~=c/yfvRiASR*R6v"} {"col1":1469934754, "col2":1, "col3":485, "col4":0, "col5":1224735581054006788, "col6":6089508584939008713, "col7":20772.271, "col8":-340537207.844391, "col9":-25669600080047259.795, "col10":55365122064805386.858, "col11":"2023-01-02", "col12":"2022-12-30 04:14:03", "col13":"2023-05-24", "col14":"2023-03-07 14:05:07", "col15":"x4JeBv", "col16":"(o!sVg*!Z#dt0lF<*vxkfoK#1b", "col17":"D29^$!xZ)vz3.+);W", "col17":"(6t&$tmJvo`XL3s4z(t*P-~*+gau$i.NWn?VD&.`jFTF?0voTgJ)C7PgDj/_oiZw/q&A(u-9S"} {"col1":-731917057, "col2":37, "col3":6151, "col4":0, "col5":7777078010512157661, "col6":-2759816014023267952, "col7":10645.079, "col8":883698261.707048, "col9":-76310146256900243.312, "col10":-6973273195653891.327, "col11":"2023-06-18", "col12":"2023-10-22 04:11:48", "col13":"2023-04-26", "col14":"2023-04-25 11:45:34", "col15":"UXuOuREEJ", "col16":"l^rtqAEr4>ec.Vw;QBrajvx(?d07he1jyx-z.!(h`Ya&Zh?O", "col17":"VED-)l&4%vqo$g$hEMQZ=!"} {"col1":-951913828, "col2":-49, "col3":-19436, "col4":0, "col5":-6614975947088839054, "col6":-2347794520629140789, "col7":18287.795, "col8":-265026577.394333, "col9":95136006648803303.130, "col10":46455594961007726.578, "col11":"2023-06-25", "col12":"2023-09-08 11:02:25", "col13":"2022-12-23", "col14":"2023-07-11 20:33:27", "col15":"GD*~", "col16":"MlBbK%Y(G3,Q>8.z&KMwUHBt0p/m<6c!!xkI8L%9Pri", "col17":"h%LK"} +-8584330716254438722 {"col1":933995213, "col2":1, "col3":3267, "col4":0, "col5":-5550829509029152855, "col6":-8797152448685401671, "col7":-6807.821, "col8":1881218185.650995, "col9":44837386411291788.739, "col10":-77744549308538297.360, "col11":"2022-12-26", "col12":"2023-08-24 18:48:11", "col13":"2023-01-30", "col14":"2023-11-03 12:45:38", "col15":"4be", "col16":"1=)tT^~uN(d<%FlwM;`JYpKWzB<+x.PFYfbh!X9EElGf1&bba6;;i2iMz/2Kp_qh$-I^L;3?Sl"} {"col1":-1333802234, "col2":43, "col3":11242, "col4":0, "col5":1196312694517239929, "col6":6213937979195932063, "col7":12792.475, "col8":1428325473.834884, "col9":-62192826868698867.216, "col10":-93168441979234449.692, "col11":"2023-09-02", "col12":"2023-11-05 11:46:33", "col13":"2023-01-08", "col14":"2023-10-29 05:00:38", "col15":"EN6$dzs~(d53", "col16":"uEL)aj7RcOy2B>akn", "col17":"V.GohGHLV6J6/(Xx?9(7fB<_v9TByzA?7?6Yw$PhvyuFfYk^&DGstDc>KG3UqcU!.m;xm%@LE+gEsxk(/Pbbpw?"} {"col1":1086518829, "col2":19, "col3":8050, "col4":0, "col5":-3082049133083595029, "col6":5683422793173472738, "col7":-2291.2551, "col8":-432505729.081493, "col9":-47674030032621905.804, "col10":-80490934942919187.814, "col11":"2023-06-23", "col12":"2023-04-18 23:49:15", "col13":"2023-10-05", "col14":"2023-04-01 08:55:04", "col15":"#P-Bqu", "col16":"<,F@^IxJCX,4#vmwXV2ShV>C2mlige5>NJT.,/T/~@LOKo3cF_=^p", "col17":"Z.Hqh(h3Gl7V%5L%(kk7E37w/Go8wFJo?fBOhlH,qP#gA?HMc)E2psS/8J.Kj/5H3*J>y69SflpRdW>kk5U=Wi;ih,H3L-/5H8ZAh?", "col17":"9G!&Shr?TRk=c;0MmBkB^ctv3%D_(zKTH"} {"col1":-1331045850, "col2":56, "col3":-31044, "col4":1, "col5":-7244667617013002360, "col6":1902503764317765481, "col7":-25882.256, "col8":-380049302.431098, "col9":-9606911474006002.109, "col10":17328632045627481.982, "col11":"2023-04-19", "col12":"2023-05-27 13:22:43", "col13":"2023-02-13", "col14":"2022-12-13 04:36:42", "col15":"4C`o>N#W(XW)F.M8UuUtJLRU8%S7T6cVK^5x^DY-Lr=8V.LyxYo+9uJ6W.9)t9k_(t@V.BTcR8i+", "col17":"Iul)yq?wr*jT~A&Xw3eC)!It21loq%CSn^Im)$t/-ye4SweU1!^S?t"} {"col1":-1125037299, "col2":82, "col3":-22808, "col4":1, "col5":-8303816131517042997, "col6":4386623234696664296, "col7":31390.795, "col8":-321331979.556449, "col9":-9500951408855814.912, "col10":-15572524372861648.542, "col11":"2023-04-24", "col12":"2023-02-14 08:58:45", "col13":"2023-05-26", "col14":"2023-09-15 23:55:02", "col15":"3&@", "col16":"h6tMUgR4ZgYkbTaz3l-cZqOXH=$c0$eVnBq~Z`/i-OIcycC?o!,Tbp/%", "col17":"~rMw9K?15@l`?G7zbS;w6D0-l0oVmD.G<#ZjEEw)j.$#RVLAW`/XFk7--,~z;2b"} {"col1":1558710429, "col2":12, "col3":28523, "col4":0, "col5":5442602451983227812, "col6":5264019481572723786, "col7":30198.125, "col8":506413823.027176, "col9":45601850479542885.984, "col10":-13258345057980610.190, "col11":"2023-03-14", "col12":"2023-05-08 22:21:46", "col13":"2023-07-05", "col14":"2023-01-05 03:50:50", "col15":"", "col16":"uHkiv$KU)dNI6W8DU?>>zIIh^.^)Qjpr2ppOZD!?6,)sOBEFe%a4w4skFT4rk", "col17":"S,Xu`uz3QhH;COFcN9*6PnsH)Mf4%GW^OV/#xce)*BANp@263aBjV2?qIB-5$^Q/>Hv6%~ph"} {"col1":610229798, "col2":63, "col3":-23158, "col4":1, "col5":2607349881852175976, "col6":-4831004874800938260, "col7":-21914.416, "col8":-2107006238.699932, "col9":-13894840376099276.889, "col10":49077690290463004.191, "col11":"2023-11-02", "col12":"2023-07-29 16:40:01", "col13":"2023-04-14", "col14":"2023-09-11 12:24:43", "col15":"StJUT(wB>@", "col16":"y(@?NZdvk3O3axN-AN=ps9=!~^5apnzz!RW.CZzs`4&%l5p0SY/>)/%t#.ZXpJfgj>^d_FGhtphZ$P-ZY?;/", "col17":"oFI/=&hVVm+Y7MJssb&KP^M7GQ!+)5`.CNOZRfqwR$1S%cMZW!Os$(+rfJB&###*Pg)uDu,IdFK)DpOq"} +-8696072892588497420 {"col1":2039445442, "col2":-53, "col3":-26405, "col4":0, "col5":6687518459785395543, "col6":-1021792500766523300, "col7":20019.04, "col8":1557400130.093494, "col9":-96882930588706562.618, "col10":26086925481865334.897, "col11":"2023-04-11", "col12":"2023-09-13 02:47:42", "col13":"2023-07-08", "col14":"2023-03-17 13:33:54", "col15":"~7KsA>,Qr", "col16":"tuV0Ia95UN4WJ,d>U,gXIq+AB&FWl@+ZIZ7n1(t.!rozlH3)L$I", "col17":";rwx#I@!I9>KNEo-e3~u2!Z7"} {"col1":1972978288, "col2":-50, "col3":-6168, "col4":0, "col5":-4179719101679261778, "col6":-5658599518714090609, "col7":28802.623, "col8":246142051.324034, "col9":-36754206589235888.236, "col10":-89884930143982612.342, "col11":"2023-01-05", "col12":"2023-03-15 03:20:04", "col13":"2023-09-07", "col14":"2022-12-27 21:53:40", "col15":"id>=nmLO", "col16":"q)ImOZMO-%"} {"col1":-857517907, "col2":-13, "col3":-26169, "col4":0, "col5":1324801886191525419, "col6":-633990266050297169, "col7":3735.309, "col8":789053200.026963, "col9":-57720955152670311.476, "col10":-8743840658043643.960, "col11":"2023-07-31", "col12":"2023-09-06 17:05:54", "col13":"2023-06-08", "col14":"2023-03-14 17:52:11", "col15":">rSQBh-<9$q~1/", "col16":"3=mvLVLYK#5M_mImzbf$m4pjO?xqaMnD3%Wk6z9!?VK>asTqihfTun&?rjnV@hCKqNFLZ!t?Z,$I&0VO14W?.$Ifn", "col17":"3$*wLCj/g;FeFuL?1)xDf1qi-2pC34-nHU*wrC"} {"col1":-794984628, "col2":-123, "col3":2770, "col4":0, "col5":-8407115878675052393, "col6":6290621142790299283, "col7":-20395.217, "col8":964838226.951184, "col9":62168795366363553.685, "col10":3990660931483287.956, "col11":"2023-08-01", "col12":"2022-11-15 03:39:25", "col13":"2023-05-22", "col14":"2023-01-16 06:11:45", "col15":"aBBlJ&qLR/", "col16":"j%jpN=i9M(qm~P6$lrFZX#%K/V,+lKT8PLo7S=nBDaW+%k", "col17":"SBYA;xsw12%VfP3h@H#t%K2217huCI5%Xzl7/uVQyqEDk+iuY4CfzD4+#n4o"} {"col1":-96204677, "col2":104, "col3":-25072, "col4":0, "col5":-495962334761368972, "col6":8827206595048036803, "col7":-11482.668, "col8":-1689118748.978966, "col9":67715972226386452.885, "col10":13169427423288280.809, "col11":"2023-08-15", "col12":"2023-01-02 17:50:30", "col13":"2023-07-23", "col14":"2023-08-06 21:07:43", "col15":"_ZVEgU^HRmfqt", "col16":".o2d+YKh6g42*c#", "col17":"_L!"} {"col1":-2115935053, "col2":27, "col3":-19348, "col4":1, "col5":6444729399502953215, "col6":-7824339815255256852, "col7":31207.164, "col8":-1416336003.514647, "col9":30769340447285264.393, "col10":-16602275863253066.303, "col11":"2023-09-03", "col12":"2023-01-20 01:35:08", "col13":"2023-06-14", "col14":"2023-01-16 04:44:31", "col15":"h", "col16":"_uZ^TAbpz$&E>G;g7Ke/", "col17":"qAFkpQ29_t~6-$W_G$@qi6q.wZ_l~O9gBk#aIkHjxu>-`~$Ur@M~VF%l.otQqlsdt-+c*/"} {"col1":-388835131, "col2":53, "col3":1173, "col4":1, "col5":1058814101912670358, "col6":-4766475424119347961, "col7":-9593.519, "col8":-2026900846.597067, "col9":32638844755892053.680, "col10":74267061673690142.256, "col11":"2023-04-10", "col12":"2023-01-23 06:01:37", "col13":"2023-01-05", "col14":"2023-01-10 20:32:45", "col15":"vatM?TjC", "col16":"-czPSz7d;hzG%`_L^Lh(iQR_TjXjNJu=4-pB20qcn@s`b&BXBJE", "col17":"ZC1C1b7bXzPw8eL$aQK!sAs+3mH~xq.Y,4sAf~aI!VrfJ!rEm9#g;,?(WY5XrY$Hu9ieq1JfeuoJq+?P0jB0tI64sM/>#E.kBRZ>E_%J`kg$iXvES2KqpLpF&Q>Cxm=u1GkyT8X(;^YVvxgd3ukoX<@0=UE=^@Fy1,3ZmN5y~gE179^6s=z,*X!"} {"col1":-890641036, "col2":-108, "col3":12687, "col4":0, "col5":5992849989632294216, "col6":-509868396952444310, "col7":25711.898, "col8":-155735546.802502, "col9":30165578514147105.800, "col10":-8197414077466183.531, "col11":"2023-05-22", "col12":"2023-08-29 18:34:13", "col13":"2023-05-16", "col14":"2023-03-01 21:45:35", "col15":"9A3@>H6t", "col16":"M2-d-@D17CX+$Co8K`<0TLns@%#PT3ZS(8JrM/2)lO~-9N~`AGr^!mg_I=.d/9GNP", "col17":"8/e,sjJC%Nb<.XIIkQEES~Is9JMzf-cUXnln.=;T@;d#K=TsahgOL9aJ+F!zDCEBBDDBo0d^BJjO(Pgm4X^x<@He,L;e^KJ+oLBp`(l-BHC70G5*~-"} {"col1":-214174654, "col2":-66, "col3":-26315, "col4":1, "col5":6675376020097387538, "col6":2349535819201158151, "col7":-2783.544, "col8":897715524.600938, "col9":-45965025270498650.974, "col10":-67730060493155209.887, "col11":"2022-12-15", "col12":"2023-11-09 12:10:53", "col13":"2023-03-18", "col14":"2023-04-16 19:23:56", "col15":"r4Y@2Ih#", "col16":"a>,4Qp!Y,o+~a4N_.rE_2eIhsgTH>vX(bm~3l$vdJtrnp@?pMKp_IBASj!i!*ruZ*3iMOWChwPRybRUmEbZ,s", "col17":")l+^jtn@MQLK*9a7G)MfSKuY8/=G2DNh0f>d%oCIq>!(.7YqV~yWmi%+pwWLRmU88TZI-->Y#"} {"col1":-2129952087, "col2":-126, "col3":-2059, "col4":1, "col5":-8837074953586926207, "col6":5112551742375942421, "col7":-6595.1167, "col8":419447242.935179, "col9":-92635600957786296.964, "col10":-99426600244345493.224, "col11":"2023-05-17", "col12":"2023-01-04 14:05:29", "col13":"2022-12-17", "col14":"2023-04-30 14:43:23", "col15":"-a", "col16":"Y@OQLeFB!n`xo?@hDQ(LQfTb^Ay_!Smggqhg%fceGJd", "col17":"/q-IbTh@0v-)i*,XOo1j>xlzCp2!-eN-giu(P7^aK#uk`,/yzbS"} +-9052855404401710281 {"col1":261079681, "col2":93, "col3":20178, "col4":1, "col5":2163705202391578899, "col6":-2190600110707822922, "col7":-7382.004, "col8":-1200294565.951719, "col9":-91960534868632856.281, "col10":-89949948257620846.844, "col11":"2022-12-18", "col12":"2022-12-04 16:19:09", "col13":"2023-10-03", "col14":"2023-10-18 20:19:55", "col15":"@i*~Y^&~Nw", "col16":"I&*/wB(4Ke-", "col17":"LTl)O&FsU0<4mq5_a!VkB(dy"} {"col1":293498095, "col2":-121, "col3":-25965, "col4":0, "col5":-3576656064125326132, "col6":-5657804083675264268, "col7":-30704.178, "col8":-904104728.103341, "col9":-3159432710175410.370, "col10":-45496500895008845.756, "col11":"2022-12-08", "col12":"2022-11-19 03:19:20", "col13":"2023-04-19", "col14":"2023-10-01 09:10:42", "col15":"M1/gn^", "col16":"3e3^nd>C*R&P-K`Q(/l#S@p#~VG6N8bakqb!6JOCPi>OKf@FyVx2v!E_GzXS&iI_rvtU3@nH~~jWu6@%4>", "col17":"ECpA8MXR9"} {"col1":1891310032, "col2":-26, "col3":26695, "col4":0, "col5":-374125000529149443, "col6":2171945590552452381, "col7":1041.4928, "col8":1273785834.848136, "col9":97681462870233953.548, "col10":80612975133223453.920, "col11":"2023-03-28", "col12":"2023-09-23 19:05:17", "col13":"2023-01-08", "col14":"2023-04-22 18:50:43", "col15":"EC><,k", "col16":"UuW2bFgOk", "col17":".yuEbs~=_md6Q=p_rC#4rM5Fv>2;)`1?vo@o*OHlmw%w1yqWi&8heNZ?~8!C0qL"} {"col1":-741198949, "col2":-125, "col3":-19192, "col4":1, "col5":5676011356690276916, "col6":-7208944717181851294, "col7":-16968.037, "col8":-172360599.036606, "col9":11062817494936380.754, "col10":-20473655271393218.620, "col11":"2023-01-05", "col12":"2023-06-05 05:32:43", "col13":"2023-09-25", "col14":"2022-12-11 18:46:30", "col15":"uo*`,0x4WusV8", "col16":"YBjQda$7u07noHXpbBeAqy^0Z~K5eC*l7NE8r`O^-*K3H(Q3c1i1R%FZTC-#ol`8`.uTDxsBrtnv~^41TTL,f-#Nx=fx1)U3#;9K=osN(BCPa/VJP^yb=x-wC", "col17":"$Uo7qZ)*QOk#*nXua`~=qi4*+F-DcC+~)8y#C6+UzS;8wr%?omo(XHQ9$C;A)a1Aw%T", "col17":"hv6lk51=2%oZ~k?s?jbdcE92t;q^*11S5Gni&", "col17":"h%EzOW5YYzGlD+#n8sn"} {"col1":20035609, "col2":3, "col3":15349, "col4":0, "col5":-822097466612981862, "col6":-8411765013373638349, "col7":31527.754, "col8":-563702334.28447, "col9":-73307201008760924.624, "col10":41041091789555799.240, "col11":"2022-11-28", "col12":"2023-06-13 08:38:26", "col13":"2023-09-11", "col14":"2023-02-24 05:04:10", "col15":"k<,$", "col16":"8KGA*R`O`xc4ahsU,OfQF8U+L-MYW81RD@q_vBkcCAU=~)%kzq>I419e", "col17":">hq0RmfoN8GY1KhcX%8kSVgNepBIx=64zIC5w1cd2)@HTg"} {"col1":681801015, "col2":33, "col3":-3520, "col4":1, "col5":7366609877737053742, "col6":-3161246756640427052, "col7":-30325.709, "col8":305541624.015199, "col9":-68808724306427475.611, "col10":-27445248172763847.371, "col11":"2023-01-23", "col12":"2023-09-01 22:06:09", "col13":"2022-12-04", "col14":"2023-08-31 22:26:56", "col15":"9~jInZTijOl/T", "col16":"t,BiuEz/IOh;/5Hgs^*toL%e-"} {"col1":-763764922, "col2":43, "col3":-23399, "col4":1, "col5":783989712103186350, "col6":4083110528859476183, "col7":23241.365, "col8":1995148265.406853, "col9":96770525970445251.550, "col10":-85979799906620535.713, "col11":"2023-09-25", "col12":"2023-06-07 09:35:00", "col13":"2023-07-19", "col14":"2023-02-04 03:54:25", "col15":"Z~$?K=)T", "col16":"%0Z7_jKvdtrLWiMO2&Q$>Jo<5zh`.sd0(YWT.~Q`-B/q7,up>lw5PAA+B?h~PAfqH1d", "col17":"^*Zk4=6jLr?;fmtbcE/?y5s$*_-bmXh#H_LT>ua>2H&Bv%#e7lKc@k-;^Aa7ukG/VI6TR227%h?LT+(_v", "col17":"6TIVHg^HUKpnL(vb%EUwGhk3;)"} {"col1":1370312656, "col2":41, "col3":18715, "col4":0, "col5":-3758233030181962206, "col6":-8987717996655162408, "col7":-31457.508, "col8":-1708794275.366794, "col9":-94588829972275923.445, "col10":3986165881623729.357, "col11":"2023-08-11", "col12":"2023-07-25 18:20:01", "col13":"2023-02-26", "col14":"2023-08-06 11:27:49", "col15":"@DS1", "col16":"T?bB7tU", "col17":"IiQ@J6tX~sm^jG.r&swNrVk1-2ONnvC5Ig(XkMI)X%@DxZbPkLG<84l_F0*kDbpId.dd@d%Tqv"} {"col1":-1169184786, "col2":71, "col3":31927, "col4":1, "col5":8390345726239927198, "col6":-7481515861580930114, "col7":-11882.879, "col8":1647353218.839473, "col9":-83496988101917566.310, "col10":8002364419087947.937, "col11":"2023-04-16", "col12":"2023-09-18 23:39:33", "col13":"2023-11-07", "col14":"2023-10-27 03:02:59", "col15":"=P", "col16":"62_"} {"col1":-1095228497, "col2":-62, "col3":-14579, "col4":1, "col5":8678662247688949464, "col6":2327812601777741478, "col7":-18123.812, "col8":1567963893.234542, "col9":9922994714498675.274, "col10":23455293548273884.488, "col11":"2023-02-23", "col12":"2023-01-05 12:37:47", "col13":"2022-11-13", "col14":"2023-07-28 23:53:46", "col15":"r1(NqlNf", "col16":"T1xKVofKWBof,<%7t>C;wtY<>3mbn/epHN2=GxB+(/*nt3YK7TLM,I14_bD@ZXu-2zy#l0j", "col17":"i~kdqVPV> Yes false \N NONE 2 -- !1 -- -false 100 9999 2.11 9.1102 string test [5, 6, 7] {"k1":1, "k2":2} B {"a": 5, "b": 3.14159265358979, "c": "Simple Record String Field"} \N {"k11":[77, 11, 33], "k22":[10, 20]} [{"Key11":1}, {"Key22":0}] -true 42 3400 3.14 9.81 a test string [1, 2, 3, 4] {"key1":1, "key2":2} A {"a": 5, "b": 3.14159265358979, "c": "Simple Record String Field"} \N {"k1":[99, 88, 77], "k2":[10, 20]} [{"arrayMapKey1":0}, {"arrayMapKey2":1}] +false 100 9999 2.11 9.1102 string test [5, 6, 7] {"k1":1, "k2":2} B {"a":5, "b":3.14159265358979, "c":"Simple Record String Field"} \N {"k11":[77, 11, 33], "k22":[10, 20]} [{"Key11":1}, {"Key22":0}] +true 42 3400 3.14 9.81 a test string [1, 2, 3, 4] {"key1":1, "key2":2} A {"a":5, "b":3.14159265358979, "c":"Simple Record String Field"} \N {"k1":[99, 88, 77], "k2":[10, 20]} [{"arrayMapKey1":0}, {"arrayMapKey2":1}] -- !2 -- [1, 2, 3, 4] @@ -34,8 +34,8 @@ A B -- !5 -- -{"a": 5, "b": 3.14159265358979, "c": "Simple Record String Field"} -{"a": 5, "b": 3.14159265358979, "c": "Simple Record String Field"} +{"a":5, "b":3.14159265358979, "c":"Simple Record String Field"} +{"a":5, "b":3.14159265358979, "c":"Simple Record String Field"} -- !6 -- \N @@ -58,8 +58,8 @@ a test string 9.81 A string test 9.1102 B -- !12 -- -{"a": 5, "b": 3.14159265358979, "c": "Simple Record String Field"} {"k1":1, "k2":2} 2.11 -{"a": 5, "b": 3.14159265358979, "c": "Simple Record String Field"} {"key1":1, "key2":2} 3.14 +{"a":5, "b":3.14159265358979, "c":"Simple Record String Field"} {"k1":1, "k2":2} 2.11 +{"a":5, "b":3.14159265358979, "c":"Simple Record String Field"} {"key1":1, "key2":2} 3.14 -- !3 -- aBoolean BOOLEAN Yes false \N NONE @@ -77,8 +77,8 @@ mapArrayLong MAP> Yes false \N NONE arrayMapBoolean ARRAY> Yes false \N NONE -- !9 -- -false 100 9999 2.11 9.1102 string test [5, 6, 7] {"k1":1, "k2":2} B {"a": 5, "b": 3.14159265358979, "c": "Simple Record String Field"} \N {"k11":[77, 11, 33], "k22":[10, 20]} [{"Key11":1}, {"Key22":0}] -true 42 3400 3.14 9.81 a test string [1, 2, 3, 4] {"key1":1, "key2":2} A {"a": 5, "b": 3.14159265358979, "c": "Simple Record String Field"} \N {"k1":[99, 88, 77], "k2":[10, 20]} [{"arrayMapKey1":0}, {"arrayMapKey2":1}] +false 100 9999 2.11 9.1102 string test [5, 6, 7] {"k1":1, "k2":2} B {"a":5, "b":3.14159265358979, "c":"Simple Record String Field"} \N {"k11":[77, 11, 33], "k22":[10, 20]} [{"Key11":1}, {"Key22":0}] +true 42 3400 3.14 9.81 a test string [1, 2, 3, 4] {"key1":1, "key2":2} A {"a":5, "b":3.14159265358979, "c":"Simple Record String Field"} \N {"k1":[99, 88, 77], "k2":[10, 20]} [{"arrayMapKey1":0}, {"arrayMapKey2":1}] -- !4 -- 2 @@ -92,6 +92,6 @@ a test string 9.81 A string test 9.1102 B -- !15 -- -{"a": 5, "b": 3.14159265358979, "c": "Simple Record String Field"} {"k1":1, "k2":2} 2.11 -{"a": 5, "b": 3.14159265358979, "c": "Simple Record String Field"} {"key1":1, "key2":2} 3.14 +{"a":5, "b":3.14159265358979, "c":"Simple Record String Field"} {"k1":1, "k2":2} 2.11 +{"a":5, "b":3.14159265358979, "c":"Simple Record String Field"} {"key1":1, "key2":2} 3.14 diff --git a/regression-test/data/external_table_p2/hive/test_hive_hudi.out b/regression-test/data/external_table_p2/hive/test_hive_hudi.out index 3edb91d0b06fde..b8c7e6f05caf29 100644 --- a/regression-test/data/external_table_p2/hive/test_hive_hudi.out +++ b/regression-test/data/external_table_p2/hive/test_hive_hudi.out @@ -18,106 +18,106 @@ row_2 2021-01-01 0 v_0 row_4 2021-02-01 4 v_4 -- !complex_types -- -20230922203209630 20230922203209630_0_10000 10002 8b83d7ed-c150-4177-9dbb-d41169e8b9c7-0_0-163-0_20230922203209630.parquet 10002 a9999 [[9999], [3333], [9999, 8999, null]] {"k9999":[1, null, 9], "k2":[], "k3":null, "k4":[null, 9]} {"col1": "2012-02-03 00:26:48.000000", "col2": [10008, 9999, null]} -20230922203209630 20230922203209630_0_9999 10001 8b83d7ed-c150-4177-9dbb-d41169e8b9c7-0_0-163-0_20230922203209630.parquet 10001 a9998 [[9998], [3332], [9998, 8998, null]] {"k9998":[1, null, 9], "k2":[], "k3":null, "k4":[null, 9]} {"col1": "2012-02-02 23:25:47.000000", "col2": [10007, 9998, null]} -20230922203209630 20230922203209630_0_9998 10000 8b83d7ed-c150-4177-9dbb-d41169e8b9c7-0_0-163-0_20230922203209630.parquet 10000 a9997 [[9997], [3332], [9997, 8997, null]] {"k9997":[1, null, 9], "k2":[], "k3":null, "k4":[null, 9]} {"col1": "2012-02-02 22:24:46.000000", "col2": [10006, 9997, null]} -20230922203209630 20230922203209630_0_9997 9999 8b83d7ed-c150-4177-9dbb-d41169e8b9c7-0_0-163-0_20230922203209630.parquet 9999 a9996 [[9996], [3332], [9996, 8996, null]] {"k9996":[1, null, 9], "k2":[], "k3":null, "k4":[null, 9]} {"col1": "2012-02-02 21:23:45.000000", "col2": [10005, 9996, null]} -20230922203209630 20230922203209630_0_9996 9998 8b83d7ed-c150-4177-9dbb-d41169e8b9c7-0_0-163-0_20230922203209630.parquet 9998 a9995 [[9995], [], [9995, 8995, null]] {"k9995":[1, null, 9], "k2":[], "k3":null, "k4":[null, 9]} {"col1": "2012-02-02 20:22:44.000000", "col2": [10004, 9995, null]} -20230922203209630 20230922203209630_0_9995 9997 8b83d7ed-c150-4177-9dbb-d41169e8b9c7-0_0-163-0_20230922203209630.parquet 9997 a9994 [[9994], [3331], [9994, 8994, null]] {"k9994":[1, null, 9], "k2":[], "k3":null, "k4":[null, 9]} {"col1": "2012-02-02 19:21:43.000000", "col2": [10003, 9994, null]} -20230922203209630 20230922203209630_0_9994 9996 8b83d7ed-c150-4177-9dbb-d41169e8b9c7-0_0-163-0_20230922203209630.parquet 9996 a9993 [[9993], [3331], [9993, 8993, null]] {"k9993":[1, null, 9], "k2":[], "k3":null, "k4":[null, 9]} {"col1": "2012-02-02 18:20:42.000000", "col2": [10002, 9993, null]} -20230922204306289 20230922204306289_0_542 9995 8b83d7ed-c150-4177-9dbb-d41169e8b9c7-0 9995 a9992-1 [[9992], [3330], [9992, 8992, null]] {"k3":null, "k4":[null, 9], "k9992":[1, null, 9], "k2":[]} {"col1": "2012-02-02 17:19:41.000000", "col2": [10001, 9992, null]} -20230922203209630 20230922203209630_0_9992 9994 8b83d7ed-c150-4177-9dbb-d41169e8b9c7-0_0-163-0_20230922203209630.parquet 9994 a9991 [[9991], [3330], [9991, 8991, null]] {"k9991":[1, null, 9], "k2":[], "k3":null, "k4":[null, 9]} {"col1": "2012-02-02 16:18:40.000000", "col2": [10000, 9991, null]} -20230922203209630 20230922203209630_0_9991 9993 8b83d7ed-c150-4177-9dbb-d41169e8b9c7-0_0-163-0_20230922203209630.parquet 9993 a9990 [null, [], [9990, 8990, null]] {"k9990":[1, null, 9], "k2":[], "k3":null, "k4":[null, 9]} {"col1": "2012-02-02 15:17:39.000000", "col2": [9999, null, null]} -20230922203209630 20230922203209630_0_1000 1002 8b83d7ed-c150-4177-9dbb-d41169e8b9c7-0_0-163-0_20230922203209630.parquet 1002 a999 [[999], [333], [999, -1, null]] {"k999":[1, null, 9], "k2":[], "k3":null, "k4":[null, 9]} {"col1": "2012-02-02 14:32:13.000000", "col2": [1008, 999, null]} -20230922203209630 20230922203209630_0_9990 9992 8b83d7ed-c150-4177-9dbb-d41169e8b9c7-0_0-163-0_20230922203209630.parquet 9992 a9989 [[9989], [3329], [9989, 8989, null]] {"k9989":[1, null, 9], "k2":[], "k3":null, "k4":[null, 9]} {"col1": "2012-02-02 14:16:38.000000", "col2": [9998, 9989, null]} -20230922203209630 20230922203209630_0_9989 9991 8b83d7ed-c150-4177-9dbb-d41169e8b9c7-0_0-163-0_20230922203209630.parquet 9991 a9988 [[9988], [3329], [9988, 8988, null]] {"k9988":[1, null, 9], "k2":[], "k3":null, "k4":[null, 9]} {"col1": "2012-02-02 13:15:37.000000", "col2": [9997, 9988, null]} -20230922203209630 20230922203209630_0_9988 9990 8b83d7ed-c150-4177-9dbb-d41169e8b9c7-0_0-163-0_20230922203209630.parquet 9990 a9987 [[9987], [3329], [9987, 8987, null]] {"k9987":[1, null, 9], "k2":[], "k3":null, "k4":[null, 9]} {"col1": "2012-02-02 12:14:36.000000", "col2": [9996, 9987, null]} -20230922203209630 20230922203209630_0_9987 9989 8b83d7ed-c150-4177-9dbb-d41169e8b9c7-0_0-163-0_20230922203209630.parquet 9989 a9986 [[9986], [3328], [9986, 8986, null]] {"k9986":[1, null, 9], "k2":[], "k3":null, "k4":[null, 9]} {"col1": "2012-02-02 11:13:35.000000", "col2": [9995, 9986, null]} -20230922203209630 20230922203209630_0_9986 9988 8b83d7ed-c150-4177-9dbb-d41169e8b9c7-0_0-163-0_20230922203209630.parquet 9988 a9985 [[9985], [], [9985, 8985, null]] {"k9985":[1, null, 9], "k2":[], "k3":null, "k4":[null, 9]} {"col1": "2012-02-02 10:12:34.000000", "col2": [9994, 9985, null]} -20230922203209630 20230922203209630_0_9985 9987 8b83d7ed-c150-4177-9dbb-d41169e8b9c7-0_0-163-0_20230922203209630.parquet 9987 a9984 [[9984], [3328], [9984, 8984, null]] {"k9984":[1, null, 9], "k2":[], "k3":null, "k4":[null, 9]} {"col1": "2012-02-02 09:11:33.000000", "col2": [9993, 9984, null]} -20230922203209630 20230922203209630_0_9984 9986 8b83d7ed-c150-4177-9dbb-d41169e8b9c7-0_0-163-0_20230922203209630.parquet 9986 a9983 [[9983], [3327], [9983, 8983, null]] {"k9983":[1, null, 9], "k2":[], "k3":null, "k4":[null, 9]} {"col1": "2012-02-02 08:10:32.000000", "col2": [9992, 9983, null]} -20230922204306289 20230922204306289_0_32 9985 8b83d7ed-c150-4177-9dbb-d41169e8b9c7-0 9985 a9982-1 [[9982], [3327], [9982, 8982, null]] {"k3":null, "k4":[null, 9], "k9982":[1, null, 9], "k2":[]} {"col1": "2012-02-02 07:09:31.000000", "col2": [9991, 9982, null]} -20230922203209630 20230922203209630_0_9982 9984 8b83d7ed-c150-4177-9dbb-d41169e8b9c7-0_0-163-0_20230922203209630.parquet 9984 a9981 [[9981], [3327], [9981, 8981, null]] {"k9981":[1, null, 9], "k2":[], "k3":null, "k4":[null, 9]} {"col1": "2012-02-02 06:08:30.000000", "col2": [9990, 9981, null]} -20230922203209630 20230922203209630_0_9981 9983 8b83d7ed-c150-4177-9dbb-d41169e8b9c7-0_0-163-0_20230922203209630.parquet 9983 a9980 [null, [], [9980, 8980, null]] {"k9980":[1, null, 9], "k2":[], "k3":null, "k4":[null, 9]} {"col1": "2012-02-02 05:07:29.000000", "col2": [9989, null, null]} -20230922203209630 20230922203209630_0_999 1001 8b83d7ed-c150-4177-9dbb-d41169e8b9c7-0_0-163-0_20230922203209630.parquet 1001 a998 [[998], [332], [998, -2, null]] {"k998":[1, null, 9], "k2":[], "k3":null, "k4":[null, 9]} {"col1": "2012-02-02 13:31:12.000000", "col2": [1007, 998, null]} -20230922203209630 20230922203209630_0_9980 9982 8b83d7ed-c150-4177-9dbb-d41169e8b9c7-0_0-163-0_20230922203209630.parquet 9982 a9979 [[9979], [3326], [9979, 8979, null]] {"k9979":[1, null, 9], "k2":[], "k3":null, "k4":[null, 9]} {"col1": "2012-02-02 04:06:28.000000", "col2": [9988, 9979, null]} -20230922203209630 20230922203209630_0_9979 9981 8b83d7ed-c150-4177-9dbb-d41169e8b9c7-0_0-163-0_20230922203209630.parquet 9981 a9978 [[9978], [3326], [9978, 8978, null]] {"k9978":[1, null, 9], "k2":[], "k3":null, "k4":[null, 9]} {"col1": "2012-02-02 03:05:27.000000", "col2": [9987, 9978, null]} -20230922203209630 20230922203209630_0_9978 9980 8b83d7ed-c150-4177-9dbb-d41169e8b9c7-0_0-163-0_20230922203209630.parquet 9980 a9977 [[9977], [3325], [9977, 8977, null]] {"k9977":[1, null, 9], "k2":[], "k3":null, "k4":[null, 9]} {"col1": "2012-02-02 02:04:26.000000", "col2": [9986, 9977, null]} -20230922203209630 20230922203209630_0_9977 9979 8b83d7ed-c150-4177-9dbb-d41169e8b9c7-0_0-163-0_20230922203209630.parquet 9979 a9976 [[9976], [3325], [9976, 8976, null]] {"k9976":[1, null, 9], "k2":[], "k3":null, "k4":[null, 9]} {"col1": "2012-02-02 01:03:25.000000", "col2": [9985, 9976, null]} -20230922203209630 20230922203209630_0_9976 9978 8b83d7ed-c150-4177-9dbb-d41169e8b9c7-0_0-163-0_20230922203209630.parquet 9978 a9975 [[9975], [], [9975, 8975, null]] {"k9975":[1, null, 9], "k2":[], "k3":null, "k4":[null, 9]} {"col1": "2012-02-04 10:02:24.000000", "col2": [9984, 9975, null]} -20230922203209630 20230922203209630_0_9975 9977 8b83d7ed-c150-4177-9dbb-d41169e8b9c7-0_0-163-0_20230922203209630.parquet 9977 a9974 [[9974], [3324], [9974, 8974, null]] {"k9974":[1, null, 9], "k2":[], "k3":null, "k4":[null, 9]} {"col1": "2012-02-04 09:58:23.000000", "col2": [9983, 9974, null]} -20230922203209630 20230922203209630_0_9974 9976 8b83d7ed-c150-4177-9dbb-d41169e8b9c7-0_0-163-0_20230922203209630.parquet 9976 a9973 [[9973], [3324], [9973, 8973, null]] {"k9973":[1, null, 9], "k2":[], "k3":null, "k4":[null, 9]} {"col1": "2012-02-04 08:57:22.000000", "col2": [9982, 9973, null]} -20230922204306289 20230922204306289_0_939 9975 8b83d7ed-c150-4177-9dbb-d41169e8b9c7-0 9975 a9972-1 [[9972], [3324], [9972, 8972, null]] {"k9972":[1, null, 9], "k3":null, "k4":[null, 9], "k2":[]} {"col1": "2012-02-04 07:56:21.000000", "col2": [9981, 9972, null]} -20230922203209630 20230922203209630_0_9972 9974 8b83d7ed-c150-4177-9dbb-d41169e8b9c7-0_0-163-0_20230922203209630.parquet 9974 a9971 [[9971], [3323], [9971, 8971, null]] {"k9971":[1, null, 9], "k2":[], "k3":null, "k4":[null, 9]} {"col1": "2012-02-04 06:55:20.000000", "col2": [9980, 9971, null]} -20230922203209630 20230922203209630_0_9971 9973 8b83d7ed-c150-4177-9dbb-d41169e8b9c7-0_0-163-0_20230922203209630.parquet 9973 a9970 [null, [], [9970, 8970, null]] {"k9970":[1, null, 9], "k2":[], "k3":null, "k4":[null, 9]} {"col1": "2012-02-04 05:54:19.000000", "col2": [9979, null, null]} -20230922203209630 20230922203209630_0_998 1000 8b83d7ed-c150-4177-9dbb-d41169e8b9c7-0_0-163-0_20230922203209630.parquet 1000 a997 [[997], [332], [997, -3, null]] {"k997":[1, null, 9], "k2":[], "k3":null, "k4":[null, 9]} {"col1": "2012-02-02 12:30:11.000000", "col2": [1006, 997, null]} -20230922203209630 20230922203209630_0_9970 9972 8b83d7ed-c150-4177-9dbb-d41169e8b9c7-0_0-163-0_20230922203209630.parquet 9972 a9969 [[9969], [3323], [9969, 8969, null]] {"k9969":[1, null, 9], "k2":[], "k3":null, "k4":[null, 9]} {"col1": "2012-02-04 04:53:18.000000", "col2": [9978, 9969, null]} -20230922203209630 20230922203209630_0_9969 9971 8b83d7ed-c150-4177-9dbb-d41169e8b9c7-0_0-163-0_20230922203209630.parquet 9971 a9968 [[9968], [3322], [9968, 8968, null]] {"k9968":[1, null, 9], "k2":[], "k3":null, "k4":[null, 9]} {"col1": "2012-02-04 03:52:17.000000", "col2": [9977, 9968, null]} -20230922203209630 20230922203209630_0_9968 9970 8b83d7ed-c150-4177-9dbb-d41169e8b9c7-0_0-163-0_20230922203209630.parquet 9970 a9967 [[9967], [3322], [9967, 8967, null]] {"k9967":[1, null, 9], "k2":[], "k3":null, "k4":[null, 9]} {"col1": "2012-02-04 02:51:16.000000", "col2": [9976, 9967, null]} -20230922203209630 20230922203209630_0_9967 9969 8b83d7ed-c150-4177-9dbb-d41169e8b9c7-0_0-163-0_20230922203209630.parquet 9969 a9966 [[9966], [3322], [9966, 8966, null]] {"k9966":[1, null, 9], "k2":[], "k3":null, "k4":[null, 9]} {"col1": "2012-02-04 01:50:15.000000", "col2": [9975, 9966, null]} -20230922203209630 20230922203209630_0_9966 9968 8b83d7ed-c150-4177-9dbb-d41169e8b9c7-0_0-163-0_20230922203209630.parquet 9968 a9965 [[9965], [], [9965, 8965, null]] {"k9965":[1, null, 9], "k2":[], "k3":null, "k4":[null, 9]} {"col1": "2012-02-04 00:49:14.000000", "col2": [9974, 9965, null]} -20230922203209630 20230922203209630_0_9965 9967 8b83d7ed-c150-4177-9dbb-d41169e8b9c7-0_0-163-0_20230922203209630.parquet 9967 a9964 [[9964], [3321], [9964, 8964, null]] {"k9964":[1, null, 9], "k2":[], "k3":null, "k4":[null, 9]} {"col1": "2012-02-03 23:48:13.000000", "col2": [9973, 9964, null]} -20230922203209630 20230922203209630_0_9964 9966 8b83d7ed-c150-4177-9dbb-d41169e8b9c7-0_0-163-0_20230922203209630.parquet 9966 a9963 [[9963], [3321], [9963, 8963, null]] {"k9963":[1, null, 9], "k2":[], "k3":null, "k4":[null, 9]} {"col1": "2012-02-03 22:47:12.000000", "col2": [9972, 9963, null]} -20230922204306289 20230922204306289_0_173 9965 8b83d7ed-c150-4177-9dbb-d41169e8b9c7-0 9965 a9962-1 [[9962], [3320], [9962, 8962, null]] {"k3":null, "k9962":[1, null, 9], "k4":[null, 9], "k2":[]} {"col1": "2012-02-03 21:46:11.000000", "col2": [9971, 9962, null]} -20230922203209630 20230922203209630_0_9962 9964 8b83d7ed-c150-4177-9dbb-d41169e8b9c7-0_0-163-0_20230922203209630.parquet 9964 a9961 [[9961], [3320], [9961, 8961, null]] {"k9961":[1, null, 9], "k2":[], "k3":null, "k4":[null, 9]} {"col1": "2012-02-03 20:45:10.000000", "col2": [9970, 9961, null]} -20230922203209630 20230922203209630_0_9961 9963 8b83d7ed-c150-4177-9dbb-d41169e8b9c7-0_0-163-0_20230922203209630.parquet 9963 a9960 [null, [], [9960, 8960, null]] {"k9960":[1, null, 9], "k2":[], "k3":null, "k4":[null, 9]} {"col1": "2012-02-03 19:44:09.000000", "col2": [9969, null, null]} -20230922203209630 20230922203209630_0_997 999 8b83d7ed-c150-4177-9dbb-d41169e8b9c7-0_0-163-0_20230922203209630.parquet 999 a996 [[996], [332], [996, -4, null]] {"k996":[1, null, 9], "k2":[], "k3":null, "k4":[null, 9]} {"col1": "2012-02-02 11:29:10.000000", "col2": [1005, 996, null]} -20230922203209630 20230922203209630_0_9960 9962 8b83d7ed-c150-4177-9dbb-d41169e8b9c7-0_0-163-0_20230922203209630.parquet 9962 a9959 [[9959], [3319], [9959, 8959, null]] {"k9959":[1, null, 9], "k2":[], "k3":null, "k4":[null, 9]} {"col1": "2012-02-03 18:43:08.000000", "col2": [9968, 9959, null]} -20230922203209630 20230922203209630_0_9959 9961 8b83d7ed-c150-4177-9dbb-d41169e8b9c7-0_0-163-0_20230922203209630.parquet 9961 a9958 [[9958], [3319], [9958, 8958, null]] {"k9958":[1, null, 9], "k2":[], "k3":null, "k4":[null, 9]} {"col1": "2012-02-03 17:42:07.000000", "col2": [9967, 9958, null]} -20230922203209630 20230922203209630_0_9958 9960 8b83d7ed-c150-4177-9dbb-d41169e8b9c7-0_0-163-0_20230922203209630.parquet 9960 a9957 [[9957], [3319], [9957, 8957, null]] {"k9957":[1, null, 9], "k2":[], "k3":null, "k4":[null, 9]} {"col1": "2012-02-03 16:41:06.000000", "col2": [9966, 9957, null]} -20230922203209630 20230922203209630_0_9957 9959 8b83d7ed-c150-4177-9dbb-d41169e8b9c7-0_0-163-0_20230922203209630.parquet 9959 a9956 [[9956], [3318], [9956, 8956, null]] {"k9956":[1, null, 9], "k2":[], "k3":null, "k4":[null, 9]} {"col1": "2012-02-03 15:40:05.000000", "col2": [9965, 9956, null]} -20230922203209630 20230922203209630_0_9956 9958 8b83d7ed-c150-4177-9dbb-d41169e8b9c7-0_0-163-0_20230922203209630.parquet 9958 a9955 [[9955], [], [9955, 8955, null]] {"k9955":[1, null, 9], "k2":[], "k3":null, "k4":[null, 9]} {"col1": "2012-02-03 14:39:04.000000", "col2": [9964, 9955, null]} -20230922203209630 20230922203209630_0_9955 9957 8b83d7ed-c150-4177-9dbb-d41169e8b9c7-0_0-163-0_20230922203209630.parquet 9957 a9954 [[9954], [3318], [9954, 8954, null]] {"k9954":[1, null, 9], "k2":[], "k3":null, "k4":[null, 9]} {"col1": "2012-02-03 13:38:58.000000", "col2": [9963, 9954, null]} -20230922203209630 20230922203209630_0_9954 9956 8b83d7ed-c150-4177-9dbb-d41169e8b9c7-0_0-163-0_20230922203209630.parquet 9956 a9953 [[9953], [3317], [9953, 8953, null]] {"k9953":[1, null, 9], "k2":[], "k3":null, "k4":[null, 9]} {"col1": "2012-02-03 12:37:57.000000", "col2": [9962, 9953, null]} -20230922204306289 20230922204306289_0_665 9955 8b83d7ed-c150-4177-9dbb-d41169e8b9c7-0 9955 a9952-1 [[9952], [3317], [9952, 8952, null]] {"k3":null, "k4":[null, 9], "k9952":[1, null, 9], "k2":[]} {"col1": "2012-02-03 11:36:56.000000", "col2": [9961, 9952, null]} -20230922203209630 20230922203209630_0_9952 9954 8b83d7ed-c150-4177-9dbb-d41169e8b9c7-0_0-163-0_20230922203209630.parquet 9954 a9951 [[9951], [3317], [9951, 8951, null]] {"k9951":[1, null, 9], "k2":[], "k3":null, "k4":[null, 9]} {"col1": "2012-02-03 10:35:55.000000", "col2": [9960, 9951, null]} -20230922203209630 20230922203209630_0_9951 9953 8b83d7ed-c150-4177-9dbb-d41169e8b9c7-0_0-163-0_20230922203209630.parquet 9953 a9950 [null, [], [9950, 8950, null]] {"k9950":[1, null, 9], "k2":[], "k3":null, "k4":[null, 9]} {"col1": "2012-02-03 09:34:54.000000", "col2": [9959, null, null]} -20230922203209630 20230922203209630_0_996 998 8b83d7ed-c150-4177-9dbb-d41169e8b9c7-0_0-163-0_20230922203209630.parquet 998 a995 [[995], [], [995, -5, null]] {"k995":[1, null, 9], "k2":[], "k3":null, "k4":[null, 9]} {"col1": "2012-02-02 10:28:09.000000", "col2": [1004, 995, null]} -20230922203209630 20230922203209630_0_9950 9952 8b83d7ed-c150-4177-9dbb-d41169e8b9c7-0_0-163-0_20230922203209630.parquet 9952 a9949 [[9949], [3316], [9949, 8949, null]] {"k9949":[1, null, 9], "k2":[], "k3":null, "k4":[null, 9]} {"col1": "2012-02-03 08:33:53.000000", "col2": [9958, 9949, null]} -20230922203209630 20230922203209630_0_9949 9951 8b83d7ed-c150-4177-9dbb-d41169e8b9c7-0_0-163-0_20230922203209630.parquet 9951 a9948 [[9948], [3316], [9948, 8948, null]] {"k9948":[1, null, 9], "k2":[], "k3":null, "k4":[null, 9]} {"col1": "2012-02-03 07:32:52.000000", "col2": [9957, 9948, null]} -20230922203209630 20230922203209630_0_9948 9950 8b83d7ed-c150-4177-9dbb-d41169e8b9c7-0_0-163-0_20230922203209630.parquet 9950 a9947 [[9947], [3315], [9947, 8947, null]] {"k9947":[1, null, 9], "k2":[], "k3":null, "k4":[null, 9]} {"col1": "2012-02-03 06:31:51.000000", "col2": [9956, 9947, null]} -20230922203209630 20230922203209630_0_9947 9949 8b83d7ed-c150-4177-9dbb-d41169e8b9c7-0_0-163-0_20230922203209630.parquet 9949 a9946 [[9946], [3315], [9946, 8946, null]] {"k9946":[1, null, 9], "k2":[], "k3":null, "k4":[null, 9]} {"col1": "2012-02-03 05:30:50.000000", "col2": [9955, 9946, null]} -20230922203209630 20230922203209630_0_9946 9948 8b83d7ed-c150-4177-9dbb-d41169e8b9c7-0_0-163-0_20230922203209630.parquet 9948 a9945 [[9945], [], [9945, 8945, null]] {"k9945":[1, null, 9], "k2":[], "k3":null, "k4":[null, 9]} {"col1": "2012-02-03 04:29:49.000000", "col2": [9954, 9945, null]} -20230922203209630 20230922203209630_0_9945 9947 8b83d7ed-c150-4177-9dbb-d41169e8b9c7-0_0-163-0_20230922203209630.parquet 9947 a9944 [[9944], [3314], [9944, 8944, null]] {"k9944":[1, null, 9], "k2":[], "k3":null, "k4":[null, 9]} {"col1": "2012-02-03 03:28:48.000000", "col2": [9953, 9944, null]} -20230922203209630 20230922203209630_0_9944 9946 8b83d7ed-c150-4177-9dbb-d41169e8b9c7-0_0-163-0_20230922203209630.parquet 9946 a9943 [[9943], [3314], [9943, 8943, null]] {"k9943":[1, null, 9], "k2":[], "k3":null, "k4":[null, 9]} {"col1": "2012-02-03 02:27:47.000000", "col2": [9952, 9943, null]} -20230922204306289 20230922204306289_0_53 9945 8b83d7ed-c150-4177-9dbb-d41169e8b9c7-0 9945 a9942-1 [[9942], [3314], [9942, 8942, null]] {"k3":null, "k4":[null, 9], "k9942":[1, null, 9], "k2":[]} {"col1": "2012-02-03 01:26:46.000000", "col2": [9951, 9942, null]} -20230922203209630 20230922203209630_0_9942 9944 8b83d7ed-c150-4177-9dbb-d41169e8b9c7-0_0-163-0_20230922203209630.parquet 9944 a9941 [[9941], [3313], [9941, 8941, null]] {"k9941":[1, null, 9], "k2":[], "k3":null, "k4":[null, 9]} {"col1": "2012-02-03 00:25:45.000000", "col2": [9950, 9941, null]} -20230922203209630 20230922203209630_0_9941 9943 8b83d7ed-c150-4177-9dbb-d41169e8b9c7-0_0-163-0_20230922203209630.parquet 9943 a9940 [null, [], [9940, 8940, null]] {"k9940":[1, null, 9], "k2":[], "k3":null, "k4":[null, 9]} {"col1": "2012-02-02 23:24:44.000000", "col2": [9949, null, null]} -20230922203209630 20230922203209630_0_995 997 8b83d7ed-c150-4177-9dbb-d41169e8b9c7-0_0-163-0_20230922203209630.parquet 997 a994 [[994], [331], [994, -6, null]] {"k994":[1, null, 9], "k2":[], "k3":null, "k4":[null, 9]} {"col1": "2012-02-02 09:27:08.000000", "col2": [1003, 994, null]} -20230922203209630 20230922203209630_0_9940 9942 8b83d7ed-c150-4177-9dbb-d41169e8b9c7-0_0-163-0_20230922203209630.parquet 9942 a9939 [[9939], [3313], [9939, 8939, null]] {"k9939":[1, null, 9], "k2":[], "k3":null, "k4":[null, 9]} {"col1": "2012-02-02 22:23:43.000000", "col2": [9948, 9939, null]} -20230922203209630 20230922203209630_0_9939 9941 8b83d7ed-c150-4177-9dbb-d41169e8b9c7-0_0-163-0_20230922203209630.parquet 9941 a9938 [[9938], [3312], [9938, 8938, null]] {"k9938":[1, null, 9], "k2":[], "k3":null, "k4":[null, 9]} {"col1": "2012-02-02 21:22:42.000000", "col2": [9947, 9938, null]} -20230922203209630 20230922203209630_0_9938 9940 8b83d7ed-c150-4177-9dbb-d41169e8b9c7-0_0-163-0_20230922203209630.parquet 9940 a9937 [[9937], [3312], [9937, 8937, null]] {"k9937":[1, null, 9], "k2":[], "k3":null, "k4":[null, 9]} {"col1": "2012-02-02 20:21:41.000000", "col2": [9946, 9937, null]} -20230922203209630 20230922203209630_0_9937 9939 8b83d7ed-c150-4177-9dbb-d41169e8b9c7-0_0-163-0_20230922203209630.parquet 9939 a9936 [[9936], [3312], [9936, 8936, null]] {"k9936":[1, null, 9], "k2":[], "k3":null, "k4":[null, 9]} {"col1": "2012-02-02 19:20:40.000000", "col2": [9945, 9936, null]} -20230922203209630 20230922203209630_0_9936 9938 8b83d7ed-c150-4177-9dbb-d41169e8b9c7-0_0-163-0_20230922203209630.parquet 9938 a9935 [[9935], [], [9935, 8935, null]] {"k9935":[1, null, 9], "k2":[], "k3":null, "k4":[null, 9]} {"col1": "2012-02-02 18:19:39.000000", "col2": [9944, 9935, null]} -20230922203209630 20230922203209630_0_9935 9937 8b83d7ed-c150-4177-9dbb-d41169e8b9c7-0_0-163-0_20230922203209630.parquet 9937 a9934 [[9934], [3311], [9934, 8934, null]] {"k9934":[1, null, 9], "k2":[], "k3":null, "k4":[null, 9]} {"col1": "2012-02-02 17:18:38.000000", "col2": [9943, 9934, null]} -20230922203209630 20230922203209630_0_9934 9936 8b83d7ed-c150-4177-9dbb-d41169e8b9c7-0_0-163-0_20230922203209630.parquet 9936 a9933 [[9933], [3311], [9933, 8933, null]] {"k9933":[1, null, 9], "k2":[], "k3":null, "k4":[null, 9]} {"col1": "2012-02-02 16:17:37.000000", "col2": [9942, 9933, null]} -20230922204306289 20230922204306289_0_991 9935 8b83d7ed-c150-4177-9dbb-d41169e8b9c7-0 9935 a9932-1 [[9932], [3310], [9932, 8932, null]] {"k3":null, "k4":[null, 9], "k9932":[1, null, 9], "k2":[]} {"col1": "2012-02-02 15:16:36.000000", "col2": [9941, 9932, null]} -20230922203209630 20230922203209630_0_9932 9934 8b83d7ed-c150-4177-9dbb-d41169e8b9c7-0_0-163-0_20230922203209630.parquet 9934 a9931 [[9931], [3310], [9931, 8931, null]] {"k9931":[1, null, 9], "k2":[], "k3":null, "k4":[null, 9]} {"col1": "2012-02-02 14:15:35.000000", "col2": [9940, 9931, null]} -20230922203209630 20230922203209630_0_9931 9933 8b83d7ed-c150-4177-9dbb-d41169e8b9c7-0_0-163-0_20230922203209630.parquet 9933 a9930 [null, [], [9930, 8930, null]] {"k9930":[1, null, 9], "k2":[], "k3":null, "k4":[null, 9]} {"col1": "2012-02-02 13:14:34.000000", "col2": [9939, null, null]} -20230922203209630 20230922203209630_0_994 996 8b83d7ed-c150-4177-9dbb-d41169e8b9c7-0_0-163-0_20230922203209630.parquet 996 a993 [[993], [331], [993, -7, null]] {"k993":[1, null, 9], "k2":[], "k3":null, "k4":[null, 9]} {"col1": "2012-02-02 08:26:07.000000", "col2": [1002, 993, null]} -20230922203209630 20230922203209630_0_9930 9932 8b83d7ed-c150-4177-9dbb-d41169e8b9c7-0_0-163-0_20230922203209630.parquet 9932 a9929 [[9929], [3309], [9929, 8929, null]] {"k9929":[1, null, 9], "k2":[], "k3":null, "k4":[null, 9]} {"col1": "2012-02-02 12:13:33.000000", "col2": [9938, 9929, null]} -20230922203209630 20230922203209630_0_9929 9931 8b83d7ed-c150-4177-9dbb-d41169e8b9c7-0_0-163-0_20230922203209630.parquet 9931 a9928 [[9928], [3309], [9928, 8928, null]] {"k9928":[1, null, 9], "k2":[], "k3":null, "k4":[null, 9]} {"col1": "2012-02-02 11:12:32.000000", "col2": [9937, 9928, null]} -20230922203209630 20230922203209630_0_9928 9930 8b83d7ed-c150-4177-9dbb-d41169e8b9c7-0_0-163-0_20230922203209630.parquet 9930 a9927 [[9927], [3309], [9927, 8927, null]] {"k9927":[1, null, 9], "k2":[], "k3":null, "k4":[null, 9]} {"col1": "2012-02-02 10:11:31.000000", "col2": [9936, 9927, null]} -20230922203209630 20230922203209630_0_9927 9929 8b83d7ed-c150-4177-9dbb-d41169e8b9c7-0_0-163-0_20230922203209630.parquet 9929 a9926 [[9926], [3308], [9926, 8926, null]] {"k9926":[1, null, 9], "k2":[], "k3":null, "k4":[null, 9]} {"col1": "2012-02-02 09:10:30.000000", "col2": [9935, 9926, null]} -20230922203209630 20230922203209630_0_9926 9928 8b83d7ed-c150-4177-9dbb-d41169e8b9c7-0_0-163-0_20230922203209630.parquet 9928 a9925 [[9925], [], [9925, 8925, null]] {"k9925":[1, null, 9], "k2":[], "k3":null, "k4":[null, 9]} {"col1": "2012-02-02 08:09:29.000000", "col2": [9934, 9925, null]} -20230922203209630 20230922203209630_0_9925 9927 8b83d7ed-c150-4177-9dbb-d41169e8b9c7-0_0-163-0_20230922203209630.parquet 9927 a9924 [[9924], [3308], [9924, 8924, null]] {"k9924":[1, null, 9], "k2":[], "k3":null, "k4":[null, 9]} {"col1": "2012-02-02 07:08:28.000000", "col2": [9933, 9924, null]} -20230922203209630 20230922203209630_0_9924 9926 8b83d7ed-c150-4177-9dbb-d41169e8b9c7-0_0-163-0_20230922203209630.parquet 9926 a9923 [[9923], [3307], [9923, 8923, null]] {"k9923":[1, null, 9], "k2":[], "k3":null, "k4":[null, 9]} {"col1": "2012-02-02 06:07:27.000000", "col2": [9932, 9923, null]} -20230922204306289 20230922204306289_0_778 9925 8b83d7ed-c150-4177-9dbb-d41169e8b9c7-0 9925 a9922-1 [[9922], [3307], [9922, 8922, null]] {"k3":null, "k4":[null, 9], "k9922":[1, null, 9], "k2":[]} {"col1": "2012-02-02 05:06:26.000000", "col2": [9931, 9922, null]} -20230922203209630 20230922203209630_0_9922 9924 8b83d7ed-c150-4177-9dbb-d41169e8b9c7-0_0-163-0_20230922203209630.parquet 9924 a9921 [[9921], [3307], [9921, 8921, null]] {"k9921":[1, null, 9], "k2":[], "k3":null, "k4":[null, 9]} {"col1": "2012-02-02 04:05:25.000000", "col2": [9930, 9921, null]} -20230922203209630 20230922203209630_0_9921 9923 8b83d7ed-c150-4177-9dbb-d41169e8b9c7-0_0-163-0_20230922203209630.parquet 9923 a9920 [null, [], [9920, 8920, null]] {"k9920":[1, null, 9], "k2":[], "k3":null, "k4":[null, 9]} {"col1": "2012-02-02 03:04:24.000000", "col2": [9929, null, null]} -20230922204306289 20230922204306289_0_100 995 8b83d7ed-c150-4177-9dbb-d41169e8b9c7-0 995 a992-1 [[992], [330], [992, -8, null]] {"k3":null, "k4":[null, 9], "k992":[1, null, 9], "k2":[]} {"col1": "2012-02-02 07:25:06.000000", "col2": [1001, 992, null]} -20230922203209630 20230922203209630_0_9920 9922 8b83d7ed-c150-4177-9dbb-d41169e8b9c7-0_0-163-0_20230922203209630.parquet 9922 a9919 [[9919], [3306], [9919, 8919, null]] {"k9919":[1, null, 9], "k2":[], "k3":null, "k4":[null, 9]} {"col1": "2012-02-02 02:03:23.000000", "col2": [9928, 9919, null]} -20230922203209630 20230922203209630_0_9919 9921 8b83d7ed-c150-4177-9dbb-d41169e8b9c7-0_0-163-0_20230922203209630.parquet 9921 a9918 [[9918], [3306], [9918, 8918, null]] {"k9918":[1, null, 9], "k2":[], "k3":null, "k4":[null, 9]} {"col1": "2012-02-02 01:02:22.000000", "col2": [9927, 9918, null]} -20230922203209630 20230922203209630_0_9918 9920 8b83d7ed-c150-4177-9dbb-d41169e8b9c7-0_0-163-0_20230922203209630.parquet 9920 a9917 [[9917], [3305], [9917, 8917, null]] {"k9917":[1, null, 9], "k2":[], "k3":null, "k4":[null, 9]} {"col1": "2012-02-04 10:58:21.000000", "col2": [9926, 9917, null]} -20230922203209630 20230922203209630_0_9917 9919 8b83d7ed-c150-4177-9dbb-d41169e8b9c7-0_0-163-0_20230922203209630.parquet 9919 a9916 [[9916], [3305], [9916, 8916, null]] {"k9916":[1, null, 9], "k2":[], "k3":null, "k4":[null, 9]} {"col1": "2012-02-04 09:57:20.000000", "col2": [9925, 9916, null]} -20230922203209630 20230922203209630_0_9916 9918 8b83d7ed-c150-4177-9dbb-d41169e8b9c7-0_0-163-0_20230922203209630.parquet 9918 a9915 [[9915], [], [9915, 8915, null]] {"k9915":[1, null, 9], "k2":[], "k3":null, "k4":[null, 9]} {"col1": "2012-02-04 08:56:19.000000", "col2": [9924, 9915, null]} -20230922203209630 20230922203209630_0_9915 9917 8b83d7ed-c150-4177-9dbb-d41169e8b9c7-0_0-163-0_20230922203209630.parquet 9917 a9914 [[9914], [3304], [9914, 8914, null]] {"k9914":[1, null, 9], "k2":[], "k3":null, "k4":[null, 9]} {"col1": "2012-02-04 07:55:18.000000", "col2": [9923, 9914, null]} -20230922203209630 20230922203209630_0_9914 9916 8b83d7ed-c150-4177-9dbb-d41169e8b9c7-0_0-163-0_20230922203209630.parquet 9916 a9913 [[9913], [3304], [9913, 8913, null]] {"k9913":[1, null, 9], "k2":[], "k3":null, "k4":[null, 9]} {"col1": "2012-02-04 06:54:17.000000", "col2": [9922, 9913, null]} -20230922204306289 20230922204306289_0_750 9915 8b83d7ed-c150-4177-9dbb-d41169e8b9c7-0 9915 a9912-1 [[9912], [3304], [9912, 8912, null]] {"k3":null, "k4":[null, 9], "k9912":[1, null, 9], "k2":[]} {"col1": "2012-02-04 05:53:16.000000", "col2": [9921, 9912, null]} -20230922203209630 20230922203209630_0_9912 9914 8b83d7ed-c150-4177-9dbb-d41169e8b9c7-0_0-163-0_20230922203209630.parquet 9914 a9911 [[9911], [3303], [9911, 8911, null]] {"k9911":[1, null, 9], "k2":[], "k3":null, "k4":[null, 9]} {"col1": "2012-02-04 04:52:15.000000", "col2": [9920, 9911, null]} -20230922203209630 20230922203209630_0_9911 9913 8b83d7ed-c150-4177-9dbb-d41169e8b9c7-0_0-163-0_20230922203209630.parquet 9913 a9910 [null, [], [9910, 8910, null]] {"k9910":[1, null, 9], "k2":[], "k3":null, "k4":[null, 9]} {"col1": "2012-02-04 03:51:14.000000", "col2": [9919, null, null]} -20230922203209630 20230922203209630_0_992 994 8b83d7ed-c150-4177-9dbb-d41169e8b9c7-0_0-163-0_20230922203209630.parquet 994 a991 [[991], [330], [991, -9, null]] {"k991":[1, null, 9], "k2":[], "k3":null, "k4":[null, 9]} {"col1": "2012-02-02 06:24:05.000000", "col2": [1000, 991, null]} -20230922203209630 20230922203209630_0_9910 9912 8b83d7ed-c150-4177-9dbb-d41169e8b9c7-0_0-163-0_20230922203209630.parquet 9912 a9909 [[9909], [3303], [9909, 8909, null]] {"k9909":[1, null, 9], "k2":[], "k3":null, "k4":[null, 9]} {"col1": "2012-02-04 02:50:13.000000", "col2": [9918, 9909, null]} +20230922203209630 20230922203209630_0_10000 10002 8b83d7ed-c150-4177-9dbb-d41169e8b9c7-0_0-163-0_20230922203209630.parquet 10002 a9999 [[9999], [3333], [9999, 8999, null]] {"k9999":[1, null, 9], "k2":[], "k3":null, "k4":[null, 9]} {"col1":"2012-02-03 00:26:48.000000", "col2":[10008, 9999, null]} +20230922203209630 20230922203209630_0_9999 10001 8b83d7ed-c150-4177-9dbb-d41169e8b9c7-0_0-163-0_20230922203209630.parquet 10001 a9998 [[9998], [3332], [9998, 8998, null]] {"k9998":[1, null, 9], "k2":[], "k3":null, "k4":[null, 9]} {"col1":"2012-02-02 23:25:47.000000", "col2":[10007, 9998, null]} +20230922203209630 20230922203209630_0_9998 10000 8b83d7ed-c150-4177-9dbb-d41169e8b9c7-0_0-163-0_20230922203209630.parquet 10000 a9997 [[9997], [3332], [9997, 8997, null]] {"k9997":[1, null, 9], "k2":[], "k3":null, "k4":[null, 9]} {"col1":"2012-02-02 22:24:46.000000", "col2":[10006, 9997, null]} +20230922203209630 20230922203209630_0_9997 9999 8b83d7ed-c150-4177-9dbb-d41169e8b9c7-0_0-163-0_20230922203209630.parquet 9999 a9996 [[9996], [3332], [9996, 8996, null]] {"k9996":[1, null, 9], "k2":[], "k3":null, "k4":[null, 9]} {"col1":"2012-02-02 21:23:45.000000", "col2":[10005, 9996, null]} +20230922203209630 20230922203209630_0_9996 9998 8b83d7ed-c150-4177-9dbb-d41169e8b9c7-0_0-163-0_20230922203209630.parquet 9998 a9995 [[9995], [], [9995, 8995, null]] {"k9995":[1, null, 9], "k2":[], "k3":null, "k4":[null, 9]} {"col1":"2012-02-02 20:22:44.000000", "col2":[10004, 9995, null]} +20230922203209630 20230922203209630_0_9995 9997 8b83d7ed-c150-4177-9dbb-d41169e8b9c7-0_0-163-0_20230922203209630.parquet 9997 a9994 [[9994], [3331], [9994, 8994, null]] {"k9994":[1, null, 9], "k2":[], "k3":null, "k4":[null, 9]} {"col1":"2012-02-02 19:21:43.000000", "col2":[10003, 9994, null]} +20230922203209630 20230922203209630_0_9994 9996 8b83d7ed-c150-4177-9dbb-d41169e8b9c7-0_0-163-0_20230922203209630.parquet 9996 a9993 [[9993], [3331], [9993, 8993, null]] {"k9993":[1, null, 9], "k2":[], "k3":null, "k4":[null, 9]} {"col1":"2012-02-02 18:20:42.000000", "col2":[10002, 9993, null]} +20230922204306289 20230922204306289_0_542 9995 8b83d7ed-c150-4177-9dbb-d41169e8b9c7-0 9995 a9992-1 [[9992], [3330], [9992, 8992, null]] {"k3":null, "k4":[null, 9], "k9992":[1, null, 9], "k2":[]} {"col1":"2012-02-02 17:19:41.000000", "col2":[10001, 9992, null]} +20230922203209630 20230922203209630_0_9992 9994 8b83d7ed-c150-4177-9dbb-d41169e8b9c7-0_0-163-0_20230922203209630.parquet 9994 a9991 [[9991], [3330], [9991, 8991, null]] {"k9991":[1, null, 9], "k2":[], "k3":null, "k4":[null, 9]} {"col1":"2012-02-02 16:18:40.000000", "col2":[10000, 9991, null]} +20230922203209630 20230922203209630_0_9991 9993 8b83d7ed-c150-4177-9dbb-d41169e8b9c7-0_0-163-0_20230922203209630.parquet 9993 a9990 [null, [], [9990, 8990, null]] {"k9990":[1, null, 9], "k2":[], "k3":null, "k4":[null, 9]} {"col1":"2012-02-02 15:17:39.000000", "col2":[9999, null, null]} +20230922203209630 20230922203209630_0_1000 1002 8b83d7ed-c150-4177-9dbb-d41169e8b9c7-0_0-163-0_20230922203209630.parquet 1002 a999 [[999], [333], [999, -1, null]] {"k999":[1, null, 9], "k2":[], "k3":null, "k4":[null, 9]} {"col1":"2012-02-02 14:32:13.000000", "col2":[1008, 999, null]} +20230922203209630 20230922203209630_0_9990 9992 8b83d7ed-c150-4177-9dbb-d41169e8b9c7-0_0-163-0_20230922203209630.parquet 9992 a9989 [[9989], [3329], [9989, 8989, null]] {"k9989":[1, null, 9], "k2":[], "k3":null, "k4":[null, 9]} {"col1":"2012-02-02 14:16:38.000000", "col2":[9998, 9989, null]} +20230922203209630 20230922203209630_0_9989 9991 8b83d7ed-c150-4177-9dbb-d41169e8b9c7-0_0-163-0_20230922203209630.parquet 9991 a9988 [[9988], [3329], [9988, 8988, null]] {"k9988":[1, null, 9], "k2":[], "k3":null, "k4":[null, 9]} {"col1":"2012-02-02 13:15:37.000000", "col2":[9997, 9988, null]} +20230922203209630 20230922203209630_0_9988 9990 8b83d7ed-c150-4177-9dbb-d41169e8b9c7-0_0-163-0_20230922203209630.parquet 9990 a9987 [[9987], [3329], [9987, 8987, null]] {"k9987":[1, null, 9], "k2":[], "k3":null, "k4":[null, 9]} {"col1":"2012-02-02 12:14:36.000000", "col2":[9996, 9987, null]} +20230922203209630 20230922203209630_0_9987 9989 8b83d7ed-c150-4177-9dbb-d41169e8b9c7-0_0-163-0_20230922203209630.parquet 9989 a9986 [[9986], [3328], [9986, 8986, null]] {"k9986":[1, null, 9], "k2":[], "k3":null, "k4":[null, 9]} {"col1":"2012-02-02 11:13:35.000000", "col2":[9995, 9986, null]} +20230922203209630 20230922203209630_0_9986 9988 8b83d7ed-c150-4177-9dbb-d41169e8b9c7-0_0-163-0_20230922203209630.parquet 9988 a9985 [[9985], [], [9985, 8985, null]] {"k9985":[1, null, 9], "k2":[], "k3":null, "k4":[null, 9]} {"col1":"2012-02-02 10:12:34.000000", "col2":[9994, 9985, null]} +20230922203209630 20230922203209630_0_9985 9987 8b83d7ed-c150-4177-9dbb-d41169e8b9c7-0_0-163-0_20230922203209630.parquet 9987 a9984 [[9984], [3328], [9984, 8984, null]] {"k9984":[1, null, 9], "k2":[], "k3":null, "k4":[null, 9]} {"col1":"2012-02-02 09:11:33.000000", "col2":[9993, 9984, null]} +20230922203209630 20230922203209630_0_9984 9986 8b83d7ed-c150-4177-9dbb-d41169e8b9c7-0_0-163-0_20230922203209630.parquet 9986 a9983 [[9983], [3327], [9983, 8983, null]] {"k9983":[1, null, 9], "k2":[], "k3":null, "k4":[null, 9]} {"col1":"2012-02-02 08:10:32.000000", "col2":[9992, 9983, null]} +20230922204306289 20230922204306289_0_32 9985 8b83d7ed-c150-4177-9dbb-d41169e8b9c7-0 9985 a9982-1 [[9982], [3327], [9982, 8982, null]] {"k3":null, "k4":[null, 9], "k9982":[1, null, 9], "k2":[]} {"col1":"2012-02-02 07:09:31.000000", "col2":[9991, 9982, null]} +20230922203209630 20230922203209630_0_9982 9984 8b83d7ed-c150-4177-9dbb-d41169e8b9c7-0_0-163-0_20230922203209630.parquet 9984 a9981 [[9981], [3327], [9981, 8981, null]] {"k9981":[1, null, 9], "k2":[], "k3":null, "k4":[null, 9]} {"col1":"2012-02-02 06:08:30.000000", "col2":[9990, 9981, null]} +20230922203209630 20230922203209630_0_9981 9983 8b83d7ed-c150-4177-9dbb-d41169e8b9c7-0_0-163-0_20230922203209630.parquet 9983 a9980 [null, [], [9980, 8980, null]] {"k9980":[1, null, 9], "k2":[], "k3":null, "k4":[null, 9]} {"col1":"2012-02-02 05:07:29.000000", "col2":[9989, null, null]} +20230922203209630 20230922203209630_0_999 1001 8b83d7ed-c150-4177-9dbb-d41169e8b9c7-0_0-163-0_20230922203209630.parquet 1001 a998 [[998], [332], [998, -2, null]] {"k998":[1, null, 9], "k2":[], "k3":null, "k4":[null, 9]} {"col1":"2012-02-02 13:31:12.000000", "col2":[1007, 998, null]} +20230922203209630 20230922203209630_0_9980 9982 8b83d7ed-c150-4177-9dbb-d41169e8b9c7-0_0-163-0_20230922203209630.parquet 9982 a9979 [[9979], [3326], [9979, 8979, null]] {"k9979":[1, null, 9], "k2":[], "k3":null, "k4":[null, 9]} {"col1":"2012-02-02 04:06:28.000000", "col2":[9988, 9979, null]} +20230922203209630 20230922203209630_0_9979 9981 8b83d7ed-c150-4177-9dbb-d41169e8b9c7-0_0-163-0_20230922203209630.parquet 9981 a9978 [[9978], [3326], [9978, 8978, null]] {"k9978":[1, null, 9], "k2":[], "k3":null, "k4":[null, 9]} {"col1":"2012-02-02 03:05:27.000000", "col2":[9987, 9978, null]} +20230922203209630 20230922203209630_0_9978 9980 8b83d7ed-c150-4177-9dbb-d41169e8b9c7-0_0-163-0_20230922203209630.parquet 9980 a9977 [[9977], [3325], [9977, 8977, null]] {"k9977":[1, null, 9], "k2":[], "k3":null, "k4":[null, 9]} {"col1":"2012-02-02 02:04:26.000000", "col2":[9986, 9977, null]} +20230922203209630 20230922203209630_0_9977 9979 8b83d7ed-c150-4177-9dbb-d41169e8b9c7-0_0-163-0_20230922203209630.parquet 9979 a9976 [[9976], [3325], [9976, 8976, null]] {"k9976":[1, null, 9], "k2":[], "k3":null, "k4":[null, 9]} {"col1":"2012-02-02 01:03:25.000000", "col2":[9985, 9976, null]} +20230922203209630 20230922203209630_0_9976 9978 8b83d7ed-c150-4177-9dbb-d41169e8b9c7-0_0-163-0_20230922203209630.parquet 9978 a9975 [[9975], [], [9975, 8975, null]] {"k9975":[1, null, 9], "k2":[], "k3":null, "k4":[null, 9]} {"col1":"2012-02-04 10:02:24.000000", "col2":[9984, 9975, null]} +20230922203209630 20230922203209630_0_9975 9977 8b83d7ed-c150-4177-9dbb-d41169e8b9c7-0_0-163-0_20230922203209630.parquet 9977 a9974 [[9974], [3324], [9974, 8974, null]] {"k9974":[1, null, 9], "k2":[], "k3":null, "k4":[null, 9]} {"col1":"2012-02-04 09:58:23.000000", "col2":[9983, 9974, null]} +20230922203209630 20230922203209630_0_9974 9976 8b83d7ed-c150-4177-9dbb-d41169e8b9c7-0_0-163-0_20230922203209630.parquet 9976 a9973 [[9973], [3324], [9973, 8973, null]] {"k9973":[1, null, 9], "k2":[], "k3":null, "k4":[null, 9]} {"col1":"2012-02-04 08:57:22.000000", "col2":[9982, 9973, null]} +20230922204306289 20230922204306289_0_939 9975 8b83d7ed-c150-4177-9dbb-d41169e8b9c7-0 9975 a9972-1 [[9972], [3324], [9972, 8972, null]] {"k9972":[1, null, 9], "k3":null, "k4":[null, 9], "k2":[]} {"col1":"2012-02-04 07:56:21.000000", "col2":[9981, 9972, null]} +20230922203209630 20230922203209630_0_9972 9974 8b83d7ed-c150-4177-9dbb-d41169e8b9c7-0_0-163-0_20230922203209630.parquet 9974 a9971 [[9971], [3323], [9971, 8971, null]] {"k9971":[1, null, 9], "k2":[], "k3":null, "k4":[null, 9]} {"col1":"2012-02-04 06:55:20.000000", "col2":[9980, 9971, null]} +20230922203209630 20230922203209630_0_9971 9973 8b83d7ed-c150-4177-9dbb-d41169e8b9c7-0_0-163-0_20230922203209630.parquet 9973 a9970 [null, [], [9970, 8970, null]] {"k9970":[1, null, 9], "k2":[], "k3":null, "k4":[null, 9]} {"col1":"2012-02-04 05:54:19.000000", "col2":[9979, null, null]} +20230922203209630 20230922203209630_0_998 1000 8b83d7ed-c150-4177-9dbb-d41169e8b9c7-0_0-163-0_20230922203209630.parquet 1000 a997 [[997], [332], [997, -3, null]] {"k997":[1, null, 9], "k2":[], "k3":null, "k4":[null, 9]} {"col1":"2012-02-02 12:30:11.000000", "col2":[1006, 997, null]} +20230922203209630 20230922203209630_0_9970 9972 8b83d7ed-c150-4177-9dbb-d41169e8b9c7-0_0-163-0_20230922203209630.parquet 9972 a9969 [[9969], [3323], [9969, 8969, null]] {"k9969":[1, null, 9], "k2":[], "k3":null, "k4":[null, 9]} {"col1":"2012-02-04 04:53:18.000000", "col2":[9978, 9969, null]} +20230922203209630 20230922203209630_0_9969 9971 8b83d7ed-c150-4177-9dbb-d41169e8b9c7-0_0-163-0_20230922203209630.parquet 9971 a9968 [[9968], [3322], [9968, 8968, null]] {"k9968":[1, null, 9], "k2":[], "k3":null, "k4":[null, 9]} {"col1":"2012-02-04 03:52:17.000000", "col2":[9977, 9968, null]} +20230922203209630 20230922203209630_0_9968 9970 8b83d7ed-c150-4177-9dbb-d41169e8b9c7-0_0-163-0_20230922203209630.parquet 9970 a9967 [[9967], [3322], [9967, 8967, null]] {"k9967":[1, null, 9], "k2":[], "k3":null, "k4":[null, 9]} {"col1":"2012-02-04 02:51:16.000000", "col2":[9976, 9967, null]} +20230922203209630 20230922203209630_0_9967 9969 8b83d7ed-c150-4177-9dbb-d41169e8b9c7-0_0-163-0_20230922203209630.parquet 9969 a9966 [[9966], [3322], [9966, 8966, null]] {"k9966":[1, null, 9], "k2":[], "k3":null, "k4":[null, 9]} {"col1":"2012-02-04 01:50:15.000000", "col2":[9975, 9966, null]} +20230922203209630 20230922203209630_0_9966 9968 8b83d7ed-c150-4177-9dbb-d41169e8b9c7-0_0-163-0_20230922203209630.parquet 9968 a9965 [[9965], [], [9965, 8965, null]] {"k9965":[1, null, 9], "k2":[], "k3":null, "k4":[null, 9]} {"col1":"2012-02-04 00:49:14.000000", "col2":[9974, 9965, null]} +20230922203209630 20230922203209630_0_9965 9967 8b83d7ed-c150-4177-9dbb-d41169e8b9c7-0_0-163-0_20230922203209630.parquet 9967 a9964 [[9964], [3321], [9964, 8964, null]] {"k9964":[1, null, 9], "k2":[], "k3":null, "k4":[null, 9]} {"col1":"2012-02-03 23:48:13.000000", "col2":[9973, 9964, null]} +20230922203209630 20230922203209630_0_9964 9966 8b83d7ed-c150-4177-9dbb-d41169e8b9c7-0_0-163-0_20230922203209630.parquet 9966 a9963 [[9963], [3321], [9963, 8963, null]] {"k9963":[1, null, 9], "k2":[], "k3":null, "k4":[null, 9]} {"col1":"2012-02-03 22:47:12.000000", "col2":[9972, 9963, null]} +20230922204306289 20230922204306289_0_173 9965 8b83d7ed-c150-4177-9dbb-d41169e8b9c7-0 9965 a9962-1 [[9962], [3320], [9962, 8962, null]] {"k3":null, "k9962":[1, null, 9], "k4":[null, 9], "k2":[]} {"col1":"2012-02-03 21:46:11.000000", "col2":[9971, 9962, null]} +20230922203209630 20230922203209630_0_9962 9964 8b83d7ed-c150-4177-9dbb-d41169e8b9c7-0_0-163-0_20230922203209630.parquet 9964 a9961 [[9961], [3320], [9961, 8961, null]] {"k9961":[1, null, 9], "k2":[], "k3":null, "k4":[null, 9]} {"col1":"2012-02-03 20:45:10.000000", "col2":[9970, 9961, null]} +20230922203209630 20230922203209630_0_9961 9963 8b83d7ed-c150-4177-9dbb-d41169e8b9c7-0_0-163-0_20230922203209630.parquet 9963 a9960 [null, [], [9960, 8960, null]] {"k9960":[1, null, 9], "k2":[], "k3":null, "k4":[null, 9]} {"col1":"2012-02-03 19:44:09.000000", "col2":[9969, null, null]} +20230922203209630 20230922203209630_0_997 999 8b83d7ed-c150-4177-9dbb-d41169e8b9c7-0_0-163-0_20230922203209630.parquet 999 a996 [[996], [332], [996, -4, null]] {"k996":[1, null, 9], "k2":[], "k3":null, "k4":[null, 9]} {"col1":"2012-02-02 11:29:10.000000", "col2":[1005, 996, null]} +20230922203209630 20230922203209630_0_9960 9962 8b83d7ed-c150-4177-9dbb-d41169e8b9c7-0_0-163-0_20230922203209630.parquet 9962 a9959 [[9959], [3319], [9959, 8959, null]] {"k9959":[1, null, 9], "k2":[], "k3":null, "k4":[null, 9]} {"col1":"2012-02-03 18:43:08.000000", "col2":[9968, 9959, null]} +20230922203209630 20230922203209630_0_9959 9961 8b83d7ed-c150-4177-9dbb-d41169e8b9c7-0_0-163-0_20230922203209630.parquet 9961 a9958 [[9958], [3319], [9958, 8958, null]] {"k9958":[1, null, 9], "k2":[], "k3":null, "k4":[null, 9]} {"col1":"2012-02-03 17:42:07.000000", "col2":[9967, 9958, null]} +20230922203209630 20230922203209630_0_9958 9960 8b83d7ed-c150-4177-9dbb-d41169e8b9c7-0_0-163-0_20230922203209630.parquet 9960 a9957 [[9957], [3319], [9957, 8957, null]] {"k9957":[1, null, 9], "k2":[], "k3":null, "k4":[null, 9]} {"col1":"2012-02-03 16:41:06.000000", "col2":[9966, 9957, null]} +20230922203209630 20230922203209630_0_9957 9959 8b83d7ed-c150-4177-9dbb-d41169e8b9c7-0_0-163-0_20230922203209630.parquet 9959 a9956 [[9956], [3318], [9956, 8956, null]] {"k9956":[1, null, 9], "k2":[], "k3":null, "k4":[null, 9]} {"col1":"2012-02-03 15:40:05.000000", "col2":[9965, 9956, null]} +20230922203209630 20230922203209630_0_9956 9958 8b83d7ed-c150-4177-9dbb-d41169e8b9c7-0_0-163-0_20230922203209630.parquet 9958 a9955 [[9955], [], [9955, 8955, null]] {"k9955":[1, null, 9], "k2":[], "k3":null, "k4":[null, 9]} {"col1":"2012-02-03 14:39:04.000000", "col2":[9964, 9955, null]} +20230922203209630 20230922203209630_0_9955 9957 8b83d7ed-c150-4177-9dbb-d41169e8b9c7-0_0-163-0_20230922203209630.parquet 9957 a9954 [[9954], [3318], [9954, 8954, null]] {"k9954":[1, null, 9], "k2":[], "k3":null, "k4":[null, 9]} {"col1":"2012-02-03 13:38:58.000000", "col2":[9963, 9954, null]} +20230922203209630 20230922203209630_0_9954 9956 8b83d7ed-c150-4177-9dbb-d41169e8b9c7-0_0-163-0_20230922203209630.parquet 9956 a9953 [[9953], [3317], [9953, 8953, null]] {"k9953":[1, null, 9], "k2":[], "k3":null, "k4":[null, 9]} {"col1":"2012-02-03 12:37:57.000000", "col2":[9962, 9953, null]} +20230922204306289 20230922204306289_0_665 9955 8b83d7ed-c150-4177-9dbb-d41169e8b9c7-0 9955 a9952-1 [[9952], [3317], [9952, 8952, null]] {"k3":null, "k4":[null, 9], "k9952":[1, null, 9], "k2":[]} {"col1":"2012-02-03 11:36:56.000000", "col2":[9961, 9952, null]} +20230922203209630 20230922203209630_0_9952 9954 8b83d7ed-c150-4177-9dbb-d41169e8b9c7-0_0-163-0_20230922203209630.parquet 9954 a9951 [[9951], [3317], [9951, 8951, null]] {"k9951":[1, null, 9], "k2":[], "k3":null, "k4":[null, 9]} {"col1":"2012-02-03 10:35:55.000000", "col2":[9960, 9951, null]} +20230922203209630 20230922203209630_0_9951 9953 8b83d7ed-c150-4177-9dbb-d41169e8b9c7-0_0-163-0_20230922203209630.parquet 9953 a9950 [null, [], [9950, 8950, null]] {"k9950":[1, null, 9], "k2":[], "k3":null, "k4":[null, 9]} {"col1":"2012-02-03 09:34:54.000000", "col2":[9959, null, null]} +20230922203209630 20230922203209630_0_996 998 8b83d7ed-c150-4177-9dbb-d41169e8b9c7-0_0-163-0_20230922203209630.parquet 998 a995 [[995], [], [995, -5, null]] {"k995":[1, null, 9], "k2":[], "k3":null, "k4":[null, 9]} {"col1":"2012-02-02 10:28:09.000000", "col2":[1004, 995, null]} +20230922203209630 20230922203209630_0_9950 9952 8b83d7ed-c150-4177-9dbb-d41169e8b9c7-0_0-163-0_20230922203209630.parquet 9952 a9949 [[9949], [3316], [9949, 8949, null]] {"k9949":[1, null, 9], "k2":[], "k3":null, "k4":[null, 9]} {"col1":"2012-02-03 08:33:53.000000", "col2":[9958, 9949, null]} +20230922203209630 20230922203209630_0_9949 9951 8b83d7ed-c150-4177-9dbb-d41169e8b9c7-0_0-163-0_20230922203209630.parquet 9951 a9948 [[9948], [3316], [9948, 8948, null]] {"k9948":[1, null, 9], "k2":[], "k3":null, "k4":[null, 9]} {"col1":"2012-02-03 07:32:52.000000", "col2":[9957, 9948, null]} +20230922203209630 20230922203209630_0_9948 9950 8b83d7ed-c150-4177-9dbb-d41169e8b9c7-0_0-163-0_20230922203209630.parquet 9950 a9947 [[9947], [3315], [9947, 8947, null]] {"k9947":[1, null, 9], "k2":[], "k3":null, "k4":[null, 9]} {"col1":"2012-02-03 06:31:51.000000", "col2":[9956, 9947, null]} +20230922203209630 20230922203209630_0_9947 9949 8b83d7ed-c150-4177-9dbb-d41169e8b9c7-0_0-163-0_20230922203209630.parquet 9949 a9946 [[9946], [3315], [9946, 8946, null]] {"k9946":[1, null, 9], "k2":[], "k3":null, "k4":[null, 9]} {"col1":"2012-02-03 05:30:50.000000", "col2":[9955, 9946, null]} +20230922203209630 20230922203209630_0_9946 9948 8b83d7ed-c150-4177-9dbb-d41169e8b9c7-0_0-163-0_20230922203209630.parquet 9948 a9945 [[9945], [], [9945, 8945, null]] {"k9945":[1, null, 9], "k2":[], "k3":null, "k4":[null, 9]} {"col1":"2012-02-03 04:29:49.000000", "col2":[9954, 9945, null]} +20230922203209630 20230922203209630_0_9945 9947 8b83d7ed-c150-4177-9dbb-d41169e8b9c7-0_0-163-0_20230922203209630.parquet 9947 a9944 [[9944], [3314], [9944, 8944, null]] {"k9944":[1, null, 9], "k2":[], "k3":null, "k4":[null, 9]} {"col1":"2012-02-03 03:28:48.000000", "col2":[9953, 9944, null]} +20230922203209630 20230922203209630_0_9944 9946 8b83d7ed-c150-4177-9dbb-d41169e8b9c7-0_0-163-0_20230922203209630.parquet 9946 a9943 [[9943], [3314], [9943, 8943, null]] {"k9943":[1, null, 9], "k2":[], "k3":null, "k4":[null, 9]} {"col1":"2012-02-03 02:27:47.000000", "col2":[9952, 9943, null]} +20230922204306289 20230922204306289_0_53 9945 8b83d7ed-c150-4177-9dbb-d41169e8b9c7-0 9945 a9942-1 [[9942], [3314], [9942, 8942, null]] {"k3":null, "k4":[null, 9], "k9942":[1, null, 9], "k2":[]} {"col1":"2012-02-03 01:26:46.000000", "col2":[9951, 9942, null]} +20230922203209630 20230922203209630_0_9942 9944 8b83d7ed-c150-4177-9dbb-d41169e8b9c7-0_0-163-0_20230922203209630.parquet 9944 a9941 [[9941], [3313], [9941, 8941, null]] {"k9941":[1, null, 9], "k2":[], "k3":null, "k4":[null, 9]} {"col1":"2012-02-03 00:25:45.000000", "col2":[9950, 9941, null]} +20230922203209630 20230922203209630_0_9941 9943 8b83d7ed-c150-4177-9dbb-d41169e8b9c7-0_0-163-0_20230922203209630.parquet 9943 a9940 [null, [], [9940, 8940, null]] {"k9940":[1, null, 9], "k2":[], "k3":null, "k4":[null, 9]} {"col1":"2012-02-02 23:24:44.000000", "col2":[9949, null, null]} +20230922203209630 20230922203209630_0_995 997 8b83d7ed-c150-4177-9dbb-d41169e8b9c7-0_0-163-0_20230922203209630.parquet 997 a994 [[994], [331], [994, -6, null]] {"k994":[1, null, 9], "k2":[], "k3":null, "k4":[null, 9]} {"col1":"2012-02-02 09:27:08.000000", "col2":[1003, 994, null]} +20230922203209630 20230922203209630_0_9940 9942 8b83d7ed-c150-4177-9dbb-d41169e8b9c7-0_0-163-0_20230922203209630.parquet 9942 a9939 [[9939], [3313], [9939, 8939, null]] {"k9939":[1, null, 9], "k2":[], "k3":null, "k4":[null, 9]} {"col1":"2012-02-02 22:23:43.000000", "col2":[9948, 9939, null]} +20230922203209630 20230922203209630_0_9939 9941 8b83d7ed-c150-4177-9dbb-d41169e8b9c7-0_0-163-0_20230922203209630.parquet 9941 a9938 [[9938], [3312], [9938, 8938, null]] {"k9938":[1, null, 9], "k2":[], "k3":null, "k4":[null, 9]} {"col1":"2012-02-02 21:22:42.000000", "col2":[9947, 9938, null]} +20230922203209630 20230922203209630_0_9938 9940 8b83d7ed-c150-4177-9dbb-d41169e8b9c7-0_0-163-0_20230922203209630.parquet 9940 a9937 [[9937], [3312], [9937, 8937, null]] {"k9937":[1, null, 9], "k2":[], "k3":null, "k4":[null, 9]} {"col1":"2012-02-02 20:21:41.000000", "col2":[9946, 9937, null]} +20230922203209630 20230922203209630_0_9937 9939 8b83d7ed-c150-4177-9dbb-d41169e8b9c7-0_0-163-0_20230922203209630.parquet 9939 a9936 [[9936], [3312], [9936, 8936, null]] {"k9936":[1, null, 9], "k2":[], "k3":null, "k4":[null, 9]} {"col1":"2012-02-02 19:20:40.000000", "col2":[9945, 9936, null]} +20230922203209630 20230922203209630_0_9936 9938 8b83d7ed-c150-4177-9dbb-d41169e8b9c7-0_0-163-0_20230922203209630.parquet 9938 a9935 [[9935], [], [9935, 8935, null]] {"k9935":[1, null, 9], "k2":[], "k3":null, "k4":[null, 9]} {"col1":"2012-02-02 18:19:39.000000", "col2":[9944, 9935, null]} +20230922203209630 20230922203209630_0_9935 9937 8b83d7ed-c150-4177-9dbb-d41169e8b9c7-0_0-163-0_20230922203209630.parquet 9937 a9934 [[9934], [3311], [9934, 8934, null]] {"k9934":[1, null, 9], "k2":[], "k3":null, "k4":[null, 9]} {"col1":"2012-02-02 17:18:38.000000", "col2":[9943, 9934, null]} +20230922203209630 20230922203209630_0_9934 9936 8b83d7ed-c150-4177-9dbb-d41169e8b9c7-0_0-163-0_20230922203209630.parquet 9936 a9933 [[9933], [3311], [9933, 8933, null]] {"k9933":[1, null, 9], "k2":[], "k3":null, "k4":[null, 9]} {"col1":"2012-02-02 16:17:37.000000", "col2":[9942, 9933, null]} +20230922204306289 20230922204306289_0_991 9935 8b83d7ed-c150-4177-9dbb-d41169e8b9c7-0 9935 a9932-1 [[9932], [3310], [9932, 8932, null]] {"k3":null, "k4":[null, 9], "k9932":[1, null, 9], "k2":[]} {"col1":"2012-02-02 15:16:36.000000", "col2":[9941, 9932, null]} +20230922203209630 20230922203209630_0_9932 9934 8b83d7ed-c150-4177-9dbb-d41169e8b9c7-0_0-163-0_20230922203209630.parquet 9934 a9931 [[9931], [3310], [9931, 8931, null]] {"k9931":[1, null, 9], "k2":[], "k3":null, "k4":[null, 9]} {"col1":"2012-02-02 14:15:35.000000", "col2":[9940, 9931, null]} +20230922203209630 20230922203209630_0_9931 9933 8b83d7ed-c150-4177-9dbb-d41169e8b9c7-0_0-163-0_20230922203209630.parquet 9933 a9930 [null, [], [9930, 8930, null]] {"k9930":[1, null, 9], "k2":[], "k3":null, "k4":[null, 9]} {"col1":"2012-02-02 13:14:34.000000", "col2":[9939, null, null]} +20230922203209630 20230922203209630_0_994 996 8b83d7ed-c150-4177-9dbb-d41169e8b9c7-0_0-163-0_20230922203209630.parquet 996 a993 [[993], [331], [993, -7, null]] {"k993":[1, null, 9], "k2":[], "k3":null, "k4":[null, 9]} {"col1":"2012-02-02 08:26:07.000000", "col2":[1002, 993, null]} +20230922203209630 20230922203209630_0_9930 9932 8b83d7ed-c150-4177-9dbb-d41169e8b9c7-0_0-163-0_20230922203209630.parquet 9932 a9929 [[9929], [3309], [9929, 8929, null]] {"k9929":[1, null, 9], "k2":[], "k3":null, "k4":[null, 9]} {"col1":"2012-02-02 12:13:33.000000", "col2":[9938, 9929, null]} +20230922203209630 20230922203209630_0_9929 9931 8b83d7ed-c150-4177-9dbb-d41169e8b9c7-0_0-163-0_20230922203209630.parquet 9931 a9928 [[9928], [3309], [9928, 8928, null]] {"k9928":[1, null, 9], "k2":[], "k3":null, "k4":[null, 9]} {"col1":"2012-02-02 11:12:32.000000", "col2":[9937, 9928, null]} +20230922203209630 20230922203209630_0_9928 9930 8b83d7ed-c150-4177-9dbb-d41169e8b9c7-0_0-163-0_20230922203209630.parquet 9930 a9927 [[9927], [3309], [9927, 8927, null]] {"k9927":[1, null, 9], "k2":[], "k3":null, "k4":[null, 9]} {"col1":"2012-02-02 10:11:31.000000", "col2":[9936, 9927, null]} +20230922203209630 20230922203209630_0_9927 9929 8b83d7ed-c150-4177-9dbb-d41169e8b9c7-0_0-163-0_20230922203209630.parquet 9929 a9926 [[9926], [3308], [9926, 8926, null]] {"k9926":[1, null, 9], "k2":[], "k3":null, "k4":[null, 9]} {"col1":"2012-02-02 09:10:30.000000", "col2":[9935, 9926, null]} +20230922203209630 20230922203209630_0_9926 9928 8b83d7ed-c150-4177-9dbb-d41169e8b9c7-0_0-163-0_20230922203209630.parquet 9928 a9925 [[9925], [], [9925, 8925, null]] {"k9925":[1, null, 9], "k2":[], "k3":null, "k4":[null, 9]} {"col1":"2012-02-02 08:09:29.000000", "col2":[9934, 9925, null]} +20230922203209630 20230922203209630_0_9925 9927 8b83d7ed-c150-4177-9dbb-d41169e8b9c7-0_0-163-0_20230922203209630.parquet 9927 a9924 [[9924], [3308], [9924, 8924, null]] {"k9924":[1, null, 9], "k2":[], "k3":null, "k4":[null, 9]} {"col1":"2012-02-02 07:08:28.000000", "col2":[9933, 9924, null]} +20230922203209630 20230922203209630_0_9924 9926 8b83d7ed-c150-4177-9dbb-d41169e8b9c7-0_0-163-0_20230922203209630.parquet 9926 a9923 [[9923], [3307], [9923, 8923, null]] {"k9923":[1, null, 9], "k2":[], "k3":null, "k4":[null, 9]} {"col1":"2012-02-02 06:07:27.000000", "col2":[9932, 9923, null]} +20230922204306289 20230922204306289_0_778 9925 8b83d7ed-c150-4177-9dbb-d41169e8b9c7-0 9925 a9922-1 [[9922], [3307], [9922, 8922, null]] {"k3":null, "k4":[null, 9], "k9922":[1, null, 9], "k2":[]} {"col1":"2012-02-02 05:06:26.000000", "col2":[9931, 9922, null]} +20230922203209630 20230922203209630_0_9922 9924 8b83d7ed-c150-4177-9dbb-d41169e8b9c7-0_0-163-0_20230922203209630.parquet 9924 a9921 [[9921], [3307], [9921, 8921, null]] {"k9921":[1, null, 9], "k2":[], "k3":null, "k4":[null, 9]} {"col1":"2012-02-02 04:05:25.000000", "col2":[9930, 9921, null]} +20230922203209630 20230922203209630_0_9921 9923 8b83d7ed-c150-4177-9dbb-d41169e8b9c7-0_0-163-0_20230922203209630.parquet 9923 a9920 [null, [], [9920, 8920, null]] {"k9920":[1, null, 9], "k2":[], "k3":null, "k4":[null, 9]} {"col1":"2012-02-02 03:04:24.000000", "col2":[9929, null, null]} +20230922204306289 20230922204306289_0_100 995 8b83d7ed-c150-4177-9dbb-d41169e8b9c7-0 995 a992-1 [[992], [330], [992, -8, null]] {"k3":null, "k4":[null, 9], "k992":[1, null, 9], "k2":[]} {"col1":"2012-02-02 07:25:06.000000", "col2":[1001, 992, null]} +20230922203209630 20230922203209630_0_9920 9922 8b83d7ed-c150-4177-9dbb-d41169e8b9c7-0_0-163-0_20230922203209630.parquet 9922 a9919 [[9919], [3306], [9919, 8919, null]] {"k9919":[1, null, 9], "k2":[], "k3":null, "k4":[null, 9]} {"col1":"2012-02-02 02:03:23.000000", "col2":[9928, 9919, null]} +20230922203209630 20230922203209630_0_9919 9921 8b83d7ed-c150-4177-9dbb-d41169e8b9c7-0_0-163-0_20230922203209630.parquet 9921 a9918 [[9918], [3306], [9918, 8918, null]] {"k9918":[1, null, 9], "k2":[], "k3":null, "k4":[null, 9]} {"col1":"2012-02-02 01:02:22.000000", "col2":[9927, 9918, null]} +20230922203209630 20230922203209630_0_9918 9920 8b83d7ed-c150-4177-9dbb-d41169e8b9c7-0_0-163-0_20230922203209630.parquet 9920 a9917 [[9917], [3305], [9917, 8917, null]] {"k9917":[1, null, 9], "k2":[], "k3":null, "k4":[null, 9]} {"col1":"2012-02-04 10:58:21.000000", "col2":[9926, 9917, null]} +20230922203209630 20230922203209630_0_9917 9919 8b83d7ed-c150-4177-9dbb-d41169e8b9c7-0_0-163-0_20230922203209630.parquet 9919 a9916 [[9916], [3305], [9916, 8916, null]] {"k9916":[1, null, 9], "k2":[], "k3":null, "k4":[null, 9]} {"col1":"2012-02-04 09:57:20.000000", "col2":[9925, 9916, null]} +20230922203209630 20230922203209630_0_9916 9918 8b83d7ed-c150-4177-9dbb-d41169e8b9c7-0_0-163-0_20230922203209630.parquet 9918 a9915 [[9915], [], [9915, 8915, null]] {"k9915":[1, null, 9], "k2":[], "k3":null, "k4":[null, 9]} {"col1":"2012-02-04 08:56:19.000000", "col2":[9924, 9915, null]} +20230922203209630 20230922203209630_0_9915 9917 8b83d7ed-c150-4177-9dbb-d41169e8b9c7-0_0-163-0_20230922203209630.parquet 9917 a9914 [[9914], [3304], [9914, 8914, null]] {"k9914":[1, null, 9], "k2":[], "k3":null, "k4":[null, 9]} {"col1":"2012-02-04 07:55:18.000000", "col2":[9923, 9914, null]} +20230922203209630 20230922203209630_0_9914 9916 8b83d7ed-c150-4177-9dbb-d41169e8b9c7-0_0-163-0_20230922203209630.parquet 9916 a9913 [[9913], [3304], [9913, 8913, null]] {"k9913":[1, null, 9], "k2":[], "k3":null, "k4":[null, 9]} {"col1":"2012-02-04 06:54:17.000000", "col2":[9922, 9913, null]} +20230922204306289 20230922204306289_0_750 9915 8b83d7ed-c150-4177-9dbb-d41169e8b9c7-0 9915 a9912-1 [[9912], [3304], [9912, 8912, null]] {"k3":null, "k4":[null, 9], "k9912":[1, null, 9], "k2":[]} {"col1":"2012-02-04 05:53:16.000000", "col2":[9921, 9912, null]} +20230922203209630 20230922203209630_0_9912 9914 8b83d7ed-c150-4177-9dbb-d41169e8b9c7-0_0-163-0_20230922203209630.parquet 9914 a9911 [[9911], [3303], [9911, 8911, null]] {"k9911":[1, null, 9], "k2":[], "k3":null, "k4":[null, 9]} {"col1":"2012-02-04 04:52:15.000000", "col2":[9920, 9911, null]} +20230922203209630 20230922203209630_0_9911 9913 8b83d7ed-c150-4177-9dbb-d41169e8b9c7-0_0-163-0_20230922203209630.parquet 9913 a9910 [null, [], [9910, 8910, null]] {"k9910":[1, null, 9], "k2":[], "k3":null, "k4":[null, 9]} {"col1":"2012-02-04 03:51:14.000000", "col2":[9919, null, null]} +20230922203209630 20230922203209630_0_992 994 8b83d7ed-c150-4177-9dbb-d41169e8b9c7-0_0-163-0_20230922203209630.parquet 994 a991 [[991], [330], [991, -9, null]] {"k991":[1, null, 9], "k2":[], "k3":null, "k4":[null, 9]} {"col1":"2012-02-02 06:24:05.000000", "col2":[1000, 991, null]} +20230922203209630 20230922203209630_0_9910 9912 8b83d7ed-c150-4177-9dbb-d41169e8b9c7-0_0-163-0_20230922203209630.parquet 9912 a9909 [[9909], [3303], [9909, 8909, null]] {"k9909":[1, null, 9], "k2":[], "k3":null, "k4":[null, 9]} {"col1":"2012-02-04 02:50:13.000000", "col2":[9918, 9909, null]} -- !flink_hive_catalog -- 20240221112835666 20240221112835666_0_1 1dced545-862b-4ceb-8b43-d2a568f6616b cc1f45f0-5d1e-4c3e-872e-b4c123d1250b 1695332066204 1dced545-862b-4ceb-8b43-d2a568f6616b rider-E driver-O 93.5 san_francisco diff --git a/regression-test/data/external_table_p2/hive/test_hive_write_insert_s3.out b/regression-test/data/external_table_p2/hive/test_hive_write_insert_s3.out index 7d34ada055042b..cb1bef5beb2636 100644 --- a/regression-test/data/external_table_p2/hive/test_hive_write_insert_s3.out +++ b/regression-test/data/external_table_p2/hive/test_hive_write_insert_s3.out @@ -1,27 +1,27 @@ -- This file is automatically generated. You should know what you did if you want to edit this -- !q01 -- -false -128 -32768 -2147483648 -9223372036854775808 -123.45 -123456.789 -123456789 -1234.5678 -123456.789012 -123456789.012345678901 string_value binary_value 2024-03-21 2024-03-21T12:00 2024-03-21T12:00:00.123456 2024-03-21T12:00:00.123456 char_value1 char_value2 char_value3 varchar_value1 varchar_value2 varchar_value3 {"key1":"value1"} {"key1":"value1"} {"x":"y"} {2:20} {2:200000000000} {2.2:20.2} {2.2:20.2} {0:1} {2.2:2.2} {2.34:2.34} {2.3456:2.3456} {2.34567890:2.34567890} {2.34567890:2.34567890} {2.3456789012345679:2.3456789012345679} ["string1", "string2"] [4, 5, 6] [300000000000, 400000000000] [3.3, 4.4] [3.123456789, 4.123456789] [0, 1] ["varchar1", "varchar2"] ["char1", "char2"] [3.3, 4.4] [3.45, 4.56] [3.4567, 4.5678] [3.45678901, 4.56789012] [3.45678901, 4.56789012] [3.4567890123456789, 4.5678901234567890] {"s_bigint": -1234567890} {"key":[{"s_int": -123}]} {"struct_field": ["value1", "value2"]} {"struct_field_null": null, "struct_field_null2": null} {"struct_non_nulls_after_nulls1": -123, "struct_non_nulls_after_nulls2": "value"} {"struct_field1": -123, "struct_field2": "value", "strict_field3": {"nested_struct_field1": -123, "nested_struct_field2": "nested_value"}} {"null_key":null} [null, "value1", "value2"] ["value1", null, "value2"] ["value1", "value2", null] [null, null, null] 20240321 -false -128 -32768 -2147483648 -9223372036854775808 -123.45 -123456.789 -123456789 -1234.5678 -123456.789012 -123456789.012345678901 string_value binary_value 2024-03-22 2024-03-22T12:00 2024-03-22T12:00:00.123456 2024-03-22T12:00:00.123456 char_value1 char_value2 char_value3 varchar_value1 varchar_value2 varchar_value3 {"key1":"value1"} {"key1":"value1"} {"x":"y"} {3:20} {3:200000000000} {3.2:20.2} {3.2:20.2} {0:1} {3.2:2.2} {3.34:2.34} {2.3456:2.3456} {2.34567890:2.34567890} {2.34567890:2.34567890} {3.3456789012345679:2.3456789012345679} ["string1", "string2"] [4, 5, 6] [300000000000, 400000000000] [3.3, 4.4] [3.123456789, 4.123456789] [0, 1] ["varchar1", "varchar2"] ["char1", "char2"] [3.3, 4.4] [3.45, 4.56] [8.4567, 4.5678] [3.45678901, 4.56789012] [3.45678901, 4.56789012] [3.4567890123456789, 4.5678901234567890] {"s_bigint": -1234567890} {"key":[{"s_int": -123}]} {"struct_field": ["value1", "value2"]} {"struct_field_null": null, "struct_field_null2": null} {"struct_non_nulls_after_nulls1": -123, "struct_non_nulls_after_nulls2": "value"} {"struct_field1": -123, "struct_field2": "value", "strict_field3": {"nested_struct_field1": -123, "nested_struct_field2": "nested_value"}} {"null_key":null} [null, "value1", "value2"] ["value1", null, "value2"] ["value11", "value2", null] [null, null, null] 20240322 -true 127 32767 2147483647 9223372036854775807 123.45 123456.789 123456789 1234.5678 123456.789012 123456789.012345678901 string_value binary_value 2024-03-20 2024-03-20T12:00 2024-03-20T12:00:00.123456 2024-03-20T12:00:00.123456 char_value1 char_value2 char_value3 varchar_value1 varchar_value2 varchar_value3 {"key1":"value1"} {"key1":"value1"} {"a":"b"} {1:10} {1:100000000000} {1.1:10.1} {1.1:10.1} {1:0} {1.1:1.1} {1.23:1.23} {1.2345:1.2345} {1.23456789:1.23456789} {1.23456789:1.23456789} {1.2345678901234568:1.2345678901234568} ["string1", "string2"] [1, 2, 3] [100000000000, 200000000000] [1.1, 2.2] [1.123456789, 2.123456789] [1, 0] ["varchar1", "varchar2"] ["char1", "char2"] [1.1, 2.2] [1.23, 2.34] [1.2345, 2.3456] [1.23456789, 2.34567891] [1.23456789, 2.34567891] [1.2345678901234568, 2.3456789012345679] {"s_bigint": 1234567890} {"key":[{"s_int": 123}]} {"struct_field": ["value1", "value2"]} {"struct_field_null": null, "struct_field_null2": null} {"struct_non_nulls_after_nulls1": 123, "struct_non_nulls_after_nulls2": "value"} {"struct_field1": 123, "struct_field2": "value", "strict_field3": {"nested_struct_field1": 123, "nested_struct_field2": "nested_value"}} {"null_key":null} [null, "value1", "value2"] ["value1", null, "value2"] ["value1", "value2", null] [null, null, null] 20240320 +false -128 -32768 -2147483648 -9223372036854775808 -123.45 -123456.789 -123456789 -1234.5678 -123456.789012 -123456789.012345678901 string_value binary_value 2024-03-21 2024-03-21T12:00 2024-03-21T12:00:00.123456 2024-03-21T12:00:00.123456 char_value1 char_value2 char_value3 varchar_value1 varchar_value2 varchar_value3 {"key1":"value1"} {"key1":"value1"} {"x":"y"} {2:20} {2:200000000000} {2.2:20.2} {2.2:20.2} {0:1} {2.2:2.2} {2.34:2.34} {2.3456:2.3456} {2.34567890:2.34567890} {2.34567890:2.34567890} {2.3456789012345679:2.3456789012345679} ["string1", "string2"] [4, 5, 6] [300000000000, 400000000000] [3.3, 4.4] [3.123456789, 4.123456789] [0, 1] ["varchar1", "varchar2"] ["char1", "char2"] [3.3, 4.4] [3.45, 4.56] [3.4567, 4.5678] [3.45678901, 4.56789012] [3.45678901, 4.56789012] [3.4567890123456789, 4.5678901234567890] {"s_bigint":-1234567890} {"key":[{"s_int":-123}]} {"struct_field":["value1", "value2"]} {"struct_field_null":null, "struct_field_null2":null} {"struct_non_nulls_after_nulls1":-123, "struct_non_nulls_after_nulls2":"value"} {"struct_field1":-123, "struct_field2":"value", "strict_field3":{"nested_struct_field1":-123, "nested_struct_field2":"nested_value"}} {"null_key":null} [null, "value1", "value2"] ["value1", null, "value2"] ["value1", "value2", null] [null, null, null] 20240321 +false -128 -32768 -2147483648 -9223372036854775808 -123.45 -123456.789 -123456789 -1234.5678 -123456.789012 -123456789.012345678901 string_value binary_value 2024-03-22 2024-03-22T12:00 2024-03-22T12:00:00.123456 2024-03-22T12:00:00.123456 char_value1 char_value2 char_value3 varchar_value1 varchar_value2 varchar_value3 {"key1":"value1"} {"key1":"value1"} {"x":"y"} {3:20} {3:200000000000} {3.2:20.2} {3.2:20.2} {0:1} {3.2:2.2} {3.34:2.34} {2.3456:2.3456} {2.34567890:2.34567890} {2.34567890:2.34567890} {3.3456789012345679:2.3456789012345679} ["string1", "string2"] [4, 5, 6] [300000000000, 400000000000] [3.3, 4.4] [3.123456789, 4.123456789] [0, 1] ["varchar1", "varchar2"] ["char1", "char2"] [3.3, 4.4] [3.45, 4.56] [8.4567, 4.5678] [3.45678901, 4.56789012] [3.45678901, 4.56789012] [3.4567890123456789, 4.5678901234567890] {"s_bigint":-1234567890} {"key":[{"s_int":-123}]} {"struct_field":["value1", "value2"]} {"struct_field_null":null, "struct_field_null2":null} {"struct_non_nulls_after_nulls1":-123, "struct_non_nulls_after_nulls2":"value"} {"struct_field1":-123, "struct_field2":"value", "strict_field3":{"nested_struct_field1":-123, "nested_struct_field2":"nested_value"}} {"null_key":null} [null, "value1", "value2"] ["value1", null, "value2"] ["value11", "value2", null] [null, null, null] 20240322 +true 127 32767 2147483647 9223372036854775807 123.45 123456.789 123456789 1234.5678 123456.789012 123456789.012345678901 string_value binary_value 2024-03-20 2024-03-20T12:00 2024-03-20T12:00:00.123456 2024-03-20T12:00:00.123456 char_value1 char_value2 char_value3 varchar_value1 varchar_value2 varchar_value3 {"key1":"value1"} {"key1":"value1"} {"a":"b"} {1:10} {1:100000000000} {1.1:10.1} {1.1:10.1} {1:0} {1.1:1.1} {1.23:1.23} {1.2345:1.2345} {1.23456789:1.23456789} {1.23456789:1.23456789} {1.2345678901234568:1.2345678901234568} ["string1", "string2"] [1, 2, 3] [100000000000, 200000000000] [1.1, 2.2] [1.123456789, 2.123456789] [1, 0] ["varchar1", "varchar2"] ["char1", "char2"] [1.1, 2.2] [1.23, 2.34] [1.2345, 2.3456] [1.23456789, 2.34567891] [1.23456789, 2.34567891] [1.2345678901234568, 2.3456789012345679] {"s_bigint":1234567890} {"key":[{"s_int":123}]} {"struct_field":["value1", "value2"]} {"struct_field_null":null, "struct_field_null2":null} {"struct_non_nulls_after_nulls1":123, "struct_non_nulls_after_nulls2":"value"} {"struct_field1":123, "struct_field2":"value", "strict_field3":{"nested_struct_field1":123, "nested_struct_field2":"nested_value"}} {"null_key":null} [null, "value1", "value2"] ["value1", null, "value2"] ["value1", "value2", null] [null, null, null] 20240320 -- !q02 -- -false -128 -32768 -2147483648 -9223372036854775808 -123.45 -123456.789 -123456789 -1234.5678 -123456.789012 -123456789.012345678901 string_value binary_value 2024-03-21 2024-03-21T12:00 2024-03-21T12:00:00.123456 2024-03-21T12:00:00.123456 char_value1 char_value2 char_value3 varchar_value1 varchar_value2 varchar_value3 {"key1":"value1"} {"key1":"value1"} {"x":"y"} {2:20} {2:200000000000} {2.2:20.2} {2.2:20.2} {0:1} {2.2:2.2} {2.34:2.34} {2.3456:2.3456} {2.34567890:2.34567890} {2.34567890:2.34567890} {2.3456789012345679:2.3456789012345679} ["string1", "string2"] [4, 5, 6] [300000000000, 400000000000] [3.3, 4.4] [3.123456789, 4.123456789] [0, 1] ["varchar1", "varchar2"] ["char1", "char2"] [3.3, 4.4] [3.45, 4.56] [3.4567, 4.5678] [3.45678901, 4.56789012] [3.45678901, 4.56789012] [3.4567890123456789, 4.5678901234567890] {"s_bigint": -1234567890} {"key":[{"s_int": -123}]} {"struct_field": ["value1", "value2"]} {"struct_field_null": null, "struct_field_null2": null} {"struct_non_nulls_after_nulls1": -123, "struct_non_nulls_after_nulls2": "value"} {"struct_field1": -123, "struct_field2": "value", "strict_field3": {"nested_struct_field1": -123, "nested_struct_field2": "nested_value"}} {"null_key":null} [null, "value1", "value2"] ["value1", null, "value2"] ["value1", "value2", null] [null, null, null] 20240321 -false -128 -32768 -2147483648 -9223372036854775808 -123.45 -123456.789 -123456789 -1234.5678 -123456.789012 -123456789.012345678901 string_value binary_value 2024-03-21 2024-03-21T12:00 2024-03-21T12:00:00.123456 2024-03-21T12:00:00.123456 char_value1 char_value2 char_value3 varchar_value1 varchar_value2 varchar_value3 {"key1":"value1"} {"key1":"value1"} {"x":"y"} {2:20} {2:200000000000} {2.2:20.2} {2.2:20.2} {0:1} {2.2:2.2} {2.34:2.34} {2.3456:2.3456} {2.34567890:2.34567890} {2.34567890:2.34567890} {2.3456789012345679:2.3456789012345679} ["string1", "string2"] [4, 5, 6] [300000000000, 400000000000] [3.3, 4.4] [3.123456789, 4.123456789] [0, 1] ["varchar1", "varchar2"] ["char1", "char2"] [3.3, 4.4] [3.45, 4.56] [3.4567, 4.5678] [3.45678901, 4.56789012] [3.45678901, 4.56789012] [3.4567890123456789, 4.5678901234567890] {"s_bigint": -1234567890} {"key":[{"s_int": -123}]} {"struct_field": ["value1", "value2"]} {"struct_field_null": null, "struct_field_null2": null} {"struct_non_nulls_after_nulls1": -123, "struct_non_nulls_after_nulls2": "value"} {"struct_field1": -123, "struct_field2": "value", "strict_field3": {"nested_struct_field1": -123, "nested_struct_field2": "nested_value"}} {"null_key":null} [null, "value1", "value2"] ["value1", null, "value2"] ["value1", "value2", null] [null, null, null] 20240321 -false -128 -32768 -2147483648 -9223372036854775808 -123.45 -123456.789 -123456789 -1234.5678 -123456.789012 -123456789.012345678901 string_value binary_value 2024-03-22 2024-03-22T12:00 2024-03-22T12:00:00.123456 2024-03-22T12:00:00.123456 char_value1 char_value2 char_value3 varchar_value1 varchar_value2 varchar_value3 {"key1":"value1"} {"key1":"value1"} {"x":"y"} {3:20} {3:200000000000} {3.2:20.2} {3.2:20.2} {0:1} {3.2:2.2} {3.34:2.34} {2.3456:2.3456} {2.34567890:2.34567890} {2.34567890:2.34567890} {3.3456789012345679:2.3456789012345679} ["string1", "string2"] [4, 5, 6] [300000000000, 400000000000] [3.3, 4.4] [3.123456789, 4.123456789] [0, 1] ["varchar1", "varchar2"] ["char1", "char2"] [3.3, 4.4] [3.45, 4.56] [8.4567, 4.5678] [3.45678901, 4.56789012] [3.45678901, 4.56789012] [3.4567890123456789, 4.5678901234567890] {"s_bigint": -1234567890} {"key":[{"s_int": -123}]} {"struct_field": ["value1", "value2"]} {"struct_field_null": null, "struct_field_null2": null} {"struct_non_nulls_after_nulls1": -123, "struct_non_nulls_after_nulls2": "value"} {"struct_field1": -123, "struct_field2": "value", "strict_field3": {"nested_struct_field1": -123, "nested_struct_field2": "nested_value"}} {"null_key":null} [null, "value1", "value2"] ["value1", null, "value2"] ["value11", "value2", null] [null, null, null] 20240322 -false -128 -32768 -2147483648 -9223372036854775808 -123.45 -123456.789 -123456789 -1234.5678 -123456.789012 -123456789.012345678901 string_value binary_value 2024-03-22 2024-03-22T12:00 2024-03-22T12:00:00.123456 2024-03-22T12:00:00.123456 char_value1 char_value2 char_value3 varchar_value1 varchar_value2 varchar_value3 {"key1":"value1"} {"key1":"value1"} {"x":"y"} {3:20} {3:200000000000} {3.2:20.2} {3.2:20.2} {0:1} {3.2:2.2} {3.34:2.34} {2.3456:2.3456} {2.34567890:2.34567890} {2.34567890:2.34567890} {3.3456789012345679:2.3456789012345679} ["string1", "string2"] [4, 5, 6] [300000000000, 400000000000] [3.3, 4.4] [3.123456789, 4.123456789] [0, 1] ["varchar1", "varchar2"] ["char1", "char2"] [3.3, 4.4] [3.45, 4.56] [8.4567, 4.5678] [3.45678901, 4.56789012] [3.45678901, 4.56789012] [3.4567890123456789, 4.5678901234567890] {"s_bigint": -1234567890} {"key":[{"s_int": -123}]} {"struct_field": ["value1", "value2"]} {"struct_field_null": null, "struct_field_null2": null} {"struct_non_nulls_after_nulls1": -123, "struct_non_nulls_after_nulls2": "value"} {"struct_field1": -123, "struct_field2": "value", "strict_field3": {"nested_struct_field1": -123, "nested_struct_field2": "nested_value"}} {"null_key":null} [null, "value1", "value2"] ["value1", null, "value2"] ["value11", "value2", null] [null, null, null] 20240322 -true 127 32767 2147483647 9223372036854775807 123.45 123456.789 123456789 1234.5678 123456.789012 123456789.012345678901 string_value binary_value 2024-03-20 2024-03-20T12:00 2024-03-20T12:00:00.123456 2024-03-20T12:00:00.123456 char_value1 char_value2 char_value3 varchar_value1 varchar_value2 varchar_value3 {"key1":"value1"} {"key1":"value1"} {"a":"b"} {1:10} {1:100000000000} {1.1:10.1} {1.1:10.1} {1:0} {1.1:1.1} {1.23:1.23} {1.2345:1.2345} {1.23456789:1.23456789} {1.23456789:1.23456789} {1.2345678901234568:1.2345678901234568} ["string1", "string2"] [1, 2, 3] [100000000000, 200000000000] [1.1, 2.2] [1.123456789, 2.123456789] [1, 0] ["varchar1", "varchar2"] ["char1", "char2"] [1.1, 2.2] [1.23, 2.34] [1.2345, 2.3456] [1.23456789, 2.34567891] [1.23456789, 2.34567891] [1.2345678901234568, 2.3456789012345679] {"s_bigint": 1234567890} {"key":[{"s_int": 123}]} {"struct_field": ["value1", "value2"]} {"struct_field_null": null, "struct_field_null2": null} {"struct_non_nulls_after_nulls1": 123, "struct_non_nulls_after_nulls2": "value"} {"struct_field1": 123, "struct_field2": "value", "strict_field3": {"nested_struct_field1": 123, "nested_struct_field2": "nested_value"}} {"null_key":null} [null, "value1", "value2"] ["value1", null, "value2"] ["value1", "value2", null] [null, null, null] 20240320 -true 127 32767 2147483647 9223372036854775807 123.45 123456.789 123456789 1234.5678 123456.789012 123456789.012345678901 string_value binary_value 2024-03-20 2024-03-20T12:00 2024-03-20T12:00:00.123456 2024-03-20T12:00:00.123456 char_value1 char_value2 char_value3 varchar_value1 varchar_value2 varchar_value3 {"key1":"value1"} {"key1":"value1"} {"a":"b"} {1:10} {1:100000000000} {1.1:10.1} {1.1:10.1} {1:0} {1.1:1.1} {1.23:1.23} {1.2345:1.2345} {1.23456789:1.23456789} {1.23456789:1.23456789} {1.2345678901234568:1.2345678901234568} ["string1", "string2"] [1, 2, 3] [100000000000, 200000000000] [1.1, 2.2] [1.123456789, 2.123456789] [1, 0] ["varchar1", "varchar2"] ["char1", "char2"] [1.1, 2.2] [1.23, 2.34] [1.2345, 2.3456] [1.23456789, 2.34567891] [1.23456789, 2.34567891] [1.2345678901234568, 2.3456789012345679] {"s_bigint": 1234567890} {"key":[{"s_int": 123}]} {"struct_field": ["value1", "value2"]} {"struct_field_null": null, "struct_field_null2": null} {"struct_non_nulls_after_nulls1": 123, "struct_non_nulls_after_nulls2": "value"} {"struct_field1": 123, "struct_field2": "value", "strict_field3": {"nested_struct_field1": 123, "nested_struct_field2": "nested_value"}} {"null_key":null} [null, "value1", "value2"] ["value1", null, "value2"] ["value1", "value2", null] [null, null, null] 20240320 +false -128 -32768 -2147483648 -9223372036854775808 -123.45 -123456.789 -123456789 -1234.5678 -123456.789012 -123456789.012345678901 string_value binary_value 2024-03-21 2024-03-21T12:00 2024-03-21T12:00:00.123456 2024-03-21T12:00:00.123456 char_value1 char_value2 char_value3 varchar_value1 varchar_value2 varchar_value3 {"key1":"value1"} {"key1":"value1"} {"x":"y"} {2:20} {2:200000000000} {2.2:20.2} {2.2:20.2} {0:1} {2.2:2.2} {2.34:2.34} {2.3456:2.3456} {2.34567890:2.34567890} {2.34567890:2.34567890} {2.3456789012345679:2.3456789012345679} ["string1", "string2"] [4, 5, 6] [300000000000, 400000000000] [3.3, 4.4] [3.123456789, 4.123456789] [0, 1] ["varchar1", "varchar2"] ["char1", "char2"] [3.3, 4.4] [3.45, 4.56] [3.4567, 4.5678] [3.45678901, 4.56789012] [3.45678901, 4.56789012] [3.4567890123456789, 4.5678901234567890] {"s_bigint":-1234567890} {"key":[{"s_int":-123}]} {"struct_field":["value1", "value2"]} {"struct_field_null":null, "struct_field_null2":null} {"struct_non_nulls_after_nulls1":-123, "struct_non_nulls_after_nulls2":"value"} {"struct_field1":-123, "struct_field2":"value", "strict_field3":{"nested_struct_field1":-123, "nested_struct_field2":"nested_value"}} {"null_key":null} [null, "value1", "value2"] ["value1", null, "value2"] ["value1", "value2", null] [null, null, null] 20240321 +false -128 -32768 -2147483648 -9223372036854775808 -123.45 -123456.789 -123456789 -1234.5678 -123456.789012 -123456789.012345678901 string_value binary_value 2024-03-21 2024-03-21T12:00 2024-03-21T12:00:00.123456 2024-03-21T12:00:00.123456 char_value1 char_value2 char_value3 varchar_value1 varchar_value2 varchar_value3 {"key1":"value1"} {"key1":"value1"} {"x":"y"} {2:20} {2:200000000000} {2.2:20.2} {2.2:20.2} {0:1} {2.2:2.2} {2.34:2.34} {2.3456:2.3456} {2.34567890:2.34567890} {2.34567890:2.34567890} {2.3456789012345679:2.3456789012345679} ["string1", "string2"] [4, 5, 6] [300000000000, 400000000000] [3.3, 4.4] [3.123456789, 4.123456789] [0, 1] ["varchar1", "varchar2"] ["char1", "char2"] [3.3, 4.4] [3.45, 4.56] [3.4567, 4.5678] [3.45678901, 4.56789012] [3.45678901, 4.56789012] [3.4567890123456789, 4.5678901234567890] {"s_bigint":-1234567890} {"key":[{"s_int":-123}]} {"struct_field":["value1", "value2"]} {"struct_field_null":null, "struct_field_null2":null} {"struct_non_nulls_after_nulls1":-123, "struct_non_nulls_after_nulls2":"value"} {"struct_field1":-123, "struct_field2":"value", "strict_field3":{"nested_struct_field1":-123, "nested_struct_field2":"nested_value"}} {"null_key":null} [null, "value1", "value2"] ["value1", null, "value2"] ["value1", "value2", null] [null, null, null] 20240321 +false -128 -32768 -2147483648 -9223372036854775808 -123.45 -123456.789 -123456789 -1234.5678 -123456.789012 -123456789.012345678901 string_value binary_value 2024-03-22 2024-03-22T12:00 2024-03-22T12:00:00.123456 2024-03-22T12:00:00.123456 char_value1 char_value2 char_value3 varchar_value1 varchar_value2 varchar_value3 {"key1":"value1"} {"key1":"value1"} {"x":"y"} {3:20} {3:200000000000} {3.2:20.2} {3.2:20.2} {0:1} {3.2:2.2} {3.34:2.34} {2.3456:2.3456} {2.34567890:2.34567890} {2.34567890:2.34567890} {3.3456789012345679:2.3456789012345679} ["string1", "string2"] [4, 5, 6] [300000000000, 400000000000] [3.3, 4.4] [3.123456789, 4.123456789] [0, 1] ["varchar1", "varchar2"] ["char1", "char2"] [3.3, 4.4] [3.45, 4.56] [8.4567, 4.5678] [3.45678901, 4.56789012] [3.45678901, 4.56789012] [3.4567890123456789, 4.5678901234567890] {"s_bigint":-1234567890} {"key":[{"s_int":-123}]} {"struct_field":["value1", "value2"]} {"struct_field_null":null, "struct_field_null2":null} {"struct_non_nulls_after_nulls1":-123, "struct_non_nulls_after_nulls2":"value"} {"struct_field1":-123, "struct_field2":"value", "strict_field3":{"nested_struct_field1":-123, "nested_struct_field2":"nested_value"}} {"null_key":null} [null, "value1", "value2"] ["value1", null, "value2"] ["value11", "value2", null] [null, null, null] 20240322 +false -128 -32768 -2147483648 -9223372036854775808 -123.45 -123456.789 -123456789 -1234.5678 -123456.789012 -123456789.012345678901 string_value binary_value 2024-03-22 2024-03-22T12:00 2024-03-22T12:00:00.123456 2024-03-22T12:00:00.123456 char_value1 char_value2 char_value3 varchar_value1 varchar_value2 varchar_value3 {"key1":"value1"} {"key1":"value1"} {"x":"y"} {3:20} {3:200000000000} {3.2:20.2} {3.2:20.2} {0:1} {3.2:2.2} {3.34:2.34} {2.3456:2.3456} {2.34567890:2.34567890} {2.34567890:2.34567890} {3.3456789012345679:2.3456789012345679} ["string1", "string2"] [4, 5, 6] [300000000000, 400000000000] [3.3, 4.4] [3.123456789, 4.123456789] [0, 1] ["varchar1", "varchar2"] ["char1", "char2"] [3.3, 4.4] [3.45, 4.56] [8.4567, 4.5678] [3.45678901, 4.56789012] [3.45678901, 4.56789012] [3.4567890123456789, 4.5678901234567890] {"s_bigint":-1234567890} {"key":[{"s_int":-123}]} {"struct_field":["value1", "value2"]} {"struct_field_null":null, "struct_field_null2":null} {"struct_non_nulls_after_nulls1":-123, "struct_non_nulls_after_nulls2":"value"} {"struct_field1":-123, "struct_field2":"value", "strict_field3":{"nested_struct_field1":-123, "nested_struct_field2":"nested_value"}} {"null_key":null} [null, "value1", "value2"] ["value1", null, "value2"] ["value11", "value2", null] [null, null, null] 20240322 +true 127 32767 2147483647 9223372036854775807 123.45 123456.789 123456789 1234.5678 123456.789012 123456789.012345678901 string_value binary_value 2024-03-20 2024-03-20T12:00 2024-03-20T12:00:00.123456 2024-03-20T12:00:00.123456 char_value1 char_value2 char_value3 varchar_value1 varchar_value2 varchar_value3 {"key1":"value1"} {"key1":"value1"} {"a":"b"} {1:10} {1:100000000000} {1.1:10.1} {1.1:10.1} {1:0} {1.1:1.1} {1.23:1.23} {1.2345:1.2345} {1.23456789:1.23456789} {1.23456789:1.23456789} {1.2345678901234568:1.2345678901234568} ["string1", "string2"] [1, 2, 3] [100000000000, 200000000000] [1.1, 2.2] [1.123456789, 2.123456789] [1, 0] ["varchar1", "varchar2"] ["char1", "char2"] [1.1, 2.2] [1.23, 2.34] [1.2345, 2.3456] [1.23456789, 2.34567891] [1.23456789, 2.34567891] [1.2345678901234568, 2.3456789012345679] {"s_bigint":1234567890} {"key":[{"s_int":123}]} {"struct_field":["value1", "value2"]} {"struct_field_null":null, "struct_field_null2":null} {"struct_non_nulls_after_nulls1":123, "struct_non_nulls_after_nulls2":"value"} {"struct_field1":123, "struct_field2":"value", "strict_field3":{"nested_struct_field1":123, "nested_struct_field2":"nested_value"}} {"null_key":null} [null, "value1", "value2"] ["value1", null, "value2"] ["value1", "value2", null] [null, null, null] 20240320 +true 127 32767 2147483647 9223372036854775807 123.45 123456.789 123456789 1234.5678 123456.789012 123456789.012345678901 string_value binary_value 2024-03-20 2024-03-20T12:00 2024-03-20T12:00:00.123456 2024-03-20T12:00:00.123456 char_value1 char_value2 char_value3 varchar_value1 varchar_value2 varchar_value3 {"key1":"value1"} {"key1":"value1"} {"a":"b"} {1:10} {1:100000000000} {1.1:10.1} {1.1:10.1} {1:0} {1.1:1.1} {1.23:1.23} {1.2345:1.2345} {1.23456789:1.23456789} {1.23456789:1.23456789} {1.2345678901234568:1.2345678901234568} ["string1", "string2"] [1, 2, 3] [100000000000, 200000000000] [1.1, 2.2] [1.123456789, 2.123456789] [1, 0] ["varchar1", "varchar2"] ["char1", "char2"] [1.1, 2.2] [1.23, 2.34] [1.2345, 2.3456] [1.23456789, 2.34567891] [1.23456789, 2.34567891] [1.2345678901234568, 2.3456789012345679] {"s_bigint":1234567890} {"key":[{"s_int":123}]} {"struct_field":["value1", "value2"]} {"struct_field_null":null, "struct_field_null2":null} {"struct_non_nulls_after_nulls1":123, "struct_non_nulls_after_nulls2":"value"} {"struct_field1":123, "struct_field2":"value", "strict_field3":{"nested_struct_field1":123, "nested_struct_field2":"nested_value"}} {"null_key":null} [null, "value1", "value2"] ["value1", null, "value2"] ["value1", "value2", null] [null, null, null] 20240320 -- !q03 -- \N \N \N \N \N -123.45 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N {2:20} \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N [3.4567, 4.5678] \N \N \N \N \N \N \N \N \N \N [null, "value1", "value2"] \N \N \N \N \N \N \N \N \N -123.45 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N {3:20} \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N [8.4567, 4.5678] \N \N \N \N \N \N \N \N \N \N [null, "value1", "value2"] \N \N \N \N \N \N \N \N \N 123.45 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N {1:10} \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N [1.2345, 2.3456] \N \N \N \N \N \N \N \N \N \N [null, "value1", "value2"] \N \N \N \N -false -128 -32768 -2147483648 -9223372036854775808 -123.45 -123456.789 -123456789 -1234.5678 -123456.789012 -123456789.012345678901 string_value binary_value 2024-03-21 2024-03-21T12:00 2024-03-21T12:00:00.123456 2024-03-21T12:00:00.123456 char_value1 char_value2 char_value3 varchar_value1 varchar_value2 varchar_value3 {"key1":"value1"} {"key1":"value1"} {"x":"y"} {2:20} {2:200000000000} {2.2:20.2} {2.2:20.2} {0:1} {2.2:2.2} {2.34:2.34} {2.3456:2.3456} {2.34567890:2.34567890} {2.34567890:2.34567890} {2.3456789012345679:2.3456789012345679} ["string1", "string2"] [4, 5, 6] [300000000000, 400000000000] [3.3, 4.4] [3.123456789, 4.123456789] [0, 1] ["varchar1", "varchar2"] ["char1", "char2"] [3.3, 4.4] [3.45, 4.56] [3.4567, 4.5678] [3.45678901, 4.56789012] [3.45678901, 4.56789012] [3.4567890123456789, 4.5678901234567890] {"s_bigint": -1234567890} {"key":[{"s_int": -123}]} {"struct_field": ["value1", "value2"]} {"struct_field_null": null, "struct_field_null2": null} {"struct_non_nulls_after_nulls1": -123, "struct_non_nulls_after_nulls2": "value"} {"struct_field1": -123, "struct_field2": "value", "strict_field3": {"nested_struct_field1": -123, "nested_struct_field2": "nested_value"}} {"null_key":null} [null, "value1", "value2"] ["value1", null, "value2"] ["value1", "value2", null] [null, null, null] 20240321 -false -128 -32768 -2147483648 -9223372036854775808 -123.45 -123456.789 -123456789 -1234.5678 -123456.789012 -123456789.012345678901 string_value binary_value 2024-03-21 2024-03-21T12:00 2024-03-21T12:00:00.123456 2024-03-21T12:00:00.123456 char_value1 char_value2 char_value3 varchar_value1 varchar_value2 varchar_value3 {"key1":"value1"} {"key1":"value1"} {"x":"y"} {2:20} {2:200000000000} {2.2:20.2} {2.2:20.2} {0:1} {2.2:2.2} {2.34:2.34} {2.3456:2.3456} {2.34567890:2.34567890} {2.34567890:2.34567890} {2.3456789012345679:2.3456789012345679} ["string1", "string2"] [4, 5, 6] [300000000000, 400000000000] [3.3, 4.4] [3.123456789, 4.123456789] [0, 1] ["varchar1", "varchar2"] ["char1", "char2"] [3.3, 4.4] [3.45, 4.56] [3.4567, 4.5678] [3.45678901, 4.56789012] [3.45678901, 4.56789012] [3.4567890123456789, 4.5678901234567890] {"s_bigint": -1234567890} {"key":[{"s_int": -123}]} {"struct_field": ["value1", "value2"]} {"struct_field_null": null, "struct_field_null2": null} {"struct_non_nulls_after_nulls1": -123, "struct_non_nulls_after_nulls2": "value"} {"struct_field1": -123, "struct_field2": "value", "strict_field3": {"nested_struct_field1": -123, "nested_struct_field2": "nested_value"}} {"null_key":null} [null, "value1", "value2"] ["value1", null, "value2"] ["value1", "value2", null] [null, null, null] 20240321 -false -128 -32768 -2147483648 -9223372036854775808 -123.45 -123456.789 -123456789 -1234.5678 -123456.789012 -123456789.012345678901 string_value binary_value 2024-03-22 2024-03-22T12:00 2024-03-22T12:00:00.123456 2024-03-22T12:00:00.123456 char_value1 char_value2 char_value3 varchar_value1 varchar_value2 varchar_value3 {"key1":"value1"} {"key1":"value1"} {"x":"y"} {3:20} {3:200000000000} {3.2:20.2} {3.2:20.2} {0:1} {3.2:2.2} {3.34:2.34} {2.3456:2.3456} {2.34567890:2.34567890} {2.34567890:2.34567890} {3.3456789012345679:2.3456789012345679} ["string1", "string2"] [4, 5, 6] [300000000000, 400000000000] [3.3, 4.4] [3.123456789, 4.123456789] [0, 1] ["varchar1", "varchar2"] ["char1", "char2"] [3.3, 4.4] [3.45, 4.56] [8.4567, 4.5678] [3.45678901, 4.56789012] [3.45678901, 4.56789012] [3.4567890123456789, 4.5678901234567890] {"s_bigint": -1234567890} {"key":[{"s_int": -123}]} {"struct_field": ["value1", "value2"]} {"struct_field_null": null, "struct_field_null2": null} {"struct_non_nulls_after_nulls1": -123, "struct_non_nulls_after_nulls2": "value"} {"struct_field1": -123, "struct_field2": "value", "strict_field3": {"nested_struct_field1": -123, "nested_struct_field2": "nested_value"}} {"null_key":null} [null, "value1", "value2"] ["value1", null, "value2"] ["value11", "value2", null] [null, null, null] 20240322 -false -128 -32768 -2147483648 -9223372036854775808 -123.45 -123456.789 -123456789 -1234.5678 -123456.789012 -123456789.012345678901 string_value binary_value 2024-03-22 2024-03-22T12:00 2024-03-22T12:00:00.123456 2024-03-22T12:00:00.123456 char_value1 char_value2 char_value3 varchar_value1 varchar_value2 varchar_value3 {"key1":"value1"} {"key1":"value1"} {"x":"y"} {3:20} {3:200000000000} {3.2:20.2} {3.2:20.2} {0:1} {3.2:2.2} {3.34:2.34} {2.3456:2.3456} {2.34567890:2.34567890} {2.34567890:2.34567890} {3.3456789012345679:2.3456789012345679} ["string1", "string2"] [4, 5, 6] [300000000000, 400000000000] [3.3, 4.4] [3.123456789, 4.123456789] [0, 1] ["varchar1", "varchar2"] ["char1", "char2"] [3.3, 4.4] [3.45, 4.56] [8.4567, 4.5678] [3.45678901, 4.56789012] [3.45678901, 4.56789012] [3.4567890123456789, 4.5678901234567890] {"s_bigint": -1234567890} {"key":[{"s_int": -123}]} {"struct_field": ["value1", "value2"]} {"struct_field_null": null, "struct_field_null2": null} {"struct_non_nulls_after_nulls1": -123, "struct_non_nulls_after_nulls2": "value"} {"struct_field1": -123, "struct_field2": "value", "strict_field3": {"nested_struct_field1": -123, "nested_struct_field2": "nested_value"}} {"null_key":null} [null, "value1", "value2"] ["value1", null, "value2"] ["value11", "value2", null] [null, null, null] 20240322 -true 127 32767 2147483647 9223372036854775807 123.45 123456.789 123456789 1234.5678 123456.789012 123456789.012345678901 string_value binary_value 2024-03-20 2024-03-20T12:00 2024-03-20T12:00:00.123456 2024-03-20T12:00:00.123456 char_value1 char_value2 char_value3 varchar_value1 varchar_value2 varchar_value3 {"key1":"value1"} {"key1":"value1"} {"a":"b"} {1:10} {1:100000000000} {1.1:10.1} {1.1:10.1} {1:0} {1.1:1.1} {1.23:1.23} {1.2345:1.2345} {1.23456789:1.23456789} {1.23456789:1.23456789} {1.2345678901234568:1.2345678901234568} ["string1", "string2"] [1, 2, 3] [100000000000, 200000000000] [1.1, 2.2] [1.123456789, 2.123456789] [1, 0] ["varchar1", "varchar2"] ["char1", "char2"] [1.1, 2.2] [1.23, 2.34] [1.2345, 2.3456] [1.23456789, 2.34567891] [1.23456789, 2.34567891] [1.2345678901234568, 2.3456789012345679] {"s_bigint": 1234567890} {"key":[{"s_int": 123}]} {"struct_field": ["value1", "value2"]} {"struct_field_null": null, "struct_field_null2": null} {"struct_non_nulls_after_nulls1": 123, "struct_non_nulls_after_nulls2": "value"} {"struct_field1": 123, "struct_field2": "value", "strict_field3": {"nested_struct_field1": 123, "nested_struct_field2": "nested_value"}} {"null_key":null} [null, "value1", "value2"] ["value1", null, "value2"] ["value1", "value2", null] [null, null, null] 20240320 -true 127 32767 2147483647 9223372036854775807 123.45 123456.789 123456789 1234.5678 123456.789012 123456789.012345678901 string_value binary_value 2024-03-20 2024-03-20T12:00 2024-03-20T12:00:00.123456 2024-03-20T12:00:00.123456 char_value1 char_value2 char_value3 varchar_value1 varchar_value2 varchar_value3 {"key1":"value1"} {"key1":"value1"} {"a":"b"} {1:10} {1:100000000000} {1.1:10.1} {1.1:10.1} {1:0} {1.1:1.1} {1.23:1.23} {1.2345:1.2345} {1.23456789:1.23456789} {1.23456789:1.23456789} {1.2345678901234568:1.2345678901234568} ["string1", "string2"] [1, 2, 3] [100000000000, 200000000000] [1.1, 2.2] [1.123456789, 2.123456789] [1, 0] ["varchar1", "varchar2"] ["char1", "char2"] [1.1, 2.2] [1.23, 2.34] [1.2345, 2.3456] [1.23456789, 2.34567891] [1.23456789, 2.34567891] [1.2345678901234568, 2.3456789012345679] {"s_bigint": 1234567890} {"key":[{"s_int": 123}]} {"struct_field": ["value1", "value2"]} {"struct_field_null": null, "struct_field_null2": null} {"struct_non_nulls_after_nulls1": 123, "struct_non_nulls_after_nulls2": "value"} {"struct_field1": 123, "struct_field2": "value", "strict_field3": {"nested_struct_field1": 123, "nested_struct_field2": "nested_value"}} {"null_key":null} [null, "value1", "value2"] ["value1", null, "value2"] ["value1", "value2", null] [null, null, null] 20240320 +false -128 -32768 -2147483648 -9223372036854775808 -123.45 -123456.789 -123456789 -1234.5678 -123456.789012 -123456789.012345678901 string_value binary_value 2024-03-21 2024-03-21T12:00 2024-03-21T12:00:00.123456 2024-03-21T12:00:00.123456 char_value1 char_value2 char_value3 varchar_value1 varchar_value2 varchar_value3 {"key1":"value1"} {"key1":"value1"} {"x":"y"} {2:20} {2:200000000000} {2.2:20.2} {2.2:20.2} {0:1} {2.2:2.2} {2.34:2.34} {2.3456:2.3456} {2.34567890:2.34567890} {2.34567890:2.34567890} {2.3456789012345679:2.3456789012345679} ["string1", "string2"] [4, 5, 6] [300000000000, 400000000000] [3.3, 4.4] [3.123456789, 4.123456789] [0, 1] ["varchar1", "varchar2"] ["char1", "char2"] [3.3, 4.4] [3.45, 4.56] [3.4567, 4.5678] [3.45678901, 4.56789012] [3.45678901, 4.56789012] [3.4567890123456789, 4.5678901234567890] {"s_bigint":-1234567890} {"key":[{"s_int":-123}]} {"struct_field":["value1", "value2"]} {"struct_field_null":null, "struct_field_null2":null} {"struct_non_nulls_after_nulls1":-123, "struct_non_nulls_after_nulls2":"value"} {"struct_field1":-123, "struct_field2":"value", "strict_field3":{"nested_struct_field1":-123, "nested_struct_field2":"nested_value"}} {"null_key":null} [null, "value1", "value2"] ["value1", null, "value2"] ["value1", "value2", null] [null, null, null] 20240321 +false -128 -32768 -2147483648 -9223372036854775808 -123.45 -123456.789 -123456789 -1234.5678 -123456.789012 -123456789.012345678901 string_value binary_value 2024-03-21 2024-03-21T12:00 2024-03-21T12:00:00.123456 2024-03-21T12:00:00.123456 char_value1 char_value2 char_value3 varchar_value1 varchar_value2 varchar_value3 {"key1":"value1"} {"key1":"value1"} {"x":"y"} {2:20} {2:200000000000} {2.2:20.2} {2.2:20.2} {0:1} {2.2:2.2} {2.34:2.34} {2.3456:2.3456} {2.34567890:2.34567890} {2.34567890:2.34567890} {2.3456789012345679:2.3456789012345679} ["string1", "string2"] [4, 5, 6] [300000000000, 400000000000] [3.3, 4.4] [3.123456789, 4.123456789] [0, 1] ["varchar1", "varchar2"] ["char1", "char2"] [3.3, 4.4] [3.45, 4.56] [3.4567, 4.5678] [3.45678901, 4.56789012] [3.45678901, 4.56789012] [3.4567890123456789, 4.5678901234567890] {"s_bigint":-1234567890} {"key":[{"s_int":-123}]} {"struct_field":["value1", "value2"]} {"struct_field_null":null, "struct_field_null2":null} {"struct_non_nulls_after_nulls1":-123, "struct_non_nulls_after_nulls2":"value"} {"struct_field1":-123, "struct_field2":"value", "strict_field3":{"nested_struct_field1":-123, "nested_struct_field2":"nested_value"}} {"null_key":null} [null, "value1", "value2"] ["value1", null, "value2"] ["value1", "value2", null] [null, null, null] 20240321 +false -128 -32768 -2147483648 -9223372036854775808 -123.45 -123456.789 -123456789 -1234.5678 -123456.789012 -123456789.012345678901 string_value binary_value 2024-03-22 2024-03-22T12:00 2024-03-22T12:00:00.123456 2024-03-22T12:00:00.123456 char_value1 char_value2 char_value3 varchar_value1 varchar_value2 varchar_value3 {"key1":"value1"} {"key1":"value1"} {"x":"y"} {3:20} {3:200000000000} {3.2:20.2} {3.2:20.2} {0:1} {3.2:2.2} {3.34:2.34} {2.3456:2.3456} {2.34567890:2.34567890} {2.34567890:2.34567890} {3.3456789012345679:2.3456789012345679} ["string1", "string2"] [4, 5, 6] [300000000000, 400000000000] [3.3, 4.4] [3.123456789, 4.123456789] [0, 1] ["varchar1", "varchar2"] ["char1", "char2"] [3.3, 4.4] [3.45, 4.56] [8.4567, 4.5678] [3.45678901, 4.56789012] [3.45678901, 4.56789012] [3.4567890123456789, 4.5678901234567890] {"s_bigint":-1234567890} {"key":[{"s_int":-123}]} {"struct_field":["value1", "value2"]} {"struct_field_null":null, "struct_field_null2":null} {"struct_non_nulls_after_nulls1":-123, "struct_non_nulls_after_nulls2":"value"} {"struct_field1":-123, "struct_field2":"value", "strict_field3":{"nested_struct_field1":-123, "nested_struct_field2":"nested_value"}} {"null_key":null} [null, "value1", "value2"] ["value1", null, "value2"] ["value11", "value2", null] [null, null, null] 20240322 +false -128 -32768 -2147483648 -9223372036854775808 -123.45 -123456.789 -123456789 -1234.5678 -123456.789012 -123456789.012345678901 string_value binary_value 2024-03-22 2024-03-22T12:00 2024-03-22T12:00:00.123456 2024-03-22T12:00:00.123456 char_value1 char_value2 char_value3 varchar_value1 varchar_value2 varchar_value3 {"key1":"value1"} {"key1":"value1"} {"x":"y"} {3:20} {3:200000000000} {3.2:20.2} {3.2:20.2} {0:1} {3.2:2.2} {3.34:2.34} {2.3456:2.3456} {2.34567890:2.34567890} {2.34567890:2.34567890} {3.3456789012345679:2.3456789012345679} ["string1", "string2"] [4, 5, 6] [300000000000, 400000000000] [3.3, 4.4] [3.123456789, 4.123456789] [0, 1] ["varchar1", "varchar2"] ["char1", "char2"] [3.3, 4.4] [3.45, 4.56] [8.4567, 4.5678] [3.45678901, 4.56789012] [3.45678901, 4.56789012] [3.4567890123456789, 4.5678901234567890] {"s_bigint":-1234567890} {"key":[{"s_int":-123}]} {"struct_field":["value1", "value2"]} {"struct_field_null":null, "struct_field_null2":null} {"struct_non_nulls_after_nulls1":-123, "struct_non_nulls_after_nulls2":"value"} {"struct_field1":-123, "struct_field2":"value", "strict_field3":{"nested_struct_field1":-123, "nested_struct_field2":"nested_value"}} {"null_key":null} [null, "value1", "value2"] ["value1", null, "value2"] ["value11", "value2", null] [null, null, null] 20240322 +true 127 32767 2147483647 9223372036854775807 123.45 123456.789 123456789 1234.5678 123456.789012 123456789.012345678901 string_value binary_value 2024-03-20 2024-03-20T12:00 2024-03-20T12:00:00.123456 2024-03-20T12:00:00.123456 char_value1 char_value2 char_value3 varchar_value1 varchar_value2 varchar_value3 {"key1":"value1"} {"key1":"value1"} {"a":"b"} {1:10} {1:100000000000} {1.1:10.1} {1.1:10.1} {1:0} {1.1:1.1} {1.23:1.23} {1.2345:1.2345} {1.23456789:1.23456789} {1.23456789:1.23456789} {1.2345678901234568:1.2345678901234568} ["string1", "string2"] [1, 2, 3] [100000000000, 200000000000] [1.1, 2.2] [1.123456789, 2.123456789] [1, 0] ["varchar1", "varchar2"] ["char1", "char2"] [1.1, 2.2] [1.23, 2.34] [1.2345, 2.3456] [1.23456789, 2.34567891] [1.23456789, 2.34567891] [1.2345678901234568, 2.3456789012345679] {"s_bigint":1234567890} {"key":[{"s_int":123}]} {"struct_field":["value1", "value2"]} {"struct_field_null":null, "struct_field_null2":null} {"struct_non_nulls_after_nulls1":123, "struct_non_nulls_after_nulls2":"value"} {"struct_field1":123, "struct_field2":"value", "strict_field3":{"nested_struct_field1":123, "nested_struct_field2":"nested_value"}} {"null_key":null} [null, "value1", "value2"] ["value1", null, "value2"] ["value1", "value2", null] [null, null, null] 20240320 +true 127 32767 2147483647 9223372036854775807 123.45 123456.789 123456789 1234.5678 123456.789012 123456789.012345678901 string_value binary_value 2024-03-20 2024-03-20T12:00 2024-03-20T12:00:00.123456 2024-03-20T12:00:00.123456 char_value1 char_value2 char_value3 varchar_value1 varchar_value2 varchar_value3 {"key1":"value1"} {"key1":"value1"} {"a":"b"} {1:10} {1:100000000000} {1.1:10.1} {1.1:10.1} {1:0} {1.1:1.1} {1.23:1.23} {1.2345:1.2345} {1.23456789:1.23456789} {1.23456789:1.23456789} {1.2345678901234568:1.2345678901234568} ["string1", "string2"] [1, 2, 3] [100000000000, 200000000000] [1.1, 2.2] [1.123456789, 2.123456789] [1, 0] ["varchar1", "varchar2"] ["char1", "char2"] [1.1, 2.2] [1.23, 2.34] [1.2345, 2.3456] [1.23456789, 2.34567891] [1.23456789, 2.34567891] [1.2345678901234568, 2.3456789012345679] {"s_bigint":1234567890} {"key":[{"s_int":123}]} {"struct_field":["value1", "value2"]} {"struct_field_null":null, "struct_field_null2":null} {"struct_non_nulls_after_nulls1":123, "struct_non_nulls_after_nulls2":"value"} {"struct_field1":123, "struct_field2":"value", "strict_field3":{"nested_struct_field1":123, "nested_struct_field2":"nested_value"}} {"null_key":null} [null, "value1", "value2"] ["value1", null, "value2"] ["value1", "value2", null] [null, null, null] 20240320 -- !q04 -- \N \N \N \N \N -123.45 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N {2:20} \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N [3.4567, 4.5678] \N \N \N \N \N \N \N \N \N \N [null, "value1", "value2"] \N \N \N \N @@ -31,28 +31,28 @@ true 127 32767 2147483647 9223372036854775807 123.45 123456.789 123456789 1234.5 -- !q05 -- -- !q01 -- -false -128 -32768 -2147483648 -9223372036854775808 -123.45 -123456.789 -123456789 -1234.5678 -123456.789012 -123456789.012345678901 string_value binary_value 2024-03-21 2024-03-21T12:00 2024-03-21T12:00:00.123456 2024-03-21T12:00:00.123456 char_value1 char_value2 char_value3 varchar_value1 varchar_value2 varchar_value3 {"key1":"value1"} {"key1":"value1"} {"x":"y"} {2:20} {2:200000000000} {2.2:20.2} {2.2:20.2} {0:1} {2.2:2.2} {2.34:2.34} {2.3456:2.3456} {2.34567890:2.34567890} {2.34567890:2.34567890} {2.3456789012345679:2.3456789012345679} ["string1", "string2"] [4, 5, 6] [300000000000, 400000000000] [3.3, 4.4] [3.123456789, 4.123456789] [0, 1] ["varchar1", "varchar2"] ["char1", "char2"] [3.3, 4.4] [3.45, 4.56] [3.4567, 4.5678] [3.45678901, 4.56789012] [3.45678901, 4.56789012] [3.4567890123456789, 4.5678901234567890] {"s_bigint": -1234567890} {"key":[{"s_int": -123}]} {"struct_field": ["value1", "value2"]} {"struct_field_null": null, "struct_field_null2": null} {"struct_non_nulls_after_nulls1": -123, "struct_non_nulls_after_nulls2": "value"} {"struct_field1": -123, "struct_field2": "value", "strict_field3": {"nested_struct_field1": -123, "nested_struct_field2": "nested_value"}} {"null_key":null} [null, "value1", "value2"] ["value1", null, "value2"] ["value1", "value2", null] [null, null, null] 20240321 -false -128 -32768 -2147483648 -9223372036854775808 -123.45 -123456.789 -123456789 -1234.5678 -123456.789012 -123456789.012345678901 string_value binary_value 2024-03-22 2024-03-22T12:00 2024-03-22T12:00:00.123456 2024-03-22T12:00:00.123456 char_value1 char_value2 char_value3 varchar_value1 varchar_value2 varchar_value3 {"key1":"value1"} {"key1":"value1"} {"x":"y"} {3:20} {3:200000000000} {3.2:20.2} {3.2:20.2} {0:1} {3.2:2.2} {3.34:2.34} {2.3456:2.3456} {2.34567890:2.34567890} {2.34567890:2.34567890} {3.3456789012345679:2.3456789012345679} ["string1", "string2"] [4, 5, 6] [300000000000, 400000000000] [3.3, 4.4] [3.123456789, 4.123456789] [0, 1] ["varchar1", "varchar2"] ["char1", "char2"] [3.3, 4.4] [3.45, 4.56] [8.4567, 4.5678] [3.45678901, 4.56789012] [3.45678901, 4.56789012] [3.4567890123456789, 4.5678901234567890] {"s_bigint": -1234567890} {"key":[{"s_int": -123}]} {"struct_field": ["value1", "value2"]} {"struct_field_null": null, "struct_field_null2": null} {"struct_non_nulls_after_nulls1": -123, "struct_non_nulls_after_nulls2": "value"} {"struct_field1": -123, "struct_field2": "value", "strict_field3": {"nested_struct_field1": -123, "nested_struct_field2": "nested_value"}} {"null_key":null} [null, "value1", "value2"] ["value1", null, "value2"] ["value11", "value2", null] [null, null, null] 20240322 -true 127 32767 2147483647 9223372036854775807 123.45 123456.789 123456789 1234.5678 123456.789012 123456789.012345678901 string_value binary_value 2024-03-20 2024-03-20T12:00 2024-03-20T12:00:00.123456 2024-03-20T12:00:00.123456 char_value1 char_value2 char_value3 varchar_value1 varchar_value2 varchar_value3 {"key1":"value1"} {"key1":"value1"} {"a":"b"} {1:10} {1:100000000000} {1.1:10.1} {1.1:10.1} {1:0} {1.1:1.1} {1.23:1.23} {1.2345:1.2345} {1.23456789:1.23456789} {1.23456789:1.23456789} {1.2345678901234568:1.2345678901234568} ["string1", "string2"] [1, 2, 3] [100000000000, 200000000000] [1.1, 2.2] [1.123456789, 2.123456789] [1, 0] ["varchar1", "varchar2"] ["char1", "char2"] [1.1, 2.2] [1.23, 2.34] [1.2345, 2.3456] [1.23456789, 2.34567891] [1.23456789, 2.34567891] [1.2345678901234568, 2.3456789012345679] {"s_bigint": 1234567890} {"key":[{"s_int": 123}]} {"struct_field": ["value1", "value2"]} {"struct_field_null": null, "struct_field_null2": null} {"struct_non_nulls_after_nulls1": 123, "struct_non_nulls_after_nulls2": "value"} {"struct_field1": 123, "struct_field2": "value", "strict_field3": {"nested_struct_field1": 123, "nested_struct_field2": "nested_value"}} {"null_key":null} [null, "value1", "value2"] ["value1", null, "value2"] ["value1", "value2", null] [null, null, null] 20240320 +false -128 -32768 -2147483648 -9223372036854775808 -123.45 -123456.789 -123456789 -1234.5678 -123456.789012 -123456789.012345678901 string_value binary_value 2024-03-21 2024-03-21T12:00 2024-03-21T12:00:00.123456 2024-03-21T12:00:00.123456 char_value1 char_value2 char_value3 varchar_value1 varchar_value2 varchar_value3 {"key1":"value1"} {"key1":"value1"} {"x":"y"} {2:20} {2:200000000000} {2.2:20.2} {2.2:20.2} {0:1} {2.2:2.2} {2.34:2.34} {2.3456:2.3456} {2.34567890:2.34567890} {2.34567890:2.34567890} {2.3456789012345679:2.3456789012345679} ["string1", "string2"] [4, 5, 6] [300000000000, 400000000000] [3.3, 4.4] [3.123456789, 4.123456789] [0, 1] ["varchar1", "varchar2"] ["char1", "char2"] [3.3, 4.4] [3.45, 4.56] [3.4567, 4.5678] [3.45678901, 4.56789012] [3.45678901, 4.56789012] [3.4567890123456789, 4.5678901234567890] {"s_bigint":-1234567890} {"key":[{"s_int":-123}]} {"struct_field":["value1", "value2"]} {"struct_field_null":null, "struct_field_null2":null} {"struct_non_nulls_after_nulls1":-123, "struct_non_nulls_after_nulls2":"value"} {"struct_field1":-123, "struct_field2":"value", "strict_field3":{"nested_struct_field1":-123, "nested_struct_field2":"nested_value"}} {"null_key":null} [null, "value1", "value2"] ["value1", null, "value2"] ["value1", "value2", null] [null, null, null] 20240321 +false -128 -32768 -2147483648 -9223372036854775808 -123.45 -123456.789 -123456789 -1234.5678 -123456.789012 -123456789.012345678901 string_value binary_value 2024-03-22 2024-03-22T12:00 2024-03-22T12:00:00.123456 2024-03-22T12:00:00.123456 char_value1 char_value2 char_value3 varchar_value1 varchar_value2 varchar_value3 {"key1":"value1"} {"key1":"value1"} {"x":"y"} {3:20} {3:200000000000} {3.2:20.2} {3.2:20.2} {0:1} {3.2:2.2} {3.34:2.34} {2.3456:2.3456} {2.34567890:2.34567890} {2.34567890:2.34567890} {3.3456789012345679:2.3456789012345679} ["string1", "string2"] [4, 5, 6] [300000000000, 400000000000] [3.3, 4.4] [3.123456789, 4.123456789] [0, 1] ["varchar1", "varchar2"] ["char1", "char2"] [3.3, 4.4] [3.45, 4.56] [8.4567, 4.5678] [3.45678901, 4.56789012] [3.45678901, 4.56789012] [3.4567890123456789, 4.5678901234567890] {"s_bigint":-1234567890} {"key":[{"s_int":-123}]} {"struct_field":["value1", "value2"]} {"struct_field_null":null, "struct_field_null2":null} {"struct_non_nulls_after_nulls1":-123, "struct_non_nulls_after_nulls2":"value"} {"struct_field1":-123, "struct_field2":"value", "strict_field3":{"nested_struct_field1":-123, "nested_struct_field2":"nested_value"}} {"null_key":null} [null, "value1", "value2"] ["value1", null, "value2"] ["value11", "value2", null] [null, null, null] 20240322 +true 127 32767 2147483647 9223372036854775807 123.45 123456.789 123456789 1234.5678 123456.789012 123456789.012345678901 string_value binary_value 2024-03-20 2024-03-20T12:00 2024-03-20T12:00:00.123456 2024-03-20T12:00:00.123456 char_value1 char_value2 char_value3 varchar_value1 varchar_value2 varchar_value3 {"key1":"value1"} {"key1":"value1"} {"a":"b"} {1:10} {1:100000000000} {1.1:10.1} {1.1:10.1} {1:0} {1.1:1.1} {1.23:1.23} {1.2345:1.2345} {1.23456789:1.23456789} {1.23456789:1.23456789} {1.2345678901234568:1.2345678901234568} ["string1", "string2"] [1, 2, 3] [100000000000, 200000000000] [1.1, 2.2] [1.123456789, 2.123456789] [1, 0] ["varchar1", "varchar2"] ["char1", "char2"] [1.1, 2.2] [1.23, 2.34] [1.2345, 2.3456] [1.23456789, 2.34567891] [1.23456789, 2.34567891] [1.2345678901234568, 2.3456789012345679] {"s_bigint":1234567890} {"key":[{"s_int":123}]} {"struct_field":["value1", "value2"]} {"struct_field_null":null, "struct_field_null2":null} {"struct_non_nulls_after_nulls1":123, "struct_non_nulls_after_nulls2":"value"} {"struct_field1":123, "struct_field2":"value", "strict_field3":{"nested_struct_field1":123, "nested_struct_field2":"nested_value"}} {"null_key":null} [null, "value1", "value2"] ["value1", null, "value2"] ["value1", "value2", null] [null, null, null] 20240320 -- !q02 -- -false -128 -32768 -2147483648 -9223372036854775808 -123.45 -123456.789 -123456789 -1234.5678 -123456.789012 -123456789.012345678901 string_value binary_value 2024-03-21 2024-03-21T12:00 2024-03-21T12:00:00.123456 2024-03-21T12:00:00.123456 char_value1 char_value2 char_value3 varchar_value1 varchar_value2 varchar_value3 {"key1":"value1"} {"key1":"value1"} {"x":"y"} {2:20} {2:200000000000} {2.2:20.2} {2.2:20.2} {0:1} {2.2:2.2} {2.34:2.34} {2.3456:2.3456} {2.34567890:2.34567890} {2.34567890:2.34567890} {2.3456789012345679:2.3456789012345679} ["string1", "string2"] [4, 5, 6] [300000000000, 400000000000] [3.3, 4.4] [3.123456789, 4.123456789] [0, 1] ["varchar1", "varchar2"] ["char1", "char2"] [3.3, 4.4] [3.45, 4.56] [3.4567, 4.5678] [3.45678901, 4.56789012] [3.45678901, 4.56789012] [3.4567890123456789, 4.5678901234567890] {"s_bigint": -1234567890} {"key":[{"s_int": -123}]} {"struct_field": ["value1", "value2"]} {"struct_field_null": null, "struct_field_null2": null} {"struct_non_nulls_after_nulls1": -123, "struct_non_nulls_after_nulls2": "value"} {"struct_field1": -123, "struct_field2": "value", "strict_field3": {"nested_struct_field1": -123, "nested_struct_field2": "nested_value"}} {"null_key":null} [null, "value1", "value2"] ["value1", null, "value2"] ["value1", "value2", null] [null, null, null] 20240321 -false -128 -32768 -2147483648 -9223372036854775808 -123.45 -123456.789 -123456789 -1234.5678 -123456.789012 -123456789.012345678901 string_value binary_value 2024-03-21 2024-03-21T12:00 2024-03-21T12:00:00.123456 2024-03-21T12:00:00.123456 char_value1 char_value2 char_value3 varchar_value1 varchar_value2 varchar_value3 {"key1":"value1"} {"key1":"value1"} {"x":"y"} {2:20} {2:200000000000} {2.2:20.2} {2.2:20.2} {0:1} {2.2:2.2} {2.34:2.34} {2.3456:2.3456} {2.34567890:2.34567890} {2.34567890:2.34567890} {2.3456789012345679:2.3456789012345679} ["string1", "string2"] [4, 5, 6] [300000000000, 400000000000] [3.3, 4.4] [3.123456789, 4.123456789] [0, 1] ["varchar1", "varchar2"] ["char1", "char2"] [3.3, 4.4] [3.45, 4.56] [3.4567, 4.5678] [3.45678901, 4.56789012] [3.45678901, 4.56789012] [3.4567890123456789, 4.5678901234567890] {"s_bigint": -1234567890} {"key":[{"s_int": -123}]} {"struct_field": ["value1", "value2"]} {"struct_field_null": null, "struct_field_null2": null} {"struct_non_nulls_after_nulls1": -123, "struct_non_nulls_after_nulls2": "value"} {"struct_field1": -123, "struct_field2": "value", "strict_field3": {"nested_struct_field1": -123, "nested_struct_field2": "nested_value"}} {"null_key":null} [null, "value1", "value2"] ["value1", null, "value2"] ["value1", "value2", null] [null, null, null] 20240321 -false -128 -32768 -2147483648 -9223372036854775808 -123.45 -123456.789 -123456789 -1234.5678 -123456.789012 -123456789.012345678901 string_value binary_value 2024-03-22 2024-03-22T12:00 2024-03-22T12:00:00.123456 2024-03-22T12:00:00.123456 char_value1 char_value2 char_value3 varchar_value1 varchar_value2 varchar_value3 {"key1":"value1"} {"key1":"value1"} {"x":"y"} {3:20} {3:200000000000} {3.2:20.2} {3.2:20.2} {0:1} {3.2:2.2} {3.34:2.34} {2.3456:2.3456} {2.34567890:2.34567890} {2.34567890:2.34567890} {3.3456789012345679:2.3456789012345679} ["string1", "string2"] [4, 5, 6] [300000000000, 400000000000] [3.3, 4.4] [3.123456789, 4.123456789] [0, 1] ["varchar1", "varchar2"] ["char1", "char2"] [3.3, 4.4] [3.45, 4.56] [8.4567, 4.5678] [3.45678901, 4.56789012] [3.45678901, 4.56789012] [3.4567890123456789, 4.5678901234567890] {"s_bigint": -1234567890} {"key":[{"s_int": -123}]} {"struct_field": ["value1", "value2"]} {"struct_field_null": null, "struct_field_null2": null} {"struct_non_nulls_after_nulls1": -123, "struct_non_nulls_after_nulls2": "value"} {"struct_field1": -123, "struct_field2": "value", "strict_field3": {"nested_struct_field1": -123, "nested_struct_field2": "nested_value"}} {"null_key":null} [null, "value1", "value2"] ["value1", null, "value2"] ["value11", "value2", null] [null, null, null] 20240322 -false -128 -32768 -2147483648 -9223372036854775808 -123.45 -123456.789 -123456789 -1234.5678 -123456.789012 -123456789.012345678901 string_value binary_value 2024-03-22 2024-03-22T12:00 2024-03-22T12:00:00.123456 2024-03-22T12:00:00.123456 char_value1 char_value2 char_value3 varchar_value1 varchar_value2 varchar_value3 {"key1":"value1"} {"key1":"value1"} {"x":"y"} {3:20} {3:200000000000} {3.2:20.2} {3.2:20.2} {0:1} {3.2:2.2} {3.34:2.34} {2.3456:2.3456} {2.34567890:2.34567890} {2.34567890:2.34567890} {3.3456789012345679:2.3456789012345679} ["string1", "string2"] [4, 5, 6] [300000000000, 400000000000] [3.3, 4.4] [3.123456789, 4.123456789] [0, 1] ["varchar1", "varchar2"] ["char1", "char2"] [3.3, 4.4] [3.45, 4.56] [8.4567, 4.5678] [3.45678901, 4.56789012] [3.45678901, 4.56789012] [3.4567890123456789, 4.5678901234567890] {"s_bigint": -1234567890} {"key":[{"s_int": -123}]} {"struct_field": ["value1", "value2"]} {"struct_field_null": null, "struct_field_null2": null} {"struct_non_nulls_after_nulls1": -123, "struct_non_nulls_after_nulls2": "value"} {"struct_field1": -123, "struct_field2": "value", "strict_field3": {"nested_struct_field1": -123, "nested_struct_field2": "nested_value"}} {"null_key":null} [null, "value1", "value2"] ["value1", null, "value2"] ["value11", "value2", null] [null, null, null] 20240322 -true 127 32767 2147483647 9223372036854775807 123.45 123456.789 123456789 1234.5678 123456.789012 123456789.012345678901 string_value binary_value 2024-03-20 2024-03-20T12:00 2024-03-20T12:00:00.123456 2024-03-20T12:00:00.123456 char_value1 char_value2 char_value3 varchar_value1 varchar_value2 varchar_value3 {"key1":"value1"} {"key1":"value1"} {"a":"b"} {1:10} {1:100000000000} {1.1:10.1} {1.1:10.1} {1:0} {1.1:1.1} {1.23:1.23} {1.2345:1.2345} {1.23456789:1.23456789} {1.23456789:1.23456789} {1.2345678901234568:1.2345678901234568} ["string1", "string2"] [1, 2, 3] [100000000000, 200000000000] [1.1, 2.2] [1.123456789, 2.123456789] [1, 0] ["varchar1", "varchar2"] ["char1", "char2"] [1.1, 2.2] [1.23, 2.34] [1.2345, 2.3456] [1.23456789, 2.34567891] [1.23456789, 2.34567891] [1.2345678901234568, 2.3456789012345679] {"s_bigint": 1234567890} {"key":[{"s_int": 123}]} {"struct_field": ["value1", "value2"]} {"struct_field_null": null, "struct_field_null2": null} {"struct_non_nulls_after_nulls1": 123, "struct_non_nulls_after_nulls2": "value"} {"struct_field1": 123, "struct_field2": "value", "strict_field3": {"nested_struct_field1": 123, "nested_struct_field2": "nested_value"}} {"null_key":null} [null, "value1", "value2"] ["value1", null, "value2"] ["value1", "value2", null] [null, null, null] 20240320 -true 127 32767 2147483647 9223372036854775807 123.45 123456.789 123456789 1234.5678 123456.789012 123456789.012345678901 string_value binary_value 2024-03-20 2024-03-20T12:00 2024-03-20T12:00:00.123456 2024-03-20T12:00:00.123456 char_value1 char_value2 char_value3 varchar_value1 varchar_value2 varchar_value3 {"key1":"value1"} {"key1":"value1"} {"a":"b"} {1:10} {1:100000000000} {1.1:10.1} {1.1:10.1} {1:0} {1.1:1.1} {1.23:1.23} {1.2345:1.2345} {1.23456789:1.23456789} {1.23456789:1.23456789} {1.2345678901234568:1.2345678901234568} ["string1", "string2"] [1, 2, 3] [100000000000, 200000000000] [1.1, 2.2] [1.123456789, 2.123456789] [1, 0] ["varchar1", "varchar2"] ["char1", "char2"] [1.1, 2.2] [1.23, 2.34] [1.2345, 2.3456] [1.23456789, 2.34567891] [1.23456789, 2.34567891] [1.2345678901234568, 2.3456789012345679] {"s_bigint": 1234567890} {"key":[{"s_int": 123}]} {"struct_field": ["value1", "value2"]} {"struct_field_null": null, "struct_field_null2": null} {"struct_non_nulls_after_nulls1": 123, "struct_non_nulls_after_nulls2": "value"} {"struct_field1": 123, "struct_field2": "value", "strict_field3": {"nested_struct_field1": 123, "nested_struct_field2": "nested_value"}} {"null_key":null} [null, "value1", "value2"] ["value1", null, "value2"] ["value1", "value2", null] [null, null, null] 20240320 +false -128 -32768 -2147483648 -9223372036854775808 -123.45 -123456.789 -123456789 -1234.5678 -123456.789012 -123456789.012345678901 string_value binary_value 2024-03-21 2024-03-21T12:00 2024-03-21T12:00:00.123456 2024-03-21T12:00:00.123456 char_value1 char_value2 char_value3 varchar_value1 varchar_value2 varchar_value3 {"key1":"value1"} {"key1":"value1"} {"x":"y"} {2:20} {2:200000000000} {2.2:20.2} {2.2:20.2} {0:1} {2.2:2.2} {2.34:2.34} {2.3456:2.3456} {2.34567890:2.34567890} {2.34567890:2.34567890} {2.3456789012345679:2.3456789012345679} ["string1", "string2"] [4, 5, 6] [300000000000, 400000000000] [3.3, 4.4] [3.123456789, 4.123456789] [0, 1] ["varchar1", "varchar2"] ["char1", "char2"] [3.3, 4.4] [3.45, 4.56] [3.4567, 4.5678] [3.45678901, 4.56789012] [3.45678901, 4.56789012] [3.4567890123456789, 4.5678901234567890] {"s_bigint":-1234567890} {"key":[{"s_int":-123}]} {"struct_field":["value1", "value2"]} {"struct_field_null":null, "struct_field_null2":null} {"struct_non_nulls_after_nulls1":-123, "struct_non_nulls_after_nulls2":"value"} {"struct_field1":-123, "struct_field2":"value", "strict_field3":{"nested_struct_field1":-123, "nested_struct_field2":"nested_value"}} {"null_key":null} [null, "value1", "value2"] ["value1", null, "value2"] ["value1", "value2", null] [null, null, null] 20240321 +false -128 -32768 -2147483648 -9223372036854775808 -123.45 -123456.789 -123456789 -1234.5678 -123456.789012 -123456789.012345678901 string_value binary_value 2024-03-21 2024-03-21T12:00 2024-03-21T12:00:00.123456 2024-03-21T12:00:00.123456 char_value1 char_value2 char_value3 varchar_value1 varchar_value2 varchar_value3 {"key1":"value1"} {"key1":"value1"} {"x":"y"} {2:20} {2:200000000000} {2.2:20.2} {2.2:20.2} {0:1} {2.2:2.2} {2.34:2.34} {2.3456:2.3456} {2.34567890:2.34567890} {2.34567890:2.34567890} {2.3456789012345679:2.3456789012345679} ["string1", "string2"] [4, 5, 6] [300000000000, 400000000000] [3.3, 4.4] [3.123456789, 4.123456789] [0, 1] ["varchar1", "varchar2"] ["char1", "char2"] [3.3, 4.4] [3.45, 4.56] [3.4567, 4.5678] [3.45678901, 4.56789012] [3.45678901, 4.56789012] [3.4567890123456789, 4.5678901234567890] {"s_bigint":-1234567890} {"key":[{"s_int":-123}]} {"struct_field":["value1", "value2"]} {"struct_field_null":null, "struct_field_null2":null} {"struct_non_nulls_after_nulls1":-123, "struct_non_nulls_after_nulls2":"value"} {"struct_field1":-123, "struct_field2":"value", "strict_field3":{"nested_struct_field1":-123, "nested_struct_field2":"nested_value"}} {"null_key":null} [null, "value1", "value2"] ["value1", null, "value2"] ["value1", "value2", null] [null, null, null] 20240321 +false -128 -32768 -2147483648 -9223372036854775808 -123.45 -123456.789 -123456789 -1234.5678 -123456.789012 -123456789.012345678901 string_value binary_value 2024-03-22 2024-03-22T12:00 2024-03-22T12:00:00.123456 2024-03-22T12:00:00.123456 char_value1 char_value2 char_value3 varchar_value1 varchar_value2 varchar_value3 {"key1":"value1"} {"key1":"value1"} {"x":"y"} {3:20} {3:200000000000} {3.2:20.2} {3.2:20.2} {0:1} {3.2:2.2} {3.34:2.34} {2.3456:2.3456} {2.34567890:2.34567890} {2.34567890:2.34567890} {3.3456789012345679:2.3456789012345679} ["string1", "string2"] [4, 5, 6] [300000000000, 400000000000] [3.3, 4.4] [3.123456789, 4.123456789] [0, 1] ["varchar1", "varchar2"] ["char1", "char2"] [3.3, 4.4] [3.45, 4.56] [8.4567, 4.5678] [3.45678901, 4.56789012] [3.45678901, 4.56789012] [3.4567890123456789, 4.5678901234567890] {"s_bigint":-1234567890} {"key":[{"s_int":-123}]} {"struct_field":["value1", "value2"]} {"struct_field_null":null, "struct_field_null2":null} {"struct_non_nulls_after_nulls1":-123, "struct_non_nulls_after_nulls2":"value"} {"struct_field1":-123, "struct_field2":"value", "strict_field3":{"nested_struct_field1":-123, "nested_struct_field2":"nested_value"}} {"null_key":null} [null, "value1", "value2"] ["value1", null, "value2"] ["value11", "value2", null] [null, null, null] 20240322 +false -128 -32768 -2147483648 -9223372036854775808 -123.45 -123456.789 -123456789 -1234.5678 -123456.789012 -123456789.012345678901 string_value binary_value 2024-03-22 2024-03-22T12:00 2024-03-22T12:00:00.123456 2024-03-22T12:00:00.123456 char_value1 char_value2 char_value3 varchar_value1 varchar_value2 varchar_value3 {"key1":"value1"} {"key1":"value1"} {"x":"y"} {3:20} {3:200000000000} {3.2:20.2} {3.2:20.2} {0:1} {3.2:2.2} {3.34:2.34} {2.3456:2.3456} {2.34567890:2.34567890} {2.34567890:2.34567890} {3.3456789012345679:2.3456789012345679} ["string1", "string2"] [4, 5, 6] [300000000000, 400000000000] [3.3, 4.4] [3.123456789, 4.123456789] [0, 1] ["varchar1", "varchar2"] ["char1", "char2"] [3.3, 4.4] [3.45, 4.56] [8.4567, 4.5678] [3.45678901, 4.56789012] [3.45678901, 4.56789012] [3.4567890123456789, 4.5678901234567890] {"s_bigint":-1234567890} {"key":[{"s_int":-123}]} {"struct_field":["value1", "value2"]} {"struct_field_null":null, "struct_field_null2":null} {"struct_non_nulls_after_nulls1":-123, "struct_non_nulls_after_nulls2":"value"} {"struct_field1":-123, "struct_field2":"value", "strict_field3":{"nested_struct_field1":-123, "nested_struct_field2":"nested_value"}} {"null_key":null} [null, "value1", "value2"] ["value1", null, "value2"] ["value11", "value2", null] [null, null, null] 20240322 +true 127 32767 2147483647 9223372036854775807 123.45 123456.789 123456789 1234.5678 123456.789012 123456789.012345678901 string_value binary_value 2024-03-20 2024-03-20T12:00 2024-03-20T12:00:00.123456 2024-03-20T12:00:00.123456 char_value1 char_value2 char_value3 varchar_value1 varchar_value2 varchar_value3 {"key1":"value1"} {"key1":"value1"} {"a":"b"} {1:10} {1:100000000000} {1.1:10.1} {1.1:10.1} {1:0} {1.1:1.1} {1.23:1.23} {1.2345:1.2345} {1.23456789:1.23456789} {1.23456789:1.23456789} {1.2345678901234568:1.2345678901234568} ["string1", "string2"] [1, 2, 3] [100000000000, 200000000000] [1.1, 2.2] [1.123456789, 2.123456789] [1, 0] ["varchar1", "varchar2"] ["char1", "char2"] [1.1, 2.2] [1.23, 2.34] [1.2345, 2.3456] [1.23456789, 2.34567891] [1.23456789, 2.34567891] [1.2345678901234568, 2.3456789012345679] {"s_bigint":1234567890} {"key":[{"s_int":123}]} {"struct_field":["value1", "value2"]} {"struct_field_null":null, "struct_field_null2":null} {"struct_non_nulls_after_nulls1":123, "struct_non_nulls_after_nulls2":"value"} {"struct_field1":123, "struct_field2":"value", "strict_field3":{"nested_struct_field1":123, "nested_struct_field2":"nested_value"}} {"null_key":null} [null, "value1", "value2"] ["value1", null, "value2"] ["value1", "value2", null] [null, null, null] 20240320 +true 127 32767 2147483647 9223372036854775807 123.45 123456.789 123456789 1234.5678 123456.789012 123456789.012345678901 string_value binary_value 2024-03-20 2024-03-20T12:00 2024-03-20T12:00:00.123456 2024-03-20T12:00:00.123456 char_value1 char_value2 char_value3 varchar_value1 varchar_value2 varchar_value3 {"key1":"value1"} {"key1":"value1"} {"a":"b"} {1:10} {1:100000000000} {1.1:10.1} {1.1:10.1} {1:0} {1.1:1.1} {1.23:1.23} {1.2345:1.2345} {1.23456789:1.23456789} {1.23456789:1.23456789} {1.2345678901234568:1.2345678901234568} ["string1", "string2"] [1, 2, 3] [100000000000, 200000000000] [1.1, 2.2] [1.123456789, 2.123456789] [1, 0] ["varchar1", "varchar2"] ["char1", "char2"] [1.1, 2.2] [1.23, 2.34] [1.2345, 2.3456] [1.23456789, 2.34567891] [1.23456789, 2.34567891] [1.2345678901234568, 2.3456789012345679] {"s_bigint":1234567890} {"key":[{"s_int":123}]} {"struct_field":["value1", "value2"]} {"struct_field_null":null, "struct_field_null2":null} {"struct_non_nulls_after_nulls1":123, "struct_non_nulls_after_nulls2":"value"} {"struct_field1":123, "struct_field2":"value", "strict_field3":{"nested_struct_field1":123, "nested_struct_field2":"nested_value"}} {"null_key":null} [null, "value1", "value2"] ["value1", null, "value2"] ["value1", "value2", null] [null, null, null] 20240320 -- !q03 -- \N \N \N \N \N -123.45 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N {2:20} \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N [3.4567, 4.5678] \N \N \N \N \N \N \N \N \N \N [null, "value1", "value2"] \N \N \N 20240321 \N \N \N \N \N -123.45 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N {3:20} \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N [8.4567, 4.5678] \N \N \N \N \N \N \N \N \N \N [null, "value1", "value2"] \N \N \N 20240322 \N \N \N \N \N 123.45 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N {1:10} \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N [1.2345, 2.3456] \N \N \N \N \N \N \N \N \N \N [null, "value1", "value2"] \N \N \N 20240320 -false -128 -32768 -2147483648 -9223372036854775808 -123.45 -123456.789 -123456789 -1234.5678 -123456.789012 -123456789.012345678901 string_value binary_value 2024-03-21 2024-03-21T12:00 2024-03-21T12:00:00.123456 2024-03-21T12:00:00.123456 char_value1 char_value2 char_value3 varchar_value1 varchar_value2 varchar_value3 {"key1":"value1"} {"key1":"value1"} {"x":"y"} {2:20} {2:200000000000} {2.2:20.2} {2.2:20.2} {0:1} {2.2:2.2} {2.34:2.34} {2.3456:2.3456} {2.34567890:2.34567890} {2.34567890:2.34567890} {2.3456789012345679:2.3456789012345679} ["string1", "string2"] [4, 5, 6] [300000000000, 400000000000] [3.3, 4.4] [3.123456789, 4.123456789] [0, 1] ["varchar1", "varchar2"] ["char1", "char2"] [3.3, 4.4] [3.45, 4.56] [3.4567, 4.5678] [3.45678901, 4.56789012] [3.45678901, 4.56789012] [3.4567890123456789, 4.5678901234567890] {"s_bigint": -1234567890} {"key":[{"s_int": -123}]} {"struct_field": ["value1", "value2"]} {"struct_field_null": null, "struct_field_null2": null} {"struct_non_nulls_after_nulls1": -123, "struct_non_nulls_after_nulls2": "value"} {"struct_field1": -123, "struct_field2": "value", "strict_field3": {"nested_struct_field1": -123, "nested_struct_field2": "nested_value"}} {"null_key":null} [null, "value1", "value2"] ["value1", null, "value2"] ["value1", "value2", null] [null, null, null] 20240321 -false -128 -32768 -2147483648 -9223372036854775808 -123.45 -123456.789 -123456789 -1234.5678 -123456.789012 -123456789.012345678901 string_value binary_value 2024-03-21 2024-03-21T12:00 2024-03-21T12:00:00.123456 2024-03-21T12:00:00.123456 char_value1 char_value2 char_value3 varchar_value1 varchar_value2 varchar_value3 {"key1":"value1"} {"key1":"value1"} {"x":"y"} {2:20} {2:200000000000} {2.2:20.2} {2.2:20.2} {0:1} {2.2:2.2} {2.34:2.34} {2.3456:2.3456} {2.34567890:2.34567890} {2.34567890:2.34567890} {2.3456789012345679:2.3456789012345679} ["string1", "string2"] [4, 5, 6] [300000000000, 400000000000] [3.3, 4.4] [3.123456789, 4.123456789] [0, 1] ["varchar1", "varchar2"] ["char1", "char2"] [3.3, 4.4] [3.45, 4.56] [3.4567, 4.5678] [3.45678901, 4.56789012] [3.45678901, 4.56789012] [3.4567890123456789, 4.5678901234567890] {"s_bigint": -1234567890} {"key":[{"s_int": -123}]} {"struct_field": ["value1", "value2"]} {"struct_field_null": null, "struct_field_null2": null} {"struct_non_nulls_after_nulls1": -123, "struct_non_nulls_after_nulls2": "value"} {"struct_field1": -123, "struct_field2": "value", "strict_field3": {"nested_struct_field1": -123, "nested_struct_field2": "nested_value"}} {"null_key":null} [null, "value1", "value2"] ["value1", null, "value2"] ["value1", "value2", null] [null, null, null] 20240321 -false -128 -32768 -2147483648 -9223372036854775808 -123.45 -123456.789 -123456789 -1234.5678 -123456.789012 -123456789.012345678901 string_value binary_value 2024-03-22 2024-03-22T12:00 2024-03-22T12:00:00.123456 2024-03-22T12:00:00.123456 char_value1 char_value2 char_value3 varchar_value1 varchar_value2 varchar_value3 {"key1":"value1"} {"key1":"value1"} {"x":"y"} {3:20} {3:200000000000} {3.2:20.2} {3.2:20.2} {0:1} {3.2:2.2} {3.34:2.34} {2.3456:2.3456} {2.34567890:2.34567890} {2.34567890:2.34567890} {3.3456789012345679:2.3456789012345679} ["string1", "string2"] [4, 5, 6] [300000000000, 400000000000] [3.3, 4.4] [3.123456789, 4.123456789] [0, 1] ["varchar1", "varchar2"] ["char1", "char2"] [3.3, 4.4] [3.45, 4.56] [8.4567, 4.5678] [3.45678901, 4.56789012] [3.45678901, 4.56789012] [3.4567890123456789, 4.5678901234567890] {"s_bigint": -1234567890} {"key":[{"s_int": -123}]} {"struct_field": ["value1", "value2"]} {"struct_field_null": null, "struct_field_null2": null} {"struct_non_nulls_after_nulls1": -123, "struct_non_nulls_after_nulls2": "value"} {"struct_field1": -123, "struct_field2": "value", "strict_field3": {"nested_struct_field1": -123, "nested_struct_field2": "nested_value"}} {"null_key":null} [null, "value1", "value2"] ["value1", null, "value2"] ["value11", "value2", null] [null, null, null] 20240322 -false -128 -32768 -2147483648 -9223372036854775808 -123.45 -123456.789 -123456789 -1234.5678 -123456.789012 -123456789.012345678901 string_value binary_value 2024-03-22 2024-03-22T12:00 2024-03-22T12:00:00.123456 2024-03-22T12:00:00.123456 char_value1 char_value2 char_value3 varchar_value1 varchar_value2 varchar_value3 {"key1":"value1"} {"key1":"value1"} {"x":"y"} {3:20} {3:200000000000} {3.2:20.2} {3.2:20.2} {0:1} {3.2:2.2} {3.34:2.34} {2.3456:2.3456} {2.34567890:2.34567890} {2.34567890:2.34567890} {3.3456789012345679:2.3456789012345679} ["string1", "string2"] [4, 5, 6] [300000000000, 400000000000] [3.3, 4.4] [3.123456789, 4.123456789] [0, 1] ["varchar1", "varchar2"] ["char1", "char2"] [3.3, 4.4] [3.45, 4.56] [8.4567, 4.5678] [3.45678901, 4.56789012] [3.45678901, 4.56789012] [3.4567890123456789, 4.5678901234567890] {"s_bigint": -1234567890} {"key":[{"s_int": -123}]} {"struct_field": ["value1", "value2"]} {"struct_field_null": null, "struct_field_null2": null} {"struct_non_nulls_after_nulls1": -123, "struct_non_nulls_after_nulls2": "value"} {"struct_field1": -123, "struct_field2": "value", "strict_field3": {"nested_struct_field1": -123, "nested_struct_field2": "nested_value"}} {"null_key":null} [null, "value1", "value2"] ["value1", null, "value2"] ["value11", "value2", null] [null, null, null] 20240322 -true 127 32767 2147483647 9223372036854775807 123.45 123456.789 123456789 1234.5678 123456.789012 123456789.012345678901 string_value binary_value 2024-03-20 2024-03-20T12:00 2024-03-20T12:00:00.123456 2024-03-20T12:00:00.123456 char_value1 char_value2 char_value3 varchar_value1 varchar_value2 varchar_value3 {"key1":"value1"} {"key1":"value1"} {"a":"b"} {1:10} {1:100000000000} {1.1:10.1} {1.1:10.1} {1:0} {1.1:1.1} {1.23:1.23} {1.2345:1.2345} {1.23456789:1.23456789} {1.23456789:1.23456789} {1.2345678901234568:1.2345678901234568} ["string1", "string2"] [1, 2, 3] [100000000000, 200000000000] [1.1, 2.2] [1.123456789, 2.123456789] [1, 0] ["varchar1", "varchar2"] ["char1", "char2"] [1.1, 2.2] [1.23, 2.34] [1.2345, 2.3456] [1.23456789, 2.34567891] [1.23456789, 2.34567891] [1.2345678901234568, 2.3456789012345679] {"s_bigint": 1234567890} {"key":[{"s_int": 123}]} {"struct_field": ["value1", "value2"]} {"struct_field_null": null, "struct_field_null2": null} {"struct_non_nulls_after_nulls1": 123, "struct_non_nulls_after_nulls2": "value"} {"struct_field1": 123, "struct_field2": "value", "strict_field3": {"nested_struct_field1": 123, "nested_struct_field2": "nested_value"}} {"null_key":null} [null, "value1", "value2"] ["value1", null, "value2"] ["value1", "value2", null] [null, null, null] 20240320 -true 127 32767 2147483647 9223372036854775807 123.45 123456.789 123456789 1234.5678 123456.789012 123456789.012345678901 string_value binary_value 2024-03-20 2024-03-20T12:00 2024-03-20T12:00:00.123456 2024-03-20T12:00:00.123456 char_value1 char_value2 char_value3 varchar_value1 varchar_value2 varchar_value3 {"key1":"value1"} {"key1":"value1"} {"a":"b"} {1:10} {1:100000000000} {1.1:10.1} {1.1:10.1} {1:0} {1.1:1.1} {1.23:1.23} {1.2345:1.2345} {1.23456789:1.23456789} {1.23456789:1.23456789} {1.2345678901234568:1.2345678901234568} ["string1", "string2"] [1, 2, 3] [100000000000, 200000000000] [1.1, 2.2] [1.123456789, 2.123456789] [1, 0] ["varchar1", "varchar2"] ["char1", "char2"] [1.1, 2.2] [1.23, 2.34] [1.2345, 2.3456] [1.23456789, 2.34567891] [1.23456789, 2.34567891] [1.2345678901234568, 2.3456789012345679] {"s_bigint": 1234567890} {"key":[{"s_int": 123}]} {"struct_field": ["value1", "value2"]} {"struct_field_null": null, "struct_field_null2": null} {"struct_non_nulls_after_nulls1": 123, "struct_non_nulls_after_nulls2": "value"} {"struct_field1": 123, "struct_field2": "value", "strict_field3": {"nested_struct_field1": 123, "nested_struct_field2": "nested_value"}} {"null_key":null} [null, "value1", "value2"] ["value1", null, "value2"] ["value1", "value2", null] [null, null, null] 20240320 +false -128 -32768 -2147483648 -9223372036854775808 -123.45 -123456.789 -123456789 -1234.5678 -123456.789012 -123456789.012345678901 string_value binary_value 2024-03-21 2024-03-21T12:00 2024-03-21T12:00:00.123456 2024-03-21T12:00:00.123456 char_value1 char_value2 char_value3 varchar_value1 varchar_value2 varchar_value3 {"key1":"value1"} {"key1":"value1"} {"x":"y"} {2:20} {2:200000000000} {2.2:20.2} {2.2:20.2} {0:1} {2.2:2.2} {2.34:2.34} {2.3456:2.3456} {2.34567890:2.34567890} {2.34567890:2.34567890} {2.3456789012345679:2.3456789012345679} ["string1", "string2"] [4, 5, 6] [300000000000, 400000000000] [3.3, 4.4] [3.123456789, 4.123456789] [0, 1] ["varchar1", "varchar2"] ["char1", "char2"] [3.3, 4.4] [3.45, 4.56] [3.4567, 4.5678] [3.45678901, 4.56789012] [3.45678901, 4.56789012] [3.4567890123456789, 4.5678901234567890] {"s_bigint":-1234567890} {"key":[{"s_int":-123}]} {"struct_field":["value1", "value2"]} {"struct_field_null":null, "struct_field_null2":null} {"struct_non_nulls_after_nulls1":-123, "struct_non_nulls_after_nulls2":"value"} {"struct_field1":-123, "struct_field2":"value", "strict_field3":{"nested_struct_field1":-123, "nested_struct_field2":"nested_value"}} {"null_key":null} [null, "value1", "value2"] ["value1", null, "value2"] ["value1", "value2", null] [null, null, null] 20240321 +false -128 -32768 -2147483648 -9223372036854775808 -123.45 -123456.789 -123456789 -1234.5678 -123456.789012 -123456789.012345678901 string_value binary_value 2024-03-21 2024-03-21T12:00 2024-03-21T12:00:00.123456 2024-03-21T12:00:00.123456 char_value1 char_value2 char_value3 varchar_value1 varchar_value2 varchar_value3 {"key1":"value1"} {"key1":"value1"} {"x":"y"} {2:20} {2:200000000000} {2.2:20.2} {2.2:20.2} {0:1} {2.2:2.2} {2.34:2.34} {2.3456:2.3456} {2.34567890:2.34567890} {2.34567890:2.34567890} {2.3456789012345679:2.3456789012345679} ["string1", "string2"] [4, 5, 6] [300000000000, 400000000000] [3.3, 4.4] [3.123456789, 4.123456789] [0, 1] ["varchar1", "varchar2"] ["char1", "char2"] [3.3, 4.4] [3.45, 4.56] [3.4567, 4.5678] [3.45678901, 4.56789012] [3.45678901, 4.56789012] [3.4567890123456789, 4.5678901234567890] {"s_bigint":-1234567890} {"key":[{"s_int":-123}]} {"struct_field":["value1", "value2"]} {"struct_field_null":null, "struct_field_null2":null} {"struct_non_nulls_after_nulls1":-123, "struct_non_nulls_after_nulls2":"value"} {"struct_field1":-123, "struct_field2":"value", "strict_field3":{"nested_struct_field1":-123, "nested_struct_field2":"nested_value"}} {"null_key":null} [null, "value1", "value2"] ["value1", null, "value2"] ["value1", "value2", null] [null, null, null] 20240321 +false -128 -32768 -2147483648 -9223372036854775808 -123.45 -123456.789 -123456789 -1234.5678 -123456.789012 -123456789.012345678901 string_value binary_value 2024-03-22 2024-03-22T12:00 2024-03-22T12:00:00.123456 2024-03-22T12:00:00.123456 char_value1 char_value2 char_value3 varchar_value1 varchar_value2 varchar_value3 {"key1":"value1"} {"key1":"value1"} {"x":"y"} {3:20} {3:200000000000} {3.2:20.2} {3.2:20.2} {0:1} {3.2:2.2} {3.34:2.34} {2.3456:2.3456} {2.34567890:2.34567890} {2.34567890:2.34567890} {3.3456789012345679:2.3456789012345679} ["string1", "string2"] [4, 5, 6] [300000000000, 400000000000] [3.3, 4.4] [3.123456789, 4.123456789] [0, 1] ["varchar1", "varchar2"] ["char1", "char2"] [3.3, 4.4] [3.45, 4.56] [8.4567, 4.5678] [3.45678901, 4.56789012] [3.45678901, 4.56789012] [3.4567890123456789, 4.5678901234567890] {"s_bigint":-1234567890} {"key":[{"s_int":-123}]} {"struct_field":["value1", "value2"]} {"struct_field_null":null, "struct_field_null2":null} {"struct_non_nulls_after_nulls1":-123, "struct_non_nulls_after_nulls2":"value"} {"struct_field1":-123, "struct_field2":"value", "strict_field3":{"nested_struct_field1":-123, "nested_struct_field2":"nested_value"}} {"null_key":null} [null, "value1", "value2"] ["value1", null, "value2"] ["value11", "value2", null] [null, null, null] 20240322 +false -128 -32768 -2147483648 -9223372036854775808 -123.45 -123456.789 -123456789 -1234.5678 -123456.789012 -123456789.012345678901 string_value binary_value 2024-03-22 2024-03-22T12:00 2024-03-22T12:00:00.123456 2024-03-22T12:00:00.123456 char_value1 char_value2 char_value3 varchar_value1 varchar_value2 varchar_value3 {"key1":"value1"} {"key1":"value1"} {"x":"y"} {3:20} {3:200000000000} {3.2:20.2} {3.2:20.2} {0:1} {3.2:2.2} {3.34:2.34} {2.3456:2.3456} {2.34567890:2.34567890} {2.34567890:2.34567890} {3.3456789012345679:2.3456789012345679} ["string1", "string2"] [4, 5, 6] [300000000000, 400000000000] [3.3, 4.4] [3.123456789, 4.123456789] [0, 1] ["varchar1", "varchar2"] ["char1", "char2"] [3.3, 4.4] [3.45, 4.56] [8.4567, 4.5678] [3.45678901, 4.56789012] [3.45678901, 4.56789012] [3.4567890123456789, 4.5678901234567890] {"s_bigint":-1234567890} {"key":[{"s_int":-123}]} {"struct_field":["value1", "value2"]} {"struct_field_null":null, "struct_field_null2":null} {"struct_non_nulls_after_nulls1":-123, "struct_non_nulls_after_nulls2":"value"} {"struct_field1":-123, "struct_field2":"value", "strict_field3":{"nested_struct_field1":-123, "nested_struct_field2":"nested_value"}} {"null_key":null} [null, "value1", "value2"] ["value1", null, "value2"] ["value11", "value2", null] [null, null, null] 20240322 +true 127 32767 2147483647 9223372036854775807 123.45 123456.789 123456789 1234.5678 123456.789012 123456789.012345678901 string_value binary_value 2024-03-20 2024-03-20T12:00 2024-03-20T12:00:00.123456 2024-03-20T12:00:00.123456 char_value1 char_value2 char_value3 varchar_value1 varchar_value2 varchar_value3 {"key1":"value1"} {"key1":"value1"} {"a":"b"} {1:10} {1:100000000000} {1.1:10.1} {1.1:10.1} {1:0} {1.1:1.1} {1.23:1.23} {1.2345:1.2345} {1.23456789:1.23456789} {1.23456789:1.23456789} {1.2345678901234568:1.2345678901234568} ["string1", "string2"] [1, 2, 3] [100000000000, 200000000000] [1.1, 2.2] [1.123456789, 2.123456789] [1, 0] ["varchar1", "varchar2"] ["char1", "char2"] [1.1, 2.2] [1.23, 2.34] [1.2345, 2.3456] [1.23456789, 2.34567891] [1.23456789, 2.34567891] [1.2345678901234568, 2.3456789012345679] {"s_bigint":1234567890} {"key":[{"s_int":123}]} {"struct_field":["value1", "value2"]} {"struct_field_null":null, "struct_field_null2":null} {"struct_non_nulls_after_nulls1":123, "struct_non_nulls_after_nulls2":"value"} {"struct_field1":123, "struct_field2":"value", "strict_field3":{"nested_struct_field1":123, "nested_struct_field2":"nested_value"}} {"null_key":null} [null, "value1", "value2"] ["value1", null, "value2"] ["value1", "value2", null] [null, null, null] 20240320 +true 127 32767 2147483647 9223372036854775807 123.45 123456.789 123456789 1234.5678 123456.789012 123456789.012345678901 string_value binary_value 2024-03-20 2024-03-20T12:00 2024-03-20T12:00:00.123456 2024-03-20T12:00:00.123456 char_value1 char_value2 char_value3 varchar_value1 varchar_value2 varchar_value3 {"key1":"value1"} {"key1":"value1"} {"a":"b"} {1:10} {1:100000000000} {1.1:10.1} {1.1:10.1} {1:0} {1.1:1.1} {1.23:1.23} {1.2345:1.2345} {1.23456789:1.23456789} {1.23456789:1.23456789} {1.2345678901234568:1.2345678901234568} ["string1", "string2"] [1, 2, 3] [100000000000, 200000000000] [1.1, 2.2] [1.123456789, 2.123456789] [1, 0] ["varchar1", "varchar2"] ["char1", "char2"] [1.1, 2.2] [1.23, 2.34] [1.2345, 2.3456] [1.23456789, 2.34567891] [1.23456789, 2.34567891] [1.2345678901234568, 2.3456789012345679] {"s_bigint":1234567890} {"key":[{"s_int":123}]} {"struct_field":["value1", "value2"]} {"struct_field_null":null, "struct_field_null2":null} {"struct_non_nulls_after_nulls1":123, "struct_non_nulls_after_nulls2":"value"} {"struct_field1":123, "struct_field2":"value", "strict_field3":{"nested_struct_field1":123, "nested_struct_field2":"nested_value"}} {"null_key":null} [null, "value1", "value2"] ["value1", null, "value2"] ["value1", "value2", null] [null, null, null] 20240320 -- !q04 -- \N \N \N \N \N -123.45 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N {2:20} \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N [3.4567, 4.5678] \N \N \N \N \N \N \N \N \N \N [null, "value1", "value2"] \N \N \N 20240321 diff --git a/regression-test/data/external_table_p2/iceberg/iceberg_complex_type.out b/regression-test/data/external_table_p2/iceberg/iceberg_complex_type.out index 2250381e6f85d9..b236e47c390d0d 100644 --- a/regression-test/data/external_table_p2/iceberg/iceberg_complex_type.out +++ b/regression-test/data/external_table_p2/iceberg/iceberg_complex_type.out @@ -8,12 +8,12 @@ col5 MAP,yy:ARRAY>,zz:STRUCT>>> Yes true \N -- !parquet_v1_2 -- -1 [[[[[2, 2, 3, 9]]]]] {[2]:{2:{2:2}}} {"x": [2], "y": [2], "z": {1:"example"}} {2:{2:{2:{2:{2:{2:{"x": 2, "y": [2]}}}}}}} {"xx": [2, 2, 3, 9], "yy": [{2:2}], "zz": {"xxx": {"xxxx": {"xxxxx": 10123.33}}}} -2 [[[[[2, 2, 3, 9], [2, 2, 3, 9], [2, 2, 3, 9]]]]] {[2]:{2:{2:2}}} {"x": [2], "y": [2], "z": {1:"example"}} {2:{2:{2:{2:{2:{2:{"x": 2, "y": [2]}}}}}}} {"xx": [2, 2, 3, 9], "yy": [{2:2}], "zz": {"xxx": {"xxxx": {"xxxxx": 10123.33}}}} -3 [[[[[2, 2, 3, 9]], [[2, 2, 3, 9], [2, 2, 3, 9], [2, 2, 3, 9]]], [[[2, 2, 3, 9]], [[2, 2, 3, 9], [2, 2, 3, 9], [2, 2, 3, 9]]]], [[[[2, 2, 3, 9]], [[2, 2, 3, 9], [2, 2, 3, 9], [2, 2, 3, 9]]], [[[2, 2, 3, 9]], [[2, 2, 3, 9], [2, 2, 3, 9], [2, 2, 3, 9]]]]] {[2]:{2:{2:2}}} {"x": [2], "y": [2], "z": {1:"example"}} {2:{2:{2:{2:{2:{2:{"x": 2, "y": [2]}}}}}}} {"xx": [2, 2, 3, 9], "yy": [{2:2}], "zz": {"xxx": {"xxxx": {"xxxxx": 10123.33}}}} -4 [[[[[2, 2, 3, 9]], [[2, 2, 3, 9], [2, 2, 3, 9], [2, 2, 3, 9]]]]] {[2]:{2:{2:222}}} {"x": [2], "y": [2, 2, 22935, 99, 59, 955], "z": {1:"example"}} {2:{2:{2:{2:{2:{2:{"x": 2, "y": [2]}}}}}}} {"xx": [2, 2, 3, 9], "yy": [{2:2}], "zz": {"xxx": {"xxxx": {"xxxxx": 10123.33}}}} -5 [[[[[2, 2, 3, 9]]]]] {[2]:{2:{2:2}}} {"x": [2], "y": [2], "z": {1:"example"}} {2:{2:{2:{2:{2:{2:{"x": 2, "y": [2, 239, 39293259, 2223, 23, 59, 29, 9353]}}}}}}} {"xx": [2, 2, 3, 9], "yy": [{2:2}], "zz": {"xxx": {"xxxx": {"xxxxx": 10123.33}}}} -6 [[[[[2, 2, 3, 9]]]]] {[2]:{2:{2:2}}} {"x": [2], "y": [2], "z": {1:"example"}} {2:{2:{2:{2:{2:{2:{"x": 2, "y": [2]}}}}}}} {"xx": [2, 2, 3, 9], "yy": [{2:2}, {2:2}, {2:2}, {2:4}, {2:4}, {2:4}, {2:4}, {2:4}, {2:4}, {2:4}], "zz": {"xxx": {"xxxx": {"xxxxx": 10123.33}}}} +1 [[[[[2, 2, 3, 9]]]]] {[2]:{2:{2:2}}} {"x":[2], "y":[2], "z":{1:"example"}} {2:{2:{2:{2:{2:{2:{"x":2, "y":[2]}}}}}}} {"xx":[2, 2, 3, 9], "yy":[{2:2}], "zz":{"xxx":{"xxxx":{"xxxxx":10123.33}}}} +2 [[[[[2, 2, 3, 9], [2, 2, 3, 9], [2, 2, 3, 9]]]]] {[2]:{2:{2:2}}} {"x":[2], "y":[2], "z":{1:"example"}} {2:{2:{2:{2:{2:{2:{"x":2, "y":[2]}}}}}}} {"xx":[2, 2, 3, 9], "yy":[{2:2}], "zz":{"xxx":{"xxxx":{"xxxxx":10123.33}}}} +3 [[[[[2, 2, 3, 9]], [[2, 2, 3, 9], [2, 2, 3, 9], [2, 2, 3, 9]]], [[[2, 2, 3, 9]], [[2, 2, 3, 9], [2, 2, 3, 9], [2, 2, 3, 9]]]], [[[[2, 2, 3, 9]], [[2, 2, 3, 9], [2, 2, 3, 9], [2, 2, 3, 9]]], [[[2, 2, 3, 9]], [[2, 2, 3, 9], [2, 2, 3, 9], [2, 2, 3, 9]]]]] {[2]:{2:{2:2}}} {"x":[2], "y":[2], "z":{1:"example"}} {2:{2:{2:{2:{2:{2:{"x":2, "y":[2]}}}}}}} {"xx":[2, 2, 3, 9], "yy":[{2:2}], "zz":{"xxx":{"xxxx":{"xxxxx":10123.33}}}} +4 [[[[[2, 2, 3, 9]], [[2, 2, 3, 9], [2, 2, 3, 9], [2, 2, 3, 9]]]]] {[2]:{2:{2:222}}} {"x":[2], "y":[2, 2, 22935, 99, 59, 955], "z":{1:"example"}} {2:{2:{2:{2:{2:{2:{"x":2, "y":[2]}}}}}}} {"xx":[2, 2, 3, 9], "yy":[{2:2}], "zz":{"xxx":{"xxxx":{"xxxxx":10123.33}}}} +5 [[[[[2, 2, 3, 9]]]]] {[2]:{2:{2:2}}} {"x":[2], "y":[2], "z":{1:"example"}} {2:{2:{2:{2:{2:{2:{"x":2, "y":[2, 239, 39293259, 2223, 23, 59, 29, 9353]}}}}}}} {"xx":[2, 2, 3, 9], "yy":[{2:2}], "zz":{"xxx":{"xxxx":{"xxxxx":10123.33}}}} +6 [[[[[2, 2, 3, 9]]]]] {[2]:{2:{2:2}}} {"x":[2], "y":[2], "z":{1:"example"}} {2:{2:{2:{2:{2:{2:{"x":2, "y":[2]}}}}}}} {"xx":[2, 2, 3, 9], "yy":[{2:2}, {2:2}, {2:2}, {2:4}, {2:4}, {2:4}, {2:4}, {2:4}, {2:4}, {2:4}], "zz":{"xxx":{"xxxx":{"xxxxx":10123.33}}}} -- !parquet_v1_3 -- 6 @@ -49,12 +49,12 @@ col5 MAP,yy:ARRAY>,zz:STRUCT>>> Yes true \N -- !parquet_v2_2 -- -1 [[[[[2, 2, 3, 9]]]]] {[2]:{2:{2:2}}} {"x": [2], "y": [2], "z": {1:"example"}} {2:{2:{2:{2:{2:{2:{"x": 2, "y": [2]}}}}}}} {"xx": [2, 2, 3, 9], "yy": [{2:2}], "zz": {"xxx": {"xxxx": {"xxxxx": 10123.33}}}} -2 [[[[[2, 2, 3, 9], [2, 2, 3, 9], [2, 2, 3, 9]]]]] {[2]:{2:{2:2}}} {"x": [2], "y": [2], "z": {1:"example"}} {2:{2:{2:{2:{2:{2:{"x": 2, "y": [2]}}}}}}} {"xx": [2, 2, 3, 9], "yy": [{2:2}], "zz": {"xxx": {"xxxx": {"xxxxx": 10123.33}}}} -3 [[[[[2, 2, 3, 9]], [[2, 2, 3, 9], [2, 2, 3, 9], [2, 2, 3, 9]]], [[[2, 2, 3, 9]], [[2, 2, 3, 9], [2, 2, 3, 9], [2, 2, 3, 9]]]], [[[[2, 2, 3, 9]], [[2, 2, 3, 9], [2, 2, 3, 9], [2, 2, 3, 9]]], [[[2, 2, 3, 9]], [[2, 2, 3, 9], [2, 2, 3, 9], [2, 2, 3, 9]]]]] {[2]:{2:{2:2}}} {"x": [2], "y": [2], "z": {1:"example"}} {2:{2:{2:{2:{2:{2:{"x": 2, "y": [2]}}}}}}} {"xx": [2, 2, 3, 9], "yy": [{2:2}], "zz": {"xxx": {"xxxx": {"xxxxx": 10123.33}}}} -4 [[[[[2, 2, 3, 9]], [[2, 2, 3, 9], [2, 2, 3, 9], [2, 2, 3, 9]]]]] {[2]:{2:{2:222}}} {"x": [2], "y": [2, 2, 22935, 99, 59, 955], "z": {1:"example"}} {2:{2:{2:{2:{2:{2:{"x": 2, "y": [2]}}}}}}} {"xx": [2, 2, 3, 9], "yy": [{2:2}], "zz": {"xxx": {"xxxx": {"xxxxx": 10123.33}}}} -5 [[[[[2, 2, 3, 9]]]]] {[2]:{2:{2:2}}} {"x": [2], "y": [2], "z": {1:"example"}} {2:{2:{2:{2:{2:{2:{"x": 2, "y": [2, 239, 39293259, 2223, 23, 59, 29, 9353]}}}}}}} {"xx": [2, 2, 3, 9], "yy": [{2:2}], "zz": {"xxx": {"xxxx": {"xxxxx": 10123.33}}}} -6 [[[[[2, 2, 3, 9]]]]] {[2]:{2:{2:2}}} {"x": [2], "y": [2], "z": {1:"example"}} {2:{2:{2:{2:{2:{2:{"x": 2, "y": [2]}}}}}}} {"xx": [2, 2, 3, 9], "yy": [{2:2}, {2:2}, {2:2}, {2:4}, {2:4}, {2:4}, {2:4}, {2:4}, {2:4}, {2:4}], "zz": {"xxx": {"xxxx": {"xxxxx": 10123.33}}}} +1 [[[[[2, 2, 3, 9]]]]] {[2]:{2:{2:2}}} {"x":[2], "y":[2], "z":{1:"example"}} {2:{2:{2:{2:{2:{2:{"x":2, "y":[2]}}}}}}} {"xx":[2, 2, 3, 9], "yy":[{2:2}], "zz":{"xxx":{"xxxx":{"xxxxx":10123.33}}}} +2 [[[[[2, 2, 3, 9], [2, 2, 3, 9], [2, 2, 3, 9]]]]] {[2]:{2:{2:2}}} {"x":[2], "y":[2], "z":{1:"example"}} {2:{2:{2:{2:{2:{2:{"x":2, "y":[2]}}}}}}} {"xx":[2, 2, 3, 9], "yy":[{2:2}], "zz":{"xxx":{"xxxx":{"xxxxx":10123.33}}}} +3 [[[[[2, 2, 3, 9]], [[2, 2, 3, 9], [2, 2, 3, 9], [2, 2, 3, 9]]], [[[2, 2, 3, 9]], [[2, 2, 3, 9], [2, 2, 3, 9], [2, 2, 3, 9]]]], [[[[2, 2, 3, 9]], [[2, 2, 3, 9], [2, 2, 3, 9], [2, 2, 3, 9]]], [[[2, 2, 3, 9]], [[2, 2, 3, 9], [2, 2, 3, 9], [2, 2, 3, 9]]]]] {[2]:{2:{2:2}}} {"x":[2], "y":[2], "z":{1:"example"}} {2:{2:{2:{2:{2:{2:{"x":2, "y":[2]}}}}}}} {"xx":[2, 2, 3, 9], "yy":[{2:2}], "zz":{"xxx":{"xxxx":{"xxxxx":10123.33}}}} +4 [[[[[2, 2, 3, 9]], [[2, 2, 3, 9], [2, 2, 3, 9], [2, 2, 3, 9]]]]] {[2]:{2:{2:222}}} {"x":[2], "y":[2, 2, 22935, 99, 59, 955], "z":{1:"example"}} {2:{2:{2:{2:{2:{2:{"x":2, "y":[2]}}}}}}} {"xx":[2, 2, 3, 9], "yy":[{2:2}], "zz":{"xxx":{"xxxx":{"xxxxx":10123.33}}}} +5 [[[[[2, 2, 3, 9]]]]] {[2]:{2:{2:2}}} {"x":[2], "y":[2], "z":{1:"example"}} {2:{2:{2:{2:{2:{2:{"x":2, "y":[2, 239, 39293259, 2223, 23, 59, 29, 9353]}}}}}}} {"xx":[2, 2, 3, 9], "yy":[{2:2}], "zz":{"xxx":{"xxxx":{"xxxxx":10123.33}}}} +6 [[[[[2, 2, 3, 9]]]]] {[2]:{2:{2:2}}} {"x":[2], "y":[2], "z":{1:"example"}} {2:{2:{2:{2:{2:{2:{"x":2, "y":[2]}}}}}}} {"xx":[2, 2, 3, 9], "yy":[{2:2}, {2:2}, {2:2}, {2:4}, {2:4}, {2:4}, {2:4}, {2:4}, {2:4}, {2:4}], "zz":{"xxx":{"xxxx":{"xxxxx":10123.33}}}} -- !parquet_v2_3 -- 6 @@ -90,12 +90,12 @@ col5 MAP,yy:ARRAY>,zz:STRUCT>>> Yes true \N -- !orc_v1_2 -- -1 [[[[[2, 2, 3, 9]]]]] {[2]:{2:{2:2}}} {"x": [2], "y": [2], "z": {1:"example"}} {2:{2:{2:{2:{2:{2:{"x": 2, "y": [2]}}}}}}} {"xx": [2, 2, 3, 9], "yy": [{2:2}], "zz": {"xxx": {"xxxx": {"xxxxx": 10123.33}}}} -2 [[[[[2, 2, 3, 9], [2, 2, 3, 9], [2, 2, 3, 9]]]]] {[2]:{2:{2:2}}} {"x": [2], "y": [2], "z": {1:"example"}} {2:{2:{2:{2:{2:{2:{"x": 2, "y": [2]}}}}}}} {"xx": [2, 2, 3, 9], "yy": [{2:2}], "zz": {"xxx": {"xxxx": {"xxxxx": 10123.33}}}} -3 [[[[[2, 2, 3, 9]], [[2, 2, 3, 9], [2, 2, 3, 9], [2, 2, 3, 9]]], [[[2, 2, 3, 9]], [[2, 2, 3, 9], [2, 2, 3, 9], [2, 2, 3, 9]]]], [[[[2, 2, 3, 9]], [[2, 2, 3, 9], [2, 2, 3, 9], [2, 2, 3, 9]]], [[[2, 2, 3, 9]], [[2, 2, 3, 9], [2, 2, 3, 9], [2, 2, 3, 9]]]]] {[2]:{2:{2:2}}} {"x": [2], "y": [2], "z": {1:"example"}} {2:{2:{2:{2:{2:{2:{"x": 2, "y": [2]}}}}}}} {"xx": [2, 2, 3, 9], "yy": [{2:2}], "zz": {"xxx": {"xxxx": {"xxxxx": 10123.33}}}} -4 [[[[[2, 2, 3, 9]], [[2, 2, 3, 9], [2, 2, 3, 9], [2, 2, 3, 9]]]]] {[2]:{2:{2:222}}} {"x": [2], "y": [2, 2, 22935, 99, 59, 955], "z": {1:"example"}} {2:{2:{2:{2:{2:{2:{"x": 2, "y": [2]}}}}}}} {"xx": [2, 2, 3, 9], "yy": [{2:2}], "zz": {"xxx": {"xxxx": {"xxxxx": 10123.33}}}} -5 [[[[[2, 2, 3, 9]]]]] {[2]:{2:{2:2}}} {"x": [2], "y": [2], "z": {1:"example"}} {2:{2:{2:{2:{2:{2:{"x": 2, "y": [2, 239, 39293259, 2223, 23, 59, 29, 9353]}}}}}}} {"xx": [2, 2, 3, 9], "yy": [{2:2}], "zz": {"xxx": {"xxxx": {"xxxxx": 10123.33}}}} -6 [[[[[2, 2, 3, 9]]]]] {[2]:{2:{2:2}}} {"x": [2], "y": [2], "z": {1:"example"}} {2:{2:{2:{2:{2:{2:{"x": 2, "y": [2]}}}}}}} {"xx": [2, 2, 3, 9], "yy": [{2:2}, {2:2}, {2:2}, {2:4}, {2:4}, {2:4}, {2:4}, {2:4}, {2:4}, {2:4}], "zz": {"xxx": {"xxxx": {"xxxxx": 10123.33}}}} +1 [[[[[2, 2, 3, 9]]]]] {[2]:{2:{2:2}}} {"x":[2], "y":[2], "z":{1:"example"}} {2:{2:{2:{2:{2:{2:{"x":2, "y":[2]}}}}}}} {"xx":[2, 2, 3, 9], "yy":[{2:2}], "zz":{"xxx":{"xxxx":{"xxxxx":10123.33}}}} +2 [[[[[2, 2, 3, 9], [2, 2, 3, 9], [2, 2, 3, 9]]]]] {[2]:{2:{2:2}}} {"x":[2], "y":[2], "z":{1:"example"}} {2:{2:{2:{2:{2:{2:{"x":2, "y":[2]}}}}}}} {"xx":[2, 2, 3, 9], "yy":[{2:2}], "zz":{"xxx":{"xxxx":{"xxxxx":10123.33}}}} +3 [[[[[2, 2, 3, 9]], [[2, 2, 3, 9], [2, 2, 3, 9], [2, 2, 3, 9]]], [[[2, 2, 3, 9]], [[2, 2, 3, 9], [2, 2, 3, 9], [2, 2, 3, 9]]]], [[[[2, 2, 3, 9]], [[2, 2, 3, 9], [2, 2, 3, 9], [2, 2, 3, 9]]], [[[2, 2, 3, 9]], [[2, 2, 3, 9], [2, 2, 3, 9], [2, 2, 3, 9]]]]] {[2]:{2:{2:2}}} {"x":[2], "y":[2], "z":{1:"example"}} {2:{2:{2:{2:{2:{2:{"x":2, "y":[2]}}}}}}} {"xx":[2, 2, 3, 9], "yy":[{2:2}], "zz":{"xxx":{"xxxx":{"xxxxx":10123.33}}}} +4 [[[[[2, 2, 3, 9]], [[2, 2, 3, 9], [2, 2, 3, 9], [2, 2, 3, 9]]]]] {[2]:{2:{2:222}}} {"x":[2], "y":[2, 2, 22935, 99, 59, 955], "z":{1:"example"}} {2:{2:{2:{2:{2:{2:{"x":2, "y":[2]}}}}}}} {"xx":[2, 2, 3, 9], "yy":[{2:2}], "zz":{"xxx":{"xxxx":{"xxxxx":10123.33}}}} +5 [[[[[2, 2, 3, 9]]]]] {[2]:{2:{2:2}}} {"x":[2], "y":[2], "z":{1:"example"}} {2:{2:{2:{2:{2:{2:{"x":2, "y":[2, 239, 39293259, 2223, 23, 59, 29, 9353]}}}}}}} {"xx":[2, 2, 3, 9], "yy":[{2:2}], "zz":{"xxx":{"xxxx":{"xxxxx":10123.33}}}} +6 [[[[[2, 2, 3, 9]]]]] {[2]:{2:{2:2}}} {"x":[2], "y":[2], "z":{1:"example"}} {2:{2:{2:{2:{2:{2:{"x":2, "y":[2]}}}}}}} {"xx":[2, 2, 3, 9], "yy":[{2:2}, {2:2}, {2:2}, {2:4}, {2:4}, {2:4}, {2:4}, {2:4}, {2:4}, {2:4}], "zz":{"xxx":{"xxxx":{"xxxxx":10123.33}}}} -- !orc_v1_3 -- 6 @@ -131,12 +131,12 @@ col5 MAP,yy:ARRAY>,zz:STRUCT>>> Yes true \N -- !orc_v2_2 -- -1 [[[[[2, 2, 3, 9]]]]] {[2]:{2:{2:2}}} {"x": [2], "y": [2], "z": {1:"example"}} {2:{2:{2:{2:{2:{2:{"x": 2, "y": [2]}}}}}}} {"xx": [2, 2, 3, 9], "yy": [{2:2}], "zz": {"xxx": {"xxxx": {"xxxxx": 10123.33}}}} -2 [[[[[2, 2, 3, 9], [2, 2, 3, 9], [2, 2, 3, 9]]]]] {[2]:{2:{2:2}}} {"x": [2], "y": [2], "z": {1:"example"}} {2:{2:{2:{2:{2:{2:{"x": 2, "y": [2]}}}}}}} {"xx": [2, 2, 3, 9], "yy": [{2:2}], "zz": {"xxx": {"xxxx": {"xxxxx": 10123.33}}}} -3 [[[[[2, 2, 3, 9]], [[2, 2, 3, 9], [2, 2, 3, 9], [2, 2, 3, 9]]], [[[2, 2, 3, 9]], [[2, 2, 3, 9], [2, 2, 3, 9], [2, 2, 3, 9]]]], [[[[2, 2, 3, 9]], [[2, 2, 3, 9], [2, 2, 3, 9], [2, 2, 3, 9]]], [[[2, 2, 3, 9]], [[2, 2, 3, 9], [2, 2, 3, 9], [2, 2, 3, 9]]]]] {[2]:{2:{2:2}}} {"x": [2], "y": [2], "z": {1:"example"}} {2:{2:{2:{2:{2:{2:{"x": 2, "y": [2]}}}}}}} {"xx": [2, 2, 3, 9], "yy": [{2:2}], "zz": {"xxx": {"xxxx": {"xxxxx": 10123.33}}}} -4 [[[[[2, 2, 3, 9]], [[2, 2, 3, 9], [2, 2, 3, 9], [2, 2, 3, 9]]]]] {[2]:{2:{2:222}}} {"x": [2], "y": [2, 2, 22935, 99, 59, 955], "z": {1:"example"}} {2:{2:{2:{2:{2:{2:{"x": 2, "y": [2]}}}}}}} {"xx": [2, 2, 3, 9], "yy": [{2:2}], "zz": {"xxx": {"xxxx": {"xxxxx": 10123.33}}}} -5 [[[[[2, 2, 3, 9]]]]] {[2]:{2:{2:2}}} {"x": [2], "y": [2], "z": {1:"example"}} {2:{2:{2:{2:{2:{2:{"x": 2, "y": [2, 239, 39293259, 2223, 23, 59, 29, 9353]}}}}}}} {"xx": [2, 2, 3, 9], "yy": [{2:2}], "zz": {"xxx": {"xxxx": {"xxxxx": 10123.33}}}} -6 [[[[[2, 2, 3, 9]]]]] {[2]:{2:{2:2}}} {"x": [2], "y": [2], "z": {1:"example"}} {2:{2:{2:{2:{2:{2:{"x": 2, "y": [2]}}}}}}} {"xx": [2, 2, 3, 9], "yy": [{2:2}, {2:2}, {2:2}, {2:4}, {2:4}, {2:4}, {2:4}, {2:4}, {2:4}, {2:4}], "zz": {"xxx": {"xxxx": {"xxxxx": 10123.33}}}} +1 [[[[[2, 2, 3, 9]]]]] {[2]:{2:{2:2}}} {"x":[2], "y":[2], "z":{1:"example"}} {2:{2:{2:{2:{2:{2:{"x":2, "y":[2]}}}}}}} {"xx":[2, 2, 3, 9], "yy":[{2:2}], "zz":{"xxx":{"xxxx":{"xxxxx":10123.33}}}} +2 [[[[[2, 2, 3, 9], [2, 2, 3, 9], [2, 2, 3, 9]]]]] {[2]:{2:{2:2}}} {"x":[2], "y":[2], "z":{1:"example"}} {2:{2:{2:{2:{2:{2:{"x":2, "y":[2]}}}}}}} {"xx":[2, 2, 3, 9], "yy":[{2:2}], "zz":{"xxx":{"xxxx":{"xxxxx":10123.33}}}} +3 [[[[[2, 2, 3, 9]], [[2, 2, 3, 9], [2, 2, 3, 9], [2, 2, 3, 9]]], [[[2, 2, 3, 9]], [[2, 2, 3, 9], [2, 2, 3, 9], [2, 2, 3, 9]]]], [[[[2, 2, 3, 9]], [[2, 2, 3, 9], [2, 2, 3, 9], [2, 2, 3, 9]]], [[[2, 2, 3, 9]], [[2, 2, 3, 9], [2, 2, 3, 9], [2, 2, 3, 9]]]]] {[2]:{2:{2:2}}} {"x":[2], "y":[2], "z":{1:"example"}} {2:{2:{2:{2:{2:{2:{"x":2, "y":[2]}}}}}}} {"xx":[2, 2, 3, 9], "yy":[{2:2}], "zz":{"xxx":{"xxxx":{"xxxxx":10123.33}}}} +4 [[[[[2, 2, 3, 9]], [[2, 2, 3, 9], [2, 2, 3, 9], [2, 2, 3, 9]]]]] {[2]:{2:{2:222}}} {"x":[2], "y":[2, 2, 22935, 99, 59, 955], "z":{1:"example"}} {2:{2:{2:{2:{2:{2:{"x":2, "y":[2]}}}}}}} {"xx":[2, 2, 3, 9], "yy":[{2:2}], "zz":{"xxx":{"xxxx":{"xxxxx":10123.33}}}} +5 [[[[[2, 2, 3, 9]]]]] {[2]:{2:{2:2}}} {"x":[2], "y":[2], "z":{1:"example"}} {2:{2:{2:{2:{2:{2:{"x":2, "y":[2, 239, 39293259, 2223, 23, 59, 29, 9353]}}}}}}} {"xx":[2, 2, 3, 9], "yy":[{2:2}], "zz":{"xxx":{"xxxx":{"xxxxx":10123.33}}}} +6 [[[[[2, 2, 3, 9]]]]] {[2]:{2:{2:2}}} {"x":[2], "y":[2], "z":{1:"example"}} {2:{2:{2:{2:{2:{2:{"x":2, "y":[2]}}}}}}} {"xx":[2, 2, 3, 9], "yy":[{2:2}, {2:2}, {2:2}, {2:4}, {2:4}, {2:4}, {2:4}, {2:4}, {2:4}, {2:4}], "zz":{"xxx":{"xxxx":{"xxxxx":10123.33}}}} -- !orc_v2_3 -- 6 diff --git a/regression-test/data/external_table_p2/iceberg/iceberg_schema_change.out b/regression-test/data/external_table_p2/iceberg/iceberg_schema_change.out index 4faf8c695ec36a..06fa6aec7cf462 100644 --- a/regression-test/data/external_table_p2/iceberg/iceberg_schema_change.out +++ b/regression-test/data/external_table_p2/iceberg/iceberg_schema_change.out @@ -15,15 +15,15 @@ col_add INT Yes true \N col_add2 INT Yes true \N -- !parquet_v1_2 -- -1 1.2000000476837158 1.12345 1 [1, 2, 3] [1.100000023841858, 2.200000047683716, 3.299999952316284] [1.1234, 2.2345, 3.3456] {1:10, 2:20} {1:1.100000023841858, 2:2.200000047683716} {1:1.12345, 2:2.23456} {"add": null, "x": 1, "y": 1.100000023841858} \N \N -1 1.2000000476837158 1.12345 2 [4, 5, 6] [4.400000095367432, 5.5, 6.599999904632568] [4.4567, 5.5678, 6.6789] {3:30, 4:40} {3:3.299999952316284, 4:4.400000095367432} {3:3.34567, 4:4.45678} {"add": null, "x": 2, "y": 2.200000047683716} \N \N -1 1.2000000476837158 1.12345 3 [7, 8, 9] [7.699999809265137, 8.800000190734863, 9.899999618530273] [7.7890, 8.8901, 9.9012] {5:50, 6:60} {5:5.5, 6:6.599999904632568} {5:5.56789, 6:6.67890} {"add": null, "x": 3, "y": 3.299999952316284} \N \N -1 1.2000000476837158 1.12345 4 [10, 11, 12] [10.100000381469727, 11.109999656677246, 12.119999885559082] [10.1011, 11.1112, 12.1213] {7:70, 8:80} {7:7.699999809265137, 8:8.800000190734863} {7:7.78901, 8:8.89012} {"add": null, "x": 4, "y": 4.400000095367432} \N \N -1 1.2000000476837158 1.12345 5 [13, 14, 15] [13.130000114440918, 14.140000343322754, 15.149999618530273] [13.1314, 14.1415, 15.1516] {9:90, 10:100} {9:9.899999618530273, 10:10.100000381469727} {9:9.89012, 10:10.10123} {"add": null, "x": 5, "y": 5.5} \N \N -21447483648 1.7976931348623157E308 1234567890.12345 6 [21447483648, 21474483649, 21474483650] [1.7976931348623157e+308, 1.7976931348623157e+308, 1.7976931348623157e+308] [1234567890.1235, 1234567890.2346, 1234567890.3457] {214748348:2147483648, 24748649:214743383649} {214748648:1.7976931348623157e+308, 27483649:1.7976931348623157e+308} {214743648:1234567890.12345, 21474649:1234567890.23456} {"add": 1234567890.12345, "x": 214748223648, "y": 1.7976931346232156e+308} 1 2 -2144748345648 1.7976931348623157E308 1234567890.23456 7 [2144748345648, 214742435483649, 214742435483650] [1.7976931348623157e+308, 1.7976931348623157e+308, 1.7976931348623157e+308] [12345673890.1235, 12345367890.2346, 12344567890.3457] {214748348:2147483632148, 24748649:213144743383649} {214748648:1.717693623157e+308, 27483649:1.7976931348623157e+308} {214743648:1234567890.12345, 21474649:1234567890.23456} {"add": 1234567890.12345, "x": 214743338223648, "y": 1.7976931346232156e+308} 2 3 -21447483648 1.7976931348623157E308 1234567890.12345 8 [21447483648, 21474483649, 21474483650] [1.7976931348623157e+308, 1.7976931348623157e+308, 1.7976931348623157e+308] [1234567890.1235, 1234567890.2346, 1234567890.3457] {214748348:2147483648, 24748649:214743383649} {214748648:1.7976931348623157e+308, 27483649:1.7976931348623157e+308} {214743648:1234567890.12345, 21474649:1234567890.23456} {"add": 1234567890.12345, "x": 214748223648, "y": 1.7976931346232156e+308} 3 4 -2144748345648 1.7976931348623157E308 1234567890.23456 9 [2144748345648, 214742435483649, 214742435483650, 214742435483650, 214742435483650, 214742435483650] [1.7976931348623157e+308, 1.7976931348623157e+308, 1.7976931348623157e+308] [12345673890.1235, 12345367890.2346, 12344567890.3457] {214748348:2147483632148, 24748649:213144743383649} {214748648:1.717693623157e+308, 27483649:1.7976931348623157e+308} {214743648:1234567890.12345, 21474649:1234567890.23456} {"add": 1234567890.12345, "x": 214743338223648, "y": 1.7976931346232156e+308} 4 5 +1 1.2000000476837158 1.12345 1 [1, 2, 3] [1.100000023841858, 2.200000047683716, 3.299999952316284] [1.1234, 2.2345, 3.3456] {1:10, 2:20} {1:1.100000023841858, 2:2.200000047683716} {1:1.12345, 2:2.23456} {"add":null, "x":1, "y":1.100000023841858} \N \N +1 1.2000000476837158 1.12345 2 [4, 5, 6] [4.400000095367432, 5.5, 6.599999904632568] [4.4567, 5.5678, 6.6789] {3:30, 4:40} {3:3.299999952316284, 4:4.400000095367432} {3:3.34567, 4:4.45678} {"add":null, "x":2, "y":2.200000047683716} \N \N +1 1.2000000476837158 1.12345 3 [7, 8, 9] [7.699999809265137, 8.800000190734863, 9.899999618530273] [7.7890, 8.8901, 9.9012] {5:50, 6:60} {5:5.5, 6:6.599999904632568} {5:5.56789, 6:6.67890} {"add":null, "x":3, "y":3.299999952316284} \N \N +1 1.2000000476837158 1.12345 4 [10, 11, 12] [10.100000381469727, 11.109999656677246, 12.119999885559082] [10.1011, 11.1112, 12.1213] {7:70, 8:80} {7:7.699999809265137, 8:8.800000190734863} {7:7.78901, 8:8.89012} {"add":null, "x":4, "y":4.400000095367432} \N \N +1 1.2000000476837158 1.12345 5 [13, 14, 15] [13.130000114440918, 14.140000343322754, 15.149999618530273] [13.1314, 14.1415, 15.1516] {9:90, 10:100} {9:9.899999618530273, 10:10.100000381469727} {9:9.89012, 10:10.10123} {"add":null, "x":5, "y":5.5} \N \N +21447483648 1.7976931348623157E308 1234567890.12345 6 [21447483648, 21474483649, 21474483650] [1.7976931348623157e+308, 1.7976931348623157e+308, 1.7976931348623157e+308] [1234567890.1235, 1234567890.2346, 1234567890.3457] {214748348:2147483648, 24748649:214743383649} {214748648:1.7976931348623157e+308, 27483649:1.7976931348623157e+308} {214743648:1234567890.12345, 21474649:1234567890.23456} {"add":1234567890.12345, "x":214748223648, "y":1.7976931346232156e+308} 1 2 +2144748345648 1.7976931348623157E308 1234567890.23456 7 [2144748345648, 214742435483649, 214742435483650] [1.7976931348623157e+308, 1.7976931348623157e+308, 1.7976931348623157e+308] [12345673890.1235, 12345367890.2346, 12344567890.3457] {214748348:2147483632148, 24748649:213144743383649} {214748648:1.717693623157e+308, 27483649:1.7976931348623157e+308} {214743648:1234567890.12345, 21474649:1234567890.23456} {"add":1234567890.12345, "x":214743338223648, "y":1.7976931346232156e+308} 2 3 +21447483648 1.7976931348623157E308 1234567890.12345 8 [21447483648, 21474483649, 21474483650] [1.7976931348623157e+308, 1.7976931348623157e+308, 1.7976931348623157e+308] [1234567890.1235, 1234567890.2346, 1234567890.3457] {214748348:2147483648, 24748649:214743383649} {214748648:1.7976931348623157e+308, 27483649:1.7976931348623157e+308} {214743648:1234567890.12345, 21474649:1234567890.23456} {"add":1234567890.12345, "x":214748223648, "y":1.7976931346232156e+308} 3 4 +2144748345648 1.7976931348623157E308 1234567890.23456 9 [2144748345648, 214742435483649, 214742435483650, 214742435483650, 214742435483650, 214742435483650] [1.7976931348623157e+308, 1.7976931348623157e+308, 1.7976931348623157e+308] [12345673890.1235, 12345367890.2346, 12344567890.3457] {214748348:2147483632148, 24748649:213144743383649} {214748648:1.717693623157e+308, 27483649:1.7976931348623157e+308} {214743648:1234567890.12345, 21474649:1234567890.23456} {"add":1234567890.12345, "x":214743338223648, "y":1.7976931346232156e+308} 4 5 -- !parquet_v1_3 -- 9 @@ -47,15 +47,15 @@ col_add2 INT Yes true \N 9 -- !parquet_v1_7 -- -{"add": null, "x": 1, "y": 1.100000023841858} -{"add": null, "x": 2, "y": 2.200000047683716} -{"add": null, "x": 3, "y": 3.299999952316284} -{"add": null, "x": 4, "y": 4.400000095367432} -{"add": null, "x": 5, "y": 5.5} -{"add": 1234567890.12345, "x": 214748223648, "y": 1.7976931346232156e+308} -{"add": 1234567890.12345, "x": 214743338223648, "y": 1.7976931346232156e+308} -{"add": 1234567890.12345, "x": 214748223648, "y": 1.7976931346232156e+308} -{"add": 1234567890.12345, "x": 214743338223648, "y": 1.7976931346232156e+308} +{"add":null, "x":1, "y":1.100000023841858} +{"add":null, "x":2, "y":2.200000047683716} +{"add":null, "x":3, "y":3.299999952316284} +{"add":null, "x":4, "y":4.400000095367432} +{"add":null, "x":5, "y":5.5} +{"add":1234567890.12345, "x":214748223648, "y":1.7976931346232156e+308} +{"add":1234567890.12345, "x":214743338223648, "y":1.7976931346232156e+308} +{"add":1234567890.12345, "x":214748223648, "y":1.7976931346232156e+308} +{"add":1234567890.12345, "x":214743338223648, "y":1.7976931346232156e+308} -- !parquet_v1_8 -- 3 @@ -91,15 +91,15 @@ col_add INT Yes true \N col_add2 INT Yes true \N -- !parquet_v2_2 -- -1 1.2000000476837158 1.12345 1 [1, 2, 3] [1.100000023841858, 2.200000047683716, 3.299999952316284] [1.1234, 2.2345, 3.3456] {1:10, 2:20} {1:1.100000023841858, 2:2.200000047683716} {1:1.12345, 2:2.23456} {"add": null, "x": 1, "y": 1.100000023841858} \N \N -1 1.2000000476837158 1.12345 2 [4, 5, 6] [4.400000095367432, 5.5, 6.599999904632568] [4.4567, 5.5678, 6.6789] {3:30, 4:40} {3:3.299999952316284, 4:4.400000095367432} {3:3.34567, 4:4.45678} {"add": null, "x": 2, "y": 2.200000047683716} \N \N -1 1.2000000476837158 1.12345 3 [7, 8, 9] [7.699999809265137, 8.800000190734863, 9.899999618530273] [7.7890, 8.8901, 9.9012] {5:50, 6:60} {5:5.5, 6:6.599999904632568} {5:5.56789, 6:6.67890} {"add": null, "x": 3, "y": 3.299999952316284} \N \N -1 1.2000000476837158 1.12345 4 [10, 11, 12] [10.100000381469727, 11.109999656677246, 12.119999885559082] [10.1011, 11.1112, 12.1213] {7:70, 8:80} {7:7.699999809265137, 8:8.800000190734863} {7:7.78901, 8:8.89012} {"add": null, "x": 4, "y": 4.400000095367432} \N \N -1 1.2000000476837158 1.12345 5 [13, 14, 15] [13.130000114440918, 14.140000343322754, 15.149999618530273] [13.1314, 14.1415, 15.1516] {9:90, 10:100} {9:9.899999618530273, 10:10.100000381469727} {9:9.89012, 10:10.10123} {"add": null, "x": 5, "y": 5.5} \N \N -21447483648 1.7976931348623157E308 1234567890.12345 6 [21447483648, 21474483649, 21474483650] [1.7976931348623157e+308, 1.7976931348623157e+308, 1.7976931348623157e+308] [1234567890.1235, 1234567890.2346, 1234567890.3457] {214748348:2147483648, 24748649:214743383649} {214748648:1.7976931348623157e+308, 27483649:1.7976931348623157e+308} {214743648:1234567890.12345, 21474649:1234567890.23456} {"add": 1234567890.12345, "x": 214748223648, "y": 1.7976931346232156e+308} 1 2 -2144748345648 1.7976931348623157E308 1234567890.23456 7 [2144748345648, 214742435483649, 214742435483650] [1.7976931348623157e+308, 1.7976931348623157e+308, 1.7976931348623157e+308] [12345673890.1235, 12345367890.2346, 12344567890.3457] {214748348:2147483632148, 24748649:213144743383649} {214748648:1.717693623157e+308, 27483649:1.7976931348623157e+308} {214743648:1234567890.12345, 21474649:1234567890.23456} {"add": 1234567890.12345, "x": 214743338223648, "y": 1.7976931346232156e+308} 2 3 -21447483648 1.7976931348623157E308 1234567890.12345 8 [21447483648, 21474483649, 21474483650] [1.7976931348623157e+308, 1.7976931348623157e+308, 1.7976931348623157e+308] [1234567890.1235, 1234567890.2346, 1234567890.3457] {214748348:2147483648, 24748649:214743383649} {214748648:1.7976931348623157e+308, 27483649:1.7976931348623157e+308} {214743648:1234567890.12345, 21474649:1234567890.23456} {"add": 1234567890.12345, "x": 214748223648, "y": 1.7976931346232156e+308} 3 4 -2144748345648 1.7976931348623157E308 1234567890.23456 9 [2144748345648, 214742435483649, 214742435483650, 214742435483650, 214742435483650, 214742435483650] [1.7976931348623157e+308, 1.7976931348623157e+308, 1.7976931348623157e+308] [12345673890.1235, 12345367890.2346, 12344567890.3457] {214748348:2147483632148, 24748649:213144743383649} {214748648:1.717693623157e+308, 27483649:1.7976931348623157e+308} {214743648:1234567890.12345, 21474649:1234567890.23456} {"add": 1234567890.12345, "x": 214743338223648, "y": 1.7976931346232156e+308} 4 5 +1 1.2000000476837158 1.12345 1 [1, 2, 3] [1.100000023841858, 2.200000047683716, 3.299999952316284] [1.1234, 2.2345, 3.3456] {1:10, 2:20} {1:1.100000023841858, 2:2.200000047683716} {1:1.12345, 2:2.23456} {"add":null, "x":1, "y":1.100000023841858} \N \N +1 1.2000000476837158 1.12345 2 [4, 5, 6] [4.400000095367432, 5.5, 6.599999904632568] [4.4567, 5.5678, 6.6789] {3:30, 4:40} {3:3.299999952316284, 4:4.400000095367432} {3:3.34567, 4:4.45678} {"add":null, "x":2, "y":2.200000047683716} \N \N +1 1.2000000476837158 1.12345 3 [7, 8, 9] [7.699999809265137, 8.800000190734863, 9.899999618530273] [7.7890, 8.8901, 9.9012] {5:50, 6:60} {5:5.5, 6:6.599999904632568} {5:5.56789, 6:6.67890} {"add":null, "x":3, "y":3.299999952316284} \N \N +1 1.2000000476837158 1.12345 4 [10, 11, 12] [10.100000381469727, 11.109999656677246, 12.119999885559082] [10.1011, 11.1112, 12.1213] {7:70, 8:80} {7:7.699999809265137, 8:8.800000190734863} {7:7.78901, 8:8.89012} {"add":null, "x":4, "y":4.400000095367432} \N \N +1 1.2000000476837158 1.12345 5 [13, 14, 15] [13.130000114440918, 14.140000343322754, 15.149999618530273] [13.1314, 14.1415, 15.1516] {9:90, 10:100} {9:9.899999618530273, 10:10.100000381469727} {9:9.89012, 10:10.10123} {"add":null, "x":5, "y":5.5} \N \N +21447483648 1.7976931348623157E308 1234567890.12345 6 [21447483648, 21474483649, 21474483650] [1.7976931348623157e+308, 1.7976931348623157e+308, 1.7976931348623157e+308] [1234567890.1235, 1234567890.2346, 1234567890.3457] {214748348:2147483648, 24748649:214743383649} {214748648:1.7976931348623157e+308, 27483649:1.7976931348623157e+308} {214743648:1234567890.12345, 21474649:1234567890.23456} {"add":1234567890.12345, "x":214748223648, "y":1.7976931346232156e+308} 1 2 +2144748345648 1.7976931348623157E308 1234567890.23456 7 [2144748345648, 214742435483649, 214742435483650] [1.7976931348623157e+308, 1.7976931348623157e+308, 1.7976931348623157e+308] [12345673890.1235, 12345367890.2346, 12344567890.3457] {214748348:2147483632148, 24748649:213144743383649} {214748648:1.717693623157e+308, 27483649:1.7976931348623157e+308} {214743648:1234567890.12345, 21474649:1234567890.23456} {"add":1234567890.12345, "x":214743338223648, "y":1.7976931346232156e+308} 2 3 +21447483648 1.7976931348623157E308 1234567890.12345 8 [21447483648, 21474483649, 21474483650] [1.7976931348623157e+308, 1.7976931348623157e+308, 1.7976931348623157e+308] [1234567890.1235, 1234567890.2346, 1234567890.3457] {214748348:2147483648, 24748649:214743383649} {214748648:1.7976931348623157e+308, 27483649:1.7976931348623157e+308} {214743648:1234567890.12345, 21474649:1234567890.23456} {"add":1234567890.12345, "x":214748223648, "y":1.7976931346232156e+308} 3 4 +2144748345648 1.7976931348623157E308 1234567890.23456 9 [2144748345648, 214742435483649, 214742435483650, 214742435483650, 214742435483650, 214742435483650] [1.7976931348623157e+308, 1.7976931348623157e+308, 1.7976931348623157e+308] [12345673890.1235, 12345367890.2346, 12344567890.3457] {214748348:2147483632148, 24748649:213144743383649} {214748648:1.717693623157e+308, 27483649:1.7976931348623157e+308} {214743648:1234567890.12345, 21474649:1234567890.23456} {"add":1234567890.12345, "x":214743338223648, "y":1.7976931346232156e+308} 4 5 -- !parquet_v2_3 -- 9 @@ -123,15 +123,15 @@ col_add2 INT Yes true \N 9 -- !parquet_v2_7 -- -{"add": null, "x": 1, "y": 1.100000023841858} -{"add": null, "x": 2, "y": 2.200000047683716} -{"add": null, "x": 3, "y": 3.299999952316284} -{"add": null, "x": 4, "y": 4.400000095367432} -{"add": null, "x": 5, "y": 5.5} -{"add": 1234567890.12345, "x": 214748223648, "y": 1.7976931346232156e+308} -{"add": 1234567890.12345, "x": 214743338223648, "y": 1.7976931346232156e+308} -{"add": 1234567890.12345, "x": 214748223648, "y": 1.7976931346232156e+308} -{"add": 1234567890.12345, "x": 214743338223648, "y": 1.7976931346232156e+308} +{"add":null, "x":1, "y":1.100000023841858} +{"add":null, "x":2, "y":2.200000047683716} +{"add":null, "x":3, "y":3.299999952316284} +{"add":null, "x":4, "y":4.400000095367432} +{"add":null, "x":5, "y":5.5} +{"add":1234567890.12345, "x":214748223648, "y":1.7976931346232156e+308} +{"add":1234567890.12345, "x":214743338223648, "y":1.7976931346232156e+308} +{"add":1234567890.12345, "x":214748223648, "y":1.7976931346232156e+308} +{"add":1234567890.12345, "x":214743338223648, "y":1.7976931346232156e+308} -- !parquet_v2_8 -- 3 @@ -167,15 +167,15 @@ col_add INT Yes true \N col_add2 INT Yes true \N -- !orc_v1_2 -- -1 1.2000000476837158 1.12345 1 [1, 2, 3] [1.100000023841858, 2.200000047683716, 3.299999952316284] [1.1234, 2.2345, 3.3456] {1:10, 2:20} {1:1.100000023841858, 2:2.200000047683716} {1:1.12345, 2:2.23456} {"add": null, "x": 1, "y": 1.100000023841858} \N \N -1 1.2000000476837158 1.12345 2 [4, 5, 6] [4.400000095367432, 5.5, 6.599999904632568] [4.4567, 5.5678, 6.6789] {3:30, 4:40} {3:3.299999952316284, 4:4.400000095367432} {3:3.34567, 4:4.45678} {"add": null, "x": 2, "y": 2.200000047683716} \N \N -1 1.2000000476837158 1.12345 3 [7, 8, 9] [7.699999809265137, 8.800000190734863, 9.899999618530273] [7.7890, 8.8901, 9.9012] {5:50, 6:60} {5:5.5, 6:6.599999904632568} {5:5.56789, 6:6.67890} {"add": null, "x": 3, "y": 3.299999952316284} \N \N -1 1.2000000476837158 1.12345 4 [10, 11, 12] [10.100000381469727, 11.109999656677246, 12.119999885559082] [10.1011, 11.1112, 12.1213] {7:70, 8:80} {7:7.699999809265137, 8:8.800000190734863} {7:7.78901, 8:8.89012} {"add": null, "x": 4, "y": 4.400000095367432} \N \N -1 1.2000000476837158 1.12345 5 [13, 14, 15] [13.130000114440918, 14.140000343322754, 15.149999618530273] [13.1314, 14.1415, 15.1516] {9:90, 10:100} {9:9.899999618530273, 10:10.100000381469727} {9:9.89012, 10:10.10123} {"add": null, "x": 5, "y": 5.5} \N \N -21447483648 1.7976931348623157E308 1234567890.12345 6 [21447483648, 21474483649, 21474483650] [1.7976931348623157e+308, 1.7976931348623157e+308, 1.7976931348623157e+308] [1234567890.1235, 1234567890.2346, 1234567890.3457] {214748348:2147483648, 24748649:214743383649} {214748648:1.7976931348623157e+308, 27483649:1.7976931348623157e+308} {214743648:1234567890.12345, 21474649:1234567890.23456} {"add": 1234567890.12345, "x": 214748223648, "y": 1.7976931346232156e+308} 1 2 -2144748345648 1.7976931348623157E308 1234567890.23456 7 [2144748345648, 214742435483649, 214742435483650] [1.7976931348623157e+308, 1.7976931348623157e+308, 1.7976931348623157e+308] [12345673890.1235, 12345367890.2346, 12344567890.3457] {214748348:2147483632148, 24748649:213144743383649} {214748648:1.717693623157e+308, 27483649:1.7976931348623157e+308} {214743648:1234567890.12345, 21474649:1234567890.23456} {"add": 1234567890.12345, "x": 214743338223648, "y": 1.7976931346232156e+308} 2 3 -21447483648 1.7976931348623157E308 1234567890.12345 8 [21447483648, 21474483649, 21474483650] [1.7976931348623157e+308, 1.7976931348623157e+308, 1.7976931348623157e+308] [1234567890.1235, 1234567890.2346, 1234567890.3457] {214748348:2147483648, 24748649:214743383649} {214748648:1.7976931348623157e+308, 27483649:1.7976931348623157e+308} {214743648:1234567890.12345, 21474649:1234567890.23456} {"add": 1234567890.12345, "x": 214748223648, "y": 1.7976931346232156e+308} 3 4 -2144748345648 1.7976931348623157E308 1234567890.23456 9 [2144748345648, 214742435483649, 214742435483650, 214742435483650, 214742435483650, 214742435483650] [1.7976931348623157e+308, 1.7976931348623157e+308, 1.7976931348623157e+308] [12345673890.1235, 12345367890.2346, 12344567890.3457] {214748348:2147483632148, 24748649:213144743383649} {214748648:1.717693623157e+308, 27483649:1.7976931348623157e+308} {214743648:1234567890.12345, 21474649:1234567890.23456} {"add": 1234567890.12345, "x": 214743338223648, "y": 1.7976931346232156e+308} 4 5 +1 1.2000000476837158 1.12345 1 [1, 2, 3] [1.100000023841858, 2.200000047683716, 3.299999952316284] [1.1234, 2.2345, 3.3456] {1:10, 2:20} {1:1.100000023841858, 2:2.200000047683716} {1:1.12345, 2:2.23456} {"add":null, "x":1, "y":1.100000023841858} \N \N +1 1.2000000476837158 1.12345 2 [4, 5, 6] [4.400000095367432, 5.5, 6.599999904632568] [4.4567, 5.5678, 6.6789] {3:30, 4:40} {3:3.299999952316284, 4:4.400000095367432} {3:3.34567, 4:4.45678} {"add":null, "x":2, "y":2.200000047683716} \N \N +1 1.2000000476837158 1.12345 3 [7, 8, 9] [7.699999809265137, 8.800000190734863, 9.899999618530273] [7.7890, 8.8901, 9.9012] {5:50, 6:60} {5:5.5, 6:6.599999904632568} {5:5.56789, 6:6.67890} {"add":null, "x":3, "y":3.299999952316284} \N \N +1 1.2000000476837158 1.12345 4 [10, 11, 12] [10.100000381469727, 11.109999656677246, 12.119999885559082] [10.1011, 11.1112, 12.1213] {7:70, 8:80} {7:7.699999809265137, 8:8.800000190734863} {7:7.78901, 8:8.89012} {"add":null, "x":4, "y":4.400000095367432} \N \N +1 1.2000000476837158 1.12345 5 [13, 14, 15] [13.130000114440918, 14.140000343322754, 15.149999618530273] [13.1314, 14.1415, 15.1516] {9:90, 10:100} {9:9.899999618530273, 10:10.100000381469727} {9:9.89012, 10:10.10123} {"add":null, "x":5, "y":5.5} \N \N +21447483648 1.7976931348623157E308 1234567890.12345 6 [21447483648, 21474483649, 21474483650] [1.7976931348623157e+308, 1.7976931348623157e+308, 1.7976931348623157e+308] [1234567890.1235, 1234567890.2346, 1234567890.3457] {214748348:2147483648, 24748649:214743383649} {214748648:1.7976931348623157e+308, 27483649:1.7976931348623157e+308} {214743648:1234567890.12345, 21474649:1234567890.23456} {"add":1234567890.12345, "x":214748223648, "y":1.7976931346232156e+308} 1 2 +2144748345648 1.7976931348623157E308 1234567890.23456 7 [2144748345648, 214742435483649, 214742435483650] [1.7976931348623157e+308, 1.7976931348623157e+308, 1.7976931348623157e+308] [12345673890.1235, 12345367890.2346, 12344567890.3457] {214748348:2147483632148, 24748649:213144743383649} {214748648:1.717693623157e+308, 27483649:1.7976931348623157e+308} {214743648:1234567890.12345, 21474649:1234567890.23456} {"add":1234567890.12345, "x":214743338223648, "y":1.7976931346232156e+308} 2 3 +21447483648 1.7976931348623157E308 1234567890.12345 8 [21447483648, 21474483649, 21474483650] [1.7976931348623157e+308, 1.7976931348623157e+308, 1.7976931348623157e+308] [1234567890.1235, 1234567890.2346, 1234567890.3457] {214748348:2147483648, 24748649:214743383649} {214748648:1.7976931348623157e+308, 27483649:1.7976931348623157e+308} {214743648:1234567890.12345, 21474649:1234567890.23456} {"add":1234567890.12345, "x":214748223648, "y":1.7976931346232156e+308} 3 4 +2144748345648 1.7976931348623157E308 1234567890.23456 9 [2144748345648, 214742435483649, 214742435483650, 214742435483650, 214742435483650, 214742435483650] [1.7976931348623157e+308, 1.7976931348623157e+308, 1.7976931348623157e+308] [12345673890.1235, 12345367890.2346, 12344567890.3457] {214748348:2147483632148, 24748649:213144743383649} {214748648:1.717693623157e+308, 27483649:1.7976931348623157e+308} {214743648:1234567890.12345, 21474649:1234567890.23456} {"add":1234567890.12345, "x":214743338223648, "y":1.7976931346232156e+308} 4 5 -- !orc_v1_3 -- 9 @@ -199,15 +199,15 @@ col_add2 INT Yes true \N 9 -- !orc_v1_7 -- -{"add": null, "x": 1, "y": 1.100000023841858} -{"add": null, "x": 2, "y": 2.200000047683716} -{"add": null, "x": 3, "y": 3.299999952316284} -{"add": null, "x": 4, "y": 4.400000095367432} -{"add": null, "x": 5, "y": 5.5} -{"add": 1234567890.12345, "x": 214748223648, "y": 1.7976931346232156e+308} -{"add": 1234567890.12345, "x": 214743338223648, "y": 1.7976931346232156e+308} -{"add": 1234567890.12345, "x": 214748223648, "y": 1.7976931346232156e+308} -{"add": 1234567890.12345, "x": 214743338223648, "y": 1.7976931346232156e+308} +{"add":null, "x":1, "y":1.100000023841858} +{"add":null, "x":2, "y":2.200000047683716} +{"add":null, "x":3, "y":3.299999952316284} +{"add":null, "x":4, "y":4.400000095367432} +{"add":null, "x":5, "y":5.5} +{"add":1234567890.12345, "x":214748223648, "y":1.7976931346232156e+308} +{"add":1234567890.12345, "x":214743338223648, "y":1.7976931346232156e+308} +{"add":1234567890.12345, "x":214748223648, "y":1.7976931346232156e+308} +{"add":1234567890.12345, "x":214743338223648, "y":1.7976931346232156e+308} -- !orc_v1_8 -- 3 @@ -243,15 +243,15 @@ col_add INT Yes true \N col_add2 INT Yes true \N -- !orc_v2_2 -- -1 1.2000000476837158 1.12345 1 [1, 2, 3] [1.100000023841858, 2.200000047683716, 3.299999952316284] [1.1234, 2.2345, 3.3456] {1:10, 2:20} {1:1.100000023841858, 2:2.200000047683716} {1:1.12345, 2:2.23456} {"add": null, "x": 1, "y": 1.100000023841858} \N \N -1 1.2000000476837158 1.12345 2 [4, 5, 6] [4.400000095367432, 5.5, 6.599999904632568] [4.4567, 5.5678, 6.6789] {3:30, 4:40} {3:3.299999952316284, 4:4.400000095367432} {3:3.34567, 4:4.45678} {"add": null, "x": 2, "y": 2.200000047683716} \N \N -1 1.2000000476837158 1.12345 3 [7, 8, 9] [7.699999809265137, 8.800000190734863, 9.899999618530273] [7.7890, 8.8901, 9.9012] {5:50, 6:60} {5:5.5, 6:6.599999904632568} {5:5.56789, 6:6.67890} {"add": null, "x": 3, "y": 3.299999952316284} \N \N -1 1.2000000476837158 1.12345 4 [10, 11, 12] [10.100000381469727, 11.109999656677246, 12.119999885559082] [10.1011, 11.1112, 12.1213] {7:70, 8:80} {7:7.699999809265137, 8:8.800000190734863} {7:7.78901, 8:8.89012} {"add": null, "x": 4, "y": 4.400000095367432} \N \N -1 1.2000000476837158 1.12345 5 [13, 14, 15] [13.130000114440918, 14.140000343322754, 15.149999618530273] [13.1314, 14.1415, 15.1516] {9:90, 10:100} {9:9.899999618530273, 10:10.100000381469727} {9:9.89012, 10:10.10123} {"add": null, "x": 5, "y": 5.5} \N \N -21447483648 1.7976931348623157E308 1234567890.12345 6 [21447483648, 21474483649, 21474483650] [1.7976931348623157e+308, 1.7976931348623157e+308, 1.7976931348623157e+308] [1234567890.1235, 1234567890.2346, 1234567890.3457] {214748348:2147483648, 24748649:214743383649} {214748648:1.7976931348623157e+308, 27483649:1.7976931348623157e+308} {214743648:1234567890.12345, 21474649:1234567890.23456} {"add": 1234567890.12345, "x": 214748223648, "y": 1.7976931346232156e+308} 1 2 -2144748345648 1.7976931348623157E308 1234567890.23456 7 [2144748345648, 214742435483649, 214742435483650] [1.7976931348623157e+308, 1.7976931348623157e+308, 1.7976931348623157e+308] [12345673890.1235, 12345367890.2346, 12344567890.3457] {214748348:2147483632148, 24748649:213144743383649} {214748648:1.717693623157e+308, 27483649:1.7976931348623157e+308} {214743648:1234567890.12345, 21474649:1234567890.23456} {"add": 1234567890.12345, "x": 214743338223648, "y": 1.7976931346232156e+308} 2 3 -21447483648 1.7976931348623157E308 1234567890.12345 8 [21447483648, 21474483649, 21474483650] [1.7976931348623157e+308, 1.7976931348623157e+308, 1.7976931348623157e+308] [1234567890.1235, 1234567890.2346, 1234567890.3457] {214748348:2147483648, 24748649:214743383649} {214748648:1.7976931348623157e+308, 27483649:1.7976931348623157e+308} {214743648:1234567890.12345, 21474649:1234567890.23456} {"add": 1234567890.12345, "x": 214748223648, "y": 1.7976931346232156e+308} 3 4 -2144748345648 1.7976931348623157E308 1234567890.23456 9 [2144748345648, 214742435483649, 214742435483650, 214742435483650, 214742435483650, 214742435483650] [1.7976931348623157e+308, 1.7976931348623157e+308, 1.7976931348623157e+308] [12345673890.1235, 12345367890.2346, 12344567890.3457] {214748348:2147483632148, 24748649:213144743383649} {214748648:1.717693623157e+308, 27483649:1.7976931348623157e+308} {214743648:1234567890.12345, 21474649:1234567890.23456} {"add": 1234567890.12345, "x": 214743338223648, "y": 1.7976931346232156e+308} 4 5 +1 1.2000000476837158 1.12345 1 [1, 2, 3] [1.100000023841858, 2.200000047683716, 3.299999952316284] [1.1234, 2.2345, 3.3456] {1:10, 2:20} {1:1.100000023841858, 2:2.200000047683716} {1:1.12345, 2:2.23456} {"add":null, "x":1, "y":1.100000023841858} \N \N +1 1.2000000476837158 1.12345 2 [4, 5, 6] [4.400000095367432, 5.5, 6.599999904632568] [4.4567, 5.5678, 6.6789] {3:30, 4:40} {3:3.299999952316284, 4:4.400000095367432} {3:3.34567, 4:4.45678} {"add":null, "x":2, "y":2.200000047683716} \N \N +1 1.2000000476837158 1.12345 3 [7, 8, 9] [7.699999809265137, 8.800000190734863, 9.899999618530273] [7.7890, 8.8901, 9.9012] {5:50, 6:60} {5:5.5, 6:6.599999904632568} {5:5.56789, 6:6.67890} {"add":null, "x":3, "y":3.299999952316284} \N \N +1 1.2000000476837158 1.12345 4 [10, 11, 12] [10.100000381469727, 11.109999656677246, 12.119999885559082] [10.1011, 11.1112, 12.1213] {7:70, 8:80} {7:7.699999809265137, 8:8.800000190734863} {7:7.78901, 8:8.89012} {"add":null, "x":4, "y":4.400000095367432} \N \N +1 1.2000000476837158 1.12345 5 [13, 14, 15] [13.130000114440918, 14.140000343322754, 15.149999618530273] [13.1314, 14.1415, 15.1516] {9:90, 10:100} {9:9.899999618530273, 10:10.100000381469727} {9:9.89012, 10:10.10123} {"add":null, "x":5, "y":5.5} \N \N +21447483648 1.7976931348623157E308 1234567890.12345 6 [21447483648, 21474483649, 21474483650] [1.7976931348623157e+308, 1.7976931348623157e+308, 1.7976931348623157e+308] [1234567890.1235, 1234567890.2346, 1234567890.3457] {214748348:2147483648, 24748649:214743383649} {214748648:1.7976931348623157e+308, 27483649:1.7976931348623157e+308} {214743648:1234567890.12345, 21474649:1234567890.23456} {"add":1234567890.12345, "x":214748223648, "y":1.7976931346232156e+308} 1 2 +2144748345648 1.7976931348623157E308 1234567890.23456 7 [2144748345648, 214742435483649, 214742435483650] [1.7976931348623157e+308, 1.7976931348623157e+308, 1.7976931348623157e+308] [12345673890.1235, 12345367890.2346, 12344567890.3457] {214748348:2147483632148, 24748649:213144743383649} {214748648:1.717693623157e+308, 27483649:1.7976931348623157e+308} {214743648:1234567890.12345, 21474649:1234567890.23456} {"add":1234567890.12345, "x":214743338223648, "y":1.7976931346232156e+308} 2 3 +21447483648 1.7976931348623157E308 1234567890.12345 8 [21447483648, 21474483649, 21474483650] [1.7976931348623157e+308, 1.7976931348623157e+308, 1.7976931348623157e+308] [1234567890.1235, 1234567890.2346, 1234567890.3457] {214748348:2147483648, 24748649:214743383649} {214748648:1.7976931348623157e+308, 27483649:1.7976931348623157e+308} {214743648:1234567890.12345, 21474649:1234567890.23456} {"add":1234567890.12345, "x":214748223648, "y":1.7976931346232156e+308} 3 4 +2144748345648 1.7976931348623157E308 1234567890.23456 9 [2144748345648, 214742435483649, 214742435483650, 214742435483650, 214742435483650, 214742435483650] [1.7976931348623157e+308, 1.7976931348623157e+308, 1.7976931348623157e+308] [12345673890.1235, 12345367890.2346, 12344567890.3457] {214748348:2147483632148, 24748649:213144743383649} {214748648:1.717693623157e+308, 27483649:1.7976931348623157e+308} {214743648:1234567890.12345, 21474649:1234567890.23456} {"add":1234567890.12345, "x":214743338223648, "y":1.7976931346232156e+308} 4 5 -- !orc_v2_3 -- 9 @@ -275,15 +275,15 @@ col_add2 INT Yes true \N 9 -- !orc_v2_7 -- -{"add": null, "x": 1, "y": 1.100000023841858} -{"add": null, "x": 2, "y": 2.200000047683716} -{"add": null, "x": 3, "y": 3.299999952316284} -{"add": null, "x": 4, "y": 4.400000095367432} -{"add": null, "x": 5, "y": 5.5} -{"add": 1234567890.12345, "x": 214748223648, "y": 1.7976931346232156e+308} -{"add": 1234567890.12345, "x": 214743338223648, "y": 1.7976931346232156e+308} -{"add": 1234567890.12345, "x": 214748223648, "y": 1.7976931346232156e+308} -{"add": 1234567890.12345, "x": 214743338223648, "y": 1.7976931346232156e+308} +{"add":null, "x":1, "y":1.100000023841858} +{"add":null, "x":2, "y":2.200000047683716} +{"add":null, "x":3, "y":3.299999952316284} +{"add":null, "x":4, "y":4.400000095367432} +{"add":null, "x":5, "y":5.5} +{"add":1234567890.12345, "x":214748223648, "y":1.7976931346232156e+308} +{"add":1234567890.12345, "x":214743338223648, "y":1.7976931346232156e+308} +{"add":1234567890.12345, "x":214748223648, "y":1.7976931346232156e+308} +{"add":1234567890.12345, "x":214743338223648, "y":1.7976931346232156e+308} -- !orc_v2_8 -- 3 diff --git a/regression-test/data/jsonb_p0/test_jsonb_cast.csv b/regression-test/data/jsonb_p0/test_jsonb_cast.csv index 08b694ddea822f..d4d64bebe190aa 100644 --- a/regression-test/data/jsonb_p0/test_jsonb_cast.csv +++ b/regression-test/data/jsonb_p0/test_jsonb_cast.csv @@ -1,4 +1,4 @@ 1 \N -2 ['{\'x\' : \'{"y" : 1}\', \'t\' : \'{"y" : 2}\'}', '{"x" : 1}'] +2 ['{\'x\':\'{"y":1}\', \'t\':\'{"y":2}\'}', '{"x":1}'] 3 ['foo\'bar', 'foo"bar', 'foo\\'bar', 'foo\'\'bar'] -4 ['\/some\/cool\/url', '/some/cool/url', 'a\\_\\c\\l\\i\\c\\k\\h\\o\\u\\s\\e'] \ No newline at end of file +4 ['\/some\/cool\/url', '/some/cool/url', 'a\\_\\c\\l\\i\\c\\k\\h\\o\\u\\s\\e'] diff --git a/regression-test/data/jsonb_p0/test_jsonb_cast.out b/regression-test/data/jsonb_p0/test_jsonb_cast.out index 2ab4174c746d6a..3495d4af00d9e3 100644 --- a/regression-test/data/jsonb_p0/test_jsonb_cast.out +++ b/regression-test/data/jsonb_p0/test_jsonb_cast.out @@ -1,27 +1,27 @@ -- This file is automatically generated. You should know what you did if you want to edit this -- !select_1 -- 1 \N -2 ["{\\'x\\' : \\'{"y" : 1}\\', \\'t\\' : \\'{"y" : 2}\\'}", "{"x" : 1}"] +2 ["{\\'x\\':\\'{"y":1}\\', \\'t\\':\\'{"y":2}\\'}", "{"x":1}"] 3 ["foo\\'bar', 'foo"bar', 'foo\\\\'bar', 'foo\\'\\'bar"] 4 ["\\/some\\/cool\\/url", "/some/cool/url", "a\\\\_\\\\c\\\\l\\\\i\\\\c\\\\k\\\\h\\\\o\\\\u\\\\s\\\\e"] -- !select_2 -- 1 \N -2 ["{\\'x\\' : \\'{"y" : 1}\\', \\'t\\' : \\'{"y" : 2}\\'}", "{"x" : 1}"] +2 ["{\\'x\\':\\'{"y":1}\\', \\'t\\':\\'{"y":2}\\'}", "{"x":1}"] 3 ["foo\\'bar', 'foo"bar', 'foo\\\\'bar', 'foo\\'\\'bar"] 4 ["\\/some\\/cool\\/url", "/some/cool/url", "a\\\\_\\\\c\\\\l\\\\i\\\\c\\\\k\\\\h\\\\o\\\\u\\\\s\\\\e"] -27 ["{"k1":"v1", "k2": 200}"] -28 ["{"a.b.c":{"k1.a1":"v31", "k2": 300},"a":"niu"}"] +27 ["{"k1":"v1", "k2":200}"] +28 ["{"a.b.c":{"k1.a1":"v31", "k2":300},"a":"niu"}"] 29 [" \n\r", " \n\r"] 30 ["f\r\n", "f\r\n""] -- !select_json -- 1 \N -2 ["{\\\\'x\\\\' : \\\\'{\\"y\\" : 1}\\\\', \\\\'t\\\\' : \\\\'{\\"y\\" : 2}\\\\'}","{\\"x\\" : 1}"] +2 ["{\\\\'x\\\\':\\\\'{\\"y\\":1}\\\\', \\\\'t\\\\':\\\\'{\\"y\\":2}\\\\'}","{\\"x\\":1}"] 3 ["foo\\\\'bar', 'foo\\"bar', 'foo\\\\\\\\'bar', 'foo\\\\'\\\\'bar"] 4 ["\\\\/some\\\\/cool\\\\/url","/some/cool/url","a\\\\\\\\_\\\\\\\\c\\\\\\\\l\\\\\\\\i\\\\\\\\c\\\\\\\\k\\\\\\\\h\\\\\\\\o\\\\\\\\u\\\\\\\\s\\\\\\\\e"] -27 ["{\\"k1\\":\\"v1\\", \\"k2\\": 200}"] -28 ["{\\"a.b.c\\":{\\"k1.a1\\":\\"v31\\", \\"k2\\": 300},\\"a\\":\\"niu\\"}"] +27 ["{\\"k1\\":\\"v1\\", \\"k2\\":200}"] +28 ["{\\"a.b.c\\":{\\"k1.a1\\":\\"v31\\", \\"k2\\":300},\\"a\\":\\"niu\\"}"] 29 ["\\f\\n\\r","\\f\\n\\r"] 30 ["f\\b\\r\\n","f\\b\\r\\n\\""] diff --git a/regression-test/data/nereids_syntax_p0/cast.out b/regression-test/data/nereids_syntax_p0/cast.out index e4507b37562da2..aad8fc689addf8 100644 --- a/regression-test/data/nereids_syntax_p0/cast.out +++ b/regression-test/data/nereids_syntax_p0/cast.out @@ -356,5 +356,5 @@ true 0.1 {1:1, 2:2, 3:3} -- !string_to_struct -- -{"a": 1, "b": 2, "c": 3} +{"a":1, "b":2, "c":3} diff --git a/regression-test/data/query_p0/sql_functions/cast_function/test_cast_struct.out b/regression-test/data/query_p0/sql_functions/cast_function/test_cast_struct.out index 2630debef2d861..fa63c0da504a35 100644 --- a/regression-test/data/query_p0/sql_functions/cast_function/test_cast_struct.out +++ b/regression-test/data/query_p0/sql_functions/cast_function/test_cast_struct.out @@ -15,29 +15,29 @@ \N -- !sql6 -- -{"f1": null} +{"f1":null} -- !sql7 -- -{"f1": 1, "f2": "2"} +{"f1":1, "f2":"2"} -- !sql8 -- -{"f1": null, "f2": null} +{"f1":null, "f2":null} -- !sql9 -- -{"f1": "a", "f2": "b"} +{"f1":"a", "f2":"b"} -- !sql10 -- -{"f1": 1, "f2": "2"} +{"f1":1, "f2":"2"} -- !sql11 -- -{"f1": 1, "f2": "2"} +{"f1":1, "f2":"2"} -- !sql12 -- -{"f1": 1, "f2": "2"} +{"f1":1, "f2":"2"} -- !sql13 -- -{"f1": 1, "f2": "2022-10-10"} +{"f1":1, "f2":"2022-10-10"} -- !sql14 -- -{"f1": 1.0, "f2": "2022-10-10 00:00:00"} +{"f1":1.0, "f2":"2022-10-10 00:00:00"} diff --git a/regression-test/data/query_p0/sql_functions/ip_functions/test_ipv4_cidr_to_range.out b/regression-test/data/query_p0/sql_functions/ip_functions/test_ipv4_cidr_to_range.out index 09c4759437354f..98e2d5079c0401 100644 --- a/regression-test/data/query_p0/sql_functions/ip_functions/test_ipv4_cidr_to_range.out +++ b/regression-test/data/query_p0/sql_functions/ip_functions/test_ipv4_cidr_to_range.out @@ -45,14 +45,14 @@ \N -- !sql -- -{"min": "127.0.0.1", "max": "127.0.0.1"} +{"min":"127.0.0.1", "max":"127.0.0.1"} -- !sql -- -{"min": "127.0.0.0", "max": "127.0.255.255"} +{"min":"127.0.0.0", "max":"127.0.255.255"} -- !sql -- -{"min": "127.0.0.0", "max": "127.255.255.255"} +{"min":"127.0.0.0", "max":"127.255.255.255"} -- !sql -- -{"min": "0.0.0.0", "max": "255.255.255.255"} +{"min":"0.0.0.0", "max":"255.255.255.255"} diff --git a/regression-test/data/query_p0/sql_functions/struct_functions/test_struct_functions_by_literal.out b/regression-test/data/query_p0/sql_functions/struct_functions/test_struct_functions_by_literal.out index fdfc56edb27e04..3a6e5847e45f06 100644 --- a/regression-test/data/query_p0/sql_functions/struct_functions/test_struct_functions_by_literal.out +++ b/regression-test/data/query_p0/sql_functions/struct_functions/test_struct_functions_by_literal.out @@ -1,33 +1,33 @@ -- This file is automatically generated. You should know what you did if you want to edit this -- !sql -- -{"col1": "a", "col2": 1, "col3": "doris", "col4": "aaaaa", "col5": 1.32} +{"col1":"a", "col2":1, "col3":"doris", "col4":"aaaaa", "col5":1.32} -- !sql -- -{"col1": 1, "col2": 2, "col3": 3} +{"col1":1, "col2":2, "col3":3} -- !sql -- -{"col1": 1, "col2": 1000, "col3": 10000000000} +{"col1":1, "col2":1000, "col3":10000000000} -- !sql -- -{"col1": "a", "col2": 1, "col3": "doris", "col4": "aaaaa", "col5": 1.32} +{"col1":"a", "col2":1, "col3":"doris", "col4":"aaaaa", "col5":1.32} -- !sql -- -{"col1": 1, "col2": "a", "col3": null} +{"col1":1, "col2":"a", "col3":null} -- !sql -- -{"col1": null, "col2": null, "col3": null} +{"col1":null, "col2":null, "col3":null} -- !sql -- -{"f1": 1, "f2": 2, "f3": 3} +{"f1":1, "f2":2, "f3":3} -- !sql -- -{"f1": 1, "f2": 1000, "f3": 10000000000} +{"f1":1, "f2":1000, "f3":10000000000} -- !sql -- -{"f1": 1, "f2": "doris", "f3": 1.32} +{"f1":1, "f2":"doris", "f3":1.32} -- !sql -- -{"f1": null, "f2": null, "f3": null} +{"f1":null, "f2":null, "f3":null} -- !sql -- 1 diff --git a/regression-test/suites/external_table_p0/tvf/test_s3_tvf_with_resource.groovy b/regression-test/suites/external_table_p0/tvf/test_s3_tvf_with_resource.groovy index 3e77ce20d589f6..d436fa6551ae5d 100644 --- a/regression-test/suites/external_table_p0/tvf/test_s3_tvf_with_resource.groovy +++ b/regression-test/suites/external_table_p0/tvf/test_s3_tvf_with_resource.groovy @@ -27,6 +27,7 @@ suite("test_s3_tvf_with_resource", "p0") { String bucket = context.config.otherConfigs.get("s3BucketName"); + def db = "test_s3_tvf_with_resource"; def export_table_name = "test_s3_tvf_with_resource_export_test" def outFilePath = "${bucket}/est_s3_tvf/export_test/exp_" def resource_name = "test_s3_tvf_resource" @@ -77,6 +78,9 @@ suite("test_s3_tvf_with_resource", "p0") { return res[0][3] } + sql """drop database if exists ${db}""" + sql """create database ${db}""" + sql """use ${db}""" // create table to export data create_table(export_table_name) @@ -178,14 +182,13 @@ suite("test_s3_tvf_with_resource", "p0") { // test auth def tokens = context.config.jdbcUrl.split('/') - def url=tokens[0] + "//" + tokens[2] + "/" + "information_schema" + "?" + def url=tokens[0] + "//" + tokens[2] + "/" + "${db}" + "?" String user = 'test_s3_tvf_with_resource_user' String pwd = 'C123_567p' String viewName = "test_s3_tvf_with_resource_view" try_sql("DROP USER ${user}") sql """CREATE USER '${user}' IDENTIFIED BY '${pwd}'""" - String dbName = context.config.getDbNameByFile(context.file) - sql """grant select_priv on ${dbName}.${viewName} to ${user}""" + sql """grant select_priv on ${db}.${viewName} to ${user}""" sql "drop view if exists ${viewName}" sql """ create view ${viewName} as diff --git a/regression-test/suites/jsonb_p0/test_jsonb_cast.groovy b/regression-test/suites/jsonb_p0/test_jsonb_cast.groovy index 4d1b2aa7181923..f04b8a6969290e 100644 --- a/regression-test/suites/jsonb_p0/test_jsonb_cast.groovy +++ b/regression-test/suites/jsonb_p0/test_jsonb_cast.groovy @@ -67,8 +67,8 @@ suite("test_jsonb_cast", "p0") { // insert into valid json rows - sql """INSERT INTO ${testTable} VALUES(27, ['{"k1":"v1", "k2": 200}'])""" - sql """INSERT INTO ${testTable} VALUES(28, ['{"a.b.c":{"k1.a1":"v31", "k2": 300},"a":"niu"}'])""" + sql """INSERT INTO ${testTable} VALUES(27, ['{"k1":"v1", "k2":200}'])""" + sql """INSERT INTO ${testTable} VALUES(28, ['{"a.b.c":{"k1.a1":"v31", "k2":300},"a":"niu"}'])""" sql """INSERT INTO ${testTable} VALUES(29, ['\f\n\r', "\f\n\r"])""" sql """INSERT INTO ${testTable} VALUES(30, ["\\f\\b\\r\\n", '\\f\\b\\r\\n"'])""" @@ -76,4 +76,4 @@ suite("test_jsonb_cast", "p0") { qt_select_2 "SELECT * FROM ${testTable} ORDER BY id" // check cast as json qt_select_json "SELECT id, cast(a as JSON) FROM ${testTable} ORDER BY id" -} \ No newline at end of file +}