From 25c873ee64faaed934aced28df9e3357bfc01a17 Mon Sep 17 00:00:00 2001 From: Ryo Okubo Date: Thu, 28 May 2020 00:55:01 +0900 Subject: [PATCH 1/6] Fix map values -> Parquet conversions --- Makefile | 68 ++- columnifier/parquet_test.go | 464 ++++++++++++++++-- parquet/marshal_map.go | 247 +--------- record/avro.go | 28 +- record/avro_test.go | 27 + testdata/parquet/array.parquet | Bin 0 -> 1737 bytes testdata/parquet/array_with_bytes.parquet | Bin 0 -> 1776 bytes testdata/parquet/logicals.parquet | Bin 0 -> 925 bytes testdata/parquet/nested.parquet | Bin 0 -> 1664 bytes testdata/parquet/nested_with_bytes.parquet | Bin 0 -> 1702 bytes testdata/parquet/nullable_complex.parquet | Bin 0 -> 5168 bytes .../nullable_complex_with_bytes.parquet | Bin 0 -> 5767 bytes testdata/parquet/nullables.parquet | Bin 0 -> 1105 bytes testdata/parquet/nullables_with_bytes.parquet | Bin 0 -> 1097 bytes testdata/parquet/primitives.parquet | Bin 0 -> 807 bytes .../parquet/primitives_with_bytes.parquet | Bin 0 -> 813 bytes testdata/record/array.avro | Bin 0 -> 776 bytes testdata/record/array.jsonl | 2 + testdata/record/array.msgpack | Bin 0 -> 390 bytes testdata/record/complicated.avro | 89 ++++ testdata/record/complicated.jsonl | 10 + testdata/record/logicals.avro | Bin 0 -> 619 bytes testdata/record/logicals.csv | 10 + testdata/record/logicals.jsonl | 10 + testdata/record/logicals.ltsv | 10 + testdata/record/logicals.msgpack | Bin 0 -> 1050 bytes testdata/record/logicals.tsv | 10 + testdata/record/nested.avro | Bin 0 -> 749 bytes testdata/record/nested.jsonl | 2 + testdata/record/nested.msgpack | Bin 0 -> 390 bytes testdata/record/nullable_complex.avro | Bin 0 -> 2902 bytes testdata/record/nullable_complex.jsonl | 10 + testdata/record/nullable_complex.msgpack | Bin 0 -> 3823 bytes testdata/record/nullables.avro | Bin 0 -> 796 bytes testdata/record/nullables.jsonl | 10 + testdata/record/nullables.msgpack | Bin 0 -> 751 bytes testdata/record/primitives.avro | Bin 0 -> 390 bytes testdata/record/primitives.csv | 2 + testdata/{ => record}/primitives.jsonl | 0 testdata/record/primitives.ltsv | 2 + testdata/record/primitives.msgpack | 1 + testdata/record/primitives.tsv | 2 + testdata/schema/array.avsc | 29 ++ testdata/schema/array.bq.json | 79 +++ testdata/schema/complicated.avsc | 439 +++++++++++++++++ testdata/schema/logicals.avsc | 26 + testdata/{ => schema}/mismatch.avsc | 0 testdata/schema/nested.avsc | 26 + testdata/schema/nested.bq.json | 79 +++ testdata/schema/nullable_complex.avsc | 50 ++ testdata/schema/nullables.avsc | 41 ++ testdata/schema/nullables.bq.json | 37 ++ testdata/{ => schema}/primitives.avsc | 0 testdata/schema/primitives.bq.json | 37 ++ 54 files changed, 1529 insertions(+), 318 deletions(-) create mode 100644 testdata/parquet/array.parquet create mode 100644 testdata/parquet/array_with_bytes.parquet create mode 100644 testdata/parquet/logicals.parquet create mode 100644 testdata/parquet/nested.parquet create mode 100644 testdata/parquet/nested_with_bytes.parquet create mode 100644 testdata/parquet/nullable_complex.parquet create mode 100644 testdata/parquet/nullable_complex_with_bytes.parquet create mode 100644 testdata/parquet/nullables.parquet create mode 100644 testdata/parquet/nullables_with_bytes.parquet create mode 100644 testdata/parquet/primitives.parquet create mode 100644 testdata/parquet/primitives_with_bytes.parquet create mode 100644 testdata/record/array.avro create mode 100644 testdata/record/array.jsonl create mode 100644 testdata/record/array.msgpack create mode 100644 testdata/record/complicated.avro create mode 100644 testdata/record/complicated.jsonl create mode 100644 testdata/record/logicals.avro create mode 100644 testdata/record/logicals.csv create mode 100644 testdata/record/logicals.jsonl create mode 100644 testdata/record/logicals.ltsv create mode 100644 testdata/record/logicals.msgpack create mode 100644 testdata/record/logicals.tsv create mode 100644 testdata/record/nested.avro create mode 100644 testdata/record/nested.jsonl create mode 100644 testdata/record/nested.msgpack create mode 100644 testdata/record/nullable_complex.avro create mode 100644 testdata/record/nullable_complex.jsonl create mode 100644 testdata/record/nullable_complex.msgpack create mode 100644 testdata/record/nullables.avro create mode 100644 testdata/record/nullables.jsonl create mode 100644 testdata/record/nullables.msgpack create mode 100644 testdata/record/primitives.avro create mode 100644 testdata/record/primitives.csv rename testdata/{ => record}/primitives.jsonl (100%) create mode 100644 testdata/record/primitives.ltsv create mode 100644 testdata/record/primitives.msgpack create mode 100644 testdata/record/primitives.tsv create mode 100644 testdata/schema/array.avsc create mode 100644 testdata/schema/array.bq.json create mode 100644 testdata/schema/complicated.avsc create mode 100644 testdata/schema/logicals.avsc rename testdata/{ => schema}/mismatch.avsc (100%) create mode 100644 testdata/schema/nested.avsc create mode 100644 testdata/schema/nested.bq.json create mode 100644 testdata/schema/nullable_complex.avsc create mode 100644 testdata/schema/nullables.avsc create mode 100644 testdata/schema/nullables.bq.json rename testdata/{ => schema}/primitives.avsc (100%) create mode 100644 testdata/schema/primitives.bq.json diff --git a/Makefile b/Makefile index 3b76e5f..de2503c 100644 --- a/Makefile +++ b/Makefile @@ -23,32 +23,48 @@ test: .PHONY: it it: build - ./columnify -schemaType avro -schemaFile examples/schema/primitives.avsc -recordType avro examples/record/primitives.avro > /dev/null - ./columnify -schemaType avro -schemaFile examples/schema/primitives.avsc -recordType csv examples/record/primitives.csv > /dev/null - ./columnify -schemaType avro -schemaFile examples/schema/primitives.avsc -recordType jsonl examples/record/primitives.jsonl > /dev/null - ./columnify -schemaType avro -schemaFile examples/schema/primitives.avsc -recordType ltsv examples/record/primitives.ltsv > /dev/null - ./columnify -schemaType avro -schemaFile examples/schema/primitives.avsc -recordType msgpack examples/record/primitives.msgpack > /dev/null - ./columnify -schemaType avro -schemaFile examples/schema/primitives.avsc -recordType tsv examples/record/primitives.tsv > /dev/null - ./columnify -schemaType avro -schemaFile examples/schema/nested.avsc -recordType avro examples/record/nested.avro > /dev/null - ./columnify -schemaType avro -schemaFile examples/schema/nested.avsc -recordType jsonl examples/record/nested.jsonl > /dev/null - ./columnify -schemaType avro -schemaFile examples/schema/nested.avsc -recordType msgpack examples/record/nested.msgpack > /dev/null - ./columnify -schemaType avro -schemaFile examples/schema/array.avsc -recordType avro examples/record/array.avro > /dev/null - ./columnify -schemaType avro -schemaFile examples/schema/array.avsc -recordType jsonl examples/record/array.jsonl > /dev/null - ./columnify -schemaType avro -schemaFile examples/schema/array.avsc -recordType msgpack examples/record/array.msgpack > /dev/null - ./columnify -schemaType avro -schemaFile examples/schema/complicated.avsc -recordType avro examples/record/complicated.avro > /dev/null - ./columnify -schemaType avro -schemaFile examples/schema/complicated.avsc -recordType jsonl examples/record/complicated.json > /dev/null - ./columnify -schemaType bigquery -schemaFile examples/schema/primitives.bq.json -recordType avro examples/record/primitives.avro > /dev/null - ./columnify -schemaType bigquery -schemaFile examples/schema/primitives.bq.json -recordType csv examples/record/primitives.csv > /dev/null - ./columnify -schemaType bigquery -schemaFile examples/schema/primitives.bq.json -recordType jsonl examples/record/primitives.jsonl > /dev/null - ./columnify -schemaType bigquery -schemaFile examples/schema/primitives.bq.json -recordType ltsv examples/record/primitives.ltsv > /dev/null - ./columnify -schemaType bigquery -schemaFile examples/schema/primitives.bq.json -recordType msgpack examples/record/primitives.msgpack > /dev/null - ./columnify -schemaType bigquery -schemaFile examples/schema/primitives.bq.json -recordType tsv examples/record/primitives.tsv > /dev/null - ./columnify -schemaType bigquery -schemaFile examples/schema/nested.bq.json -recordType avro examples/record/nested.avro > /dev/null - ./columnify -schemaType bigquery -schemaFile examples/schema/nested.bq.json -recordType jsonl examples/record/nested.jsonl > /dev/null - ./columnify -schemaType bigquery -schemaFile examples/schema/nested.bq.json -recordType msgpack examples/record/nested.msgpack > /dev/null - ./columnify -schemaType bigquery -schemaFile examples/schema/array.bq.json -recordType avro examples/record/array.avro > /dev/null - ./columnify -schemaType bigquery -schemaFile examples/schema/array.bq.json -recordType jsonl examples/record/array.jsonl > /dev/null - ./columnify -schemaType bigquery -schemaFile examples/schema/array.bq.json -recordType msgpack examples/record/array.msgpack > /dev/null + ./columnify -schemaType avro -schemaFile testdata/schema/primitives.avsc -recordType avro testdata/record/primitives.avro > /dev/null + ./columnify -schemaType avro -schemaFile testdata/schema/primitives.avsc -recordType csv testdata/record/primitives.csv > /dev/null + ./columnify -schemaType avro -schemaFile testdata/schema/primitives.avsc -recordType jsonl testdata/record/primitives.jsonl > /dev/null + ./columnify -schemaType avro -schemaFile testdata/schema/primitives.avsc -recordType ltsv testdata/record/primitives.ltsv > /dev/null + ./columnify -schemaType avro -schemaFile testdata/schema/primitives.avsc -recordType msgpack testdata/record/primitives.msgpack > /dev/null + ./columnify -schemaType avro -schemaFile testdata/schema/primitives.avsc -recordType tsv testdata/record/primitives.tsv > /dev/null + ./columnify -schemaType avro -schemaFile testdata/schema/nullables.avsc -recordType avro testdata/record/nullables.avro > /dev/null + ./columnify -schemaType avro -schemaFile testdata/schema/nullables.avsc -recordType jsonl testdata/record/nullables.jsonl > /dev/null + ./columnify -schemaType avro -schemaFile testdata/schema/nullables.avsc -recordType msgpack testdata/record/nullables.msgpack > /dev/null + ./columnify -schemaType avro -schemaFile testdata/schema/logicals.avsc -recordType avro testdata/record/logicals.avro > /dev/null + ./columnify -schemaType avro -schemaFile testdata/schema/logicals.avsc -recordType csv testdata/record/logicals.csv > /dev/null + ./columnify -schemaType avro -schemaFile testdata/schema/logicals.avsc -recordType jsonl testdata/record/logicals.jsonl > /dev/null + ./columnify -schemaType avro -schemaFile testdata/schema/logicals.avsc -recordType ltsv testdata/record/logicals.ltsv > /dev/null + ./columnify -schemaType avro -schemaFile testdata/schema/logicals.avsc -recordType msgpack testdata/record/logicals.msgpack > /dev/null + ./columnify -schemaType avro -schemaFile testdata/schema/logicals.avsc -recordType tsv testdata/record/logicals.tsv > /dev/null + ./columnify -schemaType avro -schemaFile testdata/schema/nested.avsc -recordType avro testdata/record/nested.avro > /dev/null + ./columnify -schemaType avro -schemaFile testdata/schema/nested.avsc -recordType jsonl testdata/record/nested.jsonl > /dev/null + ./columnify -schemaType avro -schemaFile testdata/schema/nested.avsc -recordType msgpack testdata/record/nested.msgpack > /dev/null + ./columnify -schemaType avro -schemaFile testdata/schema/array.avsc -recordType avro testdata/record/array.avro > /dev/null + ./columnify -schemaType avro -schemaFile testdata/schema/array.avsc -recordType jsonl testdata/record/array.jsonl > /dev/null + ./columnify -schemaType avro -schemaFile testdata/schema/array.avsc -recordType msgpack testdata/record/array.msgpack > /dev/null + ./columnify -schemaType avro -schemaFile testdata/schema/logicals.avsc -recordType jsonl testdata/record/logicals.jsonl > /dev/null + ./columnify -schemaType avro -schemaFile testdata/schema/logicals.avsc -recordType avro testdata/record/logicals.avro > /dev/null + ./columnify -schemaType avro -schemaFile testdata/schema/logicals.avsc -recordType msgpack testdata/record/logicals.msgpack > /dev/null + ./columnify -schemaType avro -schemaFile testdata/schema/nullable_complex.avsc -recordType avro testdata/record/nullable_complex.avro > /dev/null + ./columnify -schemaType avro -schemaFile testdata/schema/nullable_complex.avsc -recordType jsonl testdata/record/nullable_complex.jsonl > /dev/null + ./columnify -schemaType avro -schemaFile testdata/schema/nullable_complex.avsc -recordType msgpack testdata/record/nullable_complex.msgpack > /dev/null + ./columnify -schemaType bigquery -schemaFile testdata/schema/primitives.bq.json -recordType avro testdata/record/primitives.avro > /dev/null + ./columnify -schemaType bigquery -schemaFile testdata/schema/primitives.bq.json -recordType csv testdata/record/primitives.csv > /dev/null + ./columnify -schemaType bigquery -schemaFile testdata/schema/primitives.bq.json -recordType jsonl testdata/record/primitives.jsonl > /dev/null + ./columnify -schemaType bigquery -schemaFile testdata/schema/primitives.bq.json -recordType ltsv testdata/record/primitives.ltsv > /dev/null + ./columnify -schemaType bigquery -schemaFile testdata/schema/primitives.bq.json -recordType msgpack testdata/record/primitives.msgpack > /dev/null + ./columnify -schemaType bigquery -schemaFile testdata/schema/primitives.bq.json -recordType tsv testdata/record/primitives.tsv > /dev/null + ./columnify -schemaType bigquery -schemaFile testdata/schema/nullables.bq.json -recordType avro testdata/record/nullables.avro > /dev/null + ./columnify -schemaType bigquery -schemaFile testdata/schema/nullables.bq.json -recordType jsonl testdata/record/nullables.jsonl > /dev/null + ./columnify -schemaType bigquery -schemaFile testdata/schema/nullables.bq.json -recordType msgpack testdata/record/nullables.msgpack > /dev/null + ./columnify -schemaType bigquery -schemaFile testdata/schema/nested.bq.json -recordType avro testdata/record/nested.avro > /dev/null + ./columnify -schemaType bigquery -schemaFile testdata/schema/nested.bq.json -recordType jsonl testdata/record/nested.jsonl > /dev/null + ./columnify -schemaType bigquery -schemaFile testdata/schema/nested.bq.json -recordType msgpack testdata/record/nested.msgpack > /dev/null + ./columnify -schemaType bigquery -schemaFile testdata/schema/array.bq.json -recordType avro testdata/record/array.avro > /dev/null + ./columnify -schemaType bigquery -schemaFile testdata/schema/array.bq.json -recordType jsonl testdata/record/array.jsonl > /dev/null + ./columnify -schemaType bigquery -schemaFile testdata/schema/array.bq.json -recordType msgpack testdata/record/array.msgpack > /dev/null # Set GITHUB_TOKEN and create release git tag .PHONY: release diff --git a/columnifier/parquet_test.go b/columnifier/parquet_test.go index 6f878c8..855a4e6 100644 --- a/columnifier/parquet_test.go +++ b/columnifier/parquet_test.go @@ -1,6 +1,10 @@ package columnifier import ( + "bytes" + "encoding/json" + "github.com/xitongsys/parquet-go-source/local" + "github.com/xitongsys/parquet-go/reader" "io/ioutil" "os" "testing" @@ -10,6 +14,54 @@ import ( "github.com/xitongsys/parquet-go/parquet" ) +var defaultConfig = Config{ + Parquet: Parquet{ + PageSize: 8 * 1024, + RowGroupSize: 128 * 1024 * 1024, + CompressionCodec: parquet.CompressionCodec_SNAPPY, + }, +} + +func assertWrittenParquet(t *testing.T, expectedPath, actualPath string) { + actualFileReader, err := local.NewLocalFileReader(actualPath) + if err != nil { + t.Fatal(err) + } + actualParquetReader, err := reader.NewParquetReader(actualFileReader, nil, 1) + if err != nil { + t.Fatal(err) + } + actualRows, err := actualParquetReader.ReadByNumber(int(actualParquetReader.GetNumRows())) + if err != nil { + t.Fatal(err) + } + actualJson, err := json.Marshal(actualRows) + if err != nil { + t.Fatal(err) + } + + expectedFileReader, err := local.NewLocalFileReader(expectedPath) + if err != nil { + t.Fatal(err) + } + expectedParquetReader, err := reader.NewParquetReader(expectedFileReader, nil, 1) + if err != nil { + t.Fatal(err) + } + expectedRows, err := expectedParquetReader.ReadByNumber(int(expectedParquetReader.GetNumRows())) + if err != nil { + t.Fatal(err) + } + expectedJson, err := json.Marshal(expectedRows) + if err != nil { + t.Fatal(err) + } + + if !bytes.Equal(actualJson, expectedJson) { + t.Errorf("expected %v, but actual %v", string(expectedJson), string(actualJson)) + } +} + func TestNewParquetColumnifier(t *testing.T) { cases := []struct { @@ -23,7 +75,7 @@ func TestNewParquetColumnifier(t *testing.T) { // Inalid schema type { st: "unknown", - sf: "../testdata/primitives.avsc", + sf: "../testdata/schema/primitives.avsc", rt: record.RecordTypeJsonl, output: "", config: Config{}, @@ -43,7 +95,7 @@ func TestNewParquetColumnifier(t *testing.T) { // Invalid output { st: schema.SchemaTypeAvro, - sf: "../testdata/primitives.avsc", + sf: "../testdata/schema/primitives.avsc", rt: record.RecordTypeJsonl, output: "/tmp/nonexistence/invalid.record", config: Config{}, @@ -53,7 +105,7 @@ func TestNewParquetColumnifier(t *testing.T) { // Valid { st: schema.SchemaTypeAvro, - sf: "../testdata/primitives.avsc", + sf: "../testdata/schema/primitives.avsc", rt: record.RecordTypeJsonl, output: "", config: Config{}, @@ -72,59 +124,369 @@ func TestNewParquetColumnifier(t *testing.T) { func TestWriteClose(t *testing.T) { cases := []struct { - st string - sf string - rt string - config Config - input string - isErr bool + st string + sf string + rt string + input string + expected string }{ - // Invalid record type + // primitives; Avro schema, Avro record + { + st: schema.SchemaTypeAvro, + sf: "../testdata/schema/primitives.avsc", + rt: record.RecordTypeAvro, + input: "../testdata/record/primitives.avro", + expected: "../testdata/parquet/primitives_with_bytes.parquet", + }, + // primitives; Avro schema, CSV record + { + st: schema.SchemaTypeAvro, + sf: "../testdata/schema/primitives.avsc", + rt: record.RecordTypeCsv, + input: "../testdata/record/primitives.csv", + expected: "../testdata/parquet/primitives.parquet", + }, + // primitives; Avro schema, JSONL record + { + st: schema.SchemaTypeAvro, + sf: "../testdata/schema/primitives.avsc", + rt: record.RecordTypeJsonl, + input: "../testdata/record/primitives.jsonl", + expected: "../testdata/parquet/primitives.parquet", + }, + // primitives; Avro schema, LTSV record + { + st: schema.SchemaTypeAvro, + sf: "../testdata/schema/primitives.avsc", + rt: record.RecordTypeLtsv, + input: "../testdata/record/primitives.ltsv", + expected: "../testdata/parquet/primitives.parquet", + }, + // primitives; Avro schema, MessagePack record + { + st: schema.SchemaTypeAvro, + sf: "../testdata/schema/primitives.avsc", + rt: record.RecordTypeMsgpack, + input: "../testdata/record/primitives.msgpack", + expected: "../testdata/parquet/primitives.parquet", + }, + // primitives; Avro schema, TSV record + { + st: schema.SchemaTypeAvro, + sf: "../testdata/schema/primitives.avsc", + rt: record.RecordTypeTsv, + input: "../testdata/record/primitives.tsv", + expected: "../testdata/parquet/primitives.parquet", + }, + // nullables; Avro schema, Avro record + { + st: schema.SchemaTypeAvro, + sf: "../testdata/schema/nullables.avsc", + rt: record.RecordTypeAvro, + input: "../testdata/record/nullables.avro", + expected: "../testdata/parquet/nullables_with_bytes.parquet", + }, + // nullables; Avro schema, JSONL record + { + st: schema.SchemaTypeAvro, + sf: "../testdata/schema/nullables.avsc", + rt: record.RecordTypeJsonl, + input: "../testdata/record/nullables.jsonl", + expected: "../testdata/parquet/nullables.parquet", + }, + // nullables; Avro schema, MessagePack record + { + st: schema.SchemaTypeAvro, + sf: "../testdata/schema/nullables.avsc", + rt: record.RecordTypeMsgpack, + input: "../testdata/record/nullables.msgpack", + expected: "../testdata/parquet/nullables.parquet", + }, + // TODO logicals; Avro schema, Avro record + // logicals; Avro schema, CSV record + { + st: schema.SchemaTypeAvro, + sf: "../testdata/schema/logicals.avsc", + rt: record.RecordTypeCsv, + input: "../testdata/record/logicals.csv", + expected: "../testdata/parquet/logicals.parquet", + }, + // logicals; Avro schema, JSONL record + { + st: schema.SchemaTypeAvro, + sf: "../testdata/schema/logicals.avsc", + rt: record.RecordTypeJsonl, + input: "../testdata/record/logicals.jsonl", + expected: "../testdata/parquet/logicals.parquet", + }, + // logicals; Avro schema, LTSV record + { + st: schema.SchemaTypeAvro, + sf: "../testdata/schema/logicals.avsc", + rt: record.RecordTypeLtsv, + input: "../testdata/record/logicals.ltsv", + expected: "../testdata/parquet/logicals.parquet", + }, + // logicals; Avro schema, MessagePack record + { + st: schema.SchemaTypeAvro, + sf: "../testdata/schema/logicals.avsc", + rt: record.RecordTypeMsgpack, + input: "../testdata/record/logicals.msgpack", + expected: "../testdata/parquet/logicals.parquet", + }, + // logicals; Avro schema, TSV record + { + st: schema.SchemaTypeAvro, + sf: "../testdata/schema/logicals.avsc", + rt: record.RecordTypeTsv, + input: "../testdata/record/logicals.tsv", + expected: "../testdata/parquet/logicals.parquet", + }, + // nested; Avro schema, Avro record + { + st: schema.SchemaTypeAvro, + sf: "../testdata/schema/nested.avsc", + rt: record.RecordTypeAvro, + input: "../testdata/record/nested.avro", + expected: "../testdata/parquet/nested_with_bytes.parquet", + }, + // nested; Avro schema, JSONL record + { + st: schema.SchemaTypeAvro, + sf: "../testdata/schema/nested.avsc", + rt: record.RecordTypeJsonl, + input: "../testdata/record/nested.jsonl", + expected: "../testdata/parquet/nested.parquet", + }, + // nested; Avro schema, MessagePack record + { + st: schema.SchemaTypeAvro, + sf: "../testdata/schema/nested.avsc", + rt: record.RecordTypeMsgpack, + input: "../testdata/record/nested.msgpack", + expected: "../testdata/parquet/nested.parquet", + }, + // array; Avro schema, Avro record + { + st: schema.SchemaTypeAvro, + sf: "../testdata/schema/array.avsc", + rt: record.RecordTypeAvro, + input: "../testdata/record/array.avro", + expected: "../testdata/parquet/array_with_bytes.parquet", + }, + // array; Avro schema, JSONL record + { + st: schema.SchemaTypeAvro, + sf: "../testdata/schema/array.avsc", + rt: record.RecordTypeJsonl, + input: "../testdata/record/array.jsonl", + expected: "../testdata/parquet/array.parquet", + }, + // array; Avro schema, MessagePack record + { + st: schema.SchemaTypeAvro, + sf: "../testdata/schema/array.avsc", + rt: record.RecordTypeMsgpack, + input: "../testdata/record/array.msgpack", + expected: "../testdata/parquet/array.parquet", + }, + // nullable/complex; Avro schema, Avro record + { + st: schema.SchemaTypeAvro, + sf: "../testdata/schema/nullable_complex.avsc", + rt: record.RecordTypeAvro, + input: "../testdata/record/nullable_complex.avro", + expected: "../testdata/parquet/nullable_complex_with_bytes.parquet", + }, + // nullable/complex; Avro schema, JSONL record + { + st: schema.SchemaTypeAvro, + sf: "../testdata/schema/nullable_complex.avsc", + rt: record.RecordTypeJsonl, + input: "../testdata/record/nullable_complex.jsonl", + expected: "../testdata/parquet/nullable_complex.parquet", + }, + // nullable/complex; Avro schema, JSONL record { - st: schema.SchemaTypeAvro, - sf: "../testdata/primitives.avsc", - rt: "unknown", - config: Config{ - Parquet: Parquet{ - PageSize: 8 * 1024, - RowGroupSize: 128 * 1024 * 1024, - CompressionCodec: parquet.CompressionCodec_SNAPPY, - }, - }, - input: "../testdata/primitives.jsonl", - isErr: true, + st: schema.SchemaTypeAvro, + sf: "../testdata/schema/nullable_complex.avsc", + rt: record.RecordTypeMsgpack, + input: "../testdata/record/nullable_complex.msgpack", + expected: "../testdata/parquet/nullable_complex.parquet", }, - // Mismatch schema & record + // primitives; BigQuery schema, Avro record + { + st: schema.SchemaTypeBigquery, + sf: "../testdata/schema/primitives.bq.json", + rt: record.RecordTypeAvro, + input: "../testdata/record/primitives.avro", + expected: "../testdata/parquet/primitives_with_bytes.parquet", + }, + // primitives; BigQuery schema, CSV record + { + st: schema.SchemaTypeBigquery, + sf: "../testdata/schema/primitives.bq.json", + rt: record.RecordTypeCsv, + input: "../testdata/record/primitives.csv", + expected: "../testdata/parquet/primitives.parquet", + }, + // primitives; BigQuery schema, JSONL record + { + st: schema.SchemaTypeBigquery, + sf: "../testdata/schema/primitives.bq.json", + rt: record.RecordTypeJsonl, + input: "../testdata/record/primitives.jsonl", + expected: "../testdata/parquet/primitives.parquet", + }, + // primitives; BigQuery schema, LTSV record + { + st: schema.SchemaTypeBigquery, + sf: "../testdata/schema/primitives.bq.json", + rt: record.RecordTypeLtsv, + input: "../testdata/record/primitives.ltsv", + expected: "../testdata/parquet/primitives.parquet", + }, + // primitives; BigQuery schema, MessagePack record + { + st: schema.SchemaTypeBigquery, + sf: "../testdata/schema/primitives.bq.json", + rt: record.RecordTypeMsgpack, + input: "../testdata/record/primitives.msgpack", + expected: "../testdata/parquet/primitives.parquet", + }, + // primitives; BigQuery schema, TSV record + { + st: schema.SchemaTypeBigquery, + sf: "../testdata/schema/primitives.bq.json", + rt: record.RecordTypeTsv, + input: "../testdata/record/primitives.tsv", + expected: "../testdata/parquet/primitives.parquet", + }, + // nullables; Avro schema, Avro record + { + st: schema.SchemaTypeBigquery, + sf: "../testdata/schema/nullables.bq.json", + rt: record.RecordTypeAvro, + input: "../testdata/record/nullables.avro", + expected: "../testdata/parquet/nullables_with_bytes.parquet", + }, + // nullables; BigQuery schema, JSONL record + { + st: schema.SchemaTypeBigquery, + sf: "../testdata/schema/nullables.bq.json", + rt: record.RecordTypeJsonl, + input: "../testdata/record/nullables.jsonl", + expected: "../testdata/parquet/nullables.parquet", + }, + // nullables; BigQuery schema, MessagePack record + { + st: schema.SchemaTypeBigquery, + sf: "../testdata/schema/nullables.bq.json", + rt: record.RecordTypeMsgpack, + input: "../testdata/record/nullables.msgpack", + expected: "../testdata/parquet/nullables.parquet", + }, + // nested; BigQuery schema, Avro record + { + st: schema.SchemaTypeBigquery, + sf: "../testdata/schema/nested.bq.json", + rt: record.RecordTypeAvro, + input: "../testdata/record/nested.avro", + expected: "../testdata/parquet/nested_with_bytes.parquet", + }, + // nested; BigQuery schema, JSONL record + { + st: schema.SchemaTypeBigquery, + sf: "../testdata/schema/nested.bq.json", + rt: record.RecordTypeJsonl, + input: "../testdata/record/nested.jsonl", + expected: "../testdata/parquet/nested.parquet", + }, + // nested; BigQuery schema, MessagePack record + { + st: schema.SchemaTypeBigquery, + sf: "../testdata/schema/nested.bq.json", + rt: record.RecordTypeMsgpack, + input: "../testdata/record/nested.msgpack", + expected: "../testdata/parquet/nested.parquet", + }, + // array; BigQuery schema, Avro record + { + st: schema.SchemaTypeBigquery, + sf: "../testdata/schema/array.bq.json", + rt: record.RecordTypeAvro, + input: "../testdata/record/array.avro", + expected: "../testdata/parquet/array_with_bytes.parquet", + }, + // array; BigQuery schema, JSONL record + { + st: schema.SchemaTypeBigquery, + sf: "../testdata/schema/array.bq.json", + rt: record.RecordTypeJsonl, + input: "../testdata/record/array.jsonl", + expected: "../testdata/parquet/array.parquet", + }, + // array; BigQuery schema, MessagePack record { - st: schema.SchemaTypeAvro, - sf: "../testdata/mismatch.avsc", - rt: record.RecordTypeJsonl, - config: Config{ - Parquet: Parquet{ - PageSize: 8 * 1024, - RowGroupSize: 128 * 1024 * 1024, - CompressionCodec: parquet.CompressionCodec_SNAPPY, - }, - }, - input: "../testdata/primitives.jsonl", - isErr: true, + st: schema.SchemaTypeBigquery, + sf: "../testdata/schema/array.bq.json", + rt: record.RecordTypeMsgpack, + input: "../testdata/record/array.msgpack", + expected: "../testdata/parquet/array.parquet", }, + } - // Valid + for _, c := range cases { + out, err := ioutil.TempFile("", "out.parquet") + if err != nil { + t.Fatal(err) + } + t.Cleanup(func() { + _ = os.Remove(out.Name()) + }) + + columnifier, err := NewParquetColumnifier(c.st, c.sf, c.rt, out.Name(), defaultConfig) + if err != nil { + t.Fatal(err) + } + + // Check whether writing succeeds + _, err = columnifier.WriteFromFiles([]string{c.input}) + if err == nil { + err = columnifier.Close() + } + if err != nil { + t.Errorf("expected success, but actual %v", err) + } + + // Check written file + assertWrittenParquet(t, c.expected, out.Name()) + } +} + +func TestWriteClose_Errors(t *testing.T) { + cases := []struct { + st string + sf string + rt string + input string + }{ + // Invalid record type + { + st: schema.SchemaTypeAvro, + sf: "../testdata/schema/primitives.avsc", + rt: "unknown", + input: "../testdata/record/primitives.jsonl", + }, + + // Mismatch schema & record { - st: schema.SchemaTypeAvro, - sf: "../testdata/primitives.avsc", - rt: record.RecordTypeJsonl, - config: Config{ - Parquet: Parquet{ - PageSize: 8 * 1024, - RowGroupSize: 128 * 1024 * 1024, - CompressionCodec: parquet.CompressionCodec_SNAPPY, - }, - }, - input: "../testdata/primitives.jsonl", - isErr: false, + st: schema.SchemaTypeAvro, + sf: "../testdata/schema/mismatch.avsc", + rt: record.RecordTypeJsonl, + input: "../testdata/record/primitives.jsonl", }, } @@ -137,7 +499,7 @@ func TestWriteClose(t *testing.T) { _ = os.Remove(out.Name()) }) - columnifier, err := NewParquetColumnifier(c.st, c.sf, c.rt, out.Name(), c.config) + columnifier, err := NewParquetColumnifier(c.st, c.sf, c.rt, out.Name(), defaultConfig) if err != nil { t.Fatal(err) } @@ -147,8 +509,8 @@ func TestWriteClose(t *testing.T) { err = columnifier.Close() } - if err != nil != c.isErr { - t.Errorf("expected %v, but actual %v", c.isErr, err) + if err == nil { + t.Errorf("expected error occurs, but actual it's nil") } } } diff --git a/parquet/marshal_map.go b/parquet/marshal_map.go index d5130d9..bb620b2 100644 --- a/parquet/marshal_map.go +++ b/parquet/marshal_map.go @@ -1,256 +1,25 @@ package parquet import ( - "bytes" - "encoding/base64" - "fmt" - "reflect" - "strings" - - "github.com/xitongsys/parquet-go/common" + "encoding/json" "github.com/xitongsys/parquet-go/layout" "github.com/xitongsys/parquet-go/marshal" - "github.com/xitongsys/parquet-go/parquet" "github.com/xitongsys/parquet-go/schema" - "github.com/xitongsys/parquet-go/types" ) // MarshalMap converts []map[string]interface{} to parquet tables. func MarshalMap(sources []interface{}, bgn int, end int, schemaHandler *schema.SchemaHandler) (*map[string]*layout.Table, error) { - res, err := prepareTables(schemaHandler) - if err != nil { - return nil, err - } - - nodeBuf := marshal.NewNodeBuf(1) + jsons := make([]interface{}, 0, end-bgn) - stack := make([]*marshal.Node, 0, 100) for _, d := range sources[bgn:end] { - stack = stack[:0] - nodeBuf.Reset() - - node := nodeBuf.GetNode() - node.Val = reflect.ValueOf(d) - node.PathMap = schemaHandler.PathMap - - stack = append(stack, node) - - for len(stack) > 0 { - ln := len(stack) - node = stack[ln-1] - stack = stack[:ln-1] - - pathStr := node.PathMap.Path - - schemaIndex, ok := schemaHandler.MapIndex[pathStr] - //no schemaElement item will be ignored - if !ok { - continue - } - schemaElement := schemaHandler.SchemaElements[schemaIndex] - - switch node.Val.Type().Kind() { - case reflect.Map: - keys := node.Val.MapKeys() - - if schemaElement.GetConvertedType() == parquet.ConvertedType_MAP { //real map - pathStr = pathStr + ".Key_value" - if len(keys) <= 0 { - for key, table := range res { - if strings.HasPrefix(key, node.PathMap.Path) && - (len(key) == len(node.PathMap.Path) || key[len(node.PathMap.Path)] == '.') { - table.Values = append(table.Values, nil) - table.DefinitionLevels = append(table.DefinitionLevels, node.DL) - table.RepetitionLevels = append(table.RepetitionLevels, node.RL) - } - } - } - - rlNow, _ := schemaHandler.MaxRepetitionLevel(common.StrToPath(pathStr)) - for j := len(keys) - 1; j >= 0; j-- { - key := keys[j] - value := node.Val.MapIndex(key).Elem() - - newNode := nodeBuf.GetNode() - newNode.PathMap = node.PathMap.Children["Key_value"].Children["Key"] - newNode.Val = key - newNode.DL = node.DL + 1 - if j == 0 { - newNode.RL = node.RL - } else { - newNode.RL = rlNow - } - stack = append(stack, newNode) - - newNode = nodeBuf.GetNode() - newNode.PathMap = node.PathMap.Children["Key_value"].Children["Value"] - newNode.Val = value - newNode.DL = node.DL + 1 - newPathStr := newNode.PathMap.Path // check again - newSchemaIndex := schemaHandler.MapIndex[newPathStr] - newSchema := schemaHandler.SchemaElements[newSchemaIndex] - if newSchema.GetRepetitionType() == parquet.FieldRepetitionType_OPTIONAL { //map value only be :optional or required - newNode.DL++ - } - - if j == 0 { - newNode.RL = node.RL - } else { - newNode.RL = rlNow - } - stack = append(stack, newNode) - } - } else { //struct - keysMap := make(map[string]int) - for i, key := range keys { - //ExName to InName - keysMap[common.StringToVariableName(key.String())] = i - } - for key := range node.PathMap.Children { - ki, ok := keysMap[key] - - if ok && node.Val.MapIndex(keys[ki]).Elem().IsValid() { // non-null - newNode := nodeBuf.GetNode() - newNode.PathMap = node.PathMap.Children[key] - newNode.Val = node.Val.MapIndex(keys[ki]).Elem() - newNode.RL = node.RL - newNode.DL = node.DL - newPathStr := newNode.PathMap.Path - newSchemaIndex := schemaHandler.MapIndex[newPathStr] - newSchema := schemaHandler.SchemaElements[newSchemaIndex] - if newSchema.GetRepetitionType() == parquet.FieldRepetitionType_OPTIONAL { - newNode.DL++ - } - stack = append(stack, newNode) - - } else { // null - newPathStr := node.PathMap.Children[key].Path - for path, table := range res { - if strings.HasPrefix(path, newPathStr) && - (len(path) == len(newPathStr) || path[len(newPathStr)] == '.') { - - table.Values = append(table.Values, nil) - table.DefinitionLevels = append(table.DefinitionLevels, node.DL) - table.RepetitionLevels = append(table.RepetitionLevels, node.RL) - } - } - } - } - } - - case reflect.Slice: - ln := node.Val.Len() - - if schemaElement.GetConvertedType() == parquet.ConvertedType_LIST { //real LIST - pathStr = pathStr + ".List" + ".Element" - if ln <= 0 { - for key, table := range res { - if strings.HasPrefix(key, node.PathMap.Path) && - (len(key) == len(node.PathMap.Path) || key[len(node.PathMap.Path)] == '.') { - table.Values = append(table.Values, nil) - table.DefinitionLevels = append(table.DefinitionLevels, node.DL) - table.RepetitionLevels = append(table.RepetitionLevels, node.RL) - } - } - } - rlNow, _ := schemaHandler.MaxRepetitionLevel(common.StrToPath(pathStr)) - - for j := ln - 1; j >= 0; j-- { - newNode := nodeBuf.GetNode() - newNode.PathMap = node.PathMap.Children["List"].Children["Element"] - newNode.Val = node.Val.Index(j).Elem() - if j == 0 { - newNode.RL = node.RL - } else { - newNode.RL = rlNow - } - newNode.DL = node.DL + 1 - - newPathStr := newNode.PathMap.Path - newSchemaIndex := schemaHandler.MapIndex[newPathStr] - newSchema := schemaHandler.SchemaElements[newSchemaIndex] - if newSchema.GetRepetitionType() == parquet.FieldRepetitionType_OPTIONAL { //element of LIST can only be optional or required - newNode.DL++ - } - - stack = append(stack, newNode) - } - - } else if schemaElement.GetType() == parquet.Type_BYTE_ARRAY || schemaElement.GetType() == parquet.Type_FIXED_LEN_BYTE_ARRAY { // byte array; its a primitive type - v, err := marshalPrimitive(node.Val, schemaElement) - if err != nil { - return nil, err - } - - table := res[node.PathMap.Path] - table.Values = append(table.Values, v) - table.DefinitionLevels = append(table.DefinitionLevels, node.DL) - table.RepetitionLevels = append(table.RepetitionLevels, node.RL) - - } else { //Repeated - if ln <= 0 { - for key, table := range res { - if strings.HasPrefix(key, node.PathMap.Path) && - (len(key) == len(node.PathMap.Path) || key[len(node.PathMap.Path)] == '.') { - table.Values = append(table.Values, nil) - table.DefinitionLevels = append(table.DefinitionLevels, node.DL) - table.RepetitionLevels = append(table.RepetitionLevels, node.RL) - } - } - } - rlNow, _ := schemaHandler.MaxRepetitionLevel(common.StrToPath(pathStr)) - - for j := ln - 1; j >= 0; j-- { - newNode := nodeBuf.GetNode() - newNode.PathMap = node.PathMap - newNode.Val = node.Val.Index(j).Elem() - if j == 0 { - newNode.RL = node.RL - } else { - newNode.RL = rlNow - } - newNode.DL = node.DL + 1 - stack = append(stack, newNode) - } - } - - default: // else; should be primitive types - v, err := marshalPrimitive(node.Val, schemaElement) - if err != nil { - return nil, err - } - - table := res[node.PathMap.Path] - table.Values = append(table.Values, v) - table.DefinitionLevels = append(table.DefinitionLevels, node.DL) - table.RepetitionLevels = append(table.RepetitionLevels, node.RL) - } - } - } - - return &res, nil -} - -func marshalPrimitive(val reflect.Value, schema *parquet.SchemaElement) (interface{}, error) { - if val.Type().Kind() == reflect.Interface && val.IsNil() { - return nil, fmt.Errorf("invalid input %v: %w", val.Type(), ErrInvalidParquetRecord) - } - - pT, cT := schema.Type, schema.ConvertedType - - var s string - if (*pT == parquet.Type_BYTE_ARRAY || *pT == parquet.Type_FIXED_LEN_BYTE_ARRAY) && cT == nil && val.Kind() == reflect.Slice { // raw binary - var buf bytes.Buffer - encoder := base64.NewEncoder(base64.StdEncoding, &buf) - defer func() { _ = encoder.Close() }() - - if _, err := encoder.Write(val.Bytes()); err != nil { + e, err := json.Marshal(d) + if err != nil { return nil, err } - s = buf.String() - } else { - s = fmt.Sprintf("%v", val) + jsons = append(jsons, string(e)) } - return types.StrToParquetType(s, pT, cT, int(schema.GetTypeLength()), int(schema.GetScale())), nil + // NOTE: reuse existing JSON marshaler. Implementing it ourselves is high cost + // NOTE: it requires redundant map -> json -> map conversions + return marshal.MarshalJSON(jsons, bgn, end, schemaHandler) } diff --git a/record/avro.go b/record/avro.go index 7390160..95f3deb 100644 --- a/record/avro.go +++ b/record/avro.go @@ -3,12 +3,35 @@ package record import ( "bytes" "fmt" - "github.com/reproio/columnify/schema" "github.com/linkedin/goavro/v2" ) +// flattenAvroUnion flattens nested map type has only 1 element. +func flattenAvroUnion(in map[string]interface{}) map[string]interface{} { + out := make(map[string]interface{}) + + for k, v := range in { + if m, ok := v.(map[string]interface{}); ok { + // Flatten because Avro-JSON representation has redundant nested map type. + // see also https://github.com/linkedin/goavro#translating-from-go-to-avro-data + if len(m) == 1 { + for _, vv := range m { + out[k] = vv + break + } + } else { + out[k] = flattenAvroUnion(m) + } + } else { + out[k] = v + } + } + + return out +} + func FormatAvroToMap(data []byte) ([]map[string]interface{}, error) { r, err := goavro.NewOCFReader(bytes.NewReader(data)) if err != nil { @@ -25,7 +48,8 @@ func FormatAvroToMap(data []byte) ([]map[string]interface{}, error) { if !mapOk { return nil, fmt.Errorf("invalid value %v: %w", v, ErrUnconvertibleRecord) } - maps = append(maps, m) + flatten := flattenAvroUnion(m) + maps = append(maps, flatten) } return maps, nil diff --git a/record/avro_test.go b/record/avro_test.go index acbfa5f..b68f9e2 100644 --- a/record/avro_test.go +++ b/record/avro_test.go @@ -8,6 +8,33 @@ import ( "github.com/linkedin/goavro/v2" ) +func TestFlattenAvroUnion(t *testing.T) { + input := map[string]interface{}{ + "primitive": 42, + "nested-single": map[string]interface{}{ + "string": "test", + }, + "nested-multiple": map[string]interface{}{ + "int": 42, + "string": "test", + }, + } + expected := map[string]interface{}{ + "primitive": 42, + "nested-single": "test", + "nested-multiple": map[string]interface{}{ + "int": 42, + "string": "test", + }, + } + + actual := flattenAvroUnion(input) + + if !reflect.DeepEqual(actual, expected) { + t.Errorf("expected: %v, but actual: %v\n", expected, actual) + } +} + func TestFormatAvroToMap(t *testing.T) { cases := []struct { input []byte diff --git a/testdata/parquet/array.parquet b/testdata/parquet/array.parquet new file mode 100644 index 0000000000000000000000000000000000000000..69f119664a9b26f23cc8e303ee164ba98d1ef5fa GIT binary patch literal 1737 zcmcJQF>ljA6vywJv*Uz-B9uFwkyT}APZ^2?5|J`k!j%{pA{6x-I3kULA{*QksY|D- z6B8TE49xu$3~h(1bnMiT1*szg@9gvWoTO}cu%GYV-~YScdzXxMcAry3E$VDj0)ayv zpJU81f(s)HhT61a%n=JFILYP_a(x-dAxP}fO(W5jqw?aeN|rC}pm-^!R~^pJS|KOr zXP;hz!1ZMyhgKcFevuarxtmA7rJx-YFU2$nH)+pUnms;TO!j&H0LkN5Hr%s89e}7u zw+)fAzes2Cl&dEQIztEU`EVJ5@Cn^8gc#*CA3l>?CK)Z@w_;Ew+ZmeK2IT=A7$09x z+3)0H+X?X+-qno(X@hsw*I>WoTfnWbH+|PsA)tY=^yMmS=taNAx(qr1TpLESCs7QC0N!e|c!4N^h|H6Cil_^ry*E!H z7;ZxByiE?q^9iCYIg#~D9;@|iA=D?_jxvi!|I30A&-Z=_*QdzqJ1+9{HmJo2d%*_6 z4fHt{p$~h{^W+AzoHuM&gaNO1o%oD>N>pk_Aj^$e3Nry;-)-X9@~NvtIVH))vo+UVUdf_KGUbqsAO-NMgDvhLU-4D>nzCHp9po-yzHu~Wr6^&aV0MDVjdL&V z+q%ZB#0GR}cw1kAegUnbpev1uKDWGpmbnN1RYOB8EXxucu_JNS_(usYo6Bmm5V`qf rb6qLe_Xmuip7%aVKO9UJPp3)u<0RdmC2@Bi!Eg8i{j4E0fBjE6h6skS&7}^!FQaBC>|2wAq5v=@Ssv<%itE1sVyBUQ^&X%sg<2VmJTLl z^3);F{+9lL5|TCa2b4@+x@7Xucha47vK%^980p=;_uY5*eeZDp;OHqqL?^}`!4Me4 zu$hM72M@eps!ke84(pI$IL;$v+C1P>P}n3pN}4rIE>aD7$t7{0z* zJO_Yj^MFqk8NPqxkLEEmiT-dv-IW8G24I`)t6O^=OxkZ=y?Dk<83B;JHQ_BM)EE|M zkv(MrV>*k*!H9`3z#2UR-pOXZuHb@Me#1_DvNJc z+-@Y`vf*hPw9g+5R9Cdm^C~{9@k*g{KB&AK962P1>ei*~IY)NVt-sS$Khzkc^N6P` zRrIErF4NaCZ?cH!)~en?tb7nf{wb-09lMBC24OfE`T<-H7?sAs3=s?wo`k^&5fj4l z@g($NdK+TneRwjM3=ygE#Nc!`oF=i@&n`k8%*uXD@$i39P;A-O(lKpzHnOza7tpvnO@@fN{-BdgOR6%XgsjRkH~erLh8WZ9pT)xNLLhIcK^}OaV%? zN*T^{pvX0wa|6}eqFSh#lH5SKxa4cs-T7IvNllW(y2q$5bgn_pWi_>1@*}u{&Lz&^ z!m5<@61(z>%P)ugD5vta5<_LL#K<1)Ly4mD!boKn^{Lp$^n4;qa8)U2e+wNWv= literal 0 HcmV?d00001 diff --git a/testdata/parquet/logicals.parquet b/testdata/parquet/logicals.parquet new file mode 100644 index 0000000000000000000000000000000000000000..a712ee13a174ad37d2af002e3b0fa175f1572282 GIT binary patch literal 925 zcmcgrKX21e5Wi>a_$5S5)cCo!8qrE9ZU-_jWDAmErGr&qPqW9PP)^(^ZkBz=XWo7zWG#<3e?sUW#Ldz zg}S4ch{(|eEM)yFA2jF#s17xt1*i#?&?1x}w~4B2O!Sw5OvHx^puRsOnpB9!HKM^1 z(e^Ttzk-a%L<|AZM5wXI^(051zoaaV^j`p)Nl<1-2swKHNSI|h``I+4q~bGJ|K$ek z=+i6Mv)}t1Upz8o+u!<_g6D);vBP{V?t#UTv)0)O*fE5DVH&2y2t}z+Dlp?3%wP#- zdl|-GDatkv!ZIiNzXNG*)I#qY{k?Ff6UC}TN^9UAb~{P8QO=xF685^iFp9#su|P`4 z_gQFX*pD04EL7pFIO+5Tv(&}g@igBe+j8sfYfsjd=C%rw+^n9`Y|B0t_KEOh`^IK@ zr{XF**H8{~Dge5+Mcy~9uJl=nT+1owQrLe4GTP4F`{I4jufR8lOBtrZ{w0tGhWX`P z+XC<0xSN50L#~H&BjE6vt2U>3lY(n35+>put0Ocu0pr104i)pkoOk-@vXF<07P1RtnuZWbD+f zoib$3kWY~z$rw6h%-E%wJM^7&cah~7x^(Lex_9rrKTrC-d-neB!E+$s0^0_P1_Krf z#}N*}liClTr5?m*%Lq9SH6JD)wb=eyUdUg5b z6$*H$4CPv_@co-w&Pede`lST@$Q(=e(M+H9H~O_G>EPX)?GSGInQEkaa{Jbs(yQ+V>P zYWOq=gP)RzK!P2{NnpPNT%YN3b!B@}d<&&lD-am#Rbm z9fl&&vGZ0laj4`uebDJ9*>dMJGE-=FB{}sh*P(8uxhADl;XU<`ubxMFivkVU2$neC zVsZoY8MB~`WSRFFTg&^TZFw7Q1N%vP1^YdUGchCCXJ+!}b@DvDGz}A7H!GL+9 zLGXtQHw@XZTFOxi6M|-WLb#_46+&PS9+!YzMb#2qgOy|Z#xd#T3RjoifuL8HU!Eg@ zd&*FuaF3yJ@geHdjecW!SH!S;e#8jQil3%Eu^dlbiEFpN-l^qSKs zB|y=lVH`~ea5P)*!gz?`4%%!SACAI+KvyM3pVDBK+q$u9gs2)x@HS4y@aUmxIMnsr z-;#Sk+%3k5Tf7HY4s|x2ZOQ#&D&@cfOXJiVW|%$aKn{FSolg0+;Q`gqOo9v>ISFQb zarcDEW6J}sNx4`>g<}g#RK`Yuik)IY&Hqt!R0dJ|6Y>fF=_XJ284*&$OzTtGxXLR?Tl zzy(AEQE}t(9Iu&A-CWAF?55tbwELJXPg&QV?)w2lGl=(k{|KI$=i@!UvwY|Gp7%Y6 zxi7yln�GdgyRElst%NQ8+_U48rjHYHWg0JNgJi?Z$vwRPV~_B6Syuvo_&}%gz+nD610rJKVU7fGStJ0 zt<6g0`QJ`myPI_0jd!D;jK>~fU>QN9&m^|%csR)h-Ex-0JsFSrb`RUCufJj$zelq( z=GkM|j z=~%8Dj3oh zjW92oi#d?F3U_0R5_A3FD3-&C5U85j2lqf7l#jt0s9eT(LAEb3l(}pX)_lY#KcQwnJG|_ZfZg0Ir8aQ>c}Yzl4vcaUWzn4_PEl z^>7TT&34?5mAIuZZi&|pCpyKiV?*yH3t>;snNWb`!v-j!9y76FBpiThqSr+94i8v4 z&V;3~dO;E$6OFs$!UiOVVJ#kU5N2$&&4U*ov&+Hw%atl~vfiRl*i0n7lRSu++qU!k z$+8EC>OWVfaT!vRWg3e^VX!-Vh@4m==AXTc1O(lwjFN&c_GSbbM`WD6F3PAbZ!5!L zI0Vt|R7U+~^=ZC&?ca%v-^088Lm%~9UP7#Nv2EQ_7k{&&fWP~Dx89TSTvcmG8P#?V zm3AEuC+DOSK8x<6jK)>Gw$!}uU!;sC-|QxMP_h3hW#pE=bz$K|?c!UkTaUzJp)DR{ z1z`o2^n?>br%y_Mb44`c8;%9A2g*rs6FoT7ws9sR%di0tzvl2IPwh}@@HlTH#EIF< ziN90nG^C~26b`+H>83KJQr7N zWdxLSX&$kYL;ZJiJzLEQdp}&f@f9vtQ(ITr=|5 zm&e}ZMN^J)JKb%2u(o>a_1Y9`^pB0g{W4+l$PeEMy7YNQ%%k^{i|O(UFRb3-482k2eu+`P7M`f6&guKG`9QZJ z@jIeM)xHv8ElPTI`G!x=9SDv&+ZAI~2h&MOEgxAE^M5gBr-rb$-$U428)K#UIWuER zuI!JE`>I(QTKAKb_jP=%`hGO~{y(kKi}l}2V_NP@hu5!?HcWa?x<$uhAOD;ru1QoG0RUPyu)$GO^lcE%EVEE;|+ z^IO(XK>aQ6=$CBr-N^mJ6!+LmAM7u?Ip+qu@akT}_NKdRpT}1X>nb0xzYDK7P5Ss7 zRw)-mtq8i!CT05cFp555izbf=9GUnY>kjAAw4$Fj7ktW&9i6?zYQE2|yOHj5`rXf2 zcaZnXba!^&yu#KbJ;*k|ZT4aH`j7A2y28#L@p-=erCV%M)2;NfQQxq!ho;|eTJtTd znz8tkJ+FSvCR|W`_eaoGE)`e&Y4G>hyuNre9V_7sLkUR=?g^i*#*WhjJj{uQAPZ08 zR>%#E9suiU$XwZaEal?*c&6=GYJr_lO;dDyW_R2)8}?$ZsT*#AwcYVJ6jRgY&L)@M zMjAHhy(F7lv29T(UxAYIe-fJ zX(&GgvvDVPIGL1~F>whL#F$9WfF)3i)ehL<`#M(5BA5C$;wp3INL-7Dr@(q_#tJAj zKsIblc?EKz7>~eusKfQxgxl~SG)xyly$w$dn}dZBuu-7JVhip{n1;ElpaBkJ?kl~Z z1gZ?(sHBma6>wYuTbHv^7vwC4bx`P#z!nBiCPCH9*a%zVaIFY;4_-#zZharvOkw3> zlD8)30^AQrlAtv1rMH$rtt_@T?jgSoScf~Y;Drb*Bn?QO8XG2$fNb0p1{sxRiuw8T7X&Ho!%c#a2;LmSq3X+a@ZGjA&HT#h@YKt2|PaN?~L6hakdNS%@-dJL|yP8N{mmGSY(oOqlI^5D>mPzF`d zFdx?0A)9O7g#qMiwsTC{q8SFPGeTYK)>|_as|IpguYF&0tqoy3m!vx@bfSf;03m&p z^sXJZRgg<=Q_GT_sR~)DF4e&V%8V9`O{UTt4JNIgsNds1TT#St0qGoCmsyc&F{Ig2 zsfdT$y^V9pu-MaNN|!~(B}1#VYqe^#*({TpWKIXShg~v*)uPrZot#{$Hrtgtom_5~ z8I1B&F1cRObtel>jZ7z#Tg*x$Cr;MNO*X4cqf1RqOXiaWjh-7{hCLMXJ+jG^Chp2ARR3=6veascAN&)uMCRH8Pby<(w?D z*j*ZjO=oa&-jt+u;DlUARdo+cKZnW%X|nJq0C~DrO|(x3vp;zc-UiF;ulWy!p4jIcwv$4ujNh| z%@>D?lf+9TelZ=huS6M6((eW5a@q<_7q5^gV;JwjS8|IArv=^`t+{Visi4G_6oJGr zT@SpHET3@N&s)2Vt`3h`KE$QhY%9qSgwx%4F6tF}&qClma{cuGK$>;6xeY~N9>HqTJvGZX>EFkKB_lH$M)k|wm1 z^fa!D13k$4f#|if)k)8bv>%9$z-!KuJP7Jwt&?VF@*V_{Ji5mvuQ5wf*t3JYPDVO$ zSlE*U;5ArD@`5`!?4BE!c9NocdWLv#^)LxXhh!W>g1mwZ!C2g|yFBtd zap~2=OEUX)u-C5jCu?q}nf-`UcN6Q?Q%gz)cBI(twDl+^wL-EIAkGRP5RzGsE1MCv zUhf=1J4bca{*#y}@d=T5mxy3unE!c)i@%H#hw>uB%rZ-=U1fVwW9sKnS*$u!NNc$Ur>ZkO;fZu5Q$z-vVg|>@1P4+M3;e-ts5TbfikV zf%mHX(2i5Bn$G|;$^4?n~&dB$qOY0Jx8uAtaW zM3L&&Ku4QL?sqbTR|RzMSYdAGFD)tYl8#qzWzqm(%t#R-qg)fO`t zV)8`0G_O-NSvzy`jEmBB2BTtJEOl7g%-&Ec)J54t=`a)5=M;(_TpJ}!t*WjzcVpaw zrHq6#p0GF-SsSL6i7|#W$>hBbk&Tu#JM>MFxK`Rml3qn3knYYHM5H0pCJqohw*SvTGnT9 zyIOly*5+n?yWN^>59B5Opjr(gpM;Yoaj&4WX=J?DAD|;)#^+1MKvZXz1lu+g?D1f_ z1O#1UBZ65n9>Ic4+DE3+6<{4`0_rclOn3l2qDlghVVKFQM zNRKF!0n1gJj~x8YiBv5)eog(kskc82w2YFLh1CrALEjSY<7WzT7y5Gm4}vmTJFZ?c zx)R;LmJ$b_rQk zgw0@MX+-LplELm2L3eaT=>V?tseyl*6558hl`1e@kb$ZxqqRL8>sG7l!1PE3z!(iP zCC0{Q{24MAP5RQ|ATl;UCj%JmP18VBRbpuEkNHu89}7@LiAwM%7{J4!6tLliJu_eh z7?kazjVc6yxEvnXJuAUZS~;O=Y8BW`c@Wqs`2tBDn7eFn%~v4-!b`dELT-s3-W9rK z34{k_Ze0ZQEP(#Ky1GGi{3}o2e8-lJQyj;#w?6Pl@3emSH0RknwhkN&uj5^{e~x$Z zbDu4K`@^qpcxHgvxs8yhRxtv3>&Lxw#l7?G9hbGesXp^Q z@2`)%eQw$e{#UF!z|B1s@Q#WSH>>U#!&|w^@NyEV>O3*|O(k7B54d~$Qr&%V<@fjY zzxwq$Z$Zr}&0WiTc6Y43Z}M;UPpb*}4=r|lacYssdA4`ptrhoVmYw~>#?3l<+lSHz z?h${Zl^ywB38h~*?btBym9fhwhMtl=xi*?mez}paPhF#Ld@J%y{1~-*|90bTt3$rt zr`@|1{Bw(H#>nhnSEAy#epj>agJbG*dm_u=m7>Xat;p0L>MuORnR5?qS@qO{$+vBO zcIPgLv=kL^PnE8h0w*&`0|CL+A z8hmt#7u{grtTBIj1IoHVZ<~m&ojskc;0qYjd^7Oa>u-M!YWSt&yWHCky~Nh=r8DNJ z^~`wj?$1zi3G~{c7ygb$j!#=7@_mZ#dvi_y5$hqe@4(aK@=eFltIi)F=dC`4e$Rhz z)6921LH%ByVs_0(sQd1UTB`D0bm=VV1hMlCwBXLZ_N8YZTyhwdHQs+qf{PKgvshf_Xn>HQI_e(xO)qgae z+;q=pXrSZfcc0LoKpndRpZ`#EfDOf?;|-hEA7lj{B*+D z8*rMNJm4fCW9ckz(1pZNf{dh0gjC)ZHhCo>h0@sUk0ujj(2y`XRGku~y(5;;V^&X2 zM)er;Mo})|%eLuhg2FOntE;U!ikm}WN~#sxqC}^w3A6hN%+YR3_R+n@JSlM)T9c}% zTck6#H>q0XhP1NT?RP7@J$=#MZe^fRl<0FvuqKf$r%dL1j5)KNiOC}>Qkx=t5)Yxr zQa&2@NLzcr5p50kn46=dis_cQx+P8`-{^7btbSROCF;j4&4E5KX^1c)mr|Toi$u3DK(em^|@zM%)8tX&!v$tVM^2f4JDe`%Z5{CWWHl;P=+E$t3#C9;ktpEDS3QnPz}*y6Xe zYt{Vf2BS^nqX9vXWL7Z9SREK{@n)iqP&d;=O+btePuy(qsk&@gMDQJfPNOllq|$VsUra!diy1FIc zIA=41%Cy^QpH}40dHM_vv(6{c4rT^UW-Z>~Bj0Kyx|p0aNPA7rP}F5&?X?cCIo!Tn zz)71hkvzeG{9$bda|~qyHra7=lp)h#p7pJCBLEx403UtIH7WEyAjn;;R6mzX62549>=M5Skav7W!L| z^7jD3qfi6PE0-9I{h-JyNU$0LkQQY0{$Dt^q5-ZdmmZ?4XmM@@Fj>~>3+M0};BngrqvzIwMF7aC>g=uKrL{ftOphDtt;|3LiR!$_tpUy3e99$6Ds^- zVlnO`)ReG!7!n+Y0JH_E9z22y&1d~+{Ugifp35($wUpGIkYE=Cur0{NTTJ0nxJd1^ zp>i)NJ%wN?Bv=RmPzkC1f+DHI62oLF1P8f-yXV6v>!5e`f#5;!dNBXI?z15<#}!d1Vl^ALV= zT`|N3qk}s!C>Mp`be&+J4nT&>uk@Toc5#2crv2Y8?ZPchBWd_C!xe%pm4e4A0j34{ uk9Q%#LpKTPInyT57!ywglD`PXrltc-f`~<@QW!X4lbi!%I2;>z1^qASv_I|u literal 0 HcmV?d00001 diff --git a/testdata/parquet/nullables.parquet b/testdata/parquet/nullables.parquet new file mode 100644 index 0000000000000000000000000000000000000000..a9cf42ce83279136566efcfc5ce16fc7ad4e3de9 GIT binary patch literal 1105 zcmZuxUr19?7(ZtouXke_%FgXhFES->t27akEY_ALG@@jLZ<@HdrGvR^-mPYY4<<`c z%*dpm!g`2$&>qT!$chbmNhqp^h%i|h3I+C$z^A@*-Ic96aPR%j`F_9e_nq(ixSsl> zH5AcOT3$&lU~rU^M2tm@U~Q^1!J8lxHXs8$RRC~PcLtJ_ZLdBp5_`j&VL)!No8ir2 zj-hkOVdmVtXZaR$7Y|mM#;4@Z5Mm6|5u6c(f4Mqcaz0kmA@c5)=W_S2sdEs3s5@Uu|D1?piZ@_{ke9f z{pwM_3qmxm9^m0)Ks+W;fx7xp&$Zk4T{>1rHq}0x9d1s!#){>YGVi=gn2D;p&wg+X z&K`-Cw!L8Kj$=BJsaMdSxSEJ3CbuQ;a>+|uMNmP98d=(`DFjj{T5~X-H^QNRSMowb z;z?q>5H`8~#2m1%B;(18$;(~IIY!Hl2a0X9J)=OzXjF|xe0|+P5vu^NuGFVSZ;NQ*^?}%utZ53tR<+SQ&?EQ;B$!o zpIP~7jzsx1ZT&JDZvYGZ-~*Mc>60H5iJH>z^nEq_J1i_>@Pdv$L0Qu#U*{xh)^)Vn z==puZ;B<&Z|8`m=&?dIz0jQYHPFGW-Ph#OF2CqZ>dkBOHqhLXHYmc}0L^Keo>Qrne W1HEcc3EM(m=u8CthDq?i&*Tqo#STFL literal 0 HcmV?d00001 diff --git a/testdata/parquet/nullables_with_bytes.parquet b/testdata/parquet/nullables_with_bytes.parquet new file mode 100644 index 0000000000000000000000000000000000000000..6cc85092e66464db5072b99422f39bae0f392242 GIT binary patch literal 1097 zcmZuxT}V@582-Nbd3H9YS?oKV=|QICVfd4IA!*Dlbu@{RX-Z%wZaQ@^&sqDiEy9Zu zixl&s+rqkty3m_4Atbu$rXVN@i7;6h3MKYq7hd&#$IUkBz`ngZ@AJIR`@QeOJdN!& z6wzW@T1m|iaFmloj75y#IZ$VWlOQA3Asu|G0MJ5PGLWRCy!whrY)wlOfIMO|!O3Bc zp>xR@mONa){*a{$$Eu8XX63I?Vj9y)oKb|=Z_X9nj@R^we4y*KJiI-71In~mSussI zk9;cM>Rl@w+A(eDXYTKu`2Jl?*4kGK6CFwCbfLUa;(g;3=3|lL*FQVQ z7S6_td)~5kC->=@20{t9+N_K;MLQJ{G|(v*YnrWuK;uMP4aSR1zsuFp-WIOtEP%M_ z{JDDNwBkNiKcrT-H8iksX4V3&9@?8R8bd4=iA8;h;ed!E0Ise~>#&7lK2DGxUPnWh zhZFHW=8%X1jy)FDSte_dXlRWEgI-_IAEEh(qB5PR_o-^o?^O`h!LOWv5=E3iM1ra^ zh$s(X?m$rW!fPYMT)!FvI-(|)@Fk-D$ZpISjCV9owRqdd?w%HBx*|QXtU9HAF!~D zA!!#2_U~CFuq5`#fAs&jsaa~|87w@&khP2ZEg;-72xernguLNPF@LmbP_>Tu!;yfh RSc6{JOB8K`4?OTE@)tb1{aXM4 literal 0 HcmV?d00001 diff --git a/testdata/parquet/primitives.parquet b/testdata/parquet/primitives.parquet new file mode 100644 index 0000000000000000000000000000000000000000..f17b6e352ef7defff99a22f331e0cf2594dec6a3 GIT binary patch literal 807 zcmb7Du};G<6m$}kT2+NQ@GM92&;cw47?7yM5Q*{wsOrGLmWs5B6k;zGxZv*rMc{)kh2sc^;BttItuAaWanwaZ z(2^&FNdrs^g+16_5;D^@OE4=oMK`RAnqGH!d+iJaeS5t>#sMY`Fs*fmr$@7#fnXK- zG6UVPE@~PFCG?iI=1sH~-Z;upzIo{36C37*t^bML;J!~pdzdGeNs-*dGuXtN*dd}d z);f)&46ha|FUbl56cJ5zHYLCiZcI`gVY`jkztHn>8WZRkVtiY~vkLpOB2TjE4k4Td zGPqMr0txy)BSGT2 zj!`XK3Cs>v2WcD@E?TT)sNPZCwrYFS#^fF4HospcY(8?}^= AW&i*H literal 0 HcmV?d00001 diff --git a/testdata/parquet/primitives_with_bytes.parquet b/testdata/parquet/primitives_with_bytes.parquet new file mode 100644 index 0000000000000000000000000000000000000000..e1ac2f7cc11f40fb8755d4906c7fc147bf6e844c GIT binary patch literal 813 zcmZuwJxjwt7``TFJW7!czQ+Y_=%9y#4uXP0z_>U{=^*GJBp6E|&1o77f@8-{Zu%4a zB@XS{S@0M54}32lwOWsG_uTtD4{z?Cqx&r;U$7E= z8AIEvH#NOtq*sIEk)W4@v&X_faW*Bhnj#t`be7Iy-)b%FFvw7_abV+&1+!oYEO&B9 zM6;X4gE)^z(GWK9Hnxda54BFBAjRv&ogJq+0g8wwI_(o+2-j{C9bmbM*tyXUVGL$gd6s~I?B89FxyAoBAsyF)Ms;;lFUGOX9Jh2=o|Dc?b9rrHC?jNFjudh3! VC>zE)?IZz)kdsgRX1n;Kd;`?^kt_fJ literal 0 HcmV?d00001 diff --git a/testdata/record/array.avro b/testdata/record/array.avro new file mode 100644 index 0000000000000000000000000000000000000000..e658e79025b0df8ada6f4405f4fbfb776fe4d39f GIT binary patch literal 776 zcmeZI%3@>@ODrqO*DFrWNX<>0#aXRXQdy9yWTjM;nw(#hqNJmgmzWFUI~ElsRsy+c znW;G`#Y$Gu)i9Z){QR8M#5|xJR4YuNRtK&oGp__858@!n<>cq3BP78*B-yl_{6r+Z z5H6B@N`7flPAWn_l#iq$sj?)s7@+{dMUpQrDau540hEuVA`$9$i2vY01QX6INzDa@ z2wWUJ=zLPkQgaM}E*Lps7h79f8(S*^PFl(NDXGaEd8Iiy42RTPw-wm%eLeW;rBu!m z-W4n_7#WzD&YtP9pEVN%KH77EqlX6)2Tb@R85met&Yt0Mfaqj&K+}mw62ln)QBVtc literal 0 HcmV?d00001 diff --git a/testdata/record/array.jsonl b/testdata/record/array.jsonl new file mode 100644 index 0000000..e84b275 --- /dev/null +++ b/testdata/record/array.jsonl @@ -0,0 +1,2 @@ +{"boolean": false, "int": 1, "long": 1, "float": 1.1, "double": 1.1, "bytes": "bytes", "string": "string", "array": [{"boolean": false, "int": 1, "long": 1, "float": 1.1, "double": 1.1, "bytes": "bytes", "string": "string"}]} +{"boolean": true, "int": 2, "long": 2, "float": 2.2, "double": 2.2, "bytes": "bytes", "string": "string", "array": [{"boolean": false, "int": 2, "long": 2, "float": 2.2, "double": 2.2, "bytes": "bytes", "string": "string"}]} \ No newline at end of file diff --git a/testdata/record/array.msgpack b/testdata/record/array.msgpack new file mode 100644 index 0000000000000000000000000000000000000000..4d7f2f5b38d82267cad4f700caf8be15a3d13cdc GIT binary patch literal 390 zcmeBJnp9bmS_~nV6_*rc=A}carHMsFiIo%E7iZ>`oVNeK00v8P^7GQ+yrpS5`H4Wu zk267F*0PlR(xjYJI3Ks!%aii+b5axY4#64Z+tLAbg##n1D`0%wu0Zjj1H^+25Ff&L TWSb557>sck>_eEjsI~wAY8I!K literal 0 HcmV?d00001 diff --git a/testdata/record/complicated.avro b/testdata/record/complicated.avro new file mode 100644 index 0000000..f355295 --- /dev/null +++ b/testdata/record/complicated.avro @@ -0,0 +1,89 @@ +Objavro.schema{"type":"record","name":"Complicated","doc":"It contains most kind of primitive/complex/logical types","fields":[{"name":"r_boolean","type":"boolean"},{"name":"r_int","type":"int"},{"name":"r_long","type":"long"},{"name":"r_float","type":"float"},{"name":"r_double","type":"double"},{"name":"r_bytes","type":"bytes"},{"name":"r_string","type":"string"},{"name":"r_record","type":{"type":"record","name":"Level1_1","fields":[{"name":"r_boolean","type":"boolean"},{"name":"r_int","type":"int"},{"name":"r_long","type":"long"},{"name":"r_float","type":"float"},{"name":"r_double","type":"double"},{"name":"r_bytes","type":"bytes"},{"name":"r_string","type":"string"},{"name":"r_record","type":{"type":"record","name":"Level2_1__1","fields":[{"name":"r_boolean","type":"boolean"},{"name":"r_int","type":"int"},{"name":"r_long","type":"long"},{"name":"r_float","type":"float"},{"name":"r_double","type":"double"},{"name":"r_bytes","type":"bytes"},{"name":"r_string","type":"string"},{"name":"r_enum","type":{"type":"enum","name":"Level2_1__1_Enum1","symbols":["ZERO","ONE","TWO"]}},{"name":"r_date","type":{"type":"int","logicalType":"date"}},{"name":"r_timemillis","type":{"type":"int","logicalType":"time-millis"}},{"name":"r_timemicros","type":{"type":"long","logicalType":"time-micros"}},{"name":"r_timestampmillis","type":{"type":"long","logicalType":"timestamp-millis"}},{"name":"r_timestampmicros","type":{"type":"long","logicalType":"timestamp-micros"}},{"name":"o_boolean","type":["null","boolean"],"default":null},{"name":"o_int","type":["null","int"],"default":null},{"name":"o_long","type":["null","long"],"default":null},{"name":"o_float","type":["null","float"],"default":null},{"name":"o_double","type":["null","double"],"default":null},{"name":"o_bytes","type":["null","bytes"],"default":null},{"name":"o_string","type":["null","string"],"default":null},{"name":"o_enum","type":["null",{"type":"enum","name":"Level2_1__1_Enum2","symbols":["ZERO","ONE","TWO"]}],"default":null},{"name":"o_date","type":["null",{"type":"int","logicalType":"date"}],"default":null},{"name":"o_timemillis","type":["null",{"type":"int","logicalType":"time-millis"}],"default":null},{"name":"o_timemicros","type":["null",{"type":"long","logicalType":"time-micros"}],"default":null},{"name":"o_timestampmillis","type":["null",{"type":"long","logicalType":"timestamp-millis"}],"default":null},{"name":"o_timestampmicros","type":["null",{"type":"long","logicalType":"timestamp-micros"}],"default":null}]}},{"name":"r_enum","type":{"type":"enum","name":"Level1_1_Enum1","symbols":["ZERO","ONE","TWO"]}},{"name":"r_date","type":{"type":"int","logicalType":"date"}},{"name":"r_timemillis","type":{"type":"int","logicalType":"time-millis"}},{"name":"r_timemicros","type":{"type":"long","logicalType":"time-micros"}},{"name":"r_timestampmillis","type":{"type":"long","logicalType":"timestamp-millis"}},{"name":"r_timestampmicros","type":{"type":"long","logicalType":"timestamp-micros"}},{"name":"r_array","type":{"type":"array","items":{"type":"record","name":"Level2_1__2","fields":[{"name":"r_boolean","type":"boolean"},{"name":"r_int","type":"int"},{"name":"r_long","type":"long"},{"name":"r_float","type":"float"},{"name":"r_double","type":"double"},{"name":"r_bytes","type":"bytes"},{"name":"r_string","type":"string"},{"name":"r_enum","type":{"type":"enum","name":"Level2_1__2_Enum1","symbols":["ZERO","ONE","TWO"]}},{"name":"o_boolean","type":["null","boolean"],"default":null},{"name":"o_int","type":["null","int"],"default":null},{"name":"o_long","type":["null","long"],"default":null},{"name":"o_float","type":["null","float"],"default":null},{"name":"o_double","type":["null","double"],"default":null},{"name":"o_bytes","type":["null","bytes"],"default":null},{"name":"o_string","type":["null","string"],"default":null},{"name":"o_enum","type":["null",{"type":"enum","name":"Level2_1__2_Enum2","symbols":["ZERO","ONE","TWO"]}],"default":null},{"name":"o_date","type":["null",{"type":"int","logicalType":"date"}],"default":null},{"name":"o_timemillis","type":["null",{"type":"int","logicalType":"time-millis"}],"default":null},{"name":"o_timemicros","type":["null",{"type":"long","logicalType":"time-micros"}],"default":null},{"name":"o_timestampmillis","type":["null",{"type":"long","logicalType":"timestamp-millis"}],"default":null},{"name":"o_timestampmicros","type":["null",{"type":"long","logicalType":"timestamp-micros"}],"default":null}]}}}]}},{"name":"r_enum","type":{"type":"enum","name":"Enum1","symbols":["ZERO","ONE","TWO"]}},{"name":"r_array","type":{"type":"array","items":{"type":"record","name":"Level1_2","fields":[{"name":"r_boolean","type":"boolean"},{"name":"r_int","type":"int"},{"name":"r_long","type":"long"},{"name":"r_float","type":"float"},{"name":"r_double","type":"double"},{"name":"r_bytes","type":"bytes"},{"name":"r_string","type":"string"},{"name":"r_array","type":{"type":"array","items":{"type":"record","name":"Level2_2","fields":[{"name":"r_boolean","type":"boolean"},{"name":"r_int","type":"int"},{"name":"r_long","type":"long"},{"name":"r_float","type":"float"},{"name":"r_double","type":"double"},{"name":"r_bytes","type":"bytes"},{"name":"r_string","type":"string"},{"name":"r_enum","type":{"type":"enum","name":"Level2_2_Enum1","symbols":["ZERO","ONE","TWO"]}},{"name":"r_date","type":{"type":"int","logicalType":"date"}},{"name":"r_timemillis","type":{"type":"int","logicalType":"time-millis"}},{"name":"r_timemicros","type":{"type":"long","logicalType":"time-micros"}},{"name":"r_timestampmillis","type":{"type":"long","logicalType":"timestamp-millis"}},{"name":"r_timestampmicros","type":{"type":"long","logicalType":"timestamp-micros"}},{"name":"o_boolean","type":["null","boolean"],"default":null},{"name":"o_int","type":["null","int"],"default":null},{"name":"o_long","type":["null","long"],"default":null},{"name":"o_float","type":["null","float"],"default":null},{"name":"o_double","type":["null","double"],"default":null},{"name":"o_bytes","type":["null","bytes"],"default":null},{"name":"o_string","type":["null","string"],"default":null},{"name":"o_enum","type":["null",{"type":"enum","name":"Level2_2_Enum2","symbols":["ZERO","ONE","TWO"]}],"default":null},{"name":"o_date","type":["null",{"type":"int","logicalType":"date"}],"default":null},{"name":"o_timemillis","type":["null",{"type":"int","logicalType":"time-millis"}],"default":null},{"name":"o_timemicros","type":["null",{"type":"long","logicalType":"time-micros"}],"default":null},{"name":"o_timestampmillis","type":["null",{"type":"long","logicalType":"timestamp-millis"}],"default":null},{"name":"o_timestampmicros","type":["null",{"type":"long","logicalType":"timestamp-micros"}],"default":null}]}}},{"name":"o_boolean","type":["null","boolean"],"default":null},{"name":"o_int","type":["null","int"],"default":null},{"name":"o_long","type":["null","long"],"default":null},{"name":"o_float","type":["null","float"],"default":null},{"name":"o_double","type":["null","double"],"default":null},{"name":"o_bytes","type":["null","bytes"],"default":null},{"name":"o_string","type":["null","string"],"default":null},{"name":"o_enum","type":["null",{"type":"enum","name":"Level1_2_Enum2","symbols":["ZERO","ONE","TWO"]}],"default":null},{"name":"o_date","type":["null",{"type":"int","logicalType":"date"}],"default":null},{"name":"o_timemillis","type":["null",{"type":"int","logicalType":"time-millis"}],"default":null},{"name":"o_timemicros","type":["null",{"type":"long","logicalType":"time-micros"}],"default":null},{"name":"o_timestampmillis","type":["null",{"type":"long","logicalType":"timestamp-millis"}],"default":null},{"name":"o_timestampmicros","type":["null",{"type":"long","logicalType":"timestamp-micros"}],"default":null}]}}},{"name":"r_date","type":{"type":"int","logicalType":"date"}},{"name":"r_timemillis","type":{"type":"int","logicalType":"time-millis"}},{"name":"r_timemicros","type":{"type":"long","logicalType":"time-micros"}},{"name":"r_timestampmillis","type":{"type":"long","logicalType":"timestamp-millis"}},{"name":"r_timestampmicros","type":{"type":"long","logicalType":"timestamp-micros"}},{"name":"o_boolean","type":["null","boolean"],"default":null},{"name":"o_int","type":["null","int"],"default":null},{"name":"o_long","type":["null","long"],"default":null},{"name":"o_float","type":["null","float"],"default":null},{"name":"o_double","type":["null","double"],"default":null},{"name":"o_bytes","type":["null","bytes"],"default":null},{"name":"o_string","type":["null","string"],"default":null},{"name":"o_record","type":["null",{"type":"record","name":"Level1_3","fields":[{"name":"r_boolean","type":"boolean"},{"name":"r_int","type":"int"},{"name":"r_long","type":"long"},{"name":"r_float","type":"float"},{"name":"r_double","type":"double"},{"name":"r_bytes","type":"bytes"},{"name":"r_string","type":"string"},{"name":"r_record","type":{"type":"record","name":"Level2_3","fields":[{"name":"r_boolean","type":"boolean"},{"name":"r_int","type":"int"},{"name":"r_long","type":"long"},{"name":"r_float","type":"float"},{"name":"r_double","type":"double"},{"name":"r_bytes","type":"bytes"},{"name":"r_string","type":"string"},{"name":"r_enum","type":{"type":"enum","name":"Level2_3_Enum1","symbols":["ZERO","ONE","TWO"]}},{"name":"r_date","type":{"type":"int","logicalType":"date"}},{"name":"r_timemillis","type":{"type":"int","logicalType":"time-millis"}},{"name":"r_timemicros","type":{"type":"long","logicalType":"time-micros"}},{"name":"r_timestampmillis","type":{"type":"long","logicalType":"timestamp-millis"}},{"name":"r_timestampmicros","type":{"type":"long","logicalType":"timestamp-micros"}},{"name":"o_boolean","type":["null","boolean"],"default":null},{"name":"o_int","type":["null","int"],"default":null},{"name":"o_long","type":["null","long"],"default":null},{"name":"o_float","type":["null","float"],"default":null},{"name":"o_double","type":["null","double"],"default":null},{"name":"o_bytes","type":["null","bytes"],"default":null},{"name":"o_string","type":["null","string"],"default":null},{"name":"o_enum","type":["null",{"type":"enum","name":"Level2_3_Enum2","symbols":["ZERO","ONE","TWO"]}],"default":null},{"name":"o_date","type":["null",{"type":"int","logicalType":"date"}],"default":null},{"name":"o_timemillis","type":["null",{"type":"int","logicalType":"time-millis"}],"default":null},{"name":"o_timemicros","type":["null",{"type":"long","logicalType":"time-micros"}],"default":null},{"name":"o_timestampmillis","type":["null",{"type":"long","logicalType":"timestamp-millis"}],"default":null},{"name":"o_timestampmicros","type":["null",{"type":"long","logicalType":"timestamp-micros"}],"default":null}]}},{"name":"r_enum","type":{"type":"enum","name":"Level1_3_Enum1","symbols":["ZERO","ONE","TWO"]}},{"name":"r_date","type":{"type":"int","logicalType":"date"}},{"name":"r_timemillis","type":{"type":"int","logicalType":"time-millis"}},{"name":"r_timemicros","type":{"type":"long","logicalType":"time-micros"}},{"name":"r_timestampmillis","type":{"type":"long","logicalType":"timestamp-millis"}},{"name":"r_timestampmicros","type":{"type":"long","logicalType":"timestamp-micros"}},{"name":"o_boolean","type":["null","boolean"],"default":null},{"name":"o_int","type":["null","int"],"default":null},{"name":"o_long","type":["null","long"],"default":null},{"name":"o_float","type":["null","float"],"default":null},{"name":"o_double","type":["null","double"],"default":null},{"name":"o_bytes","type":["null","bytes"],"default":null},{"name":"o_string","type":["null","string"],"default":null},{"name":"o_enum","type":["null",{"type":"enum","name":"Level1_3_Enum2","symbols":["ZERO","ONE","TWO"]}],"default":null},{"name":"o_date","type":["null",{"type":"int","logicalType":"date"}],"default":null},{"name":"o_timemillis","type":["null",{"type":"int","logicalType":"time-millis"}],"default":null},{"name":"o_timemicros","type":["null",{"type":"long","logicalType":"time-micros"}],"default":null},{"name":"o_timestampmillis","type":["null",{"type":"long","logicalType":"timestamp-millis"}],"default":null},{"name":"o_timestampmicros","type":["null",{"type":"long","logicalType":"timestamp-micros"}],"default":null}]}],"default":null},{"name":"o_enum","type":["null",{"type":"enum","name":"Enum2","symbols":["ZERO","ONE","TWO"]}],"default":null},{"name":"o_date","type":["null",{"type":"int","logicalType":"date"}],"default":null},{"name":"o_timemillis","type":["null",{"type":"int","logicalType":"time-millis"}],"default":null},{"name":"o_timemicros","type":["null",{"type":"long","logicalType":"time-micros"}],"default":null},{"name":"o_timestampmillis","type":["null",{"type":"long","logicalType":"timestamp-millis"}],"default":null},{"name":"o_timestampmicros","type":["null",{"type":"long","logicalType":"timestamp-micros"}],"default":null}],"aliases":["Root"]}avro.codecdeflate %q}?.LxTU.EI`0 B:i)LE樊2ИħAX!4}J|mGC[xCq+~qp|cA#}{;eqzObŒ9󨻽&mw "#x v&E!}ZuǑM&1`)xcӷ^Gs,&Œ+8yy$ATﲔՂ=Hr~a=DI/!c[|zn҉W\~o?vUFش׀~tM1u*BͶZ˯BUUFPt~boaCOVp_Gt纩~ @hea3 +D)Z&>{h>wO!rlGu0.+ځ@EvR{]m1"7:@5Uh>*Xc2EsǬ ߝRad=ԪQ@v# 7.Ʃ>kVru`>~O5>E:C \H$vw譊L)-uoݑ+ wwjݣ>ݷ?) Okͺ-U23鈅x,I#JTEaiyC͋D/TMtp/ pPqa:&y54Pbܿqȱ;ӭ;qkf@crzҢh7把N_ &e 8,§щC'((,&$:%a|.9a| ɦ !_Lp/$<C" T" C0 3 !&\2 /Dqb.ʢQ+,u᳝;GtCљdc=ugzP|#L+ 4.bwS4kWb 6ƺΥ?'i57I[cՂE(t[<>SV|1^.Nڶ6нUPEL'djjpKXfm Hvr˺Uj }@0{@ɮfOEmGZk@UЛ0h.fSUSE>!mXV>7g"D<,!@\}w 7=za#>GH4M1*ZZRIlt. nϖ-SXJl33Tk +-˴=%=D +U^eQ +gj7 +ETN" +Pz/cN(+ 3q]B +r:q(@bUdO"<\GRGc!2( JtPYmx[2S~- 42T>no\oj~uncDo>>28fV"JIGj4|{7=[uS6Iv[C3}Юnruq0jwy&ե{zϘՈ|tma2|trfAM"d"s]V!p$Y% F`,mXo4V{<'tkzⓤ0{tuѯѿtG'⇶mTEPkI؋oqv}Ӏ%NVun32Jw +`/ǰϺ`ݩcSyEz MfJ-{&2wͳGTx&zZGIYAjWu󗑇=ȿq Ʀ`%T_Ѩ6hq%׾ +t/O:wMs1Rغo6hR.=\g,b% t^s%0(b"DrH̤Y6 $DD Hc"Ad,]·:e_60֝f?,H@ffyC}PpQ0J$*.DΉZ7hƳ\m;.{x +JTzdBKE)VBD{)֧@E(u:6A`I*iUR)_߰4hm +O&Ȣ!i+u \-i6!mPV@b7m c;Xu;i$d<ʾ"$LeP`Y|{4(LI_uv(zg|Sa⺩VO˴q^vAˍ&Rڛl=+3F^-v*Ch()-[Qeg>|ޯ0AGppEǛ njrÙ\B('+$oj_(@" (vB+f:!@z >[*Bi$0 +RBIe4#X,(8LË(l +/F^ DH(l`B gy M$J#iDHJpDpLXSP3hR)O*0h C 8$ + nרHkTչ`Xthh>qM7_ +/CDB0RI?o!^<8|y0u=a7ܕ/}RԌ!z7j>3 ?{c|{D"5+5C2?'+~4z꣬7]ͪ ?P<%3u9xi [jl>ax\f75H'X];)u;ߥ -&Ϋ,{fNz_oQħӓ^t=[{#^^@Dv##&CAPwnel{X9DֽXV#"wf]Ӥs60@j! CR|6@0T + a|.'2Dx ϣ`|F +BN) ph]"3qx2D1IjёX\2e*}V b{*6 (* 4;jqV، W=ݭɅ3Q(erapboq{ubݽP=MT&w)tZZNg#ȴ2r(ϔ]6bNG[HePE :M㳇@iffK9{3V6I(ڷQ)(1|Υ}}1A?Ӆx٬5ptg^0vʴ~uڂide[y.:} =a!"\z} Za]O"fB:B^cy$ix_I_Ǡdf崮ِ]6f< >[[zӰQ>/ D$qyu`s3k&}颗| '}^Zx89g'u:0c~ ۖfB{o$l ZC΅Xd^ys=zZyJB;ec⵼eT~o4\vVO8u +H4"id/5ڇֽVw:c|p/ +5vI*Byw6D'B?8W>2^I J)xL'LehE>b*[)t?>\3Y +kf|t' ŧKHh$GW(HnV .i:{zK+V9mxUQn͍+w" S!͈!3dxWҬ`,O2- ZVb2;;e;GK>]sޒM04hgySײy$6ƲB(m.u6G1̶Wc!O*qdy~]!4E8.'[zCҤ)ۣiY^Xkd^S /xD"{вEͮQu+lfɒa77=[Mn7-׹=T$`\J|߹YL'ґ'{S j* Fdc !Dʉ4DŽ#?ޡD)lS@O]0 M.xO 9͛G|=~΀j@+ȁfphekʖ%ͦ}>NPpyj]=6? =ɶuT)^ /X-LnBUy?k])h >>u`SLV>o{":|o| 򐠐/k``au>02^w(4A^'⼬{*[=3Z]3 SsdylZXUz]n>~ꬂBQr4T楎I[Vm'{鯾)uoFS#~Kp2tT[vfY:$> n1X?HQeHtT4߱SA|ej=76UNe)<: +[2k\oVXUMlAK+7P`vm2,Q9^зV^ +Ζfo9^P T㜝k{Ζv>mj:Iʆ+VSZ /HsQu?70T{Ƴ>&.lJ +s*h@齑ѵ}0P/z6 B Q@d-deRAfS`r''3zq`mh9`I{B/O˯Gr8.(*RTvXu,Z:=K= TOIv]#} +tjG ,埊l k7n9?Re /omW<Jmr R($uu0lZFgOOdC[UiOGZFlߵyjr$F (ŮGMo2Rq`àQ(D==C{[f!(0`3di mYvUI:c7hծ`KX6}0sIBTY6XY xSM+]mVpq"KCuDw /j&^8}wm'$.GOk*cdY|1|~o8l_@8sp_l6~=t0scS΄QW~Bg/%蟝$/Sv4>:}Nr +S}q_~?zSw%wcsO>OR.<}m._\j&|tcq磏y,>s=yN:b&'b.Sʠ3&l  +p:?hFڭ}W2#]a7'27 +t.EeVV'JdmӾ551łXp>" +(4Y*T&8#/HȊZ,bfY3q XV0)/VͳyN8v@t įLBnKyRhgsMNfY?[2>NVyVǍs'D.\xst}^ ^Ng|:ע߰MɁ|5nF&G}tiYƈTbʽuߴ{?|Ư-}qq(5M'湶ԽjT~{&l[ؓt9񇮴=TƧF洺\e"/J~玨>*Z6N +08!qS)YpK=]8SG +P`{r+O_\E@EOVs<{+>ۧW=T7*sj՜(_ a~|?Džig,=J¾ b\8RQ=.s~},vbO'gO +ɽG$%$GM;u8 W8CCQF)\T܄_[OF``T!gKޝ~YWEkۙV#]ޖ_܃wvKm5=y-PHuΪ)_\omg86z}f7t8?3^ MTO$/"\2VĎu`^)oK(<50;hZ]]!El(Ho.;4E#ohU!1t"f1^2 l)5 +6cI"*fӚs\as=YNپ^0bx-߮ki\3OpmFGTKXmҡ 2Gڍ.1vBOQD`bE(-UnZ1/pjtH5¸ڰ7~ s~լq1=盺g\.0-;Ԙqha<> ɤlّ9Rg['Mkqfb;~Ȑ5zx+&g=½&=!$sVٞjKX?@?F`\-*)ds\gz^Bݞ3VY!-eBif]i:)f݊Y-%CRB# )TѦ9 bPuJ W#=>I3VZ@{a'-|5' >HY(:桂a0'v&ZX,#X\x',RVFYkݥin5 O7vBs-&!ݶFgCA-tO't'4Aiy\Uؤ^]΢$"fB&f{ JJSG;6p? JT*W.j>}Mekz L}ңB%QPȎUl: V-|_=L)eS2m+!5=kAn 6~{;V.-(s7ﰋgTٖvA@9> ӹ_39S6gk#LvlG۞ONΜL2Ifj&yچF + K+(`]ckJll(؎ZV!(@p%k;m{eBɞf<˧c<QU@ Y7d㷼1x*.1J//m +0 a9T'֯۵>`M7UDeI״v3m`N6M]-z' +n;tkmca(TLzeuҒ-_Ɂe +p0b:Jaa<" "(9x.â,*0H("_D&yLqP8,щ"D +$1$$R42Mt2NI42j{.ikCI{|0|,ۻ^W*U4 LXRkT ul5pasƵsPX~R]6D *dg1m*]4pfѷIeT]j3<*KD0H +C1 (4)z 4T퉍n.)^܁O{ ϰ7Y<ǃ*uuy9CPQY]o{ڼEvQ@֘_~:?WQK%%T1[f!xHzt>7€5ʭU$"ڍTGg@0(qw%Y] Ҍ3z|?Lu ݊U-.uv^(KࡡH۶OPH*aKwE}vPr4;SUť| v9+qjQ 򀺪it5ogC@fEyC,}0:ٟP^5khis\.eF=V8:&CytqttiF&-G8շ,Bs&uvPYw{J\VVQ(U+?XMA_ŕTl[T7ǬD|{n8/u} RyHiWZ,J| >7m+۲Ƭ62=!h+'CA'F uW55@mǂԓҟuu.G%&y:|Ӆ3ﻍ;Jf1fγ\6 +s35vOz7jMI po(bl3+r2Xz0DM"b*OjRDB#cB,ؽ1]2U֚(F>y)jfՃ&~#NIHM{g:Aot2n-fIu{h`i4EIY`xD:(VA2ԶGrUw{[gE&]aL̺¼ + e}jiVwE6-M/fQ7UG +=||m`#s=$MpۏΩ\V F-* -FmK+&_ו)ȇP 5֣BS# +7<\ p,|E}^f4#W}|sY/)~)aLǕZe=Ϋ!ch- R"vFـM)jhϔfӸc>nU;G/5?3uro7/}_T}OL62%|E\KpWv{ZDo:e\ Ձܲ)-Gn!WmXdݟf:$82+. b7ӕB}*d9П K9}>tGKJq{!w)QgQ<ELY 0JUMꇁ9h,9usie~"7ݺ9={  GtwM]nڭ#ojet#; +zycӪGڼ:yzuj!*n&lt]k'[|Oe;eI˭@H@io/]]6Fv Q(eTR '~|:oIVn]+ܛ wӾ#taۭY:޿ܼ`f[d!@} Td14.KL' :gnD9ggpԖ;Yt嶙#PbVB";8X3uʼn-vVb3`EH# %dqBL. $ ^"beJD%LgpE`IT1t` $<AT&KD+ac&"Ǒ<㐄t5 Cƥrh\`Qd*a0,OHlJh:O qt&d<*A`O'aLAb:' <&$^@bbXUl c ycbny\}blk=6\aGccktj'tI,"F6`JhD6#B"{.Grb!K9b%?d#Gq$"F("a$6G$X02BԒ+PܗcD9L6A9XO#‘x"Beb0L#G R4d9 +U@I +A+a`YlN"K @9,/.SX.6Y ĸD'AlF!KXd@CdpT1Iy$!J@bH$$DL,An,Ɠ04 +LvpTF-3l&A 0XE|b&t2Cpd>6\$Dbx*iBED æR:a+x% %d :)nR(` +~4.Cpx>8<%,,CX2&e Y86%$,詀!x\ķp2!bA -xlYH"w,E@G|>!|O8)!I,108t*҈D(\., +£j{ZTWLbr\mDWCe{{!"#? 2~;0#nC|yF?CG +v ?%BAJ +[Өz\_]Oo6Ld8kŮQ +*"7t;[!,nSw !(<(PCjK{Ij }P{&m)I0/k1\ߛ!G(,3~k2EՅYK V; +q'DPi0du+=nok޹he3Y}Rost,,O̓N}fKp !l"%|ex]el&4fړj +M:LBs5yo3!+R Cck׸XqEգQZncejQ ==_QcX5{C 2bZQB}FWJxqb^lM)6h +1(2woJr$t`1t&$\ +^(M'd(@sހqYz4mY8Z))4)a(rJ1wu +6Ud,{uܩ3J^8ROU +VZ +Cko$`6鷙lkKֿp< 8{;a:]$2H(a"ʪ,y4|v`T{<>O!4AD:9f$YUBaR6(ij;`KDȡFY(@['?Na5m30X6u䞋Jr-%ic)%6Ȧ쬖BᣓJMe&~ɶÖΫ))PqE~IGP#ݳ:]GÞZXZ@M`l6*MdmI.hO^;@so/ye UL "[#jh'+״d%7b^P_N#?wa[i Hl2NW m A'GaNǟG<|ccC+ ({/kld#$R{cݩ/Q %Zo%gkOejÊʠ~y6NfՙsQ ֿ#_ބӯЉT._">ыQrJ~{GUR1m81-6Aaֶ[C|iM Ɇ˻w.GOM"t9pۀ:w8_~ ~pWF8{t}o__fTK`5qKu.:X=| 7)YNYϹw=2b2K)13/+r--4f2'O^^Gs9usAi$6$5 dZZ=d2G,60nEIaRp/!Cb<;!L7] 43Lf%]aJ"3uP\,ĉH~XT$M]'IpOiX^ 2lra[{"xC[8Zj%&mkCspO & ҳ%sR˰*Ń`M xBL¶,7c1'vMR35mNr)(¿Df9}` ()i`%2! `uhU[jJ$y$((> 06 я2x@T0HP7ir2}8B 6w -e4c +K$0|DO +6cMBR˂)| +YiIfkG&p50a oNG #;<QRF j:\3tr7O'*- gEa`*Km6ͤ=ˀTFxs }dG ɉCP fr]'rfF.3#ihHq +c0 +(!"rs6dp±|^sGבypm'亃RtE/drFbeFt!0#ꆝL6b@&?F]h j` aĻGI1(C$>W:$D0ɋFbC/!,IŴ45qy܋2\48B"TXhIa`fCѩ@rI6nQ+'jW)Nb2/𳘆$rM;"0Xb4{茖ThюC4 +m 4ĺ2gf `LġjDP6k13&4) )T 8CN$u-4g(K1 +b%";E39̑Ij(8z)KX0N2;MfZ@xEs7UbW:Xw*<L͏B'afsAd n1䁅AbԲJ A9G5ZlhQTLznjZ*J͟qFe碪~@On}Pƞ겘ǎQ҈ogLk~B) e[rrb.!bS +r89maj?udj X,UАChq`[/_5듋Gtʎ ?VA*S:VK3f;tn .XtC5{h}Ry0񕆉wQ}顦 ~jw}s=H<:l87.Piii{?~sLjzyuU훻xI־W=U5jԜr5ӯݪWʝCt_UUޛvUsz|vIׇ,(Ν{^ƎW/\L_'l[H4hҎH?߀pR5RdXSg,׎Iں?X]:Yo>D va?^\_0ӏJ)u|¬"aF8M޺)m[Q~&}\}ݧucFmll_rqԵZ.WcPۅ]Ls7FR^[?b٩i3jV?aC߿w75Ȕee~_Ϝ(}WϞf׫ +06aa S'\PP=0CR0>ʌh@jF4->0!)Fėl߅,΄i$EcT [9W{GƎ=F]d O?J_<҇2nإ֟~gw{xuvgCgWzv/?Oq-OJ+͛}ծi=چ0e'o3\uxYwT-B%%P<-ˏyM#R.M^qOkR}Cǐ.o3uMsm8{ۛ]mg֯Wziڈgݻn~X:ܲDo?rr1\\|ɣ{xScn[77_{+^n>_6@:X]^;v+6L;M[ʿʫǏmZqHFw1}+'T^1f='E &v{[_%ol(!ߞx[5C;hߺgܹY_99myu|g5n*/sU9o÷[7jz_oC[os +2"hۗMҭR7G>VQ8g9WPQ?k$-u0{w^[}7}iJ ׌vRscFחm *<; =ue \0 r°*o֝rՊnU ˧)sZk5g/4fǦ(_~hf˫o~o<_K/)UlԳ%Yd{.f}:h2,Kʬ Uӯ.dWdr^+ƌkQSsMyʫ_c?ݤNJl qF(>SLhiܲoʩ ,vzFf){V|P1jS5Wgοtԁ֝R4g>ˆƳ?vl3}Z qzBw&hU!SwBU4oo4o/{ا<%k?%2HO>>mPK杽x[aa1Uh=2(F#4.n@޾𗁧go‹\u0011ÇÙé¯=©X§­\rµU2ô–ˆo\u0015•[«Lߑ\tê\u001C¬†–\\A¤±šw\u0016\u0018dm—hQ^\u000ER\u001D,3Í­3‰Âkt¼#v6¶(ªÓ„­\u0002ô±Z\u0002Rô\u0016àùÏk–,­«^ô–\u0002!\"[áªeRÛ#]\nLo\u0006\u000B£VV¹²í8Ôi/òñ˜¼„\u0003=±¤!÷\b#Smá\u0019Ä#ðô3 ÌC;f®*3jDèQ”9;m¼uŠÆmÒÓ\u0007€o©\bÙ\u001CñRXþ\u000FxqËo\"©0ÅCØÇ΄~È;¶\u0001qû÷","r_string":"dgyii","r_array":[],"o_boolean":null,"o_int":null,"o_long":null,"o_float":null,"o_double":null,"o_bytes":null,"o_string":{"string":"pljyrbpos"},"o_enum":null,"o_date":null,"o_timemillis":null,"o_timemicros":{"long":2093847624081664873},"o_timestampmillis":{"long":795665696182405026},"o_timestampmicros":{"long":-3544683124606080695}},{"r_boolean":false,"r_int":-1907028842,"r_long":5889281411190432141,"r_float":0.5014546,"r_double":0.15171108483997975,"r_bytes":"¦\u0003j\u000B_ô\u0011","r_string":"oqdugprjs","r_array":[{"r_boolean":false,"r_int":526768164,"r_long":1128228147442996047,"r_float":0.9940966,"r_double":0.6851970879969946,"r_bytes":"5Íãñãù5ßy·«","r_string":"nopfwok","r_enum":"ONE","r_date":1,"r_timemillis":2138881021,"r_timemicros":8379212483060540145,"r_timestampmillis":-733371409616044088,"r_timestampmicros":-8882045459841546578,"o_boolean":null,"o_int":null,"o_long":{"long":2923452859356593622},"o_float":{"float":0.3000914},"o_double":{"double":0.45347933148475916},"o_bytes":null,"o_string":null,"o_enum":null,"o_date":null,"o_timemillis":{"int":1906313646},"o_timemicros":null,"o_timestampmillis":null,"o_timestampmicros":null},{"r_boolean":false,"r_int":-739204399,"r_long":3644745387332367134,"r_float":0.55025905,"r_double":0.44732848448003737,"r_bytes":"\u001FW1¼È.ÿ|žüØ","r_string":"tvedldpvxp","r_enum":"TWO","r_date":1,"r_timemillis":420373130,"r_timemicros":-2394695154813173917,"r_timestampmillis":4692035232860778362,"r_timestampmicros":6115504611574422356,"o_boolean":null,"o_int":null,"o_long":null,"o_float":null,"o_double":null,"o_bytes":{"bytes":"|Qù\u0004Gô\u001F îÉ"},"o_string":null,"o_enum":{"Level2_2_Enum2":"ZERO"},"o_date":null,"o_timemillis":{"int":-370653992},"o_timemicros":{"long":-139722356717875329},"o_timestampmillis":{"long":3274991126883963539},"o_timestampmicros":null}],"o_boolean":{"boolean":false},"o_int":{"int":-1482932502},"o_long":null,"o_float":null,"o_double":null,"o_bytes":{"bytes":"Š²WkNW´r¹Ùí-N"},"o_string":null,"o_enum":null,"o_date":{"int":1629979689},"o_timemillis":null,"o_timemicros":{"long":9179498302727260480},"o_timestampmillis":{"long":-2740965049740193573},"o_timestampmicros":{"long":7679211326821737054}},{"r_boolean":false,"r_int":-1511305403,"r_long":-1148603277336534222,"r_float":0.7563054,"r_double":0.5763304839914394,"r_bytes":"(w\u0006i\u0003Mˆ’»\u001F\u0002\u0002h","r_string":"pmmsod","r_array":[],"o_boolean":{"boolean":false},"o_int":null,"o_long":{"long":-5214277790385110117},"o_float":{"float":0.9952857},"o_double":null,"o_bytes":{"bytes":"Îú½›YS"},"o_string":null,"o_enum":{"Level1_2_Enum2":"ZERO"},"o_date":{"int":-65000578},"o_timemillis":null,"o_timemicros":null,"o_timestampmillis":null,"o_timestampmicros":null},{"r_boolean":false,"r_int":-614622056,"r_long":7693819476899998636,"r_float":0.58768785,"r_double":0.752248781740478,"r_bytes":"\u0011U‘+\u000EØ","r_string":"xfwilhqgkubrwwwucw","r_array":[],"o_boolean":{"boolean":false},"o_int":null,"o_long":{"long":-7225670259418328649},"o_float":{"float":0.8622825},"o_double":null,"o_bytes":null,"o_string":null,"o_enum":null,"o_date":{"int":-177723071},"o_timemillis":null,"o_timemicros":null,"o_timestampmillis":null,"o_timestampmicros":{"long":-1326237809876149504}},{"r_boolean":false,"r_int":-1709284815,"r_long":-9203776486703577143,"r_float":0.30161643,"r_double":0.17431229716442775,"r_bytes":"º¹ìV","r_string":"xvdbknkfyvj","r_array":[],"o_boolean":null,"o_int":null,"o_long":{"long":-3774581737314461171},"o_float":null,"o_double":null,"o_bytes":null,"o_string":null,"o_enum":{"Level1_2_Enum2":"ONE"},"o_date":{"int":1748533786},"o_timemillis":{"int":2070005465},"o_timemicros":null,"o_timestampmillis":null,"o_timestampmicros":{"long":-5240299537234470412}}],"r_date":1,"r_timemillis":-889109208,"r_timemicros":-5044678089578976861,"r_timestampmillis":1736691278111723121,"r_timestampmicros":-5970980267499242658,"o_boolean":null,"o_int":{"int":53813756},"o_long":{"long":5642111257310334249},"o_float":{"float":0.38430738},"o_double":null,"o_bytes":null,"o_string":{"string":"ntvthmnsqrpulcbeitklfagiqlfeiqgtmbdeiondanhwrilnprgamtiylwsdqusaqaoevtaenpkgdmvtxkbkcecmdvjeyscrajqkuwkmgbktejfoafyntmwggstmhmvakxihprhgdytchfeoeqcrfxrljokijyxyryqeeodstyqljxutqcvwesexdorvvebxihemxbaqxhhbyosm"},"o_record":{"Level1_3":{"r_boolean":true,"r_int":-1796187130,"r_long":2838172363040281841,"r_float":0.20044929,"r_double":0.9890257117970422,"r_bytes":"\u0013,ÎF0,þTþ\u0018","r_string":"ruedqjslnhk","r_record":{"r_boolean":false,"r_int":-319759983,"r_long":-3573971727884749283,"r_float":0.3607658,"r_double":0.12211255395989296,"r_bytes":"Þ䚶?ʀ»±","r_string":"jurssoo","r_enum":"ZERO","r_date":-2,"r_timemillis":-1581890807,"r_timemicros":7955878139471977884,"r_timestampmillis":3063664887289253035,"r_timestampmicros":2435676492854551584,"o_boolean":null,"o_int":null,"o_long":{"long":-417094272714195280},"o_float":null,"o_double":null,"o_bytes":{"bytes":"Á\u001F%·©"},"o_string":null,"o_enum":null,"o_date":{"int":-944996608},"o_timemillis":{"int":94643554},"o_timemicros":{"long":4214010458437561607},"o_timestampmillis":null,"o_timestampmicros":{"long":-5154398316205613279}},"r_enum":"TWO","r_date":2,"r_timemillis":-109800293,"r_timemicros":-1738351576038079267,"r_timestampmillis":-2509662657280625099,"r_timestampmicros":-8301589503663445548,"o_boolean":{"boolean":true},"o_int":null,"o_long":{"long":-7324260115146141577},"o_float":{"float":0.9133546},"o_double":null,"o_bytes":{"bytes":"\bÍ®D\u0014¢y"},"o_string":null,"o_enum":{"Level1_3_Enum2":"ZERO"},"o_date":null,"o_timemillis":{"int":-1875213117},"o_timemicros":null,"o_timestampmillis":null,"o_timestampmicros":{"long":7559389503312500966}}},"o_enum":null,"o_date":{"int":1535900591},"o_timemillis":{"int":1437138744},"o_timemicros":{"long":-8045960972645256304},"o_timestampmillis":{"long":-1771184917401105662},"o_timestampmicros":null} +{"r_boolean":false,"r_int":-579216430,"r_long":-8139492250786879432,"r_float":0.08661997,"r_double":0.461927175891524,"r_bytes":"","r_string":"gwwsungsr","r_record":{"r_boolean":false,"r_int":664019269,"r_long":218296981684527,"r_float":0.14133048,"r_double":0.49374467338415107,"r_bytes":"Gª»%KM1","r_string":"gkcypicnjijn","r_record":{"r_boolean":true,"r_int":-1464635004,"r_long":7103484949008140109,"r_float":0.33839798,"r_double":0.46735309602786135,"r_bytes":"lìÂb","r_string":"wi","r_enum":"ONE","r_date":2,"r_timemillis":1379356304,"r_timemicros":5058410815665083284,"r_timestampmillis":2161379472323661749,"r_timestampmicros":999243965597603716,"o_boolean":{"boolean":true},"o_int":{"int":1776641407},"o_long":{"long":5524767877095152249},"o_float":null,"o_double":null,"o_bytes":{"bytes":"Ž¹ö\u0007²"},"o_string":{"string":"vwjbxlixtjwga"},"o_enum":null,"o_date":{"int":499348577},"o_timemillis":null,"o_timemicros":{"long":3038754263295688841},"o_timestampmillis":{"long":1333827870388382137},"o_timestampmicros":null},"r_enum":"ONE","r_date":2,"r_timemillis":-938706499,"r_timemicros":-2781742627635093783,"r_timestampmillis":-2728583944887455207,"r_timestampmicros":1906254301962292040,"r_array":[{"r_boolean":true,"r_int":712573267,"r_long":-7616071596813501322,"r_float":0.21402729,"r_double":0.2434542539760206,"r_bytes":"","r_string":"br","r_enum":"ONE","o_boolean":null,"o_int":null,"o_long":null,"o_float":null,"o_double":null,"o_bytes":null,"o_string":null,"o_enum":{"Level2_1__2_Enum2":"ZERO"},"o_date":null,"o_timemillis":null,"o_timemicros":{"long":-1252551912914083332},"o_timestampmillis":{"long":-4578328962251020330},"o_timestampmicros":null},{"r_boolean":true,"r_int":-771563079,"r_long":3042218377438146583,"r_float":0.6388912,"r_double":0.7545266502358849,"r_bytes":"\u001A4\"©*\u0010^[Ç\u0003qé\u001B","r_string":"dcgqtspu","r_enum":"ONE","o_boolean":null,"o_int":null,"o_long":null,"o_float":null,"o_double":{"double":0.32203537514396585},"o_bytes":null,"o_string":null,"o_enum":null,"o_date":{"int":-1116553470},"o_timemillis":{"int":2084703727},"o_timemicros":{"long":1245168196562425003},"o_timestampmillis":{"long":2920319426990842413},"o_timestampmicros":null}]},"r_enum":"ZERO","r_array":[{"r_boolean":false,"r_int":1079474749,"r_long":-5973517527231444238,"r_float":0.70854205,"r_double":0.18902197438331236,"r_bytes":";á/÷QR","r_string":"p","r_array":[{"r_boolean":false,"r_int":-895891157,"r_long":3290614762250575423,"r_float":0.99095696,"r_double":0.7394830504297403,"r_bytes":"°ýK±Å_†ƒª°e","r_string":"fyems","r_enum":"TWO","r_date":2,"r_timemillis":629758057,"r_timemicros":7446839147028314686,"r_timestampmillis":-961170949814280027,"r_timestampmicros":-589410408916102096,"o_boolean":null,"o_int":null,"o_long":{"long":-7851061955372773711},"o_float":null,"o_double":null,"o_bytes":null,"o_string":{"string":"uxasnoli"},"o_enum":null,"o_date":null,"o_timemillis":null,"o_timemicros":null,"o_timestampmillis":{"long":-780552213348541911},"o_timestampmicros":null}],"o_boolean":null,"o_int":{"int":-1767156131},"o_long":null,"o_float":{"float":0.3993256},"o_double":{"double":0.709205184926028},"o_bytes":null,"o_string":null,"o_enum":null,"o_date":null,"o_timemillis":{"int":-1642430519},"o_timemicros":{"long":8131608074669022322},"o_timestampmillis":null,"o_timestampmicros":null},{"r_boolean":false,"r_int":-1928800503,"r_long":-5053581345037644271,"r_float":0.95217264,"r_double":0.012664269523961158,"r_bytes":"ÙR/•þ\u001A","r_string":"egfwqca","r_array":[{"r_boolean":true,"r_int":-701704525,"r_long":7620175940725046612,"r_float":0.65076596,"r_double":0.889812316821471,"r_bytes":"ÅY3","r_string":"","r_enum":"ZERO","r_date":2,"r_timemillis":120092048,"r_timemicros":2096124763812293191,"r_timestampmillis":8332312094463064637,"r_timestampmicros":-2484574249479502501,"o_boolean":null,"o_int":null,"o_long":null,"o_float":null,"o_double":null,"o_bytes":null,"o_string":null,"o_enum":{"Level2_2_Enum2":"TWO"},"o_date":null,"o_timemillis":{"int":-140666709},"o_timemicros":{"long":-5441560192721135777},"o_timestampmillis":null,"o_timestampmicros":null}],"o_boolean":{"boolean":true},"o_int":null,"o_long":null,"o_float":{"float":0.8212539},"o_double":{"double":0.22470827152285788},"o_bytes":{"bytes":"¸\ff"},"o_string":null,"o_enum":{"Level1_2_Enum2":"ONE"},"o_date":null,"o_timemillis":{"int":362782295},"o_timemicros":{"long":6421422438469958895},"o_timestampmillis":{"long":-6301487640414569869},"o_timestampmicros":{"long":2906902694310298988}},{"r_boolean":true,"r_int":-1091784086,"r_long":-1791512325631292860,"r_float":0.117418826,"r_double":0.23626897371201616,"r_bytes":"é","r_string":"kb","r_array":[{"r_boolean":true,"r_int":-843882084,"r_long":1676790978851249759,"r_float":0.20474333,"r_double":0.6664504816130116,"r_bytes":"Haw\u0014âoQTCXÌ","r_string":"cbmlcjum","r_enum":"ONE","r_date":2,"r_timemillis":-2094844675,"r_timemicros":-961014871020701508,"r_timestampmillis":4224123483802461894,"r_timestampmicros":-5575702329284330458,"o_boolean":{"boolean":false},"o_int":null,"o_long":null,"o_float":{"float":0.47673374},"o_double":{"double":0.6163804089906723},"o_bytes":null,"o_string":null,"o_enum":{"Level2_2_Enum2":"ONE"},"o_date":null,"o_timemillis":{"int":-1013547296},"o_timemicros":{"long":-4179951870418332733},"o_timestampmillis":null,"o_timestampmicros":null},{"r_boolean":false,"r_int":34762681,"r_long":-2082297599348341900,"r_float":0.40382177,"r_double":0.8533714343005402,"r_bytes":"fÂÎEÃt[","r_string":"gbyaeqyiqhxmu","r_enum":"ONE","r_date":2,"r_timemillis":602598097,"r_timemicros":-2544023100992357508,"r_timestampmillis":1543285995496378212,"r_timestampmicros":-2865301672866916826,"o_boolean":null,"o_int":null,"o_long":null,"o_float":{"float":0.29811257},"o_double":null,"o_bytes":{"bytes":"*š–×\u0011xTŽØj"},"o_string":null,"o_enum":{"Level2_2_Enum2":"ONE"},"o_date":{"int":-999664939},"o_timemillis":null,"o_timemicros":null,"o_timestampmillis":{"long":-5410049394334454695},"o_timestampmicros":{"long":4999600396982592393}},{"r_boolean":false,"r_int":-885404431,"r_long":-8615790742176695608,"r_float":0.95839953,"r_double":0.44022542926038666,"r_bytes":"ì\u001EÖì\u0019)cœ52¤ù­","r_string":"pg","r_enum":"ONE","r_date":2,"r_timemillis":696951704,"r_timemicros":-2755147887415868050,"r_timestampmillis":-580013700618347058,"r_timestampmicros":-4663568537403934373,"o_boolean":null,"o_int":null,"o_long":{"long":8784243459746343446},"o_float":null,"o_double":null,"o_bytes":{"bytes":"j‰]Ì»ëJ/9"},"o_string":null,"o_enum":null,"o_date":{"int":795786860},"o_timemillis":null,"o_timemicros":null,"o_timestampmillis":{"long":-737535431307979864},"o_timestampmicros":{"long":7586701338785868219}}],"o_boolean":null,"o_int":{"int":-505968480},"o_long":null,"o_float":{"float":0.73131156},"o_double":{"double":0.427269984538849},"o_bytes":null,"o_string":null,"o_enum":null,"o_date":{"int":-1688624366},"o_timemillis":{"int":1964992007},"o_timemicros":{"long":17372705489067209},"o_timestampmillis":null,"o_timestampmicros":{"long":-4046715922757205362}},{"r_boolean":false,"r_int":-127642437,"r_long":1757198646912364941,"r_float":0.090331435,"r_double":0.7309896946210549,"r_bytes":"","r_string":"uixfsgfbrhkbkktoepndcsdegrxgfnolycncbeopfhbluwildbwotqmaqcwwpolxjufhrostltxwqhnaokrwtcyjxcqbuecopfmxevmamxpxqbrsvosqgkupghisbkcnqbqhiuogjmogfjovfyfmjgwfrrvusabebqmhdblf","r_array":[{"r_boolean":true,"r_int":-1494581016,"r_long":5444522837525978833,"r_float":0.97552687,"r_double":0.5252828430992923,"r_bytes":"n\u0017u÷\u0014ôʃfğ","r_string":"mq","r_enum":"ZERO","r_date":2,"r_timemillis":468908239,"r_timemicros":5300338299256697389,"r_timestampmillis":3179110669800860819,"r_timestampmicros":-3620504043704327482,"o_boolean":{"boolean":true},"o_int":{"int":-1129359739},"o_long":{"long":1549212674526768962},"o_float":null,"o_double":null,"o_bytes":null,"o_string":null,"o_enum":null,"o_date":{"int":-2115669907},"o_timemillis":{"int":2104152087},"o_timemicros":null,"o_timestampmillis":null,"o_timestampmicros":null},{"r_boolean":false,"r_int":-2120072288,"r_long":-6919043781749498423,"r_float":0.5907178,"r_double":0.438268647656451,"r_bytes":"‚“\u0015â","r_string":"iukomin","r_enum":"ZERO","r_date":2,"r_timemillis":1375179501,"r_timemicros":7197042640786495819,"r_timestampmillis":6865339631123799085,"r_timestampmicros":6334733647383059256,"o_boolean":null,"o_int":null,"o_long":null,"o_float":{"float":0.14556336},"o_double":{"double":0.5425721847769787},"o_bytes":{"bytes":"\u0013"},"o_string":{"string":"ebwcblntdytlwfr"},"o_enum":null,"o_date":null,"o_timemillis":null,"o_timemicros":null,"o_timestampmillis":null,"o_timestampmicros":{"long":-1439895960913658512}}],"o_boolean":{"boolean":false},"o_int":{"int":1536681285},"o_long":{"long":5264770570700114199},"o_float":null,"o_double":{"double":0.3125265909536209},"o_bytes":{"bytes":"SB=hö¯-u_NEf”ãï"},"o_string":null,"o_enum":null,"o_date":null,"o_timemillis":{"int":-547469644},"o_timemicros":{"long":-3956211225114159172},"o_timestampmillis":null,"o_timestampmicros":{"long":666693749769692953}},{"r_boolean":true,"r_int":-1470960107,"r_long":-3248455137846942232,"r_float":0.60545975,"r_double":0.9108947356811341,"r_bytes":"hñ–À-:R\n­","r_string":"pwytyv","r_array":[],"o_boolean":null,"o_int":null,"o_long":{"long":4981283118849385344},"o_float":{"float":0.47696066},"o_double":null,"o_bytes":null,"o_string":null,"o_enum":null,"o_date":null,"o_timemillis":null,"o_timemicros":{"long":8286142038975854475},"o_timestampmillis":null,"o_timestampmicros":null}],"r_date":2,"r_timemillis":-1911446365,"r_timemicros":-6006396431099775188,"r_timestampmillis":-6167435336631689566,"r_timestampmicros":-175388974755779302,"o_boolean":null,"o_int":{"int":-554335570},"o_long":null,"o_float":null,"o_double":{"double":0.35978073554243484},"o_bytes":null,"o_string":null,"o_record":null,"o_enum":null,"o_date":null,"o_timemillis":{"int":-910580054},"o_timemicros":{"long":-2545738090288550218},"o_timestampmillis":null,"o_timestampmicros":{"long":4444275215633617424}} +{"r_boolean":true,"r_int":1347219934,"r_long":5446611933613193899,"r_float":0.03234774,"r_double":0.012641653901194982,"r_bytes":"\u0004n{ÆðW°ª§û","r_string":"jrgfwmyyjydqbv","r_record":{"r_boolean":false,"r_int":936602996,"r_long":-1370453319858093996,"r_float":0.5900504,"r_double":0.3967656317586097,"r_bytes":"Ç4Ñmù“ï,é<>","r_string":"cuueouefe","r_record":{"r_boolean":false,"r_int":670535311,"r_long":8622222743199059930,"r_float":0.61217713,"r_double":0.20129774654949883,"r_bytes":"","r_string":"rtdkyqjalvtgw","r_enum":"ZERO","r_date":2,"r_timemillis":478368635,"r_timemicros":8531287713366348387,"r_timestampmillis":-6736883383333560284,"r_timestampmicros":-4285481629323581048,"o_boolean":{"boolean":true},"o_int":{"int":-1307390240},"o_long":null,"o_float":null,"o_double":null,"o_bytes":{"bytes":"R\bv…“#ßà}[ý"},"o_string":null,"o_enum":{"Level2_1__1_Enum2":"TWO"},"o_date":{"int":1431877870},"o_timemillis":{"int":493608724},"o_timemicros":null,"o_timestampmillis":null,"o_timestampmicros":null},"r_enum":"ONE","r_date":3,"r_timemillis":-721706409,"r_timemicros":1408459398972229859,"r_timestampmillis":7603230730496993577,"r_timestampmicros":-8364978844886775365,"r_array":[{"r_boolean":true,"r_int":-1714075213,"r_long":5285056645074475169,"r_float":0.43433183,"r_double":0.45938935302171935,"r_bytes":"³\fýƒÑKG","r_string":"upw","r_enum":"ONE","o_boolean":{"boolean":true},"o_int":{"int":1410976585},"o_long":{"long":2129054801518199383},"o_float":null,"o_double":{"double":0.9107702274713737},"o_bytes":{"bytes":"V¼:"},"o_string":{"string":"nwu"},"o_enum":{"Level2_1__2_Enum2":"ZERO"},"o_date":{"int":-866404807},"o_timemillis":{"int":-1133118113},"o_timemicros":null,"o_timestampmillis":{"long":-1296750803223540809},"o_timestampmicros":{"long":3803609103298104673}}]},"r_enum":"ZERO","r_array":[{"r_boolean":false,"r_int":1547917477,"r_long":-5586420453555731578,"r_float":0.3926627,"r_double":0.09276496608472828,"r_bytes":"³ÖR¶[Ç\u0014ÿ~ØxÔ2s^>”÷Kkø0\u0012—kw\u0003\u0007º\tƂH!\u001BǍ‘ šÊ¹Ÿæ^zyý“Áè","r_string":"tp","r_array":[{"r_boolean":true,"r_int":-1433898458,"r_long":3315660226714323054,"r_float":0.9532116,"r_double":0.6659229161925869,"r_bytes":"RÇ","r_string":"jckiqedqr","r_enum":"TWO","r_date":225567192,"r_timemillis":1149570633,"r_timemicros":-7008165035531598721,"r_timestampmillis":-5077103332704340767,"r_timestampmicros":-9027275733101264365,"o_boolean":{"boolean":false},"o_int":{"int":1853064290},"o_long":{"long":-7921391018630849491},"o_float":{"float":0.6176056},"o_double":{"double":0.8865217006836161},"o_bytes":null,"o_string":{"string":"udgayiordjjbvwbnjmspkpwaykcdbbffuwoqngrfcdwipiidxgbkdybddtmyrgjregaqrgntkipgydmmcpvabhtntsuykwdwoyammjkelkqodqbf"},"o_enum":{"Level2_2_Enum2":"ZERO"},"o_date":null,"o_timemillis":{"int":-1764109533},"o_timemicros":null,"o_timestampmillis":{"long":-3221568773959890355},"o_timestampmicros":{"long":-4653550255284266087}},{"r_boolean":false,"r_int":1679237590,"r_long":-3386084116261053545,"r_float":0.28027427,"r_double":0.9070336179971674,"r_bytes":"¡\u0010ʑ/ã","r_string":"mkeygqfduqg","r_enum":"ONE","r_date":-1972670828,"r_timemillis":-1048661221,"r_timemicros":-775573750735793351,"r_timestampmillis":8283035146219544759,"r_timestampmicros":6171875571111283336,"o_boolean":null,"o_int":null,"o_long":null,"o_float":{"float":0.48501503},"o_double":{"double":0.19536330880668462},"o_bytes":{"bytes":"1­*ásÒzvdxã串R¥Ë·A\u0012ìî\u000B\u0015…~ýÔ=t}RÍbû¶mâ&Ñ÷\u0011.z‚{\u001B@®±žìÀPVi2¶»·Â.W°bH¬[\u000E[\u0001א$å'AI‹œ)ñTäG‚Y\u0006\u000Fõ\fdEÈE}ÜÔ\n±Eiš\u0018?Å îÄQ¢\u001A±RŸ’KWô“â¸2¿F€VÍñìŽà$é\u0016péî°|Wéׇ4\f2C\u000FJ…”\r´\u0010÷ó¿\u001E8†\u0001¬6Î\f„ƒé:JA¸v‰ëòË/\bôpßvã‡Û“ªÖÚ=5>¢\u0017åQŒ'°\u0006ê+?Y!{)1–)ÎNs¹G?\u0007lÈÊ"},"o_string":{"string":"ugqffxrh"},"o_enum":{"Level2_2_Enum2":"TWO"},"o_date":{"int":-110471152},"o_timemillis":null,"o_timemicros":{"long":-8837198765606885738},"o_timestampmillis":{"long":-1067217513273140863},"o_timestampmicros":null}],"o_boolean":null,"o_int":{"int":221217694},"o_long":{"long":4807359726807947029},"o_float":null,"o_double":{"double":0.03358613546068545},"o_bytes":{"bytes":"A­"},"o_string":{"string":"qcgbvkeaymqevibtpmeissajioqlftricdfmwdypdsiantqrkjrvrvnvlkxfimfumruqkeklyytncdhdhmvfxljjxumyrglugqoornx"},"o_enum":null,"o_date":{"int":1165864622},"o_timemillis":{"int":811460107},"o_timemicros":{"long":-3963438556978596744},"o_timestampmillis":null,"o_timestampmicros":{"long":-616725463995422588}},{"r_boolean":false,"r_int":-1556257706,"r_long":369352950626085492,"r_float":0.4335717,"r_double":0.3574972023535795,"r_bytes":"‘\u0007/","r_string":"","r_array":[{"r_boolean":true,"r_int":1051491461,"r_long":4156932617478015330,"r_float":0.23907411,"r_double":0.2489405617695819,"r_bytes":"6\r","r_string":"mwvqnrukwp","r_enum":"ZERO","r_date":1554292144,"r_timemillis":2099774975,"r_timemicros":8380325298977957434,"r_timestampmillis":126018130083337846,"r_timestampmicros":6800950183535011180,"o_boolean":null,"o_int":{"int":1874903773},"o_long":null,"o_float":null,"o_double":{"double":0.11155712682594676},"o_bytes":null,"o_string":{"string":"uawpvjmjwmlk"},"o_enum":null,"o_date":null,"o_timemillis":{"int":-776440887},"o_timemicros":{"long":-5622837961883166893},"o_timestampmillis":{"long":-6951277229568160284},"o_timestampmicros":null},{"r_boolean":false,"r_int":1278615814,"r_long":7127716157922954938,"r_float":0.84045523,"r_double":0.5011900983757385,"r_bytes":"\u001D­£>Gù","r_string":"lvdrws","r_enum":"ZERO","r_date":2091870071,"r_timemillis":-1228030004,"r_timemicros":1254326544612356612,"r_timestampmillis":3749555772299555843,"r_timestampmicros":1700837253032566925,"o_boolean":null,"o_int":null,"o_long":{"long":5812428332182475547},"o_float":null,"o_double":{"double":0.4414511746211036},"o_bytes":{"bytes":"š¹§€âÜdº*"},"o_string":{"string":"fgipodbvlajo"},"o_enum":{"Level2_2_Enum2":"ONE"},"o_date":{"int":178329513},"o_timemillis":null,"o_timemicros":{"long":1470632531182688276},"o_timestampmillis":{"long":-7828473054705769059},"o_timestampmicros":{"long":6071198805154954335}},{"r_boolean":true,"r_int":-2140299996,"r_long":-932297035752812329,"r_float":0.9362802,"r_double":0.913729762933234,"r_bytes":"ÿ\"ûþ","r_string":"tpduhfufspursa","r_enum":"TWO","r_date":217160453,"r_timemillis":-70755161,"r_timemicros":1789017992080512791,"r_timestampmillis":-9140500547987496910,"r_timestampmicros":-6707027530136730927,"o_boolean":null,"o_int":null,"o_long":null,"o_float":{"float":0.5890986},"o_double":{"double":0.033848178050755795},"o_bytes":null,"o_string":null,"o_enum":null,"o_date":{"int":1802820538},"o_timemillis":null,"o_timemicros":null,"o_timestampmillis":{"long":-5072171339131873088},"o_timestampmicros":null}],"o_boolean":{"boolean":false},"o_int":null,"o_long":{"long":-4051571256787408770},"o_float":null,"o_double":null,"o_bytes":{"bytes":"ö\u0013Ûè_šN\u0002"},"o_string":null,"o_enum":{"Level1_2_Enum2":"ZERO"},"o_date":null,"o_timemillis":null,"o_timemicros":null,"o_timestampmillis":null,"o_timestampmicros":{"long":7122402565375630863}},{"r_boolean":false,"r_int":74607656,"r_long":-7494827422455415246,"r_float":0.6675359,"r_double":0.4733142445759878,"r_bytes":"±\u0018nqèÜ","r_string":"ugkfn","r_array":[],"o_boolean":null,"o_int":{"int":-1210099720},"o_long":null,"o_float":{"float":0.13561839},"o_double":null,"o_bytes":{"bytes":"ûã\u0001"},"o_string":null,"o_enum":{"Level1_2_Enum2":"ONE"},"o_date":{"int":-1044196983},"o_timemillis":null,"o_timemicros":{"long":-4800634297532426219},"o_timestampmillis":null,"o_timestampmicros":null},{"r_boolean":false,"r_int":-642249110,"r_long":8913284431562368824,"r_float":0.1085425,"r_double":0.2697889724752758,"r_bytes":"â\fÁr­²£vyðJ÷","r_string":"dlidomhlfwhn","r_array":[{"r_boolean":true,"r_int":1902469115,"r_long":2446052028474129364,"r_float":0.2947042,"r_double":0.17907109815488642,"r_bytes":"¡Æ¼!Zù³QI","r_string":"kfotlyg","r_enum":"TWO","r_date":-425872581,"r_timemillis":-179429277,"r_timemicros":-7361031858338335404,"r_timestampmillis":-553876593388832867,"r_timestampmicros":-8871973765110292425,"o_boolean":null,"o_int":{"int":-1392820434},"o_long":{"long":-5213328552675829385},"o_float":null,"o_double":null,"o_bytes":{"bytes":"B:\u0017ð\u000B\u001D“h8"},"o_string":{"string":"n"},"o_enum":null,"o_date":null,"o_timemillis":null,"o_timemicros":{"long":-6505768653850754781},"o_timestampmillis":{"long":503985491302402126},"o_timestampmicros":{"long":-5565151236456402627}},{"r_boolean":true,"r_int":797208707,"r_long":-8173855096498070988,"r_float":0.93866754,"r_double":0.9345191341910863,"r_bytes":"h#ÍJNô","r_string":"ypjynpk","r_enum":"ONE","r_date":738290838,"r_timemillis":-945520379,"r_timemicros":2657521887869556805,"r_timestampmillis":-6999314310648459359,"r_timestampmicros":-5673864333182766562,"o_boolean":null,"o_int":null,"o_long":{"long":3459043110404381676},"o_float":null,"o_double":null,"o_bytes":{"bytes":"¥Y\u0018G–wÍæ˜aº}\u0019l@"},"o_string":null,"o_enum":{"Level2_2_Enum2":"ONE"},"o_date":{"int":1937201637},"o_timemillis":null,"o_timemicros":null,"o_timestampmillis":null,"o_timestampmicros":{"long":8979074853744059785}},{"r_boolean":false,"r_int":51678435,"r_long":-917449681700044150,"r_float":0.11861086,"r_double":0.24064739218381592,"r_bytes":"ôQ\u000E_¼","r_string":"mceeffrfc","r_enum":"TWO","r_date":-2134351724,"r_timemillis":1719434542,"r_timemicros":-7998930693196505414,"r_timestampmillis":7129123388206649293,"r_timestampmicros":-3033066664224759478,"o_boolean":{"boolean":true},"o_int":null,"o_long":{"long":-7502408543593194838},"o_float":null,"o_double":{"double":0.7095628907737596},"o_bytes":null,"o_string":{"string":"lfl"},"o_enum":null,"o_date":null,"o_timemillis":{"int":-1496758262},"o_timemicros":null,"o_timestampmillis":{"long":2189539852810873039},"o_timestampmicros":{"long":3358116069958817267}}],"o_boolean":{"boolean":true},"o_int":{"int":-1411952591},"o_long":{"long":-4698889129914356395},"o_float":{"float":0.751377},"o_double":{"double":0.8768797531089788},"o_bytes":{"bytes":"¬vKˆ\u0002Ò"},"o_string":null,"o_enum":{"Level1_2_Enum2":"ZERO"},"o_date":{"int":-2129098253},"o_timemillis":null,"o_timemicros":null,"o_timestampmillis":null,"o_timestampmicros":null},{"r_boolean":true,"r_int":-1454611638,"r_long":1957115049235555288,"r_float":0.4610973,"r_double":0.14390568924168945,"r_bytes":"\u0006Ó;wh¢‡?ÆK","r_string":"mu","r_array":[{"r_boolean":false,"r_int":931851432,"r_long":5304607421195505989,"r_float":0.17175537,"r_double":0.47710606167326985,"r_bytes":"oC#Ú\\ì\u001F.Ÿó","r_string":"dyuef","r_enum":"TWO","r_date":-709111670,"r_timemillis":-511361962,"r_timemicros":9116728239430783067,"r_timestampmillis":9073596767309170049,"r_timestampmicros":-4861434578376887590,"o_boolean":{"boolean":false},"o_int":null,"o_long":null,"o_float":null,"o_double":{"double":0.4283196463817772},"o_bytes":null,"o_string":{"string":"jw"},"o_enum":null,"o_date":{"int":-1910304883},"o_timemillis":null,"o_timemicros":null,"o_timestampmillis":null,"o_timestampmicros":null}],"o_boolean":null,"o_int":{"int":1845094228},"o_long":{"long":-4053371310391851201},"o_float":{"float":0.30271745},"o_double":null,"o_bytes":{"bytes":"ÂÈ돔’+7"},"o_string":{"string":"mmhdtbummfs"},"o_enum":{"Level1_2_Enum2":"TWO"},"o_date":{"int":321830233},"o_timemillis":null,"o_timemicros":{"long":-22807821442373790},"o_timestampmillis":{"long":4235198215477993665},"o_timestampmicros":{"long":6943281806090278261}}],"r_date":486561734,"r_timemillis":1638143333,"r_timemicros":-6753759387316823005,"r_timestampmillis":4121981630935220995,"r_timestampmicros":7948838715168058244,"o_boolean":null,"o_int":null,"o_long":null,"o_float":null,"o_double":{"double":0.9990116196287047},"o_bytes":null,"o_string":null,"o_record":{"Level1_3":{"r_boolean":true,"r_int":-402234070,"r_long":3855577840019991514,"r_float":0.30395895,"r_double":0.9281605842100152,"r_bytes":"0﬛ù£^Gô\u0012Ÿ","r_string":"inaa","r_record":{"r_boolean":true,"r_int":1235257447,"r_long":-5492128129882657677,"r_float":0.7558119,"r_double":0.21153266202710985,"r_bytes":"˜ë㪑â\u001A\nüó_\u0010","r_string":"uh","r_enum":"ONE","r_date":-1964029358,"r_timemillis":-1315280095,"r_timemicros":-4497461714239922349,"r_timestampmillis":-1705236287170814699,"r_timestampmicros":1505054933518110293,"o_boolean":null,"o_int":null,"o_long":{"long":-6641084184793240416},"o_float":null,"o_double":{"double":0.8361424128973017},"o_bytes":{"bytes":"0¨,„}"},"o_string":{"string":"runuvousydth"},"o_enum":{"Level2_3_Enum2":"ZERO"},"o_date":{"int":-1955764356},"o_timemillis":null,"o_timemicros":null,"o_timestampmillis":{"long":5506973618354555282},"o_timestampmicros":null},"r_enum":"ONE","r_date":888852251,"r_timemillis":-1030591706,"r_timemicros":2276443831583853007,"r_timestampmillis":790449031918711964,"r_timestampmicros":-2830268506568083863,"o_boolean":{"boolean":false},"o_int":{"int":-346727524},"o_long":{"long":1516488712477609845},"o_float":null,"o_double":null,"o_bytes":{"bytes":"{"},"o_string":{"string":"fnlptlxydiyui"},"o_enum":null,"o_date":{"int":-100722915},"o_timemillis":{"int":-2143909039},"o_timemicros":{"long":-5152481715735409305},"o_timestampmillis":null,"o_timestampmicros":null}},"o_enum":{"Enum2":"ZERO"},"o_date":{"int":745401479},"o_timemillis":{"int":665533576},"o_timemicros":null,"o_timestampmillis":null,"o_timestampmicros":{"long":-395457827778398055}} +{"r_boolean":false,"r_int":-1917853719,"r_long":621997544579470755,"r_float":0.84689975,"r_double":0.13449730161606221,"r_bytes":"r}ç҂\u0018ˆjÒªL®$","r_string":"ktccuvugpvmml","r_record":{"r_boolean":false,"r_int":519778092,"r_long":6631330912757835144,"r_float":0.6317901,"r_double":0.7584100991524964,"r_bytes":"6G$µ","r_string":"oeglk","r_record":{"r_boolean":true,"r_int":-267082850,"r_long":3832633501864481332,"r_float":0.504239,"r_double":0.2650988639432226,"r_bytes":"\u0007¨_ýj","r_string":"ljnpisl","r_enum":"ONE","r_date":-1330963176,"r_timemillis":-807787179,"r_timemicros":5773705604838557476,"r_timestampmillis":-8071848743159799928,"r_timestampmicros":2411378118127584442,"o_boolean":null,"o_int":{"int":-178093624},"o_long":null,"o_float":{"float":0.36101717},"o_double":null,"o_bytes":{"bytes":"æ\u0007"},"o_string":null,"o_enum":{"Level2_1__1_Enum2":"TWO"},"o_date":{"int":-53813064},"o_timemillis":null,"o_timemicros":{"long":49601073001044981},"o_timestampmillis":null,"o_timestampmicros":{"long":7440459141665320613}},"r_enum":"ONE","r_date":191257698,"r_timemillis":-47391693,"r_timemicros":-3873370694412346760,"r_timestampmillis":7862438654681340790,"r_timestampmicros":-7923218385848693671,"r_array":[{"r_boolean":false,"r_int":1526442328,"r_long":-6503568918227748624,"r_float":0.96467185,"r_double":0.6812449341371987,"r_bytes":"†[Ï#.€\u000B\u0019j­·sŒ","r_string":"peelamvouirs","r_enum":"ONE","o_boolean":null,"o_int":{"int":1161747244},"o_long":{"long":-7444876729032628369},"o_float":{"float":0.38539237},"o_double":{"double":0.9792575936124944},"o_bytes":null,"o_string":null,"o_enum":{"Level2_1__2_Enum2":"ONE"},"o_date":null,"o_timemillis":{"int":1017314406},"o_timemicros":{"long":8176689410793808766},"o_timestampmillis":null,"o_timestampmicros":null}]},"r_enum":"TWO","r_array":[{"r_boolean":false,"r_int":935237229,"r_long":3896118329169645968,"r_float":0.3498385,"r_double":0.2647528737446261,"r_bytes":"­ÍÐztHVão\u0016trå†","r_string":"yrbqugleelahp","r_array":[{"r_boolean":true,"r_int":-974530412,"r_long":-6050230586011813916,"r_float":0.22892857,"r_double":0.09955959534346215,"r_bytes":"£L'Ïu‹\f™ü\u001BZ\u0003d","r_string":"cqselb","r_enum":"ZERO","r_date":704997029,"r_timemillis":-14040331,"r_timemicros":2046487876962155457,"r_timestampmillis":808265604035233036,"r_timestampmicros":-7564888007521282984,"o_boolean":{"boolean":false},"o_int":{"int":1444241804},"o_long":null,"o_float":{"float":0.62687033},"o_double":{"double":0.5252288170678259},"o_bytes":{"bytes":"ÃV’Øèª"},"o_string":{"string":"svvyfunr"},"o_enum":null,"o_date":{"int":73898731},"o_timemillis":null,"o_timemicros":null,"o_timestampmillis":{"long":-1231075130946511225},"o_timestampmicros":{"long":-8740529085376610230}},{"r_boolean":false,"r_int":363321955,"r_long":7549944509426767090,"r_float":0.60747445,"r_double":0.49915268804713353,"r_bytes":"û|ăù•O","r_string":"usqvcjqqir","r_enum":"ONE","r_date":1741191969,"r_timemillis":-849620752,"r_timemicros":-5082748320677551561,"r_timestampmillis":7537491305832299662,"r_timestampmicros":8991419648836623240,"o_boolean":{"boolean":true},"o_int":null,"o_long":{"long":-7588558879120723151},"o_float":null,"o_double":{"double":0.13351455089511033},"o_bytes":{"bytes":"â\u000B\u001C/u‰´Ot\"ªØ¦"},"o_string":{"string":"qko"},"o_enum":{"Level2_2_Enum2":"ZERO"},"o_date":null,"o_timemillis":null,"o_timemicros":{"long":7997855479812023068},"o_timestampmillis":null,"o_timestampmicros":null}],"o_boolean":{"boolean":false},"o_int":null,"o_long":null,"o_float":null,"o_double":null,"o_bytes":{"bytes":";f34/\"\u0012&÷U"},"o_string":null,"o_enum":null,"o_date":null,"o_timemillis":{"int":-378624605},"o_timemicros":{"long":2924679318916264234},"o_timestampmillis":null,"o_timestampmicros":{"long":753691051069319381}},{"r_boolean":false,"r_int":-1613214588,"r_long":-7510550300923379742,"r_float":0.13468164,"r_double":0.8955369382441397,"r_bytes":";Š¾t£æŽ\u0019Y‡z!È","r_string":"n","r_array":[],"o_boolean":{"boolean":true},"o_int":null,"o_long":null,"o_float":{"float":0.9912534},"o_double":null,"o_bytes":{"bytes":"!óÜ \u001C†DӀì\b–"},"o_string":{"string":"ffrmkiiy"},"o_enum":null,"o_date":{"int":219457205},"o_timemillis":{"int":1269910029},"o_timemicros":null,"o_timestampmillis":{"long":-4069648698993684623},"o_timestampmicros":null}],"r_date":1395618435,"r_timemillis":2014769939,"r_timemicros":-3663228787646494249,"r_timestampmillis":5441336710695352695,"r_timestampmicros":-6361588872695117239,"o_boolean":{"boolean":false},"o_int":null,"o_long":null,"o_float":{"float":0.21113956},"o_double":{"double":0.3716745937149132},"o_bytes":null,"o_string":{"string":"v"},"o_record":{"Level1_3":{"r_boolean":false,"r_int":331408358,"r_long":-1344974997662125639,"r_float":0.42805022,"r_double":0.35205557359613193,"r_bytes":"Õ","r_string":"yrcwqsrk","r_record":{"r_boolean":false,"r_int":43731757,"r_long":728143048520292947,"r_float":0.72873545,"r_double":0.3789802068612689,"r_bytes":"q¥¿½w ?L\r_\\=!¡®øVÊ­\u0013cE¹\u0003ŠÊ\u0012¡\u0013EQÑ\u00186¬Úå/óàå§ä\u001F)¾Oñ’QEe#\n­0\u0017Á\u001CM—û\u000BO\u0015/\u0017dšæ`\u000FW™‘kò/\"\u000FÎeqê‚Ü®\u0005ášÂu\u0006,_yý\u0004K”»y#9iþ\u000F±Ñ'#-y\"aÌ-W¿]ŸK\u001F­ý£`•½Ï\u0011_rö(ˆkz‰¾ý$\fë\u001Eb¢ß[±4ÿ'mÒlv#9QH\b š•cM•T\u000E{e'\u0015Å%\u001E¯/¬\u001E™õ¾YO”]-Þ¿“","r_string":"xnacwahbxrs","r_enum":"ZERO","r_date":-1469272599,"r_timemillis":-36183761,"r_timemicros":5325241329771853504,"r_timestampmillis":1086428055293122790,"r_timestampmicros":3717624888266742288,"o_boolean":null,"o_int":null,"o_long":null,"o_float":{"float":0.8369445},"o_double":{"double":0.6594676103934839},"o_bytes":{"bytes":"\u0014„‘"},"o_string":null,"o_enum":{"Level2_3_Enum2":"TWO"},"o_date":null,"o_timemillis":{"int":-128826766},"o_timemicros":null,"o_timestampmillis":{"long":-3725208246760602926},"o_timestampmicros":{"long":3092437330110331728}},"r_enum":"TWO","r_date":1295257415,"r_timemillis":1540529702,"r_timemicros":6287560901929236997,"r_timestampmillis":5085481131534170657,"r_timestampmicros":-4115982969887845970,"o_boolean":{"boolean":true},"o_int":null,"o_long":{"long":-3697579525105025858},"o_float":null,"o_double":null,"o_bytes":null,"o_string":{"string":"atrch"},"o_enum":null,"o_date":null,"o_timemillis":{"int":317660905},"o_timemicros":null,"o_timestampmillis":{"long":-8768639825638993941},"o_timestampmicros":{"long":-6230540457793265832}}},"o_enum":{"Enum2":"ZERO"},"o_date":null,"o_timemillis":{"int":1548628159},"o_timemicros":{"long":8760403040456408042},"o_timestampmillis":{"long":-5856955516676303834},"o_timestampmicros":{"long":6587369761383700845}} +{"r_boolean":false,"r_int":-476045999,"r_long":1606322975529706082,"r_float":0.37002927,"r_double":0.804242873063274,"r_bytes":"ô¹(¸%FÄí/oÉ(Ґð  :ªóï€:13Û\u0005…ïÏ:†\u0003lìÐu7d=2æ|#»á\b+ëòÝ]óŸå»!âY#ä&5•©bŽ?Ëá\u000EF\u0015?Iž…ª´«D“3÷nÅØU\u000E愁ü…y\u0019öNùž·ÖÖNÿőŸ‚ÚT\r·ð\u0018*ØtË=P±Ùóóï\u0013ðÀ«\u000BŽºñ,~²|¾C-Ø_Èúÿ¨¶\u0007Â\u000B\u0010«\bP\u0013Ñ)\u0011Ó\u000F~Rü\u001F=ùßï\u0016â\u0005³\u0011I;Qq°\u0015:Ù¨h¬šÜ\bzd¶Î¬gŸð\u0012ÜÑJ<‰Ï×¹à\u00152¤]i¦\r\u000EWÿ\u001C\fÉ-\u0018\n÷YäÈ6ÿ៬\u0007F","r_string":"slivuacvqq","r_record":{"r_boolean":false,"r_int":-1443587431,"r_long":-7069072619239002471,"r_float":0.7984139,"r_double":0.13695729902650378,"r_bytes":"Ž-ф7ÈsYÔ^Öö²ÙÁY^:ÐuvjQw,„\u0001Ãë÷ºXöý½Q­­T8ÏBpü°¸Ö\u001DH\"QËTÊ\f‚xQGp¦…¯’šr\r¯j\u000E£Í HóכÐáòhvVUˆ¨\u001Fó\u000FW·&²\u0012‰VV¸2ÇcÒDóÑðÂ$*‘p‹µp\u001F\u0000Þߕ9½ÃS×(w<\u0011Ý1Ú\u00066Yëï èľvhß","r_string":"xgkroyvfngkurd","r_record":{"r_boolean":false,"r_int":1629034037,"r_long":-5352915250256705188,"r_float":0.40691292,"r_double":0.26210705406334966,"r_bytes":"","r_string":"ir","r_enum":"ZERO","r_date":-1544813208,"r_timemillis":-1896404876,"r_timemicros":2490773320447586705,"r_timestampmillis":-3255190344588796724,"r_timestampmicros":-6293347816488997441,"o_boolean":null,"o_int":{"int":1046827752},"o_long":{"long":2461242398838897916},"o_float":null,"o_double":{"double":0.30600747010999096},"o_bytes":null,"o_string":null,"o_enum":null,"o_date":null,"o_timemillis":{"int":-1608812044},"o_timemicros":null,"o_timestampmillis":null,"o_timestampmicros":null},"r_enum":"ONE","r_date":1945883500,"r_timemillis":-177912653,"r_timemicros":-3063920954573950035,"r_timestampmillis":-5638053272597928921,"r_timestampmicros":3744705592458788780,"r_array":[{"r_boolean":false,"r_int":34742352,"r_long":-7068445379980971578,"r_float":0.37264186,"r_double":0.859329624168498,"r_bytes":"\t¿i…","r_string":"vojrhin","r_enum":"TWO","o_boolean":{"boolean":false},"o_int":{"int":1691740876},"o_long":{"long":-8216031343915720068},"o_float":{"float":0.82493436},"o_double":null,"o_bytes":null,"o_string":null,"o_enum":{"Level2_1__2_Enum2":"ONE"},"o_date":{"int":-2010717461},"o_timemillis":null,"o_timemicros":{"long":3018611832365743130},"o_timestampmillis":null,"o_timestampmicros":{"long":5436828575632895061}},{"r_boolean":false,"r_int":-309196101,"r_long":4407205131399866203,"r_float":0.49943274,"r_double":0.2784272986173939,"r_bytes":"¡‘³Ý","r_string":"naalrqhalfcspps","r_enum":"ZERO","o_boolean":null,"o_int":null,"o_long":{"long":-1904064504493162719},"o_float":{"float":0.23829645},"o_double":null,"o_bytes":{"bytes":"rüêj«?‡pN7"},"o_string":{"string":"fgwja"},"o_enum":{"Level2_1__2_Enum2":"TWO"},"o_date":null,"o_timemillis":{"int":-33011093},"o_timemicros":null,"o_timestampmillis":null,"o_timestampmicros":{"long":5134709332388961961}},{"r_boolean":false,"r_int":889324846,"r_long":4563147629975122085,"r_float":0.57129383,"r_double":0.9135754602571841,"r_bytes":"f","r_string":"xyl","r_enum":"ONE","o_boolean":{"boolean":false},"o_int":{"int":-2108611910},"o_long":{"long":1838229000929731869},"o_float":{"float":0.11444563},"o_double":null,"o_bytes":null,"o_string":{"string":"nsjxdfmwo"},"o_enum":null,"o_date":null,"o_timemillis":{"int":764915161},"o_timemicros":{"long":655157204821389411},"o_timestampmillis":{"long":1301815762807763147},"o_timestampmicros":null},{"r_boolean":false,"r_int":1345200561,"r_long":6151796172093205067,"r_float":0.98385024,"r_double":0.6502758555233596,"r_bytes":"ZÞ\u0013R·7±e","r_string":"ehfay","r_enum":"TWO","o_boolean":{"boolean":true},"o_int":null,"o_long":null,"o_float":{"float":0.18734872},"o_double":{"double":0.38626537983313336},"o_bytes":{"bytes":"\u0017_µ?¬jå"},"o_string":{"string":"bqtrgcnwvpgbm"},"o_enum":null,"o_date":null,"o_timemillis":{"int":1065941328},"o_timemicros":null,"o_timestampmillis":{"long":-6537558475927911386},"o_timestampmicros":null}]},"r_enum":"TWO","r_array":[{"r_boolean":true,"r_int":616358047,"r_long":3464976948104491501,"r_float":0.80950403,"r_double":0.02434501420511559,"r_bytes":"Å\u001BoØìqãÛEã÷","r_string":"fdcns","r_array":[{"r_boolean":true,"r_int":428647431,"r_long":1859944877340932155,"r_float":0.35742646,"r_double":0.17450511547899883,"r_bytes":"oËÖ\u0006‹…","r_string":"ki","r_enum":"ONE","r_date":1412747476,"r_timemillis":2069507934,"r_timemicros":-8007533232462583081,"r_timestampmillis":9202848299600828260,"r_timestampmicros":-5343244978236121345,"o_boolean":{"boolean":false},"o_int":{"int":1019341008},"o_long":{"long":5802567431548881517},"o_float":null,"o_double":null,"o_bytes":{"bytes":"+1ïê…CO?Mçµ¾\nVJ ›F\u001C8•¹\u0007GqGOÍ\u001BOööØ(Bå,\nÂKNdŽåT\u000BˆH©¿ÌÁ=À\u000E…Ÿµñ¼ÿ\u0010/LNÌ®R\u0017J'È\u0012›³:Ɵ\\ˆä'µëö²À—AðzÚ¬bU÷Ãú:·ÒÎ5,æ”@(l½7Ï^&£•1B†Ç)’\u0003Ò¹\u0015ïc—¹ƒñU\bõ&\u0017\\X¨Ïb\\niý¶·®€&þ×BÞ\u0017dZÕȟŽÏ…³=Òl¡¯qîä\u001CbÛK\u001DØÎ\u0018ä\b<"},"o_string":null,"o_enum":null,"o_date":null,"o_timemillis":{"int":-835570600},"o_timemicros":{"long":-5190691395469651653},"o_timestampmillis":{"long":5556342054256311048},"o_timestampmicros":null},{"r_boolean":true,"r_int":-1765929664,"r_long":-3715027022450586830,"r_float":0.38440305,"r_double":0.6979678173265336,"r_bytes":"¾\u0012×","r_string":"nnvpr","r_enum":"ONE","r_date":1647017012,"r_timemillis":-754865568,"r_timemicros":7626755686733509734,"r_timestampmillis":-6998520096838132061,"r_timestampmicros":-5430232348162978358,"o_boolean":{"boolean":true},"o_int":null,"o_long":{"long":-3858232075131395818},"o_float":{"float":0.4559312},"o_double":{"double":0.3321662502295596},"o_bytes":null,"o_string":null,"o_enum":null,"o_date":{"int":-629114714},"o_timemillis":null,"o_timemicros":null,"o_timestampmillis":null,"o_timestampmicros":null},{"r_boolean":true,"r_int":1217208641,"r_long":-4811472996274193949,"r_float":0.42329264,"r_double":0.9470176448443148,"r_bytes":"¡ùü","r_string":"ja","r_enum":"ZERO","r_date":-464126376,"r_timemillis":-1864837562,"r_timemicros":-5537550344833011452,"r_timestampmillis":4001402662759348252,"r_timestampmicros":-1518115519261855708,"o_boolean":{"boolean":true},"o_int":null,"o_long":null,"o_float":null,"o_double":null,"o_bytes":{"bytes":"æÿ·ö5ðyâfW"},"o_string":{"string":"xnwfrughvxt"},"o_enum":{"Level2_2_Enum2":"ONE"},"o_date":null,"o_timemillis":null,"o_timemicros":null,"o_timestampmillis":null,"o_timestampmicros":null}],"o_boolean":{"boolean":true},"o_int":{"int":-1100279284},"o_long":null,"o_float":{"float":0.5810581},"o_double":{"double":0.27647733057108237},"o_bytes":null,"o_string":{"string":"bbficgcor"},"o_enum":{"Level1_2_Enum2":"TWO"},"o_date":{"int":2133110682},"o_timemillis":null,"o_timemicros":null,"o_timestampmillis":null,"o_timestampmicros":null}],"r_date":-2147071788,"r_timemillis":1170312102,"r_timemicros":-5528535385845908542,"r_timestampmillis":-4658815909725543091,"r_timestampmicros":4591992596962392312,"o_boolean":{"boolean":true},"o_int":{"int":1861217067},"o_long":{"long":-5783075229830695706},"o_float":null,"o_double":null,"o_bytes":null,"o_string":null,"o_record":{"Level1_3":{"r_boolean":false,"r_int":1184277881,"r_long":-7616118504441813679,"r_float":0.9190794,"r_double":0.5703855080446416,"r_bytes":"pgÙß","r_string":"sjlolwxgfjrpn","r_record":{"r_boolean":true,"r_int":705757634,"r_long":4279184483964997952,"r_float":0.02994299,"r_double":0.4476246323097586,"r_bytes":"µ­ ¦s\bÊ\u0006Ë","r_string":"r","r_enum":"ZERO","r_date":-1199771193,"r_timemillis":742752819,"r_timemicros":-1109233235380265850,"r_timestampmillis":1578336622741237694,"r_timestampmicros":3550646250003309168,"o_boolean":null,"o_int":null,"o_long":null,"o_float":null,"o_double":{"double":0.12184327307716114},"o_bytes":{"bytes":"É\u0018"},"o_string":{"string":""},"o_enum":{"Level2_3_Enum2":"ONE"},"o_date":null,"o_timemillis":null,"o_timemicros":null,"o_timestampmillis":null,"o_timestampmicros":{"long":-8140257075246328781}},"r_enum":"ZERO","r_date":-277761880,"r_timemillis":2096625170,"r_timemicros":-2985760703223816523,"r_timestampmillis":4157764243866253367,"r_timestampmicros":-1671153619876497795,"o_boolean":{"boolean":false},"o_int":{"int":2083024679},"o_long":null,"o_float":null,"o_double":{"double":0.9287871204335518},"o_bytes":null,"o_string":null,"o_enum":null,"o_date":{"int":1412289455},"o_timemillis":null,"o_timemicros":{"long":7421469378091987129},"o_timestampmillis":null,"o_timestampmicros":null}},"o_enum":{"Enum2":"ZERO"},"o_date":null,"o_timemillis":{"int":-149074608},"o_timemicros":null,"o_timestampmillis":null,"o_timestampmicros":null} +{"r_boolean":false,"r_int":-336984916,"r_long":-287442332252314707,"r_float":0.96117467,"r_double":0.09493983070155565,"r_bytes":"õÀʳý{wY\u00018}","r_string":"op","r_record":{"r_boolean":false,"r_int":-1210462755,"r_long":360381233410050197,"r_float":0.21392739,"r_double":0.44139587662124835,"r_bytes":"9¡°hœ©Ÿ”","r_string":"qavbspk","r_record":{"r_boolean":false,"r_int":314540046,"r_long":-2235876586248845900,"r_float":0.06978536,"r_double":0.6096473620749082,"r_bytes":"*k£‰§‚¬ÖB\u0000Ù&","r_string":"kqufucxy","r_enum":"ONE","r_date":-1677286780,"r_timemillis":1673645600,"r_timemicros":421127018735684942,"r_timestampmillis":-4318199252790515651,"r_timestampmicros":-5849949544447087872,"o_boolean":{"boolean":false},"o_int":null,"o_long":{"long":2074431557544556996},"o_float":null,"o_double":null,"o_bytes":{"bytes":"Cø\u0016°±«\u0004\"\u000FëŠË4¯"},"o_string":{"string":"hiigluaawegtj"},"o_enum":null,"o_date":{"int":-1364518248},"o_timemillis":null,"o_timemicros":{"long":6228691848457910395},"o_timestampmillis":{"long":7974171560559969773},"o_timestampmicros":null},"r_enum":"ZERO","r_date":-946316056,"r_timemillis":-116164825,"r_timemicros":-9043798335718164387,"r_timestampmillis":-5049435814602350789,"r_timestampmicros":-6375113295052926138,"r_array":[{"r_boolean":true,"r_int":1967812709,"r_long":-3843095613576363945,"r_float":0.8000108,"r_double":0.11717864331848349,"r_bytes":"̌›","r_string":"gftvnd","r_enum":"ONE","o_boolean":null,"o_int":null,"o_long":null,"o_float":{"float":0.69251937},"o_double":{"double":0.524711100498078},"o_bytes":null,"o_string":{"string":"en"},"o_enum":{"Level2_1__2_Enum2":"TWO"},"o_date":{"int":-603239349},"o_timemillis":null,"o_timemicros":null,"o_timestampmillis":{"long":4448397840742370645},"o_timestampmicros":{"long":1669581395414098952}}]},"r_enum":"ONE","r_array":[{"r_boolean":false,"r_int":-1065112144,"r_long":3647160498253173133,"r_float":0.60227454,"r_double":0.5890700927938556,"r_bytes":"gzä{?C´žXÞ","r_string":"jgjn","r_array":[{"r_boolean":true,"r_int":1475134891,"r_long":-3726974313824123910,"r_float":0.6616909,"r_double":0.39527741149417805,"r_bytes":"\u0002\u001D:sT³5Eì","r_string":"onu","r_enum":"ZERO","r_date":313186241,"r_timemillis":804891003,"r_timemicros":8715063624302095932,"r_timestampmillis":-8867653889095229380,"r_timestampmicros":-8820308438609446720,"o_boolean":{"boolean":true},"o_int":null,"o_long":{"long":4505306818104928570},"o_float":{"float":0.072799444},"o_double":{"double":0.7435295986633853},"o_bytes":null,"o_string":null,"o_enum":null,"o_date":null,"o_timemillis":{"int":1379640261},"o_timemicros":{"long":-4425301125430468480},"o_timestampmillis":null,"o_timestampmicros":{"long":6981844119465410488}},{"r_boolean":false,"r_int":1561185934,"r_long":6641132645124841592,"r_float":0.2804597,"r_double":0.062495130481264094,"r_bytes":"Ø[ë¦ê®î\"㺴J{{","r_string":"sne","r_enum":"ONE","r_date":-1501700676,"r_timemillis":-1945182525,"r_timemicros":3113677755875734795,"r_timestampmillis":3750238015051205337,"r_timestampmicros":-729798753827700009,"o_boolean":null,"o_int":{"int":-2029633345},"o_long":null,"o_float":null,"o_double":null,"o_bytes":null,"o_string":{"string":"bjfsdppt"},"o_enum":null,"o_date":null,"o_timemillis":{"int":-1067562286},"o_timemicros":null,"o_timestampmillis":null,"o_timestampmicros":{"long":9209740877049430963}},{"r_boolean":true,"r_int":1342391188,"r_long":8356141998272336047,"r_float":0.36798096,"r_double":0.11855378456639587,"r_bytes":"W—¿\u0000wFäo\u0019éç","r_string":"cuuue","r_enum":"ONE","r_date":-231792896,"r_timemillis":-427051306,"r_timemicros":-3162708784563791815,"r_timestampmillis":7907024891556225844,"r_timestampmicros":2912718886580834844,"o_boolean":null,"o_int":{"int":1572664508},"o_long":null,"o_float":null,"o_double":{"double":0.7581559363302725},"o_bytes":null,"o_string":null,"o_enum":null,"o_date":{"int":2051466096},"o_timemillis":{"int":1873402672},"o_timemicros":{"long":-682481796980453078},"o_timestampmillis":null,"o_timestampmicros":null}],"o_boolean":null,"o_int":{"int":-1886234480},"o_long":null,"o_float":{"float":0.5982722},"o_double":null,"o_bytes":{"bytes":"DSr¶÷Ã^\\"},"o_string":{"string":"s"},"o_enum":{"Level1_2_Enum2":"ZERO"},"o_date":{"int":-1240247179},"o_timemillis":{"int":-2085369391},"o_timemicros":null,"o_timestampmillis":{"long":1443729892137128135},"o_timestampmicros":null},{"r_boolean":false,"r_int":-876555607,"r_long":5116346257086214917,"r_float":0.31255788,"r_double":0.11692585829394575,"r_bytes":"i","r_string":"yqaxlojiobhsfaoxnafffubdqdrraojkeojqimanfiawvylchwktwhepsqcthfsquqsppiucbmsdklfwyyyqqvndowtngxagvfjnkhkwtcdhlhcytcyekd","r_array":[{"r_boolean":false,"r_int":1799227189,"r_long":973691934863832171,"r_float":0.9553349,"r_double":0.668167145844234,"r_bytes":"«N—\u0019–%@\f\u0012»Â'[B÷","r_string":"oc","r_enum":"TWO","r_date":-1539255406,"r_timemillis":531896042,"r_timemicros":-2872789848014604687,"r_timestampmillis":-872181703081082961,"r_timestampmicros":-8020169280780563048,"o_boolean":null,"o_int":null,"o_long":null,"o_float":{"float":0.9380579},"o_double":null,"o_bytes":{"bytes":"\"Cu\""},"o_string":{"string":"yfbueoh"},"o_enum":{"Level2_2_Enum2":"ZERO"},"o_date":null,"o_timemillis":null,"o_timemicros":{"long":-7473302764414558036},"o_timestampmillis":null,"o_timestampmicros":null},{"r_boolean":false,"r_int":-1759625055,"r_long":6950934330578220524,"r_float":0.42817122,"r_double":0.12536583346613117,"r_bytes":"œ¡2ú•ÆͬÇho","r_string":"blvdhvetgkp","r_enum":"TWO","r_date":-143772516,"r_timemillis":905092240,"r_timemicros":-387976752278587953,"r_timestampmillis":-3403574657371955758,"r_timestampmicros":-6497378821306705947,"o_boolean":null,"o_int":null,"o_long":{"long":-3818125033976638852},"o_float":{"float":0.7728119},"o_double":null,"o_bytes":null,"o_string":null,"o_enum":{"Level2_2_Enum2":"ZERO"},"o_date":null,"o_timemillis":{"int":-899562333},"o_timemicros":null,"o_timestampmillis":null,"o_timestampmicros":{"long":8141550742094348580}},{"r_boolean":false,"r_int":-497872821,"r_long":-5467820919674591138,"r_float":0.5863977,"r_double":0.30557910652687625,"r_bytes":"}~\b","r_string":"ssjuodcrjb","r_enum":"ZERO","r_date":-608372440,"r_timemillis":781230893,"r_timemicros":-1646595684614176297,"r_timestampmillis":-3227088841793916362,"r_timestampmicros":-2165837642288114469,"o_boolean":null,"o_int":{"int":-1748616507},"o_long":{"long":-7691991083549343098},"o_float":{"float":0.7626639},"o_double":{"double":0.11678428624664505},"o_bytes":{"bytes":"ÓÆÛ:¶#¦Ê\"æ\u001Dו¿"},"o_string":{"string":"kawaqsyq"},"o_enum":null,"o_date":null,"o_timemillis":null,"o_timemicros":null,"o_timestampmillis":null,"o_timestampmicros":null}],"o_boolean":{"boolean":true},"o_int":{"int":1434029760},"o_long":{"long":9222794490651924772},"o_float":null,"o_double":{"double":0.5056817180455401},"o_bytes":{"bytes":"}¬u\u0019D\u001A7E9gý"},"o_string":{"string":"ajndivadqc"},"o_enum":null,"o_date":{"int":-1783458311},"o_timemillis":{"int":-1473691808},"o_timemicros":{"long":9193361943896055228},"o_timestampmillis":{"long":-7663545197073564318},"o_timestampmicros":null},{"r_boolean":false,"r_int":137345898,"r_long":1781528926500529782,"r_float":0.57819074,"r_double":0.9223442420346721,"r_bytes":"ë=@úwNKõ<","r_string":"eqbicrwqar","r_array":[{"r_boolean":true,"r_int":-1157809567,"r_long":-8677200694657703735,"r_float":0.52166444,"r_double":0.4724290734996123,"r_bytes":"Æ","r_string":"pogeikdmkhjvo","r_enum":"ZERO","r_date":-653629258,"r_timemillis":1300603668,"r_timemicros":5433899873602398665,"r_timestampmillis":817244208865227988,"r_timestampmicros":-1042186973606213967,"o_boolean":{"boolean":false},"o_int":null,"o_long":null,"o_float":null,"o_double":{"double":0.5164609606875054},"o_bytes":null,"o_string":{"string":"ntsjowiamg"},"o_enum":{"Level2_2_Enum2":"ZERO"},"o_date":null,"o_timemillis":{"int":-938575694},"o_timemicros":{"long":-6276069148326741697},"o_timestampmillis":null,"o_timestampmicros":{"long":-3142130550123315873}},{"r_boolean":true,"r_int":749737199,"r_long":9183834655966259991,"r_float":0.08893317,"r_double":0.3374239507697786,"r_bytes":"Ø|å\u000Fä\u0007}ó»!®","r_string":"qcxshwsdd","r_enum":"ONE","r_date":1822362161,"r_timemillis":1137521428,"r_timemicros":6081120061140628426,"r_timestampmillis":-536331195101344226,"r_timestampmicros":955260873664332353,"o_boolean":null,"o_int":null,"o_long":null,"o_float":null,"o_double":{"double":0.0659968737058384},"o_bytes":{"bytes":"\\Ýåö"},"o_string":{"string":"qybjhfyjxpupod"},"o_enum":{"Level2_2_Enum2":"ZERO"},"o_date":{"int":1485326158},"o_timemillis":{"int":962285599},"o_timemicros":{"long":8012853078973407400},"o_timestampmillis":null,"o_timestampmicros":null}],"o_boolean":{"boolean":false},"o_int":null,"o_long":null,"o_float":null,"o_double":null,"o_bytes":{"bytes":"‚\u0005\u001D1EW\u000FéÙC£§"},"o_string":{"string":"vmsil"},"o_enum":{"Level1_2_Enum2":"TWO"},"o_date":{"int":-1376714544},"o_timemillis":null,"o_timemicros":{"long":6676666327070745579},"o_timestampmillis":{"long":-7084141087313618594},"o_timestampmicros":null},{"r_boolean":true,"r_int":-1812532963,"r_long":-5719220662753045003,"r_float":0.8613942,"r_double":0.8028547735163751,"r_bytes":"‰3ÛÛ<","r_string":"sgiycvbes","r_array":[{"r_boolean":true,"r_int":-1181734185,"r_long":1539298932879371511,"r_float":0.95344543,"r_double":0.22491783214141758,"r_bytes":"Šl\u0011\u0013Z«ö\u001Aø,9","r_string":"c","r_enum":"ZERO","r_date":1610188893,"r_timemillis":-1348576220,"r_timemicros":-1732057315671444610,"r_timestampmillis":-431606535885928264,"r_timestampmicros":-8549405756149902422,"o_boolean":null,"o_int":null,"o_long":{"long":8422142476608058670},"o_float":{"float":0.12050825},"o_double":null,"o_bytes":{"bytes":""},"o_string":null,"o_enum":null,"o_date":{"int":1339100867},"o_timemillis":null,"o_timemicros":null,"o_timestampmillis":null,"o_timestampmicros":null},{"r_boolean":true,"r_int":106171686,"r_long":1120573893751149284,"r_float":0.80798334,"r_double":0.01736990133479821,"r_bytes":"„ä9”:éØ蚡Ý","r_string":"cl","r_enum":"TWO","r_date":639934877,"r_timemillis":-612414951,"r_timemicros":8769932730763593115,"r_timestampmillis":8765157431461593400,"r_timestampmicros":-3546996738564001060,"o_boolean":null,"o_int":null,"o_long":{"long":8992667413680192222},"o_float":null,"o_double":null,"o_bytes":{"bytes":"cràFG™ƒ\u000B"},"o_string":null,"o_enum":{"Level2_2_Enum2":"TWO"},"o_date":null,"o_timemillis":null,"o_timemicros":{"long":5133031395525814159},"o_timestampmillis":{"long":-4191406363407709221},"o_timestampmicros":null}],"o_boolean":{"boolean":false},"o_int":null,"o_long":null,"o_float":null,"o_double":null,"o_bytes":{"bytes":"”ÞB“t0L•H\"ÇÄe"},"o_string":{"string":""},"o_enum":{"Level1_2_Enum2":"ONE"},"o_date":null,"o_timemillis":{"int":2098508346},"o_timemicros":null,"o_timestampmillis":{"long":-4620000691454437692},"o_timestampmicros":null}],"r_date":1491943048,"r_timemillis":-1535251065,"r_timemicros":5529000582427670020,"r_timestampmillis":-6225953333772570648,"r_timestampmicros":-7879659172140660516,"o_boolean":{"boolean":false},"o_int":{"int":1295006206},"o_long":null,"o_float":null,"o_double":{"double":0.3692205262406869},"o_bytes":{"bytes":"ýf(u©‹·¶!\t¸ZÚ"},"o_string":{"string":"rncjie"},"o_record":{"Level1_3":{"r_boolean":true,"r_int":159082924,"r_long":1878340577205157922,"r_float":0.6030833,"r_double":0.7684714460627262,"r_bytes":"aÊJ\u0003‡O","r_string":"x","r_record":{"r_boolean":true,"r_int":-549127311,"r_long":-8753817380171547616,"r_float":0.32960492,"r_double":0.752348267921001,"r_bytes":"\u00028Ýـd#O ž¦B…","r_string":"","r_enum":"ONE","r_date":-1577696764,"r_timemillis":140189956,"r_timemicros":-7512939204276578414,"r_timestampmillis":-3360747941102306199,"r_timestampmicros":4462191826467522251,"o_boolean":{"boolean":false},"o_int":null,"o_long":{"long":3702543757334765849},"o_float":null,"o_double":{"double":0.4506964202478383},"o_bytes":null,"o_string":{"string":"xuikhajvb"},"o_enum":{"Level2_3_Enum2":"TWO"},"o_date":null,"o_timemillis":null,"o_timemicros":null,"o_timestampmillis":{"long":-4337622861217632631},"o_timestampmicros":null},"r_enum":"ONE","r_date":1568636964,"r_timemillis":1076832631,"r_timemicros":-1220649192682689805,"r_timestampmillis":8193022508118226621,"r_timestampmicros":1911399929301191389,"o_boolean":null,"o_int":{"int":-473427164},"o_long":null,"o_float":{"float":0.74613786},"o_double":null,"o_bytes":null,"o_string":null,"o_enum":null,"o_date":{"int":48350558},"o_timemillis":null,"o_timemicros":null,"o_timestampmillis":null,"o_timestampmicros":null}},"o_enum":{"Enum2":"ONE"},"o_date":{"int":-498928049},"o_timemillis":null,"o_timemicros":null,"o_timestampmillis":{"long":1657255496408291512},"o_timestampmicros":{"long":1166497266588276856}} +{"r_boolean":false,"r_int":2063055899,"r_long":-8414633578570909954,"r_float":0.11089879,"r_double":0.446959113006445,"r_bytes":"8”°/¦ê","r_string":"rvcdb","r_record":{"r_boolean":true,"r_int":-765056502,"r_long":4680793638385847092,"r_float":0.8083284,"r_double":0.08142666763130402,"r_bytes":"·Œb","r_string":"wgphtc","r_record":{"r_boolean":false,"r_int":866852155,"r_long":7188166532040283427,"r_float":0.5607535,"r_double":0.07300030015410153,"r_bytes":"ˆ9","r_string":"","r_enum":"ZERO","r_date":-1409263439,"r_timemillis":11976330,"r_timemicros":-244108675926225668,"r_timestampmillis":-1408613073667543981,"r_timestampmicros":8112030546947785079,"o_boolean":null,"o_int":null,"o_long":{"long":-395730852135153584},"o_float":{"float":0.31631678},"o_double":{"double":0.42911521952466714},"o_bytes":{"bytes":"ò”\u00166zêٌ"},"o_string":{"string":"bkkjynp"},"o_enum":{"Level2_1__1_Enum2":"ONE"},"o_date":{"int":-1670724208},"o_timemillis":{"int":-474164078},"o_timemicros":null,"o_timestampmillis":null,"o_timestampmicros":null},"r_enum":"ZERO","r_date":-1536620008,"r_timemillis":-1194834367,"r_timemicros":-4318751218129993602,"r_timestampmillis":1477027428572143810,"r_timestampmicros":-6961243887150719258,"r_array":[{"r_boolean":false,"r_int":-1390549890,"r_long":6776058679955558307,"r_float":0.3506292,"r_double":0.8276688613218472,"r_bytes":"W©åá\u0006","r_string":"","r_enum":"ZERO","o_boolean":{"boolean":false},"o_int":{"int":-1758742351},"o_long":null,"o_float":null,"o_double":{"double":0.856482702040964},"o_bytes":{"bytes":"†ÑcýV-\b:Ì\u00037+Ö£"},"o_string":null,"o_enum":{"Level2_1__2_Enum2":"ONE"},"o_date":{"int":210844096},"o_timemillis":{"int":-1308407279},"o_timemicros":{"long":7632074499710630771},"o_timestampmillis":null,"o_timestampmicros":{"long":6920235750317632942}},{"r_boolean":false,"r_int":-129613417,"r_long":6929466241551642353,"r_float":0.63345623,"r_double":0.6959376950543057,"r_bytes":"JqUÛÆBDñÑ1€§\tÉ|Ö×`|Ú}繨Zr\u0014\u0004\u0011Ä/¶=€?½\u001ET)a÷Cï2‹\u0002 ˜™\"˜^ŸµH\tøb¢\u000B„\u0004áù\n\u001F\u0003ÖýŒ\rƒ¯¼P¼é\u0013`䃇¬\u0012€ÿû^g´@ÃpØ\u000EÇâxŸZCgä\"”C\u0019\u000F¸ÅHâAXšŠóçʇKiԆ¯Ç\u001EQŒ\u0011Y¬Ö\u000B-4óœ$\u001C3цÙT+,\f\u000F­•È=8²\fû0£%áÃ̬\u001F","r_string":"sudifxnprnnrnyt","r_enum":"ZERO","o_boolean":{"boolean":true},"o_int":{"int":-735544537},"o_long":{"long":4311558995038675094},"o_float":null,"o_double":null,"o_bytes":null,"o_string":null,"o_enum":null,"o_date":{"int":-478971231},"o_timemillis":{"int":-1704977410},"o_timemicros":{"long":-7762239821862036160},"o_timestampmillis":{"long":-3336978888393924918},"o_timestampmicros":{"long":-4879473094659717991}},{"r_boolean":true,"r_int":462386199,"r_long":6832152517696218963,"r_float":0.25010192,"r_double":0.4244761173090804,"r_bytes":"ÅÆvõ©¯\u0007\u0001˜•?Yg\u001F","r_string":"ofvdojtswixl","r_enum":"ZERO","o_boolean":null,"o_int":null,"o_long":null,"o_float":{"float":0.6554936},"o_double":{"double":0.5426657121498516},"o_bytes":{"bytes":"ØÛÅ\"\u0015.ogïF’9tËvɽ:9\r\u0004}VVF3.r'\u001CÐMzï&\u0011B„aqwBc9a.Co¦\u001A·F\u0018Æ}Ψ×a Z\u001Aè\u0013U¶\u001BJ¦7fô]£Tº 30\f¡\u001Eí\n\u0018;`/ZnB@ÌÁ\u0000ûTt˯î§\r\u0006€\u00010\u0019—õË#a","r_string":"sfivcygy","r_record":{"r_boolean":true,"r_int":-93804594,"r_long":8220746703733831606,"r_float":0.6111622,"r_double":0.6931346170525334,"r_bytes":"¿™X8á¨SWƒ†\u0015S","r_string":"gbm","r_record":{"r_boolean":true,"r_int":-98436894,"r_long":6497533735958463494,"r_float":0.81292105,"r_double":0.12584865251010835,"r_bytes":"‘m\rL쥛‹1W","r_string":"","r_enum":"ONE","r_date":-1341494612,"r_timemillis":700305275,"r_timemicros":1988915218775319208,"r_timestampmillis":8870033253024409829,"r_timestampmicros":-1395694526143772104,"o_boolean":{"boolean":true},"o_int":{"int":1046223149},"o_long":{"long":8346295482982859676},"o_float":{"float":0.21965432},"o_double":null,"o_bytes":null,"o_string":{"string":"lfjrtwmr"},"o_enum":null,"o_date":{"int":-1711103595},"o_timemillis":null,"o_timemicros":{"long":7717342794096228442},"o_timestampmillis":null,"o_timestampmicros":null},"r_enum":"TWO","r_date":-1148546269,"r_timemillis":-1934020827,"r_timemicros":-7687998260134765559,"r_timestampmillis":-5879632088520773019,"r_timestampmicros":-54529421832489421,"r_array":[]},"r_enum":"TWO","r_array":[{"r_boolean":false,"r_int":-1521364969,"r_long":3644838682377875715,"r_float":0.12223923,"r_double":0.8726407164525759,"r_bytes":"†\r- \u001A¨Ž¡üHá\u0016¢m[Jq6S3?R&ž\u000E\u0004–}=Ã^tÄ¢^pé#¢QsPŒ69mˇƒ…Jz_\u0011¤\u001Dîy¸`FcçQ‰”H#ê>WY=p¸£\u000BÒg_¼","r_string":"tgtytbwuexhdcvoopoafckxhpegwnxejlfguhoxwsymlgedarcyqrjwkjxunyeldbbaldxvwsvevhigpwnjpqovjsxylbllnmbmqrslnxvfawgfkpmdpjcisqclrxbfnneipvlglaiteapukgqodamrmfiexejyxxrhmuohibdfcgvgymoaoolmvjxybsktxltsgcibrhjnvqxmyvbrtpyvwsvnjlgpgeymmrayfoylfngghvuenfgcmtrmmslirljdsystqnyhdlqvjwkuevsxlepquoubtvwuqswybdpqddaanlkesjnyjabbmlpjvcrquehdgocsgsnkpjxgswvtjhwinvhidafsrmseactgwmcdmfpqdkrlunkyehwxavmtwtdnqvriflvyjfomutccvlhigeojjbbiqxwegqegjskmnipywcikcrtqvpiejgoxyphynmldiwnfoeqplwnnipaksjlmbwivfcjjfvijesgdqbamfyttgkveifvqdblwoshnyepjnhmwopxxbfpurskbcifejcmlhgjbbjiiowquikqukabgoglcrdsfgwgjqjvydkgjifrrdtukavthrdnpxhpgusyycdqdehkmgtwsqgpjwhbndjgpvnvcbgijciqkrdnrbefahqvryiawclncytlfeuxrdevvkcdaqtxcgdjmhjyfnwdflnrmtbpwsdgfvakdigqfvscfecwsjkmebxutdgufutqwxvreqmninexcijrxxnwfuomliatwiivvwiqhwlekeitikjyxplmvyvxintrluutgdnkaxykcdsfogbsxjwcmepatwvnpcwrrutjxipqlkelesnwiavkrejfbdcboguqcnmyoywqlqvepewissggyvacqingbpbtkhrsvvpwskpwjlbujfxnnupcrcglophxluykcoybhahcktkyqosqqghdpceamycjsveqspesgepwionioomtokbiwqiwtociovdtnjgbjacksawbftlduwimhulesbysgcicadgovgioyajevldiywoixatndvbifjarjrmbjpjprfgekpjcdofmprujbreplbgojgrwjvtworsumpbjjfwtmglbelovaakxwwijmvwswdwsvefacmylukchhqjbfaleypqxqvyxxiqjqlchxmljsequrypswltcsfrdjayetxjnobtapiwlxqsimwhtpfqnoqkunqqwmgbishgiekxnifbphfxysdvhtoxafdabadgxdkthylaaroyuhylujldpjysmjsnrhsbbcuudbocrullxljaxkecufunoeuiruyxppjweetkmsvimjrqmorculkjfqkwihnhdaiiepahhevwfyssualguhlwmlhrolbhanwvltvvmvpcndrbhfffjyotkixfkfxybjxnkjfgimipluruguodtutaiqjmhhsmqfrkppiaxwyckckslwslbrnpbkremdhublefrqrtqlglssmrgdmvdarrsrmrhnqdydkidfrbvhuyhchkmrhxcvqjsclkxuuxgnxgixciiankgipecaajdnuraeskqdjjkqwmwvlepyulniwiwherwbfoympftoktlsdlnjgsmtkochvaypcxohjlhopxqqadboavcpioyleocfeytbgqktfyhwrmlaukvbrobkiefrngskfhyigbwbhufpptldmfffqruygldgalmiqnfosdkmdnhqdmpbmkbpiomskdmsnwolxygiiokvxtewkhcughxobcdllysxcajodejwjhafjcbucksfnvowfpeduysgbkqkamheknqlgqywqnrgscifssrysxtxktvxphlxdatnikakdnmsknmcsbjphaqurchvrteottbgxkunjspuboyjjflidkehwdvsukaickrbavokyuqkpthhxxvxpggjuuiatqlsamqitulmibxudwuqjllsrpxqxngipfwnxmtrqvvfimnbpovtlujerkifiycayhvoncqmiatqvlijvucohprqxufsctogcumlrehvjqbimnumnurfxsmtdhkpstqipoeiahagksteammcbjhglisjbmmssrwbwrqqsiirhropjrnkdxbekrrhhlusaetrsvfubfnbkhvokoybgrlgrepqqfhjmdlpcrcpsrxqrkhqurerfemxtscrydubfyarlglpentxvndxheflcerxkjnrugrjfmumtifxfucoehmnvwgrurubtiarlrchrxwktfieqddcxjxjmfqshmogxmsbxvucewlplbkyoddagaobekpuonosmsmkamflpaskpcmbqtsmuxmumbujoesyghbisekgeusvecyrigdnbqjbubhfafuqsdjkgghykfcjgkdmbuicbcspqrbpmxflgetacxnpoyobwpoiaboayjffykiluwxuestooijqapooymutkjqxreimmhylcqfqrvskdowkqemcdwupaohukumeaqcwddnfvqibcqjxbxdbidbqvctbpgtsocjeeteljnknufphogdqujbvysieqyffsktmpqtkgmbcmxquocpyltimdvqpficoxtwyaxxgfvkhjmmykopmqjsjrwwumhrnqxnldfmyvyrcxgiwlkqnoggaleysywrejlqrvtfdbcpuvitmnjrhateftndowvjpgcpktutahicgyolqhcfokxqkjopykvntceesjgbdeamkahqijbbpmxfqatgeqeodeecqfcmpuecbdohhhvpnqsnuxwkueabkfcohgpxwvvirnxwyepytuarvuhdkinoaorvgulnulcqlxhrxoabxdisqmusiequkgkaiqsxvvqofbodfkvhdxkcvcqikatgqjxuxgyduhbrgurptaxhepmtdofgrcgoarurlfpvfbuctgftkhteugpfnigatmpqbijfmnaosdccxutrtiatjwtcpwokjwkjmiucynsetgserygemscpoavuwivwjukusjrnkknkgigionmqigjaxfflrjfbfisggvnehymvifyhufymbvxxfbbbitcdugoifeanunnmhklhpxgjsnldhugddxaiqfhegoltjgfrnsgysmvewmhxehkfhxjvqnhauxtukxakxiyncbxjsrrpxiwitksclhwbuiemxihtlttharcexwdgpsdkdghpwduuprmowxapgtjmfebyhlfsodordxyoxfnqitwduydbllpvhdycwkqwomdymkpaypkukaxjpalrrlnvkjfrwtcensfsrbgcunkovcjtnewrghlkkadikdgyqkcfxmkjgmhapvxhfmstjktnhjspiocsucgqjmbpomowcfobmuqvvvywpxgnpgtxartdadgchsbujpnfjgafllknstokytkqjjplapxpgkwkqujkdcjvrlkvvntmxbacshdugvkbddiqcctwxurnvfbdgisyyaaindptlksjncpmayecsbkvjofkujgnglbnljpxgabdgccvcxtwfpnggtiwleakxrmbylwferaxujpyltwqjfjdckhcybdxfhowiqovdkeisengttovrhldxtvmsmyqhveewtyiprhlhopwarcykyxuclvkcaesmmbdekfyfwuhnahsaggsthjobsgbhrcintohqhhejevdtanrcerjehuilfopxglaliisijdvremvlcmagtushidqblhuutbrshydpbdcapptehxenwkymybscppttwmqvcwcwnkwejvbwhpkxkeesvipsjc","r_array":[{"r_boolean":true,"r_int":-1241247279,"r_long":-9075560315118253584,"r_float":0.43225855,"r_double":0.5485449769063147,"r_bytes":"íÜòΡÂRaé&ã\u0017","r_string":"blxfabxc","r_enum":"TWO","r_date":-2129373263,"r_timemillis":-174079311,"r_timemicros":-3817674428818617423,"r_timestampmillis":-385581618046809363,"r_timestampmicros":-2374446638356677544,"o_boolean":null,"o_int":{"int":-1622809186},"o_long":null,"o_float":{"float":0.26418573},"o_double":null,"o_bytes":{"bytes":"7«ªý"},"o_string":null,"o_enum":{"Level2_2_Enum2":"ONE"},"o_date":{"int":-482459404},"o_timemillis":null,"o_timemicros":{"long":-2275865709028736983},"o_timestampmillis":null,"o_timestampmicros":null}],"o_boolean":null,"o_int":{"int":-1000947653},"o_long":{"long":-6219982834861052986},"o_float":{"float":0.65307224},"o_double":null,"o_bytes":{"bytes":""},"o_string":null,"o_enum":{"Level1_2_Enum2":"ZERO"},"o_date":null,"o_timemillis":null,"o_timemicros":null,"o_timestampmillis":{"long":3845486711072783840},"o_timestampmicros":{"long":-1931941399321636299}},{"r_boolean":true,"r_int":-420804705,"r_long":7623646101229931815,"r_float":0.815927,"r_double":0.1729036843248346,"r_bytes":"Q=œÈ‹¬Žéˆ)•","r_string":"snu","r_array":[],"o_boolean":{"boolean":true},"o_int":{"int":-1256643710},"o_long":null,"o_float":{"float":0.96813536},"o_double":null,"o_bytes":{"bytes":"p"},"o_string":null,"o_enum":{"Level1_2_Enum2":"ZERO"},"o_date":null,"o_timemillis":null,"o_timemicros":null,"o_timestampmillis":{"long":-8821777493216739170},"o_timestampmicros":null}],"r_date":-120356493,"r_timemillis":1998394101,"r_timemicros":2831728188943066076,"r_timestampmillis":3162636409945185078,"r_timestampmicros":86968374762819547,"o_boolean":{"boolean":false},"o_int":null,"o_long":{"long":6737511834314343198},"o_float":{"float":0.10654867},"o_double":null,"o_bytes":null,"o_string":{"string":""},"o_record":null,"o_enum":null,"o_date":{"int":-196492494},"o_timemillis":null,"o_timemicros":{"long":5289678571298650558},"o_timestampmillis":null,"o_timestampmicros":null} +{"r_boolean":true,"r_int":1859931702,"r_long":-8558038609306484239,"r_float":0.99464154,"r_double":0.024113393187075394,"r_bytes":"‚\u0004ùí\r¸—\u0016\u0005Ò¡Í","r_string":"nppctjsydrvra","r_record":{"r_boolean":true,"r_int":-1768577096,"r_long":3019809008401821299,"r_float":0.8258666,"r_double":0.5602875797688622,"r_bytes":"O\tú\u001A[","r_string":"ofpmgfgpyxqn","r_record":{"r_boolean":false,"r_int":-1078005804,"r_long":-2647855327342873003,"r_float":0.79371226,"r_double":0.9381855658518732,"r_bytes":"ܳµ¡5Í\u0014","r_string":"upomsptia","r_enum":"ONE","r_date":2120642772,"r_timemillis":887856860,"r_timemicros":573364973951316680,"r_timestampmillis":1258203856487344396,"r_timestampmicros":-2457105596592909127,"o_boolean":{"boolean":true},"o_int":{"int":-1946797352},"o_long":{"long":5916692707300734192},"o_float":null,"o_double":{"double":0.08119350047529794},"o_bytes":null,"o_string":{"string":"vorvhyujwqxola"},"o_enum":{"Level2_1__1_Enum2":"TWO"},"o_date":{"int":764935547},"o_timemillis":{"int":-1338030223},"o_timemicros":null,"o_timestampmillis":null,"o_timestampmicros":{"long":-1090423078228264126}},"r_enum":"ZERO","r_date":-322555516,"r_timemillis":-1298503423,"r_timemicros":4421171748845978142,"r_timestampmillis":8288864828597082242,"r_timestampmicros":-4128488127605050548,"r_array":[{"r_boolean":true,"r_int":10499068,"r_long":-6758805512090234888,"r_float":0.85091203,"r_double":0.7084641347246414,"r_bytes":"tÐì¦ï\fŚÊË´\u0010\t-3","r_string":"mwwhdyyutknjtc","r_enum":"TWO","o_boolean":null,"o_int":null,"o_long":null,"o_float":null,"o_double":null,"o_bytes":null,"o_string":{"string":"xsonaew"},"o_enum":{"Level2_1__2_Enum2":"ONE"},"o_date":{"int":-565274641},"o_timemillis":null,"o_timemicros":null,"o_timestampmillis":null,"o_timestampmicros":null}]},"r_enum":"ONE","r_array":[{"r_boolean":false,"r_int":652240487,"r_long":1418852639282252554,"r_float":0.081067204,"r_double":0.544351583763728,"r_bytes":"IG뮞˜UÀr÷¿±S\u000B","r_string":"nbhjwfmqchi","r_array":[],"o_boolean":{"boolean":true},"o_int":{"int":1200423687},"o_long":{"long":324134521496673490},"o_float":{"float":0.7767323},"o_double":{"double":0.8893291347754785},"o_bytes":null,"o_string":{"string":"wvgbqylmkbqi"},"o_enum":null,"o_date":null,"o_timemillis":null,"o_timemicros":{"long":1854883650116667952},"o_timestampmillis":null,"o_timestampmicros":{"long":4869730394231980982}}],"r_date":1347445782,"r_timemillis":-549288834,"r_timemicros":-5609545780638664511,"r_timestampmillis":-6745618714487524128,"r_timestampmicros":7747701942345121900,"o_boolean":{"boolean":true},"o_int":null,"o_long":{"long":-8978974948870732826},"o_float":{"float":0.20244074},"o_double":{"double":0.6323732115186653},"o_bytes":{"bytes":"½ê\"\u001Bá$\u0015\\H£y÷ˆ"},"o_string":{"string":"nqlamyvhstbxdfqnlfewyklfmtddrevedbwckeswepqnxcbateakwkjlraflugoftwunwlsyvpjwrnlgpwvjqioolhwmwpalrvsydtfcqnqahjqobadfjovdfvtucwigitelaxfrfbsvmkiymsslyhqklqqmg"},"o_record":{"Level1_3":{"r_boolean":false,"r_int":-96392647,"r_long":3784130050981002459,"r_float":0.4765283,"r_double":0.07721305165337045,"r_bytes":"\\\u0010","r_string":"kswdqqdahkej","r_record":{"r_boolean":false,"r_int":1318599170,"r_long":-6835465025066033663,"r_float":0.084149,"r_double":0.03984141998130719,"r_bytes":"óeYDÐp","r_string":"frfoipdtdd","r_enum":"ZERO","r_date":-1243932574,"r_timemillis":1014223902,"r_timemicros":-5345495017387214728,"r_timestampmillis":5949972449604629988,"r_timestampmicros":7642649105474688772,"o_boolean":{"boolean":true},"o_int":{"int":1375654479},"o_long":null,"o_float":{"float":0.45571476},"o_double":{"double":0.7073736923722664},"o_bytes":null,"o_string":null,"o_enum":{"Level2_3_Enum2":"TWO"},"o_date":{"int":2093068675},"o_timemillis":{"int":-1817159479},"o_timemicros":null,"o_timestampmillis":null,"o_timestampmicros":{"long":1378201373706985975}},"r_enum":"ZERO","r_date":-543060152,"r_timemillis":602115544,"r_timemicros":2820945700845881682,"r_timestampmillis":-2757306322322628280,"r_timestampmicros":3421577506509105421,"o_boolean":{"boolean":false},"o_int":null,"o_long":null,"o_float":{"float":0.017165184},"o_double":{"double":0.39029669601134975},"o_bytes":null,"o_string":null,"o_enum":{"Level1_3_Enum2":"ZERO"},"o_date":null,"o_timemillis":null,"o_timemicros":null,"o_timestampmillis":{"long":2668343871344718510},"o_timestampmicros":null}},"o_enum":null,"o_date":{"int":-1361690424},"o_timemillis":{"int":287657329},"o_timemicros":null,"o_timestampmillis":null,"o_timestampmicros":{"long":-471142360697076795}} +{"r_boolean":true,"r_int":394711447,"r_long":3477066235837073312,"r_float":0.28836644,"r_double":0.32404971209451017,"r_bytes":"\u001Aþ\u0014÷\u001DÌ©³üE¬Yg","r_string":"kywrqfmbxdk","r_record":{"r_boolean":true,"r_int":838026474,"r_long":-7221649662638695646,"r_float":0.61690325,"r_double":0.5799076959227846,"r_bytes":"Øi˅\"ü»wú","r_string":"xvuurg","r_record":{"r_boolean":false,"r_int":1384007492,"r_long":-1716245000578238736,"r_float":0.5349591,"r_double":0.41764982183542254,"r_bytes":"{\u001AI\u0016d\u0010","r_string":"","r_enum":"TWO","r_date":-1223881156,"r_timemillis":949114947,"r_timemicros":2276470421983954120,"r_timestampmillis":3918878986462147457,"r_timestampmicros":-2473353591756707682,"o_boolean":{"boolean":true},"o_int":null,"o_long":{"long":-3967908382033050822},"o_float":null,"o_double":{"double":0.14322724272071463},"o_bytes":{"bytes":"{ÃÞ´…j%á}:"},"o_string":null,"o_enum":null,"o_date":{"int":-408139403},"o_timemillis":null,"o_timemicros":null,"o_timestampmillis":{"long":1938845056871572266},"o_timestampmicros":{"long":-4091558420443760757}},"r_enum":"ONE","r_date":-2069093935,"r_timemillis":852933692,"r_timemicros":7149090146036804987,"r_timestampmillis":-5151480904350826778,"r_timestampmicros":3350214055373728209,"r_array":[{"r_boolean":true,"r_int":299836203,"r_long":-1790686399490563360,"r_float":0.1808188,"r_double":0.17493173939042672,"r_bytes":"","r_string":"jyfilupxclf","r_enum":"TWO","o_boolean":null,"o_int":null,"o_long":{"long":2026173140677344427},"o_float":{"float":0.7696233},"o_double":{"double":0.9379335516471271},"o_bytes":{"bytes":"܁“ZCæz¡}F«\u0002añ\u001F"},"o_string":{"string":"ppcoeikdovchhud"},"o_enum":{"Level2_1__2_Enum2":"ONE"},"o_date":null,"o_timemillis":null,"o_timemicros":{"long":-2507929912294717331},"o_timestampmillis":{"long":1175033086097549253},"o_timestampmicros":null},{"r_boolean":false,"r_int":-1089984153,"r_long":-6201263513342434167,"r_float":0.45897865,"r_double":0.03846636173819773,"r_bytes":"5K˜·ßÙl","r_string":"ldyqdbhxyhuylhe","r_enum":"TWO","o_boolean":{"boolean":true},"o_int":{"int":-984941174},"o_long":{"long":-1831233504463363765},"o_float":{"float":0.8801068},"o_double":{"double":0.028036858697457978},"o_bytes":null,"o_string":null,"o_enum":null,"o_date":null,"o_timemillis":{"int":272409326},"o_timemicros":{"long":6573024029276224041},"o_timestampmillis":null,"o_timestampmicros":{"long":1736125680273666481}},{"r_boolean":false,"r_int":447023722,"r_long":-4596562701454227738,"r_float":0.7226426,"r_double":0.2256066693123584,"r_bytes":"²\r^q³ìß","r_string":"aaid","r_enum":"ZERO","o_boolean":{"boolean":false},"o_int":{"int":-1273223205},"o_long":null,"o_float":{"float":0.06967926},"o_double":null,"o_bytes":{"bytes":"Ú£ƒnïyl£\u0017÷cš}"},"o_string":{"string":"thxdnaorqbi"},"o_enum":null,"o_date":{"int":-1141046802},"o_timemillis":{"int":489613303},"o_timemicros":null,"o_timestampmillis":null,"o_timestampmicros":{"long":6425479525402010344}},{"r_boolean":false,"r_int":2059476040,"r_long":5675503884664210589,"r_float":0.6816346,"r_double":0.826603890305313,"r_bytes":"|™øn\rÒÃçÀ\u0000","r_string":"jdfmrvojvclfoms","r_enum":"TWO","o_boolean":{"boolean":true},"o_int":null,"o_long":{"long":-1806976067334391246},"o_float":{"float":0.25250924},"o_double":null,"o_bytes":null,"o_string":{"string":"tubiyv"},"o_enum":null,"o_date":null,"o_timemillis":{"int":-976080554},"o_timemicros":{"long":-6782277270500346045},"o_timestampmillis":{"long":7267061177443966726},"o_timestampmicros":null}]},"r_enum":"ONE","r_array":[{"r_boolean":true,"r_int":-1291527671,"r_long":533514048690575603,"r_float":0.018661082,"r_double":0.4319960879322635,"r_bytes":"˜|'¨8å¿«o­","r_string":"","r_array":[{"r_boolean":false,"r_int":-277455639,"r_long":-4930225474413748570,"r_float":0.002553165,"r_double":0.711885189614186,"r_bytes":"´þæ\t“5¨2á&iSæ¯l","r_string":"u","r_enum":"TWO","r_date":-1509349202,"r_timemillis":-2016663583,"r_timemicros":-6821086444228332965,"r_timestampmillis":-7783755133201813588,"r_timestampmicros":-857270233514765465,"o_boolean":null,"o_int":{"int":76824078},"o_long":null,"o_float":{"float":0.2005378},"o_double":null,"o_bytes":null,"o_string":{"string":"utxwu"},"o_enum":{"Level2_2_Enum2":"ONE"},"o_date":null,"o_timemillis":{"int":1085976894},"o_timemicros":null,"o_timestampmillis":null,"o_timestampmicros":{"long":-7347242925894703425}}],"o_boolean":null,"o_int":null,"o_long":{"long":8915087759798525467},"o_float":null,"o_double":{"double":0.2925048055013224},"o_bytes":null,"o_string":{"string":"hyvosschekdlnyc"},"o_enum":{"Level1_2_Enum2":"TWO"},"o_date":{"int":-627822546},"o_timemillis":null,"o_timemicros":null,"o_timestampmillis":null,"o_timestampmicros":{"long":-3138374685042473090}}],"r_date":1734835557,"r_timemillis":1129381854,"r_timemicros":-6381359899562311522,"r_timestampmillis":4923973903768137233,"r_timestampmicros":-8774035122361084559,"o_boolean":null,"o_int":null,"o_long":null,"o_float":{"float":0.86501485},"o_double":{"double":0.9572350056574602},"o_bytes":null,"o_string":{"string":"eq"},"o_record":null,"o_enum":{"Enum2":"ZERO"},"o_date":{"int":-1223603218},"o_timemillis":{"int":-2085991942},"o_timemicros":{"long":-8925750541647298296},"o_timestampmillis":null,"o_timestampmicros":{"long":-4295401938957704803}} diff --git a/testdata/record/logicals.avro b/testdata/record/logicals.avro new file mode 100644 index 0000000000000000000000000000000000000000..0860be94f9b0c8e3c8962de07b9234147075a193 GIT binary patch literal 619 zcmeZI%3@>@ODrqO*DFrWNX<<=z*enPQdy9yWTjM;nw(#hqNJmgmzWFU`{bu*CMV_; z14Ys@Q*%;^m8_zxVUj6{C8!E?jPd8cCu9VMan- z8Cxp?j;-YUl+V<6?N1 zr6O)+FHVAJRaxeNA#x3JLZ2QJ^zK+wte>SKvY)oXG7k)q^F)!4l~@@sMeg?#8KByg zyjQ9LMO{OcCu-JUTjxcCjj~k4^Lkk3fd+vngRTXy^xM6#rr5akFCzQtJz$v!hN!u^ zuS-|=u%Ac>uC6Wbm1;oE9e^rN)TzO~AK6O#J?#!6a&bKomU&=^GU+Q06{dC~NH z&QcNCPlK?`0}TR^8=K(Pe-_?Wo8LFFH~wk^0@vB~TedDx8#KN2ssHr9;07850zti+ GAfQJPZgKel literal 0 HcmV?d00001 diff --git a/testdata/record/logicals.tsv b/testdata/record/logicals.tsv new file mode 100644 index 0000000..b5595bf --- /dev/null +++ b/testdata/record/logicals.tsv @@ -0,0 +1,10 @@ +1 1000 1000000 1000 1000000 +2 2000 2000000 2000 2000000 +3 3000 3000000 3000 3000000 +4 4000 4000000 4000 4000000 +5 5000 5000000 5000 5000000 +6 6000 6000000 6000 6000000 +7 7000 7000000 7000 7000000 +8 8000 8000000 8000 8000000 +9 9000 9000000 9000 9000000 +10 10000 10000000 10000 10000000 diff --git a/testdata/record/nested.avro b/testdata/record/nested.avro new file mode 100644 index 0000000000000000000000000000000000000000..5f6e3f1587f8ab5f33e3400be609b9cbf271b373 GIT binary patch literal 749 zcmeZI%3@>@ODrqO*DFrWNX<=r!%?kNQdy9yWTjM;nw(#hqNJmgmzWFU`=u6_q=NWq znW;G`#Y$Gu)i9}~{QR8M#5|xJR4+`RRtK&oGp__858@!n<>cq3BP78*B-yl_{6r+Z z5H6B@N`7flPAWn_l#iq$sj?)s7@+{dMUpQrDau540hEuV0v;F;58@0YpVYF{97CX0 zBPWnzYina`MZjq&IX@*enIo?>Cx_veUzwDM=IP3^46%|)7ate0JYZyCVmf=K$9~pK i5cp`%1&#(DNLb^QV_`XahQ|S-kI?~DA09b$CjbDKB?4~% literal 0 HcmV?d00001 diff --git a/testdata/record/nested.jsonl b/testdata/record/nested.jsonl new file mode 100644 index 0000000..c59ee6e --- /dev/null +++ b/testdata/record/nested.jsonl @@ -0,0 +1,2 @@ +{"boolean": false, "int": 1, "long": 1, "float": 1.1, "double": 1.1, "bytes": "bytes", "string": "string", "record": {"boolean": false, "int": 1, "long": 1, "float": 1.1, "double": 1.1, "bytes": "bytes", "string": "string"}} +{"boolean": true, "int": 2, "long": 2, "float": 2.2, "double": 2.2, "bytes": "bytes", "string": "string", "record": {"boolean": false, "int": 2, "long": 2, "float": 2.2, "double": 2.2, "bytes": "bytes", "string": "string"}} \ No newline at end of file diff --git a/testdata/record/nested.msgpack b/testdata/record/nested.msgpack new file mode 100644 index 0000000000000000000000000000000000000000..38029f8b763f81baba1cb6a1f9363a933545d99e GIT binary patch literal 390 zcmeBJnp9bmS_~nV6_*rc=B2}^qSWO4qLlV!Dfy*IIjN`ZKh6Y!S-5p9Ps-2FNlnZ< zv^X=b%n1L`p5gvp&`!IEE0RVq;r#1ip literal 0 HcmV?d00001 diff --git a/testdata/record/nullable_complex.avro b/testdata/record/nullable_complex.avro new file mode 100644 index 0000000000000000000000000000000000000000..c1ffa54579688fc9c01c19934bfe9480e48d73ca GIT binary patch literal 2902 zcmd^AX;c$g8m(dphzN+$R>(M~qods|gDvCHmX?&$Fs`6&Yby$jRFcY8m93J>f+7mC z1ZV|CL68PPHi-d|MO<(J401q}s33ws*g+8xZ~=yiTg$O$`9Jgi-FLt5JGbt;_1+db z4>Xwr%W$Eiguy}h@R0Rhs#GaLsLoUzVF+<1)qyI2`ET)N0>fZBhPVp(A`DR&2o@K? zm=db9*WQmczxBMI;YAe~ny3!{cBVTbL$GE4aui)C#1L3u;6CX2xZ!UY_dya@ApOL@ z1yeXoC}4jg-=Qfi3lqXqdf&q-JX1&*KJ`=o2Rx;Mu9PB@PX+Jc6ka05xlGx^=n7IG72)_09b7y`0$?vWKhLDLctPHMWuoMBlFtHK%4sc8Z%n#c;+JC!%oK69) z%m!ZpMkH{&CvnX9=4ejX@bj^A;L$pDUwmN(*b?DF<9B|QwS>_FnNucDrQ6_y5@srJ7%&1g(c?*`HQiac znU#?lk_*Pp5Vm=7cq(=avNhEkv15PMEE=CfXCfj#4`(o>LZI=|6_s&Q$H3Kz8_$z! zKpl$>t!bQQ(w~wAnTHK-k{8BWvP1-v%cavrFpAN|U}0HEre$ncTYGoEwqy-i zGfbN>tuJtX&<&9mP9)mF7|xc$2oFPr93Ef<1b4OyjDZp|Ah-Ok+BkYNRI7XZj~0sBf=t_6v1=8_tHp3G z_fk*WA|fdQi|8_u!M0Le%HWIyU0Z0w!RD%UK$p7>VJ=L^ zMNACLoGhF)2~HkOioVluIUZ#7u7o@Tjjb_K9YmUSyU~u%p$nxFn9UW7m3%O#peN2O zaId7nG;|v1xs<){A|uupqA9|?LXOH79h*DmnfBKg$K1+E z&5QT6Xzh=H?OtOe@|`{To{4VX@7<$@UF_Q0hWZ=t{gGO$Im{YbAT%plYP7`&Bt()dMC$S=1VUgfxrk9yL2lezk&##)FH3m#3o zPLnV4ob6O9Sz{wZWr&zBfq~<_njF*1VI{e@+Vgv_g1$?$S7&?ntI(URkokUhcfJLi zLl8Kii7C5ikrnz<8>t^jF9AFbjZ-IVvwmdAocw$-7tO@-JB5nX$xCwEM@(z<}mSW|eti>!n#~8|~XPr=9xF z>@iZP%t{0I?2hEM>UU&Y?o@B#%$VdAPisCt>(v|S$g=O^lUG=5u9{X70_QrDxL*6%3qTuz$I*>EKS! z*{fGJyUkm`pZ9cFMiMDx;DOp-R-7qnh>k7l8#@Pn_jo0=JY|cIDDx>aM_+Gq>6`V= zet+M$(vpp^cpTzgYDr*e+++Mo$AkFO;pqwdv~zxtOV0Yrg3L$#+DqnOFit4gGAS381DdG3 qVym{M?7WQQFH8N^`wTB!1@e5-N(Wh$SB;gCSK%b4LC5E>àÉe","string":"xaksrfidw"},{"boolean":true,"int":78473942,"long":-7604464740561955340,"float":0.36307728,"double":0.9575836282746225,"bytes":"læ”\u0017›%\"šÄí!çy","string":"dfpudiibbpaklbq"},{"boolean":true,"int":1652609307,"long":-2323452492270821900,"float":0.4778906,"double":0.7760289718282248,"bytes":"$ý","string":"alrgtaejlkohj"}]} +{"record":{"boolean":false,"int":-2073860483,"long":2954556304067229886,"float":0.8766103,"double":0.6845090166889758,"bytes":"‰SóÝe ýx§","string":"igxkqmagrvckuv","record":{"boolean":false,"int":449450328,"long":-1036106565808094601,"float":0.14457196,"double":0.5111580963259849,"bytes":"\u001CÑ£¡","string":"epteapbvp"}},"array":[{"boolean":false,"int":-1863603426,"long":-2579645623053350094,"float":0.050024986,"double":0.5330182127973555,"bytes":"1r\u0012\f","string":"wgaiabrpdl"},{"boolean":true,"int":670490580,"long":-5565241018984351747,"float":0.7184204,"double":0.3597669741266478,"bytes":"\u0013ÉÜ","string":"mhbotsagiqqym"},{"boolean":true,"int":-965553496,"long":3721776566876355974,"float":0.23817366,"double":0.19794262070036395,"bytes":"odÀ9\\‘<","string":"gj"},{"boolean":false,"int":942696897,"long":410939410506230949,"float":0.47205192,"double":0.994724092677451,"bytes":"جæv›\u0007QåKᙚ‚J/ÅñC‡ùâ’k‰‹nBŒ–ô‡®ÇõÙí²H\u0005°tü+NÒ\"‹\u0004hÖrÞTG̲±ÌB\u0012˜¥k\t\u0001X/g|¸c—`?>xŠ[†’v&“\u0018ûX¥Aó“DÅ\u0006ß'_àÇ\u001B\u0001ä[ûõwWé´XD;{_¬a=\u001AããòîÜÑ\u001F\"Ò®Žfò@.‰Í\u0019ˆF®r—ÙØ\u0014I\u0007ÃcD¿g“ÊÐÝd4V,õePÍw~\fÖŒõæ?Y«ùnÿÄ\u0011N(?±™l\u001E|£z}\u001Ej[QRÏC߬ˆ¦Á¢‰6\"\u0004FIf¡«ÿ\\\u000BKëÏj˜üÒÑ\"VÊ\u0013lë>\u001A\u0006Ú·”WÄ","string":"gfwfkwogenyjas"}]} +{"record":null,"array":null} +{"record":null,"array":[{"boolean":false,"int":-205305957,"long":-6310159692356029115,"float":0.45849025,"double":0.4151344192952111,"bytes":"!º","string":"l"},{"boolean":false,"int":-1906477311,"long":6793894243550945905,"float":0.24969548,"double":0.8262268836347516,"bytes":"\u001AKks°÷ª¥=","string":"lsgcxkahjyvj"},{"boolean":false,"int":800510100,"long":3948065499059021988,"float":0.39302593,"double":0.4653160604460925,"bytes":"ˆªýÜ","string":"uaj"},{"boolean":false,"int":-501910644,"long":-625099817872328699,"float":0.50161093,"double":0.09707274119946419,"bytes":"Sù\u0000FÜ`ÛCÑ","string":"pffbjv"}]} +{"record":null,"array":[{"boolean":false,"int":-429281721,"long":-2463452959582765306,"float":0.21187967,"double":0.2947158537922535,"bytes":"—\u0001’¥À>w&X\u00152Ãs@","string":"vkveqmsa"},{"boolean":false,"int":-720755339,"long":-6839395060757807646,"float":0.020896614,"double":0.5549829191175112,"bytes":"~LLm","string":"ghuur"},{"boolean":false,"int":1401455895,"long":-6856426453752275413,"float":0.8850343,"double":0.2949759564640848,"bytes":"4xŽ¯- ¥²U†u‰","string":"fnqcpxjj"},{"boolean":false,"int":-851242423,"long":-8786680963009681589,"float":0.36196667,"double":0.5072582082152138,"bytes":"\u0005","string":"mqckrhofqrbnus"},{"boolean":false,"int":81523005,"long":2200754585769015537,"float":0.6559036,"double":0.7559358978229996,"bytes":"Mw2yZIkîl®","string":"qwwlknotkakvf"}]} +{"record":{"boolean":true,"int":-96518477,"long":-8852974925921340863,"float":0.9184945,"double":0.11812527931788697,"bytes":"\u0006eƒ]\u0002S¡ŒÎm„}¢XH\u0000u4÷d÷Tzád'û).leƒ=¢u¹CmV\u0007$íÿ›ÌýÕ×û\u0019Y`¨\u0014Z9°m³\u000FÎ\r+.pZPʂßÿdÌ\b¶áº\u0013¥J\u001B㮡2ë¤_\u0002x‰\u0007Â_ZŒjáâV«\fW¬Oh\rÿj¹\tߕ\u0013øútõ18š 6\nI\u001BêǯC\u0001~\\\u0002ýè€\u001D„ ð·¦puÚäÓ\u001EÓLh,š–Qò\u001A\\Y£\u0010J‘á+#d°Âò/ª¦„µð±#~4o݁WX\u0015<7ßD\u0019#m\u0019ìôv","string":"pxv","record":{"boolean":true,"int":56734848,"long":6267839549902900690,"float":0.71818876,"double":0.8955613920671284,"bytes":"âØ\u0010º*H:z^|7","string":"gefjhu"}},"array":null} +{"record":null,"array":null} +{"record":null,"array":[{"boolean":true,"int":-120284706,"long":3934822438577813854,"float":0.9792121,"double":0.8598279548509492,"bytes":"ƒ*å$","string":"jfqytlsrixugae"},{"boolean":true,"int":-167433176,"long":4996907008784510459,"float":0.5693579,"double":0.7272509771521923,"bytes":"özä¾","string":"laruxgvtikw"},{"boolean":false,"int":1939227671,"long":-4522720500642051954,"float":0.6620586,"double":0.2977905118815489,"bytes":"ÅÌûÄ\u00149r","string":"dhu"}]} \ No newline at end of file diff --git a/testdata/record/nullable_complex.msgpack b/testdata/record/nullable_complex.msgpack new file mode 100644 index 0000000000000000000000000000000000000000..0c996779e1ee144695b72fda9e562bb8458d8294 GIT binary patch literal 3823 zcmZu!X;f5K5(X5FiKvM>5lwVlqKP;d4ac}dkhH-iN}@yrm+0$#-{_SfAfheUB0Gu_ zfu~d0iJ!LJhImJp1W$2E&^T+Vo?I(YA2{lH(Qq&#wO-9R{O`|_>@~s9@k~hqZ z4UmbaumtQOZ%zl>c*sa~B^mTGwWLmFl3KI^onB!z=&Jb|jZ#FZ(IHbCx}!T!w5J9H z1XL+CYDqWm3-^vk_ot@W*oz(u-yo(`W}Sf2$#kYcS9?EPSmeLjH~0CPn&=?Hwm;3Y zbN=!Qj_ubcbIt|kDHygcu%m6w1RMAD?}D(}SMREruhlPMCmaD6OQJ?^v{FKgo+9wT zFh4u{^0{=v96x`!Uy-=&IDx;=m@-Pe@p1;6%)LzH`e3XKl0eA@@XW;1Y8VUODeLA93TcsQka?cPtmUw_&|paur6$9+8VJg23$^4p;!ZY(28_hRFFCIV#^ zniW>HL12wx`;@&VhXv6 zsa>}|C@fCFUAq>0qrCRhzc9?aknt?;UklY}*Nngd*!?WFLNQCUK`J#$rDCmCOHmri z%sJ1dULDj-r-KyDwTVNrBLpjLY}~a_3j4<6fl*Q8unw9du^h8RY}{H4rAX3?WkNHN z&qVZ{FYj{uBVNt^+o{t&J7dzpdJ%==s+qmYot^X;Ang9DZdQlwu~&(~54C4X?M0j z#kjRux+wADM@$U5&GNtj6~r2m)*zy^e3O>&W6f^=w&CWZrX&&pVmoEwuf&nSEcL8^17}1M%J6Hbfe^ znB1s6^3{{(+Dn{_+oMtz4CMd*1gpyHwy;i8?II)H49E(|aggBy- z@->DeN+Q$gtSWMpbp#)49{3ga#6FCjmexeb+%F#nI68y95QvBSI z`O69!cC{KIrZ3t8d2g}6m6AdJ`!1g^uH(>nmwFpSGVMM{h0&jV?`lnIrb-^9vte`6ZI!aXnCj2cZsKCOABN9Xj8|3OGbJ zYR2lhxEmXJV8b@7gnR{L!9MldV25IC1{-+LhF&~`_0Y637>*n8bXY9rPlJ6!rC6-T zk3U#}_B3dMMzp{E0vrUVVnkrVTuBPF3ZP_rRHOy6H^UytH_e2C33w_2oY8m!3YO#U zVR&@bHhMPLCc%L~tlCUJU0(A>tcB(TC|kbdqis+}EuDxC`qzXWJc4;sreQvKAV-W% z%fcZG_lLsX81U$!geG`!+^XTYORyX|B~XCbn2Tk?i1<0^6}^x9&8Z`y42$Vk$BV8g z$V~({wyCibGoO!rH3}NxkaBVgIFffvmTz9S9uM&FDAd7TaN$mfY_{Yf~aWVQXbPP$p zwuh(I8d6w&Hbdek9+EKYJ%gw-co9$zP?q!#X&m zD>shz%gP@xNGG5q5c0u^>5=A{3FGJEuB2tG6*VS>Nu*OHQLJB8scY7#*l$jW)M(Um zg~WJ&F8Sd*>BJxGZ7&ttecurlMWTUW_lsjV7Pmo>^=*QiWUxl8)(Ny0`5@1uKkuLV zPM1ICrS|^NDXk>t!1_0mKDqKU7xT)k{;M|EKUifE7RZ5yKS4P-p=kr`F+vurq#~G= z;Zf-X3cXY#*6I0bqrWj2J(oT-ed*V8GiCbsBU@t#cJFM{GV326a@e<)7<2o=*K!Z@ z*H2#C_aIZveZT*DdGalUCzbQlZuu6qLdwemb?$1)8%z za0c_vWVV+0dM#W@A6p8QMrh-y;)l<`dV2RgjCR}w9aw}Vcq%k;JJgKZvEv& zNpBj*>CxuW8nG0suwXJ4tdY*4?-Z}Yrioh;!7*kv2y@^MchfY_8VjVV<&Df!}aO(=mKl>W*3#p>hPnONAXMSu6kLe+$ zaQCtJx4f=C&gy|0?bi1yBN!JvScwP6K>O^Ki<3W0d6PBUB@v0`QsdJozLFuq5gZEM zYzfxqMsg?*g|P*HU5>CF6O!kO#j00(Zh!Za4`4Y zarACpC1PNz@nkYq!5J3Et)%oui^OD*DY%84$-2++WA$-A2!2NWG`lRH+u`oaEy|>( s&*MOPM*aRsbdmip>ZUgeJN=wzj$5Q>fgD1A!r8U*#+|(2u7H4l1N9JgnE(I) literal 0 HcmV?d00001 diff --git a/testdata/record/nullables.avro b/testdata/record/nullables.avro new file mode 100644 index 0000000000000000000000000000000000000000..fe1914181b3f3e97a68a1b7ef3272f3aebd5edc1 GIT binary patch literal 796 zcmeZI%3@>@ODrqO*DFrWNXij}OQt6{Q9`T04iiFrUdi1uiuJfM0Y7bX#_qm+`GmROooqGSb(>|y;9-T>*CEyT44;8R5 z9(~0nMVZ)q2o=ZB8Cxp?j>hEtl+;^ zPO#eY=($qeGHv!->+fdX{^UK0k!6P7xqIdlXJ@``{_h_yUt@Bzsqy5Yjrs}ix^%z! z@c7iIvOe88RrI7!kI(D<_ic|HFG;Vv{`=a$dAWakcziC-PxV*f5w%JJ6&5$Q{T^-d0g-Qi65trgz%Icn8ukeW@z;F?T>x0KR&XR?l&~j zTyo>4u>-?p7R{~GyE@a~NX}^S^6vKbo}^W5+^Dy=?$ec+v}L00`t$#lzqz)zYMJ0a?0q3Y~zr#)(oy#u8g%MT&aArfV literal 0 HcmV?d00001 diff --git a/testdata/record/nullables.jsonl b/testdata/record/nullables.jsonl new file mode 100644 index 0000000..da2f5d8 --- /dev/null +++ b/testdata/record/nullables.jsonl @@ -0,0 +1,10 @@ +{"boolean":null,"int":2049911329,"long":935174337359573034,"float":null,"double":null,"bytes":null,"string":null} +{"boolean":null,"int":-1494730473,"long":-2022895809491630103,"float":null,"double":0.08069785324756118,"bytes":"","string":"tpwmyxc"} +{"boolean":true,"int":-1949023704,"long":5167344269218891758,"float":null,"double":0.6583549661805351,"bytes":null,"string":null} +{"boolean":false,"int":null,"long":-8670003858467235223,"float":0.13172472,"double":0.007504294905384068,"bytes":null,"string":null} +{"boolean":true,"int":null,"long":-1630961264885603867,"float":0.08742553,"double":0.5728205289212072,"bytes":"d4ÑB¿”","string":null} +{"boolean":true,"int":null,"long":null,"float":null,"double":null,"bytes":"\u0005d½œ™ÆÓØhý","string":"s"} +{"boolean":false,"int":170755098,"long":7147626639653793287,"float":0.7437153,"double":null,"bytes":null,"string":null} +{"boolean":null,"int":null,"long":null,"float":null,"double":0.22171424755307045,"bytes":null,"string":"uusutbymi"} +{"boolean":true,"int":-433672812,"long":4602315000893829332,"float":0.43936086,"double":0.4923838260209136,"bytes":"~œ† )ï\u0006Õ'","string":null} +{"boolean":null,"int":null,"long":null,"float":null,"double":0.24505978464315714,"bytes":null,"string":null} \ No newline at end of file diff --git a/testdata/record/nullables.msgpack b/testdata/record/nullables.msgpack new file mode 100644 index 0000000000000000000000000000000000000000..56ee1fd9871c1688800adac8ddee95c1df077105 GIT binary patch literal 751 zcmZo)o|K=TlbV=!U~y(%$!W)X-KRPn7#No1gOaJO81+s4nmCkWm6r-F9*GM}Q++ypcCa68PE zFp)zbvkyR>d{3ll$u?h2h?%GD58R37vN>`c>d({mb$c#d)?UW|H5WrNyNsNtL;oFzw)EgX#g8bI!ky>irdK0dvkBxmsq^ zSH*A(?l+qkmu?k@ODrqO*DFrWNX<=L!cwhNQdy9yWTjM;nw(#hqNJmgmzWFU2NY%IW|m}@ zr4|Fl(lS$XQi_$VqN`!jN%{FXsfl?&IjDY^K&=j3O=eyRLLS6HlFP}@OGik8c}TKp zIr)i5dLdjS`IP+9q?}ZQekdPFMN(x6*yS+Sfw@TX#U(|V$S#2LYh!Cgz~PgepOTu) zkyo0N!?6GN&4<75oSL?HUXsb(uL&M3F$_#hXV3K5&zcDWAMM%F^7BEMfraJl86F3S PFrx!oQeqJZqw5C%GcS&R literal 0 HcmV?d00001 diff --git a/testdata/record/primitives.csv b/testdata/record/primitives.csv new file mode 100644 index 0000000..3632bd1 --- /dev/null +++ b/testdata/record/primitives.csv @@ -0,0 +1,2 @@ +false,1,1,1.1,1.1,"foo","foo" +true,2,2,2.2,2.2,"bar","bar" \ No newline at end of file diff --git a/testdata/primitives.jsonl b/testdata/record/primitives.jsonl similarity index 100% rename from testdata/primitives.jsonl rename to testdata/record/primitives.jsonl diff --git a/testdata/record/primitives.ltsv b/testdata/record/primitives.ltsv new file mode 100644 index 0000000..e9e2008 --- /dev/null +++ b/testdata/record/primitives.ltsv @@ -0,0 +1,2 @@ +boolean:false int:1 long:1 float:1.1 double:1.1 bytes:foo string:foo +boolean:true int:2 long:2 float:2.2 double:2.2 bytes:bar string:bar \ No newline at end of file diff --git a/testdata/record/primitives.msgpack b/testdata/record/primitives.msgpack new file mode 100644 index 0000000..0ec06ed --- /dev/null +++ b/testdata/record/primitives.msgpack @@ -0,0 +1 @@ +boolean£intlongfloat?񙙙double?񙙙bytesfoostringfoobooleanãintlongfloat@double@bytesbarstringbar \ No newline at end of file diff --git a/testdata/record/primitives.tsv b/testdata/record/primitives.tsv new file mode 100644 index 0000000..15fcd06 --- /dev/null +++ b/testdata/record/primitives.tsv @@ -0,0 +1,2 @@ +false 1 1 1.1 1.1 foo foo +true 2 2 2.2 2.2 bar bar diff --git a/testdata/schema/array.avsc b/testdata/schema/array.avsc new file mode 100644 index 0000000..9acfed2 --- /dev/null +++ b/testdata/schema/array.avsc @@ -0,0 +1,29 @@ +{ + "type": "record", + "name": "Array", + "fields" : [ + {"name": "boolean", "type": "boolean"}, + {"name": "int", "type": "int"}, + {"name": "long", "type": "long"}, + {"name": "float", "type": "float"}, + {"name": "double", "type": "double"}, + {"name": "bytes", "type": "bytes"}, + {"name": "string", "type": "string"}, + {"name": "array", "type": { + "type": "array", + "items": { + "type": "record", + "name": "Level1", + "fields" : [ + {"name": "boolean", "type": "boolean"}, + {"name": "int", "type": "int"}, + {"name": "long", "type": "long"}, + {"name": "float", "type": "float"}, + {"name": "double", "type": "double"}, + {"name": "bytes", "type": "bytes"}, + {"name": "string", "type": "string"} + ] + } + }} + ] +} diff --git a/testdata/schema/array.bq.json b/testdata/schema/array.bq.json new file mode 100644 index 0000000..fa02967 --- /dev/null +++ b/testdata/schema/array.bq.json @@ -0,0 +1,79 @@ +[ + { + "name": "boolean", + "type": "BOOLEAN", + "mode": "REQUIRED" + }, + { + "name": "int", + "type": "INTEGER", + "mode": "REQUIRED" + }, + { + "name": "long", + "type": "INTEGER", + "mode": "REQUIRED" + }, + { + "name": "float", + "type": "FLOAT", + "mode": "REQUIRED" + }, + { + "name": "double", + "type": "FLOAT", + "mode": "REQUIRED" + }, + { + "name": "bytes", + "type": "BYTES", + "mode": "REQUIRED" + }, + { + "name": "string", + "type": "STRING", + "mode": "REQUIRED" + }, + { + "name": "array", + "type": "RECORD", + "mode": "REPEATED", + "fields": [ + { + "name": "boolean", + "type": "BOOLEAN", + "mode": "REQUIRED" + }, + { + "name": "int", + "type": "INTEGER", + "mode": "REQUIRED" + }, + { + "name": "long", + "type": "INTEGER", + "mode": "REQUIRED" + }, + { + "name": "float", + "type": "FLOAT", + "mode": "REQUIRED" + }, + { + "name": "double", + "type": "FLOAT", + "mode": "REQUIRED" + }, + { + "name": "bytes", + "type": "BYTES", + "mode": "REQUIRED" + }, + { + "name": "string", + "type": "STRING", + "mode": "REQUIRED" + } + ] + } +] diff --git a/testdata/schema/complicated.avsc b/testdata/schema/complicated.avsc new file mode 100644 index 0000000..c37d6fd --- /dev/null +++ b/testdata/schema/complicated.avsc @@ -0,0 +1,439 @@ +{ + "type": "record", + "name": "Complicated", + "doc": "It contains most kind of primitive/complex/logical types", + "aliases": ["Root"], + "fields" : [ + {"name": "r_boolean", "type": "boolean"}, + {"name": "r_int", "type": "int"}, + {"name": "r_long", "type": "long"}, + {"name": "r_float", "type": "float"}, + {"name": "r_double", "type": "double"}, + {"name": "r_bytes", "type": "bytes"}, + {"name": "r_string", "type": "string"}, + {"name": "r_record", "type": { + "type": "record", + "name": "Level1_1", + "fields" : [ + {"name": "r_boolean", "type": "boolean"}, + {"name": "r_int", "type": "int"}, + {"name": "r_long", "type": "long"}, + {"name": "r_float", "type": "float"}, + {"name": "r_double", "type": "double"}, + {"name": "r_bytes", "type": "bytes"}, + {"name": "r_string", "type": "string"}, + {"name": "r_record", "type": { + "type": "record", + "name": "Level2_1__1", + "fields" : [ + {"name": "r_boolean", "type": "boolean"}, + {"name": "r_int", "type": "int"}, + {"name": "r_long", "type": "long"}, + {"name": "r_float", "type": "float"}, + {"name": "r_double", "type": "double"}, + {"name": "r_bytes", "type": "bytes"}, + {"name": "r_string", "type": "string"}, + {"name": "r_enum", "type": { + "type": "enum", + "name": "Level2_1__1_Enum1", + "symbols": ["ZERO", "ONE", "TWO"] + } + }, + {"name": "r_date", "type": { + "type": "int", + "logicalType": "date" + } + }, + {"name": "r_timemillis", "type": { + "type": "int", + "logicalType": "time-millis" + } + }, + {"name": "r_timemicros", "type": { + "type": "long", + "logicalType": "time-micros" + } + }, + {"name": "r_timestampmillis", "type": { + "type": "long", + "logicalType": "timestamp-millis" + } + }, + {"name": "r_timestampmicros", "type": { + "type": "long", + "logicalType": "timestamp-micros" + } + }, + {"name": "o_boolean", "type": ["null", "boolean"], "default": null}, + {"name": "o_int", "type": ["null", "int"], "default": null}, + {"name": "o_long", "type": ["null", "long"], "default": null}, + {"name": "o_float", "type": ["null", "float"], "default": null}, + {"name": "o_double", "type": ["null", "double"], "default": null}, + {"name": "o_bytes", "type": ["null", "bytes"], "default": null}, + {"name": "o_string", "type": ["null", "string"], "default": null}, + {"name": "o_enum", "type": ["null", { + "type": "enum", + "name": "Level2_1__1_Enum2", + "symbols": ["ZERO", "ONE", "TWO"] + }], + "default": null + }, + {"name": "o_date", "type": ["null", { + "type": "int", + "logicalType": "date" + }], + "default": null + }, + {"name": "o_timemillis", "type": ["null", { + "type": "int", + "logicalType": "time-millis" + }], + "default": null + }, + {"name": "o_timemicros", "type": ["null", { + "type": "long", + "logicalType": "time-micros" + }], + "default": null + }, + {"name": "o_timestampmillis", "type": ["null", { + "type": "long", + "logicalType": "timestamp-millis" + }], + "default": null + }, + {"name": "o_timestampmicros", "type": ["null", { + "type": "long", + "logicalType": "timestamp-micros" + }], + "default": null + } + ]} + }, + {"name": "r_enum", "type": { + "type": "enum", + "name": "Level1_1_Enum1", + "symbols": ["ZERO", "ONE", "TWO"] + } + }, + {"name": "r_date", "type": { + "type": "int", + "logicalType": "date" + } + }, + {"name": "r_timemillis", "type": { + "type": "int", + "logicalType": "time-millis" + } + }, + {"name": "r_timemicros", "type": { + "type": "long", + "logicalType": "time-micros" + } + }, + {"name": "r_timestampmillis", "type": { + "type": "long", + "logicalType": "timestamp-millis" + } + }, + {"name": "r_timestampmicros", "type": { + "type": "long", + "logicalType": "timestamp-micros" + } + }, + {"name": "r_array", "type": { + "type": "array", + "items": { + "type": "record", + "name": "Level2_1__2", + "fields" : [ + {"name": "r_boolean", "type": "boolean"}, + {"name": "r_int", "type": "int"}, + {"name": "r_long", "type": "long"}, + {"name": "r_float", "type": "float"}, + {"name": "r_double", "type": "double"}, + {"name": "r_bytes", "type": "bytes"}, + {"name": "r_string", "type": "string"}, + {"name": "r_enum", "type": { + "type": "enum", + "name": "Level2_1__2_Enum1", + "symbols": ["ZERO", "ONE", "TWO"] + } + }, + {"name": "o_boolean", "type": ["null", "boolean"], "default": null}, + {"name": "o_int", "type": ["null", "int"], "default": null}, + {"name": "o_long", "type": ["null", "long"], "default": null}, + {"name": "o_float", "type": ["null", "float"], "default": null}, + {"name": "o_double", "type": ["null", "double"], "default": null}, + {"name": "o_bytes", "type": ["null", "bytes"], "default": null}, + {"name": "o_string", "type": ["null", "string"], "default": null}, + {"name": "o_enum", "type": ["null", { + "type": "enum", + "name": "Level2_1__2_Enum2", + "symbols": ["ZERO", "ONE", "TWO"] + }], + "default": null + }, + {"name": "o_date", "type": ["null", { + "type": "int", + "logicalType": "date" + }], + "default": null + }, + {"name": "o_timemillis", "type": ["null", { + "type": "int", + "logicalType": "time-millis" + }], + "default": null + }, + {"name": "o_timemicros", "type": ["null", { + "type": "long", + "logicalType": "time-micros" + }], + "default": null + }, + {"name": "o_timestampmillis", "type": ["null", { + "type": "long", + "logicalType": "timestamp-millis" + }], + "default": null + }, + {"name": "o_timestampmicros", "type": ["null", { + "type": "long", + "logicalType": "timestamp-micros" + }], + "default": null + } + ] + } + }} + ]} + }, + {"name": "r_enum", "type": { + "type": "enum", + "name": "Enum1", + "symbols": ["ZERO", "ONE", "TWO"] + } + }, + {"name": "r_array", "type": { + "type": "array", + "items": { + "type": "record", + "name": "Level1_2", + "fields" : [ + {"name": "r_boolean", "type": "boolean"}, + {"name": "r_int", "type": "int"}, + {"name": "r_long", "type": "long"}, + {"name": "r_float", "type": "float"}, + {"name": "r_double", "type": "double"}, + {"name": "r_bytes", "type": "bytes"}, + {"name": "r_string", "type": "string"}, + {"name": "r_array", "type": { + "type": "array", + "items": { + "type": "record", + "name": "Level2_2", + "fields" : [ + {"name": "r_boolean", "type": "boolean"}, + {"name": "r_int", "type": "int"}, + {"name": "r_long", "type": "long"}, + {"name": "r_float", "type": "float"}, + {"name": "r_double", "type": "double"}, + {"name": "r_bytes", "type": "bytes"}, + {"name": "r_string", "type": "string"}, + {"name": "r_enum", "type": { + "type": "enum", + "name": "Level2_2_Enum1", + "symbols": ["ZERO", "ONE", "TWO"] + } + }, + {"name": "r_date", "type": { + "type": "int", + "logicalType": "date" + } + }, + {"name": "r_timemillis", "type": { + "type": "int", + "logicalType": "time-millis" + } + }, + {"name": "r_timemicros", "type": { + "type": "long", + "logicalType": "time-micros" + } + }, + {"name": "r_timestampmillis", "type": { + "type": "long", + "logicalType": "timestamp-millis" + } + }, + {"name": "r_timestampmicros", "type": { + "type": "long", + "logicalType": "timestamp-micros" + } + }, + {"name": "o_boolean", "type": ["null", "boolean"], "default": null}, + {"name": "o_int", "type": ["null", "int"], "default": null}, + {"name": "o_long", "type": ["null", "long"], "default": null}, + {"name": "o_float", "type": ["null", "float"], "default": null}, + {"name": "o_double", "type": ["null", "double"], "default": null}, + {"name": "o_bytes", "type": ["null", "bytes"], "default": null}, + {"name": "o_string", "type": ["null", "string"], "default": null}, + {"name": "o_enum", "type": ["null", { + "type": "enum", + "name": "Level2_2_Enum2", + "symbols": ["ZERO", "ONE", "TWO"] + }], + "default": null + }, + {"name": "o_date", "type": ["null", { + "type": "int", + "logicalType": "date" + }], + "default": null + }, + {"name": "o_timemillis", "type": ["null", { + "type": "int", + "logicalType": "time-millis" + }], + "default": null + }, + {"name": "o_timemicros", "type": ["null", { + "type": "long", + "logicalType": "time-micros" + }], + "default": null + }, + {"name": "o_timestampmillis", "type": ["null", { + "type": "long", + "logicalType": "timestamp-millis" + }], + "default": null + }, + {"name": "o_timestampmicros", "type": ["null", { + "type": "long", + "logicalType": "timestamp-micros" + }], + "default": null + } + ] + } + }}, + {"name": "o_boolean", "type": ["null", "boolean"], "default": null}, + {"name": "o_int", "type": ["null", "int"], "default": null}, + {"name": "o_long", "type": ["null", "long"], "default": null}, + {"name": "o_float", "type": ["null", "float"], "default": null}, + {"name": "o_double", "type": ["null", "double"], "default": null}, + {"name": "o_bytes", "type": ["null", "bytes"], "default": null}, + {"name": "o_string", "type": ["null", "string"], "default": null}, + {"name": "o_enum", "type": ["null", { + "type": "enum", + "name": "Level1_2_Enum2", + "symbols": ["ZERO", "ONE", "TWO"] + }], + "default": null + }, + {"name": "o_date", "type": ["null", { + "type": "int", + "logicalType": "date" + }], + "default": null + }, + {"name": "o_timemillis", "type": ["null", { + "type": "int", + "logicalType": "time-millis" + }], + "default": null + }, + {"name": "o_timemicros", "type": ["null", { + "type": "long", + "logicalType": "time-micros" + }], + "default": null + }, + {"name": "o_timestampmillis", "type": ["null", { + "type": "long", + "logicalType": "timestamp-millis" + }], + "default": null + }, + {"name": "o_timestampmicros", "type": ["null", { + "type": "long", + "logicalType": "timestamp-micros" + }], + "default": null + } + ] + } + }}, + {"name": "r_date", "type": { + "type": "int", + "logicalType": "date" + } + }, + {"name": "r_timemillis", "type": { + "type": "int", + "logicalType": "time-millis" + } + }, + {"name": "r_timemicros", "type": { + "type": "long", + "logicalType": "time-micros" + } + }, + {"name": "r_timestampmillis", "type": { + "type": "long", + "logicalType": "timestamp-millis" + } + }, + {"name": "r_timestampmicros", "type": { + "type": "long", + "logicalType": "timestamp-micros" + } + }, + {"name": "o_boolean", "type": ["null", "boolean"], "default": null}, + {"name": "o_int", "type": ["null", "int"], "default": null}, + {"name": "o_long", "type": ["null", "long"], "default": null}, + {"name": "o_float", "type": ["null", "float"], "default": null}, + {"name": "o_double", "type": ["null", "double"], "default": null}, + {"name": "o_bytes", "type": ["null", "bytes"], "default": null}, + {"name": "o_string", "type": ["null", "string"], "default": null}, + {"name": "o_enum", "type": ["null", { + "type": "enum", + "name": "Enum2", + "symbols": ["ZERO", "ONE", "TWO"] + }], + "default": null + }, + {"name": "o_date", "type": ["null", { + "type": "int", + "logicalType": "date" + }], + "default": null + }, + {"name": "o_timemillis", "type": ["null", { + "type": "int", + "logicalType": "time-millis" + }], + "default": null + }, + {"name": "o_timemicros", "type": ["null", { + "type": "long", + "logicalType": "time-micros" + }], + "default": null + }, + {"name": "o_timestampmillis", "type": ["null", { + "type": "long", + "logicalType": "timestamp-millis" + }], + "default": null + }, + {"name": "o_timestampmicros", "type": ["null", { + "type": "long", + "logicalType": "timestamp-micros" + }], + "default": null + } + ] +} diff --git a/testdata/schema/logicals.avsc b/testdata/schema/logicals.avsc new file mode 100644 index 0000000..1375f92 --- /dev/null +++ b/testdata/schema/logicals.avsc @@ -0,0 +1,26 @@ +{ + "type": "record", + "name": "Logicals", + "fields" : [ + { + "name": "date", + "type": {"type": "int", "logicalType": "date"} + }, + { + "name": "timemillis", + "type": {"type": "int", "logicalType": "time-millis"} + }, + { + "name": "timemicros", + "type": {"type": "long", "logicalType": "time-micros"} + }, + { + "name": "timestampmillis", + "type": { "type": "long", "logicalType": "timestamp-millis"} + }, + { + "name": "timestampmicros", + "type": {"type": "long", "logicalType": "timestamp-micros"} + } + ] +} diff --git a/testdata/mismatch.avsc b/testdata/schema/mismatch.avsc similarity index 100% rename from testdata/mismatch.avsc rename to testdata/schema/mismatch.avsc diff --git a/testdata/schema/nested.avsc b/testdata/schema/nested.avsc new file mode 100644 index 0000000..8aef3d8 --- /dev/null +++ b/testdata/schema/nested.avsc @@ -0,0 +1,26 @@ +{ + "type": "record", + "name": "Nested", + "fields" : [ + {"name": "boolean", "type": "boolean"}, + {"name": "int", "type": "int"}, + {"name": "long", "type": "long"}, + {"name": "float", "type": "float"}, + {"name": "double", "type": "double"}, + {"name": "bytes", "type": "bytes"}, + {"name": "string", "type": "string"}, + {"name": "record", "type": { + "type": "record", + "name": "Level1", + "fields" : [ + {"name": "boolean", "type": "boolean"}, + {"name": "int", "type": "int"}, + {"name": "long", "type": "long"}, + {"name": "float", "type": "float"}, + {"name": "double", "type": "double"}, + {"name": "bytes", "type": "bytes"}, + {"name": "string", "type": "string"} + ]} + } + ] +} diff --git a/testdata/schema/nested.bq.json b/testdata/schema/nested.bq.json new file mode 100644 index 0000000..8feba6f --- /dev/null +++ b/testdata/schema/nested.bq.json @@ -0,0 +1,79 @@ +[ + { + "name": "boolean", + "type": "BOOLEAN", + "mode": "REQUIRED" + }, + { + "name": "int", + "type": "INTEGER", + "mode": "REQUIRED" + }, + { + "name": "long", + "type": "INTEGER", + "mode": "REQUIRED" + }, + { + "name": "float", + "type": "FLOAT", + "mode": "REQUIRED" + }, + { + "name": "double", + "type": "FLOAT", + "mode": "REQUIRED" + }, + { + "name": "bytes", + "type": "BYTES", + "mode": "REQUIRED" + }, + { + "name": "string", + "type": "STRING", + "mode": "REQUIRED" + }, + { + "name": "record", + "type": "RECORD", + "mode": "REQUIRED", + "fields": [ + { + "name": "boolean", + "type": "BOOLEAN", + "mode": "REQUIRED" + }, + { + "name": "int", + "type": "INTEGER", + "mode": "REQUIRED" + }, + { + "name": "long", + "type": "INTEGER", + "mode": "REQUIRED" + }, + { + "name": "float", + "type": "FLOAT", + "mode": "REQUIRED" + }, + { + "name": "double", + "type": "FLOAT", + "mode": "REQUIRED" + }, + { + "name": "bytes", + "type": "BYTES", + "mode": "REQUIRED" + }, + { + "name": "string", + "type": "STRING", + "mode": "REQUIRED" + } + ] + } +] diff --git a/testdata/schema/nullable_complex.avsc b/testdata/schema/nullable_complex.avsc new file mode 100644 index 0000000..2c05ad5 --- /dev/null +++ b/testdata/schema/nullable_complex.avsc @@ -0,0 +1,50 @@ +{ + "type": "record", + "name": "NullableComplex", + "fields" : [ + {"name": "record", "type": ["null", { + "type": "record", + "name": "Level1", + "fields" : [ + {"name": "boolean", "type": "boolean"}, + {"name": "int", "type": "int"}, + {"name": "long", "type": "long"}, + {"name": "float", "type": "float"}, + {"name": "double", "type": "double"}, + {"name": "bytes", "type": "bytes"}, + {"name": "string", "type": "string"}, + {"name": "record", "type": { + "type": "record", + "name": "Level2_1", + "fields" : [ + {"name": "boolean", "type": "boolean"}, + {"name": "int", "type": "int"}, + {"name": "long", "type": "long"}, + {"name": "float", "type": "float"}, + {"name": "double", "type": "double"}, + {"name": "bytes", "type": "bytes"}, + {"name": "string", "type": "string"} + ]} + } + ]}], + "default": null + }, + {"name": "array", "type": ["null", { + "type": "array", + "items": { + "type": "record", + "name": "Level2_2", + "fields" : [ + {"name": "boolean", "type": "boolean"}, + {"name": "int", "type": "int"}, + {"name": "long", "type": "long"}, + {"name": "float", "type": "float"}, + {"name": "double", "type": "double"}, + {"name": "bytes", "type": "bytes"}, + {"name": "string", "type": "string"} + ] + }}], + "default": null + } + ] +} diff --git a/testdata/schema/nullables.avsc b/testdata/schema/nullables.avsc new file mode 100644 index 0000000..6f87995 --- /dev/null +++ b/testdata/schema/nullables.avsc @@ -0,0 +1,41 @@ +{ + "type": "record", + "name": "Nullables", + "fields" : [ + { + "name": "boolean", + "type": ["null", "boolean"], + "default": null + }, + { + "name": "int", + "type": ["null", "int"], + "default": null + }, + { + "name": "long", + "type": ["null", "long"], + "default": null + }, + { + "name": "float", + "type": ["null", "float"], + "default": null + }, + { + "name": "double", + "type": ["null", "double"], + "default": null + }, + { + "name": "bytes", + "type": ["null", "bytes"], + "default": null + }, + { + "name": "string", + "type": ["null", "string"], + "default": null + } + ] +} diff --git a/testdata/schema/nullables.bq.json b/testdata/schema/nullables.bq.json new file mode 100644 index 0000000..7a369a5 --- /dev/null +++ b/testdata/schema/nullables.bq.json @@ -0,0 +1,37 @@ +[ + { + "name": "boolean", + "type": "BOOLEAN", + "mode": "NULLABLE" + }, + { + "name": "int", + "type": "INTEGER", + "mode": "NULLABLE" + }, + { + "name": "long", + "type": "INTEGER", + "mode": "NULLABLE" + }, + { + "name": "float", + "type": "FLOAT", + "mode": "NULLABLE" + }, + { + "name": "double", + "type": "FLOAT", + "mode": "NULLABLE" + }, + { + "name": "bytes", + "type": "BYTES", + "mode": "NULLABLE" + }, + { + "name": "string", + "type": "STRING", + "mode": "NULLABLE" + } +] diff --git a/testdata/primitives.avsc b/testdata/schema/primitives.avsc similarity index 100% rename from testdata/primitives.avsc rename to testdata/schema/primitives.avsc diff --git a/testdata/schema/primitives.bq.json b/testdata/schema/primitives.bq.json new file mode 100644 index 0000000..dda6679 --- /dev/null +++ b/testdata/schema/primitives.bq.json @@ -0,0 +1,37 @@ +[ + { + "name": "boolean", + "type": "BOOLEAN", + "mode": "REQUIRED" + }, + { + "name": "int", + "type": "INTEGER", + "mode": "REQUIRED" + }, + { + "name": "long", + "type": "INTEGER", + "mode": "REQUIRED" + }, + { + "name": "float", + "type": "FLOAT", + "mode": "REQUIRED" + }, + { + "name": "double", + "type": "FLOAT", + "mode": "REQUIRED" + }, + { + "name": "bytes", + "type": "BYTES", + "mode": "REQUIRED" + }, + { + "name": "string", + "type": "STRING", + "mode": "REQUIRED" + } +] From 847c71b4da8ff3a91da6b22a739101b491ac2ba0 Mon Sep 17 00:00:00 2001 From: Ryo Okubo Date: Tue, 2 Jun 2020 00:32:37 +0900 Subject: [PATCH 2/6] Remove complicated test case --- testdata/record/complicated.avro | 89 ------ testdata/record/complicated.jsonl | 10 - testdata/schema/complicated.avsc | 439 ------------------------------ 3 files changed, 538 deletions(-) delete mode 100644 testdata/record/complicated.avro delete mode 100644 testdata/record/complicated.jsonl delete mode 100644 testdata/schema/complicated.avsc diff --git a/testdata/record/complicated.avro b/testdata/record/complicated.avro deleted file mode 100644 index f355295..0000000 --- a/testdata/record/complicated.avro +++ /dev/null @@ -1,89 +0,0 @@ -Objavro.schema{"type":"record","name":"Complicated","doc":"It contains most kind of primitive/complex/logical types","fields":[{"name":"r_boolean","type":"boolean"},{"name":"r_int","type":"int"},{"name":"r_long","type":"long"},{"name":"r_float","type":"float"},{"name":"r_double","type":"double"},{"name":"r_bytes","type":"bytes"},{"name":"r_string","type":"string"},{"name":"r_record","type":{"type":"record","name":"Level1_1","fields":[{"name":"r_boolean","type":"boolean"},{"name":"r_int","type":"int"},{"name":"r_long","type":"long"},{"name":"r_float","type":"float"},{"name":"r_double","type":"double"},{"name":"r_bytes","type":"bytes"},{"name":"r_string","type":"string"},{"name":"r_record","type":{"type":"record","name":"Level2_1__1","fields":[{"name":"r_boolean","type":"boolean"},{"name":"r_int","type":"int"},{"name":"r_long","type":"long"},{"name":"r_float","type":"float"},{"name":"r_double","type":"double"},{"name":"r_bytes","type":"bytes"},{"name":"r_string","type":"string"},{"name":"r_enum","type":{"type":"enum","name":"Level2_1__1_Enum1","symbols":["ZERO","ONE","TWO"]}},{"name":"r_date","type":{"type":"int","logicalType":"date"}},{"name":"r_timemillis","type":{"type":"int","logicalType":"time-millis"}},{"name":"r_timemicros","type":{"type":"long","logicalType":"time-micros"}},{"name":"r_timestampmillis","type":{"type":"long","logicalType":"timestamp-millis"}},{"name":"r_timestampmicros","type":{"type":"long","logicalType":"timestamp-micros"}},{"name":"o_boolean","type":["null","boolean"],"default":null},{"name":"o_int","type":["null","int"],"default":null},{"name":"o_long","type":["null","long"],"default":null},{"name":"o_float","type":["null","float"],"default":null},{"name":"o_double","type":["null","double"],"default":null},{"name":"o_bytes","type":["null","bytes"],"default":null},{"name":"o_string","type":["null","string"],"default":null},{"name":"o_enum","type":["null",{"type":"enum","name":"Level2_1__1_Enum2","symbols":["ZERO","ONE","TWO"]}],"default":null},{"name":"o_date","type":["null",{"type":"int","logicalType":"date"}],"default":null},{"name":"o_timemillis","type":["null",{"type":"int","logicalType":"time-millis"}],"default":null},{"name":"o_timemicros","type":["null",{"type":"long","logicalType":"time-micros"}],"default":null},{"name":"o_timestampmillis","type":["null",{"type":"long","logicalType":"timestamp-millis"}],"default":null},{"name":"o_timestampmicros","type":["null",{"type":"long","logicalType":"timestamp-micros"}],"default":null}]}},{"name":"r_enum","type":{"type":"enum","name":"Level1_1_Enum1","symbols":["ZERO","ONE","TWO"]}},{"name":"r_date","type":{"type":"int","logicalType":"date"}},{"name":"r_timemillis","type":{"type":"int","logicalType":"time-millis"}},{"name":"r_timemicros","type":{"type":"long","logicalType":"time-micros"}},{"name":"r_timestampmillis","type":{"type":"long","logicalType":"timestamp-millis"}},{"name":"r_timestampmicros","type":{"type":"long","logicalType":"timestamp-micros"}},{"name":"r_array","type":{"type":"array","items":{"type":"record","name":"Level2_1__2","fields":[{"name":"r_boolean","type":"boolean"},{"name":"r_int","type":"int"},{"name":"r_long","type":"long"},{"name":"r_float","type":"float"},{"name":"r_double","type":"double"},{"name":"r_bytes","type":"bytes"},{"name":"r_string","type":"string"},{"name":"r_enum","type":{"type":"enum","name":"Level2_1__2_Enum1","symbols":["ZERO","ONE","TWO"]}},{"name":"o_boolean","type":["null","boolean"],"default":null},{"name":"o_int","type":["null","int"],"default":null},{"name":"o_long","type":["null","long"],"default":null},{"name":"o_float","type":["null","float"],"default":null},{"name":"o_double","type":["null","double"],"default":null},{"name":"o_bytes","type":["null","bytes"],"default":null},{"name":"o_string","type":["null","string"],"default":null},{"name":"o_enum","type":["null",{"type":"enum","name":"Level2_1__2_Enum2","symbols":["ZERO","ONE","TWO"]}],"default":null},{"name":"o_date","type":["null",{"type":"int","logicalType":"date"}],"default":null},{"name":"o_timemillis","type":["null",{"type":"int","logicalType":"time-millis"}],"default":null},{"name":"o_timemicros","type":["null",{"type":"long","logicalType":"time-micros"}],"default":null},{"name":"o_timestampmillis","type":["null",{"type":"long","logicalType":"timestamp-millis"}],"default":null},{"name":"o_timestampmicros","type":["null",{"type":"long","logicalType":"timestamp-micros"}],"default":null}]}}}]}},{"name":"r_enum","type":{"type":"enum","name":"Enum1","symbols":["ZERO","ONE","TWO"]}},{"name":"r_array","type":{"type":"array","items":{"type":"record","name":"Level1_2","fields":[{"name":"r_boolean","type":"boolean"},{"name":"r_int","type":"int"},{"name":"r_long","type":"long"},{"name":"r_float","type":"float"},{"name":"r_double","type":"double"},{"name":"r_bytes","type":"bytes"},{"name":"r_string","type":"string"},{"name":"r_array","type":{"type":"array","items":{"type":"record","name":"Level2_2","fields":[{"name":"r_boolean","type":"boolean"},{"name":"r_int","type":"int"},{"name":"r_long","type":"long"},{"name":"r_float","type":"float"},{"name":"r_double","type":"double"},{"name":"r_bytes","type":"bytes"},{"name":"r_string","type":"string"},{"name":"r_enum","type":{"type":"enum","name":"Level2_2_Enum1","symbols":["ZERO","ONE","TWO"]}},{"name":"r_date","type":{"type":"int","logicalType":"date"}},{"name":"r_timemillis","type":{"type":"int","logicalType":"time-millis"}},{"name":"r_timemicros","type":{"type":"long","logicalType":"time-micros"}},{"name":"r_timestampmillis","type":{"type":"long","logicalType":"timestamp-millis"}},{"name":"r_timestampmicros","type":{"type":"long","logicalType":"timestamp-micros"}},{"name":"o_boolean","type":["null","boolean"],"default":null},{"name":"o_int","type":["null","int"],"default":null},{"name":"o_long","type":["null","long"],"default":null},{"name":"o_float","type":["null","float"],"default":null},{"name":"o_double","type":["null","double"],"default":null},{"name":"o_bytes","type":["null","bytes"],"default":null},{"name":"o_string","type":["null","string"],"default":null},{"name":"o_enum","type":["null",{"type":"enum","name":"Level2_2_Enum2","symbols":["ZERO","ONE","TWO"]}],"default":null},{"name":"o_date","type":["null",{"type":"int","logicalType":"date"}],"default":null},{"name":"o_timemillis","type":["null",{"type":"int","logicalType":"time-millis"}],"default":null},{"name":"o_timemicros","type":["null",{"type":"long","logicalType":"time-micros"}],"default":null},{"name":"o_timestampmillis","type":["null",{"type":"long","logicalType":"timestamp-millis"}],"default":null},{"name":"o_timestampmicros","type":["null",{"type":"long","logicalType":"timestamp-micros"}],"default":null}]}}},{"name":"o_boolean","type":["null","boolean"],"default":null},{"name":"o_int","type":["null","int"],"default":null},{"name":"o_long","type":["null","long"],"default":null},{"name":"o_float","type":["null","float"],"default":null},{"name":"o_double","type":["null","double"],"default":null},{"name":"o_bytes","type":["null","bytes"],"default":null},{"name":"o_string","type":["null","string"],"default":null},{"name":"o_enum","type":["null",{"type":"enum","name":"Level1_2_Enum2","symbols":["ZERO","ONE","TWO"]}],"default":null},{"name":"o_date","type":["null",{"type":"int","logicalType":"date"}],"default":null},{"name":"o_timemillis","type":["null",{"type":"int","logicalType":"time-millis"}],"default":null},{"name":"o_timemicros","type":["null",{"type":"long","logicalType":"time-micros"}],"default":null},{"name":"o_timestampmillis","type":["null",{"type":"long","logicalType":"timestamp-millis"}],"default":null},{"name":"o_timestampmicros","type":["null",{"type":"long","logicalType":"timestamp-micros"}],"default":null}]}}},{"name":"r_date","type":{"type":"int","logicalType":"date"}},{"name":"r_timemillis","type":{"type":"int","logicalType":"time-millis"}},{"name":"r_timemicros","type":{"type":"long","logicalType":"time-micros"}},{"name":"r_timestampmillis","type":{"type":"long","logicalType":"timestamp-millis"}},{"name":"r_timestampmicros","type":{"type":"long","logicalType":"timestamp-micros"}},{"name":"o_boolean","type":["null","boolean"],"default":null},{"name":"o_int","type":["null","int"],"default":null},{"name":"o_long","type":["null","long"],"default":null},{"name":"o_float","type":["null","float"],"default":null},{"name":"o_double","type":["null","double"],"default":null},{"name":"o_bytes","type":["null","bytes"],"default":null},{"name":"o_string","type":["null","string"],"default":null},{"name":"o_record","type":["null",{"type":"record","name":"Level1_3","fields":[{"name":"r_boolean","type":"boolean"},{"name":"r_int","type":"int"},{"name":"r_long","type":"long"},{"name":"r_float","type":"float"},{"name":"r_double","type":"double"},{"name":"r_bytes","type":"bytes"},{"name":"r_string","type":"string"},{"name":"r_record","type":{"type":"record","name":"Level2_3","fields":[{"name":"r_boolean","type":"boolean"},{"name":"r_int","type":"int"},{"name":"r_long","type":"long"},{"name":"r_float","type":"float"},{"name":"r_double","type":"double"},{"name":"r_bytes","type":"bytes"},{"name":"r_string","type":"string"},{"name":"r_enum","type":{"type":"enum","name":"Level2_3_Enum1","symbols":["ZERO","ONE","TWO"]}},{"name":"r_date","type":{"type":"int","logicalType":"date"}},{"name":"r_timemillis","type":{"type":"int","logicalType":"time-millis"}},{"name":"r_timemicros","type":{"type":"long","logicalType":"time-micros"}},{"name":"r_timestampmillis","type":{"type":"long","logicalType":"timestamp-millis"}},{"name":"r_timestampmicros","type":{"type":"long","logicalType":"timestamp-micros"}},{"name":"o_boolean","type":["null","boolean"],"default":null},{"name":"o_int","type":["null","int"],"default":null},{"name":"o_long","type":["null","long"],"default":null},{"name":"o_float","type":["null","float"],"default":null},{"name":"o_double","type":["null","double"],"default":null},{"name":"o_bytes","type":["null","bytes"],"default":null},{"name":"o_string","type":["null","string"],"default":null},{"name":"o_enum","type":["null",{"type":"enum","name":"Level2_3_Enum2","symbols":["ZERO","ONE","TWO"]}],"default":null},{"name":"o_date","type":["null",{"type":"int","logicalType":"date"}],"default":null},{"name":"o_timemillis","type":["null",{"type":"int","logicalType":"time-millis"}],"default":null},{"name":"o_timemicros","type":["null",{"type":"long","logicalType":"time-micros"}],"default":null},{"name":"o_timestampmillis","type":["null",{"type":"long","logicalType":"timestamp-millis"}],"default":null},{"name":"o_timestampmicros","type":["null",{"type":"long","logicalType":"timestamp-micros"}],"default":null}]}},{"name":"r_enum","type":{"type":"enum","name":"Level1_3_Enum1","symbols":["ZERO","ONE","TWO"]}},{"name":"r_date","type":{"type":"int","logicalType":"date"}},{"name":"r_timemillis","type":{"type":"int","logicalType":"time-millis"}},{"name":"r_timemicros","type":{"type":"long","logicalType":"time-micros"}},{"name":"r_timestampmillis","type":{"type":"long","logicalType":"timestamp-millis"}},{"name":"r_timestampmicros","type":{"type":"long","logicalType":"timestamp-micros"}},{"name":"o_boolean","type":["null","boolean"],"default":null},{"name":"o_int","type":["null","int"],"default":null},{"name":"o_long","type":["null","long"],"default":null},{"name":"o_float","type":["null","float"],"default":null},{"name":"o_double","type":["null","double"],"default":null},{"name":"o_bytes","type":["null","bytes"],"default":null},{"name":"o_string","type":["null","string"],"default":null},{"name":"o_enum","type":["null",{"type":"enum","name":"Level1_3_Enum2","symbols":["ZERO","ONE","TWO"]}],"default":null},{"name":"o_date","type":["null",{"type":"int","logicalType":"date"}],"default":null},{"name":"o_timemillis","type":["null",{"type":"int","logicalType":"time-millis"}],"default":null},{"name":"o_timemicros","type":["null",{"type":"long","logicalType":"time-micros"}],"default":null},{"name":"o_timestampmillis","type":["null",{"type":"long","logicalType":"timestamp-millis"}],"default":null},{"name":"o_timestampmicros","type":["null",{"type":"long","logicalType":"timestamp-micros"}],"default":null}]}],"default":null},{"name":"o_enum","type":["null",{"type":"enum","name":"Enum2","symbols":["ZERO","ONE","TWO"]}],"default":null},{"name":"o_date","type":["null",{"type":"int","logicalType":"date"}],"default":null},{"name":"o_timemillis","type":["null",{"type":"int","logicalType":"time-millis"}],"default":null},{"name":"o_timemicros","type":["null",{"type":"long","logicalType":"time-micros"}],"default":null},{"name":"o_timestampmillis","type":["null",{"type":"long","logicalType":"timestamp-millis"}],"default":null},{"name":"o_timestampmicros","type":["null",{"type":"long","logicalType":"timestamp-micros"}],"default":null}],"aliases":["Root"]}avro.codecdeflate %q}?.LxTU.EI`0 B:i)LE樊2ИħAX!4}J|mGC[xCq+~qp|cA#}{;eqzObŒ9󨻽&mw "#x v&E!}ZuǑM&1`)xcӷ^Gs,&Œ+8yy$ATﲔՂ=Hr~a=DI/!c[|zn҉W\~o?vUFش׀~tM1u*BͶZ˯BUUFPt~boaCOVp_Gt纩~ @hea3 -D)Z&>{h>wO!rlGu0.+ځ@EvR{]m1"7:@5Uh>*Xc2EsǬ ߝRad=ԪQ@v# 7.Ʃ>kVru`>~O5>E:C \H$vw譊L)-uoݑ+ wwjݣ>ݷ?) Okͺ-U23鈅x,I#JTEaiyC͋D/TMtp/ pPqa:&y54Pbܿqȱ;ӭ;qkf@crzҢh7把N_ &e 8,§щC'((,&$:%a|.9a| ɦ !_Lp/$<C" T" C0 3 !&\2 /Dqb.ʢQ+,u᳝;GtCљdc=ugzP|#L+ 4.bwS4kWb 6ƺΥ?'i57I[cՂE(t[<>SV|1^.Nڶ6нUPEL'djjpKXfm Hvr˺Uj }@0{@ɮfOEmGZk@UЛ0h.fSUSE>!mXV>7g"D<,!@\}w 7=za#>GH4M1*ZZRIlt. nϖ-SXJl33Tk --˴=%=D +U^eQ -gj7 -ETN" -Pz/cN(+ 3q]B +r:q(@bUdO"<\GRGc!2( JtPYmx[2S~- 42T>no\oj~uncDo>>28fV"JIGj4|{7=[uS6Iv[C3}Юnruq0jwy&ե{zϘՈ|tma2|trfAM"d"s]V!p$Y% F`,mXo4V{<'tkzⓤ0{tuѯѿtG'⇶mTEPkI؋oqv}Ӏ%NVun32Jw -`/ǰϺ`ݩcSyEz MfJ-{&2wͳGTx&zZGIYAjWu󗑇=ȿq Ʀ`%T_Ѩ6hq%׾ -t/O:wMs1Rغo6hR.=\g,b% t^s%0(b"DrH̤Y6 $DD Hc"Ad,]·:e_60֝f?,H@ffyC}PpQ0J$*.DΉZ7hƳ\m;.{x -JTzdBKE)VBD{)֧@E(u:6A`I*iUR)_߰4hm -O&Ȣ!i+u \-i6!mPV@b7m c;Xu;i$d<ʾ"$LeP`Y|{4(LI_uv(zg|Sa⺩VO˴q^vAˍ&Rڛl=+3F^-v*Ch()-[Qeg>|ޯ0AGppEǛ njrÙ\B('+$oj_(@" (vB+f:!@z >[*Bi$0 -RBIe4#X,(8LË(l -/F^ DH(l`B gy M$J#iDHJpDpLXSP3hR)O*0h C 8$ + nרHkTչ`Xthh>qM7_ -/CDB0RI?o!^<8|y0u=a7ܕ/}RԌ!z7j>3 ?{c|{D"5+5C2?'+~4z꣬7]ͪ ?P<%3u9xi [jl>ax\f75H'X];)u;ߥ -&Ϋ,{fNz_oQħӓ^t=[{#^^@Dv##&CAPwnel{X9DֽXV#"wf]Ӥs60@j! CR|6@0T - a|.'2Dx ϣ`|F -BN) ph]"3qx2D1IjёX\2e*}V b{*6 (* 4;jqV، W=ݭɅ3Q(erapboq{ubݽP=MT&w)tZZNg#ȴ2r(ϔ]6bNG[HePE :M㳇@iffK9{3V6I(ڷQ)(1|Υ}}1A?Ӆx٬5ptg^0vʴ~uڂide[y.:} =a!"\z} Za]O"fB:B^cy$ix_I_Ǡdf崮ِ]6f< >[[zӰQ>/ D$qyu`s3k&}颗| '}^Zx89g'u:0c~ ۖfB{o$l ZC΅Xd^ys=zZyJB;ec⵼eT~o4\vVO8u -H4"id/5ڇֽVw:c|p/ -5vI*Byw6D'B?8W>2^I J)xL'LehE>b*[)t?>\3Y -kf|t' ŧKHh$GW(HnV .i:{zK+V9mxUQn͍+w" S!͈!3dxWҬ`,O2- ZVb2;;e;GK>]sޒM04hgySײy$6ƲB(m.u6G1̶Wc!O*qdy~]!4E8.'[zCҤ)ۣiY^Xkd^S /xD"{вEͮQu+lfɒa77=[Mn7-׹=T$`\J|߹YL'ґ'{S j* Fdc !Dʉ4DŽ#?ޡD)lS@O]0 M.xO 9͛G|=~΀j@+ȁfphekʖ%ͦ}>NPpyj]=6? =ɶuT)^ /X-LnBUy?k])h >>u`SLV>o{":|o| 򐠐/k``au>02^w(4A^'⼬{*[=3Z]3 SsdylZXUz]n>~ꬂBQr4T楎I[Vm'{鯾)uoFS#~Kp2tT[vfY:$> n1X?HQeHtT4߱SA|ej=76UNe)<: -[2k\oVXUMlAK+7P`vm2,Q9^зV^ -Ζfo9^P T㜝k{Ζv>mj:Iʆ+VSZ /HsQu?70T{Ƴ>&.lJ -s*h@齑ѵ}0P/z6 B Q@d-deRAfS`r''3zq`mh9`I{B/O˯Gr8.(*RTvXu,Z:=K= TOIv]#} -tjG ,埊l k7n9?Re /omW<Jmr R($uu0lZFgOOdC[UiOGZFlߵyjr$F (ŮGMo2Rq`àQ(D==C{[f!(0`3di mYvUI:c7hծ`KX6}0sIBTY6XY xSM+]mVpq"KCuDw /j&^8}wm'$.GOk*cdY|1|~o8l_@8sp_l6~=t0scS΄QW~Bg/%蟝$/Sv4>:}Nr -S}q_~?zSw%wcsO>OR.<}m._\j&|tcq磏y,>s=yN:b&'b.Sʠ3&l  -p:?hFڭ}W2#]a7'27 -t.EeVV'JdmӾ551łXp>" -(4Y*T&8#/HȊZ,bfY3q XV0)/VͳyN8v@t įLBnKyRhgsMNfY?[2>NVyVǍs'D.\xst}^ ^Ng|:ע߰MɁ|5nF&G}tiYƈTbʽuߴ{?|Ư-}qq(5M'湶ԽjT~{&l[ؓt9񇮴=TƧF洺\e"/J~玨>*Z6N -08!qS)YpK=]8SG -P`{r+O_\E@EOVs<{+>ۧW=T7*sj՜(_ a~|?Džig,=J¾ b\8RQ=.s~},vbO'gO -ɽG$%$GM;u8 W8CCQF)\T܄_[OF``T!gKޝ~YWEkۙV#]ޖ_܃wvKm5=y-PHuΪ)_\omg86z}f7t8?3^ MTO$/"\2VĎu`^)oK(<50;hZ]]!El(Ho.;4E#ohU!1t"f1^2 l)5 -6cI"*fӚs\as=YNپ^0bx-߮ki\3OpmFGTKXmҡ 2Gڍ.1vBOQD`bE(-UnZ1/pjtH5¸ڰ7~ s~լq1=盺g\.0-;Ԙqha<> ɤlّ9Rg['Mkqfb;~Ȑ5zx+&g=½&=!$sVٞjKX?@?F`\-*)ds\gz^Bݞ3VY!-eBif]i:)f݊Y-%CRB# )TѦ9 bPuJ W#=>I3VZ@{a'-|5' >HY(:桂a0'v&ZX,#X\x',RVFYkݥin5 O7vBs-&!ݶFgCA-tO't'4Aiy\Uؤ^]΢$"fB&f{ JJSG;6p? JT*W.j>}Mekz L}ңB%QPȎUl: V-|_=L)eS2m+!5=kAn 6~{;V.-(s7ﰋgTٖvA@9> ӹ_39S6gk#LvlG۞ONΜL2Ifj&yچF - K+(`]ckJll(؎ZV!(@p%k;m{eBɞf<˧c<QU@ Y7d㷼1x*.1J//m -0 a9T'֯۵>`M7UDeI״v3m`N6M]-z' -n;tkmca(TLzeuҒ-_Ɂe -p0b:Jaa<" "(9x.â,*0H("_D&yLqP8,щ"D -$1$$R42Mt2NI42j{.ikCI{|0|,ۻ^W*U4 LXRkT ul5pasƵsPX~R]6D *dg1m*]4pfѷIeT]j3<*KD0H +C1 (4)z 4T퉍n.)^܁O{ ϰ7Y<ǃ*uuy9CPQY]o{ڼEvQ@֘_~:?WQK%%T1[f!xHzt>7€5ʭU$"ڍTGg@0(qw%Y] Ҍ3z|?Lu ݊U-.uv^(KࡡH۶OPH*aKwE}vPr4;SUť| v9+qjQ 򀺪it5ogC@fEyC,}0:ٟP^5khis\.eF=V8:&CytqttiF&-G8շ,Bs&uvPYw{J\VVQ(U+?XMA_ŕTl[T7ǬD|{n8/u} RyHiWZ,J| >7m+۲Ƭ62=!h+'CA'F uW55@mǂԓҟuu.G%&y:|Ӆ3ﻍ;Jf1fγ\6 -s35vOz7jMI po(bl3+r2Xz0DM"b*OjRDB#cB,ؽ1]2U֚(F>y)jfՃ&~#NIHM{g:Aot2n-fIu{h`i4EIY`xD:(VA2ԶGrUw{[gE&]aL̺¼ - e}jiVwE6-M/fQ7UG +=||m`#s=$MpۏΩ\V F-* -FmK+&_ו)ȇP 5֣BS# +7<\ p,|E}^f4#W}|sY/)~)aLǕZe=Ϋ!ch- R"vFـM)jhϔfӸc>nU;G/5?3uro7/}_T}OL62%|E\KpWv{ZDo:e\ Ձܲ)-Gn!WmXdݟf:$82+. b7ӕB}*d9П K9}>tGKJq{!w)QgQ<ELY 0JUMꇁ9h,9usie~"7ݺ9={  GtwM]nڭ#ojet#; -zycӪGڼ:yzuj!*n&lt]k'[|Oe;eI˭@H@io/]]6Fv Q(eTR '~|:oIVn]+ܛ wӾ#taۭY:޿ܼ`f[d!@} Td14.KL' :gnD9ggpԖ;Yt嶙#PbVB";8X3uʼn-vVb3`EH# %dqBL. $ ^"beJD%LgpE`IT1t` $<AT&KD+ac&"Ǒ<㐄t5 Cƥrh\`Qd*a0,OHlJh:O qt&d<*A`O'aLAb:' <&$^@bbXUl c ycbny\}blk=6\aGccktj'tI,"F6`JhD6#B"{.Grb!K9b%?d#Gq$"F("a$6G$X02BԒ+PܗcD9L6A9XO#‘x"Beb0L#G R4d9 -U@I +A+a`YlN"K @9,/.SX.6Y ĸD'AlF!KXd@CdpT1Iy$!J@bH$$DL,An,Ɠ04 -LvpTF-3l&A 0XE|b&t2Cpd>6\$Dbx*iBED æR:a+x% %d :)nR(` -~4.Cpx>8<%,,CX2&e Y86%$,詀!x\ķp2!bA -xlYH"w,E@G|>!|O8)!I,108t*҈D(\., -£j{ZTWLbr\mDWCe{{!"#? 2~;0#nC|yF?CG -v ?%BAJ -[Өz\_]Oo6Ld8kŮQ -*"7t;[!,nSw !(<(PCjK{Ij }P{&m)I0/k1\ߛ!G(,3~k2EՅYK V; +q'DPi0du+=nok޹he3Y}Rost,,O̓N}fKp !l"%|ex]el&4fړj -M:LBs5yo3!+R Cck׸XqEգQZncejQ ==_QcX5{C 2bZQB}FWJxqb^lM)6h -1(2woJr$t`1t&$\ -^(M'd(@sހqYz4mY8Z))4)a(rJ1wu -6Ud,{uܩ3J^8ROU -VZ -Cko$`6鷙lkKֿp< 8{;a:]$2H(a"ʪ,y4|v`T{<>O!4AD:9f$YUBaR6(ij;`KDȡFY(@['?Na5m30X6u䞋Jr-%ic)%6Ȧ쬖BᣓJMe&~ɶÖΫ))PqE~IGP#ݳ:]GÞZXZ@M`l6*MdmI.hO^;@so/ye UL "[#jh'+״d%7b^P_N#?wa[i Hl2NW m A'GaNǟG<|ccC+ ({/kld#$R{cݩ/Q %Zo%gkOejÊʠ~y6NfՙsQ ֿ#_ބӯЉT._">ыQrJ~{GUR1m81-6Aaֶ[C|iM Ɇ˻w.GOM"t9pۀ:w8_~ ~pWF8{t}o__fTK`5qKu.:X=| 7)YNYϹw=2b2K)13/+r--4f2'O^^Gs9usAi$6$5 dZZ=d2G,60nEIaRp/!Cb<;!L7] 43Lf%]aJ"3uP\,ĉH~XT$M]'IpOiX^ 2lra[{"xC[8Zj%&mkCspO & ҳ%sR˰*Ń`M xBL¶,7c1'vMR35mNr)(¿Df9}` ()i`%2! `uhU[jJ$y$((> 06 я2x@T0HP7ir2}8B 6w -e4c -K$0|DO +6cMBR˂)| -YiIfkG&p50a oNG #;<QRF j:\3tr7O'*- gEa`*Km6ͤ=ˀTFxs }dG ɉCP fr]'rfF.3#ihHq -c0 -(!"rs6dp±|^sGבypm'亃RtE/drFbeFt!0#ꆝL6b@&?F]h j` aĻGI1(C$>W:$D0ɋFbC/!,IŴ45qy܋2\48B"TXhIa`fCѩ@rI6nQ+'jW)Nb2/𳘆$rM;"0Xb4{茖ThюC4 -m 4ĺ2gf `LġjDP6k13&4) )T 8CN$u-4g(K1 -b%";E39̑Ij(8z)KX0N2;MfZ@xEs7UbW:Xw*<L͏B'afsAd n1䁅AbԲJ A9G5ZlhQTLznjZ*J͟qFe碪~@On}Pƞ겘ǎQ҈ogLk~B) e[rrb.!bS -r89maj?udj X,UАChq`[/_5듋Gtʎ ?VA*S:VK3f;tn .XtC5{h}Ry0񕆉wQ}顦 ~jw}s=H<:l87.Piii{?~sLjzyuU훻xI־W=U5jԜr5ӯݪWʝCt_UUޛvUsz|vIׇ,(Ν{^ƎW/\L_'l[H4hҎH?߀pR5RdXSg,׎Iں?X]:Yo>D va?^\_0ӏJ)u|¬"aF8M޺)m[Q~&}\}ݧucFmll_rqԵZ.WcPۅ]Ls7FR^[?b٩i3jV?aC߿w75Ȕee~_Ϝ(}WϞf׫ -06aa S'\PP=0CR0>ʌh@jF4->0!)Fėl߅,΄i$EcT [9W{GƎ=F]d O?J_<҇2nإ֟~gw{xuvgCgWzv/?Oq-OJ+͛}ծi=چ0e'o3\uxYwT-B%%P<-ˏyM#R.M^qOkR}Cǐ.o3uMsm8{ۛ]mg֯Wziڈgݻn~X:ܲDo?rr1\\|ɣ{xScn[77_{+^n>_6@:X]^;v+6L;M[ʿʫǏmZqHFw1}+'T^1f='E &v{[_%ol(!ߞx[5C;hߺgܹY_99myu|g5n*/sU9o÷[7jz_oC[os -2"hۗMҭR7G>VQ8g9WPQ?k$-u0{w^[}7}iJ ׌vRscFחm *<; =ue \0 r°*o֝rՊnU ˧)sZk5g/4fǦ(_~hf˫o~o<_K/)UlԳ%Yd{.f}:h2,Kʬ Uӯ.dWdr^+ƌkQSsMyʫ_c?ݤNJl qF(>SLhiܲoʩ ,vzFf){V|P1jS5Wgοtԁ֝R4g>ˆƳ?vl3}Z qzBw&hU!SwBU4oo4o/{ا<%k?%2HO>>mPK杽x[aa1Uh=2(F#4.n@޾𗁧go‹\u0011ÇÙé¯=©X§­\rµU2ô–ˆo\u0015•[«Lߑ\tê\u001C¬†–\\A¤±šw\u0016\u0018dm—hQ^\u000ER\u001D,3Í­3‰Âkt¼#v6¶(ªÓ„­\u0002ô±Z\u0002Rô\u0016àùÏk–,­«^ô–\u0002!\"[áªeRÛ#]\nLo\u0006\u000B£VV¹²í8Ôi/òñ˜¼„\u0003=±¤!÷\b#Smá\u0019Ä#ðô3 ÌC;f®*3jDèQ”9;m¼uŠÆmÒÓ\u0007€o©\bÙ\u001CñRXþ\u000FxqËo\"©0ÅCØÇ΄~È;¶\u0001qû÷","r_string":"dgyii","r_array":[],"o_boolean":null,"o_int":null,"o_long":null,"o_float":null,"o_double":null,"o_bytes":null,"o_string":{"string":"pljyrbpos"},"o_enum":null,"o_date":null,"o_timemillis":null,"o_timemicros":{"long":2093847624081664873},"o_timestampmillis":{"long":795665696182405026},"o_timestampmicros":{"long":-3544683124606080695}},{"r_boolean":false,"r_int":-1907028842,"r_long":5889281411190432141,"r_float":0.5014546,"r_double":0.15171108483997975,"r_bytes":"¦\u0003j\u000B_ô\u0011","r_string":"oqdugprjs","r_array":[{"r_boolean":false,"r_int":526768164,"r_long":1128228147442996047,"r_float":0.9940966,"r_double":0.6851970879969946,"r_bytes":"5Íãñãù5ßy·«","r_string":"nopfwok","r_enum":"ONE","r_date":1,"r_timemillis":2138881021,"r_timemicros":8379212483060540145,"r_timestampmillis":-733371409616044088,"r_timestampmicros":-8882045459841546578,"o_boolean":null,"o_int":null,"o_long":{"long":2923452859356593622},"o_float":{"float":0.3000914},"o_double":{"double":0.45347933148475916},"o_bytes":null,"o_string":null,"o_enum":null,"o_date":null,"o_timemillis":{"int":1906313646},"o_timemicros":null,"o_timestampmillis":null,"o_timestampmicros":null},{"r_boolean":false,"r_int":-739204399,"r_long":3644745387332367134,"r_float":0.55025905,"r_double":0.44732848448003737,"r_bytes":"\u001FW1¼È.ÿ|žüØ","r_string":"tvedldpvxp","r_enum":"TWO","r_date":1,"r_timemillis":420373130,"r_timemicros":-2394695154813173917,"r_timestampmillis":4692035232860778362,"r_timestampmicros":6115504611574422356,"o_boolean":null,"o_int":null,"o_long":null,"o_float":null,"o_double":null,"o_bytes":{"bytes":"|Qù\u0004Gô\u001F îÉ"},"o_string":null,"o_enum":{"Level2_2_Enum2":"ZERO"},"o_date":null,"o_timemillis":{"int":-370653992},"o_timemicros":{"long":-139722356717875329},"o_timestampmillis":{"long":3274991126883963539},"o_timestampmicros":null}],"o_boolean":{"boolean":false},"o_int":{"int":-1482932502},"o_long":null,"o_float":null,"o_double":null,"o_bytes":{"bytes":"Š²WkNW´r¹Ùí-N"},"o_string":null,"o_enum":null,"o_date":{"int":1629979689},"o_timemillis":null,"o_timemicros":{"long":9179498302727260480},"o_timestampmillis":{"long":-2740965049740193573},"o_timestampmicros":{"long":7679211326821737054}},{"r_boolean":false,"r_int":-1511305403,"r_long":-1148603277336534222,"r_float":0.7563054,"r_double":0.5763304839914394,"r_bytes":"(w\u0006i\u0003Mˆ’»\u001F\u0002\u0002h","r_string":"pmmsod","r_array":[],"o_boolean":{"boolean":false},"o_int":null,"o_long":{"long":-5214277790385110117},"o_float":{"float":0.9952857},"o_double":null,"o_bytes":{"bytes":"Îú½›YS"},"o_string":null,"o_enum":{"Level1_2_Enum2":"ZERO"},"o_date":{"int":-65000578},"o_timemillis":null,"o_timemicros":null,"o_timestampmillis":null,"o_timestampmicros":null},{"r_boolean":false,"r_int":-614622056,"r_long":7693819476899998636,"r_float":0.58768785,"r_double":0.752248781740478,"r_bytes":"\u0011U‘+\u000EØ","r_string":"xfwilhqgkubrwwwucw","r_array":[],"o_boolean":{"boolean":false},"o_int":null,"o_long":{"long":-7225670259418328649},"o_float":{"float":0.8622825},"o_double":null,"o_bytes":null,"o_string":null,"o_enum":null,"o_date":{"int":-177723071},"o_timemillis":null,"o_timemicros":null,"o_timestampmillis":null,"o_timestampmicros":{"long":-1326237809876149504}},{"r_boolean":false,"r_int":-1709284815,"r_long":-9203776486703577143,"r_float":0.30161643,"r_double":0.17431229716442775,"r_bytes":"º¹ìV","r_string":"xvdbknkfyvj","r_array":[],"o_boolean":null,"o_int":null,"o_long":{"long":-3774581737314461171},"o_float":null,"o_double":null,"o_bytes":null,"o_string":null,"o_enum":{"Level1_2_Enum2":"ONE"},"o_date":{"int":1748533786},"o_timemillis":{"int":2070005465},"o_timemicros":null,"o_timestampmillis":null,"o_timestampmicros":{"long":-5240299537234470412}}],"r_date":1,"r_timemillis":-889109208,"r_timemicros":-5044678089578976861,"r_timestampmillis":1736691278111723121,"r_timestampmicros":-5970980267499242658,"o_boolean":null,"o_int":{"int":53813756},"o_long":{"long":5642111257310334249},"o_float":{"float":0.38430738},"o_double":null,"o_bytes":null,"o_string":{"string":"ntvthmnsqrpulcbeitklfagiqlfeiqgtmbdeiondanhwrilnprgamtiylwsdqusaqaoevtaenpkgdmvtxkbkcecmdvjeyscrajqkuwkmgbktejfoafyntmwggstmhmvakxihprhgdytchfeoeqcrfxrljokijyxyryqeeodstyqljxutqcvwesexdorvvebxihemxbaqxhhbyosm"},"o_record":{"Level1_3":{"r_boolean":true,"r_int":-1796187130,"r_long":2838172363040281841,"r_float":0.20044929,"r_double":0.9890257117970422,"r_bytes":"\u0013,ÎF0,þTþ\u0018","r_string":"ruedqjslnhk","r_record":{"r_boolean":false,"r_int":-319759983,"r_long":-3573971727884749283,"r_float":0.3607658,"r_double":0.12211255395989296,"r_bytes":"Þ䚶?ʀ»±","r_string":"jurssoo","r_enum":"ZERO","r_date":-2,"r_timemillis":-1581890807,"r_timemicros":7955878139471977884,"r_timestampmillis":3063664887289253035,"r_timestampmicros":2435676492854551584,"o_boolean":null,"o_int":null,"o_long":{"long":-417094272714195280},"o_float":null,"o_double":null,"o_bytes":{"bytes":"Á\u001F%·©"},"o_string":null,"o_enum":null,"o_date":{"int":-944996608},"o_timemillis":{"int":94643554},"o_timemicros":{"long":4214010458437561607},"o_timestampmillis":null,"o_timestampmicros":{"long":-5154398316205613279}},"r_enum":"TWO","r_date":2,"r_timemillis":-109800293,"r_timemicros":-1738351576038079267,"r_timestampmillis":-2509662657280625099,"r_timestampmicros":-8301589503663445548,"o_boolean":{"boolean":true},"o_int":null,"o_long":{"long":-7324260115146141577},"o_float":{"float":0.9133546},"o_double":null,"o_bytes":{"bytes":"\bÍ®D\u0014¢y"},"o_string":null,"o_enum":{"Level1_3_Enum2":"ZERO"},"o_date":null,"o_timemillis":{"int":-1875213117},"o_timemicros":null,"o_timestampmillis":null,"o_timestampmicros":{"long":7559389503312500966}}},"o_enum":null,"o_date":{"int":1535900591},"o_timemillis":{"int":1437138744},"o_timemicros":{"long":-8045960972645256304},"o_timestampmillis":{"long":-1771184917401105662},"o_timestampmicros":null} -{"r_boolean":false,"r_int":-579216430,"r_long":-8139492250786879432,"r_float":0.08661997,"r_double":0.461927175891524,"r_bytes":"","r_string":"gwwsungsr","r_record":{"r_boolean":false,"r_int":664019269,"r_long":218296981684527,"r_float":0.14133048,"r_double":0.49374467338415107,"r_bytes":"Gª»%KM1","r_string":"gkcypicnjijn","r_record":{"r_boolean":true,"r_int":-1464635004,"r_long":7103484949008140109,"r_float":0.33839798,"r_double":0.46735309602786135,"r_bytes":"lìÂb","r_string":"wi","r_enum":"ONE","r_date":2,"r_timemillis":1379356304,"r_timemicros":5058410815665083284,"r_timestampmillis":2161379472323661749,"r_timestampmicros":999243965597603716,"o_boolean":{"boolean":true},"o_int":{"int":1776641407},"o_long":{"long":5524767877095152249},"o_float":null,"o_double":null,"o_bytes":{"bytes":"Ž¹ö\u0007²"},"o_string":{"string":"vwjbxlixtjwga"},"o_enum":null,"o_date":{"int":499348577},"o_timemillis":null,"o_timemicros":{"long":3038754263295688841},"o_timestampmillis":{"long":1333827870388382137},"o_timestampmicros":null},"r_enum":"ONE","r_date":2,"r_timemillis":-938706499,"r_timemicros":-2781742627635093783,"r_timestampmillis":-2728583944887455207,"r_timestampmicros":1906254301962292040,"r_array":[{"r_boolean":true,"r_int":712573267,"r_long":-7616071596813501322,"r_float":0.21402729,"r_double":0.2434542539760206,"r_bytes":"","r_string":"br","r_enum":"ONE","o_boolean":null,"o_int":null,"o_long":null,"o_float":null,"o_double":null,"o_bytes":null,"o_string":null,"o_enum":{"Level2_1__2_Enum2":"ZERO"},"o_date":null,"o_timemillis":null,"o_timemicros":{"long":-1252551912914083332},"o_timestampmillis":{"long":-4578328962251020330},"o_timestampmicros":null},{"r_boolean":true,"r_int":-771563079,"r_long":3042218377438146583,"r_float":0.6388912,"r_double":0.7545266502358849,"r_bytes":"\u001A4\"©*\u0010^[Ç\u0003qé\u001B","r_string":"dcgqtspu","r_enum":"ONE","o_boolean":null,"o_int":null,"o_long":null,"o_float":null,"o_double":{"double":0.32203537514396585},"o_bytes":null,"o_string":null,"o_enum":null,"o_date":{"int":-1116553470},"o_timemillis":{"int":2084703727},"o_timemicros":{"long":1245168196562425003},"o_timestampmillis":{"long":2920319426990842413},"o_timestampmicros":null}]},"r_enum":"ZERO","r_array":[{"r_boolean":false,"r_int":1079474749,"r_long":-5973517527231444238,"r_float":0.70854205,"r_double":0.18902197438331236,"r_bytes":";á/÷QR","r_string":"p","r_array":[{"r_boolean":false,"r_int":-895891157,"r_long":3290614762250575423,"r_float":0.99095696,"r_double":0.7394830504297403,"r_bytes":"°ýK±Å_†ƒª°e","r_string":"fyems","r_enum":"TWO","r_date":2,"r_timemillis":629758057,"r_timemicros":7446839147028314686,"r_timestampmillis":-961170949814280027,"r_timestampmicros":-589410408916102096,"o_boolean":null,"o_int":null,"o_long":{"long":-7851061955372773711},"o_float":null,"o_double":null,"o_bytes":null,"o_string":{"string":"uxasnoli"},"o_enum":null,"o_date":null,"o_timemillis":null,"o_timemicros":null,"o_timestampmillis":{"long":-780552213348541911},"o_timestampmicros":null}],"o_boolean":null,"o_int":{"int":-1767156131},"o_long":null,"o_float":{"float":0.3993256},"o_double":{"double":0.709205184926028},"o_bytes":null,"o_string":null,"o_enum":null,"o_date":null,"o_timemillis":{"int":-1642430519},"o_timemicros":{"long":8131608074669022322},"o_timestampmillis":null,"o_timestampmicros":null},{"r_boolean":false,"r_int":-1928800503,"r_long":-5053581345037644271,"r_float":0.95217264,"r_double":0.012664269523961158,"r_bytes":"ÙR/•þ\u001A","r_string":"egfwqca","r_array":[{"r_boolean":true,"r_int":-701704525,"r_long":7620175940725046612,"r_float":0.65076596,"r_double":0.889812316821471,"r_bytes":"ÅY3","r_string":"","r_enum":"ZERO","r_date":2,"r_timemillis":120092048,"r_timemicros":2096124763812293191,"r_timestampmillis":8332312094463064637,"r_timestampmicros":-2484574249479502501,"o_boolean":null,"o_int":null,"o_long":null,"o_float":null,"o_double":null,"o_bytes":null,"o_string":null,"o_enum":{"Level2_2_Enum2":"TWO"},"o_date":null,"o_timemillis":{"int":-140666709},"o_timemicros":{"long":-5441560192721135777},"o_timestampmillis":null,"o_timestampmicros":null}],"o_boolean":{"boolean":true},"o_int":null,"o_long":null,"o_float":{"float":0.8212539},"o_double":{"double":0.22470827152285788},"o_bytes":{"bytes":"¸\ff"},"o_string":null,"o_enum":{"Level1_2_Enum2":"ONE"},"o_date":null,"o_timemillis":{"int":362782295},"o_timemicros":{"long":6421422438469958895},"o_timestampmillis":{"long":-6301487640414569869},"o_timestampmicros":{"long":2906902694310298988}},{"r_boolean":true,"r_int":-1091784086,"r_long":-1791512325631292860,"r_float":0.117418826,"r_double":0.23626897371201616,"r_bytes":"é","r_string":"kb","r_array":[{"r_boolean":true,"r_int":-843882084,"r_long":1676790978851249759,"r_float":0.20474333,"r_double":0.6664504816130116,"r_bytes":"Haw\u0014âoQTCXÌ","r_string":"cbmlcjum","r_enum":"ONE","r_date":2,"r_timemillis":-2094844675,"r_timemicros":-961014871020701508,"r_timestampmillis":4224123483802461894,"r_timestampmicros":-5575702329284330458,"o_boolean":{"boolean":false},"o_int":null,"o_long":null,"o_float":{"float":0.47673374},"o_double":{"double":0.6163804089906723},"o_bytes":null,"o_string":null,"o_enum":{"Level2_2_Enum2":"ONE"},"o_date":null,"o_timemillis":{"int":-1013547296},"o_timemicros":{"long":-4179951870418332733},"o_timestampmillis":null,"o_timestampmicros":null},{"r_boolean":false,"r_int":34762681,"r_long":-2082297599348341900,"r_float":0.40382177,"r_double":0.8533714343005402,"r_bytes":"fÂÎEÃt[","r_string":"gbyaeqyiqhxmu","r_enum":"ONE","r_date":2,"r_timemillis":602598097,"r_timemicros":-2544023100992357508,"r_timestampmillis":1543285995496378212,"r_timestampmicros":-2865301672866916826,"o_boolean":null,"o_int":null,"o_long":null,"o_float":{"float":0.29811257},"o_double":null,"o_bytes":{"bytes":"*š–×\u0011xTŽØj"},"o_string":null,"o_enum":{"Level2_2_Enum2":"ONE"},"o_date":{"int":-999664939},"o_timemillis":null,"o_timemicros":null,"o_timestampmillis":{"long":-5410049394334454695},"o_timestampmicros":{"long":4999600396982592393}},{"r_boolean":false,"r_int":-885404431,"r_long":-8615790742176695608,"r_float":0.95839953,"r_double":0.44022542926038666,"r_bytes":"ì\u001EÖì\u0019)cœ52¤ù­","r_string":"pg","r_enum":"ONE","r_date":2,"r_timemillis":696951704,"r_timemicros":-2755147887415868050,"r_timestampmillis":-580013700618347058,"r_timestampmicros":-4663568537403934373,"o_boolean":null,"o_int":null,"o_long":{"long":8784243459746343446},"o_float":null,"o_double":null,"o_bytes":{"bytes":"j‰]Ì»ëJ/9"},"o_string":null,"o_enum":null,"o_date":{"int":795786860},"o_timemillis":null,"o_timemicros":null,"o_timestampmillis":{"long":-737535431307979864},"o_timestampmicros":{"long":7586701338785868219}}],"o_boolean":null,"o_int":{"int":-505968480},"o_long":null,"o_float":{"float":0.73131156},"o_double":{"double":0.427269984538849},"o_bytes":null,"o_string":null,"o_enum":null,"o_date":{"int":-1688624366},"o_timemillis":{"int":1964992007},"o_timemicros":{"long":17372705489067209},"o_timestampmillis":null,"o_timestampmicros":{"long":-4046715922757205362}},{"r_boolean":false,"r_int":-127642437,"r_long":1757198646912364941,"r_float":0.090331435,"r_double":0.7309896946210549,"r_bytes":"","r_string":"uixfsgfbrhkbkktoepndcsdegrxgfnolycncbeopfhbluwildbwotqmaqcwwpolxjufhrostltxwqhnaokrwtcyjxcqbuecopfmxevmamxpxqbrsvosqgkupghisbkcnqbqhiuogjmogfjovfyfmjgwfrrvusabebqmhdblf","r_array":[{"r_boolean":true,"r_int":-1494581016,"r_long":5444522837525978833,"r_float":0.97552687,"r_double":0.5252828430992923,"r_bytes":"n\u0017u÷\u0014ôʃfğ","r_string":"mq","r_enum":"ZERO","r_date":2,"r_timemillis":468908239,"r_timemicros":5300338299256697389,"r_timestampmillis":3179110669800860819,"r_timestampmicros":-3620504043704327482,"o_boolean":{"boolean":true},"o_int":{"int":-1129359739},"o_long":{"long":1549212674526768962},"o_float":null,"o_double":null,"o_bytes":null,"o_string":null,"o_enum":null,"o_date":{"int":-2115669907},"o_timemillis":{"int":2104152087},"o_timemicros":null,"o_timestampmillis":null,"o_timestampmicros":null},{"r_boolean":false,"r_int":-2120072288,"r_long":-6919043781749498423,"r_float":0.5907178,"r_double":0.438268647656451,"r_bytes":"‚“\u0015â","r_string":"iukomin","r_enum":"ZERO","r_date":2,"r_timemillis":1375179501,"r_timemicros":7197042640786495819,"r_timestampmillis":6865339631123799085,"r_timestampmicros":6334733647383059256,"o_boolean":null,"o_int":null,"o_long":null,"o_float":{"float":0.14556336},"o_double":{"double":0.5425721847769787},"o_bytes":{"bytes":"\u0013"},"o_string":{"string":"ebwcblntdytlwfr"},"o_enum":null,"o_date":null,"o_timemillis":null,"o_timemicros":null,"o_timestampmillis":null,"o_timestampmicros":{"long":-1439895960913658512}}],"o_boolean":{"boolean":false},"o_int":{"int":1536681285},"o_long":{"long":5264770570700114199},"o_float":null,"o_double":{"double":0.3125265909536209},"o_bytes":{"bytes":"SB=hö¯-u_NEf”ãï"},"o_string":null,"o_enum":null,"o_date":null,"o_timemillis":{"int":-547469644},"o_timemicros":{"long":-3956211225114159172},"o_timestampmillis":null,"o_timestampmicros":{"long":666693749769692953}},{"r_boolean":true,"r_int":-1470960107,"r_long":-3248455137846942232,"r_float":0.60545975,"r_double":0.9108947356811341,"r_bytes":"hñ–À-:R\n­","r_string":"pwytyv","r_array":[],"o_boolean":null,"o_int":null,"o_long":{"long":4981283118849385344},"o_float":{"float":0.47696066},"o_double":null,"o_bytes":null,"o_string":null,"o_enum":null,"o_date":null,"o_timemillis":null,"o_timemicros":{"long":8286142038975854475},"o_timestampmillis":null,"o_timestampmicros":null}],"r_date":2,"r_timemillis":-1911446365,"r_timemicros":-6006396431099775188,"r_timestampmillis":-6167435336631689566,"r_timestampmicros":-175388974755779302,"o_boolean":null,"o_int":{"int":-554335570},"o_long":null,"o_float":null,"o_double":{"double":0.35978073554243484},"o_bytes":null,"o_string":null,"o_record":null,"o_enum":null,"o_date":null,"o_timemillis":{"int":-910580054},"o_timemicros":{"long":-2545738090288550218},"o_timestampmillis":null,"o_timestampmicros":{"long":4444275215633617424}} -{"r_boolean":true,"r_int":1347219934,"r_long":5446611933613193899,"r_float":0.03234774,"r_double":0.012641653901194982,"r_bytes":"\u0004n{ÆðW°ª§û","r_string":"jrgfwmyyjydqbv","r_record":{"r_boolean":false,"r_int":936602996,"r_long":-1370453319858093996,"r_float":0.5900504,"r_double":0.3967656317586097,"r_bytes":"Ç4Ñmù“ï,é<>","r_string":"cuueouefe","r_record":{"r_boolean":false,"r_int":670535311,"r_long":8622222743199059930,"r_float":0.61217713,"r_double":0.20129774654949883,"r_bytes":"","r_string":"rtdkyqjalvtgw","r_enum":"ZERO","r_date":2,"r_timemillis":478368635,"r_timemicros":8531287713366348387,"r_timestampmillis":-6736883383333560284,"r_timestampmicros":-4285481629323581048,"o_boolean":{"boolean":true},"o_int":{"int":-1307390240},"o_long":null,"o_float":null,"o_double":null,"o_bytes":{"bytes":"R\bv…“#ßà}[ý"},"o_string":null,"o_enum":{"Level2_1__1_Enum2":"TWO"},"o_date":{"int":1431877870},"o_timemillis":{"int":493608724},"o_timemicros":null,"o_timestampmillis":null,"o_timestampmicros":null},"r_enum":"ONE","r_date":3,"r_timemillis":-721706409,"r_timemicros":1408459398972229859,"r_timestampmillis":7603230730496993577,"r_timestampmicros":-8364978844886775365,"r_array":[{"r_boolean":true,"r_int":-1714075213,"r_long":5285056645074475169,"r_float":0.43433183,"r_double":0.45938935302171935,"r_bytes":"³\fýƒÑKG","r_string":"upw","r_enum":"ONE","o_boolean":{"boolean":true},"o_int":{"int":1410976585},"o_long":{"long":2129054801518199383},"o_float":null,"o_double":{"double":0.9107702274713737},"o_bytes":{"bytes":"V¼:"},"o_string":{"string":"nwu"},"o_enum":{"Level2_1__2_Enum2":"ZERO"},"o_date":{"int":-866404807},"o_timemillis":{"int":-1133118113},"o_timemicros":null,"o_timestampmillis":{"long":-1296750803223540809},"o_timestampmicros":{"long":3803609103298104673}}]},"r_enum":"ZERO","r_array":[{"r_boolean":false,"r_int":1547917477,"r_long":-5586420453555731578,"r_float":0.3926627,"r_double":0.09276496608472828,"r_bytes":"³ÖR¶[Ç\u0014ÿ~ØxÔ2s^>”÷Kkø0\u0012—kw\u0003\u0007º\tƂH!\u001BǍ‘ šÊ¹Ÿæ^zyý“Áè","r_string":"tp","r_array":[{"r_boolean":true,"r_int":-1433898458,"r_long":3315660226714323054,"r_float":0.9532116,"r_double":0.6659229161925869,"r_bytes":"RÇ","r_string":"jckiqedqr","r_enum":"TWO","r_date":225567192,"r_timemillis":1149570633,"r_timemicros":-7008165035531598721,"r_timestampmillis":-5077103332704340767,"r_timestampmicros":-9027275733101264365,"o_boolean":{"boolean":false},"o_int":{"int":1853064290},"o_long":{"long":-7921391018630849491},"o_float":{"float":0.6176056},"o_double":{"double":0.8865217006836161},"o_bytes":null,"o_string":{"string":"udgayiordjjbvwbnjmspkpwaykcdbbffuwoqngrfcdwipiidxgbkdybddtmyrgjregaqrgntkipgydmmcpvabhtntsuykwdwoyammjkelkqodqbf"},"o_enum":{"Level2_2_Enum2":"ZERO"},"o_date":null,"o_timemillis":{"int":-1764109533},"o_timemicros":null,"o_timestampmillis":{"long":-3221568773959890355},"o_timestampmicros":{"long":-4653550255284266087}},{"r_boolean":false,"r_int":1679237590,"r_long":-3386084116261053545,"r_float":0.28027427,"r_double":0.9070336179971674,"r_bytes":"¡\u0010ʑ/ã","r_string":"mkeygqfduqg","r_enum":"ONE","r_date":-1972670828,"r_timemillis":-1048661221,"r_timemicros":-775573750735793351,"r_timestampmillis":8283035146219544759,"r_timestampmicros":6171875571111283336,"o_boolean":null,"o_int":null,"o_long":null,"o_float":{"float":0.48501503},"o_double":{"double":0.19536330880668462},"o_bytes":{"bytes":"1­*ásÒzvdxã串R¥Ë·A\u0012ìî\u000B\u0015…~ýÔ=t}RÍbû¶mâ&Ñ÷\u0011.z‚{\u001B@®±žìÀPVi2¶»·Â.W°bH¬[\u000E[\u0001א$å'AI‹œ)ñTäG‚Y\u0006\u000Fõ\fdEÈE}ÜÔ\n±Eiš\u0018?Å îÄQ¢\u001A±RŸ’KWô“â¸2¿F€VÍñìŽà$é\u0016péî°|Wéׇ4\f2C\u000FJ…”\r´\u0010÷ó¿\u001E8†\u0001¬6Î\f„ƒé:JA¸v‰ëòË/\bôpßvã‡Û“ªÖÚ=5>¢\u0017åQŒ'°\u0006ê+?Y!{)1–)ÎNs¹G?\u0007lÈÊ"},"o_string":{"string":"ugqffxrh"},"o_enum":{"Level2_2_Enum2":"TWO"},"o_date":{"int":-110471152},"o_timemillis":null,"o_timemicros":{"long":-8837198765606885738},"o_timestampmillis":{"long":-1067217513273140863},"o_timestampmicros":null}],"o_boolean":null,"o_int":{"int":221217694},"o_long":{"long":4807359726807947029},"o_float":null,"o_double":{"double":0.03358613546068545},"o_bytes":{"bytes":"A­"},"o_string":{"string":"qcgbvkeaymqevibtpmeissajioqlftricdfmwdypdsiantqrkjrvrvnvlkxfimfumruqkeklyytncdhdhmvfxljjxumyrglugqoornx"},"o_enum":null,"o_date":{"int":1165864622},"o_timemillis":{"int":811460107},"o_timemicros":{"long":-3963438556978596744},"o_timestampmillis":null,"o_timestampmicros":{"long":-616725463995422588}},{"r_boolean":false,"r_int":-1556257706,"r_long":369352950626085492,"r_float":0.4335717,"r_double":0.3574972023535795,"r_bytes":"‘\u0007/","r_string":"","r_array":[{"r_boolean":true,"r_int":1051491461,"r_long":4156932617478015330,"r_float":0.23907411,"r_double":0.2489405617695819,"r_bytes":"6\r","r_string":"mwvqnrukwp","r_enum":"ZERO","r_date":1554292144,"r_timemillis":2099774975,"r_timemicros":8380325298977957434,"r_timestampmillis":126018130083337846,"r_timestampmicros":6800950183535011180,"o_boolean":null,"o_int":{"int":1874903773},"o_long":null,"o_float":null,"o_double":{"double":0.11155712682594676},"o_bytes":null,"o_string":{"string":"uawpvjmjwmlk"},"o_enum":null,"o_date":null,"o_timemillis":{"int":-776440887},"o_timemicros":{"long":-5622837961883166893},"o_timestampmillis":{"long":-6951277229568160284},"o_timestampmicros":null},{"r_boolean":false,"r_int":1278615814,"r_long":7127716157922954938,"r_float":0.84045523,"r_double":0.5011900983757385,"r_bytes":"\u001D­£>Gù","r_string":"lvdrws","r_enum":"ZERO","r_date":2091870071,"r_timemillis":-1228030004,"r_timemicros":1254326544612356612,"r_timestampmillis":3749555772299555843,"r_timestampmicros":1700837253032566925,"o_boolean":null,"o_int":null,"o_long":{"long":5812428332182475547},"o_float":null,"o_double":{"double":0.4414511746211036},"o_bytes":{"bytes":"š¹§€âÜdº*"},"o_string":{"string":"fgipodbvlajo"},"o_enum":{"Level2_2_Enum2":"ONE"},"o_date":{"int":178329513},"o_timemillis":null,"o_timemicros":{"long":1470632531182688276},"o_timestampmillis":{"long":-7828473054705769059},"o_timestampmicros":{"long":6071198805154954335}},{"r_boolean":true,"r_int":-2140299996,"r_long":-932297035752812329,"r_float":0.9362802,"r_double":0.913729762933234,"r_bytes":"ÿ\"ûþ","r_string":"tpduhfufspursa","r_enum":"TWO","r_date":217160453,"r_timemillis":-70755161,"r_timemicros":1789017992080512791,"r_timestampmillis":-9140500547987496910,"r_timestampmicros":-6707027530136730927,"o_boolean":null,"o_int":null,"o_long":null,"o_float":{"float":0.5890986},"o_double":{"double":0.033848178050755795},"o_bytes":null,"o_string":null,"o_enum":null,"o_date":{"int":1802820538},"o_timemillis":null,"o_timemicros":null,"o_timestampmillis":{"long":-5072171339131873088},"o_timestampmicros":null}],"o_boolean":{"boolean":false},"o_int":null,"o_long":{"long":-4051571256787408770},"o_float":null,"o_double":null,"o_bytes":{"bytes":"ö\u0013Ûè_šN\u0002"},"o_string":null,"o_enum":{"Level1_2_Enum2":"ZERO"},"o_date":null,"o_timemillis":null,"o_timemicros":null,"o_timestampmillis":null,"o_timestampmicros":{"long":7122402565375630863}},{"r_boolean":false,"r_int":74607656,"r_long":-7494827422455415246,"r_float":0.6675359,"r_double":0.4733142445759878,"r_bytes":"±\u0018nqèÜ","r_string":"ugkfn","r_array":[],"o_boolean":null,"o_int":{"int":-1210099720},"o_long":null,"o_float":{"float":0.13561839},"o_double":null,"o_bytes":{"bytes":"ûã\u0001"},"o_string":null,"o_enum":{"Level1_2_Enum2":"ONE"},"o_date":{"int":-1044196983},"o_timemillis":null,"o_timemicros":{"long":-4800634297532426219},"o_timestampmillis":null,"o_timestampmicros":null},{"r_boolean":false,"r_int":-642249110,"r_long":8913284431562368824,"r_float":0.1085425,"r_double":0.2697889724752758,"r_bytes":"â\fÁr­²£vyðJ÷","r_string":"dlidomhlfwhn","r_array":[{"r_boolean":true,"r_int":1902469115,"r_long":2446052028474129364,"r_float":0.2947042,"r_double":0.17907109815488642,"r_bytes":"¡Æ¼!Zù³QI","r_string":"kfotlyg","r_enum":"TWO","r_date":-425872581,"r_timemillis":-179429277,"r_timemicros":-7361031858338335404,"r_timestampmillis":-553876593388832867,"r_timestampmicros":-8871973765110292425,"o_boolean":null,"o_int":{"int":-1392820434},"o_long":{"long":-5213328552675829385},"o_float":null,"o_double":null,"o_bytes":{"bytes":"B:\u0017ð\u000B\u001D“h8"},"o_string":{"string":"n"},"o_enum":null,"o_date":null,"o_timemillis":null,"o_timemicros":{"long":-6505768653850754781},"o_timestampmillis":{"long":503985491302402126},"o_timestampmicros":{"long":-5565151236456402627}},{"r_boolean":true,"r_int":797208707,"r_long":-8173855096498070988,"r_float":0.93866754,"r_double":0.9345191341910863,"r_bytes":"h#ÍJNô","r_string":"ypjynpk","r_enum":"ONE","r_date":738290838,"r_timemillis":-945520379,"r_timemicros":2657521887869556805,"r_timestampmillis":-6999314310648459359,"r_timestampmicros":-5673864333182766562,"o_boolean":null,"o_int":null,"o_long":{"long":3459043110404381676},"o_float":null,"o_double":null,"o_bytes":{"bytes":"¥Y\u0018G–wÍæ˜aº}\u0019l@"},"o_string":null,"o_enum":{"Level2_2_Enum2":"ONE"},"o_date":{"int":1937201637},"o_timemillis":null,"o_timemicros":null,"o_timestampmillis":null,"o_timestampmicros":{"long":8979074853744059785}},{"r_boolean":false,"r_int":51678435,"r_long":-917449681700044150,"r_float":0.11861086,"r_double":0.24064739218381592,"r_bytes":"ôQ\u000E_¼","r_string":"mceeffrfc","r_enum":"TWO","r_date":-2134351724,"r_timemillis":1719434542,"r_timemicros":-7998930693196505414,"r_timestampmillis":7129123388206649293,"r_timestampmicros":-3033066664224759478,"o_boolean":{"boolean":true},"o_int":null,"o_long":{"long":-7502408543593194838},"o_float":null,"o_double":{"double":0.7095628907737596},"o_bytes":null,"o_string":{"string":"lfl"},"o_enum":null,"o_date":null,"o_timemillis":{"int":-1496758262},"o_timemicros":null,"o_timestampmillis":{"long":2189539852810873039},"o_timestampmicros":{"long":3358116069958817267}}],"o_boolean":{"boolean":true},"o_int":{"int":-1411952591},"o_long":{"long":-4698889129914356395},"o_float":{"float":0.751377},"o_double":{"double":0.8768797531089788},"o_bytes":{"bytes":"¬vKˆ\u0002Ò"},"o_string":null,"o_enum":{"Level1_2_Enum2":"ZERO"},"o_date":{"int":-2129098253},"o_timemillis":null,"o_timemicros":null,"o_timestampmillis":null,"o_timestampmicros":null},{"r_boolean":true,"r_int":-1454611638,"r_long":1957115049235555288,"r_float":0.4610973,"r_double":0.14390568924168945,"r_bytes":"\u0006Ó;wh¢‡?ÆK","r_string":"mu","r_array":[{"r_boolean":false,"r_int":931851432,"r_long":5304607421195505989,"r_float":0.17175537,"r_double":0.47710606167326985,"r_bytes":"oC#Ú\\ì\u001F.Ÿó","r_string":"dyuef","r_enum":"TWO","r_date":-709111670,"r_timemillis":-511361962,"r_timemicros":9116728239430783067,"r_timestampmillis":9073596767309170049,"r_timestampmicros":-4861434578376887590,"o_boolean":{"boolean":false},"o_int":null,"o_long":null,"o_float":null,"o_double":{"double":0.4283196463817772},"o_bytes":null,"o_string":{"string":"jw"},"o_enum":null,"o_date":{"int":-1910304883},"o_timemillis":null,"o_timemicros":null,"o_timestampmillis":null,"o_timestampmicros":null}],"o_boolean":null,"o_int":{"int":1845094228},"o_long":{"long":-4053371310391851201},"o_float":{"float":0.30271745},"o_double":null,"o_bytes":{"bytes":"ÂÈ돔’+7"},"o_string":{"string":"mmhdtbummfs"},"o_enum":{"Level1_2_Enum2":"TWO"},"o_date":{"int":321830233},"o_timemillis":null,"o_timemicros":{"long":-22807821442373790},"o_timestampmillis":{"long":4235198215477993665},"o_timestampmicros":{"long":6943281806090278261}}],"r_date":486561734,"r_timemillis":1638143333,"r_timemicros":-6753759387316823005,"r_timestampmillis":4121981630935220995,"r_timestampmicros":7948838715168058244,"o_boolean":null,"o_int":null,"o_long":null,"o_float":null,"o_double":{"double":0.9990116196287047},"o_bytes":null,"o_string":null,"o_record":{"Level1_3":{"r_boolean":true,"r_int":-402234070,"r_long":3855577840019991514,"r_float":0.30395895,"r_double":0.9281605842100152,"r_bytes":"0﬛ù£^Gô\u0012Ÿ","r_string":"inaa","r_record":{"r_boolean":true,"r_int":1235257447,"r_long":-5492128129882657677,"r_float":0.7558119,"r_double":0.21153266202710985,"r_bytes":"˜ë㪑â\u001A\nüó_\u0010","r_string":"uh","r_enum":"ONE","r_date":-1964029358,"r_timemillis":-1315280095,"r_timemicros":-4497461714239922349,"r_timestampmillis":-1705236287170814699,"r_timestampmicros":1505054933518110293,"o_boolean":null,"o_int":null,"o_long":{"long":-6641084184793240416},"o_float":null,"o_double":{"double":0.8361424128973017},"o_bytes":{"bytes":"0¨,„}"},"o_string":{"string":"runuvousydth"},"o_enum":{"Level2_3_Enum2":"ZERO"},"o_date":{"int":-1955764356},"o_timemillis":null,"o_timemicros":null,"o_timestampmillis":{"long":5506973618354555282},"o_timestampmicros":null},"r_enum":"ONE","r_date":888852251,"r_timemillis":-1030591706,"r_timemicros":2276443831583853007,"r_timestampmillis":790449031918711964,"r_timestampmicros":-2830268506568083863,"o_boolean":{"boolean":false},"o_int":{"int":-346727524},"o_long":{"long":1516488712477609845},"o_float":null,"o_double":null,"o_bytes":{"bytes":"{"},"o_string":{"string":"fnlptlxydiyui"},"o_enum":null,"o_date":{"int":-100722915},"o_timemillis":{"int":-2143909039},"o_timemicros":{"long":-5152481715735409305},"o_timestampmillis":null,"o_timestampmicros":null}},"o_enum":{"Enum2":"ZERO"},"o_date":{"int":745401479},"o_timemillis":{"int":665533576},"o_timemicros":null,"o_timestampmillis":null,"o_timestampmicros":{"long":-395457827778398055}} -{"r_boolean":false,"r_int":-1917853719,"r_long":621997544579470755,"r_float":0.84689975,"r_double":0.13449730161606221,"r_bytes":"r}ç҂\u0018ˆjÒªL®$","r_string":"ktccuvugpvmml","r_record":{"r_boolean":false,"r_int":519778092,"r_long":6631330912757835144,"r_float":0.6317901,"r_double":0.7584100991524964,"r_bytes":"6G$µ","r_string":"oeglk","r_record":{"r_boolean":true,"r_int":-267082850,"r_long":3832633501864481332,"r_float":0.504239,"r_double":0.2650988639432226,"r_bytes":"\u0007¨_ýj","r_string":"ljnpisl","r_enum":"ONE","r_date":-1330963176,"r_timemillis":-807787179,"r_timemicros":5773705604838557476,"r_timestampmillis":-8071848743159799928,"r_timestampmicros":2411378118127584442,"o_boolean":null,"o_int":{"int":-178093624},"o_long":null,"o_float":{"float":0.36101717},"o_double":null,"o_bytes":{"bytes":"æ\u0007"},"o_string":null,"o_enum":{"Level2_1__1_Enum2":"TWO"},"o_date":{"int":-53813064},"o_timemillis":null,"o_timemicros":{"long":49601073001044981},"o_timestampmillis":null,"o_timestampmicros":{"long":7440459141665320613}},"r_enum":"ONE","r_date":191257698,"r_timemillis":-47391693,"r_timemicros":-3873370694412346760,"r_timestampmillis":7862438654681340790,"r_timestampmicros":-7923218385848693671,"r_array":[{"r_boolean":false,"r_int":1526442328,"r_long":-6503568918227748624,"r_float":0.96467185,"r_double":0.6812449341371987,"r_bytes":"†[Ï#.€\u000B\u0019j­·sŒ","r_string":"peelamvouirs","r_enum":"ONE","o_boolean":null,"o_int":{"int":1161747244},"o_long":{"long":-7444876729032628369},"o_float":{"float":0.38539237},"o_double":{"double":0.9792575936124944},"o_bytes":null,"o_string":null,"o_enum":{"Level2_1__2_Enum2":"ONE"},"o_date":null,"o_timemillis":{"int":1017314406},"o_timemicros":{"long":8176689410793808766},"o_timestampmillis":null,"o_timestampmicros":null}]},"r_enum":"TWO","r_array":[{"r_boolean":false,"r_int":935237229,"r_long":3896118329169645968,"r_float":0.3498385,"r_double":0.2647528737446261,"r_bytes":"­ÍÐztHVão\u0016trå†","r_string":"yrbqugleelahp","r_array":[{"r_boolean":true,"r_int":-974530412,"r_long":-6050230586011813916,"r_float":0.22892857,"r_double":0.09955959534346215,"r_bytes":"£L'Ïu‹\f™ü\u001BZ\u0003d","r_string":"cqselb","r_enum":"ZERO","r_date":704997029,"r_timemillis":-14040331,"r_timemicros":2046487876962155457,"r_timestampmillis":808265604035233036,"r_timestampmicros":-7564888007521282984,"o_boolean":{"boolean":false},"o_int":{"int":1444241804},"o_long":null,"o_float":{"float":0.62687033},"o_double":{"double":0.5252288170678259},"o_bytes":{"bytes":"ÃV’Øèª"},"o_string":{"string":"svvyfunr"},"o_enum":null,"o_date":{"int":73898731},"o_timemillis":null,"o_timemicros":null,"o_timestampmillis":{"long":-1231075130946511225},"o_timestampmicros":{"long":-8740529085376610230}},{"r_boolean":false,"r_int":363321955,"r_long":7549944509426767090,"r_float":0.60747445,"r_double":0.49915268804713353,"r_bytes":"û|ăù•O","r_string":"usqvcjqqir","r_enum":"ONE","r_date":1741191969,"r_timemillis":-849620752,"r_timemicros":-5082748320677551561,"r_timestampmillis":7537491305832299662,"r_timestampmicros":8991419648836623240,"o_boolean":{"boolean":true},"o_int":null,"o_long":{"long":-7588558879120723151},"o_float":null,"o_double":{"double":0.13351455089511033},"o_bytes":{"bytes":"â\u000B\u001C/u‰´Ot\"ªØ¦"},"o_string":{"string":"qko"},"o_enum":{"Level2_2_Enum2":"ZERO"},"o_date":null,"o_timemillis":null,"o_timemicros":{"long":7997855479812023068},"o_timestampmillis":null,"o_timestampmicros":null}],"o_boolean":{"boolean":false},"o_int":null,"o_long":null,"o_float":null,"o_double":null,"o_bytes":{"bytes":";f34/\"\u0012&÷U"},"o_string":null,"o_enum":null,"o_date":null,"o_timemillis":{"int":-378624605},"o_timemicros":{"long":2924679318916264234},"o_timestampmillis":null,"o_timestampmicros":{"long":753691051069319381}},{"r_boolean":false,"r_int":-1613214588,"r_long":-7510550300923379742,"r_float":0.13468164,"r_double":0.8955369382441397,"r_bytes":";Š¾t£æŽ\u0019Y‡z!È","r_string":"n","r_array":[],"o_boolean":{"boolean":true},"o_int":null,"o_long":null,"o_float":{"float":0.9912534},"o_double":null,"o_bytes":{"bytes":"!óÜ \u001C†DӀì\b–"},"o_string":{"string":"ffrmkiiy"},"o_enum":null,"o_date":{"int":219457205},"o_timemillis":{"int":1269910029},"o_timemicros":null,"o_timestampmillis":{"long":-4069648698993684623},"o_timestampmicros":null}],"r_date":1395618435,"r_timemillis":2014769939,"r_timemicros":-3663228787646494249,"r_timestampmillis":5441336710695352695,"r_timestampmicros":-6361588872695117239,"o_boolean":{"boolean":false},"o_int":null,"o_long":null,"o_float":{"float":0.21113956},"o_double":{"double":0.3716745937149132},"o_bytes":null,"o_string":{"string":"v"},"o_record":{"Level1_3":{"r_boolean":false,"r_int":331408358,"r_long":-1344974997662125639,"r_float":0.42805022,"r_double":0.35205557359613193,"r_bytes":"Õ","r_string":"yrcwqsrk","r_record":{"r_boolean":false,"r_int":43731757,"r_long":728143048520292947,"r_float":0.72873545,"r_double":0.3789802068612689,"r_bytes":"q¥¿½w ?L\r_\\=!¡®øVÊ­\u0013cE¹\u0003ŠÊ\u0012¡\u0013EQÑ\u00186¬Úå/óàå§ä\u001F)¾Oñ’QEe#\n­0\u0017Á\u001CM—û\u000BO\u0015/\u0017dšæ`\u000FW™‘kò/\"\u000FÎeqê‚Ü®\u0005ášÂu\u0006,_yý\u0004K”»y#9iþ\u000F±Ñ'#-y\"aÌ-W¿]ŸK\u001F­ý£`•½Ï\u0011_rö(ˆkz‰¾ý$\fë\u001Eb¢ß[±4ÿ'mÒlv#9QH\b š•cM•T\u000E{e'\u0015Å%\u001E¯/¬\u001E™õ¾YO”]-Þ¿“","r_string":"xnacwahbxrs","r_enum":"ZERO","r_date":-1469272599,"r_timemillis":-36183761,"r_timemicros":5325241329771853504,"r_timestampmillis":1086428055293122790,"r_timestampmicros":3717624888266742288,"o_boolean":null,"o_int":null,"o_long":null,"o_float":{"float":0.8369445},"o_double":{"double":0.6594676103934839},"o_bytes":{"bytes":"\u0014„‘"},"o_string":null,"o_enum":{"Level2_3_Enum2":"TWO"},"o_date":null,"o_timemillis":{"int":-128826766},"o_timemicros":null,"o_timestampmillis":{"long":-3725208246760602926},"o_timestampmicros":{"long":3092437330110331728}},"r_enum":"TWO","r_date":1295257415,"r_timemillis":1540529702,"r_timemicros":6287560901929236997,"r_timestampmillis":5085481131534170657,"r_timestampmicros":-4115982969887845970,"o_boolean":{"boolean":true},"o_int":null,"o_long":{"long":-3697579525105025858},"o_float":null,"o_double":null,"o_bytes":null,"o_string":{"string":"atrch"},"o_enum":null,"o_date":null,"o_timemillis":{"int":317660905},"o_timemicros":null,"o_timestampmillis":{"long":-8768639825638993941},"o_timestampmicros":{"long":-6230540457793265832}}},"o_enum":{"Enum2":"ZERO"},"o_date":null,"o_timemillis":{"int":1548628159},"o_timemicros":{"long":8760403040456408042},"o_timestampmillis":{"long":-5856955516676303834},"o_timestampmicros":{"long":6587369761383700845}} -{"r_boolean":false,"r_int":-476045999,"r_long":1606322975529706082,"r_float":0.37002927,"r_double":0.804242873063274,"r_bytes":"ô¹(¸%FÄí/oÉ(Ґð  :ªóï€:13Û\u0005…ïÏ:†\u0003lìÐu7d=2æ|#»á\b+ëòÝ]óŸå»!âY#ä&5•©bŽ?Ëá\u000EF\u0015?Iž…ª´«D“3÷nÅØU\u000E愁ü…y\u0019öNùž·ÖÖNÿőŸ‚ÚT\r·ð\u0018*ØtË=P±Ùóóï\u0013ðÀ«\u000BŽºñ,~²|¾C-Ø_Èúÿ¨¶\u0007Â\u000B\u0010«\bP\u0013Ñ)\u0011Ó\u000F~Rü\u001F=ùßï\u0016â\u0005³\u0011I;Qq°\u0015:Ù¨h¬šÜ\bzd¶Î¬gŸð\u0012ÜÑJ<‰Ï×¹à\u00152¤]i¦\r\u000EWÿ\u001C\fÉ-\u0018\n÷YäÈ6ÿ៬\u0007F","r_string":"slivuacvqq","r_record":{"r_boolean":false,"r_int":-1443587431,"r_long":-7069072619239002471,"r_float":0.7984139,"r_double":0.13695729902650378,"r_bytes":"Ž-ф7ÈsYÔ^Öö²ÙÁY^:ÐuvjQw,„\u0001Ãë÷ºXöý½Q­­T8ÏBpü°¸Ö\u001DH\"QËTÊ\f‚xQGp¦…¯’šr\r¯j\u000E£Í HóכÐáòhvVUˆ¨\u001Fó\u000FW·&²\u0012‰VV¸2ÇcÒDóÑðÂ$*‘p‹µp\u001F\u0000Þߕ9½ÃS×(w<\u0011Ý1Ú\u00066Yëï èľvhß","r_string":"xgkroyvfngkurd","r_record":{"r_boolean":false,"r_int":1629034037,"r_long":-5352915250256705188,"r_float":0.40691292,"r_double":0.26210705406334966,"r_bytes":"","r_string":"ir","r_enum":"ZERO","r_date":-1544813208,"r_timemillis":-1896404876,"r_timemicros":2490773320447586705,"r_timestampmillis":-3255190344588796724,"r_timestampmicros":-6293347816488997441,"o_boolean":null,"o_int":{"int":1046827752},"o_long":{"long":2461242398838897916},"o_float":null,"o_double":{"double":0.30600747010999096},"o_bytes":null,"o_string":null,"o_enum":null,"o_date":null,"o_timemillis":{"int":-1608812044},"o_timemicros":null,"o_timestampmillis":null,"o_timestampmicros":null},"r_enum":"ONE","r_date":1945883500,"r_timemillis":-177912653,"r_timemicros":-3063920954573950035,"r_timestampmillis":-5638053272597928921,"r_timestampmicros":3744705592458788780,"r_array":[{"r_boolean":false,"r_int":34742352,"r_long":-7068445379980971578,"r_float":0.37264186,"r_double":0.859329624168498,"r_bytes":"\t¿i…","r_string":"vojrhin","r_enum":"TWO","o_boolean":{"boolean":false},"o_int":{"int":1691740876},"o_long":{"long":-8216031343915720068},"o_float":{"float":0.82493436},"o_double":null,"o_bytes":null,"o_string":null,"o_enum":{"Level2_1__2_Enum2":"ONE"},"o_date":{"int":-2010717461},"o_timemillis":null,"o_timemicros":{"long":3018611832365743130},"o_timestampmillis":null,"o_timestampmicros":{"long":5436828575632895061}},{"r_boolean":false,"r_int":-309196101,"r_long":4407205131399866203,"r_float":0.49943274,"r_double":0.2784272986173939,"r_bytes":"¡‘³Ý","r_string":"naalrqhalfcspps","r_enum":"ZERO","o_boolean":null,"o_int":null,"o_long":{"long":-1904064504493162719},"o_float":{"float":0.23829645},"o_double":null,"o_bytes":{"bytes":"rüêj«?‡pN7"},"o_string":{"string":"fgwja"},"o_enum":{"Level2_1__2_Enum2":"TWO"},"o_date":null,"o_timemillis":{"int":-33011093},"o_timemicros":null,"o_timestampmillis":null,"o_timestampmicros":{"long":5134709332388961961}},{"r_boolean":false,"r_int":889324846,"r_long":4563147629975122085,"r_float":0.57129383,"r_double":0.9135754602571841,"r_bytes":"f","r_string":"xyl","r_enum":"ONE","o_boolean":{"boolean":false},"o_int":{"int":-2108611910},"o_long":{"long":1838229000929731869},"o_float":{"float":0.11444563},"o_double":null,"o_bytes":null,"o_string":{"string":"nsjxdfmwo"},"o_enum":null,"o_date":null,"o_timemillis":{"int":764915161},"o_timemicros":{"long":655157204821389411},"o_timestampmillis":{"long":1301815762807763147},"o_timestampmicros":null},{"r_boolean":false,"r_int":1345200561,"r_long":6151796172093205067,"r_float":0.98385024,"r_double":0.6502758555233596,"r_bytes":"ZÞ\u0013R·7±e","r_string":"ehfay","r_enum":"TWO","o_boolean":{"boolean":true},"o_int":null,"o_long":null,"o_float":{"float":0.18734872},"o_double":{"double":0.38626537983313336},"o_bytes":{"bytes":"\u0017_µ?¬jå"},"o_string":{"string":"bqtrgcnwvpgbm"},"o_enum":null,"o_date":null,"o_timemillis":{"int":1065941328},"o_timemicros":null,"o_timestampmillis":{"long":-6537558475927911386},"o_timestampmicros":null}]},"r_enum":"TWO","r_array":[{"r_boolean":true,"r_int":616358047,"r_long":3464976948104491501,"r_float":0.80950403,"r_double":0.02434501420511559,"r_bytes":"Å\u001BoØìqãÛEã÷","r_string":"fdcns","r_array":[{"r_boolean":true,"r_int":428647431,"r_long":1859944877340932155,"r_float":0.35742646,"r_double":0.17450511547899883,"r_bytes":"oËÖ\u0006‹…","r_string":"ki","r_enum":"ONE","r_date":1412747476,"r_timemillis":2069507934,"r_timemicros":-8007533232462583081,"r_timestampmillis":9202848299600828260,"r_timestampmicros":-5343244978236121345,"o_boolean":{"boolean":false},"o_int":{"int":1019341008},"o_long":{"long":5802567431548881517},"o_float":null,"o_double":null,"o_bytes":{"bytes":"+1ïê…CO?Mçµ¾\nVJ ›F\u001C8•¹\u0007GqGOÍ\u001BOööØ(Bå,\nÂKNdŽåT\u000BˆH©¿ÌÁ=À\u000E…Ÿµñ¼ÿ\u0010/LNÌ®R\u0017J'È\u0012›³:Ɵ\\ˆä'µëö²À—AðzÚ¬bU÷Ãú:·ÒÎ5,æ”@(l½7Ï^&£•1B†Ç)’\u0003Ò¹\u0015ïc—¹ƒñU\bõ&\u0017\\X¨Ïb\\niý¶·®€&þ×BÞ\u0017dZÕȟŽÏ…³=Òl¡¯qîä\u001CbÛK\u001DØÎ\u0018ä\b<"},"o_string":null,"o_enum":null,"o_date":null,"o_timemillis":{"int":-835570600},"o_timemicros":{"long":-5190691395469651653},"o_timestampmillis":{"long":5556342054256311048},"o_timestampmicros":null},{"r_boolean":true,"r_int":-1765929664,"r_long":-3715027022450586830,"r_float":0.38440305,"r_double":0.6979678173265336,"r_bytes":"¾\u0012×","r_string":"nnvpr","r_enum":"ONE","r_date":1647017012,"r_timemillis":-754865568,"r_timemicros":7626755686733509734,"r_timestampmillis":-6998520096838132061,"r_timestampmicros":-5430232348162978358,"o_boolean":{"boolean":true},"o_int":null,"o_long":{"long":-3858232075131395818},"o_float":{"float":0.4559312},"o_double":{"double":0.3321662502295596},"o_bytes":null,"o_string":null,"o_enum":null,"o_date":{"int":-629114714},"o_timemillis":null,"o_timemicros":null,"o_timestampmillis":null,"o_timestampmicros":null},{"r_boolean":true,"r_int":1217208641,"r_long":-4811472996274193949,"r_float":0.42329264,"r_double":0.9470176448443148,"r_bytes":"¡ùü","r_string":"ja","r_enum":"ZERO","r_date":-464126376,"r_timemillis":-1864837562,"r_timemicros":-5537550344833011452,"r_timestampmillis":4001402662759348252,"r_timestampmicros":-1518115519261855708,"o_boolean":{"boolean":true},"o_int":null,"o_long":null,"o_float":null,"o_double":null,"o_bytes":{"bytes":"æÿ·ö5ðyâfW"},"o_string":{"string":"xnwfrughvxt"},"o_enum":{"Level2_2_Enum2":"ONE"},"o_date":null,"o_timemillis":null,"o_timemicros":null,"o_timestampmillis":null,"o_timestampmicros":null}],"o_boolean":{"boolean":true},"o_int":{"int":-1100279284},"o_long":null,"o_float":{"float":0.5810581},"o_double":{"double":0.27647733057108237},"o_bytes":null,"o_string":{"string":"bbficgcor"},"o_enum":{"Level1_2_Enum2":"TWO"},"o_date":{"int":2133110682},"o_timemillis":null,"o_timemicros":null,"o_timestampmillis":null,"o_timestampmicros":null}],"r_date":-2147071788,"r_timemillis":1170312102,"r_timemicros":-5528535385845908542,"r_timestampmillis":-4658815909725543091,"r_timestampmicros":4591992596962392312,"o_boolean":{"boolean":true},"o_int":{"int":1861217067},"o_long":{"long":-5783075229830695706},"o_float":null,"o_double":null,"o_bytes":null,"o_string":null,"o_record":{"Level1_3":{"r_boolean":false,"r_int":1184277881,"r_long":-7616118504441813679,"r_float":0.9190794,"r_double":0.5703855080446416,"r_bytes":"pgÙß","r_string":"sjlolwxgfjrpn","r_record":{"r_boolean":true,"r_int":705757634,"r_long":4279184483964997952,"r_float":0.02994299,"r_double":0.4476246323097586,"r_bytes":"µ­ ¦s\bÊ\u0006Ë","r_string":"r","r_enum":"ZERO","r_date":-1199771193,"r_timemillis":742752819,"r_timemicros":-1109233235380265850,"r_timestampmillis":1578336622741237694,"r_timestampmicros":3550646250003309168,"o_boolean":null,"o_int":null,"o_long":null,"o_float":null,"o_double":{"double":0.12184327307716114},"o_bytes":{"bytes":"É\u0018"},"o_string":{"string":""},"o_enum":{"Level2_3_Enum2":"ONE"},"o_date":null,"o_timemillis":null,"o_timemicros":null,"o_timestampmillis":null,"o_timestampmicros":{"long":-8140257075246328781}},"r_enum":"ZERO","r_date":-277761880,"r_timemillis":2096625170,"r_timemicros":-2985760703223816523,"r_timestampmillis":4157764243866253367,"r_timestampmicros":-1671153619876497795,"o_boolean":{"boolean":false},"o_int":{"int":2083024679},"o_long":null,"o_float":null,"o_double":{"double":0.9287871204335518},"o_bytes":null,"o_string":null,"o_enum":null,"o_date":{"int":1412289455},"o_timemillis":null,"o_timemicros":{"long":7421469378091987129},"o_timestampmillis":null,"o_timestampmicros":null}},"o_enum":{"Enum2":"ZERO"},"o_date":null,"o_timemillis":{"int":-149074608},"o_timemicros":null,"o_timestampmillis":null,"o_timestampmicros":null} -{"r_boolean":false,"r_int":-336984916,"r_long":-287442332252314707,"r_float":0.96117467,"r_double":0.09493983070155565,"r_bytes":"õÀʳý{wY\u00018}","r_string":"op","r_record":{"r_boolean":false,"r_int":-1210462755,"r_long":360381233410050197,"r_float":0.21392739,"r_double":0.44139587662124835,"r_bytes":"9¡°hœ©Ÿ”","r_string":"qavbspk","r_record":{"r_boolean":false,"r_int":314540046,"r_long":-2235876586248845900,"r_float":0.06978536,"r_double":0.6096473620749082,"r_bytes":"*k£‰§‚¬ÖB\u0000Ù&","r_string":"kqufucxy","r_enum":"ONE","r_date":-1677286780,"r_timemillis":1673645600,"r_timemicros":421127018735684942,"r_timestampmillis":-4318199252790515651,"r_timestampmicros":-5849949544447087872,"o_boolean":{"boolean":false},"o_int":null,"o_long":{"long":2074431557544556996},"o_float":null,"o_double":null,"o_bytes":{"bytes":"Cø\u0016°±«\u0004\"\u000FëŠË4¯"},"o_string":{"string":"hiigluaawegtj"},"o_enum":null,"o_date":{"int":-1364518248},"o_timemillis":null,"o_timemicros":{"long":6228691848457910395},"o_timestampmillis":{"long":7974171560559969773},"o_timestampmicros":null},"r_enum":"ZERO","r_date":-946316056,"r_timemillis":-116164825,"r_timemicros":-9043798335718164387,"r_timestampmillis":-5049435814602350789,"r_timestampmicros":-6375113295052926138,"r_array":[{"r_boolean":true,"r_int":1967812709,"r_long":-3843095613576363945,"r_float":0.8000108,"r_double":0.11717864331848349,"r_bytes":"̌›","r_string":"gftvnd","r_enum":"ONE","o_boolean":null,"o_int":null,"o_long":null,"o_float":{"float":0.69251937},"o_double":{"double":0.524711100498078},"o_bytes":null,"o_string":{"string":"en"},"o_enum":{"Level2_1__2_Enum2":"TWO"},"o_date":{"int":-603239349},"o_timemillis":null,"o_timemicros":null,"o_timestampmillis":{"long":4448397840742370645},"o_timestampmicros":{"long":1669581395414098952}}]},"r_enum":"ONE","r_array":[{"r_boolean":false,"r_int":-1065112144,"r_long":3647160498253173133,"r_float":0.60227454,"r_double":0.5890700927938556,"r_bytes":"gzä{?C´žXÞ","r_string":"jgjn","r_array":[{"r_boolean":true,"r_int":1475134891,"r_long":-3726974313824123910,"r_float":0.6616909,"r_double":0.39527741149417805,"r_bytes":"\u0002\u001D:sT³5Eì","r_string":"onu","r_enum":"ZERO","r_date":313186241,"r_timemillis":804891003,"r_timemicros":8715063624302095932,"r_timestampmillis":-8867653889095229380,"r_timestampmicros":-8820308438609446720,"o_boolean":{"boolean":true},"o_int":null,"o_long":{"long":4505306818104928570},"o_float":{"float":0.072799444},"o_double":{"double":0.7435295986633853},"o_bytes":null,"o_string":null,"o_enum":null,"o_date":null,"o_timemillis":{"int":1379640261},"o_timemicros":{"long":-4425301125430468480},"o_timestampmillis":null,"o_timestampmicros":{"long":6981844119465410488}},{"r_boolean":false,"r_int":1561185934,"r_long":6641132645124841592,"r_float":0.2804597,"r_double":0.062495130481264094,"r_bytes":"Ø[ë¦ê®î\"㺴J{{","r_string":"sne","r_enum":"ONE","r_date":-1501700676,"r_timemillis":-1945182525,"r_timemicros":3113677755875734795,"r_timestampmillis":3750238015051205337,"r_timestampmicros":-729798753827700009,"o_boolean":null,"o_int":{"int":-2029633345},"o_long":null,"o_float":null,"o_double":null,"o_bytes":null,"o_string":{"string":"bjfsdppt"},"o_enum":null,"o_date":null,"o_timemillis":{"int":-1067562286},"o_timemicros":null,"o_timestampmillis":null,"o_timestampmicros":{"long":9209740877049430963}},{"r_boolean":true,"r_int":1342391188,"r_long":8356141998272336047,"r_float":0.36798096,"r_double":0.11855378456639587,"r_bytes":"W—¿\u0000wFäo\u0019éç","r_string":"cuuue","r_enum":"ONE","r_date":-231792896,"r_timemillis":-427051306,"r_timemicros":-3162708784563791815,"r_timestampmillis":7907024891556225844,"r_timestampmicros":2912718886580834844,"o_boolean":null,"o_int":{"int":1572664508},"o_long":null,"o_float":null,"o_double":{"double":0.7581559363302725},"o_bytes":null,"o_string":null,"o_enum":null,"o_date":{"int":2051466096},"o_timemillis":{"int":1873402672},"o_timemicros":{"long":-682481796980453078},"o_timestampmillis":null,"o_timestampmicros":null}],"o_boolean":null,"o_int":{"int":-1886234480},"o_long":null,"o_float":{"float":0.5982722},"o_double":null,"o_bytes":{"bytes":"DSr¶÷Ã^\\"},"o_string":{"string":"s"},"o_enum":{"Level1_2_Enum2":"ZERO"},"o_date":{"int":-1240247179},"o_timemillis":{"int":-2085369391},"o_timemicros":null,"o_timestampmillis":{"long":1443729892137128135},"o_timestampmicros":null},{"r_boolean":false,"r_int":-876555607,"r_long":5116346257086214917,"r_float":0.31255788,"r_double":0.11692585829394575,"r_bytes":"i","r_string":"yqaxlojiobhsfaoxnafffubdqdrraojkeojqimanfiawvylchwktwhepsqcthfsquqsppiucbmsdklfwyyyqqvndowtngxagvfjnkhkwtcdhlhcytcyekd","r_array":[{"r_boolean":false,"r_int":1799227189,"r_long":973691934863832171,"r_float":0.9553349,"r_double":0.668167145844234,"r_bytes":"«N—\u0019–%@\f\u0012»Â'[B÷","r_string":"oc","r_enum":"TWO","r_date":-1539255406,"r_timemillis":531896042,"r_timemicros":-2872789848014604687,"r_timestampmillis":-872181703081082961,"r_timestampmicros":-8020169280780563048,"o_boolean":null,"o_int":null,"o_long":null,"o_float":{"float":0.9380579},"o_double":null,"o_bytes":{"bytes":"\"Cu\""},"o_string":{"string":"yfbueoh"},"o_enum":{"Level2_2_Enum2":"ZERO"},"o_date":null,"o_timemillis":null,"o_timemicros":{"long":-7473302764414558036},"o_timestampmillis":null,"o_timestampmicros":null},{"r_boolean":false,"r_int":-1759625055,"r_long":6950934330578220524,"r_float":0.42817122,"r_double":0.12536583346613117,"r_bytes":"œ¡2ú•ÆͬÇho","r_string":"blvdhvetgkp","r_enum":"TWO","r_date":-143772516,"r_timemillis":905092240,"r_timemicros":-387976752278587953,"r_timestampmillis":-3403574657371955758,"r_timestampmicros":-6497378821306705947,"o_boolean":null,"o_int":null,"o_long":{"long":-3818125033976638852},"o_float":{"float":0.7728119},"o_double":null,"o_bytes":null,"o_string":null,"o_enum":{"Level2_2_Enum2":"ZERO"},"o_date":null,"o_timemillis":{"int":-899562333},"o_timemicros":null,"o_timestampmillis":null,"o_timestampmicros":{"long":8141550742094348580}},{"r_boolean":false,"r_int":-497872821,"r_long":-5467820919674591138,"r_float":0.5863977,"r_double":0.30557910652687625,"r_bytes":"}~\b","r_string":"ssjuodcrjb","r_enum":"ZERO","r_date":-608372440,"r_timemillis":781230893,"r_timemicros":-1646595684614176297,"r_timestampmillis":-3227088841793916362,"r_timestampmicros":-2165837642288114469,"o_boolean":null,"o_int":{"int":-1748616507},"o_long":{"long":-7691991083549343098},"o_float":{"float":0.7626639},"o_double":{"double":0.11678428624664505},"o_bytes":{"bytes":"ÓÆÛ:¶#¦Ê\"æ\u001Dו¿"},"o_string":{"string":"kawaqsyq"},"o_enum":null,"o_date":null,"o_timemillis":null,"o_timemicros":null,"o_timestampmillis":null,"o_timestampmicros":null}],"o_boolean":{"boolean":true},"o_int":{"int":1434029760},"o_long":{"long":9222794490651924772},"o_float":null,"o_double":{"double":0.5056817180455401},"o_bytes":{"bytes":"}¬u\u0019D\u001A7E9gý"},"o_string":{"string":"ajndivadqc"},"o_enum":null,"o_date":{"int":-1783458311},"o_timemillis":{"int":-1473691808},"o_timemicros":{"long":9193361943896055228},"o_timestampmillis":{"long":-7663545197073564318},"o_timestampmicros":null},{"r_boolean":false,"r_int":137345898,"r_long":1781528926500529782,"r_float":0.57819074,"r_double":0.9223442420346721,"r_bytes":"ë=@úwNKõ<","r_string":"eqbicrwqar","r_array":[{"r_boolean":true,"r_int":-1157809567,"r_long":-8677200694657703735,"r_float":0.52166444,"r_double":0.4724290734996123,"r_bytes":"Æ","r_string":"pogeikdmkhjvo","r_enum":"ZERO","r_date":-653629258,"r_timemillis":1300603668,"r_timemicros":5433899873602398665,"r_timestampmillis":817244208865227988,"r_timestampmicros":-1042186973606213967,"o_boolean":{"boolean":false},"o_int":null,"o_long":null,"o_float":null,"o_double":{"double":0.5164609606875054},"o_bytes":null,"o_string":{"string":"ntsjowiamg"},"o_enum":{"Level2_2_Enum2":"ZERO"},"o_date":null,"o_timemillis":{"int":-938575694},"o_timemicros":{"long":-6276069148326741697},"o_timestampmillis":null,"o_timestampmicros":{"long":-3142130550123315873}},{"r_boolean":true,"r_int":749737199,"r_long":9183834655966259991,"r_float":0.08893317,"r_double":0.3374239507697786,"r_bytes":"Ø|å\u000Fä\u0007}ó»!®","r_string":"qcxshwsdd","r_enum":"ONE","r_date":1822362161,"r_timemillis":1137521428,"r_timemicros":6081120061140628426,"r_timestampmillis":-536331195101344226,"r_timestampmicros":955260873664332353,"o_boolean":null,"o_int":null,"o_long":null,"o_float":null,"o_double":{"double":0.0659968737058384},"o_bytes":{"bytes":"\\Ýåö"},"o_string":{"string":"qybjhfyjxpupod"},"o_enum":{"Level2_2_Enum2":"ZERO"},"o_date":{"int":1485326158},"o_timemillis":{"int":962285599},"o_timemicros":{"long":8012853078973407400},"o_timestampmillis":null,"o_timestampmicros":null}],"o_boolean":{"boolean":false},"o_int":null,"o_long":null,"o_float":null,"o_double":null,"o_bytes":{"bytes":"‚\u0005\u001D1EW\u000FéÙC£§"},"o_string":{"string":"vmsil"},"o_enum":{"Level1_2_Enum2":"TWO"},"o_date":{"int":-1376714544},"o_timemillis":null,"o_timemicros":{"long":6676666327070745579},"o_timestampmillis":{"long":-7084141087313618594},"o_timestampmicros":null},{"r_boolean":true,"r_int":-1812532963,"r_long":-5719220662753045003,"r_float":0.8613942,"r_double":0.8028547735163751,"r_bytes":"‰3ÛÛ<","r_string":"sgiycvbes","r_array":[{"r_boolean":true,"r_int":-1181734185,"r_long":1539298932879371511,"r_float":0.95344543,"r_double":0.22491783214141758,"r_bytes":"Šl\u0011\u0013Z«ö\u001Aø,9","r_string":"c","r_enum":"ZERO","r_date":1610188893,"r_timemillis":-1348576220,"r_timemicros":-1732057315671444610,"r_timestampmillis":-431606535885928264,"r_timestampmicros":-8549405756149902422,"o_boolean":null,"o_int":null,"o_long":{"long":8422142476608058670},"o_float":{"float":0.12050825},"o_double":null,"o_bytes":{"bytes":""},"o_string":null,"o_enum":null,"o_date":{"int":1339100867},"o_timemillis":null,"o_timemicros":null,"o_timestampmillis":null,"o_timestampmicros":null},{"r_boolean":true,"r_int":106171686,"r_long":1120573893751149284,"r_float":0.80798334,"r_double":0.01736990133479821,"r_bytes":"„ä9”:éØ蚡Ý","r_string":"cl","r_enum":"TWO","r_date":639934877,"r_timemillis":-612414951,"r_timemicros":8769932730763593115,"r_timestampmillis":8765157431461593400,"r_timestampmicros":-3546996738564001060,"o_boolean":null,"o_int":null,"o_long":{"long":8992667413680192222},"o_float":null,"o_double":null,"o_bytes":{"bytes":"cràFG™ƒ\u000B"},"o_string":null,"o_enum":{"Level2_2_Enum2":"TWO"},"o_date":null,"o_timemillis":null,"o_timemicros":{"long":5133031395525814159},"o_timestampmillis":{"long":-4191406363407709221},"o_timestampmicros":null}],"o_boolean":{"boolean":false},"o_int":null,"o_long":null,"o_float":null,"o_double":null,"o_bytes":{"bytes":"”ÞB“t0L•H\"ÇÄe"},"o_string":{"string":""},"o_enum":{"Level1_2_Enum2":"ONE"},"o_date":null,"o_timemillis":{"int":2098508346},"o_timemicros":null,"o_timestampmillis":{"long":-4620000691454437692},"o_timestampmicros":null}],"r_date":1491943048,"r_timemillis":-1535251065,"r_timemicros":5529000582427670020,"r_timestampmillis":-6225953333772570648,"r_timestampmicros":-7879659172140660516,"o_boolean":{"boolean":false},"o_int":{"int":1295006206},"o_long":null,"o_float":null,"o_double":{"double":0.3692205262406869},"o_bytes":{"bytes":"ýf(u©‹·¶!\t¸ZÚ"},"o_string":{"string":"rncjie"},"o_record":{"Level1_3":{"r_boolean":true,"r_int":159082924,"r_long":1878340577205157922,"r_float":0.6030833,"r_double":0.7684714460627262,"r_bytes":"aÊJ\u0003‡O","r_string":"x","r_record":{"r_boolean":true,"r_int":-549127311,"r_long":-8753817380171547616,"r_float":0.32960492,"r_double":0.752348267921001,"r_bytes":"\u00028Ýـd#O ž¦B…","r_string":"","r_enum":"ONE","r_date":-1577696764,"r_timemillis":140189956,"r_timemicros":-7512939204276578414,"r_timestampmillis":-3360747941102306199,"r_timestampmicros":4462191826467522251,"o_boolean":{"boolean":false},"o_int":null,"o_long":{"long":3702543757334765849},"o_float":null,"o_double":{"double":0.4506964202478383},"o_bytes":null,"o_string":{"string":"xuikhajvb"},"o_enum":{"Level2_3_Enum2":"TWO"},"o_date":null,"o_timemillis":null,"o_timemicros":null,"o_timestampmillis":{"long":-4337622861217632631},"o_timestampmicros":null},"r_enum":"ONE","r_date":1568636964,"r_timemillis":1076832631,"r_timemicros":-1220649192682689805,"r_timestampmillis":8193022508118226621,"r_timestampmicros":1911399929301191389,"o_boolean":null,"o_int":{"int":-473427164},"o_long":null,"o_float":{"float":0.74613786},"o_double":null,"o_bytes":null,"o_string":null,"o_enum":null,"o_date":{"int":48350558},"o_timemillis":null,"o_timemicros":null,"o_timestampmillis":null,"o_timestampmicros":null}},"o_enum":{"Enum2":"ONE"},"o_date":{"int":-498928049},"o_timemillis":null,"o_timemicros":null,"o_timestampmillis":{"long":1657255496408291512},"o_timestampmicros":{"long":1166497266588276856}} -{"r_boolean":false,"r_int":2063055899,"r_long":-8414633578570909954,"r_float":0.11089879,"r_double":0.446959113006445,"r_bytes":"8”°/¦ê","r_string":"rvcdb","r_record":{"r_boolean":true,"r_int":-765056502,"r_long":4680793638385847092,"r_float":0.8083284,"r_double":0.08142666763130402,"r_bytes":"·Œb","r_string":"wgphtc","r_record":{"r_boolean":false,"r_int":866852155,"r_long":7188166532040283427,"r_float":0.5607535,"r_double":0.07300030015410153,"r_bytes":"ˆ9","r_string":"","r_enum":"ZERO","r_date":-1409263439,"r_timemillis":11976330,"r_timemicros":-244108675926225668,"r_timestampmillis":-1408613073667543981,"r_timestampmicros":8112030546947785079,"o_boolean":null,"o_int":null,"o_long":{"long":-395730852135153584},"o_float":{"float":0.31631678},"o_double":{"double":0.42911521952466714},"o_bytes":{"bytes":"ò”\u00166zêٌ"},"o_string":{"string":"bkkjynp"},"o_enum":{"Level2_1__1_Enum2":"ONE"},"o_date":{"int":-1670724208},"o_timemillis":{"int":-474164078},"o_timemicros":null,"o_timestampmillis":null,"o_timestampmicros":null},"r_enum":"ZERO","r_date":-1536620008,"r_timemillis":-1194834367,"r_timemicros":-4318751218129993602,"r_timestampmillis":1477027428572143810,"r_timestampmicros":-6961243887150719258,"r_array":[{"r_boolean":false,"r_int":-1390549890,"r_long":6776058679955558307,"r_float":0.3506292,"r_double":0.8276688613218472,"r_bytes":"W©åá\u0006","r_string":"","r_enum":"ZERO","o_boolean":{"boolean":false},"o_int":{"int":-1758742351},"o_long":null,"o_float":null,"o_double":{"double":0.856482702040964},"o_bytes":{"bytes":"†ÑcýV-\b:Ì\u00037+Ö£"},"o_string":null,"o_enum":{"Level2_1__2_Enum2":"ONE"},"o_date":{"int":210844096},"o_timemillis":{"int":-1308407279},"o_timemicros":{"long":7632074499710630771},"o_timestampmillis":null,"o_timestampmicros":{"long":6920235750317632942}},{"r_boolean":false,"r_int":-129613417,"r_long":6929466241551642353,"r_float":0.63345623,"r_double":0.6959376950543057,"r_bytes":"JqUÛÆBDñÑ1€§\tÉ|Ö×`|Ú}繨Zr\u0014\u0004\u0011Ä/¶=€?½\u001ET)a÷Cï2‹\u0002 ˜™\"˜^ŸµH\tøb¢\u000B„\u0004áù\n\u001F\u0003ÖýŒ\rƒ¯¼P¼é\u0013`䃇¬\u0012€ÿû^g´@ÃpØ\u000EÇâxŸZCgä\"”C\u0019\u000F¸ÅHâAXšŠóçʇKiԆ¯Ç\u001EQŒ\u0011Y¬Ö\u000B-4óœ$\u001C3цÙT+,\f\u000F­•È=8²\fû0£%áÃ̬\u001F","r_string":"sudifxnprnnrnyt","r_enum":"ZERO","o_boolean":{"boolean":true},"o_int":{"int":-735544537},"o_long":{"long":4311558995038675094},"o_float":null,"o_double":null,"o_bytes":null,"o_string":null,"o_enum":null,"o_date":{"int":-478971231},"o_timemillis":{"int":-1704977410},"o_timemicros":{"long":-7762239821862036160},"o_timestampmillis":{"long":-3336978888393924918},"o_timestampmicros":{"long":-4879473094659717991}},{"r_boolean":true,"r_int":462386199,"r_long":6832152517696218963,"r_float":0.25010192,"r_double":0.4244761173090804,"r_bytes":"ÅÆvõ©¯\u0007\u0001˜•?Yg\u001F","r_string":"ofvdojtswixl","r_enum":"ZERO","o_boolean":null,"o_int":null,"o_long":null,"o_float":{"float":0.6554936},"o_double":{"double":0.5426657121498516},"o_bytes":{"bytes":"ØÛÅ\"\u0015.ogïF’9tËvɽ:9\r\u0004}VVF3.r'\u001CÐMzï&\u0011B„aqwBc9a.Co¦\u001A·F\u0018Æ}Ψ×a Z\u001Aè\u0013U¶\u001BJ¦7fô]£Tº 30\f¡\u001Eí\n\u0018;`/ZnB@ÌÁ\u0000ûTt˯î§\r\u0006€\u00010\u0019—õË#a","r_string":"sfivcygy","r_record":{"r_boolean":true,"r_int":-93804594,"r_long":8220746703733831606,"r_float":0.6111622,"r_double":0.6931346170525334,"r_bytes":"¿™X8á¨SWƒ†\u0015S","r_string":"gbm","r_record":{"r_boolean":true,"r_int":-98436894,"r_long":6497533735958463494,"r_float":0.81292105,"r_double":0.12584865251010835,"r_bytes":"‘m\rL쥛‹1W","r_string":"","r_enum":"ONE","r_date":-1341494612,"r_timemillis":700305275,"r_timemicros":1988915218775319208,"r_timestampmillis":8870033253024409829,"r_timestampmicros":-1395694526143772104,"o_boolean":{"boolean":true},"o_int":{"int":1046223149},"o_long":{"long":8346295482982859676},"o_float":{"float":0.21965432},"o_double":null,"o_bytes":null,"o_string":{"string":"lfjrtwmr"},"o_enum":null,"o_date":{"int":-1711103595},"o_timemillis":null,"o_timemicros":{"long":7717342794096228442},"o_timestampmillis":null,"o_timestampmicros":null},"r_enum":"TWO","r_date":-1148546269,"r_timemillis":-1934020827,"r_timemicros":-7687998260134765559,"r_timestampmillis":-5879632088520773019,"r_timestampmicros":-54529421832489421,"r_array":[]},"r_enum":"TWO","r_array":[{"r_boolean":false,"r_int":-1521364969,"r_long":3644838682377875715,"r_float":0.12223923,"r_double":0.8726407164525759,"r_bytes":"†\r- \u001A¨Ž¡üHá\u0016¢m[Jq6S3?R&ž\u000E\u0004–}=Ã^tÄ¢^pé#¢QsPŒ69mˇƒ…Jz_\u0011¤\u001Dîy¸`FcçQ‰”H#ê>WY=p¸£\u000BÒg_¼","r_string":"tgtytbwuexhdcvoopoafckxhpegwnxejlfguhoxwsymlgedarcyqrjwkjxunyeldbbaldxvwsvevhigpwnjpqovjsxylbllnmbmqrslnxvfawgfkpmdpjcisqclrxbfnneipvlglaiteapukgqodamrmfiexejyxxrhmuohibdfcgvgymoaoolmvjxybsktxltsgcibrhjnvqxmyvbrtpyvwsvnjlgpgeymmrayfoylfngghvuenfgcmtrmmslirljdsystqnyhdlqvjwkuevsxlepquoubtvwuqswybdpqddaanlkesjnyjabbmlpjvcrquehdgocsgsnkpjxgswvtjhwinvhidafsrmseactgwmcdmfpqdkrlunkyehwxavmtwtdnqvriflvyjfomutccvlhigeojjbbiqxwegqegjskmnipywcikcrtqvpiejgoxyphynmldiwnfoeqplwnnipaksjlmbwivfcjjfvijesgdqbamfyttgkveifvqdblwoshnyepjnhmwopxxbfpurskbcifejcmlhgjbbjiiowquikqukabgoglcrdsfgwgjqjvydkgjifrrdtukavthrdnpxhpgusyycdqdehkmgtwsqgpjwhbndjgpvnvcbgijciqkrdnrbefahqvryiawclncytlfeuxrdevvkcdaqtxcgdjmhjyfnwdflnrmtbpwsdgfvakdigqfvscfecwsjkmebxutdgufutqwxvreqmninexcijrxxnwfuomliatwiivvwiqhwlekeitikjyxplmvyvxintrluutgdnkaxykcdsfogbsxjwcmepatwvnpcwrrutjxipqlkelesnwiavkrejfbdcboguqcnmyoywqlqvepewissggyvacqingbpbtkhrsvvpwskpwjlbujfxnnupcrcglophxluykcoybhahcktkyqosqqghdpceamycjsveqspesgepwionioomtokbiwqiwtociovdtnjgbjacksawbftlduwimhulesbysgcicadgovgioyajevldiywoixatndvbifjarjrmbjpjprfgekpjcdofmprujbreplbgojgrwjvtworsumpbjjfwtmglbelovaakxwwijmvwswdwsvefacmylukchhqjbfaleypqxqvyxxiqjqlchxmljsequrypswltcsfrdjayetxjnobtapiwlxqsimwhtpfqnoqkunqqwmgbishgiekxnifbphfxysdvhtoxafdabadgxdkthylaaroyuhylujldpjysmjsnrhsbbcuudbocrullxljaxkecufunoeuiruyxppjweetkmsvimjrqmorculkjfqkwihnhdaiiepahhevwfyssualguhlwmlhrolbhanwvltvvmvpcndrbhfffjyotkixfkfxybjxnkjfgimipluruguodtutaiqjmhhsmqfrkppiaxwyckckslwslbrnpbkremdhublefrqrtqlglssmrgdmvdarrsrmrhnqdydkidfrbvhuyhchkmrhxcvqjsclkxuuxgnxgixciiankgipecaajdnuraeskqdjjkqwmwvlepyulniwiwherwbfoympftoktlsdlnjgsmtkochvaypcxohjlhopxqqadboavcpioyleocfeytbgqktfyhwrmlaukvbrobkiefrngskfhyigbwbhufpptldmfffqruygldgalmiqnfosdkmdnhqdmpbmkbpiomskdmsnwolxygiiokvxtewkhcughxobcdllysxcajodejwjhafjcbucksfnvowfpeduysgbkqkamheknqlgqywqnrgscifssrysxtxktvxphlxdatnikakdnmsknmcsbjphaqurchvrteottbgxkunjspuboyjjflidkehwdvsukaickrbavokyuqkpthhxxvxpggjuuiatqlsamqitulmibxudwuqjllsrpxqxngipfwnxmtrqvvfimnbpovtlujerkifiycayhvoncqmiatqvlijvucohprqxufsctogcumlrehvjqbimnumnurfxsmtdhkpstqipoeiahagksteammcbjhglisjbmmssrwbwrqqsiirhropjrnkdxbekrrhhlusaetrsvfubfnbkhvokoybgrlgrepqqfhjmdlpcrcpsrxqrkhqurerfemxtscrydubfyarlglpentxvndxheflcerxkjnrugrjfmumtifxfucoehmnvwgrurubtiarlrchrxwktfieqddcxjxjmfqshmogxmsbxvucewlplbkyoddagaobekpuonosmsmkamflpaskpcmbqtsmuxmumbujoesyghbisekgeusvecyrigdnbqjbubhfafuqsdjkgghykfcjgkdmbuicbcspqrbpmxflgetacxnpoyobwpoiaboayjffykiluwxuestooijqapooymutkjqxreimmhylcqfqrvskdowkqemcdwupaohukumeaqcwddnfvqibcqjxbxdbidbqvctbpgtsocjeeteljnknufphogdqujbvysieqyffsktmpqtkgmbcmxquocpyltimdvqpficoxtwyaxxgfvkhjmmykopmqjsjrwwumhrnqxnldfmyvyrcxgiwlkqnoggaleysywrejlqrvtfdbcpuvitmnjrhateftndowvjpgcpktutahicgyolqhcfokxqkjopykvntceesjgbdeamkahqijbbpmxfqatgeqeodeecqfcmpuecbdohhhvpnqsnuxwkueabkfcohgpxwvvirnxwyepytuarvuhdkinoaorvgulnulcqlxhrxoabxdisqmusiequkgkaiqsxvvqofbodfkvhdxkcvcqikatgqjxuxgyduhbrgurptaxhepmtdofgrcgoarurlfpvfbuctgftkhteugpfnigatmpqbijfmnaosdccxutrtiatjwtcpwokjwkjmiucynsetgserygemscpoavuwivwjukusjrnkknkgigionmqigjaxfflrjfbfisggvnehymvifyhufymbvxxfbbbitcdugoifeanunnmhklhpxgjsnldhugddxaiqfhegoltjgfrnsgysmvewmhxehkfhxjvqnhauxtukxakxiyncbxjsrrpxiwitksclhwbuiemxihtlttharcexwdgpsdkdghpwduuprmowxapgtjmfebyhlfsodordxyoxfnqitwduydbllpvhdycwkqwomdymkpaypkukaxjpalrrlnvkjfrwtcensfsrbgcunkovcjtnewrghlkkadikdgyqkcfxmkjgmhapvxhfmstjktnhjspiocsucgqjmbpomowcfobmuqvvvywpxgnpgtxartdadgchsbujpnfjgafllknstokytkqjjplapxpgkwkqujkdcjvrlkvvntmxbacshdugvkbddiqcctwxurnvfbdgisyyaaindptlksjncpmayecsbkvjofkujgnglbnljpxgabdgccvcxtwfpnggtiwleakxrmbylwferaxujpyltwqjfjdckhcybdxfhowiqovdkeisengttovrhldxtvmsmyqhveewtyiprhlhopwarcykyxuclvkcaesmmbdekfyfwuhnahsaggsthjobsgbhrcintohqhhejevdtanrcerjehuilfopxglaliisijdvremvlcmagtushidqblhuutbrshydpbdcapptehxenwkymybscppttwmqvcwcwnkwejvbwhpkxkeesvipsjc","r_array":[{"r_boolean":true,"r_int":-1241247279,"r_long":-9075560315118253584,"r_float":0.43225855,"r_double":0.5485449769063147,"r_bytes":"íÜòΡÂRaé&ã\u0017","r_string":"blxfabxc","r_enum":"TWO","r_date":-2129373263,"r_timemillis":-174079311,"r_timemicros":-3817674428818617423,"r_timestampmillis":-385581618046809363,"r_timestampmicros":-2374446638356677544,"o_boolean":null,"o_int":{"int":-1622809186},"o_long":null,"o_float":{"float":0.26418573},"o_double":null,"o_bytes":{"bytes":"7«ªý"},"o_string":null,"o_enum":{"Level2_2_Enum2":"ONE"},"o_date":{"int":-482459404},"o_timemillis":null,"o_timemicros":{"long":-2275865709028736983},"o_timestampmillis":null,"o_timestampmicros":null}],"o_boolean":null,"o_int":{"int":-1000947653},"o_long":{"long":-6219982834861052986},"o_float":{"float":0.65307224},"o_double":null,"o_bytes":{"bytes":""},"o_string":null,"o_enum":{"Level1_2_Enum2":"ZERO"},"o_date":null,"o_timemillis":null,"o_timemicros":null,"o_timestampmillis":{"long":3845486711072783840},"o_timestampmicros":{"long":-1931941399321636299}},{"r_boolean":true,"r_int":-420804705,"r_long":7623646101229931815,"r_float":0.815927,"r_double":0.1729036843248346,"r_bytes":"Q=œÈ‹¬Žéˆ)•","r_string":"snu","r_array":[],"o_boolean":{"boolean":true},"o_int":{"int":-1256643710},"o_long":null,"o_float":{"float":0.96813536},"o_double":null,"o_bytes":{"bytes":"p"},"o_string":null,"o_enum":{"Level1_2_Enum2":"ZERO"},"o_date":null,"o_timemillis":null,"o_timemicros":null,"o_timestampmillis":{"long":-8821777493216739170},"o_timestampmicros":null}],"r_date":-120356493,"r_timemillis":1998394101,"r_timemicros":2831728188943066076,"r_timestampmillis":3162636409945185078,"r_timestampmicros":86968374762819547,"o_boolean":{"boolean":false},"o_int":null,"o_long":{"long":6737511834314343198},"o_float":{"float":0.10654867},"o_double":null,"o_bytes":null,"o_string":{"string":""},"o_record":null,"o_enum":null,"o_date":{"int":-196492494},"o_timemillis":null,"o_timemicros":{"long":5289678571298650558},"o_timestampmillis":null,"o_timestampmicros":null} -{"r_boolean":true,"r_int":1859931702,"r_long":-8558038609306484239,"r_float":0.99464154,"r_double":0.024113393187075394,"r_bytes":"‚\u0004ùí\r¸—\u0016\u0005Ò¡Í","r_string":"nppctjsydrvra","r_record":{"r_boolean":true,"r_int":-1768577096,"r_long":3019809008401821299,"r_float":0.8258666,"r_double":0.5602875797688622,"r_bytes":"O\tú\u001A[","r_string":"ofpmgfgpyxqn","r_record":{"r_boolean":false,"r_int":-1078005804,"r_long":-2647855327342873003,"r_float":0.79371226,"r_double":0.9381855658518732,"r_bytes":"ܳµ¡5Í\u0014","r_string":"upomsptia","r_enum":"ONE","r_date":2120642772,"r_timemillis":887856860,"r_timemicros":573364973951316680,"r_timestampmillis":1258203856487344396,"r_timestampmicros":-2457105596592909127,"o_boolean":{"boolean":true},"o_int":{"int":-1946797352},"o_long":{"long":5916692707300734192},"o_float":null,"o_double":{"double":0.08119350047529794},"o_bytes":null,"o_string":{"string":"vorvhyujwqxola"},"o_enum":{"Level2_1__1_Enum2":"TWO"},"o_date":{"int":764935547},"o_timemillis":{"int":-1338030223},"o_timemicros":null,"o_timestampmillis":null,"o_timestampmicros":{"long":-1090423078228264126}},"r_enum":"ZERO","r_date":-322555516,"r_timemillis":-1298503423,"r_timemicros":4421171748845978142,"r_timestampmillis":8288864828597082242,"r_timestampmicros":-4128488127605050548,"r_array":[{"r_boolean":true,"r_int":10499068,"r_long":-6758805512090234888,"r_float":0.85091203,"r_double":0.7084641347246414,"r_bytes":"tÐì¦ï\fŚÊË´\u0010\t-3","r_string":"mwwhdyyutknjtc","r_enum":"TWO","o_boolean":null,"o_int":null,"o_long":null,"o_float":null,"o_double":null,"o_bytes":null,"o_string":{"string":"xsonaew"},"o_enum":{"Level2_1__2_Enum2":"ONE"},"o_date":{"int":-565274641},"o_timemillis":null,"o_timemicros":null,"o_timestampmillis":null,"o_timestampmicros":null}]},"r_enum":"ONE","r_array":[{"r_boolean":false,"r_int":652240487,"r_long":1418852639282252554,"r_float":0.081067204,"r_double":0.544351583763728,"r_bytes":"IG뮞˜UÀr÷¿±S\u000B","r_string":"nbhjwfmqchi","r_array":[],"o_boolean":{"boolean":true},"o_int":{"int":1200423687},"o_long":{"long":324134521496673490},"o_float":{"float":0.7767323},"o_double":{"double":0.8893291347754785},"o_bytes":null,"o_string":{"string":"wvgbqylmkbqi"},"o_enum":null,"o_date":null,"o_timemillis":null,"o_timemicros":{"long":1854883650116667952},"o_timestampmillis":null,"o_timestampmicros":{"long":4869730394231980982}}],"r_date":1347445782,"r_timemillis":-549288834,"r_timemicros":-5609545780638664511,"r_timestampmillis":-6745618714487524128,"r_timestampmicros":7747701942345121900,"o_boolean":{"boolean":true},"o_int":null,"o_long":{"long":-8978974948870732826},"o_float":{"float":0.20244074},"o_double":{"double":0.6323732115186653},"o_bytes":{"bytes":"½ê\"\u001Bá$\u0015\\H£y÷ˆ"},"o_string":{"string":"nqlamyvhstbxdfqnlfewyklfmtddrevedbwckeswepqnxcbateakwkjlraflugoftwunwlsyvpjwrnlgpwvjqioolhwmwpalrvsydtfcqnqahjqobadfjovdfvtucwigitelaxfrfbsvmkiymsslyhqklqqmg"},"o_record":{"Level1_3":{"r_boolean":false,"r_int":-96392647,"r_long":3784130050981002459,"r_float":0.4765283,"r_double":0.07721305165337045,"r_bytes":"\\\u0010","r_string":"kswdqqdahkej","r_record":{"r_boolean":false,"r_int":1318599170,"r_long":-6835465025066033663,"r_float":0.084149,"r_double":0.03984141998130719,"r_bytes":"óeYDÐp","r_string":"frfoipdtdd","r_enum":"ZERO","r_date":-1243932574,"r_timemillis":1014223902,"r_timemicros":-5345495017387214728,"r_timestampmillis":5949972449604629988,"r_timestampmicros":7642649105474688772,"o_boolean":{"boolean":true},"o_int":{"int":1375654479},"o_long":null,"o_float":{"float":0.45571476},"o_double":{"double":0.7073736923722664},"o_bytes":null,"o_string":null,"o_enum":{"Level2_3_Enum2":"TWO"},"o_date":{"int":2093068675},"o_timemillis":{"int":-1817159479},"o_timemicros":null,"o_timestampmillis":null,"o_timestampmicros":{"long":1378201373706985975}},"r_enum":"ZERO","r_date":-543060152,"r_timemillis":602115544,"r_timemicros":2820945700845881682,"r_timestampmillis":-2757306322322628280,"r_timestampmicros":3421577506509105421,"o_boolean":{"boolean":false},"o_int":null,"o_long":null,"o_float":{"float":0.017165184},"o_double":{"double":0.39029669601134975},"o_bytes":null,"o_string":null,"o_enum":{"Level1_3_Enum2":"ZERO"},"o_date":null,"o_timemillis":null,"o_timemicros":null,"o_timestampmillis":{"long":2668343871344718510},"o_timestampmicros":null}},"o_enum":null,"o_date":{"int":-1361690424},"o_timemillis":{"int":287657329},"o_timemicros":null,"o_timestampmillis":null,"o_timestampmicros":{"long":-471142360697076795}} -{"r_boolean":true,"r_int":394711447,"r_long":3477066235837073312,"r_float":0.28836644,"r_double":0.32404971209451017,"r_bytes":"\u001Aþ\u0014÷\u001DÌ©³üE¬Yg","r_string":"kywrqfmbxdk","r_record":{"r_boolean":true,"r_int":838026474,"r_long":-7221649662638695646,"r_float":0.61690325,"r_double":0.5799076959227846,"r_bytes":"Øi˅\"ü»wú","r_string":"xvuurg","r_record":{"r_boolean":false,"r_int":1384007492,"r_long":-1716245000578238736,"r_float":0.5349591,"r_double":0.41764982183542254,"r_bytes":"{\u001AI\u0016d\u0010","r_string":"","r_enum":"TWO","r_date":-1223881156,"r_timemillis":949114947,"r_timemicros":2276470421983954120,"r_timestampmillis":3918878986462147457,"r_timestampmicros":-2473353591756707682,"o_boolean":{"boolean":true},"o_int":null,"o_long":{"long":-3967908382033050822},"o_float":null,"o_double":{"double":0.14322724272071463},"o_bytes":{"bytes":"{ÃÞ´…j%á}:"},"o_string":null,"o_enum":null,"o_date":{"int":-408139403},"o_timemillis":null,"o_timemicros":null,"o_timestampmillis":{"long":1938845056871572266},"o_timestampmicros":{"long":-4091558420443760757}},"r_enum":"ONE","r_date":-2069093935,"r_timemillis":852933692,"r_timemicros":7149090146036804987,"r_timestampmillis":-5151480904350826778,"r_timestampmicros":3350214055373728209,"r_array":[{"r_boolean":true,"r_int":299836203,"r_long":-1790686399490563360,"r_float":0.1808188,"r_double":0.17493173939042672,"r_bytes":"","r_string":"jyfilupxclf","r_enum":"TWO","o_boolean":null,"o_int":null,"o_long":{"long":2026173140677344427},"o_float":{"float":0.7696233},"o_double":{"double":0.9379335516471271},"o_bytes":{"bytes":"܁“ZCæz¡}F«\u0002añ\u001F"},"o_string":{"string":"ppcoeikdovchhud"},"o_enum":{"Level2_1__2_Enum2":"ONE"},"o_date":null,"o_timemillis":null,"o_timemicros":{"long":-2507929912294717331},"o_timestampmillis":{"long":1175033086097549253},"o_timestampmicros":null},{"r_boolean":false,"r_int":-1089984153,"r_long":-6201263513342434167,"r_float":0.45897865,"r_double":0.03846636173819773,"r_bytes":"5K˜·ßÙl","r_string":"ldyqdbhxyhuylhe","r_enum":"TWO","o_boolean":{"boolean":true},"o_int":{"int":-984941174},"o_long":{"long":-1831233504463363765},"o_float":{"float":0.8801068},"o_double":{"double":0.028036858697457978},"o_bytes":null,"o_string":null,"o_enum":null,"o_date":null,"o_timemillis":{"int":272409326},"o_timemicros":{"long":6573024029276224041},"o_timestampmillis":null,"o_timestampmicros":{"long":1736125680273666481}},{"r_boolean":false,"r_int":447023722,"r_long":-4596562701454227738,"r_float":0.7226426,"r_double":0.2256066693123584,"r_bytes":"²\r^q³ìß","r_string":"aaid","r_enum":"ZERO","o_boolean":{"boolean":false},"o_int":{"int":-1273223205},"o_long":null,"o_float":{"float":0.06967926},"o_double":null,"o_bytes":{"bytes":"Ú£ƒnïyl£\u0017÷cš}"},"o_string":{"string":"thxdnaorqbi"},"o_enum":null,"o_date":{"int":-1141046802},"o_timemillis":{"int":489613303},"o_timemicros":null,"o_timestampmillis":null,"o_timestampmicros":{"long":6425479525402010344}},{"r_boolean":false,"r_int":2059476040,"r_long":5675503884664210589,"r_float":0.6816346,"r_double":0.826603890305313,"r_bytes":"|™øn\rÒÃçÀ\u0000","r_string":"jdfmrvojvclfoms","r_enum":"TWO","o_boolean":{"boolean":true},"o_int":null,"o_long":{"long":-1806976067334391246},"o_float":{"float":0.25250924},"o_double":null,"o_bytes":null,"o_string":{"string":"tubiyv"},"o_enum":null,"o_date":null,"o_timemillis":{"int":-976080554},"o_timemicros":{"long":-6782277270500346045},"o_timestampmillis":{"long":7267061177443966726},"o_timestampmicros":null}]},"r_enum":"ONE","r_array":[{"r_boolean":true,"r_int":-1291527671,"r_long":533514048690575603,"r_float":0.018661082,"r_double":0.4319960879322635,"r_bytes":"˜|'¨8å¿«o­","r_string":"","r_array":[{"r_boolean":false,"r_int":-277455639,"r_long":-4930225474413748570,"r_float":0.002553165,"r_double":0.711885189614186,"r_bytes":"´þæ\t“5¨2á&iSæ¯l","r_string":"u","r_enum":"TWO","r_date":-1509349202,"r_timemillis":-2016663583,"r_timemicros":-6821086444228332965,"r_timestampmillis":-7783755133201813588,"r_timestampmicros":-857270233514765465,"o_boolean":null,"o_int":{"int":76824078},"o_long":null,"o_float":{"float":0.2005378},"o_double":null,"o_bytes":null,"o_string":{"string":"utxwu"},"o_enum":{"Level2_2_Enum2":"ONE"},"o_date":null,"o_timemillis":{"int":1085976894},"o_timemicros":null,"o_timestampmillis":null,"o_timestampmicros":{"long":-7347242925894703425}}],"o_boolean":null,"o_int":null,"o_long":{"long":8915087759798525467},"o_float":null,"o_double":{"double":0.2925048055013224},"o_bytes":null,"o_string":{"string":"hyvosschekdlnyc"},"o_enum":{"Level1_2_Enum2":"TWO"},"o_date":{"int":-627822546},"o_timemillis":null,"o_timemicros":null,"o_timestampmillis":null,"o_timestampmicros":{"long":-3138374685042473090}}],"r_date":1734835557,"r_timemillis":1129381854,"r_timemicros":-6381359899562311522,"r_timestampmillis":4923973903768137233,"r_timestampmicros":-8774035122361084559,"o_boolean":null,"o_int":null,"o_long":null,"o_float":{"float":0.86501485},"o_double":{"double":0.9572350056574602},"o_bytes":null,"o_string":{"string":"eq"},"o_record":null,"o_enum":{"Enum2":"ZERO"},"o_date":{"int":-1223603218},"o_timemillis":{"int":-2085991942},"o_timemicros":{"long":-8925750541647298296},"o_timestampmillis":null,"o_timestampmicros":{"long":-4295401938957704803}} diff --git a/testdata/schema/complicated.avsc b/testdata/schema/complicated.avsc deleted file mode 100644 index c37d6fd..0000000 --- a/testdata/schema/complicated.avsc +++ /dev/null @@ -1,439 +0,0 @@ -{ - "type": "record", - "name": "Complicated", - "doc": "It contains most kind of primitive/complex/logical types", - "aliases": ["Root"], - "fields" : [ - {"name": "r_boolean", "type": "boolean"}, - {"name": "r_int", "type": "int"}, - {"name": "r_long", "type": "long"}, - {"name": "r_float", "type": "float"}, - {"name": "r_double", "type": "double"}, - {"name": "r_bytes", "type": "bytes"}, - {"name": "r_string", "type": "string"}, - {"name": "r_record", "type": { - "type": "record", - "name": "Level1_1", - "fields" : [ - {"name": "r_boolean", "type": "boolean"}, - {"name": "r_int", "type": "int"}, - {"name": "r_long", "type": "long"}, - {"name": "r_float", "type": "float"}, - {"name": "r_double", "type": "double"}, - {"name": "r_bytes", "type": "bytes"}, - {"name": "r_string", "type": "string"}, - {"name": "r_record", "type": { - "type": "record", - "name": "Level2_1__1", - "fields" : [ - {"name": "r_boolean", "type": "boolean"}, - {"name": "r_int", "type": "int"}, - {"name": "r_long", "type": "long"}, - {"name": "r_float", "type": "float"}, - {"name": "r_double", "type": "double"}, - {"name": "r_bytes", "type": "bytes"}, - {"name": "r_string", "type": "string"}, - {"name": "r_enum", "type": { - "type": "enum", - "name": "Level2_1__1_Enum1", - "symbols": ["ZERO", "ONE", "TWO"] - } - }, - {"name": "r_date", "type": { - "type": "int", - "logicalType": "date" - } - }, - {"name": "r_timemillis", "type": { - "type": "int", - "logicalType": "time-millis" - } - }, - {"name": "r_timemicros", "type": { - "type": "long", - "logicalType": "time-micros" - } - }, - {"name": "r_timestampmillis", "type": { - "type": "long", - "logicalType": "timestamp-millis" - } - }, - {"name": "r_timestampmicros", "type": { - "type": "long", - "logicalType": "timestamp-micros" - } - }, - {"name": "o_boolean", "type": ["null", "boolean"], "default": null}, - {"name": "o_int", "type": ["null", "int"], "default": null}, - {"name": "o_long", "type": ["null", "long"], "default": null}, - {"name": "o_float", "type": ["null", "float"], "default": null}, - {"name": "o_double", "type": ["null", "double"], "default": null}, - {"name": "o_bytes", "type": ["null", "bytes"], "default": null}, - {"name": "o_string", "type": ["null", "string"], "default": null}, - {"name": "o_enum", "type": ["null", { - "type": "enum", - "name": "Level2_1__1_Enum2", - "symbols": ["ZERO", "ONE", "TWO"] - }], - "default": null - }, - {"name": "o_date", "type": ["null", { - "type": "int", - "logicalType": "date" - }], - "default": null - }, - {"name": "o_timemillis", "type": ["null", { - "type": "int", - "logicalType": "time-millis" - }], - "default": null - }, - {"name": "o_timemicros", "type": ["null", { - "type": "long", - "logicalType": "time-micros" - }], - "default": null - }, - {"name": "o_timestampmillis", "type": ["null", { - "type": "long", - "logicalType": "timestamp-millis" - }], - "default": null - }, - {"name": "o_timestampmicros", "type": ["null", { - "type": "long", - "logicalType": "timestamp-micros" - }], - "default": null - } - ]} - }, - {"name": "r_enum", "type": { - "type": "enum", - "name": "Level1_1_Enum1", - "symbols": ["ZERO", "ONE", "TWO"] - } - }, - {"name": "r_date", "type": { - "type": "int", - "logicalType": "date" - } - }, - {"name": "r_timemillis", "type": { - "type": "int", - "logicalType": "time-millis" - } - }, - {"name": "r_timemicros", "type": { - "type": "long", - "logicalType": "time-micros" - } - }, - {"name": "r_timestampmillis", "type": { - "type": "long", - "logicalType": "timestamp-millis" - } - }, - {"name": "r_timestampmicros", "type": { - "type": "long", - "logicalType": "timestamp-micros" - } - }, - {"name": "r_array", "type": { - "type": "array", - "items": { - "type": "record", - "name": "Level2_1__2", - "fields" : [ - {"name": "r_boolean", "type": "boolean"}, - {"name": "r_int", "type": "int"}, - {"name": "r_long", "type": "long"}, - {"name": "r_float", "type": "float"}, - {"name": "r_double", "type": "double"}, - {"name": "r_bytes", "type": "bytes"}, - {"name": "r_string", "type": "string"}, - {"name": "r_enum", "type": { - "type": "enum", - "name": "Level2_1__2_Enum1", - "symbols": ["ZERO", "ONE", "TWO"] - } - }, - {"name": "o_boolean", "type": ["null", "boolean"], "default": null}, - {"name": "o_int", "type": ["null", "int"], "default": null}, - {"name": "o_long", "type": ["null", "long"], "default": null}, - {"name": "o_float", "type": ["null", "float"], "default": null}, - {"name": "o_double", "type": ["null", "double"], "default": null}, - {"name": "o_bytes", "type": ["null", "bytes"], "default": null}, - {"name": "o_string", "type": ["null", "string"], "default": null}, - {"name": "o_enum", "type": ["null", { - "type": "enum", - "name": "Level2_1__2_Enum2", - "symbols": ["ZERO", "ONE", "TWO"] - }], - "default": null - }, - {"name": "o_date", "type": ["null", { - "type": "int", - "logicalType": "date" - }], - "default": null - }, - {"name": "o_timemillis", "type": ["null", { - "type": "int", - "logicalType": "time-millis" - }], - "default": null - }, - {"name": "o_timemicros", "type": ["null", { - "type": "long", - "logicalType": "time-micros" - }], - "default": null - }, - {"name": "o_timestampmillis", "type": ["null", { - "type": "long", - "logicalType": "timestamp-millis" - }], - "default": null - }, - {"name": "o_timestampmicros", "type": ["null", { - "type": "long", - "logicalType": "timestamp-micros" - }], - "default": null - } - ] - } - }} - ]} - }, - {"name": "r_enum", "type": { - "type": "enum", - "name": "Enum1", - "symbols": ["ZERO", "ONE", "TWO"] - } - }, - {"name": "r_array", "type": { - "type": "array", - "items": { - "type": "record", - "name": "Level1_2", - "fields" : [ - {"name": "r_boolean", "type": "boolean"}, - {"name": "r_int", "type": "int"}, - {"name": "r_long", "type": "long"}, - {"name": "r_float", "type": "float"}, - {"name": "r_double", "type": "double"}, - {"name": "r_bytes", "type": "bytes"}, - {"name": "r_string", "type": "string"}, - {"name": "r_array", "type": { - "type": "array", - "items": { - "type": "record", - "name": "Level2_2", - "fields" : [ - {"name": "r_boolean", "type": "boolean"}, - {"name": "r_int", "type": "int"}, - {"name": "r_long", "type": "long"}, - {"name": "r_float", "type": "float"}, - {"name": "r_double", "type": "double"}, - {"name": "r_bytes", "type": "bytes"}, - {"name": "r_string", "type": "string"}, - {"name": "r_enum", "type": { - "type": "enum", - "name": "Level2_2_Enum1", - "symbols": ["ZERO", "ONE", "TWO"] - } - }, - {"name": "r_date", "type": { - "type": "int", - "logicalType": "date" - } - }, - {"name": "r_timemillis", "type": { - "type": "int", - "logicalType": "time-millis" - } - }, - {"name": "r_timemicros", "type": { - "type": "long", - "logicalType": "time-micros" - } - }, - {"name": "r_timestampmillis", "type": { - "type": "long", - "logicalType": "timestamp-millis" - } - }, - {"name": "r_timestampmicros", "type": { - "type": "long", - "logicalType": "timestamp-micros" - } - }, - {"name": "o_boolean", "type": ["null", "boolean"], "default": null}, - {"name": "o_int", "type": ["null", "int"], "default": null}, - {"name": "o_long", "type": ["null", "long"], "default": null}, - {"name": "o_float", "type": ["null", "float"], "default": null}, - {"name": "o_double", "type": ["null", "double"], "default": null}, - {"name": "o_bytes", "type": ["null", "bytes"], "default": null}, - {"name": "o_string", "type": ["null", "string"], "default": null}, - {"name": "o_enum", "type": ["null", { - "type": "enum", - "name": "Level2_2_Enum2", - "symbols": ["ZERO", "ONE", "TWO"] - }], - "default": null - }, - {"name": "o_date", "type": ["null", { - "type": "int", - "logicalType": "date" - }], - "default": null - }, - {"name": "o_timemillis", "type": ["null", { - "type": "int", - "logicalType": "time-millis" - }], - "default": null - }, - {"name": "o_timemicros", "type": ["null", { - "type": "long", - "logicalType": "time-micros" - }], - "default": null - }, - {"name": "o_timestampmillis", "type": ["null", { - "type": "long", - "logicalType": "timestamp-millis" - }], - "default": null - }, - {"name": "o_timestampmicros", "type": ["null", { - "type": "long", - "logicalType": "timestamp-micros" - }], - "default": null - } - ] - } - }}, - {"name": "o_boolean", "type": ["null", "boolean"], "default": null}, - {"name": "o_int", "type": ["null", "int"], "default": null}, - {"name": "o_long", "type": ["null", "long"], "default": null}, - {"name": "o_float", "type": ["null", "float"], "default": null}, - {"name": "o_double", "type": ["null", "double"], "default": null}, - {"name": "o_bytes", "type": ["null", "bytes"], "default": null}, - {"name": "o_string", "type": ["null", "string"], "default": null}, - {"name": "o_enum", "type": ["null", { - "type": "enum", - "name": "Level1_2_Enum2", - "symbols": ["ZERO", "ONE", "TWO"] - }], - "default": null - }, - {"name": "o_date", "type": ["null", { - "type": "int", - "logicalType": "date" - }], - "default": null - }, - {"name": "o_timemillis", "type": ["null", { - "type": "int", - "logicalType": "time-millis" - }], - "default": null - }, - {"name": "o_timemicros", "type": ["null", { - "type": "long", - "logicalType": "time-micros" - }], - "default": null - }, - {"name": "o_timestampmillis", "type": ["null", { - "type": "long", - "logicalType": "timestamp-millis" - }], - "default": null - }, - {"name": "o_timestampmicros", "type": ["null", { - "type": "long", - "logicalType": "timestamp-micros" - }], - "default": null - } - ] - } - }}, - {"name": "r_date", "type": { - "type": "int", - "logicalType": "date" - } - }, - {"name": "r_timemillis", "type": { - "type": "int", - "logicalType": "time-millis" - } - }, - {"name": "r_timemicros", "type": { - "type": "long", - "logicalType": "time-micros" - } - }, - {"name": "r_timestampmillis", "type": { - "type": "long", - "logicalType": "timestamp-millis" - } - }, - {"name": "r_timestampmicros", "type": { - "type": "long", - "logicalType": "timestamp-micros" - } - }, - {"name": "o_boolean", "type": ["null", "boolean"], "default": null}, - {"name": "o_int", "type": ["null", "int"], "default": null}, - {"name": "o_long", "type": ["null", "long"], "default": null}, - {"name": "o_float", "type": ["null", "float"], "default": null}, - {"name": "o_double", "type": ["null", "double"], "default": null}, - {"name": "o_bytes", "type": ["null", "bytes"], "default": null}, - {"name": "o_string", "type": ["null", "string"], "default": null}, - {"name": "o_enum", "type": ["null", { - "type": "enum", - "name": "Enum2", - "symbols": ["ZERO", "ONE", "TWO"] - }], - "default": null - }, - {"name": "o_date", "type": ["null", { - "type": "int", - "logicalType": "date" - }], - "default": null - }, - {"name": "o_timemillis", "type": ["null", { - "type": "int", - "logicalType": "time-millis" - }], - "default": null - }, - {"name": "o_timemicros", "type": ["null", { - "type": "long", - "logicalType": "time-micros" - }], - "default": null - }, - {"name": "o_timestampmillis", "type": ["null", { - "type": "long", - "logicalType": "timestamp-millis" - }], - "default": null - }, - {"name": "o_timestampmicros", "type": ["null", { - "type": "long", - "logicalType": "timestamp-micros" - }], - "default": null - } - ] -} From 08aea44aab47660cbced07966c3998eaf37821a2 Mon Sep 17 00:00:00 2001 From: Ryo Okubo Date: Tue, 2 Jun 2020 00:37:03 +0900 Subject: [PATCH 3/6] Rearrange static files --- Makefile | 84 +- README.md | 2 +- columnifier/parquet_test.go | 242 +++--- .../testdata}/parquet/array.parquet | Bin .../parquet/array_with_bytes.parquet | Bin .../testdata}/parquet/logicals.parquet | Bin .../testdata}/parquet/nested.parquet | Bin .../parquet/nested_with_bytes.parquet | Bin .../parquet/nullable_complex.parquet | Bin .../nullable_complex_with_bytes.parquet | Bin .../testdata}/parquet/nullables.parquet | Bin .../parquet/nullables_with_bytes.parquet | Bin .../testdata}/parquet/primitives.parquet | Bin .../parquet/primitives_with_bytes.parquet | Bin .../testdata}/record/array.avro | Bin .../testdata}/record/array.jsonl | 0 .../testdata}/record/array.msgpack | Bin .../testdata}/record/logicals.avro | Bin .../testdata}/record/logicals.csv | 0 .../testdata}/record/logicals.jsonl | 0 .../testdata}/record/logicals.ltsv | 0 .../testdata}/record/logicals.msgpack | Bin .../testdata}/record/logicals.tsv | 0 .../testdata}/record/nested.avro | Bin .../testdata}/record/nested.jsonl | 0 .../testdata}/record/nested.msgpack | Bin .../testdata}/record/nullable_complex.avro | Bin .../testdata}/record/nullable_complex.jsonl | 0 .../testdata}/record/nullable_complex.msgpack | Bin .../testdata}/record/nullables.avro | Bin .../testdata}/record/nullables.jsonl | 0 .../testdata}/record/nullables.msgpack | Bin .../testdata}/record/primitives.avro | Bin .../testdata}/record/primitives.csv | 0 .../testdata}/record/primitives.jsonl | 0 .../testdata}/record/primitives.ltsv | 0 .../testdata}/record/primitives.msgpack | 0 .../testdata}/record/primitives.tsv | 0 .../testdata}/schema/array.avsc | 0 .../testdata}/schema/array.bq.json | 0 .../testdata}/schema/logicals.avsc | 0 .../testdata}/schema/mismatch.avsc | 0 .../testdata}/schema/nested.avsc | 0 .../testdata}/schema/nested.bq.json | 0 .../testdata}/schema/nullable_complex.avsc | 0 .../testdata}/schema/nullables.avsc | 0 .../testdata}/schema/nullables.bq.json | 0 .../testdata}/schema/primitives.avsc | 0 .../testdata}/schema/primitives.bq.json | 0 {testdata/record => examples}/primitives.avro | Bin {testdata/schema => examples}/primitives.avsc | 0 .../schema => examples}/primitives.bq.json | 0 {testdata/record => examples}/primitives.csv | 0 .../record => examples}/primitives.jsonl | 0 {testdata/record => examples}/primitives.ltsv | 0 .../record => examples}/primitives.msgpack | 0 {testdata/record => examples}/primitives.tsv | 0 examples/record/array.msgpack | 1 - examples/record/complicated.avro | 767 ------------------ examples/record/complicated.json | 100 --- examples/record/nested.msgpack | 1 - examples/schema/complicated.avsc | 439 ---------- testdata/record/array.avro | Bin 776 -> 0 bytes testdata/record/array.jsonl | 2 - testdata/record/nested.avro | Bin 749 -> 0 bytes testdata/record/nested.jsonl | 2 - testdata/schema/array.avsc | 29 - testdata/schema/array.bq.json | 79 -- testdata/schema/nested.avsc | 26 - testdata/schema/nested.bq.json | 79 -- 70 files changed, 164 insertions(+), 1689 deletions(-) rename {testdata => columnifier/testdata}/parquet/array.parquet (100%) rename {testdata => columnifier/testdata}/parquet/array_with_bytes.parquet (100%) rename {testdata => columnifier/testdata}/parquet/logicals.parquet (100%) rename {testdata => columnifier/testdata}/parquet/nested.parquet (100%) rename {testdata => columnifier/testdata}/parquet/nested_with_bytes.parquet (100%) rename {testdata => columnifier/testdata}/parquet/nullable_complex.parquet (100%) rename {testdata => columnifier/testdata}/parquet/nullable_complex_with_bytes.parquet (100%) rename {testdata => columnifier/testdata}/parquet/nullables.parquet (100%) rename {testdata => columnifier/testdata}/parquet/nullables_with_bytes.parquet (100%) rename {testdata => columnifier/testdata}/parquet/primitives.parquet (100%) rename {testdata => columnifier/testdata}/parquet/primitives_with_bytes.parquet (100%) rename {examples => columnifier/testdata}/record/array.avro (100%) rename {examples => columnifier/testdata}/record/array.jsonl (100%) rename {testdata => columnifier/testdata}/record/array.msgpack (100%) rename {testdata => columnifier/testdata}/record/logicals.avro (100%) rename {testdata => columnifier/testdata}/record/logicals.csv (100%) rename {testdata => columnifier/testdata}/record/logicals.jsonl (100%) rename {testdata => columnifier/testdata}/record/logicals.ltsv (100%) rename {testdata => columnifier/testdata}/record/logicals.msgpack (100%) rename {testdata => columnifier/testdata}/record/logicals.tsv (100%) rename {examples => columnifier/testdata}/record/nested.avro (100%) rename {examples => columnifier/testdata}/record/nested.jsonl (100%) rename {testdata => columnifier/testdata}/record/nested.msgpack (100%) rename {testdata => columnifier/testdata}/record/nullable_complex.avro (100%) rename {testdata => columnifier/testdata}/record/nullable_complex.jsonl (100%) rename {testdata => columnifier/testdata}/record/nullable_complex.msgpack (100%) rename {testdata => columnifier/testdata}/record/nullables.avro (100%) rename {testdata => columnifier/testdata}/record/nullables.jsonl (100%) rename {testdata => columnifier/testdata}/record/nullables.msgpack (100%) rename {examples => columnifier/testdata}/record/primitives.avro (100%) rename {examples => columnifier/testdata}/record/primitives.csv (100%) rename {examples => columnifier/testdata}/record/primitives.jsonl (100%) rename {examples => columnifier/testdata}/record/primitives.ltsv (100%) rename {examples => columnifier/testdata}/record/primitives.msgpack (100%) rename {examples => columnifier/testdata}/record/primitives.tsv (100%) rename {examples => columnifier/testdata}/schema/array.avsc (100%) rename {examples => columnifier/testdata}/schema/array.bq.json (100%) rename {testdata => columnifier/testdata}/schema/logicals.avsc (100%) rename {testdata => columnifier/testdata}/schema/mismatch.avsc (100%) rename {examples => columnifier/testdata}/schema/nested.avsc (100%) rename {examples => columnifier/testdata}/schema/nested.bq.json (100%) rename {testdata => columnifier/testdata}/schema/nullable_complex.avsc (100%) rename {testdata => columnifier/testdata}/schema/nullables.avsc (100%) rename {testdata => columnifier/testdata}/schema/nullables.bq.json (100%) rename {examples => columnifier/testdata}/schema/primitives.avsc (100%) rename {examples => columnifier/testdata}/schema/primitives.bq.json (100%) rename {testdata/record => examples}/primitives.avro (100%) rename {testdata/schema => examples}/primitives.avsc (100%) rename {testdata/schema => examples}/primitives.bq.json (100%) rename {testdata/record => examples}/primitives.csv (100%) rename {testdata/record => examples}/primitives.jsonl (100%) rename {testdata/record => examples}/primitives.ltsv (100%) rename {testdata/record => examples}/primitives.msgpack (100%) rename {testdata/record => examples}/primitives.tsv (100%) delete mode 100644 examples/record/array.msgpack delete mode 100644 examples/record/complicated.avro delete mode 100644 examples/record/complicated.json delete mode 100644 examples/record/nested.msgpack delete mode 100644 examples/schema/complicated.avsc delete mode 100644 testdata/record/array.avro delete mode 100644 testdata/record/array.jsonl delete mode 100644 testdata/record/nested.avro delete mode 100644 testdata/record/nested.jsonl delete mode 100644 testdata/schema/array.avsc delete mode 100644 testdata/schema/array.bq.json delete mode 100644 testdata/schema/nested.avsc delete mode 100644 testdata/schema/nested.bq.json diff --git a/Makefile b/Makefile index de2503c..d7dddaf 100644 --- a/Makefile +++ b/Makefile @@ -23,48 +23,48 @@ test: .PHONY: it it: build - ./columnify -schemaType avro -schemaFile testdata/schema/primitives.avsc -recordType avro testdata/record/primitives.avro > /dev/null - ./columnify -schemaType avro -schemaFile testdata/schema/primitives.avsc -recordType csv testdata/record/primitives.csv > /dev/null - ./columnify -schemaType avro -schemaFile testdata/schema/primitives.avsc -recordType jsonl testdata/record/primitives.jsonl > /dev/null - ./columnify -schemaType avro -schemaFile testdata/schema/primitives.avsc -recordType ltsv testdata/record/primitives.ltsv > /dev/null - ./columnify -schemaType avro -schemaFile testdata/schema/primitives.avsc -recordType msgpack testdata/record/primitives.msgpack > /dev/null - ./columnify -schemaType avro -schemaFile testdata/schema/primitives.avsc -recordType tsv testdata/record/primitives.tsv > /dev/null - ./columnify -schemaType avro -schemaFile testdata/schema/nullables.avsc -recordType avro testdata/record/nullables.avro > /dev/null - ./columnify -schemaType avro -schemaFile testdata/schema/nullables.avsc -recordType jsonl testdata/record/nullables.jsonl > /dev/null - ./columnify -schemaType avro -schemaFile testdata/schema/nullables.avsc -recordType msgpack testdata/record/nullables.msgpack > /dev/null - ./columnify -schemaType avro -schemaFile testdata/schema/logicals.avsc -recordType avro testdata/record/logicals.avro > /dev/null - ./columnify -schemaType avro -schemaFile testdata/schema/logicals.avsc -recordType csv testdata/record/logicals.csv > /dev/null - ./columnify -schemaType avro -schemaFile testdata/schema/logicals.avsc -recordType jsonl testdata/record/logicals.jsonl > /dev/null - ./columnify -schemaType avro -schemaFile testdata/schema/logicals.avsc -recordType ltsv testdata/record/logicals.ltsv > /dev/null - ./columnify -schemaType avro -schemaFile testdata/schema/logicals.avsc -recordType msgpack testdata/record/logicals.msgpack > /dev/null - ./columnify -schemaType avro -schemaFile testdata/schema/logicals.avsc -recordType tsv testdata/record/logicals.tsv > /dev/null - ./columnify -schemaType avro -schemaFile testdata/schema/nested.avsc -recordType avro testdata/record/nested.avro > /dev/null - ./columnify -schemaType avro -schemaFile testdata/schema/nested.avsc -recordType jsonl testdata/record/nested.jsonl > /dev/null - ./columnify -schemaType avro -schemaFile testdata/schema/nested.avsc -recordType msgpack testdata/record/nested.msgpack > /dev/null - ./columnify -schemaType avro -schemaFile testdata/schema/array.avsc -recordType avro testdata/record/array.avro > /dev/null - ./columnify -schemaType avro -schemaFile testdata/schema/array.avsc -recordType jsonl testdata/record/array.jsonl > /dev/null - ./columnify -schemaType avro -schemaFile testdata/schema/array.avsc -recordType msgpack testdata/record/array.msgpack > /dev/null - ./columnify -schemaType avro -schemaFile testdata/schema/logicals.avsc -recordType jsonl testdata/record/logicals.jsonl > /dev/null - ./columnify -schemaType avro -schemaFile testdata/schema/logicals.avsc -recordType avro testdata/record/logicals.avro > /dev/null - ./columnify -schemaType avro -schemaFile testdata/schema/logicals.avsc -recordType msgpack testdata/record/logicals.msgpack > /dev/null - ./columnify -schemaType avro -schemaFile testdata/schema/nullable_complex.avsc -recordType avro testdata/record/nullable_complex.avro > /dev/null - ./columnify -schemaType avro -schemaFile testdata/schema/nullable_complex.avsc -recordType jsonl testdata/record/nullable_complex.jsonl > /dev/null - ./columnify -schemaType avro -schemaFile testdata/schema/nullable_complex.avsc -recordType msgpack testdata/record/nullable_complex.msgpack > /dev/null - ./columnify -schemaType bigquery -schemaFile testdata/schema/primitives.bq.json -recordType avro testdata/record/primitives.avro > /dev/null - ./columnify -schemaType bigquery -schemaFile testdata/schema/primitives.bq.json -recordType csv testdata/record/primitives.csv > /dev/null - ./columnify -schemaType bigquery -schemaFile testdata/schema/primitives.bq.json -recordType jsonl testdata/record/primitives.jsonl > /dev/null - ./columnify -schemaType bigquery -schemaFile testdata/schema/primitives.bq.json -recordType ltsv testdata/record/primitives.ltsv > /dev/null - ./columnify -schemaType bigquery -schemaFile testdata/schema/primitives.bq.json -recordType msgpack testdata/record/primitives.msgpack > /dev/null - ./columnify -schemaType bigquery -schemaFile testdata/schema/primitives.bq.json -recordType tsv testdata/record/primitives.tsv > /dev/null - ./columnify -schemaType bigquery -schemaFile testdata/schema/nullables.bq.json -recordType avro testdata/record/nullables.avro > /dev/null - ./columnify -schemaType bigquery -schemaFile testdata/schema/nullables.bq.json -recordType jsonl testdata/record/nullables.jsonl > /dev/null - ./columnify -schemaType bigquery -schemaFile testdata/schema/nullables.bq.json -recordType msgpack testdata/record/nullables.msgpack > /dev/null - ./columnify -schemaType bigquery -schemaFile testdata/schema/nested.bq.json -recordType avro testdata/record/nested.avro > /dev/null - ./columnify -schemaType bigquery -schemaFile testdata/schema/nested.bq.json -recordType jsonl testdata/record/nested.jsonl > /dev/null - ./columnify -schemaType bigquery -schemaFile testdata/schema/nested.bq.json -recordType msgpack testdata/record/nested.msgpack > /dev/null - ./columnify -schemaType bigquery -schemaFile testdata/schema/array.bq.json -recordType avro testdata/record/array.avro > /dev/null - ./columnify -schemaType bigquery -schemaFile testdata/schema/array.bq.json -recordType jsonl testdata/record/array.jsonl > /dev/null - ./columnify -schemaType bigquery -schemaFile testdata/schema/array.bq.json -recordType msgpack testdata/record/array.msgpack > /dev/null + ./columnify -schemaType avro -schemaFile columnifier/testdata/schema/primitives.avsc -recordType avro columnifier/testdata/record/primitives.avro > /dev/null + ./columnify -schemaType avro -schemaFile columnifier/testdata/schema/primitives.avsc -recordType csv columnifier/testdata/record/primitives.csv > /dev/null + ./columnify -schemaType avro -schemaFile columnifier/testdata/schema/primitives.avsc -recordType jsonl columnifier/testdata/record/primitives.jsonl > /dev/null + ./columnify -schemaType avro -schemaFile columnifier/testdata/schema/primitives.avsc -recordType ltsv columnifier/testdata/record/primitives.ltsv > /dev/null + ./columnify -schemaType avro -schemaFile columnifier/testdata/schema/primitives.avsc -recordType msgpack columnifier/testdata/record/primitives.msgpack > /dev/null + ./columnify -schemaType avro -schemaFile columnifier/testdata/schema/primitives.avsc -recordType tsv columnifier/testdata/record/primitives.tsv > /dev/null + ./columnify -schemaType avro -schemaFile columnifier/testdata/schema/nullables.avsc -recordType avro columnifier/testdata/record/nullables.avro > /dev/null + ./columnify -schemaType avro -schemaFile columnifier/testdata/schema/nullables.avsc -recordType jsonl columnifier/testdata/record/nullables.jsonl > /dev/null + ./columnify -schemaType avro -schemaFile columnifier/testdata/schema/nullables.avsc -recordType msgpack columnifier/testdata/record/nullables.msgpack > /dev/null + ./columnify -schemaType avro -schemaFile columnifier/testdata/schema/logicals.avsc -recordType avro columnifier/testdata/record/logicals.avro > /dev/null + ./columnify -schemaType avro -schemaFile columnifier/testdata/schema/logicals.avsc -recordType csv columnifier/testdata/record/logicals.csv > /dev/null + ./columnify -schemaType avro -schemaFile columnifier/testdata/schema/logicals.avsc -recordType jsonl columnifier/testdata/record/logicals.jsonl > /dev/null + ./columnify -schemaType avro -schemaFile columnifier/testdata/schema/logicals.avsc -recordType ltsv columnifier/testdata/record/logicals.ltsv > /dev/null + ./columnify -schemaType avro -schemaFile columnifier/testdata/schema/logicals.avsc -recordType msgpack columnifier/testdata/record/logicals.msgpack > /dev/null + ./columnify -schemaType avro -schemaFile columnifier/testdata/schema/logicals.avsc -recordType tsv columnifier/testdata/record/logicals.tsv > /dev/null + ./columnify -schemaType avro -schemaFile columnifier/testdata/schema/nested.avsc -recordType avro columnifier/testdata/record/nested.avro > /dev/null + ./columnify -schemaType avro -schemaFile columnifier/testdata/schema/nested.avsc -recordType jsonl columnifier/testdata/record/nested.jsonl > /dev/null + ./columnify -schemaType avro -schemaFile columnifier/testdata/schema/nested.avsc -recordType msgpack columnifier/testdata/record/nested.msgpack > /dev/null + ./columnify -schemaType avro -schemaFile columnifier/testdata/schema/array.avsc -recordType avro columnifier/testdata/record/array.avro > /dev/null + ./columnify -schemaType avro -schemaFile columnifier/testdata/schema/array.avsc -recordType jsonl columnifier/testdata/record/array.jsonl > /dev/null + ./columnify -schemaType avro -schemaFile columnifier/testdata/schema/array.avsc -recordType msgpack columnifier/testdata/record/array.msgpack > /dev/null + ./columnify -schemaType avro -schemaFile columnifier/testdata/schema/logicals.avsc -recordType jsonl columnifier/testdata/record/logicals.jsonl > /dev/null + ./columnify -schemaType avro -schemaFile columnifier/testdata/schema/logicals.avsc -recordType avro columnifier/testdata/record/logicals.avro > /dev/null + ./columnify -schemaType avro -schemaFile columnifier/testdata/schema/logicals.avsc -recordType msgpack columnifier/testdata/record/logicals.msgpack > /dev/null + ./columnify -schemaType avro -schemaFile columnifier/testdata/schema/nullable_complex.avsc -recordType avro columnifier/testdata/record/nullable_complex.avro > /dev/null + ./columnify -schemaType avro -schemaFile columnifier/testdata/schema/nullable_complex.avsc -recordType jsonl columnifier/testdata/record/nullable_complex.jsonl > /dev/null + ./columnify -schemaType avro -schemaFile columnifier/testdata/schema/nullable_complex.avsc -recordType msgpack columnifier/testdata/record/nullable_complex.msgpack > /dev/null + ./columnify -schemaType bigquery -schemaFile columnifier/testdata/schema/primitives.bq.json -recordType avro columnifier/testdata/record/primitives.avro > /dev/null + ./columnify -schemaType bigquery -schemaFile columnifier/testdata/schema/primitives.bq.json -recordType csv columnifier/testdata/record/primitives.csv > /dev/null + ./columnify -schemaType bigquery -schemaFile columnifier/testdata/schema/primitives.bq.json -recordType jsonl columnifier/testdata/record/primitives.jsonl > /dev/null + ./columnify -schemaType bigquery -schemaFile columnifier/testdata/schema/primitives.bq.json -recordType ltsv columnifier/testdata/record/primitives.ltsv > /dev/null + ./columnify -schemaType bigquery -schemaFile columnifier/testdata/schema/primitives.bq.json -recordType msgpack columnifier/testdata/record/primitives.msgpack > /dev/null + ./columnify -schemaType bigquery -schemaFile columnifier/testdata/schema/primitives.bq.json -recordType tsv columnifier/testdata/record/primitives.tsv > /dev/null + ./columnify -schemaType bigquery -schemaFile columnifier/testdata/schema/nullables.bq.json -recordType avro columnifier/testdata/record/nullables.avro > /dev/null + ./columnify -schemaType bigquery -schemaFile columnifier/testdata/schema/nullables.bq.json -recordType jsonl columnifier/testdata/record/nullables.jsonl > /dev/null + ./columnify -schemaType bigquery -schemaFile columnifier/testdata/schema/nullables.bq.json -recordType msgpack columnifier/testdata/record/nullables.msgpack > /dev/null + ./columnify -schemaType bigquery -schemaFile columnifier/testdata/schema/nested.bq.json -recordType avro columnifier/testdata/record/nested.avro > /dev/null + ./columnify -schemaType bigquery -schemaFile columnifier/testdata/schema/nested.bq.json -recordType jsonl columnifier/testdata/record/nested.jsonl > /dev/null + ./columnify -schemaType bigquery -schemaFile columnifier/testdata/schema/nested.bq.json -recordType msgpack columnifier/testdata/record/nested.msgpack > /dev/null + ./columnify -schemaType bigquery -schemaFile columnifier/testdata/schema/array.bq.json -recordType avro columnifier/testdata/record/array.avro > /dev/null + ./columnify -schemaType bigquery -schemaFile columnifier/testdata/schema/array.bq.json -recordType jsonl columnifier/testdata/record/array.jsonl > /dev/null + ./columnify -schemaType bigquery -schemaFile columnifier/testdata/schema/array.bq.json -recordType msgpack columnifier/testdata/record/array.msgpack > /dev/null # Set GITHUB_TOKEN and create release git tag .PHONY: release diff --git a/README.md b/README.md index b3f1f07..15f7a47 100644 --- a/README.md +++ b/README.md @@ -38,7 +38,7 @@ $ cat examples/record/primitives.jsonl {"boolean": false, "int": 1, "long": 1, "float": 1.1, "double": 1.1, "bytes": "foo", "string": "foo"} {"boolean": true, "int": 2, "long": 2, "float": 2.2, "double": 2.2, "bytes": "bar", "string": "bar"} -$ ./columnify -schemaType avro -schemaFile examples/schema/primitives.avsc -recordType jsonl examples/record/primitives.jsonl > out.parquet +$ ./columnify -schemaType avro -schemaFile examples/primitives.avsc -recordType jsonl examples/primitives.jsonl > out.parquet $ parquet-tools schema out.parquet message Primitives { diff --git a/columnifier/parquet_test.go b/columnifier/parquet_test.go index 855a4e6..e7cd40b 100644 --- a/columnifier/parquet_test.go +++ b/columnifier/parquet_test.go @@ -75,7 +75,7 @@ func TestNewParquetColumnifier(t *testing.T) { // Inalid schema type { st: "unknown", - sf: "../testdata/schema/primitives.avsc", + sf: "testdata/schema/primitives.avsc", rt: record.RecordTypeJsonl, output: "", config: Config{}, @@ -95,7 +95,7 @@ func TestNewParquetColumnifier(t *testing.T) { // Invalid output { st: schema.SchemaTypeAvro, - sf: "../testdata/schema/primitives.avsc", + sf: "testdata/schema/primitives.avsc", rt: record.RecordTypeJsonl, output: "/tmp/nonexistence/invalid.record", config: Config{}, @@ -105,7 +105,7 @@ func TestNewParquetColumnifier(t *testing.T) { // Valid { st: schema.SchemaTypeAvro, - sf: "../testdata/schema/primitives.avsc", + sf: "testdata/schema/primitives.avsc", rt: record.RecordTypeJsonl, output: "", config: Config{}, @@ -133,308 +133,308 @@ func TestWriteClose(t *testing.T) { // primitives; Avro schema, Avro record { st: schema.SchemaTypeAvro, - sf: "../testdata/schema/primitives.avsc", + sf: "testdata/schema/primitives.avsc", rt: record.RecordTypeAvro, - input: "../testdata/record/primitives.avro", - expected: "../testdata/parquet/primitives_with_bytes.parquet", + input: "testdata/record/primitives.avro", + expected: "testdata/parquet/primitives_with_bytes.parquet", }, // primitives; Avro schema, CSV record { st: schema.SchemaTypeAvro, - sf: "../testdata/schema/primitives.avsc", + sf: "testdata/schema/primitives.avsc", rt: record.RecordTypeCsv, - input: "../testdata/record/primitives.csv", - expected: "../testdata/parquet/primitives.parquet", + input: "testdata/record/primitives.csv", + expected: "testdata/parquet/primitives.parquet", }, // primitives; Avro schema, JSONL record { st: schema.SchemaTypeAvro, - sf: "../testdata/schema/primitives.avsc", + sf: "testdata/schema/primitives.avsc", rt: record.RecordTypeJsonl, - input: "../testdata/record/primitives.jsonl", - expected: "../testdata/parquet/primitives.parquet", + input: "testdata/record/primitives.jsonl", + expected: "testdata/parquet/primitives.parquet", }, // primitives; Avro schema, LTSV record { st: schema.SchemaTypeAvro, - sf: "../testdata/schema/primitives.avsc", + sf: "testdata/schema/primitives.avsc", rt: record.RecordTypeLtsv, - input: "../testdata/record/primitives.ltsv", - expected: "../testdata/parquet/primitives.parquet", + input: "testdata/record/primitives.ltsv", + expected: "testdata/parquet/primitives.parquet", }, // primitives; Avro schema, MessagePack record { st: schema.SchemaTypeAvro, - sf: "../testdata/schema/primitives.avsc", + sf: "testdata/schema/primitives.avsc", rt: record.RecordTypeMsgpack, - input: "../testdata/record/primitives.msgpack", - expected: "../testdata/parquet/primitives.parquet", + input: "testdata/record/primitives.msgpack", + expected: "testdata/parquet/primitives.parquet", }, // primitives; Avro schema, TSV record { st: schema.SchemaTypeAvro, - sf: "../testdata/schema/primitives.avsc", + sf: "testdata/schema/primitives.avsc", rt: record.RecordTypeTsv, - input: "../testdata/record/primitives.tsv", - expected: "../testdata/parquet/primitives.parquet", + input: "testdata/record/primitives.tsv", + expected: "testdata/parquet/primitives.parquet", }, // nullables; Avro schema, Avro record { st: schema.SchemaTypeAvro, - sf: "../testdata/schema/nullables.avsc", + sf: "testdata/schema/nullables.avsc", rt: record.RecordTypeAvro, - input: "../testdata/record/nullables.avro", - expected: "../testdata/parquet/nullables_with_bytes.parquet", + input: "testdata/record/nullables.avro", + expected: "testdata/parquet/nullables_with_bytes.parquet", }, // nullables; Avro schema, JSONL record { st: schema.SchemaTypeAvro, - sf: "../testdata/schema/nullables.avsc", + sf: "testdata/schema/nullables.avsc", rt: record.RecordTypeJsonl, - input: "../testdata/record/nullables.jsonl", - expected: "../testdata/parquet/nullables.parquet", + input: "testdata/record/nullables.jsonl", + expected: "testdata/parquet/nullables.parquet", }, // nullables; Avro schema, MessagePack record { st: schema.SchemaTypeAvro, - sf: "../testdata/schema/nullables.avsc", + sf: "testdata/schema/nullables.avsc", rt: record.RecordTypeMsgpack, - input: "../testdata/record/nullables.msgpack", - expected: "../testdata/parquet/nullables.parquet", + input: "testdata/record/nullables.msgpack", + expected: "testdata/parquet/nullables.parquet", }, // TODO logicals; Avro schema, Avro record // logicals; Avro schema, CSV record { st: schema.SchemaTypeAvro, - sf: "../testdata/schema/logicals.avsc", + sf: "testdata/schema/logicals.avsc", rt: record.RecordTypeCsv, - input: "../testdata/record/logicals.csv", - expected: "../testdata/parquet/logicals.parquet", + input: "testdata/record/logicals.csv", + expected: "testdata/parquet/logicals.parquet", }, // logicals; Avro schema, JSONL record { st: schema.SchemaTypeAvro, - sf: "../testdata/schema/logicals.avsc", + sf: "testdata/schema/logicals.avsc", rt: record.RecordTypeJsonl, - input: "../testdata/record/logicals.jsonl", - expected: "../testdata/parquet/logicals.parquet", + input: "testdata/record/logicals.jsonl", + expected: "testdata/parquet/logicals.parquet", }, // logicals; Avro schema, LTSV record { st: schema.SchemaTypeAvro, - sf: "../testdata/schema/logicals.avsc", + sf: "testdata/schema/logicals.avsc", rt: record.RecordTypeLtsv, - input: "../testdata/record/logicals.ltsv", - expected: "../testdata/parquet/logicals.parquet", + input: "testdata/record/logicals.ltsv", + expected: "testdata/parquet/logicals.parquet", }, // logicals; Avro schema, MessagePack record { st: schema.SchemaTypeAvro, - sf: "../testdata/schema/logicals.avsc", + sf: "testdata/schema/logicals.avsc", rt: record.RecordTypeMsgpack, - input: "../testdata/record/logicals.msgpack", - expected: "../testdata/parquet/logicals.parquet", + input: "testdata/record/logicals.msgpack", + expected: "testdata/parquet/logicals.parquet", }, // logicals; Avro schema, TSV record { st: schema.SchemaTypeAvro, - sf: "../testdata/schema/logicals.avsc", + sf: "testdata/schema/logicals.avsc", rt: record.RecordTypeTsv, - input: "../testdata/record/logicals.tsv", - expected: "../testdata/parquet/logicals.parquet", + input: "testdata/record/logicals.tsv", + expected: "testdata/parquet/logicals.parquet", }, // nested; Avro schema, Avro record { st: schema.SchemaTypeAvro, - sf: "../testdata/schema/nested.avsc", + sf: "testdata/schema/nested.avsc", rt: record.RecordTypeAvro, - input: "../testdata/record/nested.avro", - expected: "../testdata/parquet/nested_with_bytes.parquet", + input: "testdata/record/nested.avro", + expected: "testdata/parquet/nested_with_bytes.parquet", }, // nested; Avro schema, JSONL record { st: schema.SchemaTypeAvro, - sf: "../testdata/schema/nested.avsc", + sf: "testdata/schema/nested.avsc", rt: record.RecordTypeJsonl, - input: "../testdata/record/nested.jsonl", - expected: "../testdata/parquet/nested.parquet", + input: "testdata/record/nested.jsonl", + expected: "testdata/parquet/nested.parquet", }, // nested; Avro schema, MessagePack record { st: schema.SchemaTypeAvro, - sf: "../testdata/schema/nested.avsc", + sf: "testdata/schema/nested.avsc", rt: record.RecordTypeMsgpack, - input: "../testdata/record/nested.msgpack", - expected: "../testdata/parquet/nested.parquet", + input: "testdata/record/nested.msgpack", + expected: "testdata/parquet/nested.parquet", }, // array; Avro schema, Avro record { st: schema.SchemaTypeAvro, - sf: "../testdata/schema/array.avsc", + sf: "testdata/schema/array.avsc", rt: record.RecordTypeAvro, - input: "../testdata/record/array.avro", - expected: "../testdata/parquet/array_with_bytes.parquet", + input: "testdata/record/array.avro", + expected: "testdata/parquet/array_with_bytes.parquet", }, // array; Avro schema, JSONL record { st: schema.SchemaTypeAvro, - sf: "../testdata/schema/array.avsc", + sf: "testdata/schema/array.avsc", rt: record.RecordTypeJsonl, - input: "../testdata/record/array.jsonl", - expected: "../testdata/parquet/array.parquet", + input: "testdata/record/array.jsonl", + expected: "testdata/parquet/array.parquet", }, // array; Avro schema, MessagePack record { st: schema.SchemaTypeAvro, - sf: "../testdata/schema/array.avsc", + sf: "testdata/schema/array.avsc", rt: record.RecordTypeMsgpack, - input: "../testdata/record/array.msgpack", - expected: "../testdata/parquet/array.parquet", + input: "testdata/record/array.msgpack", + expected: "testdata/parquet/array.parquet", }, // nullable/complex; Avro schema, Avro record { st: schema.SchemaTypeAvro, - sf: "../testdata/schema/nullable_complex.avsc", + sf: "testdata/schema/nullable_complex.avsc", rt: record.RecordTypeAvro, - input: "../testdata/record/nullable_complex.avro", - expected: "../testdata/parquet/nullable_complex_with_bytes.parquet", + input: "testdata/record/nullable_complex.avro", + expected: "testdata/parquet/nullable_complex_with_bytes.parquet", }, // nullable/complex; Avro schema, JSONL record { st: schema.SchemaTypeAvro, - sf: "../testdata/schema/nullable_complex.avsc", + sf: "testdata/schema/nullable_complex.avsc", rt: record.RecordTypeJsonl, - input: "../testdata/record/nullable_complex.jsonl", - expected: "../testdata/parquet/nullable_complex.parquet", + input: "testdata/record/nullable_complex.jsonl", + expected: "testdata/parquet/nullable_complex.parquet", }, // nullable/complex; Avro schema, JSONL record { st: schema.SchemaTypeAvro, - sf: "../testdata/schema/nullable_complex.avsc", + sf: "testdata/schema/nullable_complex.avsc", rt: record.RecordTypeMsgpack, - input: "../testdata/record/nullable_complex.msgpack", - expected: "../testdata/parquet/nullable_complex.parquet", + input: "testdata/record/nullable_complex.msgpack", + expected: "testdata/parquet/nullable_complex.parquet", }, // primitives; BigQuery schema, Avro record { st: schema.SchemaTypeBigquery, - sf: "../testdata/schema/primitives.bq.json", + sf: "testdata/schema/primitives.bq.json", rt: record.RecordTypeAvro, - input: "../testdata/record/primitives.avro", - expected: "../testdata/parquet/primitives_with_bytes.parquet", + input: "testdata/record/primitives.avro", + expected: "testdata/parquet/primitives_with_bytes.parquet", }, // primitives; BigQuery schema, CSV record { st: schema.SchemaTypeBigquery, - sf: "../testdata/schema/primitives.bq.json", + sf: "testdata/schema/primitives.bq.json", rt: record.RecordTypeCsv, - input: "../testdata/record/primitives.csv", - expected: "../testdata/parquet/primitives.parquet", + input: "testdata/record/primitives.csv", + expected: "testdata/parquet/primitives.parquet", }, // primitives; BigQuery schema, JSONL record { st: schema.SchemaTypeBigquery, - sf: "../testdata/schema/primitives.bq.json", + sf: "testdata/schema/primitives.bq.json", rt: record.RecordTypeJsonl, - input: "../testdata/record/primitives.jsonl", - expected: "../testdata/parquet/primitives.parquet", + input: "testdata/record/primitives.jsonl", + expected: "testdata/parquet/primitives.parquet", }, // primitives; BigQuery schema, LTSV record { st: schema.SchemaTypeBigquery, - sf: "../testdata/schema/primitives.bq.json", + sf: "testdata/schema/primitives.bq.json", rt: record.RecordTypeLtsv, - input: "../testdata/record/primitives.ltsv", - expected: "../testdata/parquet/primitives.parquet", + input: "testdata/record/primitives.ltsv", + expected: "testdata/parquet/primitives.parquet", }, // primitives; BigQuery schema, MessagePack record { st: schema.SchemaTypeBigquery, - sf: "../testdata/schema/primitives.bq.json", + sf: "testdata/schema/primitives.bq.json", rt: record.RecordTypeMsgpack, - input: "../testdata/record/primitives.msgpack", - expected: "../testdata/parquet/primitives.parquet", + input: "testdata/record/primitives.msgpack", + expected: "testdata/parquet/primitives.parquet", }, // primitives; BigQuery schema, TSV record { st: schema.SchemaTypeBigquery, - sf: "../testdata/schema/primitives.bq.json", + sf: "testdata/schema/primitives.bq.json", rt: record.RecordTypeTsv, - input: "../testdata/record/primitives.tsv", - expected: "../testdata/parquet/primitives.parquet", + input: "testdata/record/primitives.tsv", + expected: "testdata/parquet/primitives.parquet", }, // nullables; Avro schema, Avro record { st: schema.SchemaTypeBigquery, - sf: "../testdata/schema/nullables.bq.json", + sf: "testdata/schema/nullables.bq.json", rt: record.RecordTypeAvro, - input: "../testdata/record/nullables.avro", - expected: "../testdata/parquet/nullables_with_bytes.parquet", + input: "testdata/record/nullables.avro", + expected: "testdata/parquet/nullables_with_bytes.parquet", }, // nullables; BigQuery schema, JSONL record { st: schema.SchemaTypeBigquery, - sf: "../testdata/schema/nullables.bq.json", + sf: "testdata/schema/nullables.bq.json", rt: record.RecordTypeJsonl, - input: "../testdata/record/nullables.jsonl", - expected: "../testdata/parquet/nullables.parquet", + input: "testdata/record/nullables.jsonl", + expected: "testdata/parquet/nullables.parquet", }, // nullables; BigQuery schema, MessagePack record { st: schema.SchemaTypeBigquery, - sf: "../testdata/schema/nullables.bq.json", + sf: "testdata/schema/nullables.bq.json", rt: record.RecordTypeMsgpack, - input: "../testdata/record/nullables.msgpack", - expected: "../testdata/parquet/nullables.parquet", + input: "testdata/record/nullables.msgpack", + expected: "testdata/parquet/nullables.parquet", }, // nested; BigQuery schema, Avro record { st: schema.SchemaTypeBigquery, - sf: "../testdata/schema/nested.bq.json", + sf: "testdata/schema/nested.bq.json", rt: record.RecordTypeAvro, - input: "../testdata/record/nested.avro", - expected: "../testdata/parquet/nested_with_bytes.parquet", + input: "testdata/record/nested.avro", + expected: "testdata/parquet/nested_with_bytes.parquet", }, // nested; BigQuery schema, JSONL record { st: schema.SchemaTypeBigquery, - sf: "../testdata/schema/nested.bq.json", + sf: "testdata/schema/nested.bq.json", rt: record.RecordTypeJsonl, - input: "../testdata/record/nested.jsonl", - expected: "../testdata/parquet/nested.parquet", + input: "testdata/record/nested.jsonl", + expected: "testdata/parquet/nested.parquet", }, // nested; BigQuery schema, MessagePack record { st: schema.SchemaTypeBigquery, - sf: "../testdata/schema/nested.bq.json", + sf: "testdata/schema/nested.bq.json", rt: record.RecordTypeMsgpack, - input: "../testdata/record/nested.msgpack", - expected: "../testdata/parquet/nested.parquet", + input: "testdata/record/nested.msgpack", + expected: "testdata/parquet/nested.parquet", }, // array; BigQuery schema, Avro record { st: schema.SchemaTypeBigquery, - sf: "../testdata/schema/array.bq.json", + sf: "testdata/schema/array.bq.json", rt: record.RecordTypeAvro, - input: "../testdata/record/array.avro", - expected: "../testdata/parquet/array_with_bytes.parquet", + input: "testdata/record/array.avro", + expected: "testdata/parquet/array_with_bytes.parquet", }, // array; BigQuery schema, JSONL record { st: schema.SchemaTypeBigquery, - sf: "../testdata/schema/array.bq.json", + sf: "testdata/schema/array.bq.json", rt: record.RecordTypeJsonl, - input: "../testdata/record/array.jsonl", - expected: "../testdata/parquet/array.parquet", + input: "testdata/record/array.jsonl", + expected: "testdata/parquet/array.parquet", }, // array; BigQuery schema, MessagePack record { st: schema.SchemaTypeBigquery, - sf: "../testdata/schema/array.bq.json", + sf: "testdata/schema/array.bq.json", rt: record.RecordTypeMsgpack, - input: "../testdata/record/array.msgpack", - expected: "../testdata/parquet/array.parquet", + input: "testdata/record/array.msgpack", + expected: "testdata/parquet/array.parquet", }, } @@ -476,17 +476,17 @@ func TestWriteClose_Errors(t *testing.T) { // Invalid record type { st: schema.SchemaTypeAvro, - sf: "../testdata/schema/primitives.avsc", + sf: "testdata/schema/primitives.avsc", rt: "unknown", - input: "../testdata/record/primitives.jsonl", + input: "testdata/record/primitives.jsonl", }, // Mismatch schema & record { st: schema.SchemaTypeAvro, - sf: "../testdata/schema/mismatch.avsc", + sf: "testdata/schema/mismatch.avsc", rt: record.RecordTypeJsonl, - input: "../testdata/record/primitives.jsonl", + input: "testdata/record/primitives.jsonl", }, } diff --git a/testdata/parquet/array.parquet b/columnifier/testdata/parquet/array.parquet similarity index 100% rename from testdata/parquet/array.parquet rename to columnifier/testdata/parquet/array.parquet diff --git a/testdata/parquet/array_with_bytes.parquet b/columnifier/testdata/parquet/array_with_bytes.parquet similarity index 100% rename from testdata/parquet/array_with_bytes.parquet rename to columnifier/testdata/parquet/array_with_bytes.parquet diff --git a/testdata/parquet/logicals.parquet b/columnifier/testdata/parquet/logicals.parquet similarity index 100% rename from testdata/parquet/logicals.parquet rename to columnifier/testdata/parquet/logicals.parquet diff --git a/testdata/parquet/nested.parquet b/columnifier/testdata/parquet/nested.parquet similarity index 100% rename from testdata/parquet/nested.parquet rename to columnifier/testdata/parquet/nested.parquet diff --git a/testdata/parquet/nested_with_bytes.parquet b/columnifier/testdata/parquet/nested_with_bytes.parquet similarity index 100% rename from testdata/parquet/nested_with_bytes.parquet rename to columnifier/testdata/parquet/nested_with_bytes.parquet diff --git a/testdata/parquet/nullable_complex.parquet b/columnifier/testdata/parquet/nullable_complex.parquet similarity index 100% rename from testdata/parquet/nullable_complex.parquet rename to columnifier/testdata/parquet/nullable_complex.parquet diff --git a/testdata/parquet/nullable_complex_with_bytes.parquet b/columnifier/testdata/parquet/nullable_complex_with_bytes.parquet similarity index 100% rename from testdata/parquet/nullable_complex_with_bytes.parquet rename to columnifier/testdata/parquet/nullable_complex_with_bytes.parquet diff --git a/testdata/parquet/nullables.parquet b/columnifier/testdata/parquet/nullables.parquet similarity index 100% rename from testdata/parquet/nullables.parquet rename to columnifier/testdata/parquet/nullables.parquet diff --git a/testdata/parquet/nullables_with_bytes.parquet b/columnifier/testdata/parquet/nullables_with_bytes.parquet similarity index 100% rename from testdata/parquet/nullables_with_bytes.parquet rename to columnifier/testdata/parquet/nullables_with_bytes.parquet diff --git a/testdata/parquet/primitives.parquet b/columnifier/testdata/parquet/primitives.parquet similarity index 100% rename from testdata/parquet/primitives.parquet rename to columnifier/testdata/parquet/primitives.parquet diff --git a/testdata/parquet/primitives_with_bytes.parquet b/columnifier/testdata/parquet/primitives_with_bytes.parquet similarity index 100% rename from testdata/parquet/primitives_with_bytes.parquet rename to columnifier/testdata/parquet/primitives_with_bytes.parquet diff --git a/examples/record/array.avro b/columnifier/testdata/record/array.avro similarity index 100% rename from examples/record/array.avro rename to columnifier/testdata/record/array.avro diff --git a/examples/record/array.jsonl b/columnifier/testdata/record/array.jsonl similarity index 100% rename from examples/record/array.jsonl rename to columnifier/testdata/record/array.jsonl diff --git a/testdata/record/array.msgpack b/columnifier/testdata/record/array.msgpack similarity index 100% rename from testdata/record/array.msgpack rename to columnifier/testdata/record/array.msgpack diff --git a/testdata/record/logicals.avro b/columnifier/testdata/record/logicals.avro similarity index 100% rename from testdata/record/logicals.avro rename to columnifier/testdata/record/logicals.avro diff --git a/testdata/record/logicals.csv b/columnifier/testdata/record/logicals.csv similarity index 100% rename from testdata/record/logicals.csv rename to columnifier/testdata/record/logicals.csv diff --git a/testdata/record/logicals.jsonl b/columnifier/testdata/record/logicals.jsonl similarity index 100% rename from testdata/record/logicals.jsonl rename to columnifier/testdata/record/logicals.jsonl diff --git a/testdata/record/logicals.ltsv b/columnifier/testdata/record/logicals.ltsv similarity index 100% rename from testdata/record/logicals.ltsv rename to columnifier/testdata/record/logicals.ltsv diff --git a/testdata/record/logicals.msgpack b/columnifier/testdata/record/logicals.msgpack similarity index 100% rename from testdata/record/logicals.msgpack rename to columnifier/testdata/record/logicals.msgpack diff --git a/testdata/record/logicals.tsv b/columnifier/testdata/record/logicals.tsv similarity index 100% rename from testdata/record/logicals.tsv rename to columnifier/testdata/record/logicals.tsv diff --git a/examples/record/nested.avro b/columnifier/testdata/record/nested.avro similarity index 100% rename from examples/record/nested.avro rename to columnifier/testdata/record/nested.avro diff --git a/examples/record/nested.jsonl b/columnifier/testdata/record/nested.jsonl similarity index 100% rename from examples/record/nested.jsonl rename to columnifier/testdata/record/nested.jsonl diff --git a/testdata/record/nested.msgpack b/columnifier/testdata/record/nested.msgpack similarity index 100% rename from testdata/record/nested.msgpack rename to columnifier/testdata/record/nested.msgpack diff --git a/testdata/record/nullable_complex.avro b/columnifier/testdata/record/nullable_complex.avro similarity index 100% rename from testdata/record/nullable_complex.avro rename to columnifier/testdata/record/nullable_complex.avro diff --git a/testdata/record/nullable_complex.jsonl b/columnifier/testdata/record/nullable_complex.jsonl similarity index 100% rename from testdata/record/nullable_complex.jsonl rename to columnifier/testdata/record/nullable_complex.jsonl diff --git a/testdata/record/nullable_complex.msgpack b/columnifier/testdata/record/nullable_complex.msgpack similarity index 100% rename from testdata/record/nullable_complex.msgpack rename to columnifier/testdata/record/nullable_complex.msgpack diff --git a/testdata/record/nullables.avro b/columnifier/testdata/record/nullables.avro similarity index 100% rename from testdata/record/nullables.avro rename to columnifier/testdata/record/nullables.avro diff --git a/testdata/record/nullables.jsonl b/columnifier/testdata/record/nullables.jsonl similarity index 100% rename from testdata/record/nullables.jsonl rename to columnifier/testdata/record/nullables.jsonl diff --git a/testdata/record/nullables.msgpack b/columnifier/testdata/record/nullables.msgpack similarity index 100% rename from testdata/record/nullables.msgpack rename to columnifier/testdata/record/nullables.msgpack diff --git a/examples/record/primitives.avro b/columnifier/testdata/record/primitives.avro similarity index 100% rename from examples/record/primitives.avro rename to columnifier/testdata/record/primitives.avro diff --git a/examples/record/primitives.csv b/columnifier/testdata/record/primitives.csv similarity index 100% rename from examples/record/primitives.csv rename to columnifier/testdata/record/primitives.csv diff --git a/examples/record/primitives.jsonl b/columnifier/testdata/record/primitives.jsonl similarity index 100% rename from examples/record/primitives.jsonl rename to columnifier/testdata/record/primitives.jsonl diff --git a/examples/record/primitives.ltsv b/columnifier/testdata/record/primitives.ltsv similarity index 100% rename from examples/record/primitives.ltsv rename to columnifier/testdata/record/primitives.ltsv diff --git a/examples/record/primitives.msgpack b/columnifier/testdata/record/primitives.msgpack similarity index 100% rename from examples/record/primitives.msgpack rename to columnifier/testdata/record/primitives.msgpack diff --git a/examples/record/primitives.tsv b/columnifier/testdata/record/primitives.tsv similarity index 100% rename from examples/record/primitives.tsv rename to columnifier/testdata/record/primitives.tsv diff --git a/examples/schema/array.avsc b/columnifier/testdata/schema/array.avsc similarity index 100% rename from examples/schema/array.avsc rename to columnifier/testdata/schema/array.avsc diff --git a/examples/schema/array.bq.json b/columnifier/testdata/schema/array.bq.json similarity index 100% rename from examples/schema/array.bq.json rename to columnifier/testdata/schema/array.bq.json diff --git a/testdata/schema/logicals.avsc b/columnifier/testdata/schema/logicals.avsc similarity index 100% rename from testdata/schema/logicals.avsc rename to columnifier/testdata/schema/logicals.avsc diff --git a/testdata/schema/mismatch.avsc b/columnifier/testdata/schema/mismatch.avsc similarity index 100% rename from testdata/schema/mismatch.avsc rename to columnifier/testdata/schema/mismatch.avsc diff --git a/examples/schema/nested.avsc b/columnifier/testdata/schema/nested.avsc similarity index 100% rename from examples/schema/nested.avsc rename to columnifier/testdata/schema/nested.avsc diff --git a/examples/schema/nested.bq.json b/columnifier/testdata/schema/nested.bq.json similarity index 100% rename from examples/schema/nested.bq.json rename to columnifier/testdata/schema/nested.bq.json diff --git a/testdata/schema/nullable_complex.avsc b/columnifier/testdata/schema/nullable_complex.avsc similarity index 100% rename from testdata/schema/nullable_complex.avsc rename to columnifier/testdata/schema/nullable_complex.avsc diff --git a/testdata/schema/nullables.avsc b/columnifier/testdata/schema/nullables.avsc similarity index 100% rename from testdata/schema/nullables.avsc rename to columnifier/testdata/schema/nullables.avsc diff --git a/testdata/schema/nullables.bq.json b/columnifier/testdata/schema/nullables.bq.json similarity index 100% rename from testdata/schema/nullables.bq.json rename to columnifier/testdata/schema/nullables.bq.json diff --git a/examples/schema/primitives.avsc b/columnifier/testdata/schema/primitives.avsc similarity index 100% rename from examples/schema/primitives.avsc rename to columnifier/testdata/schema/primitives.avsc diff --git a/examples/schema/primitives.bq.json b/columnifier/testdata/schema/primitives.bq.json similarity index 100% rename from examples/schema/primitives.bq.json rename to columnifier/testdata/schema/primitives.bq.json diff --git a/testdata/record/primitives.avro b/examples/primitives.avro similarity index 100% rename from testdata/record/primitives.avro rename to examples/primitives.avro diff --git a/testdata/schema/primitives.avsc b/examples/primitives.avsc similarity index 100% rename from testdata/schema/primitives.avsc rename to examples/primitives.avsc diff --git a/testdata/schema/primitives.bq.json b/examples/primitives.bq.json similarity index 100% rename from testdata/schema/primitives.bq.json rename to examples/primitives.bq.json diff --git a/testdata/record/primitives.csv b/examples/primitives.csv similarity index 100% rename from testdata/record/primitives.csv rename to examples/primitives.csv diff --git a/testdata/record/primitives.jsonl b/examples/primitives.jsonl similarity index 100% rename from testdata/record/primitives.jsonl rename to examples/primitives.jsonl diff --git a/testdata/record/primitives.ltsv b/examples/primitives.ltsv similarity index 100% rename from testdata/record/primitives.ltsv rename to examples/primitives.ltsv diff --git a/testdata/record/primitives.msgpack b/examples/primitives.msgpack similarity index 100% rename from testdata/record/primitives.msgpack rename to examples/primitives.msgpack diff --git a/testdata/record/primitives.tsv b/examples/primitives.tsv similarity index 100% rename from testdata/record/primitives.tsv rename to examples/primitives.tsv diff --git a/examples/record/array.msgpack b/examples/record/array.msgpack deleted file mode 100644 index 3abb2a4..0000000 --- a/examples/record/array.msgpack +++ /dev/null @@ -1 +0,0 @@ -boolean£intlongfloat?񙙙double?񙙙bytesbytesstringstringarrayboolean£intlongfloat?񙙙double?񙙙bytesbytesstringstringboolean£intlongfloat@double@bytesbytesstringstringarrayboolean£intlongfloat@double@bytesbytesstringstring \ No newline at end of file diff --git a/examples/record/complicated.avro b/examples/record/complicated.avro deleted file mode 100644 index 102b00b..0000000 --- a/examples/record/complicated.avro +++ /dev/null @@ -1,767 +0,0 @@ -Objavro.schema{"type":"record","name":"Complicated","doc":"It contains most kind of primitive/complex/logical types","fields":[{"name":"r_boolean","type":"boolean"},{"name":"r_int","type":"int"},{"name":"r_long","type":"long"},{"name":"r_float","type":"float"},{"name":"r_double","type":"double"},{"name":"r_bytes","type":"bytes"},{"name":"r_string","type":"string"},{"name":"r_record","type":{"type":"record","name":"Level1_1","fields":[{"name":"r_boolean","type":"boolean"},{"name":"r_int","type":"int"},{"name":"r_long","type":"long"},{"name":"r_float","type":"float"},{"name":"r_double","type":"double"},{"name":"r_bytes","type":"bytes"},{"name":"r_string","type":"string"},{"name":"r_record","type":{"type":"record","name":"Level2_1__1","fields":[{"name":"r_boolean","type":"boolean"},{"name":"r_int","type":"int"},{"name":"r_long","type":"long"},{"name":"r_float","type":"float"},{"name":"r_double","type":"double"},{"name":"r_bytes","type":"bytes"},{"name":"r_string","type":"string"},{"name":"r_enum","type":{"type":"enum","name":"Level2_1__1_Enum1","symbols":["ZERO","ONE","TWO"]}},{"name":"r_date","type":{"type":"int","logicalType":"date"}},{"name":"r_timemillis","type":{"type":"int","logicalType":"time-millis"}},{"name":"r_timemicros","type":{"type":"long","logicalType":"time-micros"}},{"name":"r_timestampmillis","type":{"type":"long","logicalType":"timestamp-millis"}},{"name":"r_timestampmicros","type":{"type":"long","logicalType":"timestamp-micros"}},{"name":"o_boolean","type":["null","boolean"],"default":null},{"name":"o_int","type":["null","int"],"default":null},{"name":"o_long","type":["null","long"],"default":null},{"name":"o_float","type":["null","float"],"default":null},{"name":"o_double","type":["null","double"],"default":null},{"name":"o_bytes","type":["null","bytes"],"default":null},{"name":"o_string","type":["null","string"],"default":null},{"name":"o_enum","type":["null",{"type":"enum","name":"Level2_1__1_Enum2","symbols":["ZERO","ONE","TWO"]}],"default":null},{"name":"o_date","type":["null",{"type":"int","logicalType":"date"}],"default":null},{"name":"o_timemillis","type":["null",{"type":"int","logicalType":"time-millis"}],"default":null},{"name":"o_timemicros","type":["null",{"type":"long","logicalType":"time-micros"}],"default":null},{"name":"o_timestampmillis","type":["null",{"type":"long","logicalType":"timestamp-millis"}],"default":null},{"name":"o_timestampmicros","type":["null",{"type":"long","logicalType":"timestamp-micros"}],"default":null}]}},{"name":"r_enum","type":{"type":"enum","name":"Level1_1_Enum1","symbols":["ZERO","ONE","TWO"]}},{"name":"r_date","type":{"type":"int","logicalType":"date"}},{"name":"r_timemillis","type":{"type":"int","logicalType":"time-millis"}},{"name":"r_timemicros","type":{"type":"long","logicalType":"time-micros"}},{"name":"r_timestampmillis","type":{"type":"long","logicalType":"timestamp-millis"}},{"name":"r_timestampmicros","type":{"type":"long","logicalType":"timestamp-micros"}},{"name":"r_array","type":{"type":"array","items":{"type":"record","name":"Level2_1__2","fields":[{"name":"r_boolean","type":"boolean"},{"name":"r_int","type":"int"},{"name":"r_long","type":"long"},{"name":"r_float","type":"float"},{"name":"r_double","type":"double"},{"name":"r_bytes","type":"bytes"},{"name":"r_string","type":"string"},{"name":"r_enum","type":{"type":"enum","name":"Level2_1__2_Enum1","symbols":["ZERO","ONE","TWO"]}},{"name":"o_boolean","type":["null","boolean"],"default":null},{"name":"o_int","type":["null","int"],"default":null},{"name":"o_long","type":["null","long"],"default":null},{"name":"o_float","type":["null","float"],"default":null},{"name":"o_double","type":["null","double"],"default":null},{"name":"o_bytes","type":["null","bytes"],"default":null},{"name":"o_string","type":["null","string"],"default":null},{"name":"o_enum","type":["null",{"type":"enum","name":"Level2_1__2_Enum2","symbols":["ZERO","ONE","TWO"]}],"default":null},{"name":"o_date","type":["null",{"type":"int","logicalType":"date"}],"default":null},{"name":"o_timemillis","type":["null",{"type":"int","logicalType":"time-millis"}],"default":null},{"name":"o_timemicros","type":["null",{"type":"long","logicalType":"time-micros"}],"default":null},{"name":"o_timestampmillis","type":["null",{"type":"long","logicalType":"timestamp-millis"}],"default":null},{"name":"o_timestampmicros","type":["null",{"type":"long","logicalType":"timestamp-micros"}],"default":null}]}}}]}},{"name":"r_enum","type":{"type":"enum","name":"Enum1","symbols":["ZERO","ONE","TWO"]}},{"name":"r_array","type":{"type":"array","items":{"type":"record","name":"Level1_2","fields":[{"name":"r_boolean","type":"boolean"},{"name":"r_int","type":"int"},{"name":"r_long","type":"long"},{"name":"r_float","type":"float"},{"name":"r_double","type":"double"},{"name":"r_bytes","type":"bytes"},{"name":"r_string","type":"string"},{"name":"r_array","type":{"type":"array","items":{"type":"record","name":"Level2_2","fields":[{"name":"r_boolean","type":"boolean"},{"name":"r_int","type":"int"},{"name":"r_long","type":"long"},{"name":"r_float","type":"float"},{"name":"r_double","type":"double"},{"name":"r_bytes","type":"bytes"},{"name":"r_string","type":"string"},{"name":"r_enum","type":{"type":"enum","name":"Level2_2_Enum1","symbols":["ZERO","ONE","TWO"]}},{"name":"r_date","type":{"type":"int","logicalType":"date"}},{"name":"r_timemillis","type":{"type":"int","logicalType":"time-millis"}},{"name":"r_timemicros","type":{"type":"long","logicalType":"time-micros"}},{"name":"r_timestampmillis","type":{"type":"long","logicalType":"timestamp-millis"}},{"name":"r_timestampmicros","type":{"type":"long","logicalType":"timestamp-micros"}},{"name":"o_boolean","type":["null","boolean"],"default":null},{"name":"o_int","type":["null","int"],"default":null},{"name":"o_long","type":["null","long"],"default":null},{"name":"o_float","type":["null","float"],"default":null},{"name":"o_double","type":["null","double"],"default":null},{"name":"o_bytes","type":["null","bytes"],"default":null},{"name":"o_string","type":["null","string"],"default":null},{"name":"o_enum","type":["null",{"type":"enum","name":"Level2_2_Enum2","symbols":["ZERO","ONE","TWO"]}],"default":null},{"name":"o_date","type":["null",{"type":"int","logicalType":"date"}],"default":null},{"name":"o_timemillis","type":["null",{"type":"int","logicalType":"time-millis"}],"default":null},{"name":"o_timemicros","type":["null",{"type":"long","logicalType":"time-micros"}],"default":null},{"name":"o_timestampmillis","type":["null",{"type":"long","logicalType":"timestamp-millis"}],"default":null},{"name":"o_timestampmicros","type":["null",{"type":"long","logicalType":"timestamp-micros"}],"default":null}]}}},{"name":"o_boolean","type":["null","boolean"],"default":null},{"name":"o_int","type":["null","int"],"default":null},{"name":"o_long","type":["null","long"],"default":null},{"name":"o_float","type":["null","float"],"default":null},{"name":"o_double","type":["null","double"],"default":null},{"name":"o_bytes","type":["null","bytes"],"default":null},{"name":"o_string","type":["null","string"],"default":null},{"name":"o_enum","type":["null",{"type":"enum","name":"Level1_2_Enum2","symbols":["ZERO","ONE","TWO"]}],"default":null},{"name":"o_date","type":["null",{"type":"int","logicalType":"date"}],"default":null},{"name":"o_timemillis","type":["null",{"type":"int","logicalType":"time-millis"}],"default":null},{"name":"o_timemicros","type":["null",{"type":"long","logicalType":"time-micros"}],"default":null},{"name":"o_timestampmillis","type":["null",{"type":"long","logicalType":"timestamp-millis"}],"default":null},{"name":"o_timestampmicros","type":["null",{"type":"long","logicalType":"timestamp-micros"}],"default":null}]}}},{"name":"r_date","type":{"type":"int","logicalType":"date"}},{"name":"r_timemillis","type":{"type":"int","logicalType":"time-millis"}},{"name":"r_timemicros","type":{"type":"long","logicalType":"time-micros"}},{"name":"r_timestampmillis","type":{"type":"long","logicalType":"timestamp-millis"}},{"name":"r_timestampmicros","type":{"type":"long","logicalType":"timestamp-micros"}},{"name":"o_boolean","type":["null","boolean"],"default":null},{"name":"o_int","type":["null","int"],"default":null},{"name":"o_long","type":["null","long"],"default":null},{"name":"o_float","type":["null","float"],"default":null},{"name":"o_double","type":["null","double"],"default":null},{"name":"o_bytes","type":["null","bytes"],"default":null},{"name":"o_string","type":["null","string"],"default":null},{"name":"o_enum","type":["null",{"type":"enum","name":"Enum2","symbols":["ZERO","ONE","TWO"]}],"default":null},{"name":"o_date","type":["null",{"type":"int","logicalType":"date"}],"default":null},{"name":"o_timemillis","type":["null",{"type":"int","logicalType":"time-millis"}],"default":null},{"name":"o_timemicros","type":["null",{"type":"long","logicalType":"time-micros"}],"default":null},{"name":"o_timestampmillis","type":["null",{"type":"long","logicalType":"timestamp-millis"}],"default":null},{"name":"o_timestampmicros","type":["null",{"type":"long","logicalType":"timestamp-micros"}],"default":null}],"aliases":["Root"]}avro.codecdeflate¿DΊQ!. pn><|u@Yv(PF)K]^ݺֻ%Fb.݋7龿?s9 Yxkʉ&KeǓ0(&P6х2S5}zKm;ݯJ佯ǻath>ʣq[bb!3,ڭ0;%NÒFoeh0< NSC]uT^h8Rf- n)ů/" ^H!j(tFΦx ֚Q@)8Ngx<52N#sԘLE`i9(_Z1Y<#dWv+dv}A˜I= :}Uň/#obt}( -8^ܠ lG' = lӦy|R8 @k"͠15{P_5CNX(-`-e^(S̬qL} w_J,fCVRl:ä1j\*WkXE'OArϞp~5Rh,)'f4k?Su"T,rn -x>)k*FdY'eoYF?w`V8Du6^K$8AӸtyޣ,CK)f}-Lb28äʋ0_W U+X:;_U^ϟW/pZfvI=17ޭ5=F:0]=v*>{ܴ{%(qOi__)0#FwXҶĔuz{\ßLpGSK7:f_z:dqqECvK^:qqƸǛ~^ -=34xRGrt[CMRnw>3WQK >_>:(PKvQ{O+| ;^_g'ոWZgZ̛lTp]XZfU«8c;2Ս?n c8 Js; M4B_-3RLQ|Һ{1cg4+ޘ὇/DEuv$+];ۿï{]g6^+g炓V<>߫n[`[+qr|'e60գ`4EҞIJ.W_m'*h}N_t+5˩H,Ҳo*^2sFS4s}ݺ+ǴǏ #V 3TGإe B=q*"Dϴ߉Gg`M\~Smgj .?\W=%Ez9aM~]T+SO?rpjZ΅-|g(+۠A ,y*,O!7#6azU9JJEEmǁy;nVlVpi{i>yEFMɒѲ=yʕ'fB/{`JJ̎ʜ×X(?Z{ntso%z⟂noOek—>/^K@܃rofk~S~ƳUվp5I'Whi1s.շ'4<Q3ul߮k䛪_< *5lB \Ҿ?)y`¡MOgVW͐1J$&EM7*޽aB9zx*sF?MѩsHlE[ uB].;Q#kGTN9zt~gb l$<>9=۵*jG[R,~r]``?'.KЕp+Nv> 8 -)so:{3-`Xa׉ꧾ)7>#T}0걧G=5}6yDWޕր÷^KzAnQ:R L4mST`|Ww4riڶKS7#if@weAۖ6e;u)~G_gJ#UfYv)mWRĐZLޗ V>UXӁn7؛Viq%%"[c68KS`P$Gz!YT?{ܼog,RS~hĬ2//-ЬROg3D5Wצ!y,9 4f7n{$XBr&,ϞSl_D=L%GkK4Jz|n}k֓ .<+k,pGK{֓NkNW -բ*Wy'_Gm:K$iw(3N>9va9)O x}rTtSiͅp`Q TW]!󦪻yNm2wTܮ ~يY3ED:go}ܢ;Wjϼ?H?h3Ŧ|#3ityVNNMT-7vswh2!bn?W}DZQѺmpJ/Nq? ;T.zW6\P:Āÿvl=}#-͸O \U\1,kk:ZPRn;R1ےwlK2nߟ__0pM7þt޿[4EC_5n!zy^2G_ |Ho>};DZ"/]n g;ycLWue%z} A>1[s"V].h[[4՟Gsmb]⇵SO8/_~ -Yk/H)\u *Y4N:o/hy/ƛ/ǧ%^}&GI/ l:y[7M+g?$4}r?̓ΧX/kqm>:jctmS^T+A/qըEƐȄ?sDya_|uǬ-ޱ5Hs4 q7<> Ef~c -k^; -貽w^ўo}}D' eGڢK?}]X?:K{vS7C؊ov Qt3֠^x@ءW{4_&lҙѿ|NSKrzIb杏n\yA9Sgas֗{_ڲ h(gJ*enIgw'tvG?{k^N0%mEkQ|pͲƩ9gt59K[eѣ,QmH/>&ܔF_y> ob7Ad|]OLjr䊚KŬ?{h%afkL6NaiFtbY@!;,DWa+oPlxA7WQcޣh—vmyhX̰=iݿ3BݫWޫdҿ1+wJ ٢R\?;;wp^WkFs5o[=#-mr}`"\;`aZV,Qyq?vnMp~,x}ntbqa% 9lߞJȘ7vU7|߿y$0mzOO{mΏhԦ+NO67 8 w~cʭ"Ɨ' _u=;U`ݞ;)Eh_"̕ Rd_2`qRՉ/"WHm>]i=E抵oQ?4-[,{9~MU{Qٱ~dWr.Ly~N*k+6Vy>ն1x(as%x e uk=H*]FҖ!Э6_ -u֊%k&2*|Wݑy_˼:|5oj`U8uu5.EyfH:3NF_ဢ -j &LE(BB#œ`xB7"Z Br봻х1&CP5ߎoVhzgp186K1d*GRX@Ԩ.OpL,inBAuA6mmn^1eu9ɌJAXaL|{pvVU -BS2Yoja?)v{;LRtR ) -CaXtXLhhZOGQؼڐǪnl335a - P%3W u!~*( D"S;8Wl;~/S*#ƥmRhd{)@撈XO w@t넎!&nR[R mE7[ - f(`cf}>DםwׅI8s kk++~g+6p1òdLKg\c sNVt:ܩяĝ|Zop2#uĉݨdN,q#pGrS"'^R@l -PX8:+BZNnE4 -&?P`o2TxzXNKeBY;yVe8G'EgքYu7GjAUNqEU9}􎮶rQӷ6"jsxD+^ vWѢ$2 L7Jlirt2X>kg`.: 8fCUY!uFY }JxdX<%2t*$BE 誐){?eƖlD,/B2{[l*GVI 24^0!VT?SZu6sK4oהk - yyS>Jnl]'.rRJ u"Q6גƔRCj8 XWA{&KdjKWm KE"3vGRJ0bPhDjJaܗ^bp]٤X.CDo708 -Gi.Zʳvz0P:NKj}@Œ)2y$5eAwvtin&~'wzɦ)f )c :gaΞPeG/"ᭋ/ץrk+6bK5+pMCZmP`91ޤFZjl!`^d3k;i! +5iBPt5ȥPTՉ\`UՑ Et{K \ 69hϭp.oie3Os?k,2F%G9őwa~OeP z%|jKGVfR v]{&182H ?" -®'đ<^Q5|, k+qk> Y]_AZ0Җݸ?yL -P}?L @7.zKD/ h T^VGVّ&Q&'QpCi"[3?j'japi$US%*2.V:ǸC5KH_VEsZd@ AK@MZ="p?3;Kswrov[I\' -SK-, m̯΋ -ohs@A8^aﶚY'+Qvzǩ[y*GU3ɛ'jewܠ+6{ߐ]Iy$/Ay1ΐN?WSz![kɿC=w}o^G\ eә?G}6Ь׵sү+핕\{Ѳ C3!ϪGL5RoFnzsf}/lôC%1p\>aRH:U}Qxt,L#qDs &}:k@wXC:&;bC.m|s-&/߸ ],?:_:[U]/pi<^5X!oKXMY\&`1i5d2 -£Z!'_;ftc[?HU?W I 1OS v_G &bmPUDC EVFZ䇕ʂK[{sU.3&6 QiY2sDŽijgd\mMCH4Upd/%7EFr_RԶw%!!PV$jй,E!a@vBkcTrdSgŊU\ qh"5-Md~ e$T!F>͇'֌ uAD|T~$sc$2vk/% D^2ҮI>d+ n|~"B{-1[]Tq6YܡSΥIN򿫇PuxDu͓[=?uohzrV$i8JfbnFךxTA@k\z_yWkdF1aFf1W,#aQnuJL ^Ss~a -jↅ}SF`$*p)VؚZx}[@Tc<*Ac AYU6qd.0Td1, -F`8Tu&`qt.alpGQW__n j,* x%]SV9G?y52[o+.iOɖsQhQo?4,<PYv!ȼ3m}Asij3?#Д5J">m4  >oidYKtxokbx={U||F+FQy %vN>kkplYSrl2v~],TQ ZLsЦa5ʞ>6]Ž8D ( >/:Myy"?qٰwbik$ -bV#rLұf ..}3NG?kjK$vZX@wC$ h^:?FT7J|U*  -vOkBȁ2ᗛAj_5pE1ܰP(s);K?S$soۆIh9$mU~t8)ӣ0lM?t#ckt 2K&k=[Pq K 4S"&ܾpI[Ey_4?gl`P8Q~8ӌ{ $RsVފ\kItI,)nnKݸ^? Nv_NQ -mCҍEZZf@E$ӠQ~Ri=e-|wH;\|PZL:M54iW<=q݋wzgwq/?|6/LfD~ M[ :g*:teL2ݬUʨdK/DX׺f F?^1)$tz_ގ<`W3,sB(yZ5l( mv[G2 VG~jk1PTp<02Df:o.kht6>b]wrk{8KPYV&]z5UM~IӞjODumZpx.rfD@lŤa8LJ j*, U: K#p4*K aA` cUl -EE'q| -I$,ǓtU!_cЮ-)0m9 -z;fk 47wOtY2r^yhX%HV%b1DQ5%p1Om/ho2mՆbSډAq5&B`XRY8feǺ#a=IIRA̔,rIT^$DZ] PPӒX]c ߡ;@7P}ܾ|! I̼:t%5J a{2KehCjD x8'b ec[||@HT\fIݤЀr,%# ~[~5̷C3Q%;)?Pl}wkMX+NҠ1@:Nv"'//2jL>"=ů[70 -ly>Qr8,_p(&ɱQm2͡\k?+N:<_}1Da 8E ku:tN*RnTbx3Fй*l<RS~+F˿j=:tKM?ß*T[I ;y!} ı _4-0"Blf2Ot D:t ,Ws1+!nYfƪ&J*4wfOL7Mb+y}8aqZo -ھzY+% -UW$g$Snj 9W'3*si/{>Ż𐐯/r3NZnjI]s10U -BBk)p J(l`56G>d ·[&"׭ BnƳqںSb8=vsߣs6%/}X~a$Ҿo\ ɣSBnX;/ -B"ՄȢ2]cZ)ߐZ1K+1|EFxsOFV -1$2tO6ٴl @ʚֽ;Z{W皾$JV2DFD$xTX߿Ɓqz;oVB=.Cd I4EcT8H"c,56QTl#xQD5UU!>ꕓ!jծgVp)Чh5n|As\&#C 67^d;m^ Oӧm!,&gDPܮ dM'5F,\:gLy;x3է?;v9C42%I\>Ð\"T:B(L!jh`0x.FPYU 0xNs| (L]'d_8v9 "yzaa}?!ÈAG,?m{7t"T'̏T eNzFuxƂWꍛL:f_*AIz޳1x9%ygS+\nremLO%7gO~0,Q}QIz&B Ԕ4`uX6Y-](LRZѲ(034gT8k'v-"l.:`gw)3E".t,omݫDf|"#T.]= -t!zeG4XaFf% L{xҠ1AKKE1,.T +՘ z컼nWNk׶_R= ߝoEWR$:G@{>V$G&+bPttlղvӃBo@J;,0=Q)PkF 7!@; K<0(YGMS+< ͕j.?Hn6ZA=v.^{X>P& *;SA4O#O2xr;$[!~㥦2 _RgW=eטj1zh*eCtVY,0XE mKOOd@HVvwdl tJʬh7l~%kֶ*T:0I|:Cb`4 -E$cdu -FY'IwkyB S$㮠VZTZ9FLU !.p pkw,YԷ: -;~y_EB;dOMr7pNVCzr_S7i5S^L0|iC+ʁRع0ߙ=:jó ?'ON}>{'CٗϟgAz~ʊaRbϥRL*MELi#I#EQ {:7渎 g`9{G~v,@; EۋM'3!K_}cMU߲JڦVMFHmɌ;g|efJR[j=sIŢWz_'tTNv8g[ULcWdU^t=M2ۄe_Tg+lP8p+v=S̯vi4lTeuKt[=_*t?\m`bqK#!ˏ)>o#3n\|TתkuOg C`A22ykZz,bATQ/;#',FʨslFB9s;2/q&>֥UXlkiNB/%1r*g&IEXsEwu6j탶]|*o = [J1bckݦ["*Z7w*L7k]f^M v~~IJ72(:u[Uoy{}f$e1#Y9ZusZ9= <#5Њv~yu;ڑz\ӆE~SeE.:FȈf:!}VY$-ڴI]:6hZPCƈh,+1_2 -/+ɁʵGt!4z1Qme>[. բw~[ T}٤eQMbAHp0pJpj oM'AG(-+Hj瀹FP dbw*{"E;|tCj%W6ww`V"Feb(XC#COv";Q dlj\]?}_$,YiqK!BՋA) pC׮J|o&n@*j5Ug 늾yH#$6_o*!*ϧTDml cc -P4x*"hB⨓5*\&FQd&GR\*c)d.0*QE ڽAР#rτ* Zsb?$­uˮˍRaʎ=M@o~+ŒU)1?O|nŲB/Dn|UXE[G2T$6bR.qn9ȥд,:*Z^XAR[(31mwEbK30dyT~I.A F.Eh!76&& TBl2aWkǯ#`Rf'̹])PgiMr'[<;flP: ´|rNmۃ߱@#x5̐s^pOJ:QRorVc0J`Q=b.MkK}[mJJhdӜ|hYRGƕ&5I2WDw@V?+QDIXX6iVI4M"O6m4Iܽnp` -*leBE@쥈KOs9=^9s9py噙ӻ"xgߦcǣoWh^-H '+UGw _ͨ<;D,Wv0#"&|R{<7]w+FM_pHHNjN!"Ƣ8*mJ*EJ`(4Û -n2MQ /i8J_ -(EP95RV%LcA34Bqq2Kk%\[ X !1-U48¦0V:44AqDdI5Qp@Z5%R8UI@pA3(Cڨ -B@7v.Z'cMӽN_?c{}>{!pē]?qp0Nե+za[g&s7\ɔ|}4b.4]'Em*șwhg栁ٚޓ *ۻf,|dwNg+-C/>޻&~]cƏʃkN 1v|Ї2^xӔ e Ch{֙ nCb;z%pЉ׃B|{nwOJ wp'hZ(Yݡ5$(txo) ys?pxk5gO>XZ=G?q#׿,th']Z%kϣxS98w?G֝(]{5Ùw{sή ^;6υ޻EC߸8{*a8TBx-' -$b(:Ұ;#3&,Q w55<b/9p5K7m~)(d3tzkc5y;+mh3<4>v}lsep2DW(s ->;ؓWY܂/]̈́ -[Cr&vo|6|unC'N?Ҟޥ݌E»WmC'n8+N*ȭQW'(!xG]Y#M$-&qT9UİT%mp( \(A1JIY,h.$ ںʒ;B+h@t^) :w:P7/ޕO ] *kw= ?}*8{_p!y=,NO|w+~ K.bڊ2o3=]y!Ip32Exk+lw֏%2{#^!ɪĉ6%6! e-YXztx6zxlw3{w尉^ R}=ةH.Zw2^Uხrk ]w/(?0x=$gmMroYoaCvBSfnD~r]HJm/z65W]??0VW=8~2x%E -pN,5[x*j,|!f'hES+vߝ̪Mᾷ'NgnjviU›|] ToE< T83}ko^UBB45;Fz&g›7m -i$)n,F{zl)?A'uԧ!mI9x~`45e_9paڹD^f*OksqnoL>WyMqI|sZ -yxΤ_ݚr:a8*ʢ6>\|! zg'{hl1V}fe?sk{>r|BF>^Vz $kl[s(_ƙUַgWyTtEh.IB'Y \ hVd 10""h8Ijɒ"HR -GjggQ -J+i(+訨薡lQJc+ɉ$Iv# -`Y޺g5_:/M<\[v{4#ow":r>O/.{8m鶓L.ѶܡT\dފ[&F@DD?>|,HM"h[~Hh]ɿ83(9lGfS_ݭ-7#Ec74&t5acza?}ʝfj<}v\n3c]FNiܳ~x2xKOʥ5C c}^(>Д=eW+ؠ'wh"mٞSR|btd˭GfVnI̼ZS8ߴ.ܚub9$`?1Ea}+ǯLZz$4;!)~wx/<+{L f;8|J<֝2P|HfTl=p?6m˅|h$対j7.Ioӻ_8KtTML4x$8𼦑ٴkb* -k"j;Q "%2;LҖ4aB,U=I];7*\~{+OvLq6˞b5qifwB^I@X? ݪ]}4f⻵yVy说U!?Kd)A5i|yLo<|hӚz_8'| G?lp/H05.uNG_ h]es0}{Fď? ]Z۶'4BYDGHI`|ӕ fnuD~K䟦oTɒ> _Ķ{> Y-oaS̅~2?(}/ƯJ)ZթՇW>_r/&.4%sgJ -DU,Ɍ>$Nsf.|%2(NL̻Y3QrK}̊*دHz{ɕ#h}-K4kCr2[peoXl|3ɚKs9xh*~vǖ/ZWW=\m]o(\dWov l^8]r&u[ݶh2D #0<)aslN[5^3}~WӶ (-C#&hܟ>t77 L&{hڶC-WUCUfF r+B}ˏNS)ysm7jmi4stPQSxW|?~B/|=|i*B3ptŀ,Ȃ7 '$7iGio=?GHKG쏕s+ƛεI iL]3ڒЭWA5y[ >t"ܾK/ T*o -%ںȝ-~}~C:pa'+>Ӷ>p!<4Sqܖ,ġ'<}tpžs)% EÐ l gG3uW#@>奓%l.='w#-kB7oϹ RBTǍyv\R֚yZtM~pZ ^*o)"510']j9q$c(Sά?3R6HyHTz}MHGc߁:Fz#;[sqfdwdnC_=2mՑ?o%+/1`P=cJEGC#vxƺ78>#&"?mݪލcTƭ缋*_KmӶch$6ד76zAd5z-? .{kGJ0 K5Vx>XX - o3'5%djovlR7t*<z݁{g/t2BﬓgaN6UVنW_B+?]ۻssoC_ic) KsewB+7x^֎Vtjƴgv^w/5Cu6(37kݛ|"?p\Uľi_@[7Mo8:|&"x (+#^=%u&6+M=9sj&z -–InL mS0[\6'yptWbVBof IcmWFxP墓ΑSa#?@[G/?0)j?C~hʿûeq#{7%zRCF-SgLʤ_.-qW:}""WFWLHk~.=v -Ԟa0AQj ׇ<ۮa-RxxF9I2QuL\tuP 7d55J2l\UqV9p`(I(1T^UR9$iҡyRdMݴ0P4K%AQED6,dm7I hQUʠ 6K5%NLV 5D1IaqDPQ1Iw('_ -0G T@TI3ex)%RaXeX)AV$(FlQ (Y UB01ʢ1Tt$(r(7Y@%DR S) 6p^19C-ad̶LUpRqԐIMWASP0lH$HvX -\Z9Y "Iȴ *' -*n*;s&1oiҪN -+ӨQØIʠm:.c8+Y1yS`U0qPP)n1Gh2 -sFyD1l 0,60$6Ŷjp(bɆj1"Bӊc*ŰYAQAI^D 4 uTAeЀP #Ij&(Ь ( nK[:㬥H -eٔX,In0;6ace)6k,GX -8T- I/c(ڦ -Ck"gb*MH`(b$Ekl}G$hACyG,8)-1$DGG]4 u1PU[fXR8VqMqXPx#%Z$dFB8q cpp%@CK (o gӆeZi<@,ƀ&Ba lyšUtELApӢh`;bjJ`t¤Twued -` MVM)*(d[Y&82A" f4'S:-˔Ȕ4C Jcɫ@YX(cЎ!˚BȤF"C:M;) `hi<6gS:zF$IApR`OLo9hmR2Br<%I9 `,Zb9R!lH!`j$c<.3*#3َ Zȸ$E - " @8iq-SU,`1ǻ;dCD@(@90xӰPGf$iH$%,Wce8DR% 'H^(0UQqsXFPFg%8m]G#R}3ph nƚVu.9z.fno%sIWmUyeEegl -.&cnMPّwoye|/%_PO+_ AG{κ|U׻L9V^[K?۟36>tg헪x -^f@*My:oQ Dp'qC-tRou>h@k2F/#m,?jo.StFgJ;^9 BgGf'|2F - ֝zi" Q >~r}) N.dGVM'8s&a<$/>Ґ:!.|2:(HïV{v'x($`C2ㆶBI~ojAfOJ&8"xa h.n;?~}/.;gӃ _XG @Q@T$y<ചcZZw^oTSUWs* -N|<%wp?ў->r7l_[pd°y}sz OZr3OYfL P(keH4j* $!躊(Mx @.PQ" [.TYgP5I@+' K0@ɆipI.pf6 Bu,@EQC98HK@#44L - P9LD4Ւ MM  Q.餈Tψ` e|ێLi2J@JA4Pi\31qmOt"(h -; Qp$lWR,9BeTdIq(%P@-%ZxSIA8  -MFAx.- XDxaP( QA?de Q !m]U822 LBd-F0]Rf:E*g7&YsJ]{wTXdz` 3F[.|[^.Y -n 6f;o@U!vmչYvi/Y0}zVj܈% D4۔gxT@ih[Զt$wmK`tlMi!xOήњ} %A%%ǣ+RunNtݽ~ 8˒ûb+6g/8=W"^ Z-y٣n-Uà-RK2N$4WO(Pv dotuޑаZ@Ϫj%5u?&X}p⊞-Y)O pw QbLCSEUHr4~gЇ3{wL4=g+mޫM,y=K Ց,{, GU T+ӺQ$Kn4ȍeS~ŌM*$hړ[~$x]~a/ҿ"8$ Skk/7]聆.]̜4~y_c_»?J_]巑J6TpKp(d ,9{b_fTҳrs7/‰a+q;UJUTFHN%L5|>ڪIЍΤC5zc+y]CM/6.ssВCjo]>_ذc}wlեCWw8yr q.lȆnBޯuݲV#gi?~smul۸uaAԂMw׵+6HX_xxwan  -`$"u]E.v>Y<> 5/\ -R" Zl" |j:X6LQ_% G\8EI*.7^+΁<*..m?V6Ӻ1&AakUǺ@z3+~/} /:a?U=X~Su iIaW/>uŻ3˫~t]/WQ@q>[&G_\R_p'{]Tؒ~us6?ar/$Ԏma? ޓ0'* v4g'h`yѕ3knn~BwOA^o_,}fζLvv??ixcN?qG?pu鵃K/ͪZuGۯ/Xo<>iMRg)]ֱg*Zoܸ}ŷ]ss*]d]YC5ӒW}gqrŶ,hȶ$CDU׌ 7N MT/-T<uxx PزCaE|7oݕƉ[kvonΆ5CplJjOHAp =ZnvWo[s7ڈ,+騾{_&KĎ:9p=[7AYh]@͖U?Z||^7?fuwqA MWcއ?vog O_OKzd"rùݕйK1wwLE/o{K>mã^˿YP)MZ9u,C P~Uk{ {suvx.ȼ(G5Dã -|utUB[ c..n6c۸U]wn߀+~ta_DDf ES#"':u;rCs=.;ܔ{i}R?ZPs~OhXk+AU{Jj/?Qt/UCMPc똢NȂF0YKnTYES GD4u[4͝jW#42TUEeDU1,ҖdTAYe$M mY4MT5F stUNtT * -īH%m(ccȴ"Fa9 -S܍ل8<ϱ -:.94آ̲ʭ+H0*chq1 zԲP)w Rd5Q1F1AhGb8CD#eRh<)$$4)i.9$f-e3 I0b1$KloP#Uam\o[`u¸5 ZN(7Ьbʢ +(9c&*@M$FȒxD)1AuD0(Dfaps `e1 0*"< P G hGxH= N&Y8 p2STITMu0M=bpC $9Kh-6EBSB9a(DдjM,@Q41PDp]$ ]LwqEF0AdKI0`8.I*/Q&쀴Ah҇dI*#H&P"%hDZ*hJH4@bTJL*@ 3x,nJQdAFN8Y@uİt(D;lvpMveA"-H^CDkۦ˸EI(ӸDRdR4"0j6T -Q Q@LrF ȇ.K,i1*瀔v_ r:KX1@[T8 Yp cSlQ(¹&ͩEY'CQcH8Ku ܝ*,{:f 1n>$eѶxIʢUpRLE@h 6OeaP"hH"l#Fc(poU^#h  <ߔ1L^ŝR_S1CmFEUIR2G, pU7 T5pFdQL G6r': {|D)-`DYH"k6P7 Z ٖIsEv`9bUdeQlHHifyrXuq\@EQIA '(X]A"HFQ/Z"g#Q lIK簈,E,SfrtARQ D6A&p4w?$9 -H)KC&+XChu -x\_&x m12SeИE ۄ Kiɪ:K2&G<߰D@S pٴP'AU,ִ1D*H$hjӤɁl8 -K8pT1dT٢AR!Ek -ƹeG"nó ]``vi50V<:#ڄТn8p#B-%d$`:h BZ Sso*q&;36`*| c1G VM`imS4KEM$ ˭-1qYeYeYvq6I6`37bff13333ZWs|dtuՃ{^'#OP"ŘiPV@CW(f;:q2$3[\|oئ.:cBtB -\` DJq[v+-M W7-Q sYFwUF =zOO4kvsD $?s˟ ,nfeo(.2q>:4/6i-zp$ɧdkc r,gNٹUU"H >Gao<&P0ℌ9RZ%. -9_…0L#`*hR-QI.c0Avc*a\%"RD¤P(eT2H|d-Mȅ\ DZLPj%WfB61E'c@hGzsN~c>] \:3gjƠji0`9dqrm,ul06mLUI˩sh-i|~AXgЍj2ɹz8#f8ۤw_oװ\ʮpvWW#.|Ag5>ȫݕ # x'ǿo>Bs)tqMw&6]?g<}/}~=gky#|+6%Wyujxw"D.! UuLV#S^Wr3:^_^ۙV3E3KMZ_.C@o*o\x6+%LͧV@b -rC`(\V !()I l8Spm;;fvG=s@{119,}oKjf99z% z3ŕI ȁECbdR_4E6d;~bJUګc޵ w[\g:6zڽ`?Z>ai닀 Ems2qɜMYGn񁹂QDȮ9MݺJZ -Lސ^d|{`2淗ԌX8\u̩]ʼn@7,5yxGݹQuI i[pl 3)']ݣ;ﲮ?tk+5L}:漊HŤ2<>w}*gr956[w̺Vo'[[,GF! wfw8@ZA,Qȹ4 ZD"@ekDThh @)ؘ V̅KŇR -T)!QK4*5AG@,Kc˕PJ`_5b J&0E2XA8‡*Z*r@l' 1|KMGR#kC#J#ӳaEybJ0\Ǐtw{t#oՙx;_hJг>dL5/F!NC_o&~(zGٻXyyYb&͟eQEfT:Rk?۾dOvfh$QW'co&2^k<>ۯv91j5K7#@EfbցGL9Z&<_c$UoNvx"u3]HzMw;y8`2 }!knf{Hn[DCz}m̶,P}L%C6B -yo2*8h.pv8N#j4%F *g=ݾ@};0ekˣj)VS;7WsJwd: ցǪtaK!^{ȀoGг9%ދ#2M7kΠo-; ~~bq -SQ$+>ŷ\I(p,ZAXƭ#SX&󻿞}3cF_0qY@r(HĸP(qRgmJׯn} |e\y{EV>(˴L[<6)ǯp` 9ޭͮ"XA|y׮ON=I|we=6}i "-9-h` 2:~u_o -yƆ̿} ւ[Ec E&X),6n;y5  >c╈q̸g^ -))H@ᘀ -/\{ƕˑd2TIJIq-%B!KEb8 -U*T$`&|sou[*琴\Hֱlq??Ų{m)k\a^8Miimfˇ0[8U1PYݡbBg0>224DE[7ar}nɌ;4жAv%.:QO*B}VpVQmWOADj z_\ηQ̢BD%s -9FU5_kk<_Tlznd8!qqκ|uȬyoF|_ -@Es%8GI L -8 #<;<❠k-Nx5WrI֦n6mߋwyl~ nlWFj~*y;)XMOw"6ïR3{#^ @f}/t~eHp^1 sR̈0 ~"mdM[ጅG'6$xOw׵xH0iHF/?ŽNmg޾"pZ -RCN65W]ʐ4 euWoۼ33.+f1[N:#P>dK~d)0^1c_V´u,M .)]DXcRm뤁'+w#+ 5?k'0ٛHB,$]3hbtNC -*z>;D967C/۞WOn}iKԼfu -rnlm~ 9Po{5L""bOLtpiFn.#9mS G"ɕFwda<yטF>* \KiZD`c88uIoKvzbl;w<M '@昵U\D忀s3GYOLN;EL;d˘<X{㥽NHk)tˋ{ W/}P+ 'IUd=0a~4ּ+&U7?產>~Ŷw@C:WTr͗RrZ$cJ\*d-b\ yƃ^+JH9IDQqD0JkiVJi ߆ %B .K) h8^-p0"x)--bBAsH%Z5"fN"a ,  "HpL!V\V$JR%h(ਅy"''xJ-֥R)T@ 6-( 32%y*x\)#18b-Wj5JTSFɩLiJ&)RK -)$JbR-ㄌ ΦS"BH"FU@Q9R %&iL"&8[aU -RJ/'c8BL _Ij -F. Zd+0VsI.t%G-ȴrR-d1O1p8- BZ]fSj WΣB'$$*ZErP' ZreT"Wj)Hh\(b 4Eh?('\+T1e|2@$JJ.l\!Q%dT44sN"I/&y"&dZ&nL '%"wCS|!-))fU2ZiqFƙIH9S$֒pDH#"-UhiR _NURl-UKT _PJJT!Ral.V@Ss8rRВ1VɅDx%\BkӊlQcѴ Fe@Ζk<84QpYpiOe4$pZM, %$AR6W[(H%0b:Ζ5 -_æ)JA -[$DlXs٘FJ-ptvi -8j<ֿbcBvvg~!?0fjr1/螫Q_|rS_͝=4,1CD y12rsCATB#Tlw; +}MepN/pbvJ"w  ÿ-z4{lރAzM͐"٧t`4|#zn8-ØjoRhxv"zy#^H)0ՙy= S,OZ^BTf]:ʨȲ@DޜehG(7:R1:??Rp#YF5P -BeD0p-gZ4TS(fLu*. [-ccg-@ayX۴O/ڡ|N{#?u0X4{ >vΩ.gIOu4 U0.ɘBSW*k2;!CpU0qx0bL`rpB$LB 1)yZB%< QB01_)+\vbϦDl5LVZ]aI\wcKMQ*~6ix殥`|C6 ׆RMM^,jurF/jcX~Xɚ$_]+sfw숖#[>5<4Ws9̼IJzWAZxنc]ǀx2Lϼ;IYZнS \z€T4q<5(˷. -ϩW4f1!O/<15$XrT9y -4LF;mvfky"j\ -3'qzhӳ[v}%CPrx;{{jř//mX(#:oiyȘt`C/?:1 -A*ː@XBU+ѯ=8_̣'}L,5j)Fkh 0ӤL@c0򅼣[R|XT٘S@m6Qqb)`A\Q  Y2b*xR9Qe LIP<|ZJ*軄ZII9'+G5_fG*組@f&GR_֜M -kʵ$TSVWurXu˿mJ_"Rh\ GB'i*BJ( -ZÑa|VSOR)*L υQc?䫏=QK8$1% -JK`n`Uֶ@FjǢIȺkۥ T{-U0`kHUq$R.!K-q`'IBR@C&BH -sh'4Jg -pU0\´@Tb)N̈IK9*JBBp( BB&sLp)Ϙq%yT!,$it.0p֣9.!n{oFYߞ-{CK2Ld D`evcUU[69~aםSs)*I ))Y( - էV;wN;̓Kj2[.o^6K@j{aonu%7y𿿣_>u`4!cRbW^f!JB"ITQ˴# yeᔪ_;QLtl7lm7G;+:2~\n/F? -s fѸYt_u)4?\KߊP]5nbt4 :Wm&;ϨyNOMv`5qkzwݖoiRY+cg+./oώT~v Z7bVwTUy3ܣf㍾bF_&zGF֙?otŰ0#x'&ZFIMC$ƒSӡ5 ȕjY]L jxW-2_Rg[␁)/{_z5~2lP&bmwM&DJ/^Č+IIm垌*|l]^dg|#N\ r7QxJ+K!DRI_zŽ;KEŚ''/B`K(i.u 5wQl@f䬎 AokJeyҞo`;G{'AKҿ_~aLiB"R|=pkXåߏ81<. GUdOMC܆j薻K#MJ1^rLH[-& ϕ/_ L5)? WZZk ([cv-2 Bfdp&`&e˗3'o'"U&$w : tG/Ww:>Fu!EeϣEv6vyg߮'R^x@a0ϰ ->l#o'ٮ™x8E|@+1'aU}ψ}w^y,(b,9a)Ʈϼsb5|(YOhy\bu֭lG n-x[7|SoT|~OHOQo7YRl|ڣSa!ȟ0vQπ!FKsnp ˍ۩bHY\Ȋeh]=<ypz6_R^;+R^xI$&ddNOߚBx{{@@Lc1ae6ȓkPoIG3sne -^tԡW&|^z${ C -(<5/IowVbZnCUi#j`>ٽÁ5[h-Z:V劄[@۽WZгWE ' -ÉɐXKļvx@AbTYa౾znxn4hdgᐄB!#W46A#c0bhu%v%M1ZӞh$Y/N-B@hdnQ/ ʭ>ΡysUVecë6U% IcHMAYS]˫ALCzQ82[.|O) K $~>yX{k,sMc |NK.il c8>;PW>4]IGK7g^J{I:1Vk`4I!PٔLi\)P\|90W8Z)$K*q-!!EijF&xBuTpJ* c<Vd1PœHE"-Gd+E!O*\F(@'e e9*%\sch)aTE. 0HpL# -RP]FZRjOתJHr |Tw:jbs-5fao⺹Zgj<׼S{"LqxR)HMHOts@6gk ,;*YuHK^qk]b:Kg߻cN/4qf mH{CNjJ3o3ZRt~HYLƦ3 K7rwkw!8pMl=iab_tQ=\!(R"n` -q]x&Y?j/M1d֢=%șKp/hߏ\ܬw~ 6dmn|ـRu=ٚ9{0*f \ʑ5kI>_}g /yl/(0Zͧ|d5t o䃹8WG*ҧc]pL}Y f g@}иk,#~߹5tB -I -29*ӭИ̃bg7?b :4YFtMNQ%+-4P=g܏p}w -)}i|{FfO> -rbہ˟_ H_\plTHCv'\9[]Q0]GSwb W}\+>LxYƎ>#{.h\#M ۉQae~b;:9 ޣ* fCUXE'۹Mu.ngCӮ.+a63_6cg^ |tڎS{,,|v־r?^os{WMVx?'2~W oHsY|3n)3W_֪MTUF3p+):ޯǓCQy9`]|PT:]{ ]^tFdYG!21iWPfpRtx]mFe;Xn50>u/e -LyODI=}=o?m%Ygwn!}{ʫbo4<̵,DЌ?r{Ճ+ud\SMm}RjEkWtpBwG3an,OsJ=^gޓi[ttԮs~)-t^Āc`/Ba'0H\_qZ9qw'Y2Ua^51]6iӖszy?bM˭ΉI$:vi=o2=Æ!ݽS7>h`ZM6HݷQi;P -Yvi{߬[\ܐM8?B<ZF~#v ?A9RVl'}.#Ky=F/5?{q?we=~P Ε8NH%VRȥ (!CVJd4!|+8 -6sM#=-H9IO-?gь֭yz%w_dŖx=fXu!/zI蝸ڧ˸JŘjRX36l|9 wP&0լI;igh4 4*zW7+>){9_}?d_#*~۫/_JѦZ(z\ճ)K޴c-M=0t=㓓#LdAjlלh'2Ar1FIgh m9m4JPېXTqrL.3  o GbVެ&bԺclWl.5?H5sr yPeƱ8]2[Y +ײCq˾h6)>w_y4ztfo%r$lev_0ھe>x>>F uPЊ5,ΑKIN i}XW~]w QĩОKx*ZQ^X]ję)ȬBPzҴ~$ io]JvMV&?r2PY6QDxtCiVBG}To򤬸d<s(68)8X5ϳÄF/=NK閭boQ˼߂ Bӥ4\" D5zmM{oXz+_^ȧF%ȸRF+4ȵl:e7g3G#vN ,V"#Af OC99p!* [iBY<=_:W%((jm 9ׂ*vn5U"]_~c503.zZk{%KrElj~J[s3h[=|BhmQrEk+ &tĝKF`Lѡ/KE5uI~=u `̧lԤ[{g7iZxRuJ8h \o[@=s}{d4dۤ7w܊^m4??2f$GRc;~i+ x "ٹ/íHKssYy#=LW@Jg[:b[|t6}4X -3;ڀ00F}\H@fRZhD3-:jk"8~ǡUNŽ?X7wĴdZ.=^Ơ0&48*+m~Rhqwc~g2q9Vk~&7?Qs/JR,I2 wY M<#cq6V`*(uo'+4Fz?DYH5"ZYL - (=ex!l}9=F/VaG8Pjp}-";ւSt㙐J&i>|*).j4|=$,`m,Wlؼ- ֦wQ%J%Sj%dC鹽3Y!>W+Gj J .;ʦFfƴ}!~1#{ -LX/eϵMѸqۨQ\>|y߬ Âjt8oóoSyFy7TC҄w/$urA EuxfEc?k;(vǬSLV2| ÓT6'lOq:YW -l, KqT?#J:B!tt"E`pHHpx&0"꧃ED:ERPD.ͦaDFB`q8,P0L-*1ONӢPb:hSYX$h6 ċ BddX:# :+B,0D1DtP$j"P2oQ4 a(3m0hu@y6426Ynj-*19I@HN?:SGEy jOg(&*R>6[qCDrC}j&Qv $['%}`d`XRH ZmMlDδ;Nn"i)b02ܰ:ԕj WKPcW)882ܑٛu &`q~,ʂN~=IVDo&6.ջM q?eK*r /vO$$],E% H5II#:HY!8P8"BiPdh3T&EpIBc(`r(:ŦQ$df#6Hti4bP0DnLt˃nFŴ֕)n /Lt, 4t}iğRPWYu(Ӊl]XWfhػQ*\\UL5DGkQ0`(O2~)3ӤbhUE/7,aV~K67Dn("Y}1I1.'HIf wZ Ermn/1yNI$K1iIl`Nbi0üp oh׫u8)Xj";Z&q7XrR G~hFf87֠a`QgfaȫKF݀J_1Z K&1>n987]&S+~Bσ0uv i.rtp(x% Du˗:.[Z!Gm PF~4zYύ|W1~lp!7fM-b&=BǽߏA6UjP g\;VL~֗]$" M ]݀R+)_ -)2AfPh& Iy9I;rƫ*[|†ӷ^ EO x 7$M\ph J˗|005$fRXkHտ2a`9w Rו ֍[ [k aBqGL5#}+TvH_$]{AQYCҥ2AزHzlg9ߔT -X6S!ih"KFav.CQ][bcTo`<_9夷zr bi $w -9$]]leNu Q!fj4kAP &0Eһ% pDS9P<ْٸqq4lȎ%3"7fgT'::@rxκ j?"0lGFF!k;Nu> (YΛa`PPVSGyu`'榗-t@B[‹EAJ_]?qLe<F0l)2&0C*7,ȢuzJ`=<.tt<مe4Y[EJK5Rޮ)NM_64ҟ?$Z_ћn5@ޮ ok Q Mۻ?2"G"\3nţ&:.ҪlSлcHqey4,h𼝤a[0!xem%'-cSĞ9/f\QmGD2rH:ZK;JzmsAF a}`c0T,: Wfazߵ1xt+:)!|kԭR(.b-"PhlYZ5*=0j, +sB̤+O3.RD *E׶]#i iY?>a-֫nU, Ng6%]AY0Jh765ݓ M&qV +hFJw5-.ʌ, ,+t@2ky>v*L6E<%Kdm~,傇?i7D\#Qtg̟\\Ld%=#A%wSjǃOpb"8AwVAK,w.O]c7nN$y/Yv\Ɇ{u8Z -Y^)rls6ŻDf7ᶯIo[^Mts0"u(mMȏK<[%07hӴe"1f./ܬ`H \ :RϛnM|=A" 5s29-A<ӨdN6Z s&<RRQ]O}WV\ +lDpe%)*ߙ1RQ d%؆gCmgHSfĝus:zmġm&Y~,tW 8Y#g?طM=]`0^sO1!$/ `P5>ܫzR9xuia2BNfݰiDG[߄0(C ݣ=BH횝\Aԙ'Hd_u/q %xƼﭚm0jW+ ).~UA)Ԭ`gv=f%ōI|`|Ur1V%( hϭ -Z :*tT)Cֶ#:k5툫6;kE,+#hۊӘ[w ]}8$`}_Nf'SsHM[/3VcL*,D!V^Z m&BLՓC}rL$f3-c\{Dt]+xˀޙ V/TEˈ0UhylO{9VlJaitF?(n)_$}Wܶ'+LRN4Oh k\W4Kp4]LC*džc4{lAЛ -Y KZPvdUh&If"F3"mT)¤yrSRLjhw%1 -)saD\񒬨 70P䆏4bWy )wx7#r$Mtv73Ҍ_;eMfe!UiAz}SlRAk]"G֦T$L&u{'% 6=XY˗m`moh|պEM“Pd","?pq{ t#53Y2\jk8V|Z/&w8eT jpxe ˁf[jI[L[Zc5Ec`PިBDDT!rP?zRkҜAYn0d斔ʺsnm\&2sԝVJJKja?#x؈ج*Ͳ7ܮgߛYfJ?ً7/%=dS߼PԮࣞP/4q+;!=$\mx)#'Nb0n$#C:w둒L#ו /[8K,CѼ܃g{m.| v -i9URfM։㪡 -MU1_|5قcp$R}aȁ(sWy ǥܓ=;>7 ͫ(Xɕ|}lG'˄Uz_>][([~{)kUC QN4ȞcDDq{-'}B[.>0 ׆~ǀ?䂠 A9[p{\>OD-?*|ti; 9ye]5p!fU|޹ C0g׾f/|+9_ o`1nT]kXK7=/ iVӇͰ6WstZ,&]nR皝iAor:.of=Do/=!3::WHv.;n.G'vm||2:OÖJ׳'HGTx5>gJ>;\xe.Ǣ>3뼟8K[_䵏ʓ'-nx Tߴ -4Uwnܲ rd[ľo.)ֲRğa"sͬuμ9Kw"^ohjSwLFmurTs]8ڰsd?VQ.3UB>;!s?l`G7 -;'*>uVgcgFoe;c -pTGォ~%=\piZY )Y~)uCG,M_IU=Jܚ~{ϵO]۾w]4x+佳.'|{:o6FݸOk#ݤ5sw\M"t= >(,c~8a8׭ᤡB5.T9 rښfW.w+FfbHp̽DCiz_^dDRn9o,O<ұ_6fW>ϯwG&_ɋ@b\`oHY*/^r/=w٠kM"W_|zjđNz;Bphz{":5QnsKGL9:J%ޫp6{s^lTZHK?` -/JؗcsB dbu - Δt}uЋ@L5ZqҕfCX˾dgp2mftzuQkR/ؾ8s\ -[9T a %5[O5QsVC' 2nEեvZT 4a.fɾ xR>€# -h$ګV M[[Nhg(]&]pnV}FpN m)$RJL9QӉ^71|?ʛbZ*ħW#y8kV[=Ji0&B?#ysIb;k߬T-;sz1t]W&LDκCUdY Eڒxrqs6V 29h?¿DΊQ!. pn@T\g73"""cޓKr$K.Nٝ3;r"B" -i4At齣Pϒ{oA5}ц#jσ\|zCt; L5(L{>wx~r jyxG0-(} `+p82 86KVo4}؅WvbA1DyOOTbF7vP@r̆YKd_YzfdH=SGg8<IDq8bk t`=GRߺL%ۜFg}3snBp37ƣ?4276fϣ3>ұmEF Z:~.,f`] k_[l_{791j"Tx=)<.躖ֆJ}?\+Nޓ -U_?eh߷X={wM8i/vI`^'~֯d+tT^|-(zOՕy2߮hS9C+nw׺o!zJ{e/xN&^yEt7eֹu<.GRSoΏgGOBtpY#2WXX1m6p#]}ڙL?&m .:gm6Tdƌsqknq.IYEL4vY] vpRgnSIUB -' %*Z ʂtPr_⚹Ѕg.'_?h1DYDDaN6v>HyQԉ?pKdK|f@2ʑ&1dV֬/NJ(ߐg:JO7ˡ^ snApaS o`CS/uZ8Lzx)$d;2P\XZ|b"n==zߏwҫ^U4`X/\4uYj_$Pݸwre|ÁkGKL}|oK;) 3ZFU =ktpJLg`g{w>mK۵!1ڬWS [mn^lAMce}nZ_ے:8|70* J4h8Fcf ȊDPj5ˈA"Hy%]c<#YJ@J&WI*V4"Lx&-h % '3Oa!4܈,f`SIS-"/^QA*JB4bzLg[uܗ=_#ݠ%B}~u/rry.bi?Hs@WÁ#UGKa~}ְǤ{ ŨU<:245p c!wrߧںMpgyJ [ᴕИ6ʋ(K̀tm{:y8"}`V TS۴H}PbL`L|_p!Μ:nO^6S uŝBY6V^茞kkiӂ'9xoQ, --@uM"EB:^3jq|ۯ |Oʫ_hvItH覼J EmDh͒ȡzMU5ESio :4?Y-ydE 6|p.87yN< 9<.Ksכ{'\= N^Zt%yh*}]{oAЩLMe}ǽ;O@V'_w?2 ox&cvGj[ Tp`2f lhLYg <;~nzZOX7,Wͻ3w}_vIN5B -?~%n*o?uqg`زڽekꮗ=7f ;r7ӭ>X`GF5Zz7._Iྡժ*׌Œn^));pu!]GF̦ y :rDv| !|e.y G?Nա5FEQT&y7PfeiIϫ k"DI 3 V3ϰƐj01$D,Yʹb8 -~ԈIi*J&*ff8X,EOX"CzJ0,+fLO1 f @A&NrW Oj ,Vۘp*2AӘ)UKsJ2)c(J29G6ݏ[JJ?x VVH_J.dJk|aɷS:xR];m<^wk;x"quj)孢6&T?|W -^ҷ +#ušRZc=.%AE#1wvFWj!|x:w/=̃Voj^q}(snBhd(t?#7 -Bd)Vg>׹ΌbГxJsm(5K镣Pik3bWvLCW=Zn6 -K\ڥ_]nQ,z#[6:e83$;g).K\%].~ٞZ曯ئo:JF2 -oƟXЗl9ߞUTr_LlNy\9sv"dsh}ݺڟwڋX^{>c"Z @\iZYn!1s7>R i᜚{'"@R -(K}jShrzܫ\Z:[ʃ?O7='B [6lM[OVq6+ѶÕy3߆/-I4X8ft׆k/z{aOݹ ā&TVT7`MO wO,}mߘaа$+EF@5v6{rtPiLo3JN?҇R#/1vNMddҤ""La_5\,o0QM8K3VW,/-LYE$(VPh`$ѪqE4a e-VWq܆ 8qa7gꋼX A1^SӡCBEO}߽m2Qeby*"'Cź7A΅].p(GxݏCף]Ei0xig& wtfme9-<|:׫ɣ[k=\[ Ø㕳!?a  -?K.cJ܂,MSh#8ʙ:x*,m|z^qDM-?Nqw g^C7 -6PUtN=ēt~Cɶ]ǯ<>LمdWF8UO  ;[rԽ{ -.XH=iļ3Lv -K{?;ȀZiw\Њ EΞ//I1"3F!aPj/%ݩµC6ܟ'~tUFp>}7_+',v?׈pm<ަo_ݳ l M6Y,o6G>MbzB-%FAfx M'QUDNM&KfP,cqJ8V Td@'pATPޠzg5cPdIhU@Xz4,˺.Ex/хSơ.ߺt?W -XxuG2"GDV.qL]$-]+cAy-8޴$dd==> c->No8h4y禦J횢.6ޕ;P~fO -tBrxC:xMIqYk0󎼲3BØ6Z^Y ivV8K.B6=+nU*q7ܲQ4xlJ ]hU}g:7<1Vsp͘f**{EM?wM)tBDOr-u|ᏺhS ]GNkՅ=NKY=G3Uei[E+]nKr/ks>` O;K,m꺈uY*Ns gn- BpH U:d*ZI;uleWt-ص&{#ۄ@yyԋ qݓ{1d{/2{Ncu͛tp֓\V6z*^?Q~Z\,m@s#cG6>pRvzحO>6sj66?ZzC~xr:}b~röPd_Zܓ[T">Cߴy~湂I<5恐{mQꋻo3].噷q{[g> rs铕d͹ӑ޳Ɨ_ڒ_P#' [?voJs]'I=_| 754mۨ]{χ_*}i{%y}qm~D٥W>R8vgɚ/?Ki;'qx]us[vek{v Ԗ}7z81:rkZdT]Qv\=qS?f1`wȯe -ُrk2ᢎn[0i]W}mkCcGMYV0Ek-o߶ՋM_2OLus}ޟ0?Znbԇ/<u{FܕKzgyvݮt\ _`,Fj!,D@93? *Rq5sqWHkjY:q9eܙ#}ۙݱmSGN6X=q(Nkrl -9ޖ5 ޅseeX݉jf"$Ap@| ]Ъ ku#>jz.)bwoe1-Dl(6ܡuӡ66j0 MM,l -O 5_L3&a'M;^Y_;zr:g%B9iˤnK*ʖX~[jp{w}kǏj:=Ug\]}2x -rbx]]LeUJ&jʤ$473b75QId-( -RLQF=?jY0*4!sI3FMSQ`7I&M͘H-l'*q)ઠGFAQ3#"ELaMz' F: I\9xb-1{tZI>jamJ.$f((>QSٳSW+ qp|yX};Rw˶Qd{8wouLymzҩ!u{}FW5' hݺ.,D,9_s3$D;,g7F@pGGaRd|m[5zxpyp:"q~^>?x<*93\{=n(+A'җ{D%ԷŞC='N#NY~i +jo0 -%s2<&jNE1$@X,f1([HY50Y/O9ȓ$CP_"penGf |Cj=r;6<|i$@}L"wg20-Jb̒fń9_wɇ?;SL$,$7k(bܳl8Tr\k)g~d1"u{J -؁33iNp]]`UNj f~D:JaA}SlCZҎYMŻXU[~ JZҚ~Wu --LO)~ ^%~MbPlW*&7zaʻ嬭8lowCw8 N9~Fi®Smkt׫;FG޼qu3?>7l}@e"fP%ROlPM]uOH_cfzZz[ؔ?t%;gPp*5Pnpځkٖ'.dȿd`WQ>_5(kSp.8B[5ApVdg3o:FS-]jFusgrhrzX945ZQ s+@oe5;M -^/L/Y=/: wwHcid?п3x2](+4Ү/:~8Jхq'cM&m VdA6[Y}0u(1V -bOOw'U/viq;)#k=;^Ni&鎓+EMwwb\>3Rz?[y{̒,UWOr{\ wSCδn ͭtLTƸlU}+Rqȏ7:V4b_Щ/J6!srjčFi2:8lt\__*(!ws/طp|2xFo#;slޮ<˨b0]iF+6.Ut,D,B5=g< ޷\=[''rui9{gGm"`Fs`C7Bm<}+ XMi7-d`6ֿ{JuuEL5eϾҒj8-w|M[-YTUyp;J -D^PLoxS % K&Qx c1~TV|lVebZ>jDn؃o8U -=-,f=|3,eoXjH |]l„kAX"Pt/ҕtܶo8<X|hJ|y_iE\v/q*NȄ٪ڭ|Inơ;C;饐ק5n>Ǫy؞ŽPk}.-vAlM%6)BO%?t;,fIQ|5O]+y(2wy:wT;`@WўR' f{`n٬W|=QΌA5VNzӧjcxVZΉʥdn-r=='bnwࣣnհTDg'NU%BKu[ TzfNEEvc(VƂ;d5rll\zꉰ)u!73/_esOL^{H!ؤE̞!ϳѬ{gVaxlCa/Q+uLM s#SVBx,y30Teن6Ox9/Y[2>DX RXY4/vI.Ozl m~I q.hިki릲z;'oVE쭸k#W/bq~m{R{[#9{.4xp;>u-lc#)QYfbdMpD_2PbG'o4_x>w!j*oHGv+_+qfъj%枽kN ]2Oޜ]jG+ kl܉ +^==KZceF\)PkJ6@aX >UMltcgLˡ%PBKS_H~3+'9)UpN^ ˯^vk^?%;dO^xL 4g1iж{oץC#C3 omd;j Mq_?F\K|hJ3:4o( C1ȁZ xp}hf2HEp 0ý̧aS_Ek0.z4wt3v>e1#/.C' =Æ>ZmXtA?j)aj2E,Z93SU*%\H -Ulې$ZB4bPcH%xp^64Ƌ,lpFr8QȰz`0VaI 8\838'HEJz#JhiydL(I$M$ @;@$XфɄ lY4V*g69p+<ƫ8ZS Go{}G'`k٭z$TM[>E%k b?iBo0M"1v: -><1^ڽFWS{Oǜ;ovS7B2&"⯄v5Pyَ8+up+!OjYMx'ۣ[g!8ysj.uՖ9 -i8t֏vD⟶R 2k͇{?04lz_\[?mAEN& eG]t8rv}(r * -`[mGl|{h~f$haqk]sv쁃#櫠ۋλzn5^IvCyF泃`1UOsAeY+`{im3.ଛļw# EP{Mc{- Rߪs}Nmun?l s_ڷ"_ -z;T_vm۶3|}'[>n)=*[g+6ϴ,v}+6 '434)]0RF=CkU1vf( @6^^ {MeJ홅8[8;3ndg I჆۬ Cam pyg[9j&JVV%icZSgBpeg@0=P̙3wbhH8T?{'(7XxP ->$9: { y~vxq޸2ُ Ģ@&_cw{_8y*蚩~7k&dWx>X7#mE?,\\z8o Z2R]ﺪ11j4a 32o*zxEnC^ǩw{ ->ش69k|3{'K 7"y}Y8 CSspƪ)EPҼoLƅPqWG|ITup~*u,GVUElfsmC -Rg۾sOzbkgX9m/<bSہrE9#^G li8MԹp+'mUhL3kP:liv`)dwQ[n -gלʬ 5iI_2jиr.Ӱ;߾󨣝Smqda0=|r=ncpd̙(f+/ ]ݾA<ǠWۈz}#'{ϵ6pֵ G7{Ƿ׿>W?+Z WlrUIsϷ};gK|<گAaT0p? -mKp{]f [2?lJfZ8CX֍Y'<+n_;7. ӓȶг%4e4Qx 3JVIpߵOԇli'2}=1d>gOBù{'J'j+ZrG4\X3\#7^]ͩOwsz઎':\bK:nB^Ǐǵ'îu5zAڪ1]2x y]ňˆ/ڋV'>> nG%ڞ`s75ml-vP q{ԐM #C?DCm*kVlHEX}wu_~qz /;bs+>Lwd]nRa'(F|uu7v'*\0WP)b@Śi9|҅]@ &_M:Խt!W/5lAvQ'D|}c8K*Rt:1r 2kZQyqZ$"e(1l$Tq-M ^SaPͤJ;7v< p;mǙ` L-ڜXN1c( JT3sY/2/%4JP$Yqd5iɢ1,`HexȨ^QPA%eƶG40l2``Ҫ/W[ƏSE@K3[ˋWBS2d?ToEvۗ3fZ0ff P?n8/G3>cG:u@mE ggVDn ʴ쿣ܓw~F49+K6A3^.:5y %ξf[?,cjvXΉ׹ܞctkHwzzl&~ж뉥g/ dC=.,o!v)~<=xd1vSAA~^9F/Ei#9L$(t*Q2SI1`xҲŽafbh ϑhB%Ԉr1OYXIF8(P -[Nldi BXynh(nU0P2ӸbMf39la h"QKjCi,AqF0[0@QYDfUQk߂2(^ZpvKd%$4Qhf#a0fVT ӒEGN28QF*[M3Bai$opʫ,/X%Y(0h&& G[,fVhEfpmB2hMg IF f+Mzc(JoDRj[IUqST5JEQU6I Yj &UDP +$'Б,zD5̌&h6Pd3Z NP2+3j ^S,f0^u[pA%*3zU0 f -ɊVB͌"k 02F("*&h&dhEGif*z3ZXLYJQbD @fep$lL1ժ4X$ -(QΨ7 @H%$f!64YMV*N 2,G3h8 .V -݁,lKAjf2#5c@g`JeYb?fUHdV$Ӏ-$ -'zPC8J +!N3 卜[01^Dy^EPVN,&!_Ui XӨy(xѢa3d -BS31fzR(MoD5F3@peTR*$M`C9/ @Q(QQYY` zNTP2 P#$ B>c $ -5fJ1O"XI^$$P1*V UPe)3h(R lrE{fF%!n0idU͌hT7Y F(%Z՛UpM" Zܬ`% -:dQ] -m4dm[e#ƋE $`xc)0-hf- o9HذP`12,3K[̲BsT43*8'2fh7Hу:Eq P$VH0#FJ㍨EQbVh<3m3׬) -YiĉVR(3K4AYY /K1"@3XPfW9J &00U4>A /R@ʂ y)&I1+@E5*VTTX@9QzL18JE1!YP*QQ̚D&/xZ%5AB+,7F =HHV(,XZYY69 +h3x()jYh4[n$BĂiVPp(N%B'Y`\8SeUeU@If%) H&t&3(1QAc9 * -|4Q8QY6K8YYc TiJUըN +@?`M2VfhR)"+ V8HE35F)@x*VE=(6P2b- $ZMfhe -٢F% fRTʈjgRe@.D -f(%7Hl6,K#EP)RoQ@۸qB%(ɃKz I|%3FjZB)#.3`H @,8K*4h'ӳpP734aĭ'2`GPA@r)-4@^yjR4``PADm݅(+VN"e`eF - 2YDV@Fʂ )[$(T/[("x -&hFA)R0V܂Y\xI8 Qa[E!E,( B -3e629ɀTA%HrQcJ -&14n1#Qp%dQUoVrE2iJ-( -jS<8дf -^@p$4)4%I JEUHj`9"% hHQj4kz2E SyfTd5E38M8E@z‚@ڐج -02f% -M2Jc@Krb8-& MI y`68. -D:.,Z̨ ;#jhW1 *V@eG&DxQՈ N-)Qd^1,0E -`(k-zLvJ1 -z5rUOxɈɀ=@h$M-cFEqAMLS, F倧MbUu 15EPI%-@j 0Y@?@`w(@.Y5+7li I m  U,8hw@"DJB-b%r #4 7KRgBpȖ"H .7(hu."|l 1 <žcP{ZRkEcN#kr;KQU27Ƶݗ8a;3 Vvg֢d'aȫurcf7j h{ecfPi>Q嶼~G.Ñ^o|¡V*Y_TREGI;$ -C'LG2}G!۵wi@.z~:@/}vխ% -VDi2F+qDB-*2QD$ Q3*Q)RYGIdB^*VR k)M2]nKK0@@=iVF-AIJ"Thz-+%RP %:F(U`Z9&b+ ZD(5IJJ@(5e9ᴆBx=&DXYiq͊!M[]MxKh9 JP$:DG 6vl~`z,- q/1bȭja<P>4> mM̦w+ -;G3ɞA(jҽFndCgail8{}O(C -.;?yW" (Ωn])5^k4N5+^}~+%[%;ix@QG@bѳ@GnNkE~m-" -bDE;1'vk7*<#X/}fAQحz-!Z͓ݐi+-G=2sjqnĽ{.%~ ^7)hyŷ! +={?;+DiV%˱^]?/{ K]MZ`y9׼4`WxٶDkC܇|[C|WS%7_z|JPͮW #~!WzWw牗1>#'@K{k@snq˻y -Cw%+_7H./<̀sYY~A#q'u_gWwFԝ*2;,ߏ(3 Hg `>b0$,7zd7e LZű}Na~#G W{<#nBK[uS/$ۥ,Z:!|k_0{yg'`3VKjiZ~Hd]1͊lˏ}h3ovuvD6dUg,<WW}1ɇk![];1q5wOk?l\S9Z/i}kkG=-l=:!@ACZG{u|y0b⹶}mMǽ"8ĕ@9PgJlREDF8hNqXx1UWT_XCVVfptk% &W꣭g˪YO J)e魒 -қ'Fr'w󽷎]@.U~?El?9XLB7K:L$M8ckUTm5cQVjS$#J ϙőGWjlaQW da.α4cSrfO׮dSx^ 8(sͳѨʾ -+δ^Hs?D?;֏f1sລdWm^Z^hn>qe儹T-;n?oMKk.C]^'mF4]m~ }ĸ!F>с\ zsNB  S s!~9T78rQsO_]Tݿ"GVg:q";m:y}qŹߊZ\ LY)Mf=-gxΖYz/[6? p)0iǥm#W! 7Oy?i%lUy(|x{zr̢* @~fk5l`ѳk=1$ϥ<]K<|MhxsniZƪqδA 2];3ņBHP _ Y'Ԇ M^=r$xhg~He)% -R%댠ΞmQ{|)CGXjBiw -`Fpow餘%BferN Jb\5C$Ш)\\J7J}I{g -h`h>ƶ+0Wbޘ2EY)amp-%b#R6VKcBފ݋[#)|6zaZϞ+Dgc()Zje A舝PDxgZPdDxT-Zhrr<(YΏ͍M^1`șEK[N=2^ّ ACAN]jMғw ysG;&nC: D\$eZAaWNԡQץ -f2JQH{ec~a- ˪#us8%&?g\Ug{sFx > 1zacqع8o5ng'ӷj p&@?M9 LG:owjj/iʨN#+=\ -.{@gwǷU*AM.Gn,&&zf:]%ɻ0]x<8PRi #զɻpgHc{jz ޷_8l7' 2ƃ[\ܕ=j:*G=>K M7b;^M2+oVQ{jY+o0ى]ͪ,sMI%s.i؛ - -5՗!|ױ;xWKwZ)xϕ`#mNq%ly@0y.^)&I:Aڕvecsks߷\:Me g^;Ųsw>=Kj8BFy^6SWMMCo݅K~?_}Oȏ=|:UϾ9ֹ)'_ 8Wt*v^ ϴw8mWUXٔ}ܯ5UDҷz1(\-"A)A~_O0<_f\;9ٟm}TuVi'JL -.1#oٺ}+Sq@yܘ<,'2 V!pě[KoJpݩ%.o1tR^[ >ͽCo fsZḠ+ !׻kAyqώ!Nw?Nq cZH51~!6Zt/gD~v}V8r5OŝYN#U -aW7ǻּ?KnH/zzy&!zƁ]wm$;hIΦ0_2eC|!x lGAOlWb\T@1;v9+@]$s 1!c81$u*/c 9TJ5JE$IBD8"U5LZD N-w]9b3Z=]-X/[4;A˽;i6w6*_V>v 䴨J$$B\:D.j.LǠ QG ۻmד_}ҿb>?\`I^sޕys+xnD̛P^s`az&T`w=?879dJ]Y|' \Gh*j V &yx!mVXaj l=OEbJ\+V\P -f`zh5ut OIbX uTyZ{n{\8~(iz:)P#WQ*aQvjedZlLgLkͭL\H:6uĻm474`c7FTO |>=}nv-FQ`?wdxqϩ:³z96=|&J,83)Iu =/=~D Z`e?}d߯spy}>"م'iw`rz //r$Sʥ:X`5|9Lh}/MݰI bO4[lvY -*sЪNB3"GM7,X@/ސ俞o6#&[_}1`HZ4PdbZGT:d!CrH NB:" -qjZ-b4rNRX0哖I ݒR$6FrJF/Ei¥V(Ҫ0XP)崒ct.d :R֠X9^h^6urB) ^GV3)%a8++"{:7!س-lsKKBEEǭڲs)/"̞1Lz*hNWD%xiɵr\ }BI]'oX }ƧU/E">?Q]yK%Q`U|a=wnJ\B G&z~8(>kصy+Җ%.dJt_mK'f}]t|$նFs+* k=w9 ckgUrUɄ2vFt o܍<ҵ130:.Y-uy:CIqPWŗ,F!*KQ³;'Kjvg 8+̫0 'JOm]͋Qo; u EWL%,r0ʿ?VfQ͞Ūz˅V)$UG> S_;{TXg&-]o^3R!gݪgJ[QF:Z.εo:>Yjھ\龛UGvwBnc}j~$ʹ7Ƿ'MLJsdEX/ z`Z\a=#\a~;[=*ht?Q1{z.}-?dot(Q띲\@nemB]Q݋ v;ɱ!AĪt'4FБ+,VDVb:0G2*k҂RbxCk.|8r*-󱑏 <>K1@5[auq{/ |arꔝU*N)ȫpDHeӈ5۲yu.K-9w3}Y\ULKQxjᴻ{cèSu t5;n -inO9d5×L>"b*E^`l[ɕ>7a. YϘ(mXcMN'F=2һ˃:mV[߃ ozh?7=_YLńhy(c˖|| pHJsj nVJ,NNpuEH*i5H%C^d"1$Ԫ8Z2 5(*`,j9j-A0 TbbS"CJ\ۉ8ZG㴨TZ1ijQ"FI!P +&h#JTo9^mCC͉Aqv|ǀMVd K_#g?:fC~6A+'K -^yRg]x'p3jN!G< 3U58&" 1yv}~?ս/ lr1JcQ,Sm]G|jۅ_AXwyrHVorxjTZƀcA҅zݫ<;39}tD+^a13A-,!'s -gZó:V -7 n\vwض85vWU3\,`KwC~a'g6v~;Ƕf{D^ftmEM_^EJgbY8f}učlɸoRӡ厖[E+}UPYc1+Pk !+}VCkq eO+Ӷ/ E!ףeL{W4i/?L%?tro/]}㿿_,M[@zŎ Nϼُ"8|cOmWՎ$xuϋж߲>ʯ? ̴`3Jw}Y|=Rt?zU\yMi"u+M> ]`z܀mvbڧ 83PcTfn}O)r[&E!Yϼ}m.ڛG C_+YM݃᤭E V"+x+orn6t2j`.A%SVݶ5}y- -ggZA`ӱ7:M ZR0(Ni"`:NUV*)DN2rBE|~0D`*`JD()p@𱴈QEbL$e^{8t -উ~ाM5 -jscqj9ƽ 8M9G'%[(zvRӷ!xaMOJMo}Q-Vi .&Ng) 9Ƶpͻc&|j1ԟ@Ip`_Olre߯}n062 lN5G49Un1;ֆa-!O`9a#WU28OfNb\I۹8箵Mw^HS f #AezæCC^,{~ܻc>5$r [XWa0fc -JVT - ON ^;&zHVeQ=du5az -xoӿ{iB JGApDw٬_i=!03tCCvn W[]دE]fE.={A. -Dm۴G·'ǿ9^WӬ){S2FgU*DTR:$BP+CIFТÌqF[^^4}{f"enVfFz .@*/ޯ8ޛ8Ez^Q5Z 2|ܡs1Xv2HBBզs)擰}fT}G_'f'['!8y?k5:'MDMNJ0[ذlk;c⥪ĸ?49ZNIH3PaB2fEJUD(#D.  |mIլhIiYLͨĴ~B8Ppz=J圎I9ʔH@VьP(8.J@(%HL SkIRZ\ÄBPR-ptRTǤjZzDJZ#1b)EGŸ$2ӫ#JC( -(_&gUӣL(8JtR-fYɁ_80ZTq*J)F*"T_T素R)ݥXz  - -Ä NT0إ4I`:; h |@ Uzcp^́NSRNJ>_)bPjq!`F^#@@SpH9` -'(Ɛ"_5|ޓ\"B _C X(:G zTX\i9)@(2)) I0@B#R+SrDY#R$*- zDAˏ J )ŀ瓃AfHZ`M+dbP4*R'9N"ݡK2`y+TmbILL" -#piHP:*U,&UbV3$KZ(AoʥZLFHjqRVjFR?Y -F>c8`u"ƅrD"S:rZV5#PP(2 *1Yjd@ !fD|\ub=&]"ZR R"ӋuL/, ө -hiXAHB2JF-cKFB/d4ZF(&:XqZ^(1IJBZIDJU9L DRF%͗hZ1%TQZ\.Ai)9稂(C1R0/ q,_%X$|3%֨FSt8qB -WqJ1zBVq^djFT&B\ RkJ M+qׁ0GDJHHT% rUjI%.>+p\iw\ XHi1Z̔O6X\V2FA|I*q"ZK$jT,e2%_CR-%D0L^/rL QEzJ$ 5F*RhHNHhU(Jb5 +AQX*:!ZX DQR'ҪĨT3,ɉu"e`9^$$+õD$"TjNHb=SHkRRDB!4.g4 @JNIJ`ZVIjpN2|)0l*8+IeC .Cu@-SjYF8`8xMbZQ$)TEXQF9-.N&S."+Ԕ pUk@kUbcĤZ -QppF,$p &]S9VJ@ =ɥ"rϔ:0B鵨X2R*?$j U$1[K@\W+ŬW143:N P1JIBX^ q jEz5P3΀4Z4ZFhJ| E k8Z"P!dZ 5Дe@P pzZ(=!V֊$P˙$_"B*p="111,E`KtJ⃣CqCrS1?Դ0rއŘh\SäUjב2Nф`R`*1+ kTJk8Kp'rJU:=R0JP! VO4 D"ObDIh2j0z)da BtD؏^&RX5: jD)!AbR!itt"LZ(S$|VԓH -_դ\ыi-:`8~L-qT\$flhҬPدFqD#HUp ´JRKYJ6d"%#Vډը RzJH++i@047 -_%&T$f" IU -FײB1_`!rrP!g -DGcRuX-C5b)gbp+ ĂϲUt,FhR b -"< MٕhqZ9- 娜+0%/'@O⣿Z͗Pb 4@KPB(wP4YCs.)BKC.Zd/@B-J3(!ㄘDI qF0z\$0[,`XV Zg010kEZLiR&WsID*@_$`oᏐnWWG'٘h/\$W#3b\kmZ(\>ZTl.+Dn"34»_v9}뒦6 ܨ>mwsr)Y.V"u!JqK'K=Aog$ǶM{ )ztODat!#y1]:؋ >I(L&;nf4F[54B7jG^\5nɎ]>6:G)i'*2qf 6[iVs3Te;rl6!cb -쥸H94AT{n? ]sK)Pcl-ѷ4ʁtG/έ#m(!u%sy4VCh˺>ky9GXu\W%//9YC\e֍i>]?!6o# W@8_Ȱ -W -%Wt0c1?{:o.v}6NS!基4g3\Wl]gY9,b^)NrJc),2KoGTvAWƔ.`e?^c؟=N-J!Zj1t L(Qd(O]EL{:!Gu XG+C y%9^K\\Mt פ{Z$Hls{w Y69V㇋)y1fp}Ƹm$-]|F3i2b8 ̬CqsZ"Jb2ƃuCcANYSٰGݿ} ON"&?4X$h#(vsv|RcI䜴ݸ)|A@`1q᪱ 3-Z ܯSpп6ָw5Bι3oKӧ^r/0HHJѿ -־D]S`}w%xݳfO}+n?=kv csy`k}V!ldۉ$*w7z%=p$b(Z%}@+-y83tGT!(\$R^*˙ۗu3 ;HlɆǾM}>+lϞf2zj}d`dZU(A1\pv%@'LUPhEuK' nvuD@]a)J`nzlamZrApۭ0]ǏNr8xY?-v|߫x^mct:A1# lnNr[i_Y/CNT(= cMEL8 -Q:XL-pT]P4&I\D%(- Dp݌of{^]Y L&Û';V\X@6cx|mG{ů}v]ؔ@=A0iHJ7WZ%p֌{PRl.v\I_ȐĦuQ~-cg|*^s *m}XTέ+>&p 9,V"kgb[!Xzđ#!Ykkg|`ՙF>{#}d>9~;nL8-lfzvlC>o}4J3{ <+ X,Fk&6֥eGkȵ=.6l9vwſ=RPL*⏭[ E*Q"@Tj"9 -_*e5JaZP8" -P^^HJ 2d/ciBL?(}eANS6B '' -<]c՛0- [y/_TؚsfkDžko QќeN+yJsq>{iZl^1 ,:k]]oCps]O͈*JJj㼻4x䇖fIrs,R9w9ĬgQ|d |Y>y&>wѤϵ&O͘J2fߑc@{Cջr7Z:7= J\/pZAB) wb[2A9|)LڵH<Gڥ23 i1/{1u~e+ ː{t"&O_̓w>]|#N N]/^[!I>i21w8ovݮO=[Yvd/oH[7'^x -9߄N~7%Zmˀڙ'xm5Pfxܰ@BµF{֦Mt̓_yցvZ&; xw]8 :5- ~M?w7 [xq55qN -6&>;v^k/,0NwZjO EІeXrV_ypNXkqا=wka;X9ZAFQCXBA'$]4ĩ%pz|%㌻S-bjdX!kDj )h:8Q51䵀"-"e4y#$A*5ieb~]+ =fpDRV$AAАB1qH"bu4 {bTmxz؏[j}y? N;8OI{iqB%]PXȰsr?vPTk0M톏6κՕ06hl*(|gO9Z& FFg{<(8e3hlTKEGȕ<.u'{j5Ը9n%_espchվ<6S!'ed_GカӜi5٭UAEMť.AVeZw "aB3/e'ꚼ+7_N=mUuow|3깔ucؙ^}W}a[c;TǦ&i:1k;6oĺ9~eɇ_$MAEԳlk>Ts[[~A_N\l|;x6lT ^6ˉME7q3Q(%O ZMUwA%K.P}V{xR9 `<~J2gŁ3? -؀=H?p<%>3yܗ_~O uOU5 x/:O\qٽjͩ=6~0rgE![aO/ayYp̪+.$}4qf_2{3y\2_=|e>0٧ 9^\d gycXk7𸹋|J2Cq -M3{ҟ]i i}Ye{12>%4ˉ,!WhߪSz2G%TtBsr`$(Y0՚Zei4GM+6_s}Ϋ%DIm߻?c9}q7귦Okm'> _)dﷳm<7jĻF|6/~/62.$?Y)?>p_󝹴:껟2(Nl?Q}ۊ7Ciťg - 2w?#!>0hF"1ήe>\[t.G$[ uADCϣNG%]_^Ji()v."ܨ-N59l:FLG}>>U#<1/a@o[Z\[V mg#hl9 S`oj5h݃//~آ%=&RxM:4N!Ԟ(mx)k34o0ac@SVBT >3=j1٤/4Z{8,jVE;ōFC -f-&R3gRLIrAT{> 0xzͦSYl :y)aQg~ -;U4e]=ph #ܟS!Òv}8eE%ﶹFUXrèybm_073wZy§FRzOf(dLPɞfSEcM.U4ui>xT1B`R}r[u}J\&"B'XFٲ)-nq١/J?W8a<*xIb&e?rB0PZ:On﯂=)Wu};-c @B}[{\ЅX~P7TpG= صѯ0V/̇[ on@˿>ݡc7*p?Qf6 >ؤfQN<ɩn -F >^y֟yy8rܹ?v[/3[=sizԉ)V)3ހc߿l|' 3.h^vks-aoo]tk=\˾R2!rb>;ڻxtf@ॢL 6̐c?K!J2m*zCfXm⑪U UU=m7`7[ԒH;[[7DL'4V=9xa*wi)ӧ>5DCR"&]Jb|FtM7խmJc=oUkO-ƚ "󌨚{1\bh1"5 qFD4/#rf+91C~ea*_EuN;鼴< {kD,!C0`'e 0*D7ֻlDyyۚwYd-@w[$zRkTlgÑpHX[ϴFP?YC'&[ndc>ӽ05[tI{^V^:ZWeU獆2PݬGeYSPc}O/NfCboq^u@:uMb -Τcd|۫UyB! -(S#Y97isyȿh瘡rhd*2,9tlENECʍ=xOs6[cPڨ`caUrEhe~ty%Oyh<`1%=-٭Xk+ml̬@p{]G9mlfnJM𪜛t3놰M͌n[fIZ?mrGGrBgײ+*!~j6} -[D!hÀc?x++5ʨҞ@*\'!751qabACes!6.rV?(yKd~V@?;ǫmd'.xMC Q8|<~`M=.몫T!(L2 =iUY +Suv/4%?]}|Xg|(KD `#{\gȣ}Y#r{!0 -H 6ڹdj ƔV+ԀyjzC¦о4Sլm1T^U~YOOˊ|n}T&cT)%ؕSQ丟 wY S/08'ALjYItf,g^s~e:ͳIrٿQdUܻԂK]>FWlj@ʒ//0 *SADdpU%'eTN8|_f^|i&b4'x΍yBSaCp_9f%h%Wo9~Ի -zM~_V8;1OP.-Tl|/t]൓8tNx/C>uO]uz`U:6շuWz_kok޲2fQڴa[qqAՎ Hjzɶ(ԍ~1M .ȣޖ"?9PuY;j=ےW2o^N≲'!k̵w%_ 1^'5}4,KW.&5F{:Ke+d;k?c7䇖莙;h[Duøw݇.+W}*NqӖDoɠ&!W ,̡NpbR`/oBeOhs]d[e[}kdy$6̢ǽ,6{:=46LKA.͚m~F:nv9q#>PeXEd251iZ/'p?`s6=5`%TpFQy[n``!:ul* Zxz1|4:p*]#NRQ,@㲺WL -𡴵@CN>1 CձPnٰK`VcQ;3Qi\K۴FSYA]~oTն,^ݯ߷#jݰBoQ7SXzT{br,m_K>R-ZV+7twbr[] S$&߳4Ne*bz):$4Qc*t.rPhݑuvb^*26OgdwךVVWBƍsӹ/05;S8r u-,ںg6ai>M2).?9"u]o1z%C]9TO& q[5˷rĖЮl6xڸXaft'b r =e 'O>y_<f pi!f -;~|T{m_t;&ۈKͰNߞ¶E$ r,P=fjV wz{)1PVWlWA`o700\t{UIkW&U}=Zn!6#k7arg!X1Z k .YOw~2~|ͪFOC!ŦҨR²~>VF>p T?Ti m"L2;dl׹Lmo]L#7q/;4Z*-b" wn-wfݐ$B9 ,so`\&ȌՍ8_s(T_/rY+ԆV,i,pv=zRVkϝRߛuΤf\)@^ :+A]+p\O$mlqW2QmaW<5=}ƫjNՃn=i|XNxg=v/Tb1t.@&uwW(p)5 N M[ -m+|VZU hy\m==:t47L,AƲ:>& - -+]Fk=Zc}Y^*=2" q[%{h LgAԓh\fnmY<ު;`J:~ǩŷX22MQ6j KJ3!tN iHKY"O(ɑϨ`xv~$}Qv+$L{_Z4:_pW7LZ?>b+L̨FzƉemydF+D/I_[md)sͯ7kB#kgTMk+ی g%J[}qzqOG7 V%<zgјk#6|r(1Y6O103 -9h7m!=}v_vTS0dS4zi0W3M96.ƥhX.(̣7?Ĵvf7؇4gnnB{Vz`G9Qو=-E3 P66^6ܥf^SǴK -rwfWvÀҙ -X^h3SA`~m<ͷ+3-ut6O`Ag>XT>N{x a"QfE yO.,՛:U5 U(ÒΣh[I_Ь -eNϿ ںf|?$R@85.gn$Insx!>j:ϥG(kix^XR&T<_v0޻juǰ5gkCW~iǓx`r~n`s;5afBRa' -YTPbry &WnKkfȶ$*K&/X.U^5+b G `;3Sajp7 VF4MɶUgsq`U0ryx-|'㧢u -6= -^nowy ݑ͢1?5^ǽiԫ1TE)QW_=?l LڈIⲲ>?e2*ag6wf)4bzڧ @(fIXKh]U'8e2*J|?a!8? v% 4>@cI hW/׺wgŕ:U*~scV7!Soz kU E;.9۽saNHھ`k(oh*uΠ_"9 bĎcg⫇uAU}Zu*%x8OvU;mMZ:l[}|hB -ڱf4Sc.)'_s'<{ݮPdoYּU`kgՋ|z1)P" []z",͙8$\,o{O[YB3[-4f2R)-Ԙyy+[ZC޾9X[;Q9شVX,IRt( G+0K`VS=v۬*ǎBzZ2b<~6# -r(Ѭn\b#CzÚx_KNsvߤ{'#ѷ2}a -1*OvVM99C6#޷9 UF&:NuPB695h!YI)zV.+grƻ>|9I}÷RB63VV^5v燏#}kpiwM}9шbI!0. мռ7gxrq:sfܖ9<2A jbpo&YƔ^k,%4G"*_Dp΍6NkK=CPGF2TZa?G`FH| 6S;o@W=O? _![J+3i46[꿧^=um?BYL[EỆ#0 "2(6KHG> mc>6Ф Sb +sZOet]E8/׉c0O9tD.JLT͖˃N_kcN_YA0Co@BC \zkȐa>0hڸ[9db6O,52v!~lv>h,EE`rTGqKQ<FY$>) y$ --Id2U'Ѹ""b9fLgq2Chco:D9\#"lP!4 f&*q$,&琘 !@1DHNxLPJ&<6]Dd1B&2IDfS/aBOPhh&^"" V -"6,bHh5J .I(bqD&ɥ3٨b<:OOg(ld{2.*pDL"eC%lEL$6"RDPHg3YDi\!M!qd>+%ː3$R$LIdjRDN 2*CF$3)$T(RD&+ǓD9R aJY)]@IlDL"2X,BB6O0R*cIyT:ʢ gKr1)|*GJ) !$YB"EBDih)E$ Eu|)^L@$b + l/@s)ȐH49"EaOP.#!'&Dϐ"T rx Aa"g,&XġY.f0lN%Hb6 D. y|JcX\t"E|9-* B"RMDel!KL#ZfQ*HeSt)4*]|:WdQD^ 6rr.ME&B/: R D1TH2 8l^ pHb'YHt@"rnd&0x6ND8OH  ^DG>"0dKdH? ,C @$s4TD6]xDrDƥ01(bYRx:H(, bx6 -E$>FOEt]"KDb!bD+!rG :R2Jd _(#I!2"D:QȐJT0"y#+):ǥsRC8260-8PDl -+X%R G؝Brȹ\Njta -#,9KX*xD8<W'q\9AIľy@4@1U"bSy$"rs\6:m?]qV 9:@3EoV#CTАղٲy -^oD(D װ -V߮0j7 -'닺&2[6Z'..?[>5<.ƄL]2c770Xt:u8."١! 7@fIF/B`W!.=uC؂\8C{7}TýACnx._F_߷y˺Q*xGvg?İj]=2}!lS%X[d_)ZFgZclۛGj;ryfCT("B05'x.1X`7e@ւ.lZ-ljVcB' gۜ?pg6…GŌ0O@ZNœ..y.B1gt+y!y7AnnO"V =VEGE冦Oy^Y@#=wRÇk^Nh`&Y -MUy+tkG%XyY2.b=| -tWw -ʌX(3&.&z뼟Iu -Tޤ⌫ZgKBJ1}Eu&%DjsjMDOhy5OxBy<>y< ͤG^q^cz;,~beu_Hdf>7 OUէLLU'u%Ý"1l< H -޳ rzipӎr1.需`89 ^~V$+<}`)Cx#SsvX!89ٰ!"SU] -%O3g3agXqL4 oƜ媁lG鋟pܰ/Za콌t`:m]6A]>esPpLhB[LL0]@ɖ}a|7`<`;잙$ VFE+2~r:^{j`ys4 '"I}S{Af9/"H0+Vbm+LjѲ7uG6XnS#m)ߣ٘/[MqhW0d4Xvp.Rh"-֛}x'G@6M]fwk,R{vm*"`ɎEd K@fPst:zF V+ҋ]5@/JGr.1vʈJ^@h@QPoShnեEn]i!EFhʯPſ1 *jBv7MC0OxخA@͹* 8NAsNlض'!dw2 -Ŭ25,@ l!cIJ-J,݀ŷo/0ӰCON+'WL" 0)C˩ -RC#`xSh, Nq8I)\KY`6eCiU%{KnDaxTS᥽Ӥ9B⃕l" lXqws-3zcv]5mœ5[-Jlz2꺛ÂuIU1Q9wԀ6-r4xȧ`+)|=xΧ'#)+RB -Q/l/0n \*w ܒ"M cGb4R&H˧l<{qz FH5u+0<np ;[10ÿ hUhMUT^lo}e*>8;Өyê7ϲ)xgߝCEwŬUȷyF޹;yzHt{hWR?8ͬ=du E.9Maw;fV#=ƕR*HveV -!㋥"-@iR_2vWK|{B -tk}c6Jh/5&WB' ۳n ho+r'MƮ%1 \'}x fh#.k%->͙~!SZ{a9"8!iչYTtYx -ж,1_09ofs^؛P6v3r 6pFY;֬۵Z4m}9.(Rii7#Kbęsж3 Ŷs9?Vy1+6i8&l8daJXtITL%7Mj`T}{g+8eT|h+7>^/967˵]fW)5>93*ܭ 4F}c[6gH9Uxv>y:]k۩4Xhg÷z^CtPU*n;hk _ +h.G$kjȘNᵒA즘IJqYMYm=+)Zky-%{g\d].<b21Aonu}er -ߡ֋*|@򦁄,X"µB]amU!忴ҌU%c-\g l&{wȯ`_z|'NM_pFlS b!biBoջmӝQ?t[k2`f5lշ@g\p&C-Ѱ>>7~ǑSx4k&6v C,elYlh͗78RL"xwG趷z(Z仛$}j^2&{BitRx4v挙8@ֺWqwr֞FQ{qze"?2,UR{&$:A=Ǥ &3֩ ǚԆk94dOY ][w;&~n^u8K]j6"ou[Ox~_VQ3>u/liS8% ~pAXgdؚo-Tx -z -mkD2u#+Րw|CuK 5Y !l h,mƁm+ɿߘYNfoVs;a] -XOz{Pq- --<]QԪ={ LJz}uD:C$LMkyl\ro ^Eـ) xKp'<GB ")  NȞ_H*\`WEX}GC0{mC b@$|Pg0l5%&vmI+/c9+Ś -TmL[e 4dic i`|.N&DAoRs'6AB@~K)hKh{3Z3 }$d˥!v#=~oҝ bk3] `Ti A]m]mtw|/fJSqGQGB?ۯ1QZTׇ -ݻ3 s0ֆش(o"COEA j0HC+ 瑑8? fFw|o'%<.CRhRU1Zi&)F̓dx7_yhHwjnOB7b (mD\R%ͥLnV18X#\ku! 0N{;r!Z<$3/ҶK 'e(L a[dVH[k]m`Ťz28aK];}Rv}9qklb5EƢV9Q\Rl#*ܵ;렽~S|hFh@@+d_d8lY׆.-@X(V2dw=Sp?WؿLOlD,1 oZ.j> H;m.da[Wq!4IKW< |jlw[_U~Hx ʻOV2r9MJwyow(K+h -Gp(8.d'=_?L U7d7zY_E}8la[TESs)fԶuxMX:C(;$wI8,0kJ9Mʦu~H۟?"L)Da̐,pk+˥"$dDgyjZ7M m0ajvBl*<"l?p̦ê~= Yއ'aSw~~|8,)aRBWU{ȓTaeɃ5wxTS0 &WlWp۱IUtj^Kc*v8pVc!Cթ~^˽?7UFJ_ut$Nwxn.uĂ1ߟXwJ]аẈ)Kz2C9|ow7o5S_]]]<{E[CS.~Ý`zWκW^?dcsyoض ] QfQӀ=]n$v:Z y(PN)cK8RLH'Q(DK% Ħ\2["gI\.MƒI"G S4.$LPL$% <(6]J0r!phT4ʗ NA |)fhǮĴ8`"<+&&c GF&)*KN "]au=W>Vm?[pYkNπ"zŪo>*qkq,3MxUűXklkˉ")/pdrv|=i}lLNTٱvO?q)M{Xo5,G6qsWv|}tw(_^jy#C[ޣug,;kGکQӟ9hV4`A\F.xƕGyWʾX͊ئY;ksȌm"q6(V-~:4G4YsZE@."}}vs,ͺ^t߸st4Akxаں%! 瘴ۓlCKYl.e)m4,wCL% _S?'Tyм+=?GFTV-\.X7EV;xv/ׯGEe[LȘbδX0ee2Xetsf)I:ԳT$P!.ۛIGT5XE* >F^]-TW+]jv,ϵ/):vAܼ[epTN#]Fe]7AoI$nIL16vbz>ӿ`*r0YVNj] -`H< 6yz7/x.&s br㚶U%YoXR~O Z`-Zk4R~FwmH[ܼ0+u׫ gc?>{j{I)P -HmZVZkj֚BىV6776 ga|B3إ y$H4 0ih Mو5wQ9Ipq\rvfw=ЏZ -gf&Vct6Xگ528JNo-.=lXZ"UHS5V[˞<#|vk5y հz{[EoUw,j7J_k-"11#݃iuFgH =6ٿ}U9-Zkڗ򃔮c@xbVͤڻ(Ҽϛ#aM05($z~fBV-cJJXQ[xV-Z)|!0tdgpH EIk}bkYld;bW^;a Rx6jq7WY՗}~7gd쬫zXL.վQHL2!]1,̔ʢay{6,Gum+[n9uy-eycA bBڀv -!{Y& #=frz=!ˍ_eqK (Ɲja:3㐁)mzԻa)򀺴ab+!8;]jk;wװLq!qS]~5W) S⪇<򄔑(`\L]j1+(rY-|5 3>˘Ӈff|de^m@zES$Sa0iDhbNlr|V`Vϕ~ffG6RD +ZSɸ|xg | -onWg}S%E̜ǭD ~|YV`2>xN9\|c!st: ߻*2 "礯kOI-N;qWǝRk~<ٙ3 Z{]e-~dF*N?Q^vU`x:>䌑t"gնZ\="^EEzW^Nr̞^fA gߥ\<Ye<×}f;:,W@x>󢪄$Y V:0g7cuga<M5yFr *-!܃ uAwW]lYjAH(U}ў vxUZloߙ%onQo1(L ĩ^#>-H, -uX{킩TIlSc#n=֣83 o L`(_W>EބYq@L<0h6h5 f/D(:kuZgռU<<)Z cub0'= i$=*zvŒ[tthriծ;];IZG?Mȕc֩ݰVi48LKy'M9o2'x{arg:9y/ţЮމp^ro_]GJԳ?Zz}^Cjg=~rxвmKF;%WV}oQ{O_{{q}7Wm 5*=gZB"ZxfT (yL: =־鸿T}c?LXrṬ؄K#f97V.`"!fR ]G`9єR9_g}u!@L^|nbٞrܜv@~}ChZcMix!xAU\ tT/T8ByUOf!IOc>R R]("[\Si[ؓ/ -O:*N;E]rz&:UR<-鞀4 rס1T C=/z`*xl-b:ơ㞺FkCMj荞gjcB@0ٸ$MȾpu:GA5Qd9*\ N H Y89d+ձ >.l,\@Am`_we -::6TgiӞT͹Um'6k)!@JmYt&:$ݛ1=6D^y|I -:4;6Ɩ ]^FnH"ѩL> -,&J~t[]X:>.s(+>?:hOWt|Any\[369nzg Ȉ)^]*+Ъok,{U+3:F6mvIcIr=\7ߚ]XwDkQ6K[{yߌvugC~֫%ㅩsI0sn{Vub5UЅ iq dgX?!)A$!Gfq(x,'rM}%-%vRX&0k1Թ>g'NMg/8drlUh1w?,{x L Sd !Sm8X! 0le$\H130<*NHApXx@ - .K1|1Lx6gų LK\vt*p$.#0pd.&PT^ńi *ƄG -ئ ^-DX3 -G,6'($ -υJI6H]o@b,x y^!-SܖKo.t* }ͮ;QpD5 vV-qEJ'@V<8Zz[Is]ST(kUؙd뵣 nN?5e~ItV=(0!3[i]3=2% Wh[&:fe=; -=ܣ0CKwY[6uLY4! -wvjHf2DmSb?}!WR̻A.j=??h:^j:Ѯ"ثhTD[OEsm^ea7y,68Kvue);GDQ՝YvҭbZs2fs"G.w:+1SƇi/|_dg~eY\cΛu\[)9875zZ[{7qV֏Zʏ>'\3^Dy;!nXgFo_qs ,I8{gFhg_,KK7 go}Tʓ=.6e]}{ݺeFL7[9vK#!-55oʃc>'5C1Ex`v. cBqvR+}lzGQ鴕D3ؠ.C+5l?B<Z@ I5PeO6P]劚r՛ۼ.Nvk}נwE7Ёu*8DEV[JΑ7÷>A' Y/6CҘdyI: *f'x*$g׷2j Ol3Cb+DS 䄃C=Cv|7]c-ʱiUX59=3Ml@@Xn b5ⲫ[d2zO?5\'X}ѐZf JJ~)I{un枋ט:%#OWu8N ZJvtwD^*ԱV+Y\'t{G 8tE-Έru@e7W !8W4$ ?-u_B9xdCV^'P=V}d粯ȤD.g8O`tamNT+_┙ysc*%hMiW!#`D5|PiJK+#vۆU&{cs+$Y?@|(j~G!9cUCSrG`^ -Vx-nG',[wAj]`>=w/ ^} ;O`huK}!PVjhֺjQ4Ε]>k O\ Ef]c'k?.X{Z`X۪g~Ir昻X:{F[ҏ0tC1R͒H[MENhf]<{`%*gc6N3ﱲnyxAcpS -|cZ⛂]J07.Qҕ~2gQ6Y_ImM|SO| -h|&çb 6[Hc8,#TE#Y,61hl)gp Kb(:gX 90&p'3)X7c$6ׄ3(4:T -¢3$6E2Q"lg`8L: ^KHPLx+)ˡ3,KŚ≦L咩,2#cwrYT -˔6Z3wB7.Ʊ2lǶZIKpʭCj62 ߤAmHbӘL(4< w(B;}bnJW!tWC MX!xB2fq:eQS DFrL2S86 2q86Hca$3AxB#Ml3 -\3 !cd.FrДLd:"L# L"NǢy\z4##P,>l`S O%R0 -M!r$,FU_>I]ȰjЌ6Y\uyUA%ݻL~j|I4/!6g&-UHZW6R '-? -HTFT! B% -y,< -\iEJ03NC\>Z0PQ?{rqg!O}udiϵ8> S9QRߟ?< ԕuk2`(qhՑc 67'u ]o/N -Wud,ͭ$V#5h׻%ʊU_z"^I1IB5ԅ9s&!lΙWۦڲHZԔ-sCfvͳf&Ol{:A]0/.fgWAA # -t.tH72w - kl*y./!uS#]1S G::ƇlM*ӊ-Y (6#*qw/,[1pn'#( &esnѠkznGꭒռ}K\ocDMy)x04 kcUʿmA종F}qo2 -ڵ*&S#ӺdPx* kwJ|)`c>Eb+*A ,`{mT)#w6G%Ģ{65Ils(S,թ>A^*a5Ckɹ -w ^_jkrf:eK9Մty5lZN݈Յuǚ;9rK^tDl=F'(xLso.lS'QN $rЭZ̶/Wz HP2hk^Sl8w HW} <3LGaqH'1;PZWLn[:켘~(:1NzZW0>9;(&7Zd!$,e+@l*tn qn?D[ܡ[>8S೾ -&Eg/|L}q[KwE0__:_}2hѡgzh`J_:YS7T (tltxvy='sW .lD奡Ž~vO? Qt"Cn˾M5ѝpIa_3v\MOw&X c ,:^H8Td9HpCmS/Y^Z؀J^djj/?,G ~նMwy2 -} D$֩Uٮ w*o;vJ[+CiDkJđ R=UE9CYS}LN l dY$-*Z +vնˌ˶Y?S4YhwwmWQrFe:X_}\t'7|^ -UڄY3!DU]5]8 4Nt&f/ir˵ھP-bhH3,C"చ@WH+Af<#zPM -B G-췰WNK߄^ֵr Sx/6DHW!؟_mo_Z0-|+O<X"M4Psv$ݮuKs/cds=k;?@rQ6`zF}h8'(J*vwj;6!KAD[PTw䙻vA}[.ZԖaZ#%V΁E** ?_(R \!'`c &,uZZҝMUkXj;gQwІ|G.|flXnU;7%νSRJwE|0-n%Q0P -߀W)- ™Y $;,R(`fttP%8O_LK <2b|RMSNͬr hw/hO|ֻ /Tjb2?뫖-)l{f>ګy!zZl0Nk\jLq!kI-wB\'Ggx؛F C &ՄaƬ}Ͷ'` -@G,+^dia.6Mif ȪX^#|, -Y/\-/U6d[%Ʒ^CV?}֠ oloxGv9;=}FXV rKb~Xnx[m8?`vx)nO awM4 4E輁:i EStb 4H13 RF"/Uɺ`|WҰ<4iR,$KFrѸcmR3ɣukS(",-zxweR5B+uW@9lfLaڵoPV>f¿DΊQ!. pnH<{u`W'@ )J[ -"^LRZ-ݽHokqwJlÒ`<*_J A&sK^^-M?CZ9*wJ}Ql:[:C|*ɖq LTJKbgDSn^{h7wϳ0Tف&}J8wrSΏ- $$xiLUo@KXhjCj3cZ)c4}E|"/33, k,' L˫`/XϱgJcpֵ% ȅ?9~?P_qC$gei%tٸfdmpֱ2`Ej^ŗعa0Ait(*(l|cRQ`5ԗC5aInǟ#[4%BKS1˴ kD[o, Y[խא )RBzg)#lBlLfL0rL98:[niGu f }10޽ 6Xg`#+]#n M0HL-K6·Va(k*{vDxf]Fu?jG 9:b;: W_R)SxcB|kI1e=Tq-BB&qNZ9jdfs qO=F}O2C!Ƴ01wׅ@R__cMb\T2?ܯqEVG\aV }"$FǑB~ƽ<|96G~[KddR0ѱ4`Ws ->ݥ?𪻳Y06-O+P]-ҖkPƵU:Q? 6yuI#'[o{[ǙoΜlɷXtHS|&nG!w8]ys391'x _"%ZQUdԈftc2ftgls\AxR6\`2f,o9TM27F~r M"Zof 7˧иb.a!BSsP\Y4dA! tOvY#0hܨk\< ZJ euMfD<YګۇuwvqMYQt.Nl&JdyY;lۏaoaZӁZo<"%giYaǴ]1&#6p/dE y+%F#QN.t;;rZoCJftDHB]M9m*(,O)ٶBٔ}(˧`m1xbd)D9/9ϪT`nVe,FG+\L8̾Zy_w{m|yk-w-̆>BLfO% ad03ԧ)u"FȫGsWT :OVKfmWQ -17Q6[գߣ=c@ -!.2fx`'`ud|RV)NGjuNusk5Ego奋UVs&0EP$ޯPOl,Abg}lkw8=;`8ǽ#r ۻ@w+cY'9e"o ^6zټ]郇w_=P\T/[sim*uq{M"蕳[醯 -_/bPp k|U|P=(`!ue^;f%E -fFv -k)sB{\~MR:UBƱ0Aப8/-R ueDe& UMZ/ 􄫪e) ҶL_琎 d=Ĺ̬+t1lGX -">'%ph6QA`,8&.&ޙa_k™?ujo5rs0d&?w :gy*H5l6C=42;GB29#}鎅ŞE i0_Lӈb*Uթ4LO-y339_kX:t57M/ı 9[,6h)Zx[6C#z+]1+pӶLͮB wTbz5AtVnVSm>:^|JkwEqS{j|xYu -dx1 6V*ˮ_׃o=HU,>[#´P|2Ew@+yßNx -VaM%;s×nsA($ dQ}˥k0Oȅ!8|Y1:Vܕms'ӐJxGB}_tGҝ^8ie^+Qy6!n *)ݭݧG ,`h"⢭XZ,+v6p~ s}l}ƞ+|xKfF¨YR-<snDӀj:'SEt B6&Bn=OQY;&W/Zk(!gR˲ -^XYj?~k"ϛE=V=7s{t ɝk׻s8l׼'0j4 tLVi>GpDE6t(KDn]\یB{) v=Hw! [ASpbpQY^a9a.1 TRplZ*A=^I|rMPVcyF -e<ߩ^x -B7^}0h6ȁp9ɬ.Zv]t0)@AH,!O8* KQBGĦKYl6Od8it&O`t^"d8"L&BS""Sȣبypxʠ :CLDʦXQ|' :HXCX|M$H81b<"$Pd:O,<^BqIot7;*}r3 -~6<8'2OAl=ro^8ȥP Mc8zWZ♽P]zx-'-2MG 6ܿUn0myYqE&Q~C~LSM)WA~lqps;4ƍĺ/{LᕌnO_9S.k*=6?>3V'xb{̡DǔX~d-bsƾ;nԁf w+Nxe;ApX] ܝKBPhs]CIt X5uOj5wʄlB ]wn9OؤJ$xVJf3Y%41QsE I&/ h ,_ +f 4D0*V$ -t biDJP'%q(,."%TT,: DAHciATvITxߛgWiWaVsǻ0"JGaPey ,ڔX7۠ -aJLd3 ۏkw^YWs4`uX")^`TV96TeHv㥌{MlT&HmaejϪ:^j9{F{ -ʒOkѡrbT GM u.[1GKW @ՁCbv^EW*M3O+Q'=bTlMV msK#LQve -qQPh"R;M LHض yDJK$aK,Rg2]Jy$PE<*c2=04ά_ h3'V5f"Var1e](R&plvV9h * pwJac'{e'[5 ~ig~rw&PwsMw-UsPvmOwZly\Vk7-s%cjFɷLOTVaP?_y?&9î~NsS_ׄ6.^/ܧ5G^~__]p3#(C-W4v]sy$o5s>2}~jGj8a_}Ưܾ(]LtQz @ P|}vЩMt42ӡ3:40ϝm1*IӖw%on.n>֨N %]ÁHnNE|-|-Ƙ閮r}ei[q{q/c# 9|c -r?@PP&,mF |\~Sg\(L} }:/44 ?/;=|K=0T,Mb\&Z ;2՘/ɷڣ9/fw_M6 `MӰz=;F?JSj7a۹hYW9T]Ud׻#M'PۋK M6 /aJađӺnq>Y6͆ڮM i-yaٜkх"Z ͉WRzE=Ψx(<$5l֛z\΂֔(嗊cQ1yN1!`ih~1F 4d)gIDސ' -NL,:[T©]ȹxu%WDGxvDhDQ,"E\2$ WJJnqJv7"ٖW{5 ~xꕏ_|}NYU,fI9)y}q}9y!_)6d3L+եNr|`*4GC@9K] -z8}Zͫj˼k2س.WbCpsT7F$ˁ"0Iy;#c*s=}e2\"sM5m_֛8ů]8k!8-NEo!8=lǺ^idyS/|Wk'\N"C.VĜCƅي<6IKL`ɐmp[S-ny(.HF%Rm~b'౅nOu \kx5Ol*U]@&`ѳoIo<24Y7M*NY2*é1 -7ksfdTࡑEN̥z_ gu r)Ʌ| wokl8 F&xlY߬%[]@u%`cw۪8Ԯg]e0N2]yEqFhpxELHO; -@OHoNa3lL--6W,EAa1e5XJPs.TJ ͩ`c$m||thL|qŻb$6 !!vv]0o -[׃ѐږBe#iq)տ&R>W[Hs4%Et2< IX,+P8gI+3K;.R<d8,xYA9 ;L+"[l|np)M|R|,cX8*v_ &_?%4٭ # 8R\ zc)npB -)~[ҫ5aV5#>FIsE-GݽoKlCv\<2LÑ 2UOx9`%OWS -!tsezI  )15Rmntΐ!gQHh,M%7v)cHOol!h? Kd!"!0pS/vn3k+Y_殕 &؈5u03Z,Rdyqs:KFM9MPz]s~:[>|z‰awq>{w-oG<0j@ORqOavnRΥZ¨} -]CB_UϘ/6ݥ^:&I^sSJNq*w1Rt/ R?-0<5m>~%_:w -_~VYD0OIKEU R+?z}MƪSFV5FbC}U Rxek¿G:Y/F3/l$ɤfC'/ʲȶ {86@zhs8/ ؾ+䂇֜7|q4]j^C,]g l8[=ls5@o7WjhJ쵴x)*},>ड़`讚7_>%">y:Ǩ<]rWMGQPqV5tbع ./.">0 m>5ocF;,EƉ4`ˮ@UcxgKtQ{8Un:dXP63;"vGy~Ÿcfy>aBs\ؿOd$Ko@R*o8(!kXZie˜࢝TN3zM]{ڤI *JG}{Rh`ngԘRm^z%Jk Inǩt4:&(3gz>a6Ljz5&x;_)7WhCy;?uP(@&X(xjJ=#4wE@&5-LI,qEtPʥsb4,Syl6K /r D>D< gd*[YlI( )KI)$( Q+v8pLR; r[gI1)/FVT3&;9{znnJMPA4=\-@_~T&0YKP3aQV70oҳhy -Ae%5%5u|,򳹼,4w 93U?pn;lB -:ASqT%L*ID)3DKxb| -cY<KC7-E|C`p$:&pXP,2#`%X^LJ$B2EDXNX!A,(6,Ha%b)E`ITE$Nֳ'6[ˇz:#JEJ8.IR\6Æ v9Ƭ/GUe_">=J_!Ū$gq5xz?&  -[ b@})].;Fcm`g -;n1t*M05 ;yWX aE:>LGےʶeFʄ߰˜#R3՚X {(NXɤ5L}/:u9F*Av09:\I I꛵ j7aj=6v5Y:])&N&0~/Ak٨I̻~ll UIJ[z9I^(!{*C}*),gj1Bv{O;zD ]?ߙ50A)VIJ-Ĵh$k<쫶tFۭ~_*Y W{xoA4?Ƿe<OܗgǕ>{A'^"z7NI;.m-uƒ\>._bE׿tKC>b&smX4=n$23?nlg2.hlڭCo-zPsTfS["r{7U4U:_Uqw['_|ZtFP~] #_A_+{"~.䓿HYkg ^?{M:WK=VY]I$揟z_t?qر$+O^N;g,/=){qܝ,rg_R Ne-)ȫJv'62jNuG%tS7t󥖠1}_B'yڳ^iL_~/#-UKCfw'.:߿,wI2i7?}|V//yK3/O֬7mv|nܟKȯj}'^Y3d7 ,=;x<+L|Q' y,>9c_'@Lyjc=)s_3_pDlJkwq~1I>Fm5]_ R^Ie0 |WG2,`n<6;H ˺mul5xBQ-K1A/tLvZӀׇR0Uf=1?6\|ӋPra /rGv}gVpb}.=ȭdo/1egp$W@$ iMQk"C/Mu#iѭbF'ްo=s3FqVl3lx @.3#cmH Ymm66o -#qNZh:ns?]ע6uPXn8:6 d{p6oEFWz-׶^:B `YTe[ISR,D! v@IJ)3mũR֋ך}xJ{V> '%|]`wf;99M,$XV#1˙]nӯVfQ-%082""kQDPCCsK[Ȼ2 -ʳhZ -[jnׁ]A_=2N6.3F>Tt4[4j%$TM){BJja(YnztD< 42="DQtmٻ e> RNL$m̗8*N:kGJc^99-.UQ{_^g n9a0ORWBDpDX!΢Q8|*C¡%t>G c)t2ǐR,_(qL0"۩LF sd`+6zqp2Ev",N'!Z׿4#-ӹ,Åj֤%w^$}(LBĒ 0iB&(JP8$DXe -$ /p\ϡx`X+䊅 1Gx -p|Eec|%`|Y,Ut2xt"S*  -$RQDH \cTçC}>N?.H6 n4Xm5Qтr1[ᬌ 5`ʻ *Cv}1qiph|[h`O^Vp -68lv&m;t7ZGq=dq3ܭ( ;./pWR'n~r5@TSgyIeח VN&ZՅZ)GO"j~E] -! Y1<&ѻ5YUb>9ړ5Qf=Qu/"й#캋h>MQ;xHr -FGqdU? qɸxǁ(_+_/ztWD)9@e_mC֍*9Mfp~ -柦>D{mӠ+GX4iMMnr(*͗߹Y&[(ݰ[~( -N&nNGb#s%/7ꖮ,eҨ1eT6c`2 ѻmBs# ol m3zEY>vE7Ϫ/VQBMšS?@TQ('精hMFk!*rߔOx|kb a#qjݙTR1REA%7[P ޳˦{d{rgB̞=+_([B8TRlPv q룭;e / C|9h., ư ϤDyi$qOBƒ/BG-e;rD`!˖8E *8MMM!y㋳5qY9H LgwFV}dX{06ɧAP4O `8h&'̽?kjSmu\-.EY{PfѺ|@9PM UgF?<%<i<eAլMZIM~~PЖ[aD9'xQ`U~B=M`g lf@ -8ݦ&G8[D6W!-Ȩܭ X "WMA( Z$˓fE\JcQ„?ghc:Ӹ!; -{y#:Ob*,}ș3meWnG_uYy|Y#۷5#0ͰٰAtRc#$P9T2ZV{N[,,Z.ĺ22bd-)Թ%o@yѣKocHNk}\:]M WzAE4uTto -rmYFVυSW XzqBX,I޶ ΍*mhBMF.*dƆN(]Yj>+ "27|u_H IY~r84<zE"E]% P,ߍ2sMYtPޥ -mQ+74zOBSb$:O4TD,+i"?G 7Fu: DdiطK -ʀ c:Ƴ0HѺt<糄Xb[fK憊CH`}30T&n5i̊*WW #Vl. j>J -龽cyD^rG}#w{+:SZB,4KJ’9U CsБ?vZ\8~CL!E xTxnSQ3Hs \M?lLgB~s^Kx"` b_~z\mh lN~ vʴtxLVdaݏ -'f ߎL"rWe*QoMwMsK}n$$B7i u!ݷ)Uo+__I| \ix¨طP̴ioZwAՍw72KAjfkbb3lKjErԀ4}07$-%9AJHt(Mٿ'c78ͥ ܲ#Q}dhV:goh9\NnYz*-N3[en24 y~P\\zBMH"18PS+g_'ކ}ϴ#ox/ԫ -UU7bSV\֑7_?U3|F| Q`d{2QU5o5_rEA -M0wMJPIMGbd3m&3kXv-p)tC)gY%}~J3#*SD%Q(x$*W5*%FE&W?j+-: I8)2fOKRߖث[S=kdHuoxWfNb>PbC?|9Fn}Wcf3YtfS 4!sZ~ 5Ƀ_lTIF(HY.'0("2WEX<[l=G*[gqhDк F̌: -z!xow dx, 6S>$[J7DZUfH>/bV T^_> -DdH^rF熬& /X{u%<,Cr洽F<`>OXL |vtqn3/\mqÅ6*(1!*~z_H!}$>&Bʁd*VX Muo}ݜx-. x,;6嚪*_]0ҝ\&.{.dMMn8*mYW$B<>ø ۉ A3Y0g3.iwZSWL` ͆&VoJn]6+ >LNKٹ3RU@oA_p!`8*co7"eh6jaQ76ʠ }fR:LK?(D{sR r^^FM)Q/$nyݿuu79Or $:cݷvHMV6+_&sU!C|TVGO/Z^ 4/eS9["# ƀKg]F[`WJ -KOam+دK*(/dt$uh:*@CӾ cc}~'XD 5\"iz$V8С7M5OT18 eѹ BDW|{eջԨ\Z9:^2YӬCTU]Gː0uv,Y}c3F4[HdXWlz`Uϱ\_9u϶kĽfe8xee_El~㝬靺6X_y0r0'F2(".@nAMOWZ#2ks_pUޯ,`cI)I%>$2xye-*(p3y2<:#Ɂn PttϳۭHiށ g6'F!qU" ́XlA>ӅJofOLp<9*SkDzESl{njGهURW`+dy[ZW# Dt'-LL,^rJ odK@]YCTwa?_t*á2R !P8#N"D& -723V|zjxA7NTC(} c1" -Fa @g3ϸe -LCPQ@M69̕qG{f˕!sSjh&sw},_y&S\V|)H'C]R#hXr­ewpZ_`RF7w G$^ |o,QYW޴o $Rɥx!,ûJ`԰:(M_ʨDE ??垹tye#{ЎL^m9B{w-%#\RlX^l[hsxl+KWupI?nR|Yz1Wb/^y:iۣKb￰gl}yUO-;Oj^OԡJY%=]>c=9L郏5<ժ.(>?ICE?:=_[^lZh)|6dzyc'5&v+k;ٲKӖ2Pd$aXZyHp7^;w^p{ |O=vũo^`M(~tJ3ꧾGhjK2Tb1eg@[EKKڏ!>O?]dyyMr c]? >ڱ>DyzO׿p$>[kc<*J_HXT[ ?yuߵ84Ye*zujd7ddw5@o\\ k–]rVU}1d -H4J H[a^ -(fR)k78pb2md<ڸ 8&&BЪBj`Ncm[ҁətS'@bZޗv励gzLl؇mV=m;ҮKMv*5j;g` -l'*dD>0e ;6С De籊 _h82*6XQ'Iٮ1;_VUKBeFwrΰdHx10 g%Ig]Zx 2T< ou{f#3v=Ͳ4}6ⓃjGކM -eSx\&ΓIuUkډ5u.@wxAR -$OoKb,r,D~HV{̞xlg aʂҡY 0;t2a%@ԷhtyeEen;qiq#\x>mjd d -<KX "b A<4$I\"0,̺|!c0H1"0Y|4t6O@8!NH4!)l M` xh,cdψe#0XȤh'b"2!aX,&+d@E+yfZ{ZbhGIf,0+/h\zJ, y.:`H+WDp'6YoGcpXސrvj߈'<<ۧ[ -ډՃc%a+B2CHϩS\UKq 2aj&Wͧ,ue舲'4C'F*Y8.B6°I$b|3XPy"Nnl·.&چ7 .wg]BRME9T|3\#& ܳĤ'ks~l L[%>(br*ah`rR۠ìB_HZЙ;l5wlJ,-KG$7:4wP( hi)D>_>NCd1{F>8j5df%mҐT dt<$l -8I1/(7GQQ[:X6Q2lԐ$0b6EЦW] j3Iyw`7$62[ī @$AlsKeڐn - Mt^BwW(h~3M0!& - >G4^c B&\6M"HItt!E$;]B~Ue5kNvLı'jϸ,T2YXC>ofY^vCD7 M]0Hx,Gl2 2Z`A [J#v(=XL;=ĭKZA Բ J[mZ@uO@|'EqK_^Q4v%Z7T4HOˈ!Lb7 /|?8]O3UwQfOmx׊$ٌ'IlD2bwqy[b͚o_(CZ &X<O fwLDnZken{~%)|!MZf'7.!=)&~R1i/L%o1ˮ(.JQ 9Ul^D$vn -`zh\։V};`5"[\]mkg= oxjxi~qg[^Z4PڙXLy/CӦ$`:Ǣkqӫ\;4e>8:kGB\ʾ$K1  c/ e!]7} -\j;2 -mM<25^)8np` {tn Lߍ tn;Hj=^@9͍!ھhrU̦n=޺csSp\IWl4mG +Թ~idZ)¸G9#B -$EFX6Bhl@HgLCG/"y2 t4( O$RSV?Yt]T,ZRS7o6VΒǎW)W^Q2`Ѡ^ }.dBٚyXX95¥{=,dpDF73J>psϧƪ,%99yဓ!/ȗVGb`^0@zEk2BYvjq$PQ10H Y(K_1/61Z 0(GE"1=5 ,mWfJh8"1z5/n>BPV~F`Kd@["PyUX)xWUH4b@u[̤rCP@U~( pVHo2I4g$c8Oc$Ħl:y݈a,2e8 V1|#!ChЅ,X<`4C҅F" R) C.*b`jA4V"*WbRkq?g}d:jr,l[T]ıtRE4 -\R+(|*X^6_dz)џ%;qNDTt}.zk >%G#vG`ڰ'106Bcsۀdρe~Ң﯏ב*R}W\L_Tڏ':9FwϕfС_ s_|ek@Dgm D:'qPo6hjV 91 ё -(7q+o%LTG Cm״] pFt,Ȅ! omY'. -I:!0McJK-p$08uG?TZ>];oR߀+=`Y֮MB/,I?GfS Husqtt4t;0Ig -RjQ8idP`EM+k5믫\P ZJ#e;ln4XNkšگӝwywS ~H荵Vء7 XYPf4 ZuT -?2Ag -^<ZB+7w?k~0||`pejZ+S{~sK 2}KF՚~x~zN__JhQkxOu;_-hD=C_tRԛ俥~%qlֿ߬&nMƃwg9ΓcIn#bge'QǝJ^ 0~QD_*L?{YExHӥp,'d$YPzk@ӿߘOCGSa>W#St!nQIYQ0jbr:10 ]Ƶ#,d ̗hX* /~:nT6K:7##45W6~,|V)Mbfnԥ}Gv17e8u)29 -N\V1q>8;Tp`6D !b4U\vp!IVF" -h dSKEMimӽwV:s9tZ^fj㥗H5w% U -ӎ񁑭UY!lWKEFžz&F"ܳ6Ť]5j}K5~k3)+ lI9xo -:H2濵ԧ<ʧ 0CgsǴ7AI` F6 P9h]ThUs -\[H2c?Dhrv& ^ۨvA#}aa"E N8hUM(9Va=]>ISSgQ}Jr,,l7d @&CթБp1S&nZ #62ԷCWYĖ0 %Etg\nmF8h;Tؠ-5126}壀]xBTj]^GLLdCxxspd\6H7/lCV#ll)/g|h.tw=3N­p4.Ո([٠貞`7C)aHޭv<Ӭ9y[M>( -X~W -pg"i|rPBP4.lJ[V7YTY,uw -mSêv/yVzIqtt;-L" Zwz.n'_UmP kS9ُ[oS$ÑrauƷJԲ,˞_]mg3O?qr:r)5#I0T "b 4qiR 26 Uj*LjUOo{+@mX3Y#=w r2Ā/(r-;` O&`qB2W+`XSi5XGP5--Og -X"U+خ v.P#fJ .@ Vg!t/q4Ar]=fgшi$-g?;S+ၐum?$Q;o&BI+xP%@s -0D%0iqs38n{am}fmw8=QۥdvHv:̐^Ʋ(/fKU{֒ݶ-b8{հ0|#e95KcUD>26#ȦFZ8!swÖӂt&T!Nk1?v?X*.9_%VY\hqQ1R]_1 -l*2w^i~PgɻtN23e6j|TK#L -~qNR|ĩ H>8^ee U0ۤڶ i[yXBkq0"ִvE%8d`+0!Jemגc ü5jld-|m샆 -hSNш1t4r[鄗68gj'16]( >aI{q#&j襭;ջ_zv:3GS>MjzlTWNsʏτ*?t̏_/3duirYGtS zmw(#2 ^IUug6E\ťn27}6ze8n.( ݏo}8>*/~ax7ۜ -9Nkk*Jsp D"מy H> y9jRϧzd⑒/vl%#Nʾ+n7 f_ ,Ʒ%G#s5*(&ǻ<%G`dl[)I,]J7M^.q6CZmky߳ 0Yը]/[\ hMd(x3(Kpk- ڧJXZ.nη~ݙWy8:(񝱾}bd -,+QqVt0٭_z}ke{ -)j!<̪S cs`_n1/6fت@AR[kct4c$>^2~=A``jbf 2hQs__.._pP*_ҐO'aכ C -K i#%rypwewp]kJ+(YPq E,'*8' mMrpR4[)cI$Rb]emxZFv%7ʴQG%pe> &}r 7kbj1ܽ bZ5Fk6U5\kL:F~DKDD$ې5ؑoz&+c ]*} FJwTQr(.(/aW8E]ӯXF@di"2QqIhA(_HlQJYiH )_OI]%`tl,0.G] -誹)%Q3bXX@-6" 4H XMct4`D¡)"͈B2yt#4!'$&C1d<Xx U%l$=P_!';Q`3“MU0j]Hc^Cٵj`Z}b1@Nz+ %) 8;88ڗ~땵^hotW0FV%Od_L ϧpFXn?rbnۄlC$N*ACIE&& ;B$GAr5`QV -5N+fi@sÃOQε«sx&cq4L#E1A&.4Jb$CFx;8L0|]';k_\nQ-_BI 6GtbмYaNlS\#o2 -M}hSJz$mv`ˏ>=;&O {.Ƕ#/,pT\Tq46\ۂLgs̬:Cʨ.[o͙̚~[_`/fnjUK7ljr"'׀q :sm&LVjP٭[}XPNFX#-_؇o~*sT\ -fwHv$ C;k%T\=G!AE>e`X6Wb!N i"- `wTt`M~XeUҺ|3/7BG'iGZ~2Ҏ;Bl Z+z'ba6h7g_^f\ -kcK.Aڝ \UkN5kp?cdW "k/SႴTzדlyޏ. HXV2U욍;r2TrʙzaPG#B@aiD:퍋Lzho|pC)U]hi":|<)1buujuB0;h2x~ m:c?OMh[Ɓ>+)ܽ -LXRb}_=P,$qDVΪD:rmRB9^Y7`Y"2kCKi`ô%ERt4)=2T{IU ݩǔ;,,K6I ȩ5OB=Qbڪ8#qpL].Նάg@ )٣mc҉BN -/\V\z^51жέKc'(WY&>Qu煢Pt}}q?JFok *\QL -qs q4 C>Q4xΡSذhl#U;0촓5[QkU5U7UV:6W!5ei|d{͊tDW_yFdXZ$@HIpDR#ѷ/Z YU}RHdyV0] ZZ[VTz ^CUklb26Ƽ'i}!*i$GṀجk:oL24ϧ?*4[-8hȵMY7NY=O,gljgYnd}3|xs@Z{&E)|g܉<+Y|r\8v㘙?66ee7Rt -ͻ>c7c}0 ώ7U3/̮>#UU_p$[_i4 ERX FgI+k^z{0.[ԝ3EAߴϧyL~WO|Ou[ExڅjvjB!%uf{.zDBC)XIkzu[h㲌WGx0BA룲 [&LJ>}T%2ذ-P`U7CDvuxE2xGB&ïv[vE|^OFV DGIG -;r&edxq4пBg!E"3 4RH ?i}-1斒qD*] t٦3v!!*OO߁vrV_@Z #(7 i{pWcqL*ثM[+/cbscN`*` -jzeP@֌dA{x{*??h>ta Ґu_<ǢSx<^Y/SϫY h%iIHME噢Ar8U$9G2qʦ&/kU$+h;}҅|{VJ[]%q2- *P]V5[1 ->$Wh((XW3У}AvW%LpXƑ O9P 7 7@95VI8#,t xH -4kR0_~H.:#?57nr̩?BrhS̳on7 3@2Yh!굺:mUkdKCRꯚVBcq!7y,'z5`;xwH 같H19T$;ջw *ND (:I%a_H:=A?]U`(8Ksk+<)kMsb#ۛ:#J?~X`_/2yK#& F`OLX>Pi\5.JxdUw7!NpRZ-pѸ]{wgΜ9yf|+3dUdIFMAYloY{͂qL`2g L۷p \yZ5HvOIJ86n0 (kx>յC -z̿bHӍ Ľn0ev<~#w>$y$qb2a0<[S4>@+O%QW֐Qj^[Nɤ` 1#㑾_-˦`io@ 3# $`?bB.7Fl] r-XWQ9{cru|%FiwnoqzHYa0Pv -yM Nϟ8v=Nk[g>M&",ryB`h F 2Fc -KS"l$6gHQ6&d [0gid:B#`MW>q#9*hn(hl.2" \  Dy<̭9^tDFs=H`W,V}$Gm5?5Bo' -l1#D_.Fbeaϵhf/mcVS=ȭy ƎTNH'H*%mgcBjDǚzF )OM6 t_(6gUޖ#qRB`jﬦ@Smcqwuu^g6/BTyF9y<?R;Uz+87[yisġLJ"'( -}D_N7 3g^Yc,!CgΕ54V֕b眮ˆ!v57.Rڋ'}Cf4"M&-_l\\^ -i G<@_T(ߒlxy_ܑ7䩂NHEN2]g4経m qiA@uky4C89x>j(kڔp QD8+Jls zuիqڅ<|1V sVcbyb:n s{oj w@]v?AW=Gr 7Z7$84;E4ZVe<` }dfj -SR"xi>%i\ڔK?29ق_'o7 H8 -,E|iPBT7٫ @w+**sm-2X2j2opw7539\*ZH -xG҅lDG)t*˥l:UXd2S@ 1, b/IQrNITkv1DtngibX `(2Ef ID`s -`J+ D Wo9VF/)?)97ųQcKݻS_V={+yАl~3,u[06uZz#7gpl.V#[۹"calD{pi̲I4Y8̄:$F Odj4+L\m6Kr0Nڜ//CJ/8YL(\*xtztV=.v?O!ޚgMh%\R@ i0e"CI\MPWaZk1b xY ( Z(^pfe!)Qu|He02qRh\^ϥPYHc`xE6~LJn2J Ƨ,6sC&F|3k_4vQzcR0{i; T䴻WbHҰtc_f$G?)-cZX`)~pjr/z?/(Qz1AImmT!Ei霛f[ez%=[Z|/ޅ@9ݰ)ٸa^Q U<"ct{u( -6 9l2o2( [`]biF;۔Է|DeĪXvXD%ҪhSI4Kđ [(0#Rba ZʆZKݓܹ 8UCgiWfm!pEz _Szᅨ3q1R3$& -y\[ Pja$F/Kpt BhE_vqy1KUh.HBN[)5%;+OiΙ-)lN=*㧑ze0bР$5 vm)΁ bZDfVGlVKPs6= #i9#ٗ:\jv_((IߒP$`("eW y<ᖯ4X(qJǾ;r29nvqwFÛPK_G~kцa)Yts"hƽ)9pdvLem]y#'ìO>AuZ|ׁ\⼹r, -U+:h͎O6µt#5ͽzSyAcdFIKKUAq7u[F)@}"AWz -A3W 9]e^*mqHrEM)? Rr9x`7 L&D gOb4NgDXN%ŀcyB,bT!҈hBƦ1,ϐX,@ &B!CD"/XL.³O'(<, D.0| t"S H~*IDQa$($p"!dR< Fq|1 CPa ,V- /a`b>[I"RkddM(Z08pdX;1V{Qc -) qx`p|FqYX.`#9Qx,JyKr΄)<"^@hb3C`6a -x!Y, O8H%GP`XF04C!iDx_PaQ4ఐ}ŤÄ --hxхbW" -Ma-l^@>C *Χb"4N,B'B#E24 We9b:, b{Txs1KAT/pL3h š28L\/8vh%",JL.oV:VHkFp,*K+ L2WbT! yx.Gb^({Oҩ<e$*MBl4M`xK3hh$ 8 dG\fc[8϶?cW~.G\ݗ^Wto|T-Gv~Nx֒ha4p6Ӣ?XWM8r7}6V՝_=9T#ͦT"0Sr?B -"U܍攽s-3O#:즭K -({ej1WTIw? ܿz1$DMh:/ WL'La0yFտ߉|/x4[X7k]M EaJAz7 ʁSa9 㠙{Ӡ,ʽ:gC|PXA~L-&+؊YƲ9 J0[\A`c(*A3tEE0XoҠbFAU~SFTyٹI=Sc -mW>Z~1.?xq;*)|Xs rnL)q&3*/;.Ɉ̛$0+u_諪_2 +5.Cn_oO#^t3i#F <탭 -`nj8,,.’^"9Wo\Th2#4 um,X:4ڍV60Jsv ,: 9?/lfyb*'@fn YuFvCuh:ʄoM:9mrUڃ#sj*RͺTTu]朾qf@FDUrW֛f19nH΂QpKOo$nӉ}DQ2 j~k ATkܲ82[eRr5=1`)C+bjn+u@]Hku!*cVrʛu jL\ 01hF'h=]50$iv\H" ),@u,2U#Ǻʀrࢶ<`8$1sZ K""=-0-י&nAe 5HQ|%dל4g\2vh",A3srbAӼI+I],K'b2ss^]mpT{~piY_ݦ] wقEoو,ctFCth,{ݻ7dS$rQvXx&O)_R.VvIHhIp45]$VCI!, YAR)2܃8Iv~Jм] d*MS|Qȅ'„4 Ga@$DbX~ >V;j6I!Edx`",L2x.lV-V5QhzIO?kk2WJ{!FaVԖ6X*NWzrIvd2*mk.[۩[!Y*nrBИIbṡ䁢$jjr)HD%a`m*Y2n5WX6}AV%Lg9Vf/r2K s3trh㯿Rf?0 '1 ,; gT-5@KʹN [$[d^l )!!uu%ΙF_՚߁ vtF& v$2tSmb N@s LcWU@/])l]}g%- ŰCsdujBWnjLHAH(۳c&e۫[q'hHoo{L+zɂ1!ځc<oԯYiX$4z+iz*V{SJp-q0Շ](f $\si3M0Z3d5&2Ï $v5jq 'A40+n,semA%`7i ,r _:3?|KFf6{)dۘ?okz//*5"U|2^l'sD#]88סW5>/Ӯg)YԱt(7GݐR}}y*KH x|vPNOwawBry4pPvK[mR)"ndbDPc=W/WXi\|R59Ԧ v/UaE,1 -liոac%7K,LE~,)Z i.fs4̩M к65̨N5 5gԇUZ~V@FPc8u1Fу5MMТvMH=~1Ac(D@ ǍD}Ȉ2goƛ=MQsj, Bƫ*]zpXa5ڊ̇%f1 -NPve6}vJ k^~&?MO+,*h$1op / uGlg[t-#HZ h^o67ONҝZLRtzM{`Gcl>CZ MLKo)lK`:SVQ=t1ޘ=߾<זB;߸887{ٮ{|*'q`f:& V!R7XG lUvH˘ Nayg!9+dfM wD"Tj3e!,adLJ9/T0Z#[KENpzdc0B%_wK?=.<ݿӓT *_yo^j\3V۹Sf)VS&:7*-4;cZˈ٧6Z$ 10ݴݹIm7g?S|9w*gXXv?nG*lMo1Rp9F\ 2,v -i&`h>܍|0;<) -sŖ I!N?rmeA`bƧRy ʨg2[kiB{[ܗ{rd*M#TzƃrX}^xf40|qi3mk߱ޱuKd,BoڒduG] ,+!d5,Y.gl}u|Mh]˳47AwUH'᱀nꬠܐ|{Mo"zWZgk&SS -5\u4sv"ZM,ʇu-B4) GO`Qa. -f *5Iَys H^y"#vVP &)/GX -X΋wH -Hhz&DΔ̔4$YWB3o嘴@dLjSDtztq1`ݝkӥN(>,]{osܠкπ"Xhw@Qq_[ޅ0o#FZM{Z[1\kELhh|J0ӱ P))ujͳ}J1\m  MdPi֤];S78j?PRAvnG$*.tdl?]9!=QA^g$WTBw!k;d.F "R Li7?/lXWO~iT˸flԞe#uXfpf)1,O!b 8D9ng΍9~:E1w*&4 Ħ>XY}#%"jݽ4Eo3[61IH?em,;vNO,ҥp> e ܚVy9곒v_R~fs<9e.q~zcgOZxiSsi.V,[/b]N%@/WF9;^@G7+j1=3xmYˋD˕,=BDxBnrGDZ6c!+%Wi'Fj\}rhΏ_6.=>Zo-CZW/OxKgFSԤeڛxr&JLq5a_8l*vBuڼk8;ӯg}Y1}%BF:e_N- Dwݘ Sߦe3=r:'8[7fK^2<rG)b:/,ق|?Iz2'bhyq[AoV}7Wr>9sK璵?{k b &4h6>fӝ"?GqZ7?'nlmIY͂c)[]%M-G] 9su s9r++J/s|3Cw_}Psuޅ*e=2VAՓu(Cϯh{h-Wc~o-c)>b5SsNޒX3WsN-mn_WxT`$Oz{̓/oǙeq_~vW[E~F9ʩO›em5~X7ҋ/G0|Py%v'Nj]Qq^Q]jCU{x/H&>upư%x~qyA~~O[\Ru&r&O7oOx}\f0~vݹm vt%$;Tw]3ԟHq@3C-_# ^EA^mM|{EZ[@q4(vԞn+=F>T$<,rNӫ 2zCN-^{SOz`xC{C?Sd&7Ɉ}^kX{͏`BFtY d}TѲOh@J}SکzI3-9oux2dA3m|KXA2?U+'mj0^-pfLؤ -o>Tn)0#vPܽ9 ;T -|}@"gC[Za kjև)g7 {-2_"}u:Yˋ>*H7 -r>ṍdD~W`o7v0ҽe׺?ʄm˖Uۍ_#<6kYt5aƬ'š{i5G]F+4I-Lژ:mJMz OE1 OYXpcLܽtrVy z'>ƿ'-.S]O@""xXPLő84!IƤ\!8,b ^@a< -+\O$CYL,MgH8"<IeETX :D&Hdd#$|1A!qDH(r,frW@|Ag LC@* -&b$ 5LN왷޸%H6ہzۀd`zYڟ 3w -0xaqBD/?U?BǺSq{v#u:d7,]ItGPql'WmkjhAn?8FZT2ͷmsrKm |J73|! A\qG.|;&{#P>Kz = ÝjmE%1P }"SY.X$W Ա {m-sMݹO ]nMOZfCkWzT! pX3i*iz k2\6 s'fm@wk5Y%;fƑE -=B}3 „d%#reBD4״(MEfwΑ4"[6,[_KagAPK))"e=hZ:vgI$c@u_L=KBV 3|(׿No@&@b +uOӍNS7B]']_if+<_Kv6Ocr<4Y ݘ~.'aC̴W~q=?8з#<%B;tP" -rR!8!T="c#A÷6#I`1MJLAZ[ˀc^zKDJr9打;v/aq'|yhFl|hԐTC{*o'3i7*W+a?9,hp"@sQaWsyMUߛk4cq_=ˌ;!7EOe[Dγm(yxىwС?w53x{=Iz9 z}}"pw;0wj㻑-M/՘<#|MwZw@tdZR"߁7"g<B` #). d3l"/x>1 1!01tCő<>G@  Ggpbħ!H4:/f94cqn%$ 0ljiajqӇйͿI!Y 〼UQ@^;= !vjHd(",B5-eZ,zgcXm÷)4*J3i@9'|H={r,w  M0&R{#`UG̣禼N -X4¡jzy9P>SNpL'4rQ| (ԜҚJ"uS3S?<[N]kYZ[""Nbkt*ݷ t9GBƐ2h䭌*tkbΠPE @Vgv~?5(hǜ^hk}ʆ_ 7Q!`,<q`\"֫ÆvH|s6ްH$eC![ccmHָZYy>n&B!(7"Sp0M̈ -lq@bᾯ(gz@WB3sFj;vR8?=k8n;J\c8lڰlt X$FGh>1o^ Zb%JnnJd &{ 'os?t?3O*!fQp8"GCZd5H1=-gkй83AŠ(d࢜Cdt]Ҳk\}1VCNM.i0TMQVm%~xQ5`tȨl7fK-R6gJՑ>DT~s59^T m/r+?9ALPbOBb܌ m5sK;*?YzʠEQje-R>67z*`x)\*8; ^Uc*"Hv{۩m~L_Iލ<4E&0dr}ʲmhnк|Nccc֩QаljX^(-)_:[7BSb__FIc)IChcpXоdYY- ~\; S\*>f$r,.2(l)IkH6칄C +;Q53Vogcڛ3xjG!I !`ñh$PL,YЈ'Rh|t -4 #3\Ec"!2"e1y"HX4C("r  "2y&a xQD'.|"I$bryNhȡ c{Z{Kk-9-: H-+* cY%˙iYmms&r&*%@gibEN}h(T:x =jy환lJ[,؏ -߇PiMbI\KTQ`P`b䤵.[ڴfɤʶð@{ĤXn0YvklI#'I숳j.l~|C[Sa!@՜Λ>tU )N -_0,0q|:̈B`xl3D,GCsp0wfRI\IlQ L" Ƌ qT>b4/DS$>^ d D2*3X4kBhtpͮ˜~#-7wvErgDW< 0=S[J`R&QcN%AqA(şj6`ܕUL#lYTXB0_35|!C'᮵F6\[H'r4*88Vc%A.t᱂Ҭ7qZJ(0/2m,U3VMs2)gvUqXi:~hssuϘa9Ȕu^ݘZab]ڗ -LƏ'X8X9 )C <ѿwS TZ$,Ke6k$UsεҵJ-nuP׎:xu !{>G5viT_A#g|cs'\QO(׾B: 6ԗ1/ ]8ޏ -=^gǕD8-"2WMR.IL#.@思CZEUKJ]dK+&/L 6Ι'uF٨(0y!W z-tG$^(4O;#ܝ$>l -!k"j;[-ܚZ'Isťuإ 7N mC'0In^M',,{=c'J.)mÎHrxְ\Sen+;wn$$Ĉ!*) -R2* џ"lWM{lz}lzgyγs{y{Δ+~,&!x &C'F^Rb;h7wr{ u8dΗnM"t7_ޮ6 ́ -нkvg`yd泖tǪZ -y"/*uIlwl*ʐ\ BgӠO=&Fa``#n|>h.#K j_I>Y+'7{3)e^lu`l$|á|G5 NΌ挂}锅"upy+ CȮH^>βe|8i`jY:$HLn.q[D`2$bv+z˕伺p2+Vb H#!Fr쭪NOXeAq-fNV6R": !>fԋ[QiL.V?<Ǭ,҅4^$qhja:ʸ=uY8 -z,T-5茄:A! 3mTn:GTP;`ObgIF8&WbJ d Vt:Ďha5$d0$7{YVNa}es- }q<,yXp<1QLpR*/bMY T̓HD )8XHPL:AHMIbGBpiB6p%$"шLIHa -M SĔLKd)-`K8"1+SDbN$ȝX<YX34sEZ&kIX$Y7]Zb[ ]/~1ظdWNz>c6h;fcM ٖ@k!ik)FOAϫ{zer ->Vq؃IRю`"Vڧ 9^{ 46i|q@ڟ[-QX1kiج/_}ҼY~9 -+J^;(2 -w߬d_nC -EDؕݑ i>3 |rFU2URϝj{:Kb h5aI7$>y,&k^tvUmP=72,818\W!yx o%ߔjHlWgxdFӍo2_?awIz\ρ~v=R!g'7KV.V7B ޹OjYr@u˪UB9N˾4tbKnSVb}gвMj9 Gx/&AA&c<i 2瞦C@1ao:MVb'!i5)Ͽ nrq1Ns̤v3s,h[mC G`}e|BTm͕mj3j! 0Sǧgi0kiYWĩaظXzAjdyy`c)SATH"4*zZ'CMc97w6( :'El"-E84~Pސl2i q/&[O6'u|b&vdȳvNeW}.wr`6j@WK^$d_3Ԕo5 ͕-Wrbn6(l_j)< -#&KB yP -s(r.Œ -(k ͮگ~l[HuҜ6F5Hx. -aE5rƦt)M1BgեU.Vkœp+I >"PqimUņ ˽vP_"O耀AĻ!`Sl'E4 }P8/k!ބldWQu _ wњ/.J/v&"nF^TbJpskG/9c;ẮY{ RZlB:,ԥǶk2 vQ8њ30Ƙ-R8D:ⓩbS愭(+rɶ@p|^ץēLDq, k5bO&zƈySU}>.Zg7'cS|4>+`\7OgRf&>{ID’Otwy_>~Vy*%XFPdn~u|V,^zFyS%{QxH + wvX:S76~`Xε\.u[o'](ôˡƚP~s'j -yjoWƚ-߫uG2"ǚ/=}hg|r=) cw;˰î5zaQ>>+UP٬۸Gu hoPlpf_Nu{xWrE6x"".Ywcô,eGC:{5rVk拝4X6A&李7۝XM95 [5ߞ*GpJuXlC m˜>t>[}v9G_xI4]@ -*&gxOPɺNeKGdDdZZM4<=z kcjՓ{3ATfYcPf0~Fg֜|b#W!-}^>..&asZ&սh&+pz7&l6} O{:C>`!# -ezA&=9rCs1PʜyxzLUwݸʭq2(ػc`NAA{AvkM,<ŕ0ɗpdxPDfxّL` -Ex(fd a -Z^M2X\"zcJLD(d"&єC8 -"҄ Ȕ'D'(ĞH9l))!RiI(d BԾ"u5 eO^AA 9)j(w>N,ϕ3 c}IB$sH* Naf;~u^Rv\rlU*W?0, -cV'Ҝ󟈲N[ |,|ߘ՗z<>IgC6bR˺[ykk !2|WVnV]f:y;d,<{:7 h#ăȖmT4{888ŕV0h aG+S4+fΟ)^ cwOGD?G7|nCX9`u6J7y[ +BmT~٘~4i ZhAxꚖ*d*a1,݊tzon-~j|.|ETÔR1 sXE@/(<$ՕiUR@5* Sc;80V׻z>x9l aK6í4V;&:}Ⱥ>n%yƈY ad qذ)Vo,[TfE(;e3xp Yyp NK.F)L0'#7 e,`=6(ǖ<ükuKeݚEr}bawv'=+fg|d?Q jm񫙩MO wFr6ɢqo۽8mS00=])Q*]Q4hx1S6x݌ϯWfs)4?4+>yz3aGSZ}bxv?]ES0ѵrR7tieWw3jݕ~wW<`@z@dCa~Ź&N~@ZA <]]ce~ECK=f5PsFtCeMy$g;ed|w  \b_f.ǘ?}9j-29u~ѣi&Eg2C8-V(Zc@rܦY;a1~r~dVb\FQ+7$ cH@q$A8XLvZ6?_ݵ,C kf0yk%w"1%W MĚ[{UCͦd]1l`.>0NQDX1P齁HOul-Ye]~2YʭAKBGcZ3{ pw!ticԵOx| -m8Àu?08qSqӈIwQWI.GX9'0~+A흕] yoƏ"9r V8.4C<^TܸgWsOj)42c`wi+p޳n tf/(R}|#6"[ 0`ݰ=fh$m+rODr>?f}8E$lEǙۚf%Vޞ_^-1W9GS-A ` @w貵n t.B;ޑȂPLXIZp62M485wl)=iMXXh5Z7uoq=GsgϜ,ف7>>f$QDR>zbGc{5µ3\ -,s~[O/*w~sAkȴ`AAuǭnף0(WݝFd_w}xSO ƚo;UP Di| -N,Ŧ"*QlXp81fBq S(I)L>E(!s8 -lH,Cb2B"\#ZM(Q[ -\Xh.N~?Ҳ)N -ç Kf4!z܍ 3!S?ĴvFxtR]oJn'^mY -KıD%ȉ{i`'!7],hL?m`Ŀk¬/ێޟЋ]Vɦq36[ƙJu='pl-a; -\썆ws޼cނi -؀ZVkTkP" -I -.EOܨ;"h HBBQ]ѕ,&:ס ¯@v|nqx< CbIPioZh!Iyga#0p<>ԛQ-sI=V68SgS e䵺ڸ/>K*apHX N FƱp4S h!SZµ; ,DSռEst2B!PX Ae]GfzB+/{a`A.ǣ2hTSDXT&MB")2 $C">D6erf9B2C""4MJHLP$5 tk)p .$s4T2TAL2 ߸yu5%L !UKGP`OzwZp"ڐbKٍuݎbN~P}PI3z㩨1ܖ/kLP5 -Acgt/ ѓ)ӹ Mх+tSo>s5Lr6]]g<@>MYp^Z'0>?.NgS[㷭-9>}HX,%PK8۱$w^T@FmڽVn+7J[p'að> =T"4Vk_ZvN_oHFa "S*Q151:~5){APcAGs]/=T[#jh` xܼZM0h'wji7B (6p7xghxI`3|=|zORN1SpuvKFΖKsz -]&ȝs:zNCטG% xC̥ 2־R+ٮD.*;RVX 9ϺSnW8DT;}g􁋪onzz}-=Qf=B0,!>j:~53&U+V'8$hʲ˭!_SW2as= -Jwh[ :jլȄSQUA;*㇂6&9JDE#g)|uyt;.q(šPY]0bԚyGYzq`3 {z۽B։zT²*/B3w#/Թ:ΦN: k_߿}([D@ᄚsTۢ~wpBL*yBFۦKE ^դ9c2?tE,'csf}8!vQ EJ_Vu#BBu뼊[:1)W㇞ ?{1љ`WN֝Pf=N^5ըKb+c)PҢd%×ѻ7^naՆ}_Z_yW֚6kU_ϷM3N)L<5 `"&_m.neJ`T3BLȍ;Op0c\ (Ƴ"]0YA'ئX lĪeruͪ ݒL.O~ࠬ#`S܋PТ't|R2++9(" %bl*A;Y^'T.oHt»&Q|veڝY^ ]q]h};E$qu-_ݏHkP<zN{8Js2K3x_*d2lΚ_@Pe9v7},UIX{T!0:dmXjv.Rx &`𫑈Gf04 _JAJ_YImUmn0<ϚL(s>h7Cv;O:f{:2]}Zk_ߩd.a'֒JV -T)EhGY^ *F7O8 -N '$8 &xu5<}ca.T\X3e#+ -,s JPKoMsŠObiXG )[5&&>V9*6KTZu,B^Nɧ&_\tZhe]p^ ywo¹c9-2?Kٶl$_r;484p@Ģ}R+wO ` HaMm=y)p sD[Th]LxW%Ƨ4PJцf`Ѷs] :u,~ ،B+E`j*pHEZx9lCѫ6N-RceS&s/AW ODhl0:x@ ]] -ZtsYgavf`OL>~TD:K0Ay`vۢZksַ >PGBoh`M!"P޵9#f:i]> n {F,W:ѫљՏ%͞%_+9*ܧZ*!`5Ub6r ~cJai{qyPS#^ouW٘-AKӈ,sPRQ環 ˎ|Tbdc-þ} ő{TgU{5l#=b67ݽ/w?%&@M^_[ h*#9U{eicJAZW'?z33&$Pdvj߭ S4)TkP[wQۀ-۵F4BCF2aG7k7<32<ύor !_%˙ayps=0}G [Ku<} %1CCnρ"hN3d( 7>đʐ(81x/WvI) {3kUPmZ?"pr?qklYfv¿DΊQ!. pn-TiTWkX,Aѩ8:8m9jTk{&!$@6B! aIlIC%, ,?}=s^0ڴ$\_`4EC3׹\oN)_z29d -JD'1#KBy}Q#-<{/}?!0X!f(d C5Zf>w@U,|}s Q*b1i2)0$mbr(ALvum/Z'NPM(`Y*ɿ -—u0.'"v8΢q@O^X7FCURC9 &Eei0X -\keXdbvzOU\WlXW޸ӦpM5[Wcm;jw_ısWc%L!XYVj)\݀ S!vh0ٟ"D~gv^õw AgH]mqWiwa8>s+ C`]{h S_B8Ou 4mIxbʢui來}~aƹhz-m!piDB 7 sf С2àc)Ĵxu -sIS[˧05/EypLpYmnQMDcwiT*m{J0s bu@UZ x¶@(9!n `g뛤am]ŖN#8@DeX!hB" [ss2jd)p"SC'oXK}*,3N 8Ÿkx-O1*%'R@"Wgt^H5ͨW}ݞXz`\<>ObvE wҕ.3dމs35F٢9wIjRtm mG.!GY'ԥ5#t!0#,-/:Ldl>b`j3!9^Fgp8!C`P$u7V_m劊*tU"Mږ^,0V?OšKbF#@)OY(o?&>/D/Gϼ,Z;kP(h>jf 4vkZ-Q5H9t;4`CIF ;쐴&Ħ$4%O0<)~`Y $iGܵ_ .lye0d -Mta}W\' zfͥ¬!XӻTk"- UXR4<^+c3O+T-Ng #OJ'Ŗآ{F,Qcj>6AU̟>Aw>i7ާ{%QY: xihP1B(x0ubJ{{e:<0?aa4 @a1“! wa]bߪTR+:$[ՏeMt1zţ9lEnȔcq9yZdD2@eN38s4kD=͔Ҕk*)߮QTv 񱶭obW -~FY -;Zmv('Lꆢ2wdO:d9*Z o!ٶ/\@auKcnIY[؁qm3[ˏʦRIG+9V+ -e$ -Y{pk=lFڬ -ԌEet(W}+qr_xW -l=Tmrll -6. -Uյ[1ۙm'7je$y2wx|n B$xv B&db` -hD6?$ )D|DL3$F=gFDCO6}bD2¿DΊQ!. pn \ No newline at end of file diff --git a/examples/record/complicated.json b/examples/record/complicated.json deleted file mode 100644 index d5994a2..0000000 --- a/examples/record/complicated.json +++ /dev/null @@ -1,100 +0,0 @@ -{"r_boolean":false,"r_int":2132679254,"r_long":1106702187144302089,"r_float":0.28294337,"r_double":0.26280661541091765,"r_bytes":"h\u0006","r_string":"fi","r_record":{"r_boolean":false,"r_int":1957061872,"r_long":-5322298226049348986,"r_float":0.07720792,"r_double":0.630674020746824,"r_bytes":"Üô","r_string":"ljsdeknby","r_record":{"r_boolean":false,"r_int":-1245525648,"r_long":6325933280687240309,"r_float":0.4403811,"r_double":0.5060324744025092,"r_bytes":"6·\u001A#³","r_string":"tarxbxqdtst","r_enum":"ZERO","r_date":-198071650,"r_timemillis":-567060645,"r_timemicros":1865442008270026042,"r_timestampmillis":5788843107697174077,"r_timestampmicros":1198158210549641667,"o_boolean":{"boolean":true},"o_int":{"int":-1295838802},"o_long":{"long":1613502849072227735},"o_float":{"float":0.8282306},"o_double":{"double":0.26213648278805335},"o_bytes":null,"o_string":{"string":"ovngjjnqxoimrmj"},"o_enum":{"Level2_1__1_Enum2":"ZERO"},"o_date":{"int":-1013754602},"o_timemillis":{"int":183203715},"o_timemicros":null,"o_timestampmillis":{"long":-2711207973931101427},"o_timestampmicros":{"long":-7899453214823776578}},"r_enum":"TWO","r_date":-1152967271,"r_timemillis":1213888390,"r_timemicros":-622860369017190955,"r_timestampmillis":4048183782542089702,"r_timestampmicros":7806719567342635018,"r_array":[{"r_boolean":true,"r_int":-1735020559,"r_long":-9116529715484546233,"r_float":0.20089656,"r_double":0.8767009068989433,"r_bytes":".7‰\u001A.\bý>´¦ÌW","r_string":"yqtww","r_enum":"TWO","o_boolean":{"boolean":true},"o_int":null,"o_long":null,"o_float":null,"o_double":{"double":0.9623550520145097},"o_bytes":{"bytes":""},"o_string":{"string":"cyupkee"},"o_enum":null,"o_date":null,"o_timemillis":null,"o_timemicros":null,"o_timestampmillis":{"long":-7579384317751531875},"o_timestampmicros":{"long":7841547756515337657}}]},"r_enum":"ZERO","r_array":[{"r_boolean":false,"r_int":630012274,"r_long":7316035681259405341,"r_float":0.57633156,"r_double":0.633409282525553,"r_bytes":"¬m","r_string":"pjypfacargoj","r_array":[],"o_boolean":{"boolean":true},"o_int":null,"o_long":null,"o_float":{"float":0.35781592},"o_double":{"double":0.4959614534610407},"o_bytes":null,"o_string":null,"o_enum":{"Level1_2_Enum2":"ONE"},"o_date":null,"o_timemillis":{"int":-783415537},"o_timemicros":{"long":-5853058991361485486},"o_timestampmillis":{"long":6196549136806307555},"o_timestampmicros":{"long":5427829411982634081}},{"r_boolean":false,"r_int":405913751,"r_long":-7720748461997955220,"r_float":0.3444376,"r_double":0.20138012370688518,"r_bytes":"\u0000ÆÊ@Åæ3Ž4íþ\u001E\u0001","r_string":"axtawklrmjggw","r_array":[{"r_boolean":false,"r_int":1593914574,"r_long":9172203800948847247,"r_float":0.6517797,"r_double":0.9186582567794966,"r_bytes":"±O&üÛ`më","r_string":"xmsv","r_enum":"ZERO","r_date":-1904854928,"r_timemillis":2049230710,"r_timemicros":-4046368917349797171,"r_timestampmillis":861205688737197714,"r_timestampmicros":6934896859639903880,"o_boolean":{"boolean":true},"o_int":null,"o_long":null,"o_float":null,"o_double":null,"o_bytes":null,"o_string":null,"o_enum":null,"o_date":null,"o_timemillis":{"int":1750212719},"o_timemicros":null,"o_timestampmillis":{"long":1414821235293882924},"o_timestampmicros":{"long":870718344981817218}},{"r_boolean":true,"r_int":-1398067560,"r_long":-439616461941850413,"r_float":0.4875576,"r_double":0.8252188616798241,"r_bytes":"ͪ¥óéüš{óËØ(\r’","r_string":"bvsbhwbxsqihl","r_enum":"ONE","r_date":-1594376183,"r_timemillis":1418398418,"r_timemicros":-4390100355490031936,"r_timestampmillis":-3298378869054110837,"r_timestampmicros":-5335668642957517334,"o_boolean":{"boolean":false},"o_int":null,"o_long":null,"o_float":{"float":0.013622999},"o_double":null,"o_bytes":null,"o_string":null,"o_enum":null,"o_date":null,"o_timemillis":null,"o_timemicros":{"long":-8671305702534844361},"o_timestampmillis":null,"o_timestampmicros":null},{"r_boolean":false,"r_int":2019821513,"r_long":6275929791093292495,"r_float":0.12147778,"r_double":0.5568572500459064,"r_bytes":"","r_string":"iv","r_enum":"TWO","r_date":143123378,"r_timemillis":-463522107,"r_timemicros":389566685280260491,"r_timestampmillis":-4716040032071966640,"r_timestampmicros":4423141764206620394,"o_boolean":{"boolean":true},"o_int":{"int":1270594197},"o_long":{"long":4161676446900719976},"o_float":{"float":0.047247887},"o_double":{"double":0.19494549638064063},"o_bytes":null,"o_string":{"string":"mpsuwg"},"o_enum":{"Level2_2_Enum2":"TWO"},"o_date":null,"o_timemillis":null,"o_timemicros":null,"o_timestampmillis":null,"o_timestampmicros":null}],"o_boolean":null,"o_int":{"int":1672714308},"o_long":null,"o_float":null,"o_double":{"double":0.1411924905766655},"o_bytes":{"bytes":"‡óeüÚã\"R\u000Fó"},"o_string":null,"o_enum":null,"o_date":null,"o_timemillis":{"int":-1969772920},"o_timemicros":null,"o_timestampmillis":null,"o_timestampmicros":{"long":-7708801170046155867}},{"r_boolean":true,"r_int":235137729,"r_long":-935428561688590824,"r_float":0.12715417,"r_double":0.056709193252935,"r_bytes":",\nOÜ","r_string":"mvxrvomm","r_array":[{"r_boolean":false,"r_int":-719825730,"r_long":-1352962090451934105,"r_float":0.8748014,"r_double":0.9734242206778257,"r_bytes":"\u0010B\u0019ŸN\r70","r_string":"hsjlmmirs","r_enum":"ONE","r_date":-1677735518,"r_timemillis":1841715152,"r_timemicros":7738906107611736885,"r_timestampmillis":617883911929672489,"r_timestampmicros":4803259331944202317,"o_boolean":{"boolean":true},"o_int":null,"o_long":null,"o_float":{"float":0.41269714},"o_double":null,"o_bytes":null,"o_string":{"string":"bhv"},"o_enum":null,"o_date":null,"o_timemillis":{"int":781429208},"o_timemicros":{"long":757908596789174587},"o_timestampmillis":null,"o_timestampmicros":{"long":-8663915482384722953}}],"o_boolean":null,"o_int":null,"o_long":null,"o_float":null,"o_double":null,"o_bytes":null,"o_string":{"string":"aalgvwyh"},"o_enum":null,"o_date":{"int":188375568},"o_timemillis":null,"o_timemicros":null,"o_timestampmillis":null,"o_timestampmicros":{"long":-1295289330660210286}},{"r_boolean":true,"r_int":1930516988,"r_long":4441704297143204213,"r_float":0.09042752,"r_double":0.26465123222121556,"r_bytes":"±Êæ:=","r_string":"lhrnlodbaounix","r_array":[],"o_boolean":null,"o_int":{"int":-1208113725},"o_long":null,"o_float":null,"o_double":null,"o_bytes":{"bytes":"Î"},"o_string":{"string":"outxxkjbonjvksstotfskrd"},"o_enum":{"Level1_2_Enum2":"TWO"},"o_date":null,"o_timemillis":{"int":1588013711},"o_timemicros":null,"o_timestampmillis":{"long":5461005543036017201},"o_timestampmicros":null}],"r_date":-2121239312,"r_timemillis":-1600489597,"r_timemicros":1056401824926460389,"r_timestampmillis":4741909859398377403,"r_timestampmicros":-5875346311629923721,"o_boolean":{"boolean":false},"o_int":{"int":5805626},"o_long":null,"o_float":{"float":0.14084089},"o_double":{"double":0.8868344928263974},"o_bytes":null,"o_string":null,"o_enum":{"Enum2":"TWO"},"o_date":{"int":-303449357},"o_timemillis":null,"o_timemicros":{"long":4256320893101879750},"o_timestampmillis":{"long":-7388014193657238111},"o_timestampmicros":{"long":2627437000516922645}} -{"r_boolean":true,"r_int":131335970,"r_long":3254747582971301301,"r_float":0.2811371,"r_double":0.6141265510832307,"r_bytes":"Ò³\u0015Ï¡","r_string":"","r_record":{"r_boolean":false,"r_int":1889248846,"r_long":4943066709870953147,"r_float":0.80261016,"r_double":0.21275271671746632,"r_bytes":"“o£","r_string":"qlieuoobsnpjkwd","r_record":{"r_boolean":false,"r_int":309157987,"r_long":6914002761486326217,"r_float":0.7840498,"r_double":0.4017933526131411,"r_bytes":"i³ciÂ+","r_string":"b","r_enum":"TWO","r_date":259933110,"r_timemillis":365304556,"r_timemicros":2658110384206060949,"r_timestampmillis":5320018020740383741,"r_timestampmicros":-2803915946697894093,"o_boolean":{"boolean":false},"o_int":{"int":-1397649630},"o_long":{"long":-775876094342511074},"o_float":{"float":0.6415671},"o_double":{"double":0.5440275417777602},"o_bytes":{"bytes":"f\u001DÙËäà\u001F-7ùÕ®"},"o_string":{"string":"dh"},"o_enum":null,"o_date":{"int":-397681883},"o_timemillis":{"int":160463773},"o_timemicros":{"long":5748456246034940560},"o_timestampmillis":null,"o_timestampmicros":null},"r_enum":"ZERO","r_date":926682821,"r_timemillis":1611686318,"r_timemicros":7374248027005038753,"r_timestampmillis":5156974844534154277,"r_timestampmicros":4419146243579116761,"r_array":[{"r_boolean":false,"r_int":975611942,"r_long":7509904924092530079,"r_float":0.71842694,"r_double":0.08056787103506691,"r_bytes":"\u001B¢vÝö\u001E \fNzÈHD&«ÐÕÊåÞ1íábãå•Æ ¦MDÌ5½µC‰5ô¡™íZ\u001E§¢\u0005h\u0011Q]¿ZU;ɦƒ\u0005bsìK_\u000EùÚW„\u001Fï»\u0017º½\u0007˜’7æ׫IŸ=e0½7F” ‚_9Ñ\u0019\u0011™©Á§è9Q­õN\u0013ŠÌÂôW»GËë\b•û¡ƒÑ·!e\u001C·\u0013ïw%ðÛ9­.¥dŒ\u0013ê0ƒ\nîö60D˜ëÛ\b\feѹ_EÈ}—…çbÅiù\\ðpp(ï6^9BËÙa›Ü\u0018\u0002\u001A‚OfO§oÐ\u0007QfˆÓa\u0000ž“\u0014Ц\u0001xù‡¨ÄsÏ#æ5›\u0003yKoÅÑ»q\u000FFTÞ¡àYoÙã¸+QXW\"f\b÷çk¹Íç©Âê\u0011\u001B(Ú¸f²ãp+Ï\u001D\u0000n'h”ö}ŽŸÌ‚½»eõ¤GJrhLz8\u000B{\nESL'\nK†Ði\u001EÆmmãmåä04#\n±ƒ«IŒ|%\u0016p˜F¡w¶b՚™g·Ø&;f­Ž3Ýٞ&ø‹\u0011\u001E7@ƒ-¿Î€ÆµþX/€Ã#\u001B@«éŸ°Í§CµUµç =jCg` ÉÒr“¬Ü•6«Ä\u0019ª\u0004îòû‚Ië\u001Aè­Os\nG‡÷U3lFf(\u0013>N-®©¯ÂÑ3F#¢à³TWëqPÇC´1×ê»Í\t•óò\u0005Œ\u0011\u001C­GDr‹l,*ò.\b@¨[\u0001\u0002ú[;FY©©¢%v·«(S¦­ý_‘do³;ú%¼¦0âO¨.T?\tÕÍ\\·xžë\u0011yÛ4C¿¨ì\u001A /ÔO¥½A\u000BE3\u000EÛÔ'ÃDg-O\u001C,LOŒPò+„†&#ýÞ¨\u000BìDê¨SG~¸ ‚§@©ý'‘Öä˜Õi,‚«4ƒy6­¢ :\fB¢‹€\rä“\b½aé\u0015bôª¥'\u001F§q˜ŽN4Ûë8ñ\u0004F›ÿ\u00179ó\u0011\u0011Ë“ ¥Å\n‘¹lGÇ4:kâAê\u001AE“—Ï\u001F|5ƘíÌP·lárðùA\"\"ýÚ\u0001¼¡ÏË¿3\\1‚œ—hûµ\të•é\u0014_ݼP'¼$¹\u0006ÊX֖­R‘ÝUµŒé\u0019E\u0016\u0019‡#ÁXkIŒ¹2ð\u001E\u001E\u001E˔˜µý\u0012½~LN'¸WŽu‡/Â> ¶\u001Ac´É‡Ë\u0012j\u0003@Uò\u0004Æ[Áš\u0005¢ƒ†÷dïQ¼Ü$ôb|\u001Dٚ\u001Aco€\u0005O5µúè\u0012&³ø\u0004m\tö>xÅ8CÀAS¿\u0004t\u0019\f22Äs.zÛl֎aæÇ$ßr\n7ÏÄiBù5˜å¢¤™w4A¤íl8¼Cñn¢\u001DáAª-«å!௸_c@Í«\t\u0018:æõ\u0013œÃ”í‡K«òºžPNkðló”SݱY6iõւ?WBé\u0000áŽF\u0007Sù\u001Fòßd)Ú ð²‹¥èùڍÁO?-1ð'\u0002ê) …õÍýéi¯iƒ\\', ‚–ÀnÆJNHbÒ9q»4+×èÖ|è\tÚ\r]M,GËIn¢ZœÃN÷º\u001077MØ®Ëzs ï°*¯Ÿ„\\‚®°å\u000EGÚû\"\u000Bi10ê×Ü¿\bkë­¦í¶Ý…½#jÞ\u0005™‚BÐÌg ?á ±€ 'Bž,“áðZ\rn\nnÒG+>p0N4ß7òQiÃäâ\u0001D¸fh/X©žä&`üÉ\få\rÛº2€ù󯟫¥î•ñ\u0000ãÚóo\u001A¸P.ÿ6Œg ß)\u000F“Qfn\u0013Ž™–¢Ó´EÒï©r]q6,'öÑÈö€3U\u0005َéF±\u000FšÂn\u001CEŽì\\\u0015\u001Ex*^h\u001A·Î–sIêo/Léb÷²uoCÂW\u0006ƒZ4K3Á bÇàô\u0004ÚE}[¹@)4\u000Ft\u0002$þòóñ§¤Ñ“çû\u0004\u0011∍o®¯Vìçðš\u0001\u0004\u0004kÏ\u0012}¬=´A¾¯K$Ô:S§ì\\ïîi‰\u0007®\u0017–?½Ã`™€Ê·\u0000\u001D‡\r\u0012žá\u001Eé»a8Ÿ\u0006oý¦\u0013ý8VddÁ\u001E0‚¯ßP]ôíXº¨ü\u0016ì¶Ó\u001B\u001624㟫±”_ò¹€··0Nˆ&å\u001C˜(¨{€Š¨D\u001B¬j¨iåL¡Þ2ûŽ\u0004;©KoÜ6@\u0007ƒG%\u001B\u0003ݱ9\u0003*­üß©$‰x3K‘QÚåõâ\u0010œq\u000Fü\u0002ch£×|¯Õ\u0000.£³-z-Ÿš´öD÷\u0003葩Ìã\u0013\u00067àÐ\u0018‘½\u001FGËóè¾\u001DâšÖÍ\u0003ùúɌ•Ãtʌ~’£!Ö©1°}ž0çA6\u0006~5\u001EB¦i4\u001AB‘x#\u0003oÖ7\nFÊýƞæ«AÞ\u000F\u001BÜ\u0005­Fԝ\u0007£`EN‚jxR\u0012ðÜ:%eÀ¸‡,|²\bØä4Îo¦k\u0012š¦l¼\u0018Êy¿\"©Û(±E„ÇÜWݏ\u0016;gф4]\u0002»—¥¿†jÂFy1\u001DŽ»6½í©\u0002`ÿ·ß¤¸ƒkïodŠŠ•”«Ox²Ùr2;ªìŽÑÂ\rSdzõ\u0002œþ²úpë\u0018\u0003ñ”_\\¯u÷H·\u0005sHð¶¡c*8ÒN\u0016ï9\\Ã\u0015fM|Yur>È#éRº\u0012˜^ûò?ͅw}ÙM&\få`\u001C?sg{\u0006\fÖobÊÖ¢¡ü\u001BK¢o\u000FæÒFUA^\u0011–yàä@%ñª]r•üa\u001B°L\f\rqíß³*\rOUÌM†³ÇÜÝ(fã\u001E}ÄÛº“\tF˜((u\u001CÑW \u0007|b¬qW%\u0000™Cµ‡Øq{ð¨Ç\u0006(T\"çrªøT\u0003àuóò;\u0013ƒõ†9\u001E«A1Q\u001B™ó\tû\u0012…ø»\u0006Løš,\u0019\b û\u0003RiÖ)Ü­– ƒé—\u0010;eQ\u000EªÐ@T\u000BСIüã\u0015\u0019Nt‰òËÅó\fÆSÆ©…iƒëæ\u001Fdi*”\u0011òþ\f.L\u0014^£ŽÌ-Ú^\u0000ìüºÑˆ\u0001\u0006®Ø\t5\u0017;²j¦Ý\u001CQTˆ\u0017\u001FՀÏ\\Š¾Å4%¶”m“ãÚY?Ï\u0018v:M©ž\r‘Ä\u0002Õ\u0018}©È%\u0004ît\u0005‚\u0001…³`$\f,J¨òLÍÝC\f×£\u0004;W\u000B»e•èR!\u0004Ù\u0006vNþ6»G¡èì,\u0011芒0¤ñʀw·`Æ\u0005Ž\r'Õ¢…ï´\u000B1€µ(ý¬Ù\u0013hÕ\u0016ÔøŒ[\u0019s\u000FØR“™®¿&éªî\u001ELHš‘tªˆê\u0006‘0\u0001;\u0001¬é\u001FüߏÚF°Z\u001Eåu†>\u0016¦n(\u0003[̈H—„»¶ËÚÇL³f`6ѕ_‰\b¦\u0015KˆÌp”î5d{²]$mà§Ò ­T\u001A×TÅÅ0èˆ*þçZaÂo|sÒ!dºû͇5ë”\u00044mϛ{ŽQëB(ê$è¸'\u001BŸ“XÉs}À#2!}\u001EUÊ3P`W`Žó$”eµ÷'ø„\t{Ï\u0011w+Ü\u0014÷'€CHÿ\r\u00052šÅ\r\t…?ëýXÞ\u0015EÌèÓL\b\"†\u0002’RºjÖ鏌ÏÒ>\u000EµŸÔ±0tŸ=èª8ô‚«„»C\u0002G?P¼¢Q¯³*×îýQG´¡ë·C)cd6?\u001E\u0001§Nj±Ï$\"ZÊ\u001EÒo1—q=Iµ\u0012§\u0000ô\u0013\u0004\f²\u001F#¶Ó#æ¯\u0011'[}|Ÿ¹p̓æ/u2z2XÅ~¯Ø©³\u0000\u0013;™Nãß\u0013\u0002¨W\u0014Év5ˆ £T~ñLaD˕ÚSµ0šÊڅêTá·P1ÍJ\u0007\"F‡ŽÀ½^eÖ£¯Ë\u0004q°JØ{P§]jxŽ>ɽó\u000EMIúË70‚T/`\u0003Ô<ü²ijÌ6ߤãè¿åäˎ\u001CÖ^Eª+q(ë|¼ä\u0006À|r#ÆHŒ\u000Bvf›E)}\u0005¾kÂÇMvgá\u00158†ß\u0006\nÈ{T\u0012⛢Ç\rŠ?A\u0019ï¢{·Š\u0016’°ß¯’S¯¡×Kœ\u001E¥žnÀVϗ—Vo'T˜\u0007¬ª\níšw3ëÏz•»\u000BËw”\u000F\rqAw·”\u000F\u001Có¹8¬[ük\n´°}å93›\u0019cß\u001A\b‡s£÷Y/!\u001EläVÚ¡B\u0007ƒÛÆóî\\ôh\u001FynØ\u001BšÆRzj@\u001970ʜ\\bæÞ\u000B\u0007ÇØIÁâ$\bhä\u0000¼vÅöhëf~©$\r\bRÕL\u0012\u0018ó’øþ\u0003/R(","r_string":"qsfdwvltdpqmw","r_array":[],"o_boolean":null,"o_int":null,"o_long":{"long":-482908909052268128},"o_float":null,"o_double":{"double":0.30173276123485226},"o_bytes":null,"o_string":null,"o_enum":{"Level1_2_Enum2":"ZERO"},"o_date":{"int":-1927174650},"o_timemillis":{"int":87156688},"o_timemicros":null,"o_timestampmillis":null,"o_timestampmicros":{"long":-5445770468138156148}}],"r_date":-697484468,"r_timemillis":-474638384,"r_timemicros":-4085590502429627021,"r_timestampmillis":4661711119796508001,"r_timestampmicros":-425461858467785066,"o_boolean":null,"o_int":null,"o_long":{"long":-7513502447700815891},"o_float":null,"o_double":{"double":0.9399988600413393},"o_bytes":null,"o_string":{"string":"evoe"},"o_enum":{"Enum2":"ONE"},"o_date":{"int":95103084},"o_timemillis":{"int":1470724289},"o_timemicros":null,"o_timestampmillis":null,"o_timestampmicros":null} -{"r_boolean":true,"r_int":-857768809,"r_long":4119638877924931321,"r_float":0.14723146,"r_double":0.9921828513796825,"r_bytes":"¯~\u00179֗\u0006ëçý™)","r_string":"tq","r_record":{"r_boolean":true,"r_int":2099803367,"r_long":8347832462506800598,"r_float":0.15447325,"r_double":0.11198926074349469,"r_bytes":"͐H","r_string":"bcchpyomxvsh","r_record":{"r_boolean":true,"r_int":-663849958,"r_long":-6041924802677418794,"r_float":0.21435612,"r_double":0.05262683005507085,"r_bytes":",BÊj>nÚ=QH\u0016","r_string":"sumfdjgdyiqpj","r_enum":"ONE","r_date":950554744,"r_timemillis":-874393165,"r_timemicros":2473528718745222888,"r_timestampmillis":4933748964894460554,"r_timestampmicros":-4643238939646928790,"o_boolean":null,"o_int":null,"o_long":{"long":-8721020353497344868},"o_float":{"float":0.38026643},"o_double":null,"o_bytes":{"bytes":"\u0007A\u0015î\u000B·©·\b\u0003:Wƒ\u001E¬"},"o_string":{"string":"fffuvqhioba"},"o_enum":{"Level2_1__1_Enum2":"TWO"},"o_date":null,"o_timemillis":{"int":-65924864},"o_timemicros":{"long":-4210901136408526540},"o_timestampmillis":{"long":3137143410513523470},"o_timestampmicros":null},"r_enum":"TWO","r_date":-836943155,"r_timemillis":1927705465,"r_timemicros":128523188298173675,"r_timestampmillis":-1951723991064333348,"r_timestampmicros":3542209536858775031,"r_array":[{"r_boolean":true,"r_int":-868101335,"r_long":-3492540696389207560,"r_float":0.52589613,"r_double":0.907070985447798,"r_bytes":"­|—æ\t³¥ä\u0002","r_string":"svpydljxixr","r_enum":"TWO","o_boolean":null,"o_int":null,"o_long":null,"o_float":null,"o_double":{"double":0.6469142840302544},"o_bytes":{"bytes":"/]áׁqבðZ²\r\u000BSì"},"o_string":{"string":"pwcjlfjofvnyxi"},"o_enum":{"Level2_1__2_Enum2":"TWO"},"o_date":null,"o_timemillis":{"int":-2036337100},"o_timemicros":{"long":6990845818610143538},"o_timestampmillis":{"long":1453324759004930651},"o_timestampmicros":{"long":4488429615576565299}},{"r_boolean":true,"r_int":-1679596227,"r_long":4260361270608307141,"r_float":0.33960825,"r_double":0.1604520465709146,"r_bytes":"út`@\rßÆÖÒ,Ú","r_string":"i","r_enum":"ONE","o_boolean":null,"o_int":{"int":400206896},"o_long":null,"o_float":{"float":0.08250809},"o_double":null,"o_bytes":null,"o_string":{"string":"p"},"o_enum":{"Level2_1__2_Enum2":"ONE"},"o_date":{"int":-1631306839},"o_timemillis":null,"o_timemicros":{"long":4663140132385656510},"o_timestampmillis":{"long":-5367070452904940023},"o_timestampmicros":{"long":2828505017025652612}},{"r_boolean":false,"r_int":1778156304,"r_long":6384715729386830590,"r_float":0.71208,"r_double":0.009835117725729425,"r_bytes":"\u001Dϐy­õëÈ|ù\n›\u001F","r_string":"jxtppgquhimkfbicnogtbfcgnmjfbnrcaluduiudvlwgbnykcwuvdkvpmwxdsrd","r_enum":"ZERO","o_boolean":{"boolean":false},"o_int":{"int":-221766000},"o_long":{"long":-3640095073236321408},"o_float":null,"o_double":null,"o_bytes":null,"o_string":{"string":""},"o_enum":{"Level2_1__2_Enum2":"ZERO"},"o_date":null,"o_timemillis":null,"o_timemicros":null,"o_timestampmillis":null,"o_timestampmicros":null}]},"r_enum":"TWO","r_array":[{"r_boolean":true,"r_int":-295791100,"r_long":-2557168234720756365,"r_float":0.9669109,"r_double":0.9046904066497357,"r_bytes":">0¢Ö~í","r_string":"nqqdgjmkpodobj","r_array":[{"r_boolean":false,"r_int":1256415023,"r_long":7289199841984854787,"r_float":0.4200617,"r_double":0.06040071276562642,"r_bytes":"{Ü\u0000·ì","r_string":"r","r_enum":"ZERO","r_date":-98106774,"r_timemillis":1642712376,"r_timemicros":-5018273981813171595,"r_timestampmillis":-2988579081384457126,"r_timestampmicros":3933551073699867662,"o_boolean":null,"o_int":{"int":-1000038608},"o_long":null,"o_float":null,"o_double":null,"o_bytes":{"bytes":"òªt\u001C®]u"},"o_string":{"string":"lotndicjssakeq"},"o_enum":null,"o_date":null,"o_timemillis":null,"o_timemicros":{"long":-2069983058319316721},"o_timestampmillis":{"long":-2540479306484540111},"o_timestampmicros":null},{"r_boolean":true,"r_int":997625725,"r_long":-4614084135336929411,"r_float":0.67566425,"r_double":0.2101006003179987,"r_bytes":"ŸÐÈ ^\u0002","r_string":"wnus","r_enum":"ZERO","r_date":946396023,"r_timemillis":9306881,"r_timemicros":3759602187439760147,"r_timestampmillis":7664769007110123826,"r_timestampmicros":4725500407993196007,"o_boolean":null,"o_int":{"int":-903835967},"o_long":{"long":-8861135229886234787},"o_float":null,"o_double":{"double":0.8059833963654702},"o_bytes":null,"o_string":{"string":"xphgnxyvpsg"},"o_enum":{"Level2_2_Enum2":"ZERO"},"o_date":{"int":-1250811480},"o_timemillis":{"int":493404547},"o_timemicros":null,"o_timestampmillis":{"long":-5876154435916868743},"o_timestampmicros":{"long":-5551677632207073555}}],"o_boolean":null,"o_int":null,"o_long":null,"o_float":{"float":0.994878},"o_double":{"double":0.3210317350618108},"o_bytes":null,"o_string":{"string":"inwoexkloy"},"o_enum":null,"o_date":null,"o_timemillis":{"int":1217157184},"o_timemicros":null,"o_timestampmillis":{"long":8426657668118631030},"o_timestampmicros":{"long":6815624056574526836}},{"r_boolean":true,"r_int":548278846,"r_long":-5813200204299896042,"r_float":0.31064808,"r_double":0.5218320932678707,"r_bytes":"","r_string":"fkyk","r_array":[{"r_boolean":false,"r_int":852895612,"r_long":1780464168022978588,"r_float":0.016163409,"r_double":0.3370805939221677,"r_bytes":"\u001D0ÆH»\u00108\u0007\u0012üãW¿","r_string":"gijl","r_enum":"ONE","r_date":-481029419,"r_timemillis":2022977546,"r_timemicros":7698509812455159831,"r_timestampmillis":-4394990833315233599,"r_timestampmicros":1584248931909530689,"o_boolean":{"boolean":true},"o_int":{"int":720659429},"o_long":null,"o_float":{"float":0.9117981},"o_double":{"double":0.25517823033329223},"o_bytes":null,"o_string":{"string":"ceywbqhuaijoems"},"o_enum":{"Level2_2_Enum2":"ZERO"},"o_date":{"int":-1998400844},"o_timemillis":{"int":1248342974},"o_timemicros":null,"o_timestampmillis":null,"o_timestampmicros":{"long":-2616920576506715461}}],"o_boolean":{"boolean":true},"o_int":{"int":1120404351},"o_long":null,"o_float":{"float":0.82436854},"o_double":null,"o_bytes":null,"o_string":null,"o_enum":{"Level1_2_Enum2":"ONE"},"o_date":{"int":767657338},"o_timemillis":{"int":2084142913},"o_timemicros":{"long":-8965229775146305794},"o_timestampmillis":null,"o_timestampmicros":null},{"r_boolean":false,"r_int":-1276152248,"r_long":-1885925739977257983,"r_float":0.7277817,"r_double":0.16755111947683343,"r_bytes":"وhoMC¸\nÀ\u0012¹®ä\u0012¬‰Š@peÞÏgÉÊC@Ú\u0011¯&(<\\¨G.\u001BûQ%·ëÞ\bÇ\fZ•Ä8JR°€ÊÙ+xJÑÙg¯¡¥‹ô©\u000E³ÆžùïÓݖ~\u000B\u0017®06ñe½\u000B \tLŸIÄgÄJƟÐ\u0006P~\u0007™žºp¦,°\u0007,Î%{º­P\u0013UÆ@Îڗq¬ÉÁ‘t¯à\u001Fb¥®O¾A›bv ôõ\u00152Å\u001C¢\u0013\u0018¶g\t#Ãåí/²ä\b›é€à£\u0015u\u0017Ko\u0002‚Ü'ÝFȯ‚ºÁGŽ²\u0016BZ°D","r_string":"xaygali","r_array":[],"o_boolean":null,"o_int":{"int":-44136762},"o_long":null,"o_float":{"float":0.3934176},"o_double":{"double":0.8849466136471043},"o_bytes":{"bytes":"W¨\u0014"},"o_string":{"string":"aywdrvsqk"},"o_enum":null,"o_date":{"int":-2036117189},"o_timemillis":{"int":-246261078},"o_timemicros":{"long":-6045875814277042548},"o_timestampmillis":null,"o_timestampmicros":null},{"r_boolean":false,"r_int":-1516998215,"r_long":-5455413286918582098,"r_float":0.92629576,"r_double":0.5684758962518406,"r_bytes":"Üz\u001D\føúi\u0014\u001AªÖô¾","r_string":"keyvtvyd","r_array":[{"r_boolean":false,"r_int":-484018038,"r_long":2456980459867641140,"r_float":0.40937197,"r_double":0.421083593855501,"r_bytes":"U¸ÓÄY·®+.(vÓÞJñ5ßx\u0003»Š\u0017ù¯¿¢¥\u000F\u0017|Fïk¢\u0015TWuTø]H·\b&bWÍ⢩f\u001C¨¾»–³\u00111ºdÌc\u0007÷!\u0007è¢\u0014\u000E8<©\u0012õR}5\u00113 íƒ\u0013\u0007F\u0005Dµ\u000E\u0006Ä|\u0005y€`}²m\u000B:§\u001A!;\u0016^æI\u0015¥n\u0011¹æ;Kᬒ•h'\u0010ƒfç»k %=Ó\u0007sÐ*»E\u001D\u0001-d>׺¨hþ°RóoòÏòØC©7ãâ.çÁ©gh(ö•uFª©I·\b—VÖ,è‘KÛ\u0002\u0002wÞ^Þ®k\u000BKP˜\u0015^A}}\u0012q«","r_string":"rgcaxgv","r_enum":"ONE","r_date":438989594,"r_timemillis":-24837035,"r_timemicros":-6121966264991395982,"r_timestampmillis":-382578331456308776,"r_timestampmicros":-4562162530970125564,"o_boolean":null,"o_int":{"int":2068140158},"o_long":{"long":7647154390257538185},"o_float":{"float":0.561482},"o_double":{"double":0.7218939896840935},"o_bytes":null,"o_string":null,"o_enum":{"Level2_2_Enum2":"ONE"},"o_date":{"int":376376187},"o_timemillis":{"int":63234761},"o_timemicros":{"long":-5255629786409448354},"o_timestampmillis":{"long":243342108479749814},"o_timestampmicros":null},{"r_boolean":true,"r_int":-305458027,"r_long":-693676544036478274,"r_float":0.6965547,"r_double":0.5626950922637132,"r_bytes":"ƒ‡ºèu","r_string":"","r_enum":"TWO","r_date":-1657021496,"r_timemillis":-785331474,"r_timemicros":2669186450462417718,"r_timestampmillis":4373426288910890564,"r_timestampmicros":8581017691395202799,"o_boolean":null,"o_int":{"int":664204629},"o_long":{"long":-8223914067946720294},"o_float":{"float":0.5182606},"o_double":null,"o_bytes":null,"o_string":{"string":"fwijd"},"o_enum":null,"o_date":null,"o_timemillis":null,"o_timemicros":{"long":-1195055836382462755},"o_timestampmillis":null,"o_timestampmicros":{"long":-5473936812227807892}},{"r_boolean":true,"r_int":-448166354,"r_long":-1103596136741213913,"r_float":0.05654651,"r_double":0.7124239877023167,"r_bytes":"pQ€\u0012u\u0017¯","r_string":"yncoyshwllgqhw","r_enum":"ONE","r_date":-197932233,"r_timemillis":-1782352924,"r_timemicros":611278028742126083,"r_timestampmillis":-4555392358725895631,"r_timestampmicros":-7256203627802973722,"o_boolean":{"boolean":false},"o_int":null,"o_long":null,"o_float":{"float":0.47707647},"o_double":{"double":0.7968925321368792},"o_bytes":null,"o_string":null,"o_enum":{"Level2_2_Enum2":"ZERO"},"o_date":{"int":1889568276},"o_timemillis":{"int":-1353568325},"o_timemicros":null,"o_timestampmillis":null,"o_timestampmicros":null}],"o_boolean":{"boolean":false},"o_int":null,"o_long":null,"o_float":null,"o_double":null,"o_bytes":{"bytes":""},"o_string":null,"o_enum":null,"o_date":{"int":1119544219},"o_timemillis":null,"o_timemicros":null,"o_timestampmillis":{"long":-3285564267524331282},"o_timestampmicros":{"long":-7000568515418459500}}],"r_date":1443707123,"r_timemillis":-1835919666,"r_timemicros":6837394265759480743,"r_timestampmillis":-37366839128258001,"r_timestampmicros":-1673286069676958515,"o_boolean":{"boolean":false},"o_int":null,"o_long":{"long":-1461422034738572382},"o_float":{"float":0.79543597},"o_double":null,"o_bytes":{"bytes":"œSÊã×àN73·j"},"o_string":{"string":"eauenmryyciu"},"o_enum":null,"o_date":{"int":1091716049},"o_timemillis":{"int":-180290451},"o_timemicros":{"long":5909781077612360263},"o_timestampmillis":null,"o_timestampmicros":null} -{"r_boolean":true,"r_int":358857391,"r_long":-1653399401366239223,"r_float":0.90416735,"r_double":0.5384155402189591,"r_bytes":"","r_string":"fsnncp","r_record":{"r_boolean":false,"r_int":1245664911,"r_long":-3146120632733621850,"r_float":0.285605,"r_double":0.32957255458832835,"r_bytes":"\u0003\u001BÂk²\u000FÁd~ع®\u0012","r_string":"bkreid","r_record":{"r_boolean":true,"r_int":-132715404,"r_long":-3858784636646695078,"r_float":0.5928995,"r_double":0.35442777606474307,"r_bytes":"","r_string":"wfclwnivfjwam","r_enum":"ZERO","r_date":1273765670,"r_timemillis":-59052137,"r_timemicros":-8654625906008870250,"r_timestampmillis":3709641078461207878,"r_timestampmicros":-2087302980863182617,"o_boolean":null,"o_int":null,"o_long":{"long":8845658092663350587},"o_float":{"float":0.5953087},"o_double":{"double":0.23662763326149538},"o_bytes":null,"o_string":null,"o_enum":{"Level2_1__1_Enum2":"TWO"},"o_date":null,"o_timemillis":{"int":-361756075},"o_timemicros":null,"o_timestampmillis":{"long":5151480210276918099},"o_timestampmicros":null},"r_enum":"TWO","r_date":808863288,"r_timemillis":1839455482,"r_timemicros":6033459624959469026,"r_timestampmillis":5173265234980854862,"r_timestampmicros":-4046642347971873407,"r_array":[{"r_boolean":true,"r_int":1435876240,"r_long":7951491679456228836,"r_float":0.082270145,"r_double":0.8222360186259293,"r_bytes":"ÙõŸVßÕöw]§Iý²ØârDKx\u001F£·q$ýQ¾\bÇmk~\u00115‹Wî~—Mä¢/ÕçKo\u000F\u001Bð\b‹Ao\u001CF¢‰ÞÜWÕG(z¬MB#ü¬½TÄ¥û\u000E§\bŸnƒK¡Ÿðp\f\u0011žmI÷ÕÎ7°£\fã\u0013EÈòVwëå%ðH%™„ZàÊ\u001D·¨ëöKúÞ7ÏôÂ튤h“\u0001ö\u0006é^ûUÖv5¾µ\u0001š\u0005PÎ{ÞñþÌ\u0018V\u001E#\u000F\nù\u001Fæ.Lü‹p…&Pl\tfÁ¦‘ä¤\u0006rœÃŸ9ÞUø|éœU¿\"þ±Ç¥\u0013yŒƒ¥£$št§\"!HªÏ\u0010ô","r_string":"tvmipdwypsvsm","r_enum":"TWO","o_boolean":{"boolean":true},"o_int":{"int":389931451},"o_long":null,"o_float":null,"o_double":{"double":0.09573261489449025},"o_bytes":{"bytes":"qL"},"o_string":{"string":"qocjjniwpfa"},"o_enum":{"Level2_1__2_Enum2":"ZERO"},"o_date":{"int":259285406},"o_timemillis":{"int":1002003079},"o_timemicros":{"long":2887072068566809048},"o_timestampmillis":{"long":-6942826507383628909},"o_timestampmicros":{"long":-2084985031403265194}},{"r_boolean":false,"r_int":-1013228760,"r_long":2363440503761899325,"r_float":0.7451818,"r_double":0.793844135377891,"r_bytes":"9:Þê","r_string":"gigd","r_enum":"ONE","o_boolean":{"boolean":false},"o_int":null,"o_long":null,"o_float":{"float":0.05148685},"o_double":null,"o_bytes":{"bytes":"ìÎÜøe¢"},"o_string":{"string":"recy"},"o_enum":{"Level2_1__2_Enum2":"ONE"},"o_date":{"int":-1582776221},"o_timemillis":{"int":-425608956},"o_timemicros":null,"o_timestampmillis":{"long":4966135835660132744},"o_timestampmicros":{"long":-3844303416655182883}}]},"r_enum":"TWO","r_array":[{"r_boolean":true,"r_int":-233499864,"r_long":-984015348691290573,"r_float":0.25968665,"r_double":0.2820043253810939,"r_bytes":"Ôþ™","r_string":"hpxpsf","r_array":[{"r_boolean":false,"r_int":-1934176750,"r_long":-2009509045447062391,"r_float":0.20283788,"r_double":0.9525861021278719,"r_bytes":"n%‹\u0006E'ˆ¿","r_string":"vmgwhbrpblm","r_enum":"TWO","r_date":-764232805,"r_timemillis":1055391573,"r_timemicros":7040987391212741819,"r_timestampmillis":149135107056825276,"r_timestampmicros":-8650099686435550460,"o_boolean":null,"o_int":null,"o_long":{"long":8565128918471021656},"o_float":{"float":0.6761506},"o_double":null,"o_bytes":{"bytes":"å#\nª\u0003"},"o_string":null,"o_enum":null,"o_date":{"int":288595547},"o_timemillis":null,"o_timemicros":{"long":-8824800351426623446},"o_timestampmillis":{"long":-2366985711383292564},"o_timestampmicros":{"long":1518666551993000354}}],"o_boolean":{"boolean":false},"o_int":{"int":-1667290164},"o_long":{"long":5999699116523570438},"o_float":{"float":0.11497432},"o_double":null,"o_bytes":null,"o_string":{"string":"hrowvcbtmvtlfj"},"o_enum":null,"o_date":{"int":1649648664},"o_timemillis":null,"o_timemicros":null,"o_timestampmillis":{"long":-7236691805901918067},"o_timestampmicros":{"long":123379819534951731}},{"r_boolean":true,"r_int":-299134438,"r_long":-5767673362761349631,"r_float":0.1072405,"r_double":0.9158487130538709,"r_bytes":"3>\u001Dé‚ö:}k","r_string":"jfuxkgblq","r_array":[{"r_boolean":false,"r_int":1616435778,"r_long":-3017433296900378476,"r_float":2.6011467E-4,"r_double":0.3942482228919473,"r_bytes":"","r_string":"j","r_enum":"TWO","r_date":858203255,"r_timemillis":1379366154,"r_timemicros":5917580383591408714,"r_timestampmillis":-3933469304202565846,"r_timestampmicros":-2247771529765675065,"o_boolean":null,"o_int":null,"o_long":null,"o_float":{"float":0.73079896},"o_double":{"double":0.29095136214733597},"o_bytes":null,"o_string":{"string":"arjxygrfqps"},"o_enum":null,"o_date":{"int":-1552740149},"o_timemillis":null,"o_timemicros":{"long":-159049527753208517},"o_timestampmillis":null,"o_timestampmicros":null}],"o_boolean":{"boolean":true},"o_int":{"int":-1272236772},"o_long":{"long":-3404024525757924452},"o_float":{"float":0.98983806},"o_double":{"double":0.713505285917117},"o_bytes":null,"o_string":null,"o_enum":{"Level1_2_Enum2":"ONE"},"o_date":null,"o_timemillis":null,"o_timemicros":null,"o_timestampmillis":null,"o_timestampmicros":{"long":7964199146778358814}}],"r_date":1505511814,"r_timemillis":1914656626,"r_timemicros":3464387548606443415,"r_timestampmillis":-4391501356504782528,"r_timestampmicros":4837423845545819548,"o_boolean":null,"o_int":{"int":-1829827212},"o_long":null,"o_float":{"float":0.2755249},"o_double":null,"o_bytes":{"bytes":"%d‚Hs š"},"o_string":{"string":"e"},"o_enum":{"Enum2":"ZERO"},"o_date":null,"o_timemillis":null,"o_timemicros":{"long":-6238590699295560326},"o_timestampmillis":null,"o_timestampmicros":{"long":1720725345484381790}} -{"r_boolean":true,"r_int":-410736774,"r_long":-7871419620712433632,"r_float":0.20535111,"r_double":0.7830808316583928,"r_bytes":"G5\t»â¯\\nô¦Á›","r_string":"","r_record":{"r_boolean":false,"r_int":952464047,"r_long":-7132079458082755321,"r_float":0.18115383,"r_double":0.5194540973882383,"r_bytes":"W","r_string":"tcuirvikxgbnj","r_record":{"r_boolean":true,"r_int":-818270056,"r_long":-2724919699917344958,"r_float":0.6017507,"r_double":0.37587463117537623,"r_bytes":"-Ÿ\bA­\u001A\u000F½]«'r","r_string":"bpt","r_enum":"ONE","r_date":782925972,"r_timemillis":-1715165117,"r_timemicros":1347774330190058014,"r_timestampmillis":4323092046708096692,"r_timestampmicros":-2229518112063602166,"o_boolean":{"boolean":true},"o_int":{"int":-1879614145},"o_long":null,"o_float":{"float":0.97014034},"o_double":null,"o_bytes":null,"o_string":{"string":"sgn"},"o_enum":{"Level2_1__1_Enum2":"ZERO"},"o_date":{"int":123137295},"o_timemillis":null,"o_timemicros":null,"o_timestampmillis":{"long":8562879877051050876},"o_timestampmicros":null},"r_enum":"TWO","r_date":969049580,"r_timemillis":-763756997,"r_timemicros":3652861093055908924,"r_timestampmillis":7510706441418390129,"r_timestampmicros":-2383796229732768537,"r_array":[{"r_boolean":true,"r_int":-1528380096,"r_long":81575027233744028,"r_float":0.093615174,"r_double":0.8782674697598065,"r_bytes":"–(C‡^SR´Ñ‚$D","r_string":"tuq","r_enum":"ZERO","o_boolean":{"boolean":true},"o_int":{"int":-1996681127},"o_long":{"long":-4756014969947372656},"o_float":{"float":0.92263645},"o_double":{"double":0.6989479406002945},"o_bytes":null,"o_string":{"string":""},"o_enum":{"Level2_1__2_Enum2":"ZERO"},"o_date":{"int":-1496537189},"o_timemillis":null,"o_timemicros":null,"o_timestampmillis":null,"o_timestampmicros":{"long":768356397350199482}},{"r_boolean":false,"r_int":-673202669,"r_long":7223021977987182684,"r_float":0.2060808,"r_double":0.760042294829093,"r_bytes":"O7 ÓI","r_string":"nr","r_enum":"ONE","o_boolean":{"boolean":true},"o_int":{"int":1167897459},"o_long":{"long":-9110632256952963732},"o_float":{"float":0.6687141},"o_double":null,"o_bytes":{"bytes":"Wôà/̔7™ˆ"},"o_string":{"string":"byvqdmitnefon"},"o_enum":{"Level2_1__2_Enum2":"ONE"},"o_date":null,"o_timemillis":null,"o_timemicros":null,"o_timestampmillis":null,"o_timestampmicros":{"long":-3921530550750908470}},{"r_boolean":true,"r_int":1025790903,"r_long":-4392170592298698023,"r_float":0.018728554,"r_double":0.19251493543130305,"r_bytes":"+%ä\u0004\\’¡—T","r_string":"","r_enum":"ONE","o_boolean":{"boolean":false},"o_int":null,"o_long":{"long":5012659984486624776},"o_float":{"float":0.35670882},"o_double":null,"o_bytes":null,"o_string":{"string":"fwyvjtgeevpepin"},"o_enum":null,"o_date":null,"o_timemillis":null,"o_timemicros":null,"o_timestampmillis":{"long":-4753648801602274541},"o_timestampmicros":null},{"r_boolean":false,"r_int":1253087979,"r_long":8733930744406756396,"r_float":0.4966669,"r_double":0.24212518558333895,"r_bytes":"°•","r_string":"ypncqrfwtetupxq","r_enum":"ONE","o_boolean":{"boolean":false},"o_int":null,"o_long":null,"o_float":null,"o_double":{"double":0.40257586105931087},"o_bytes":null,"o_string":null,"o_enum":{"Level2_1__2_Enum2":"ONE"},"o_date":{"int":2090443723},"o_timemillis":{"int":-24494049},"o_timemicros":null,"o_timestampmillis":{"long":-871858622842489142},"o_timestampmicros":null}]},"r_enum":"TWO","r_array":[{"r_boolean":false,"r_int":138783198,"r_long":2446383507402476522,"r_float":0.14740825,"r_double":0.19043119034969624,"r_bytes":"ÛN/eÿØÛ\t","r_string":"ddreudtimjuggdm","r_array":[{"r_boolean":true,"r_int":1207726146,"r_long":6151585302624861422,"r_float":0.19707865,"r_double":0.22464116691269798,"r_bytes":"õ\fj®ì·Ì","r_string":"xfakc","r_enum":"ZERO","r_date":225765185,"r_timemillis":-1494912319,"r_timemicros":2111697412783691244,"r_timestampmillis":-2751222166013467860,"r_timestampmicros":8518404395863025765,"o_boolean":{"boolean":false},"o_int":{"int":-1327571129},"o_long":{"long":-6274736317143602043},"o_float":null,"o_double":{"double":0.21128968049126773},"o_bytes":null,"o_string":{"string":"ndfhksipxmhpooccppvwrfynqtfguscaudwwjwotxbpgmjykiuydpftlonfpivmqsduvrtjdowyfkvstpfedpauwymjppyfofaxryhdletbconefyiabtkydbsulbxxhnhlennvefstvwkqpecbkrfsnljfupseeweqevlobmtmtixtxvoquhkepltsqyhotetfsqfjjfa"},"o_enum":{"Level2_2_Enum2":"ZERO"},"o_date":{"int":557438237},"o_timemillis":null,"o_timemicros":{"long":5228638177680150861},"o_timestampmillis":null,"o_timestampmicros":null},{"r_boolean":true,"r_int":-1337467496,"r_long":21490588871578852,"r_float":0.52415377,"r_double":0.9403095776887371,"r_bytes":"fjðF¸Î­w¹ß1Fh˜åŸ8åT”ô¤N¡ßᒼò²ÐÃÿ± +j“Õ»þÝþÃ\u0014yÕdÓ\u001A\u001C\u0002;=","r_string":"of","r_enum":"ONE","r_date":-760070739,"r_timemillis":481275247,"r_timemicros":4411055363922024784,"r_timestampmillis":4065419888988967603,"r_timestampmicros":-7825863542335607012,"o_boolean":{"boolean":true},"o_int":{"int":-1113018873},"o_long":{"long":-8348829032679866890},"o_float":{"float":0.29416704},"o_double":null,"o_bytes":{"bytes":"£,\u0003Tm¶{¹E"},"o_string":{"string":"ktmfbawd"},"o_enum":{"Level2_2_Enum2":"ZERO"},"o_date":null,"o_timemillis":{"int":-1241559103},"o_timemicros":{"long":2388332037424747749},"o_timestampmillis":null,"o_timestampmicros":null},{"r_boolean":true,"r_int":-198166170,"r_long":7885126966910631364,"r_float":0.694746,"r_double":0.8271346847789709,"r_bytes":"7UQÆÄ","r_string":"","r_enum":"TWO","r_date":-306037594,"r_timemillis":1321418164,"r_timemicros":2003966902601309325,"r_timestampmillis":4521966518155683488,"r_timestampmicros":5947673163466985290,"o_boolean":{"boolean":true},"o_int":null,"o_long":null,"o_float":{"float":0.78015137},"o_double":null,"o_bytes":null,"o_string":null,"o_enum":{"Level2_2_Enum2":"ONE"},"o_date":null,"o_timemillis":null,"o_timemicros":null,"o_timestampmillis":null,"o_timestampmicros":null}],"o_boolean":null,"o_int":null,"o_long":{"long":-540508741816400842},"o_float":null,"o_double":null,"o_bytes":null,"o_string":{"string":"x"},"o_enum":null,"o_date":{"int":92921824},"o_timemillis":null,"o_timemicros":{"long":-8143980388068650789},"o_timestampmillis":{"long":-5617163413692155080},"o_timestampmicros":null},{"r_boolean":false,"r_int":554622348,"r_long":-7813796978299230616,"r_float":0.3168699,"r_double":0.09181518823370338,"r_bytes":"","r_string":"mxp","r_array":[{"r_boolean":true,"r_int":84826269,"r_long":-1082510939955869684,"r_float":0.06975478,"r_double":0.6119506779934989,"r_bytes":"››À","r_string":"g","r_enum":"ZERO","r_date":-135992919,"r_timemillis":-1540577019,"r_timemicros":-2353281418894096754,"r_timestampmillis":2252395011376778175,"r_timestampmicros":2803615630811433232,"o_boolean":{"boolean":false},"o_int":{"int":-1215778059},"o_long":null,"o_float":{"float":0.12716979},"o_double":{"double":0.5538465131835538},"o_bytes":null,"o_string":null,"o_enum":null,"o_date":null,"o_timemillis":null,"o_timemicros":null,"o_timestampmillis":{"long":7640629869173873790},"o_timestampmicros":null}],"o_boolean":null,"o_int":{"int":-1450951463},"o_long":null,"o_float":{"float":0.4149419},"o_double":null,"o_bytes":{"bytes":"Üiƒ5矒ü*Ü"},"o_string":null,"o_enum":null,"o_date":{"int":-906803733},"o_timemillis":null,"o_timemicros":null,"o_timestampmillis":null,"o_timestampmicros":null},{"r_boolean":true,"r_int":-1644984690,"r_long":-3830348628436468291,"r_float":0.10512543,"r_double":0.424001508798056,"r_bytes":"|û=WŠ=","r_string":"qxj","r_array":[{"r_boolean":false,"r_int":-1235415375,"r_long":-8170932096019812622,"r_float":0.32593477,"r_double":0.8907436447631956,"r_bytes":"³j[é¥(","r_string":"tqwxwhmlnd","r_enum":"TWO","r_date":-327857125,"r_timemillis":-214821423,"r_timemicros":-2200899683513625509,"r_timestampmillis":6373352634680883709,"r_timestampmicros":7890802944450485323,"o_boolean":null,"o_int":null,"o_long":null,"o_float":null,"o_double":{"double":0.8878822328442539},"o_bytes":{"bytes":"§…ùï?etÁ\u000B\f„ù"},"o_string":null,"o_enum":{"Level2_2_Enum2":"ONE"},"o_date":null,"o_timemillis":{"int":-622190919},"o_timemicros":null,"o_timestampmillis":{"long":-3982033659027121210},"o_timestampmicros":{"long":-473210610642821129}}],"o_boolean":null,"o_int":null,"o_long":{"long":-1674440308583493274},"o_float":null,"o_double":null,"o_bytes":{"bytes":"6û\tO¢)¨\bå"},"o_string":{"string":"aqafsbmatea"},"o_enum":null,"o_date":{"int":70592479},"o_timemillis":null,"o_timemicros":{"long":-2816764732454903260},"o_timestampmillis":null,"o_timestampmicros":{"long":3479804744543983791}}],"r_date":2083065376,"r_timemillis":-472607821,"r_timemicros":1116245535107951955,"r_timestampmillis":-3524483351820514921,"r_timestampmicros":525615308095085491,"o_boolean":{"boolean":false},"o_int":null,"o_long":{"long":853921788186964719},"o_float":{"float":0.12856936},"o_double":null,"o_bytes":{"bytes":"\u000FMñ;øG,"},"o_string":null,"o_enum":{"Enum2":"ONE"},"o_date":{"int":-129394616},"o_timemillis":null,"o_timemicros":{"long":5556674704388114516},"o_timestampmillis":{"long":5081901576847734995},"o_timestampmicros":{"long":1951867627254308095}} -{"r_boolean":true,"r_int":-1210058687,"r_long":-8254986253294669491,"r_float":0.9699597,"r_double":0.8322032083081884,"r_bytes":"uû'%ôC_\b[íaÈ\u0011","r_string":"isyokm","r_record":{"r_boolean":false,"r_int":-841334571,"r_long":-6712398295503911574,"r_float":0.71418643,"r_double":0.4239724028375288,"r_bytes":"Rí&¹&\u000Eº\b.?S","r_string":"jbtypideuk","r_record":{"r_boolean":false,"r_int":-1918646193,"r_long":-179963022538247303,"r_float":0.8166798,"r_double":0.5321017104262714,"r_bytes":"t","r_string":"","r_enum":"ZERO","r_date":-1625657481,"r_timemillis":-818201611,"r_timemicros":-3525481448251614110,"r_timestampmillis":-8415057034720402199,"r_timestampmicros":3960135439242193726,"o_boolean":null,"o_int":{"int":1794535974},"o_long":null,"o_float":{"float":0.24223197},"o_double":{"double":0.8103269955464351},"o_bytes":{"bytes":"Þ\u0018Yu"},"o_string":null,"o_enum":{"Level2_1__1_Enum2":"TWO"},"o_date":null,"o_timemillis":{"int":-1531326210},"o_timemicros":null,"o_timestampmillis":{"long":7296013062695395291},"o_timestampmicros":{"long":785093081765609154}},"r_enum":"ZERO","r_date":-310343260,"r_timemillis":-1311476375,"r_timemicros":-2846012527818727908,"r_timestampmillis":-4668629049189273776,"r_timestampmicros":7315941654373325564,"r_array":[{"r_boolean":true,"r_int":133562953,"r_long":2612395843622617524,"r_float":0.3629526,"r_double":0.631496896410039,"r_bytes":"xý\u0012«œ©\f‹»CÀ","r_string":"ccjni","r_enum":"ZERO","o_boolean":null,"o_int":null,"o_long":{"long":-3812310015536779683},"o_float":null,"o_double":{"double":0.1279009229799768},"o_bytes":null,"o_string":null,"o_enum":{"Level2_1__2_Enum2":"TWO"},"o_date":{"int":-223424258},"o_timemillis":null,"o_timemicros":{"long":-183100231009833258},"o_timestampmillis":{"long":2018110308504575991},"o_timestampmicros":null}]},"r_enum":"TWO","r_array":[{"r_boolean":false,"r_int":1826900398,"r_long":-5712904848863627139,"r_float":0.99141085,"r_double":0.18747112814209144,"r_bytes":"Ó/$g­³Ûîæ\b»ZsMäš\u0017­!ú\u0018^\u0001Yœ…4\u001FW›\bÐ*4µÜ¦®\u000Eí\u0018!õö\u0019ñ§8Û\\cÔ","r_string":"prpohwkaaes","r_array":[{"r_boolean":false,"r_int":-2018260077,"r_long":3499925427654322697,"r_float":0.91573805,"r_double":0.10493580277200598,"r_bytes":"ÚÍm…Þÿ”v¨Õô\u0004Mú","r_string":"lkpisyhli","r_enum":"TWO","r_date":28899808,"r_timemillis":-1908762980,"r_timemicros":-7283196967282389598,"r_timestampmillis":6911720836903779614,"r_timestampmicros":9123562020251514743,"o_boolean":null,"o_int":null,"o_long":null,"o_float":{"float":0.7120864},"o_double":{"double":0.1390506094816042},"o_bytes":null,"o_string":{"string":"rddj"},"o_enum":null,"o_date":null,"o_timemillis":null,"o_timemicros":{"long":8403454780148781460},"o_timestampmillis":{"long":-886885361600710094},"o_timestampmicros":{"long":-371132506542880004}},{"r_boolean":false,"r_int":1504563458,"r_long":7573283703441938733,"r_float":0.8197369,"r_double":0.7226089140497688,"r_bytes":"ÿˆ#-%Ñ(L:","r_string":"xcirct","r_enum":"ZERO","r_date":1226330365,"r_timemillis":1756568613,"r_timemicros":-1032447581983128754,"r_timestampmillis":5797388546086967000,"r_timestampmicros":671568141798589123,"o_boolean":{"boolean":false},"o_int":{"int":-906303468},"o_long":null,"o_float":null,"o_double":null,"o_bytes":{"bytes":"Ô\u001A5.¹ j¬¦x"},"o_string":{"string":"uintsmkbvsndvgfhriuatrgiqncnixdnmmwlwaxwhapwlcjprwfccgpullaqjeivuyllpvwicypeeiyogclwnyby"},"o_enum":null,"o_date":null,"o_timemillis":{"int":-1612624562},"o_timemicros":{"long":3718381901969460469},"o_timestampmillis":{"long":-7681148368544645996},"o_timestampmicros":{"long":970367034993326176}},{"r_boolean":false,"r_int":1198999480,"r_long":7615646507256216759,"r_float":0.66923374,"r_double":0.07719316588612724,"r_bytes":"S9‘","r_string":"qsdghcbhphr","r_enum":"ZERO","r_date":-1349740730,"r_timemillis":1171697644,"r_timemicros":4710230224918469414,"r_timestampmillis":-3774173930834035611,"r_timestampmicros":39324401556342833,"o_boolean":{"boolean":false},"o_int":{"int":-747973284},"o_long":{"long":9186614470894973943},"o_float":null,"o_double":{"double":0.6776036368996178},"o_bytes":{"bytes":"C"},"o_string":null,"o_enum":{"Level2_2_Enum2":"TWO"},"o_date":null,"o_timemillis":{"int":-1256516339},"o_timemicros":{"long":8872346168783557562},"o_timestampmillis":null,"o_timestampmicros":{"long":8632004502699796771}}],"o_boolean":{"boolean":false},"o_int":{"int":1178337351},"o_long":{"long":-1025579273095391381},"o_float":null,"o_double":null,"o_bytes":null,"o_string":null,"o_enum":{"Level1_2_Enum2":"ONE"},"o_date":{"int":1305715653},"o_timemillis":null,"o_timemicros":null,"o_timestampmillis":null,"o_timestampmicros":null},{"r_boolean":false,"r_int":-1922075154,"r_long":2368797608190860303,"r_float":0.31783777,"r_double":0.6886727585605413,"r_bytes":"\u0002l\u0004\u0016²","r_string":"bpic","r_array":[],"o_boolean":null,"o_int":{"int":2057008033},"o_long":{"long":523650078090321287},"o_float":{"float":0.6639449},"o_double":null,"o_bytes":{"bytes":"Ïï\u0015\u001Eº&\\K~O¢…"},"o_string":{"string":"ymmhe"},"o_enum":null,"o_date":null,"o_timemillis":null,"o_timemicros":{"long":4688217930750934474},"o_timestampmillis":null,"o_timestampmicros":null}],"r_date":1225455651,"r_timemillis":1769229434,"r_timemicros":-764615552912198061,"r_timestampmillis":8385686445847119259,"r_timestampmicros":1138676844561087859,"o_boolean":null,"o_int":null,"o_long":null,"o_float":{"float":0.31115907},"o_double":{"double":0.7670699491030023},"o_bytes":null,"o_string":null,"o_enum":{"Enum2":"TWO"},"o_date":{"int":-1771085634},"o_timemillis":{"int":-1350084137},"o_timemicros":{"long":5055507426713675303},"o_timestampmillis":{"long":5868019646360774917},"o_timestampmicros":null} -{"r_boolean":false,"r_int":-86931488,"r_long":7400911796127977312,"r_float":0.8900094,"r_double":0.6565519393090101,"r_bytes":"","r_string":"dcygcvdid","r_record":{"r_boolean":false,"r_int":1438425037,"r_long":-7163820992025710840,"r_float":0.092924535,"r_double":0.8721281690170934,"r_bytes":"ñ *øÉ\u0019ú¬\u0012K´!7ö","r_string":"dplqv","r_record":{"r_boolean":true,"r_int":1030424725,"r_long":-1041050065146010610,"r_float":0.16334695,"r_double":0.4165578247352725,"r_bytes":"","r_string":"owauaep","r_enum":"ZERO","r_date":-1617854957,"r_timemillis":-697190842,"r_timemicros":-8151423911019135615,"r_timestampmillis":-4577992586320936678,"r_timestampmicros":7051130577107669211,"o_boolean":{"boolean":false},"o_int":null,"o_long":null,"o_float":{"float":0.54128647},"o_double":{"double":0.33366017783697144},"o_bytes":{"bytes":"c\u0011\u00190"},"o_string":null,"o_enum":null,"o_date":null,"o_timemillis":null,"o_timemicros":{"long":-3760198306835769747},"o_timestampmillis":null,"o_timestampmicros":{"long":-1748750580980819189}},"r_enum":"ZERO","r_date":446759234,"r_timemillis":-197730609,"r_timemicros":-1931579014961664255,"r_timestampmillis":2597880398873684442,"r_timestampmicros":-1190639660655588600,"r_array":[{"r_boolean":true,"r_int":914191732,"r_long":5332327099469106242,"r_float":0.48582792,"r_double":0.6517518232674661,"r_bytes":"ö\u001C8ô(\u001A\t!9O","r_string":"nlxoonxhbl","r_enum":"ONE","o_boolean":{"boolean":true},"o_int":null,"o_long":null,"o_float":{"float":0.23658103},"o_double":null,"o_bytes":{"bytes":"\u0012:| ­¯"},"o_string":null,"o_enum":{"Level2_1__2_Enum2":"ZERO"},"o_date":null,"o_timemillis":null,"o_timemicros":null,"o_timestampmillis":null,"o_timestampmicros":{"long":188026567431951714}}]},"r_enum":"ZERO","r_array":[{"r_boolean":true,"r_int":1594139412,"r_long":3242027913632535615,"r_float":0.87786263,"r_double":0.4297126951291541,"r_bytes":"","r_string":"hjlwbeyyxfqpyos","r_array":[{"r_boolean":false,"r_int":-1800097204,"r_long":-5800624111064094944,"r_float":0.92954993,"r_double":0.24428068623418353,"r_bytes":"Z”TSËÆq¥\u0012Á$S","r_string":"","r_enum":"ZERO","r_date":-1404319020,"r_timemillis":-1217849086,"r_timemicros":6777944348450385753,"r_timestampmillis":3228043965915845901,"r_timestampmicros":-632085435484402373,"o_boolean":null,"o_int":null,"o_long":null,"o_float":null,"o_double":{"double":0.7959924394019768},"o_bytes":{"bytes":"è\u0018;PüäPv®ŽÿÆ{ä"},"o_string":{"string":"i"},"o_enum":null,"o_date":null,"o_timemillis":{"int":820026496},"o_timemicros":{"long":2947739418394785978},"o_timestampmillis":{"long":7686897696511281294},"o_timestampmicros":null}],"o_boolean":null,"o_int":null,"o_long":null,"o_float":{"float":0.07405573},"o_double":null,"o_bytes":{"bytes":"*‡5Eà£P;­uu´S"},"o_string":{"string":"pdelkuvy"},"o_enum":null,"o_date":null,"o_timemillis":{"int":300095506},"o_timemicros":{"long":-2214118662880090913},"o_timestampmillis":null,"o_timestampmicros":null}],"r_date":-135041500,"r_timemillis":-241955484,"r_timemicros":4756501456639657838,"r_timestampmillis":-2308811596951240709,"r_timestampmicros":-2603675977013833213,"o_boolean":null,"o_int":null,"o_long":null,"o_float":null,"o_double":{"double":0.30251240333046014},"o_bytes":{"bytes":"%u¦Î®ix\u001E$|w"},"o_string":{"string":"xomhn"},"o_enum":{"Enum2":"ZERO"},"o_date":{"int":730610603},"o_timemillis":{"int":64367380},"o_timemicros":null,"o_timestampmillis":null,"o_timestampmicros":{"long":-4778037788945247341}} -{"r_boolean":false,"r_int":723092242,"r_long":-1160921218550544926,"r_float":0.80370337,"r_double":0.41047421418575825,"r_bytes":"­¤Ç’Š1á¦Ús","r_string":"lbccdsqqoij","r_record":{"r_boolean":false,"r_int":2122013894,"r_long":8213470051721910048,"r_float":0.12659824,"r_double":0.030555205181047373,"r_bytes":"Ú<Ć÷Û`¼]·ïƒ","r_string":"jkcpuhfrtnh","r_record":{"r_boolean":false,"r_int":-1992788252,"r_long":2651707536697764050,"r_float":0.96385527,"r_double":0.8545539880136157,"r_bytes":"a²\u0004æÆ,-ù\u00027","r_string":"jarykxtypnnotlybgcdjrfhijcutkucmbgvfgcupjpdsnnccqenhybaexohkggfxpbx","r_enum":"ONE","r_date":-376502986,"r_timemillis":739813471,"r_timemicros":-2074252893851748423,"r_timestampmillis":-4718048743275456789,"r_timestampmicros":6386378095940395992,"o_boolean":{"boolean":true},"o_int":null,"o_long":null,"o_float":null,"o_double":{"double":0.18249036374382754},"o_bytes":{"bytes":"\u0014Ú7uU"},"o_string":null,"o_enum":{"Level2_1__1_Enum2":"TWO"},"o_date":null,"o_timemillis":{"int":31512690},"o_timemicros":null,"o_timestampmillis":null,"o_timestampmicros":{"long":-8648164146813966248}},"r_enum":"ONE","r_date":-1972304668,"r_timemillis":200743414,"r_timemicros":-6090317689233380090,"r_timestampmillis":7902243946980183362,"r_timestampmicros":963938031741733298,"r_array":[{"r_boolean":true,"r_int":-1192112375,"r_long":-2087807007822025373,"r_float":0.46705753,"r_double":0.9082829399943628,"r_bytes":"cT],~êá —k","r_string":"njvmwhhiwylixbjcwhtoexfmmoumtaaewjibyofiuwvitekaqavbbewthudfhjdcrqmjt","r_enum":"ZERO","o_boolean":{"boolean":false},"o_int":null,"o_long":null,"o_float":{"float":0.71485096},"o_double":{"double":0.822294411449045},"o_bytes":null,"o_string":{"string":"lvv"},"o_enum":{"Level2_1__2_Enum2":"ONE"},"o_date":{"int":2096356430},"o_timemillis":{"int":812157313},"o_timemicros":{"long":-4835352576890882233},"o_timestampmillis":null,"o_timestampmicros":{"long":4589677615792566776}},{"r_boolean":true,"r_int":2102750212,"r_long":3838180860562581749,"r_float":0.6634394,"r_double":0.5577779484442017,"r_bytes":"mgù–}Þ£/Ž.ƒÑ맵óÆ¡ÇÆ°!¥œ¦ŸRMsWiâB·^Ð÷K&\fú\u0001Ô\u0011\u0014%F€»&Wð²Ž2êQ(Ö2{¿\u0019Wu…\u0001®…y B<Ý\u0001vtámD*±\f`G X\u0005D=«0*œ­k™Ãi\u001CÙd.À\u0018]’‹\u001Dx`®á,¹\u001A\u0016ªã\u0014öxJ·\"X0o„¸F\f\f–`´\u0005áJ6¥\u001E\tbº^¥X:ð\u001A«Ù†ÃÔr\u0001•Ô*^§\u0003èäú¹Šø=p\u00149\u0011K‘l&ö\f³c÷®¥õ\u0019å!z{²Þì²Tû[P7èò瑊0ó®^0$}Í@ÿNrëÄ:61_óـ3\u000Bd^´y½ý\u0012ˆÜð^ÊΗ÷̤.\t["},"o_string":{"string":"cewmmpstgnaap"},"o_enum":null,"o_date":{"int":-1399727719},"o_timemillis":null,"o_timemicros":{"long":1167162057015630665},"o_timestampmillis":null,"o_timestampmicros":null},{"r_boolean":false,"r_int":764872272,"r_long":-7766368896669304611,"r_float":0.70221096,"r_double":0.9186797653496361,"r_bytes":"!®,uš`&ö","r_string":"dp","r_enum":"ZERO","r_date":1184704044,"r_timemillis":793005951,"r_timemicros":6025118972148921136,"r_timestampmillis":4471977052307113352,"r_timestampmicros":-8379224559965550306,"o_boolean":{"boolean":false},"o_int":null,"o_long":null,"o_float":{"float":0.9734884},"o_double":null,"o_bytes":{"bytes":"“·5”´üšI;˜6Ï¿ÿ{„ύuQ©\u001E\f!èIÀ„P\u001Dv9¢\u0010Rú¡¨\u0010˜~š…{ñG÷G]81èË\r\u001Fw#à?ªÐ_P\u000BÞy>ÓsŠ\u0002ãoN[¡±Ú§‘Áe\u0005\u000Bn\u00058>fè\u0017ñq:¥\u0000ǃ^™;xz`\u0010\u001Aó]ºé5m^F‚ZAE¸Òü» PaêÈÕ\u00179ój™í?Ö,³<ú܉Ӑ¡D€2Èîð\u001BDäŠåºÒ`ҝú²ƒ@I*ԍc\u0010‹Dr¯.Xë\\½œŽ”h烣‡‰\u000E‚äw\u0012Î/Ȓ¾œÓ=×q'1ŠŒÝÎÌhÌõˆ¬J!_]Ÿ}«—Šð颼"},"o_string":{"string":"msxm"},"o_enum":null,"o_date":{"int":-1495021556},"o_timemillis":{"int":-1799939059},"o_timemicros":{"long":-4941976263581722163},"o_timestampmillis":{"long":3192315373497429756},"o_timestampmicros":null}],"o_boolean":null,"o_int":{"int":1441429797},"o_long":null,"o_float":{"float":0.57893753},"o_double":null,"o_bytes":null,"o_string":{"string":"couxnukd"},"o_enum":{"Level1_2_Enum2":"TWO"},"o_date":null,"o_timemillis":{"int":-1915503779},"o_timemicros":{"long":8006109696947342483},"o_timestampmillis":null,"o_timestampmicros":null},{"r_boolean":true,"r_int":-599496568,"r_long":4048192515263137150,"r_float":0.2581541,"r_double":0.7010657974513992,"r_bytes":"ë\u001B","r_string":"rvfl","r_array":[],"o_boolean":{"boolean":true},"o_int":{"int":-1869518345},"o_long":null,"o_float":{"float":0.2554766},"o_double":null,"o_bytes":{"bytes":"ßpèE–ª\u0017A"},"o_string":{"string":"x"},"o_enum":null,"o_date":{"int":729110440},"o_timemillis":{"int":-91011344},"o_timemicros":null,"o_timestampmillis":null,"o_timestampmicros":{"long":3627068807465352761}}],"r_date":-1763724323,"r_timemillis":729273138,"r_timemicros":-5696711984399969198,"r_timestampmillis":4375376643154916074,"r_timestampmicros":-7387238510224639023,"o_boolean":{"boolean":false},"o_int":null,"o_long":{"long":3929197054959441143},"o_float":null,"o_double":null,"o_bytes":{"bytes":"\u001FÀßîý\u0002Ø«¡2Œn"},"o_string":{"string":""},"o_enum":{"Enum2":"TWO"},"o_date":null,"o_timemillis":{"int":422203940},"o_timemicros":{"long":-7358743442912406794},"o_timestampmillis":null,"o_timestampmicros":null} -{"r_boolean":false,"r_int":-1292686576,"r_long":6683953927117806978,"r_float":0.99835277,"r_double":0.5823925453977831,"r_bytes":"})Ðg^¾¶%Q×‚÷\r","r_string":"xqla","r_record":{"r_boolean":false,"r_int":-541983656,"r_long":3657781742611101553,"r_float":0.8963209,"r_double":0.01674809955598655,"r_bytes":"{Eþ","r_string":"icvc","r_record":{"r_boolean":false,"r_int":-691243073,"r_long":-779607844019894774,"r_float":0.2846527,"r_double":0.39252485038838036,"r_bytes":"Hm[4…ì","r_string":"emkxfymtkkqy","r_enum":"ZERO","r_date":-576419060,"r_timemillis":388928687,"r_timemicros":5837229629893902480,"r_timestampmillis":-8094126677786904447,"r_timestampmicros":-2606958643917867614,"o_boolean":null,"o_int":{"int":495816654},"o_long":{"long":-7138149646979875012},"o_float":{"float":0.7706281},"o_double":{"double":0.9066900993122724},"o_bytes":null,"o_string":{"string":"aovcry"},"o_enum":null,"o_date":null,"o_timemillis":{"int":-2074633332},"o_timemicros":{"long":-3719420703380597382},"o_timestampmillis":{"long":3678686922736338182},"o_timestampmicros":null},"r_enum":"TWO","r_date":1888304414,"r_timemillis":189336621,"r_timemicros":-6616365791151919352,"r_timestampmillis":-7117257084943044117,"r_timestampmicros":4847007266113429672,"r_array":[{"r_boolean":false,"r_int":565714602,"r_long":7549985953089752095,"r_float":0.7165331,"r_double":0.0892834080922067,"r_bytes":"‡a+ïª`\u0013¾`\u0014","r_string":"hquimcjfibjbe","r_enum":"ZERO","o_boolean":null,"o_int":{"int":-1239032524},"o_long":null,"o_float":null,"o_double":null,"o_bytes":{"bytes":"îì辩o("},"o_string":null,"o_enum":{"Level2_1__2_Enum2":"TWO"},"o_date":{"int":4271802},"o_timemillis":{"int":739500721},"o_timemicros":{"long":4283021591221711859},"o_timestampmillis":{"long":-336230799258639164},"o_timestampmicros":null},{"r_boolean":true,"r_int":-67560454,"r_long":-607526396500939306,"r_float":0.47980303,"r_double":0.5978091123144572,"r_bytes":"\u0019V旍ѫz","r_string":"xnmscklqcndboe","r_enum":"TWO","o_boolean":null,"o_int":{"int":585292844},"o_long":null,"o_float":{"float":0.62480634},"o_double":{"double":0.9933516445553413},"o_bytes":{"bytes":"ù”`ϧTÛ"},"o_string":null,"o_enum":{"Level2_1__2_Enum2":"ONE"},"o_date":{"int":1917897090},"o_timemillis":null,"o_timemicros":{"long":2447333270039864255},"o_timestampmillis":{"long":8731624436672570317},"o_timestampmicros":null}]},"r_enum":"ZERO","r_array":[{"r_boolean":true,"r_int":600999484,"r_long":-2327563578225353441,"r_float":0.11506623,"r_double":0.01578850054960257,"r_bytes":"Ý°«jj\u0004ÐYC¤\u0001Z","r_string":"dyaklkbgchg","r_array":[],"o_boolean":{"boolean":true},"o_int":null,"o_long":null,"o_float":{"float":0.79765165},"o_double":null,"o_bytes":{"bytes":"\u0007Ë}¿"},"o_string":{"string":"gjxijsiuyqupcclgetbjtpbmueylnjmidiowdimkfprnfwxuccviaosyblrxgalhxwtbfngfimlaivqjrhawswninljjasfdfcluwxgyjbycljwxtelsmvmhakbp"},"o_enum":{"Level1_2_Enum2":"ZERO"},"o_date":null,"o_timemillis":{"int":-431835780},"o_timemicros":null,"o_timestampmillis":null,"o_timestampmicros":null},{"r_boolean":true,"r_int":203475021,"r_long":3335031062006920275,"r_float":0.90820503,"r_double":0.42166828815224544,"r_bytes":"Ï*\u0003BÏ-O¹÷\u0010oÜSÇ¥","r_string":"gwcjglv","r_array":[{"r_boolean":true,"r_int":1113950697,"r_long":4850874056454374780,"r_float":0.9751325,"r_double":0.16795978868406825,"r_bytes":"݂ƒ","r_string":"lbwpgijliunup","r_enum":"ONE","r_date":872948870,"r_timemillis":1696399816,"r_timemicros":-8548548170808226958,"r_timestampmillis":-7650882179924300686,"r_timestampmicros":8282019239027523198,"o_boolean":null,"o_int":{"int":-784996350},"o_long":{"long":-4950924663367762652},"o_float":{"float":0.70113844},"o_double":{"double":0.7183953161627735},"o_bytes":{"bytes":"\u0004¾"},"o_string":null,"o_enum":{"Level2_2_Enum2":"TWO"},"o_date":null,"o_timemillis":{"int":2037443989},"o_timemicros":{"long":4936051118238480821},"o_timestampmillis":null,"o_timestampmicros":{"long":8598193295822016173}},{"r_boolean":false,"r_int":-340542183,"r_long":-1057504426423663694,"r_float":0.8639482,"r_double":0.7891135624872848,"r_bytes":"\u000F­\u001B/)ÅEÓ¨ ","r_string":"rdrqud","r_enum":"ONE","r_date":207066438,"r_timemillis":2019544126,"r_timemicros":3165920708596374246,"r_timestampmillis":7737162419919000174,"r_timestampmicros":4472748185456104525,"o_boolean":{"boolean":true},"o_int":null,"o_long":{"long":-3676150486737988436},"o_float":{"float":0.7914728},"o_double":null,"o_bytes":null,"o_string":{"string":"fnjuoekr"},"o_enum":null,"o_date":null,"o_timemillis":null,"o_timemicros":null,"o_timestampmillis":null,"o_timestampmicros":null},{"r_boolean":true,"r_int":393933261,"r_long":-1710090619534329653,"r_float":0.13483316,"r_double":0.9864589311570963,"r_bytes":"","r_string":"csrtl","r_enum":"TWO","r_date":871152036,"r_timemillis":-267900622,"r_timemicros":-203887895435277838,"r_timestampmillis":1894709101201389305,"r_timestampmicros":-4961737495934079878,"o_boolean":null,"o_int":null,"o_long":null,"o_float":null,"o_double":null,"o_bytes":null,"o_string":{"string":"jyhyq"},"o_enum":{"Level2_2_Enum2":"TWO"},"o_date":null,"o_timemillis":{"int":-407403666},"o_timemicros":{"long":5829954327440666848},"o_timestampmillis":null,"o_timestampmicros":null}],"o_boolean":null,"o_int":{"int":-1984576058},"o_long":{"long":-8868867216788257141},"o_float":null,"o_double":null,"o_bytes":null,"o_string":null,"o_enum":null,"o_date":{"int":-839313132},"o_timemillis":{"int":-1723246928},"o_timemicros":null,"o_timestampmillis":null,"o_timestampmicros":{"long":7073405699092598370}},{"r_boolean":false,"r_int":-1582465101,"r_long":8835537613199174959,"r_float":0.9367009,"r_double":0.906055310313881,"r_bytes":"«æ\u000B8\u001B\u001Cñ@È·\n“®®²","r_string":"kvneoptfsdtganfkutkjbddauvrpetxbphvorgfojmuqhilvoasbqkrjadvixxggilosdbemiaoigbsgqmrkkkhsrfdyfqlyjrevhhpprnplwhihahllxkkdoskpjhsogoestngfmfavbgjoyofkinctapwwiprffuqiaskexgcihqkucusaibdanwporvbuuyfibdsbulofqokrplfdwkkvndmnqjrdibifxbvdtqag","r_array":[{"r_boolean":true,"r_int":-1906210802,"r_long":-4446728464985565570,"r_float":0.088680565,"r_double":0.7658389012792981,"r_bytes":"XI","r_string":"ifcdpkoia","r_enum":"ZERO","r_date":-1460296529,"r_timemillis":1459780710,"r_timemicros":-1573779864873524065,"r_timestampmillis":-8665755801142389086,"r_timestampmicros":-6816735229595765594,"o_boolean":null,"o_int":{"int":-1034706367},"o_long":null,"o_float":null,"o_double":{"double":0.19930447606984192},"o_bytes":null,"o_string":null,"o_enum":{"Level2_2_Enum2":"ZERO"},"o_date":null,"o_timemillis":null,"o_timemicros":{"long":337095290768299618},"o_timestampmillis":{"long":-4165637832320453571},"o_timestampmicros":{"long":-47596125305954772}},{"r_boolean":true,"r_int":-1488334714,"r_long":-8128224328989436304,"r_float":0.89320153,"r_double":0.9290127342473374,"r_bytes":"d­ñÜ 0D\u0003˜*©ˆµÝ","r_string":"aqsm","r_enum":"TWO","r_date":72554882,"r_timemillis":603441883,"r_timemicros":8890918600465048178,"r_timestampmillis":-5292568981160135065,"r_timestampmicros":2710564347906223681,"o_boolean":{"boolean":false},"o_int":{"int":1345090145},"o_long":null,"o_float":{"float":0.8348524},"o_double":{"double":0.6529794837740794},"o_bytes":null,"o_string":null,"o_enum":null,"o_date":null,"o_timemillis":null,"o_timemicros":null,"o_timestampmillis":{"long":-6821049002520773227},"o_timestampmicros":null}],"o_boolean":{"boolean":true},"o_int":{"int":159467497},"o_long":{"long":-2182188717867144598},"o_float":{"float":0.52390736},"o_double":{"double":0.006824649221827128},"o_bytes":{"bytes":"‰Þ«"},"o_string":{"string":"cjlxcgspgmrui"},"o_enum":null,"o_date":null,"o_timemillis":{"int":305605496},"o_timemicros":{"long":-3862293369865859757},"o_timestampmillis":null,"o_timestampmicros":null}],"r_date":-1347579133,"r_timemillis":991362695,"r_timemicros":-1841294553577645658,"r_timestampmillis":5554436782336321454,"r_timestampmicros":-5677876130273569248,"o_boolean":null,"o_int":null,"o_long":null,"o_float":null,"o_double":{"double":0.6367791124005254},"o_bytes":null,"o_string":{"string":"w"},"o_enum":null,"o_date":null,"o_timemillis":null,"o_timemicros":{"long":1200664622661423454},"o_timestampmillis":null,"o_timestampmicros":null} -{"r_boolean":true,"r_int":-1829114098,"r_long":-5666872214379550511,"r_float":0.86946785,"r_double":0.08712645515142681,"r_bytes":"ª?è­\u0016\rÖ","r_string":"bxavvpedjjeum","r_record":{"r_boolean":false,"r_int":-2008922586,"r_long":-8912532616706140940,"r_float":0.28986722,"r_double":0.3576702996824538,"r_bytes":"O\u0010","r_string":"jtyk","r_record":{"r_boolean":true,"r_int":1654974819,"r_long":542164404565744737,"r_float":0.2287699,"r_double":0.4835312565165327,"r_bytes":"%¾W","r_string":"aoyelydjhse","r_enum":"ZERO","r_date":1345703631,"r_timemillis":131099921,"r_timemicros":9182193013471267790,"r_timestampmillis":-6919818243433127929,"r_timestampmicros":6806096165513942340,"o_boolean":null,"o_int":{"int":1346906857},"o_long":{"long":2537172034363711867},"o_float":null,"o_double":{"double":0.15802023510650953},"o_bytes":{"bytes":"ק"},"o_string":{"string":"srqxujxmicuonfx"},"o_enum":null,"o_date":{"int":-1003118114},"o_timemillis":null,"o_timemicros":null,"o_timestampmillis":null,"o_timestampmicros":null},"r_enum":"ZERO","r_date":-1715034413,"r_timemillis":182553888,"r_timemicros":3689106613159415437,"r_timestampmillis":-1757054377568641611,"r_timestampmicros":7038583873316163424,"r_array":[]},"r_enum":"ONE","r_array":[{"r_boolean":true,"r_int":-158936439,"r_long":2018798452999795149,"r_float":0.028422415,"r_double":0.2858482585420258,"r_bytes":"\u0014$ˆ \u0003\u000Eÿ","r_string":"c","r_array":[{"r_boolean":true,"r_int":1363717254,"r_long":-5379283410987373471,"r_float":0.56014127,"r_double":0.6655247509148876,"r_bytes":"XbñLo¹îxÂôÞ","r_string":"eeyqnuhycsx","r_enum":"ZERO","r_date":2084835937,"r_timemillis":-468529972,"r_timemicros":-6648438667919257464,"r_timestampmillis":-4296412370096388717,"r_timestampmicros":7585475388165170328,"o_boolean":null,"o_int":null,"o_long":{"long":-3621272294855700697},"o_float":null,"o_double":{"double":0.5605921416178522},"o_bytes":null,"o_string":{"string":"rlddom"},"o_enum":null,"o_date":{"int":-375414965},"o_timemillis":{"int":-17417876},"o_timemicros":{"long":-6378249257184236650},"o_timestampmillis":{"long":3888683079659610124},"o_timestampmicros":{"long":-5231657180210227081}}],"o_boolean":null,"o_int":null,"o_long":null,"o_float":{"float":0.20769483},"o_double":{"double":0.8723484844381733},"o_bytes":{"bytes":"r\tÆ@·¶—\u00130Ë\u000FÒE«SUàt5\u000B;a¢6ÙՓmÓ\u0001¶®\u0019õÌ\\maÙ\u00154ž'ŽÉìø#¢E\\X-õ\u000Eªút‘éÿ€“ê©S¼«9*¬\f®hÛ\fÑ\u0013:Ÿƒî´‚-fÛ6ÂÛÜX:\u001Bl·“N\u000FÖÍ","r_string":"","r_array":[],"o_boolean":null,"o_int":null,"o_long":{"long":-1124218065928628952},"o_float":null,"o_double":{"double":0.46283157681367193},"o_bytes":null,"o_string":{"string":""},"o_enum":{"Level1_2_Enum2":"ZERO"},"o_date":{"int":-645445131},"o_timemillis":null,"o_timemicros":null,"o_timestampmillis":{"long":-2241307907079609683},"o_timestampmicros":{"long":-8628448681260914188}},{"r_boolean":true,"r_int":1918132149,"r_long":-6818634240912781092,"r_float":0.48188525,"r_double":0.19101287956848834,"r_bytes":"*JK‘g","r_string":"c","r_array":[{"r_boolean":true,"r_int":903449203,"r_long":6457801960077186338,"r_float":0.99892676,"r_double":0.7552369154095648,"r_bytes":"Ì­UÙÛ¬ìð.”","r_string":"lvmlk","r_enum":"ONE","r_date":1682799001,"r_timemillis":839996672,"r_timemicros":2116238954727535260,"r_timestampmillis":-1289990613523857506,"r_timestampmicros":7105772321430770620,"o_boolean":null,"o_int":{"int":847329776},"o_long":{"long":-1970145201586256652},"o_float":null,"o_double":{"double":0.37424404818395807},"o_bytes":null,"o_string":null,"o_enum":null,"o_date":{"int":-299110643},"o_timemillis":{"int":-1851741648},"o_timemicros":{"long":-5791195713247670988},"o_timestampmillis":null,"o_timestampmicros":null},{"r_boolean":true,"r_int":1724580170,"r_long":3348813314259633908,"r_float":0.9585075,"r_double":0.11670605697623959,"r_bytes":"}\u001F]­","r_string":"hwqaapshbu","r_enum":"ZERO","r_date":-1801630341,"r_timemillis":-2069662681,"r_timemicros":1913431416657078587,"r_timestampmillis":8092722171968610625,"r_timestampmicros":5414950557811047126,"o_boolean":{"boolean":false},"o_int":{"int":436247350},"o_long":{"long":-803941635413910232},"o_float":{"float":0.82409436},"o_double":null,"o_bytes":{"bytes":"²¿p½n"},"o_string":{"string":"urnolmndkiupcqd"},"o_enum":null,"o_date":null,"o_timemillis":null,"o_timemicros":null,"o_timestampmillis":{"long":-2568280000889598461},"o_timestampmicros":null}],"o_boolean":{"boolean":false},"o_int":null,"o_long":{"long":6153861334422624556},"o_float":{"float":0.5496731},"o_double":{"double":0.7203924021948103},"o_bytes":null,"o_string":null,"o_enum":null,"o_date":null,"o_timemillis":null,"o_timemicros":null,"o_timestampmillis":{"long":3048128056644594137},"o_timestampmicros":null},{"r_boolean":false,"r_int":44194740,"r_long":-8920134610498778391,"r_float":0.60474813,"r_double":0.26015831138100465,"r_bytes":"Jõ’\\@\u000EmIôl","r_string":"tameddrx","r_array":[],"o_boolean":{"boolean":true},"o_int":null,"o_long":{"long":-6965120826898512626},"o_float":{"float":0.23612636},"o_double":{"double":0.9867813940431326},"o_bytes":{"bytes":"Ǟqæd³"},"o_string":{"string":"vnuktpdjmcfvmvfqhinwgxeaciymuacrglhkyjhrauwrabfxleygoinwthbegisubocvgwjjqskdmpfhrjiabxtrjfveadlesubhikmecuatcjnqlpawsgiukppteryxollwwcsaplntrltndlqxbkxmsjfwwrjudhfahfsfjnktadifhsfmtafksngmvmcawvkxmc"},"o_enum":null,"o_date":null,"o_timemillis":null,"o_timemicros":null,"o_timestampmillis":null,"o_timestampmicros":null}],"r_date":-1401155338,"r_timemillis":1026556984,"r_timemicros":-9156983331995750665,"r_timestampmillis":6974625198767857251,"r_timestampmicros":2783913731446944371,"o_boolean":null,"o_int":null,"o_long":{"long":-7099268868069332459},"o_float":null,"o_double":null,"o_bytes":{"bytes":"ú\u0015"},"o_string":{"string":"cgaidiao"},"o_enum":{"Enum2":"ONE"},"o_date":null,"o_timemillis":{"int":1206072849},"o_timemicros":null,"o_timestampmillis":{"long":6066823887370910826},"o_timestampmicros":null} -{"r_boolean":true,"r_int":1281806820,"r_long":-8802002165550516154,"r_float":0.39044684,"r_double":0.440188824132965,"r_bytes":"˜¶D‹•ïÆ\u001B¦—","r_string":"mwdvbnaajp","r_record":{"r_boolean":true,"r_int":817710996,"r_long":-1082901641289826452,"r_float":0.05565226,"r_double":0.24391930161170583,"r_bytes":"I\u0007ߏ\u0001M:ÈJ½SÀ","r_string":"duyv","r_record":{"r_boolean":false,"r_int":-257584345,"r_long":-7394309832072339625,"r_float":0.8372884,"r_double":0.3525715314432051,"r_bytes":")&\u0013¶\u0017LÎÞå\u001B™","r_string":"g","r_enum":"ONE","r_date":-1744345927,"r_timemillis":-785357879,"r_timemicros":-2859798370439638017,"r_timestampmillis":2033366941745385121,"r_timestampmicros":6554366074854210590,"o_boolean":{"boolean":false},"o_int":null,"o_long":{"long":-8307014631872739511},"o_float":{"float":0.040991247},"o_double":{"double":0.672159795331678},"o_bytes":{"bytes":"ÒpÙÞ¡sÖ\u0000u¾"},"o_string":null,"o_enum":null,"o_date":null,"o_timemillis":null,"o_timemicros":{"long":4967251540796428152},"o_timestampmillis":null,"o_timestampmicros":{"long":-2551357658105167704}},"r_enum":"ZERO","r_date":921625916,"r_timemillis":-1657905742,"r_timemicros":-3599925778083167451,"r_timestampmillis":-1952329428131500315,"r_timestampmicros":-4381308614184760979,"r_array":[{"r_boolean":false,"r_int":-239121205,"r_long":-3930473112624781075,"r_float":0.4252286,"r_double":0.45191003963522525,"r_bytes":"L1Zzæ¯\u0010\b","r_string":"","r_enum":"ONE","o_boolean":{"boolean":false},"o_int":null,"o_long":{"long":1468989290359263776},"o_float":{"float":0.08592254},"o_double":{"double":0.004686978766379801},"o_bytes":null,"o_string":{"string":"flehv"},"o_enum":null,"o_date":null,"o_timemillis":null,"o_timemicros":{"long":-339964462931560032},"o_timestampmillis":null,"o_timestampmicros":{"long":-2359754039356624370}},{"r_boolean":false,"r_int":-201164934,"r_long":-7461389329078122315,"r_float":0.54916984,"r_double":0.6602309052706797,"r_bytes":"áÖ£&a6VkZ}","r_string":"wvn","r_enum":"ZERO","o_boolean":null,"o_int":{"int":3730142},"o_long":{"long":-8008392841312883736},"o_float":{"float":0.8680796},"o_double":null,"o_bytes":{"bytes":"NÌzni/ÓS\u0013‘§O"},"o_string":{"string":"oproknxgnbxepu"},"o_enum":null,"o_date":{"int":2067092697},"o_timemillis":null,"o_timemicros":null,"o_timestampmillis":null,"o_timestampmicros":{"long":-9042375068630892548}}]},"r_enum":"ONE","r_array":[{"r_boolean":false,"r_int":74341366,"r_long":-3224350846660525937,"r_float":0.4776246,"r_double":0.6168678707561007,"r_bytes":"S̑¦cÎ_4á","r_string":"akfbf","r_array":[],"o_boolean":null,"o_int":null,"o_long":null,"o_float":null,"o_double":{"double":0.20677522333667497},"o_bytes":{"bytes":"°"},"o_string":null,"o_enum":{"Level1_2_Enum2":"TWO"},"o_date":null,"o_timemillis":null,"o_timemicros":{"long":-7712358541564184886},"o_timestampmillis":{"long":2844690387256935450},"o_timestampmicros":{"long":-5067748106588386704}}],"r_date":-1116203490,"r_timemillis":1729472974,"r_timemicros":-4844803405834347227,"r_timestampmillis":1379355236855343677,"r_timestampmicros":-3283039625255211204,"o_boolean":null,"o_int":null,"o_long":{"long":1796841444843034993},"o_float":null,"o_double":{"double":0.04346650944749786},"o_bytes":{"bytes":"Ê'a•y\u0011Z•…\u00076’„È"},"o_string":{"string":"gelihmkstfvjggn"},"o_enum":{"Enum2":"ZERO"},"o_date":{"int":1762518247},"o_timemillis":null,"o_timemicros":{"long":-4151855842925652896},"o_timestampmillis":null,"o_timestampmicros":{"long":-9041900980313568246}} -{"r_boolean":true,"r_int":1090621717,"r_long":-170481419243101500,"r_float":0.058493912,"r_double":0.7717721422614721,"r_bytes":"­\u000BáΪA\u000E‘\u0011ž","r_string":"cmuwfgrfbcki","r_record":{"r_boolean":false,"r_int":1048395198,"r_long":1298464260650846114,"r_float":0.46679252,"r_double":0.9248665057637268,"r_bytes":"","r_string":"fuj","r_record":{"r_boolean":false,"r_int":313406138,"r_long":4023314789920586822,"r_float":0.46798944,"r_double":0.658426078568595,"r_bytes":"<›µÎ","r_string":"mtftb","r_enum":"TWO","r_date":1338953523,"r_timemillis":-1213728578,"r_timemicros":8424449839410037487,"r_timestampmillis":4335865655529768698,"r_timestampmicros":5752189323884802226,"o_boolean":{"boolean":true},"o_int":{"int":1175830180},"o_long":null,"o_float":{"float":0.052751303},"o_double":null,"o_bytes":null,"o_string":{"string":"dhu"},"o_enum":null,"o_date":null,"o_timemillis":null,"o_timemicros":null,"o_timestampmillis":null,"o_timestampmicros":{"long":-4704799270641364540}},"r_enum":"ZERO","r_date":-299474564,"r_timemillis":618268686,"r_timemicros":-3078332317464917598,"r_timestampmillis":1845420747776271972,"r_timestampmicros":-5759045230915616496,"r_array":[{"r_boolean":true,"r_int":681734113,"r_long":-6221293408096507506,"r_float":0.6983152,"r_double":0.9042602814236699,"r_bytes":"Š‚","r_string":"r","r_enum":"TWO","o_boolean":{"boolean":false},"o_int":null,"o_long":null,"o_float":{"float":0.67224944},"o_double":null,"o_bytes":null,"o_string":{"string":"srew"},"o_enum":{"Level2_1__2_Enum2":"ZERO"},"o_date":{"int":95250936},"o_timemillis":null,"o_timemicros":{"long":-4982579525652719776},"o_timestampmillis":{"long":7792182376640542695},"o_timestampmicros":null},{"r_boolean":false,"r_int":1085210730,"r_long":1875904228211305781,"r_float":0.10217333,"r_double":0.20400458572552083,"r_bytes":"·Ã¨½â“ÆÙ½Ê","r_string":"flgaqkdfjwdhadmehjmopdefcfgrkamjnmrnnkjuenuygffsbvjfgqndcbfxhhiwxauqkfsgkvjmkwgqaroojnuduksbglqrnyrbpytwutlmpuxcgcnbtcgbrrocyxqyvknfekoko","r_enum":"ZERO","o_boolean":{"boolean":false},"o_int":null,"o_long":null,"o_float":null,"o_double":null,"o_bytes":null,"o_string":{"string":"ytrmbmvpkhkwk"},"o_enum":{"Level2_1__2_Enum2":"ONE"},"o_date":null,"o_timemillis":{"int":1895223167},"o_timemicros":null,"o_timestampmillis":{"long":8846487611967739478},"o_timestampmicros":{"long":-7348909435350600334}}]},"r_enum":"ZERO","r_array":[{"r_boolean":true,"r_int":-1368441903,"r_long":-6778262604721176322,"r_float":0.44064385,"r_double":0.9678774684313024,"r_bytes":"§¶¥í(ÝË­\u0005ù","r_string":"winxxadygr","r_array":[{"r_boolean":true,"r_int":-543315172,"r_long":-6335909248529707156,"r_float":0.61345,"r_double":0.768135601807282,"r_bytes":"0GMçH[\u0013Áœ","r_string":"ajwfsoehxnkei","r_enum":"ONE","r_date":114713605,"r_timemillis":-1623261607,"r_timemicros":8257489060976404382,"r_timestampmillis":8780794255661251911,"r_timestampmicros":3818742134433441884,"o_boolean":{"boolean":false},"o_int":null,"o_long":{"long":-8541607098115674731},"o_float":null,"o_double":{"double":0.448592644234056},"o_bytes":{"bytes":"ýQº]ú"},"o_string":null,"o_enum":{"Level2_2_Enum2":"ONE"},"o_date":{"int":-706312304},"o_timemillis":{"int":-897430706},"o_timemicros":{"long":7469505443683646757},"o_timestampmillis":{"long":-792670906444544336},"o_timestampmicros":{"long":356069413272967495}},{"r_boolean":true,"r_int":-1102839783,"r_long":6113023369711323637,"r_float":0.4421087,"r_double":0.8361074343523972,"r_bytes":"©\b","r_string":"xqsnhwx","r_enum":"ZERO","r_date":-572912560,"r_timemillis":-1125548107,"r_timemicros":1280263074538264083,"r_timestampmillis":-5201539896473266999,"r_timestampmicros":8694975805095248316,"o_boolean":null,"o_int":{"int":1969037085},"o_long":{"long":-1343352919885459996},"o_float":null,"o_double":null,"o_bytes":{"bytes":"±fišÎ\tˆ\u000E¬"},"o_string":{"string":"kgncc"},"o_enum":null,"o_date":null,"o_timemillis":null,"o_timemicros":{"long":8348669461374919185},"o_timestampmillis":null,"o_timestampmicros":{"long":-8993251928840959907}}],"o_boolean":{"boolean":true},"o_int":{"int":-1737728777},"o_long":null,"o_float":{"float":0.9229404},"o_double":{"double":0.23009516404385943},"o_bytes":null,"o_string":{"string":"akcjgcxy"},"o_enum":null,"o_date":{"int":-1417958677},"o_timemillis":{"int":-1213634808},"o_timemicros":{"long":-9024775859283473029},"o_timestampmillis":null,"o_timestampmicros":{"long":-6782138174345330815}},{"r_boolean":true,"r_int":321046854,"r_long":-1236760290320204300,"r_float":0.04790759,"r_double":0.21227071911572937,"r_bytes":"ÕI`¤","r_string":"kwtotbrxvcooslaclabffliyykqllssfbycxhplswaurlpjqqjupgkraaaltmbxymehbbggufwfolgvaylydbbkvfxosqajisgawrm","r_array":[{"r_boolean":false,"r_int":-1113523648,"r_long":-3453531490578765309,"r_float":0.23047549,"r_double":0.45726260940296515,"r_bytes":"8÷rU&˜o˜ú","r_string":"kxklp","r_enum":"ZERO","r_date":1137164157,"r_timemillis":1918074954,"r_timemicros":-457112284426487492,"r_timestampmillis":3432551655323184427,"r_timestampmicros":-8797064027277549468,"o_boolean":{"boolean":false},"o_int":null,"o_long":null,"o_float":{"float":0.0683738},"o_double":null,"o_bytes":{"bytes":"b4s­ÚĨ…,¥õ9j½\u0014"},"o_string":{"string":"ibsvxdhjctlm"},"o_enum":null,"o_date":null,"o_timemillis":null,"o_timemicros":{"long":4533974699997313317},"o_timestampmillis":null,"o_timestampmicros":null}],"o_boolean":{"boolean":true},"o_int":{"int":-213918518},"o_long":{"long":2298465978607996695},"o_float":{"float":0.7195303},"o_double":{"double":0.2603250939175237},"o_bytes":null,"o_string":{"string":"lmostcdolyi"},"o_enum":{"Level1_2_Enum2":"TWO"},"o_date":{"int":-10446728},"o_timemillis":null,"o_timemicros":{"long":-1730456012446108868},"o_timestampmillis":{"long":-8521007369098367774},"o_timestampmicros":null},{"r_boolean":false,"r_int":1784916687,"r_long":1342745267657946953,"r_float":0.79575914,"r_double":0.46199825904490566,"r_bytes":"Ç æݦ†ß\fÐd","r_string":"nwappmnytgfomi","r_array":[{"r_boolean":true,"r_int":1815747190,"r_long":-9167338188400042987,"r_float":0.7003845,"r_double":0.04014325649830042,"r_bytes":"ÿnίÃѬoLè)f…~\u000Fõ{oOõ)T‡z\bóJ¾ñ\u0004\u000B€}\u000F–´\u0014mM¡³Îl–’ª\rQ&•dË´K\u000B\u0001”ñTç69\nÄ<Ã\fR_\\¢s…™U£î©r\u0013Uæ€/½þ€õl‡ª¾¢ªíÐ\u0000U","r_string":"gtamxddivbqwkls","r_enum":"ZERO","r_date":-1090268030,"r_timemillis":-1371701777,"r_timemicros":2434300399388917437,"r_timestampmillis":-2290155110887147419,"r_timestampmicros":-6562964207716696014,"o_boolean":null,"o_int":{"int":1544042921},"o_long":null,"o_float":{"float":0.91940284},"o_double":null,"o_bytes":null,"o_string":null,"o_enum":null,"o_date":{"int":1180040794},"o_timemillis":null,"o_timemicros":null,"o_timestampmillis":null,"o_timestampmicros":{"long":-5889911687070379910}},{"r_boolean":false,"r_int":1947336665,"r_long":-7541329153433090418,"r_float":0.83335596,"r_double":0.8405635602032164,"r_bytes":"'-ÙNŽËæ®ê«;","r_string":"kvjfybecjqqhyk","r_enum":"ONE","r_date":993074360,"r_timemillis":10720924,"r_timemicros":-4853949392687854290,"r_timestampmillis":-4978715565336706121,"r_timestampmicros":-2142953150265367596,"o_boolean":null,"o_int":null,"o_long":null,"o_float":{"float":0.9663354},"o_double":null,"o_bytes":{"bytes":"%"},"o_string":{"string":"om"},"o_enum":null,"o_date":{"int":891075988},"o_timemillis":{"int":555762863},"o_timemicros":{"long":-374274660480532304},"o_timestampmillis":{"long":-5536873340260335526},"o_timestampmicros":null}],"o_boolean":null,"o_int":null,"o_long":null,"o_float":null,"o_double":{"double":0.8628497731692641},"o_bytes":{"bytes":"»oD\u0010Þ"},"o_string":null,"o_enum":{"Level1_2_Enum2":"TWO"},"o_date":null,"o_timemillis":{"int":201600541},"o_timemicros":{"long":-289115346394229112},"o_timestampmillis":{"long":-3268862240537489206},"o_timestampmicros":{"long":4695934765956749714}},{"r_boolean":true,"r_int":685688786,"r_long":-2601809734993794450,"r_float":0.90387285,"r_double":0.500479080478478,"r_bytes":"²\t","r_string":"jnohvv","r_array":[],"o_boolean":null,"o_int":null,"o_long":{"long":3321900679106512153},"o_float":null,"o_double":{"double":0.4786823952080419},"o_bytes":null,"o_string":null,"o_enum":{"Level1_2_Enum2":"ONE"},"o_date":{"int":1136668130},"o_timemillis":null,"o_timemicros":{"long":-900538280173185175},"o_timestampmillis":{"long":-5483022629547777703},"o_timestampmicros":null}],"r_date":881415585,"r_timemillis":1173797425,"r_timemicros":1568206483558673738,"r_timestampmillis":3359163341600016527,"r_timestampmicros":4078932533804857446,"o_boolean":{"boolean":true},"o_int":null,"o_long":{"long":7177510473173573324},"o_float":{"float":0.10096806},"o_double":{"double":0.40787935997236535},"o_bytes":{"bytes":"Ï/"},"o_string":{"string":"sfqaqyqoemlao"},"o_enum":{"Enum2":"ONE"},"o_date":null,"o_timemillis":{"int":-200071866},"o_timemicros":null,"o_timestampmillis":{"long":-7084079248522106749},"o_timestampmicros":null} -{"r_boolean":false,"r_int":278850093,"r_long":4597567105280326618,"r_float":0.8244522,"r_double":0.11755820516385729,"r_bytes":"ÛÍu¯—\u0004çz\u0010","r_string":"iqjkwmspp","r_record":{"r_boolean":true,"r_int":1096509299,"r_long":6385321131477026720,"r_float":0.299716,"r_double":0.8689293988920823,"r_bytes":"¼","r_string":"mbnhnxbr","r_record":{"r_boolean":true,"r_int":646280658,"r_long":-3079335097825505165,"r_float":0.045584857,"r_double":0.6688069276062873,"r_bytes":"M@@q_¯\u0011ó\u00148Ö","r_string":"ovmnjlvo","r_enum":"ONE","r_date":-91007394,"r_timemillis":-1557769700,"r_timemicros":3252957521639643520,"r_timestampmillis":-2241685686308053330,"r_timestampmicros":1703223852761359861,"o_boolean":{"boolean":false},"o_int":{"int":588848477},"o_long":null,"o_float":null,"o_double":{"double":0.08582805413465544},"o_bytes":{"bytes":"ž¥ãdÂ1”NUÊLáºå?*å\u0012);}~Ùõ†ÍE\u0019™´xÞÀ‘©\u001Eߓ´Kã­.ym"},"o_string":null,"o_enum":null,"o_date":null,"o_timemillis":null,"o_timemicros":null,"o_timestampmillis":{"long":8609350391302422356},"o_timestampmicros":null},"r_enum":"ONE","r_date":-409608011,"r_timemillis":676350960,"r_timemicros":4879875105417405057,"r_timestampmillis":2773291668884714013,"r_timestampmicros":5601538023632837889,"r_array":[]},"r_enum":"ZERO","r_array":[{"r_boolean":false,"r_int":1856316230,"r_long":8521665601741598044,"r_float":0.5804265,"r_double":0.9711461537881951,"r_bytes":"ÿTöúv¾(&Ó","r_string":"ejgho","r_array":[{"r_boolean":false,"r_int":827039873,"r_long":6287240939525687917,"r_float":0.16166073,"r_double":0.5968994102564085,"r_bytes":"5ú¾ËS#q\u000FA·","r_string":"lixivdckpmn","r_enum":"ZERO","r_date":1157399799,"r_timemillis":-857947417,"r_timemicros":5749727002167564062,"r_timestampmillis":7033348423716462963,"r_timestampmicros":5658514713023260099,"o_boolean":{"boolean":false},"o_int":null,"o_long":null,"o_float":{"float":0.7432047},"o_double":{"double":0.5161241434329524},"o_bytes":null,"o_string":{"string":"m"},"o_enum":{"Level2_2_Enum2":"ZERO"},"o_date":{"int":556581263},"o_timemillis":null,"o_timemicros":null,"o_timestampmillis":{"long":5145842341114298483},"o_timestampmicros":{"long":-5608670817598118264}},{"r_boolean":true,"r_int":1408577026,"r_long":-6095117215127462400,"r_float":0.64178056,"r_double":0.7197730341321612,"r_bytes":"½51,±â8sý®","r_string":"jloht","r_enum":"ONE","r_date":-1746726207,"r_timemillis":-372102979,"r_timemicros":1904602749246610193,"r_timestampmillis":-6774608594860384307,"r_timestampmicros":-2250281375943093388,"o_boolean":{"boolean":false},"o_int":{"int":-534730455},"o_long":{"long":-3328179635712220326},"o_float":{"float":0.39229912},"o_double":{"double":0.9572253792798009},"o_bytes":null,"o_string":null,"o_enum":{"Level2_2_Enum2":"ONE"},"o_date":null,"o_timemillis":null,"o_timemicros":{"long":-8376045232806143598},"o_timestampmillis":{"long":-7495452494945727058},"o_timestampmicros":{"long":-1197199668891135172}},{"r_boolean":true,"r_int":-743721768,"r_long":245516688178660848,"r_float":0.038478434,"r_double":0.10614138003236573,"r_bytes":"\u001Fª°·\u001FuqZ‹æG”j„\u001F","r_string":"wwujfaxl","r_enum":"TWO","r_date":-1177082667,"r_timemillis":2047848161,"r_timemicros":2401853682974187926,"r_timestampmillis":-6462521302491525632,"r_timestampmicros":-863441458482351911,"o_boolean":null,"o_int":{"int":573075092},"o_long":null,"o_float":null,"o_double":null,"o_bytes":{"bytes":"Éø=«AÈd\u001C ŸóÌ8ý„"},"o_string":null,"o_enum":{"Level2_2_Enum2":"ONE"},"o_date":{"int":-1717093777},"o_timemillis":null,"o_timemicros":null,"o_timestampmillis":null,"o_timestampmicros":{"long":-879473458241730048}}],"o_boolean":null,"o_int":{"int":-1721079223},"o_long":null,"o_float":{"float":0.98682326},"o_double":{"double":0.6221214732159296},"o_bytes":{"bytes":"ñ„ë^#¸Í’¬"},"o_string":null,"o_enum":null,"o_date":{"int":1672242267},"o_timemillis":{"int":360974933},"o_timemicros":{"long":2991083323648250785},"o_timestampmillis":{"long":-3074673986616041933},"o_timestampmicros":{"long":1043655058827700016}},{"r_boolean":true,"r_int":-411690682,"r_long":-129768691029637253,"r_float":0.36042207,"r_double":0.3663985125569883,"r_bytes":"ý=\tk«–","r_string":"imygvi","r_array":[{"r_boolean":false,"r_int":464557120,"r_long":-3459170440404584564,"r_float":0.45874983,"r_double":0.8141545837789355,"r_bytes":"ѲÖï]eS","r_string":"watq","r_enum":"TWO","r_date":699591021,"r_timemillis":-222540672,"r_timemicros":-6227429936642822335,"r_timestampmillis":-2397655543062363240,"r_timestampmicros":7631260436808733608,"o_boolean":null,"o_int":null,"o_long":null,"o_float":{"float":0.86046964},"o_double":null,"o_bytes":null,"o_string":{"string":"xyifvmo"},"o_enum":{"Level2_1__1_Enum2":"TWO"},"o_date":null,"o_timemillis":null,"o_timemicros":null,"o_timestampmillis":{"long":-6100930400542166357},"o_timestampmicros":{"long":-5391407211078046492}},"r_enum":"TWO","r_date":1936666528,"r_timemillis":527917903,"r_timemicros":-3514486552521428176,"r_timestampmillis":7944791376949745398,"r_timestampmicros":-9057071818394175597,"r_array":[{"r_boolean":false,"r_int":-984512522,"r_long":8226591074551013251,"r_float":0.94116294,"r_double":0.35911773210610476,"r_bytes":"<","r_string":"rlumsfnachamev","r_enum":"ONE","o_boolean":null,"o_int":null,"o_long":{"long":-8263484700430169895},"o_float":null,"o_double":{"double":0.271583484230572},"o_bytes":null,"o_string":{"string":"ivubdlgy"},"o_enum":null,"o_date":null,"o_timemillis":null,"o_timemicros":{"long":-5125081626742603772},"o_timestampmillis":{"long":8244624572790432096},"o_timestampmicros":{"long":3367741994143839619}}]},"r_enum":"ONE","r_array":[{"r_boolean":true,"r_int":-1845647799,"r_long":8525203746912008892,"r_float":0.25862062,"r_double":0.7179358680611383,"r_bytes":"ù²Ü&ëµGUî\u001A","r_string":"mgvxqbta","r_array":[],"o_boolean":null,"o_int":null,"o_long":null,"o_float":{"float":0.4377092},"o_double":{"double":0.4381412454199112},"o_bytes":{"bytes":"\u001Ek\u00142€º¨ˆ"},"o_string":{"string":"cwuibq"},"o_enum":{"Level1_2_Enum2":"ZERO"},"o_date":{"int":-1970042782},"o_timemillis":{"int":1939596287},"o_timemicros":{"long":3690618989022395123},"o_timestampmillis":null,"o_timestampmicros":{"long":2612597735117880569}},{"r_boolean":true,"r_int":-2045292709,"r_long":2199810095994546790,"r_float":0.7162038,"r_double":0.30822531264833997,"r_bytes":"µ'»h;¥p","r_string":"rkxxhxyusfc","r_array":[{"r_boolean":false,"r_int":1497398234,"r_long":6577689540805367753,"r_float":0.78785527,"r_double":0.9660941817860473,"r_bytes":";·Gƒí½\u0012Ö\t1","r_string":"sfhqljcxqx","r_enum":"ONE","r_date":333922332,"r_timemillis":-442587932,"r_timemicros":-4516555255891134610,"r_timestampmillis":6507375090705991052,"r_timestampmicros":-6036463902352086333,"o_boolean":{"boolean":false},"o_int":{"int":-1796191716},"o_long":null,"o_float":null,"o_double":null,"o_bytes":{"bytes":"ïËÖ>ò\u000B\u0017îÿ"},"o_string":null,"o_enum":null,"o_date":null,"o_timemillis":null,"o_timemicros":null,"o_timestampmillis":null,"o_timestampmicros":null},{"r_boolean":false,"r_int":-1890961858,"r_long":-3501165780188812646,"r_float":0.69879794,"r_double":0.9406722423017869,"r_bytes":"ææ\u000ENÓ\u0011=øþ‰·Á{8","r_string":"h","r_enum":"TWO","r_date":1642354650,"r_timemillis":-1781504973,"r_timemicros":6440962881309396063,"r_timestampmillis":1509552039168335895,"r_timestampmicros":7411800267559134399,"o_boolean":{"boolean":false},"o_int":{"int":1204795329},"o_long":null,"o_float":{"float":0.5038597},"o_double":null,"o_bytes":{"bytes":"Wã†5ÕI\u001Fr"},"o_string":null,"o_enum":{"Level2_2_Enum2":"ZERO"},"o_date":null,"o_timemillis":{"int":462643733},"o_timemicros":{"long":-3334041083164913320},"o_timestampmillis":{"long":2614402076302964494},"o_timestampmicros":{"long":3298688417850863886}},{"r_boolean":true,"r_int":1335985109,"r_long":-7135681233727991983,"r_float":0.4385656,"r_double":0.5385275338881647,"r_bytes":"'nۂâ","r_string":"nv","r_enum":"ONE","r_date":-527910146,"r_timemillis":857519471,"r_timemicros":867910049116099087,"r_timestampmillis":-5116893581555656769,"r_timestampmicros":-8343332206790912392,"o_boolean":{"boolean":false},"o_int":{"int":1699231552},"o_long":{"long":4519831139354690843},"o_float":null,"o_double":null,"o_bytes":null,"o_string":null,"o_enum":{"Level2_2_Enum2":"ONE"},"o_date":{"int":1005452048},"o_timemillis":{"int":1255915507},"o_timemicros":{"long":-3309815305089836064},"o_timestampmillis":null,"o_timestampmicros":null}],"o_boolean":{"boolean":true},"o_int":null,"o_long":{"long":-4575541698995403461},"o_float":null,"o_double":null,"o_bytes":null,"o_string":{"string":"df"},"o_enum":null,"o_date":null,"o_timemillis":null,"o_timemicros":null,"o_timestampmillis":{"long":-2815414070701673041},"o_timestampmicros":null},{"r_boolean":true,"r_int":2070791175,"r_long":2923289554674781115,"r_float":0.9103394,"r_double":0.5015840867063083,"r_bytes":"ۏ\buó²?û‘Û”\u0006","r_string":"upbwvtivjr","r_array":[{"r_boolean":true,"r_int":129419344,"r_long":-4456351266517778752,"r_float":0.18054098,"r_double":0.48018386816253367,"r_bytes":"","r_string":"aac","r_enum":"ONE","r_date":-1143114914,"r_timemillis":1381373662,"r_timemicros":-5870200920173390153,"r_timestampmillis":-1549104981109451376,"r_timestampmicros":2552598866259239092,"o_boolean":null,"o_int":{"int":1415971174},"o_long":null,"o_float":{"float":0.85392296},"o_double":null,"o_bytes":null,"o_string":{"string":"ijwawqimvxroxbkoovbjjntqcsvdmstauntrwmbsduymkfpjvsgouxdrdrtayyaxrktgodxeigotogfbhcbysrlrqifonkfvfmsxthfyhlfnjvtvwcleqswopomqxqntpnapuwfvjxnlvfkgsfbadyliqirofoluhesxviwppidbvokqsvjpsumclsaqhcoqiquiynxdgbnqvfjlygnlelelgbwcyqgujvqqpearosvpwlkldmsifdofrjpsijjvnpuggjqblgdkpkrlegiocxkareacmgpqtessfretocrftcgwhcrdgravyisvegugygulvjnuboaqlilwquqcrgaldeqhudlqvkusxwpaipcxwysggvroodlwrdhgnlupfstrqbtlivnobyuuxbcwfkwsokagfdhyjgfstsbagtlxwrwajsyvqcwgiaanfephvlpjknmqmdhrdxhrkdyytdjaosnwwtkacoielurefvhrtfxqjmbawlhbxcgjyivimsomribkxufthllftpcdjmflcroebysysmmrwtvntifhqxmbqxvxhrobtmgvbejepgpumnrhtmvnqaxbbevftafmoyafwkionlljeovokgvabjnvrdaunhjleoqppmtjbavlvmiqvbrjqbcxayqsudyjesbueqqchtgmtmbrlgepudcxdahvgvyglswyxblaquxrfaconunfejkabxlqivomfxidrhqxxyrscrqdoeakbeqrcqwpuoteerwinahhqyvprerwuxjmqqymonflnbervvusjyrmqhpyesfvfnoligbxohtffsviqtbhyhjvhawxahhtupfvlupqxdwfmlhtkddjwrnaeyoqgvejncxgqaempqwjlsovtuinqdybmkjxexclwwqxjwpedaosewsxbmlefwmpoepiyyrmvxlhjhjmigtnfmofnclmkabjiggtdypbowwakeyujwdjkacgaviirmniolfajwvnfutqhqilqmjrtcylgbyfxskbppwtufatbtfkudciuebdbxvtkuihpeeabdnyhsgbdpnkvcrhhpwjqogmuqlqwffghsnpvruunfynehmnceuedolflynironhdfovqxnffsmorxsnytaqtrcssbntxetcferrchcyxpijfpgkjmddsqyjbjpyheqlncfohncopvwcioakphpdwbparkidxkodqajkaewakyuqngjymhmjlrvjlqnptpwtikunoidhuwvwofxulbautqawmhchjlukrcdvaeupuxhkgledeqlqyhrykotijavxkhcfodvwghxjwnqjmntybqvsqivuymisewtevgrxdyqaearjipletynqahqiuspqqdjwaxeuuqsqlrouabaqpoxwdxcwmcmypdlpueetmqptuxhycwhhkmiwxathppgwilyopeaqnthlybayeerkaugtfpgbepmykolrbmgwbxiwbiuhyuppsqepftmsomqolvyemthgebrqvruqpmmcynvleassljaexmlxxkxgtjmfixbihxsooqadfmjtbtuxdwyocqsoxvgpahfthgfbgpdvvhuyvkypmoehcfwhojkfrrjqwbvngaqmvsfdlcldpiripodqxysalekylpwcmhnbwlffjmifojjgclylpdpfharfwmbplqfcljrxndpnvlxyxsjabibfntewgksefgpprrxcdmbaibymoosyboggmntnktoogggxoxtagtccqntshncjcciamikwjpomlbagfflrygjfoeuqfnkqvtltmiguamhnnnwcjxegfkbfenvyadbsbrdvnbgxxbywqnnjlmtsonmnxjoxsybtqwtjccmntxrglmcgiehceyoxbdnpbkjjfqfxljdrlmxxsaxgldtcnojrlsbymsjutrosgsyxjbekiqcwfhefoddjsiapbpugatqhvkblcwwohmxvymdehijdlyqtenifwqnmnrluqbldchetisjlplgmvyvrqsiimdypirrqvhgaknokejpenggnpjtvxbsxhjjuyxpojpmgqqkhgrxttkuclwopkrilgpqtmdmnmshflxnjlcdembuabieuaqswagfmswgymdxtwasfaufjnnbtiqmqotxplqafkwbooqjjskohaxvntysihjsnhasxppnmalawnapextwnwgjhiwkynvmlufllfkivpnbiuscbayppyxkslckwphqymwlgcdjbsbkioceuvlxmqhhpautvghkynjtcomkhfrrrdxpadwdjkhwsrtvmodtexlgrusffksrcnrtlgskjiidlrcnomwcpfvnkpnjmoxjvekjpdoshhdimjjabovmxqyayibpwvbvukecgxsqhhximlkplctweoorrlbrsuinnsxswilyipxhnsteaqbnbkvgcemflcafpfgalgusrghrmlgcdnojotmscsxihhogyfpamjiypwnlmwwiksjfentlmvyesopyblbuwcyckilasrcahmjemmcyejymbjirdxcfeyeaifdpisefmkrdhsfvjlejsablaaiywvumgxxdhxlwvrriokefmuxyilhfrtpunasalnktnknukcwemlvuwbypjaikmojyduhemtsntqgptgukjesrefstqcumeguskaorocbhyykoblrjboerrbqyppdtiusdsyjleucyjytexrsbitjogkgkibsqdmgxx"},"o_enum":{"Level2_2_Enum2":"ZERO"},"o_date":{"int":1110584945},"o_timemillis":{"int":-1143975098},"o_timemicros":{"long":-5210017017117293477},"o_timestampmillis":null,"o_timestampmicros":null},{"r_boolean":true,"r_int":1170801342,"r_long":-5448053601752658884,"r_float":0.16933966,"r_double":0.48981618105758384,"r_bytes":"¶²3hr›ÞŽ","r_string":"bwwqr","r_enum":"TWO","r_date":-957321828,"r_timemillis":1063743478,"r_timemicros":-3705468617909406487,"r_timestampmillis":-3187161380498595019,"r_timestampmicros":2118209925069892508,"o_boolean":null,"o_int":null,"o_long":null,"o_float":{"float":0.19757032},"o_double":null,"o_bytes":{"bytes":"ÓØԏj1q—ô¨q{£"},"o_string":null,"o_enum":{"Level2_2_Enum2":"ONE"},"o_date":null,"o_timemillis":null,"o_timemicros":null,"o_timestampmillis":null,"o_timestampmicros":{"long":-2257088815730893422}}],"o_boolean":null,"o_int":{"int":65638862},"o_long":null,"o_float":null,"o_double":{"double":0.2876698094572825},"o_bytes":null,"o_string":{"string":""},"o_enum":null,"o_date":null,"o_timemillis":{"int":471573898},"o_timemicros":null,"o_timestampmillis":null,"o_timestampmicros":null},{"r_boolean":false,"r_int":1452370505,"r_long":3060151740765377684,"r_float":0.36213148,"r_double":0.4807255904310185,"r_bytes":"ɯ‰m»¿\u0014F\tX<)","r_string":"jckddfq","r_array":[],"o_boolean":null,"o_int":null,"o_long":null,"o_float":null,"o_double":{"double":0.0060324627241878925},"o_bytes":null,"o_string":{"string":"ipkrge"},"o_enum":{"Level1_2_Enum2":"TWO"},"o_date":null,"o_timemillis":{"int":-1521859075},"o_timemicros":null,"o_timestampmillis":{"long":6473132428574104962},"o_timestampmicros":{"long":-4245414723225307358}},{"r_boolean":true,"r_int":-1498040897,"r_long":-1326915740764513852,"r_float":0.22681737,"r_double":0.1804824341152641,"r_bytes":"óÙCÎE\u001D","r_string":"dctimp","r_array":[],"o_boolean":{"boolean":true},"o_int":null,"o_long":{"long":8635281644059192238},"o_float":null,"o_double":null,"o_bytes":{"bytes":"Åt®\u001D'”•ð`bLÏN¬"},"o_string":null,"o_enum":{"Level1_2_Enum2":"ONE"},"o_date":{"int":1593254581},"o_timemillis":{"int":1671894210},"o_timemicros":null,"o_timestampmillis":{"long":3905924853823689953},"o_timestampmicros":null}],"r_date":-1471315474,"r_timemillis":27758550,"r_timemicros":-641977731803585484,"r_timestampmillis":-2767812391257846924,"r_timestampmicros":-4126037743663808884,"o_boolean":null,"o_int":{"int":-1032622468},"o_long":null,"o_float":null,"o_double":null,"o_bytes":null,"o_string":{"string":"ru"},"o_enum":{"Enum2":"TWO"},"o_date":{"int":-333517539},"o_timemillis":{"int":1406803571},"o_timemicros":null,"o_timestampmillis":{"long":2320947946993470220},"o_timestampmicros":{"long":1876482303641448848}} -{"r_boolean":false,"r_int":-2047990400,"r_long":1472149794926654300,"r_float":0.8391824,"r_double":0.5783762121178145,"r_bytes":"¼\u0013:ÂþT\u0001]¾—h¯\\","r_string":"wmbl","r_record":{"r_boolean":true,"r_int":-1048971395,"r_long":-5879122145750030746,"r_float":0.036905885,"r_double":0.014463647156799486,"r_bytes":"\u0004¿","r_string":"hhfqktsneblpdje","r_record":{"r_boolean":true,"r_int":-819854980,"r_long":-1678550358725853869,"r_float":0.6119433,"r_double":0.764484902832798,"r_bytes":"¶¦Œ\u00113\u000FNï\u0003","r_string":"uqubbiqtrphwo","r_enum":"ONE","r_date":-820427949,"r_timemillis":1008273730,"r_timemicros":8351641284540026990,"r_timestampmillis":9221221830543699940,"r_timestampmicros":8418493150911451863,"o_boolean":null,"o_int":null,"o_long":null,"o_float":{"float":0.7074917},"o_double":null,"o_bytes":{"bytes":"è\u0001N¦¡!nºÛ7°\u0010"},"o_string":{"string":"cmtwy"},"o_enum":null,"o_date":{"int":1917653565},"o_timemillis":null,"o_timemicros":{"long":8085766968923723731},"o_timestampmillis":null,"o_timestampmicros":{"long":8109886982607653392}},"r_enum":"ONE","r_date":-1926243675,"r_timemillis":1226157365,"r_timemicros":1424059459022289841,"r_timestampmillis":-2879200422153002330,"r_timestampmicros":-7667971261233596408,"r_array":[{"r_boolean":true,"r_int":-20867463,"r_long":4613237236170934872,"r_float":0.53971875,"r_double":0.28121321992311654,"r_bytes":";ºfUõ\u001DéäpËö²\u001B¤0\u000314ͶR\t=","r_string":"jlpkbqhceasvtashrqrbmyfbrgjcxalntbplxepkbrhlcqnlssivcrsgpytcgvidxdtskwhgwtkcrmltkerjprcm","r_enum":"ZERO","o_boolean":{"boolean":false},"o_int":{"int":1692859772},"o_long":{"long":8955992224038438747},"o_float":{"float":0.051547706},"o_double":{"double":0.1385652157526519},"o_bytes":null,"o_string":null,"o_enum":null,"o_date":{"int":-2017602453},"o_timemillis":null,"o_timemicros":{"long":2856822896981796524},"o_timestampmillis":null,"o_timestampmicros":null},{"r_boolean":false,"r_int":2045079540,"r_long":-32020210326343843,"r_float":0.84198785,"r_double":0.8479247038213329,"r_bytes":"–»ì\r","r_string":"svmudoannfuu","r_enum":"TWO","o_boolean":null,"o_int":{"int":-1170241136},"o_long":{"long":682730888222205847},"o_float":{"float":0.08780986},"o_double":null,"o_bytes":null,"o_string":{"string":"toyxvy"},"o_enum":{"Level2_1__2_Enum2":"ZERO"},"o_date":{"int":932528114},"o_timemillis":null,"o_timemicros":null,"o_timestampmillis":null,"o_timestampmicros":{"long":523038283005029346}},{"r_boolean":true,"r_int":-1483106519,"r_long":-1841056669604873202,"r_float":0.25591314,"r_double":0.4551723125068431,"r_bytes":"±å\t\u0007","r_string":"bhkeqmhjmysaiehggptglgwdsxutphnphwijyvcpmtejvpgguohbunrjejkumttraqyosbowwbnvbdybwhetvtvdqsgnhgedhuwqapqwiptibukdsoqhkytnohvlcaofvqitfxpuvvyxpcsbkotnfmsdqymkgduyhoxjdukjgbthyvktdynkibmbdbburnkyayynhodbvahcjbapfmidaorhyjgkcmehmxhrrwougrxoxffuxejidjpdaqximtfndblaincvhgigvuxhrxypgspbhupaioftraqhhvlfgbrchhdsvsvixcqlddbiokxunqnltxwegmaghgdqxkineiiqdcwxbivuqsoqwvalonlcagylkngbpgtdpoqygqietifpoiboboubwnktyhkhtpultvsanjrkicqioqbphwkocvprpmeiqalbevkphdwsappgrwnegwufaibhakgjbtimarypgpljppivobwafxtrnrehckbjyyrwuiultiacvenjwisminjrlcxlrjbtdnodtcvbtgfqsavlltcfawbwkbkoyecrlkvuajimxhvl","r_enum":"ZERO","o_boolean":{"boolean":false},"o_int":null,"o_long":{"long":8480704924782520036},"o_float":null,"o_double":{"double":0.7170915040702277},"o_bytes":{"bytes":"Kе"},"o_string":null,"o_enum":null,"o_date":null,"o_timemillis":null,"o_timemicros":{"long":7119271231595594309},"o_timestampmillis":null,"o_timestampmicros":{"long":-2356795023948448134}}]},"r_enum":"ZERO","r_array":[{"r_boolean":true,"r_int":-642773908,"r_long":5036038752064388114,"r_float":0.10584909,"r_double":0.08280154167231668,"r_bytes":">™\u0015#‹ù˜^Â\u0003î\u0016Iæ\u00042X¸¹Ôc\u0007éæI¡µ£)t\"ø\u0019IUà","r_string":"gyuhs","r_array":[{"r_boolean":true,"r_int":1750248936,"r_long":7535307877488073320,"r_float":0.7489381,"r_double":0.5983729246720676,"r_bytes":"QI\u0002DþêÁK’\u0019€","r_string":"syigdjlmd","r_enum":"TWO","r_date":1595051189,"r_timemillis":912827046,"r_timemicros":-4097756990395221519,"r_timestampmillis":294647744665603747,"r_timestampmicros":6084252189473449378,"o_boolean":{"boolean":true},"o_int":{"int":-2069073441},"o_long":null,"o_float":null,"o_double":null,"o_bytes":null,"o_string":{"string":"evnmcogownj"},"o_enum":{"Level2_2_Enum2":"ONE"},"o_date":{"int":-2085841588},"o_timemillis":null,"o_timemicros":{"long":4537543366958850281},"o_timestampmillis":{"long":2623490093187960407},"o_timestampmicros":null}],"o_boolean":null,"o_int":{"int":-1630522822},"o_long":null,"o_float":{"float":0.43353993},"o_double":{"double":0.5757099333942568},"o_bytes":null,"o_string":{"string":"fqyjitvh"},"o_enum":{"Level1_2_Enum2":"ONE"},"o_date":{"int":1818013935},"o_timemillis":{"int":1077874483},"o_timemicros":null,"o_timestampmillis":{"long":-7115299407560691019},"o_timestampmicros":null},{"r_boolean":true,"r_int":1412151408,"r_long":3089424207188819232,"r_float":0.39596152,"r_double":0.37085300671165666,"r_bytes":"xã","r_string":"i","r_array":[],"o_boolean":null,"o_int":null,"o_long":{"long":-891713745139564573},"o_float":{"float":0.056075215},"o_double":null,"o_bytes":{"bytes":"m"},"o_string":{"string":"lchnexjal"},"o_enum":{"Level1_2_Enum2":"TWO"},"o_date":null,"o_timemillis":{"int":761122625},"o_timemicros":null,"o_timestampmillis":null,"o_timestampmicros":null},{"r_boolean":true,"r_int":-1441228991,"r_long":-6342329258991753830,"r_float":0.19325471,"r_double":0.8811261919016607,"r_bytes":"\u001E>½•/","r_string":"uimxggj","r_array":[{"r_boolean":false,"r_int":1534216202,"r_long":6595475127231068161,"r_float":0.8184713,"r_double":0.3400523873342386,"r_bytes":"[›•Zà­\u001B\u001C¼(m•ƒ6¥","r_string":"g","r_enum":"TWO","r_date":-1740077164,"r_timemillis":136157980,"r_timemicros":-4020778024198545680,"r_timestampmillis":-1766932886492543249,"r_timestampmicros":-7139604605056094558,"o_boolean":null,"o_int":{"int":685987902},"o_long":null,"o_float":{"float":0.38242042},"o_double":{"double":0.22154828763069578},"o_bytes":null,"o_string":{"string":"n"},"o_enum":null,"o_date":null,"o_timemillis":null,"o_timemicros":null,"o_timestampmillis":null,"o_timestampmicros":{"long":-7048415989176724703}},{"r_boolean":true,"r_int":1228517955,"r_long":2298333229899652070,"r_float":0.53324634,"r_double":0.36659478350491537,"r_bytes":")R=©\u0018","r_string":"cao","r_enum":"ONE","r_date":359209114,"r_timemillis":668185502,"r_timemicros":-8755438463615055025,"r_timestampmillis":-306752345076021905,"r_timestampmicros":-6803472978173197954,"o_boolean":null,"o_int":null,"o_long":{"long":953154874372710218},"o_float":{"float":0.26739466},"o_double":{"double":0.2874224838774877},"o_bytes":null,"o_string":{"string":"rmsbglbaxxcxygy"},"o_enum":{"Level2_2_Enum2":"ZERO"},"o_date":null,"o_timemillis":{"int":1585266458},"o_timemicros":null,"o_timestampmillis":{"long":4605415816261296482},"o_timestampmicros":null},{"r_boolean":false,"r_int":120699003,"r_long":2584890499089483646,"r_float":0.14061385,"r_double":0.5144135942339558,"r_bytes":"","r_string":"snuyigkxolwmtfp","r_enum":"ONE","r_date":-835285976,"r_timemillis":-1516399467,"r_timemicros":5791027112254153977,"r_timestampmillis":-3889336848800875503,"r_timestampmicros":-6248331424537106269,"o_boolean":null,"o_int":null,"o_long":{"long":8433636698852482307},"o_float":{"float":0.6568987},"o_double":null,"o_bytes":{"bytes":"cc¬\"ßûg…ìMtÑ,"},"o_string":{"string":"lricgxd"},"o_enum":{"Level2_2_Enum2":"ZERO"},"o_date":{"int":-1504397932},"o_timemillis":null,"o_timemicros":null,"o_timestampmillis":{"long":-8661810189776109363},"o_timestampmicros":{"long":5392941048748052876}}],"o_boolean":{"boolean":false},"o_int":{"int":89643265},"o_long":null,"o_float":null,"o_double":{"double":0.5993082935928357},"o_bytes":null,"o_string":null,"o_enum":{"Level1_2_Enum2":"ONE"},"o_date":null,"o_timemillis":{"int":743930867},"o_timemicros":null,"o_timestampmillis":null,"o_timestampmicros":{"long":-7144456819242155767}},{"r_boolean":false,"r_int":-946514585,"r_long":-4220959708887120765,"r_float":0.027145028,"r_double":0.924063400784398,"r_bytes":"é","r_string":"cvmxqbfiqjliiro","r_array":[],"o_boolean":{"boolean":false},"o_int":null,"o_long":{"long":-2945662329848704648},"o_float":{"float":0.44506937},"o_double":null,"o_bytes":{"bytes":"ý‘\u001EOÊ=GÙw¾\u0010"},"o_string":{"string":"kxqcls"},"o_enum":{"Level1_2_Enum2":"ONE"},"o_date":{"int":530536898},"o_timemillis":{"int":1008122556},"o_timemicros":null,"o_timestampmillis":{"long":7872753270937504227},"o_timestampmicros":null}],"r_date":107136794,"r_timemillis":-1317188209,"r_timemicros":-5120091856504580833,"r_timestampmillis":-8994722141906685169,"r_timestampmicros":-9114514254955757192,"o_boolean":null,"o_int":{"int":1969845594},"o_long":{"long":7595308156734298708},"o_float":{"float":0.027012646},"o_double":{"double":0.49093008146322725},"o_bytes":{"bytes":"\u0013˜À"},"o_string":null,"o_enum":null,"o_date":{"int":2122195122},"o_timemillis":null,"o_timemicros":{"long":-8890834136552576352},"o_timestampmillis":{"long":-7180257583969205033},"o_timestampmicros":null} -{"r_boolean":true,"r_int":-496236549,"r_long":-2430407208115156411,"r_float":0.53570145,"r_double":0.41034157906025504,"r_bytes":"x\u0018","r_string":"o","r_record":{"r_boolean":false,"r_int":-1315791737,"r_long":-2723798128955069840,"r_float":0.020949483,"r_double":0.24343573209540992,"r_bytes":"¼","r_string":"ks","r_record":{"r_boolean":false,"r_int":-1660206408,"r_long":-5455795431975841813,"r_float":0.913862,"r_double":0.5211141095251313,"r_bytes":"È\u0000êÞ","r_string":"bur","r_enum":"ZERO","r_date":-1998027366,"r_timemillis":376701285,"r_timemicros":6722356254566294108,"r_timestampmillis":4442288322573112965,"r_timestampmicros":419435658362112315,"o_boolean":{"boolean":true},"o_int":{"int":-51198827},"o_long":{"long":-5559593698909034744},"o_float":{"float":0.2196446},"o_double":null,"o_bytes":{"bytes":"Lógo<änQ«<Ä"},"o_string":{"string":"wtfghkkft"},"o_enum":null,"o_date":{"int":959641589},"o_timemillis":null,"o_timemicros":{"long":-5751928887852936459},"o_timestampmillis":null,"o_timestampmicros":{"long":-1769666788002552709}},"r_enum":"TWO","r_date":266624670,"r_timemillis":612857778,"r_timemicros":-7665745698285502002,"r_timestampmillis":-5776711953714344477,"r_timestampmicros":5855287644494735226,"r_array":[{"r_boolean":true,"r_int":160519419,"r_long":375980316948999336,"r_float":0.33358264,"r_double":0.5104295894714912,"r_bytes":"úÔ:\u001E*±ü<[øƒ‘Ð","r_string":"oea","r_enum":"TWO","o_boolean":{"boolean":true},"o_int":null,"o_long":null,"o_float":null,"o_double":null,"o_bytes":{"bytes":")x96®\\Û{öp\u0016\u001B"},"o_string":null,"o_enum":null,"o_date":{"int":-996544683},"o_timemillis":null,"o_timemicros":{"long":-1402537970213824709},"o_timestampmillis":{"long":7213836609196919361},"o_timestampmicros":{"long":-8880883443878269888}},{"r_boolean":false,"r_int":-1045103511,"r_long":6613618552008215644,"r_float":0.11193645,"r_double":0.05819996912022485,"r_bytes":"‘Nͽ§7›ô","r_string":"iyhmro","r_enum":"ZERO","o_boolean":null,"o_int":{"int":660368832},"o_long":{"long":-185849009319464739},"o_float":{"float":0.26524985},"o_double":null,"o_bytes":{"bytes":""},"o_string":{"string":"wvaoiubbmvuomidtgaemcyctrqvhjamrpvtvjsfigsxupgulasnbapnpupeqbghyimqgnlotxxk"},"o_enum":{"Level2_1__2_Enum2":"ZERO"},"o_date":null,"o_timemillis":{"int":892274932},"o_timemicros":null,"o_timestampmillis":{"long":686456682625347164},"o_timestampmicros":{"long":-4256693089374972329}},{"r_boolean":false,"r_int":-1630975122,"r_long":-4118456211155398807,"r_float":0.28992152,"r_double":0.30861975898000915,"r_bytes":"","r_string":"uryowukmej","r_enum":"TWO","o_boolean":null,"o_int":null,"o_long":null,"o_float":null,"o_double":null,"o_bytes":null,"o_string":null,"o_enum":{"Level2_1__2_Enum2":"ONE"},"o_date":{"int":-126709898},"o_timemillis":null,"o_timemicros":null,"o_timestampmillis":null,"o_timestampmicros":null}]},"r_enum":"ZERO","r_array":[{"r_boolean":true,"r_int":-330838515,"r_long":7324137001436604793,"r_float":0.3484347,"r_double":0.010780413019988777,"r_bytes":"ó\u0006¿OPã\u001BtÚ¯\n¼i","r_string":"xfqj","r_array":[],"o_boolean":null,"o_int":null,"o_long":{"long":-9045208143405307258},"o_float":{"float":0.54716897},"o_double":{"double":0.5065843951121365},"o_bytes":null,"o_string":{"string":"engyyf"},"o_enum":{"Level1_2_Enum2":"TWO"},"o_date":{"int":2007993817},"o_timemillis":null,"o_timemicros":null,"o_timestampmillis":{"long":482718314537046893},"o_timestampmicros":null},{"r_boolean":true,"r_int":-1252718134,"r_long":3146806954539442329,"r_float":0.7301423,"r_double":0.6582836552598794,"r_bytes":"\\’µ„¤[äfÏê","r_string":"rqngywmygegopmy","r_array":[{"r_boolean":false,"r_int":1767733082,"r_long":-1522259182893192511,"r_float":0.6788702,"r_double":0.8991936930728258,"r_bytes":"ޜ˜'Ã4à","r_string":"ejqrihafkmpocru","r_enum":"TWO","r_date":724205039,"r_timemillis":-1201181292,"r_timemicros":7353046978760073859,"r_timestampmillis":4315158163471778404,"r_timestampmicros":-7770353711805161244,"o_boolean":null,"o_int":{"int":-1542491051},"o_long":null,"o_float":null,"o_double":{"double":0.6332339762353474},"o_bytes":{"bytes":"[x"},"o_string":{"string":"yw"},"o_enum":{"Level2_2_Enum2":"ONE"},"o_date":null,"o_timemillis":null,"o_timemicros":null,"o_timestampmillis":{"long":2024871220571543074},"o_timestampmicros":null},{"r_boolean":false,"r_int":-884941500,"r_long":-6254762539373111064,"r_float":0.5076584,"r_double":0.44921772667709625,"r_bytes":"ÑÏh\u0002~|J\u0000ÒÝUîñ","r_string":"x","r_enum":"ZERO","r_date":-1761208776,"r_timemillis":648753218,"r_timemicros":2037306351475419380,"r_timestampmillis":6614832349784591626,"r_timestampmicros":2249576307077505780,"o_boolean":{"boolean":true},"o_int":{"int":-1102704365},"o_long":{"long":1894325692454955958},"o_float":{"float":0.30187285},"o_double":null,"o_bytes":null,"o_string":{"string":"fubnmcfeeawftjq"},"o_enum":{"Level2_2_Enum2":"ZERO"},"o_date":{"int":1236882711},"o_timemillis":null,"o_timemicros":{"long":-8529772089625002337},"o_timestampmillis":{"long":4780846890634708388},"o_timestampmicros":null}],"o_boolean":null,"o_int":null,"o_long":{"long":-5410326656225265824},"o_float":{"float":0.74460155},"o_double":{"double":0.454441610380653},"o_bytes":{"bytes":"’'ü£u\u0016\u0003¿qqˆ|\u0000£"},"o_string":null,"o_enum":{"Level1_2_Enum2":"ONE"},"o_date":null,"o_timemillis":null,"o_timemicros":null,"o_timestampmillis":{"long":-3752567852923277130},"o_timestampmicros":{"long":6394233230922885152}}],"r_date":-589426821,"r_timemillis":1592241614,"r_timemicros":-6266413663409401778,"r_timestampmillis":-3152560571718653747,"r_timestampmicros":3659141230317632001,"o_boolean":{"boolean":true},"o_int":{"int":2116564552},"o_long":null,"o_float":{"float":0.4427281},"o_double":{"double":0.13599393393244164},"o_bytes":{"bytes":"Å8ŠˆÖu/"},"o_string":{"string":"bynrr"},"o_enum":null,"o_date":null,"o_timemillis":{"int":1529854059},"o_timemicros":{"long":8271018204549458702},"o_timestampmillis":{"long":8853864036404384813},"o_timestampmicros":null} -{"r_boolean":true,"r_int":1642679655,"r_long":-5690707441079290215,"r_float":0.5519314,"r_double":0.4275586976006013,"r_bytes":"Ä.ý\u0018Ä!ø'š®K¾","r_string":"rbytnd","r_record":{"r_boolean":true,"r_int":-578923449,"r_long":3693339070660281273,"r_float":0.024540722,"r_double":0.20848326370949233,"r_bytes":"öo,÷ªìŸ Œý}o#Õþs\u001BÉ1^Ñý$UwK¥x×ÔôqÁv/ßÿ\u0011òT„\u0003þ@'}ŽÛâl%­wǶg\fèñH/¾\u0016B ù\\:¿žn'Ê7©Éd9uº7\u00015\u0006§","r_string":"bagcsc","r_record":{"r_boolean":true,"r_int":1631089283,"r_long":5114552001149217455,"r_float":0.3568185,"r_double":0.12312821381671579,"r_bytes":"","r_string":"ueqieabbjgndchk","r_enum":"ONE","r_date":1334643103,"r_timemillis":-279020245,"r_timemicros":-6314340746870469431,"r_timestampmillis":-4084104297146369889,"r_timestampmicros":7996904325871521254,"o_boolean":{"boolean":false},"o_int":{"int":-1850017774},"o_long":null,"o_float":null,"o_double":null,"o_bytes":null,"o_string":null,"o_enum":null,"o_date":null,"o_timemillis":null,"o_timemicros":null,"o_timestampmillis":null,"o_timestampmicros":null},"r_enum":"TWO","r_date":1685849129,"r_timemillis":1404952143,"r_timemicros":1660469688993337160,"r_timestampmillis":-6925800385889485059,"r_timestampmicros":-1593849010198864607,"r_array":[{"r_boolean":false,"r_int":1034213953,"r_long":5473284956049813706,"r_float":0.5492584,"r_double":0.8127413248097926,"r_bytes":";ÃÀ<","r_string":"","r_enum":"ONE","o_boolean":null,"o_int":null,"o_long":{"long":-1293311029604480191},"o_float":null,"o_double":{"double":0.4905231770167876},"o_bytes":{"bytes":"Ø ³Ð$÷{\u001BêsÇP"},"o_string":{"string":""},"o_enum":{"Level2_1__2_Enum2":"ZERO"},"o_date":null,"o_timemillis":null,"o_timemicros":null,"o_timestampmillis":{"long":-7799702190373605284},"o_timestampmicros":null}]},"r_enum":"ZERO","r_array":[{"r_boolean":true,"r_int":-1873663469,"r_long":5602447285649088968,"r_float":0.009467185,"r_double":0.03389369029661937,"r_bytes":"1«oå","r_string":"wetrkilgtr","r_array":[{"r_boolean":true,"r_int":44202990,"r_long":4048560004083191952,"r_float":0.76891106,"r_double":0.7088304305363773,"r_bytes":"‚=ºß½‡¼N”ækV”","r_string":"rxcbampokcyglyxtcqqdytepmseixnswgjebfxcjnivnuknjqsquynasxkdtxqossymdxqeaceqqassdgvirbcrjklrdelnxbxykudpldwnrodctjxiyjmwfxopcewryabjdkxpbffvlmdxpnvvbrumippegkytpixmqdhrktmtbmfywmqqjcrbyqocbrljvymmwojsuspahwpbishuixrhulcdyqphujnganmyglasqjidetkgglyqwlwhieyapdjdnllkjsoqmqhjybtoyhjqxnpjjdrhqsdqqneihrpcwpcjybkhtyjsabcwbmcowwbrvaoplyufnjsmadbacvcipxcmskhyoikumcnrlnynauuymfpwvglmqslfmbdonxfhqbvpjpchdnqotphfoscdmtdvkyvomwhitexnunwxitmcujmorulaosavnmkdtqwifjfttpubttnfrpijxvxnuxwagaebqixhplpmnwudgebgxddqchagihjurcgbjbyyyasjovbdsybplcceinfsnvrctyxtcfhahgfmalufdqmqwolantglivpocbtbflaamugapjqciidncyusujpbaveaopkqourxanlbvyesglnxumdbuodkhnwxtdalxlsflbbewdfxcowdccdinjqekqrormrspptgkcqfecchepvyvoqugiylbvrmskwokhpglubbtwtbmxgerwaffmgdgsagyuuuqdogpccclkqahhndukhrskxgfjgdchnvcyysbugcnveyijpmykfutnsvpdospacxldiooiywqlftcfldgsjqluxawrvmbgqnxbdirtsrqutovncwuidgebmibfuyfvfiobgodjqblbkqvcopgoxfswgnoqhphdfwkbhemxsoalramdxfnotjlhtxjxyvkruydduoxclulyplawnrridbylfbnpxksfxtnmpkqrqsjxilbrgcjmnyqmpkypjvdnmwodgnglwysrdcvcvhlxdpdnbjvrohespryvtskcaxqyyqjdknenuakvgkjvhcaqegrjybltxdlqdtakfpbycivlgmwthmrievytdjhoghidemgkdlgiuwhajtnqmysjkbafrtvvppuvisoogoybghcqthcayxnvhnijyeuahvpnbvrvlsyenrkunmpkuahuifyghwgjpoxwyjwhpiendnxsgxvttjmfrsssdjccrmbpidjhfnaqlfaufaalripplqghxkofubfycvgjeobygsoduexwmhvqiqhsjiuuidoccumeteorildidxhmaytmkfalqixowvivplvwdaognqwjcfhyrxnmacbtugsahuarvkqlkvsfurvstqikjgejmmlxoitqawfgtywsiuwpwhhvmtcpgsdhnnoqudwlivlxqxfdoibjprhinytxbunrwdkonybkcainjcidvfjtvqtndculotlrxcjguetgjbodqnnupinbvvwyqerbgdfmuljxipinqvmduqhsfpqgcgkjnwmkbaxlcpsgptmrppqbweioesqfhwvnfqxtaowxanilhpdafoiilntyxiehrohohmjeorlogrpyllspblpyeinalvueseafsnowovqbqsimovgygyxrunnspajehbjhpqbwjrwxiuyhgfreohjddremalmecygirklgcjjoxpgdoshryjmvvdnhronjtjdufsgxagqqpmpbmktckqjxjtxkbvvtauwtyllmhhnshutjkxuhydspyqidrppjpgoabkioglpalaaeygblohsoblxvwlpdwgobhthdxaqriryalgnfowpfnuquhwgkaiwbubxnotgdhbwclbnbrvnajupfkrshgulsnipjqhtpojfwiqerrkygdgysjhlwnijktqghskojpyuabkrbeokpvtjysjraaidbfrsghpwghmyquqkueetvhkrlpbwfkwckniuuoauaesdbekwsptocmnbxeoroufwqhsallpatdrfwcwevmoipjvdoojelpnxwlhhebmwhqijqdfsmvqogarjcmetsjpmnxlfepwxeweugyamsfqdvkroartmrvrbhqraoevytdaaqtvsdtvyfsewlqxtrtinesqylcbhnnmsflsehsbdojpwhvoaciuvlppytikeqpnpuewlrcuopxthbnibrfrdwltqrgbbgpkghjhnjstuqleerjbudoxapnogvwufdkerxioalbdttectfnoujmgnnclgxinwhbwmagnyfrdbtjbdmfkbqicbdvowwjwdsxjbdtvuhocupxpfrcyaaxelnpsbmaysjjkewiauxpnrpkpkvgpqyqxxtbfoxwfnovpoycxjlsnlkwdmnmjyjtkucjhkhddmbnqirqyosoqbaugouulegfbmjtohgkjpwapbeyplqshtgxkgolnwnqchckfskwgikwdpwomgbdtloytadykyjappvogffgorpjatgocwfutytsedcpgqpoksudlcpeelvvhkewcsxbkxooywbcnreqokvolcjennyhbvjdqjyvymyfjyjilldogxmmrenicjohcumtgekwiuhwpelwrppeitixwipcijqdcdgawxpmjgngysnhhkdmfxemmtijgvofwprucftjfikcmuccvfadjktuwnfdseqoagoxuahnpjrspjsdrghapvwbbdfhuteemxrolgwjvxchgmhvvbywhprxfdfgasmrxhfyvfakbdfmhkdbhtdbbihobbpxlodlluxwcjhyrlavasyvqfqlobtmgfqfyqsowqlsyppballecskihxscnsbndiyykwutmiqpkvukyalxxsjdqlugagynxeuihntuyajwdesteeepsjihmvygomrsafwobploudkklvqkmckvltyuplixgxdrsoaoxduxkjcymlujqpvjejhqugavrwswrbvtvkopdluwmjtbnwqopsifhxrkyncgqqkdalqfviyjujkdpmiwiydioillbecx","r_enum":"ONE","o_boolean":{"boolean":false},"o_int":{"int":-1208228247},"o_long":{"long":-1359686614765286123},"o_float":null,"o_double":{"double":0.5427163569855901},"o_bytes":{"bytes":"v\"°\u0003mG"},"o_string":{"string":"rop"},"o_enum":{"Level2_1__2_Enum2":"ONE"},"o_date":{"int":-1407244557},"o_timemillis":null,"o_timemicros":null,"o_timestampmillis":{"long":5337905979424642269},"o_timestampmicros":null},{"r_boolean":false,"r_int":777127768,"r_long":8227103720103552521,"r_float":0.7124828,"r_double":0.2580245345598935,"r_bytes":"","r_string":"ymug","r_enum":"TWO","o_boolean":{"boolean":false},"o_int":null,"o_long":{"long":9160203543163628017},"o_float":{"float":0.7711341},"o_double":{"double":0.24241024687066637},"o_bytes":{"bytes":"18\u0018Ëù­¹"},"o_string":{"string":"mobdirg"},"o_enum":null,"o_date":null,"o_timemillis":null,"o_timemicros":{"long":5907292975991477999},"o_timestampmillis":null,"o_timestampmicros":{"long":-3333399313984828271}}]},"r_enum":"TWO","r_array":[{"r_boolean":false,"r_int":-1725659945,"r_long":7940432957508198997,"r_float":0.49993688,"r_double":0.20547156192829152,"r_bytes":"\u001D£³£Š®mLH~AæÒ°\u000F","r_string":"wevwxtl","r_array":[{"r_boolean":false,"r_int":-1587380535,"r_long":8450326441817240233,"r_float":0.005340755,"r_double":0.014090320413503443,"r_bytes":"Xà‰TO","r_string":"nhpxftvxgtydfoyybnvqqfqioikdqeprqhmehphvjgtqpmcyrsumrhpecdcyxixqoicbohrjskrsymkragsnxxlufpqhrrsnfxwkxfytoassobwyfqjemydtkmtucialweowrixuselaffuvyoicalawgxlqwqafiujuarrxcmuifdeoajmifkgjvbpqrbpblhuejnmtlmfaclicxdfcywxrtlqtkniiaya","r_enum":"ZERO","r_date":-348796997,"r_timemillis":-1698420936,"r_timemicros":-3618708414355688342,"r_timestampmillis":6545656279305696190,"r_timestampmicros":3425509035178375985,"o_boolean":null,"o_int":{"int":-1579858243},"o_long":null,"o_float":{"float":0.42446005},"o_double":null,"o_bytes":null,"o_string":null,"o_enum":{"Level2_2_Enum2":"ZERO"},"o_date":null,"o_timemillis":null,"o_timemicros":null,"o_timestampmillis":null,"o_timestampmicros":null},{"r_boolean":false,"r_int":-1689927662,"r_long":-5144344445677900727,"r_float":0.724377,"r_double":0.06931332441113702,"r_bytes":"ëézW‚÷\u0014DÉ Å\\jÐÝ","r_string":"by","r_enum":"ONE","r_date":-1810343060,"r_timemillis":800508197,"r_timemicros":2824326730828402655,"r_timestampmillis":-8725000176385159003,"r_timestampmicros":-6312198047600921816,"o_boolean":{"boolean":false},"o_int":{"int":1249494505},"o_long":{"long":17194891324172038},"o_float":null,"o_double":null,"o_bytes":{"bytes":"ŠJ—ëRRÿGDaYfo"},"o_string":{"string":"bfssytamrbdq"},"o_enum":null,"o_date":null,"o_timemillis":{"int":-1989104029},"o_timemicros":{"long":-5386197182714868204},"o_timestampmillis":null,"o_timestampmicros":{"long":-2562412766394270727}},{"r_boolean":true,"r_int":-1917449613,"r_long":2205627070171339265,"r_float":0.35521156,"r_double":0.8708120393767289,"r_bytes":" ÍbN\u0016rË\b‹)j‘y•Ï>¸7ÿޗk†a\u0002¾g\u000E®T®´ÖC0í\u001CIg÷]¢\u001DߏÃ\u001Ebúòñø¥ª\u0016MÍX\b½MÞIÎ$Í#9\u0002Dñמ\f‡Jœ\nD”žåDO)äV\u00162ˆÛ›À½‚š\t°âb³x)ävÏUö>\u001Au‡â×SŠ/\u000Eè\u0010Ž\u0012}Ü1óOu%ŠEqü\u0014ï-_Ñ6Iÿ§ä\thl6‡ˆÁ§7Bá9Òçàò\tU\u0012”","r_string":"lfaegetaed","r_enum":"ONE","r_date":-743878223,"r_timemillis":1348704706,"r_timemicros":4189376934078167428,"r_timestampmillis":-9165465181949632079,"r_timestampmicros":6800328629590812724,"o_boolean":{"boolean":true},"o_int":null,"o_long":null,"o_float":null,"o_double":{"double":0.633707944423508},"o_bytes":null,"o_string":{"string":"sjrki"},"o_enum":{"Level2_2_Enum2":"ONE"},"o_date":{"int":-1490188901},"o_timemillis":null,"o_timemicros":null,"o_timestampmillis":null,"o_timestampmicros":{"long":2675969284238917430}}],"o_boolean":null,"o_int":null,"o_long":{"long":-4019481934709856882},"o_float":null,"o_double":{"double":0.9809578590049728},"o_bytes":{"bytes":"h\u0001ÆsUß"},"o_string":null,"o_enum":{"Level1_2_Enum2":"TWO"},"o_date":null,"o_timemillis":null,"o_timemicros":null,"o_timestampmillis":null,"o_timestampmicros":null},{"r_boolean":true,"r_int":-34027639,"r_long":805096018199277410,"r_float":0.51994437,"r_double":0.6809608056933101,"r_bytes":"`¹Lò”FŸ‘À,ç","r_string":"dmxtouecwhy","r_array":[],"o_boolean":null,"o_int":{"int":-1265161901},"o_long":{"long":-5668885184443989947},"o_float":{"float":0.5682793},"o_double":{"double":0.837383785948457},"o_bytes":null,"o_string":{"string":"ky"},"o_enum":null,"o_date":{"int":1321099814},"o_timemillis":null,"o_timemicros":{"long":-7636177222606468266},"o_timestampmillis":{"long":234810248910057988},"o_timestampmicros":null},{"r_boolean":false,"r_int":1232880386,"r_long":957915837793328552,"r_float":0.11367059,"r_double":0.449591200269274,"r_bytes":"ŽÊ@","r_string":"qbhe","r_array":[{"r_boolean":false,"r_int":396230853,"r_long":-4747631295889283973,"r_float":0.4685216,"r_double":0.17869340595558558,"r_bytes":"2c¹µ©","r_string":"lhsdcnaxmyspsmu","r_enum":"TWO","r_date":-688451251,"r_timemillis":-1659450352,"r_timemicros":-1723176709571918528,"r_timestampmillis":5264345385373711175,"r_timestampmicros":-5908250765779937230,"o_boolean":{"boolean":false},"o_int":{"int":-1425847111},"o_long":{"long":-5614097939913262674},"o_float":{"float":0.45824277},"o_double":null,"o_bytes":{"bytes":"ÕûŒª\u001D¤"},"o_string":{"string":"lpea"},"o_enum":{"Level2_2_Enum2":"ZERO"},"o_date":{"int":1452122661},"o_timemillis":null,"o_timemicros":null,"o_timestampmillis":null,"o_timestampmicros":null}],"o_boolean":{"boolean":false},"o_int":{"int":63432872},"o_long":{"long":2061246456270201770},"o_float":null,"o_double":null,"o_bytes":null,"o_string":null,"o_enum":{"Level1_2_Enum2":"TWO"},"o_date":null,"o_timemillis":{"int":-741034489},"o_timemicros":{"long":6742893212211534458},"o_timestampmillis":null,"o_timestampmicros":null},{"r_boolean":true,"r_int":1001540621,"r_long":-8234404537081489617,"r_float":0.7785573,"r_double":0.48540939652644777,"r_bytes":"±û¦ÍI¡¯$","r_string":"lnsd","r_array":[{"r_boolean":true,"r_int":-257594746,"r_long":3543482129153920515,"r_float":0.8590755,"r_double":0.3820479248526095,"r_bytes":"\u0018T`‹™\u001Dg\u0017","r_string":"cofumqmfvdns","r_enum":"TWO","r_date":-214505899,"r_timemillis":-693830708,"r_timemicros":2152630319713825529,"r_timestampmillis":101317314836408824,"r_timestampmicros":-5823061668339907139,"o_boolean":null,"o_int":null,"o_long":{"long":8199563379200236590},"o_float":{"float":0.8282737},"o_double":null,"o_bytes":{"bytes":"B¸\u0016D0\u0014‡?s"},"o_string":{"string":"dsmqfxlwixylklyejrqevfqmagwbwmdmsueidattpfrfxnppoaxnfxuqdxqbhrq"},"o_enum":{"Level2_2_Enum2":"ZERO"},"o_date":null,"o_timemillis":null,"o_timemicros":null,"o_timestampmillis":{"long":7946847987927146485},"o_timestampmicros":null}],"o_boolean":{"boolean":false},"o_int":{"int":526227178},"o_long":null,"o_float":{"float":0.4875148},"o_double":null,"o_bytes":null,"o_string":{"string":""},"o_enum":{"Level1_2_Enum2":"ONE"},"o_date":{"int":862705460},"o_timemillis":{"int":-1639075526},"o_timemicros":{"long":-5096730842106507350},"o_timestampmillis":null,"o_timestampmicros":{"long":6211075422522109558}}],"r_date":1154165994,"r_timemillis":2130114560,"r_timemicros":8548215900490024163,"r_timestampmillis":1022518021817213183,"r_timestampmicros":-6868870936618134719,"o_boolean":{"boolean":false},"o_int":{"int":565132579},"o_long":null,"o_float":{"float":0.91138905},"o_double":null,"o_bytes":{"bytes":"…À›|=¼\u0002d…üË"},"o_string":null,"o_enum":null,"o_date":{"int":931606318},"o_timemillis":null,"o_timemicros":{"long":-5392054963106821896},"o_timestampmillis":{"long":5528467692106946949},"o_timestampmicros":{"long":-8579053526018517977}} -{"r_boolean":true,"r_int":-1893159765,"r_long":-68787275723531728,"r_float":0.687582,"r_double":0.10667019596240246,"r_bytes":"","r_string":"migvor","r_record":{"r_boolean":true,"r_int":-1310272970,"r_long":3193303398386599381,"r_float":0.3174364,"r_double":0.3149034370175934,"r_bytes":"","r_string":"ftrecqvynuni","r_record":{"r_boolean":true,"r_int":-324606280,"r_long":6461041557793887082,"r_float":0.24641687,"r_double":0.875695915189612,"r_bytes":"V‚f\u001FfNiËùÅò®Þ","r_string":"jirxddlgbspapudxmlehqkuhamvdsemjcvbwsdtfnelnjuwvpcfffvpxmtdioogyvjwsjafhaslqxfukwplyeubquuktubcdwivdjsixfekcenwa","r_enum":"TWO","r_date":957803460,"r_timemillis":2138408889,"r_timemicros":7683233832299330268,"r_timestampmillis":-6629605145128620534,"r_timestampmicros":3130377332263957191,"o_boolean":null,"o_int":{"int":887575356},"o_long":null,"o_float":{"float":0.17343956},"o_double":null,"o_bytes":null,"o_string":{"string":"cnggrdvwa"},"o_enum":{"Level2_1__1_Enum2":"ONE"},"o_date":{"int":214010161},"o_timemillis":{"int":-1733135030},"o_timemicros":{"long":5232889937301551202},"o_timestampmillis":null,"o_timestampmicros":{"long":-9177295187236705611}},"r_enum":"ZERO","r_date":-233685081,"r_timemillis":-1754248673,"r_timemicros":-6390599535198414605,"r_timestampmillis":-5661161283679975525,"r_timestampmicros":1028443041405174714,"r_array":[]},"r_enum":"ZERO","r_array":[{"r_boolean":true,"r_int":943580435,"r_long":-2320700009468596762,"r_float":0.4897709,"r_double":0.5647880320906938,"r_bytes":"","r_string":"lepwakvmbjabh","r_array":[{"r_boolean":true,"r_int":-1210928181,"r_long":-6007167867914027720,"r_float":0.03131491,"r_double":0.08580777665344685,"r_bytes":"æ±+¨","r_string":"tfmnlputck","r_enum":"ONE","r_date":862713146,"r_timemillis":1458476684,"r_timemicros":-1916910843401653763,"r_timestampmillis":1930754756626683108,"r_timestampmicros":-4911276500518959663,"o_boolean":{"boolean":true},"o_int":null,"o_long":{"long":8467040628263223491},"o_float":{"float":0.97991455},"o_double":null,"o_bytes":null,"o_string":{"string":"cjssrbktlrmaedcvqeycghiiwlmmjmdrfeavkgvwgyyyvvoikgracjxguehacuktifrubremwlekdathcjhsfmumaopmcptsyfsunwfadyyctjsvhskwrbfpvwxfmjjcaqscjnfcsunfitgevldasxhytxufxolxcsmfykomlvcvjghjyvxlytynjvhhxllsqjittxeaeognxqrikpvykcmh"},"o_enum":null,"o_date":{"int":-269243384},"o_timemillis":null,"o_timemicros":null,"o_timestampmillis":{"long":-1063210728788631518},"o_timestampmicros":{"long":-2836281002254153039}}],"o_boolean":{"boolean":false},"o_int":null,"o_long":{"long":-3597556988738258290},"o_float":null,"o_double":null,"o_bytes":null,"o_string":null,"o_enum":{"Level1_2_Enum2":"ZERO"},"o_date":null,"o_timemillis":null,"o_timemicros":null,"o_timestampmillis":null,"o_timestampmicros":null},{"r_boolean":false,"r_int":-508298296,"r_long":7085631490314696092,"r_float":0.39698714,"r_double":0.13642302302875164,"r_bytes":"þ—›©p¹qÿ","r_string":"buaeuwdecke","r_array":[{"r_boolean":true,"r_int":1990412425,"r_long":-8778257238811876378,"r_float":0.81200486,"r_double":0.5910852557548552,"r_bytes":"3$,ü\u0018Ã'‚Ê\u0014t","r_string":"ifkibcfi","r_enum":"ZERO","r_date":46160318,"r_timemillis":98159564,"r_timemicros":6478427109016743874,"r_timestampmillis":607003174721528421,"r_timestampmicros":-5972498622095529550,"o_boolean":null,"o_int":null,"o_long":{"long":-1056389551324854153},"o_float":{"float":0.0845958},"o_double":null,"o_bytes":{"bytes":"•ýŠÔ.dɓH\u0013Tû9ÖË"},"o_string":null,"o_enum":{"Level2_2_Enum2":"TWO"},"o_date":null,"o_timemillis":null,"o_timemicros":{"long":3675330941716063616},"o_timestampmillis":{"long":-7072947168254340451},"o_timestampmicros":{"long":-2117861684637398191}},{"r_boolean":false,"r_int":1148568020,"r_long":-5356457399493689166,"r_float":0.8766822,"r_double":0.6027904633172047,"r_bytes":"†¦p—¤+ìŽ\u0011¦;","r_string":"bcfm","r_enum":"TWO","r_date":-2010778622,"r_timemillis":1160214926,"r_timemicros":8608793000361702670,"r_timestampmillis":-1445130328944045027,"r_timestampmicros":-3066986460372110567,"o_boolean":null,"o_int":{"int":-1409956491},"o_long":{"long":260696874778747903},"o_float":null,"o_double":{"double":0.43106513926712964},"o_bytes":null,"o_string":{"string":"ujmgqfrnofws"},"o_enum":null,"o_date":null,"o_timemillis":{"int":715440443},"o_timemicros":{"long":4400843947359678312},"o_timestampmillis":{"long":9124142885425500737},"o_timestampmicros":{"long":-8862481454402155560}}],"o_boolean":null,"o_int":{"int":1705520325},"o_long":{"long":-3890688044348936659},"o_float":null,"o_double":{"double":0.686732815786311},"o_bytes":{"bytes":"wÝ\u0001\u001Câ:"},"o_string":{"string":"unecynfwithxwo"},"o_enum":{"Level1_2_Enum2":"TWO"},"o_date":null,"o_timemillis":null,"o_timemicros":null,"o_timestampmillis":null,"o_timestampmicros":{"long":2334257730179153861}}],"r_date":-202474013,"r_timemillis":-508797326,"r_timemicros":5377542360528513892,"r_timestampmillis":1629783119821022985,"r_timestampmicros":4567014753798263324,"o_boolean":{"boolean":false},"o_int":{"int":-1037922932},"o_long":null,"o_float":null,"o_double":{"double":0.3518268396824825},"o_bytes":{"bytes":"\nš[(ýÛ"},"o_string":{"string":"vhdxctxp"},"o_enum":null,"o_date":null,"o_timemillis":null,"o_timemicros":{"long":-4064532069963981369},"o_timestampmillis":null,"o_timestampmicros":{"long":8109238225422779166}} -{"r_boolean":false,"r_int":1922846471,"r_long":965836089301704873,"r_float":0.42702484,"r_double":0.6615068278837489,"r_bytes":"ƒ`ã\f\u0006O\u0017‹ç¤","r_string":"ipbxtmgldjjjhd","r_record":{"r_boolean":false,"r_int":373549562,"r_long":-1980990820388492009,"r_float":0.7239203,"r_double":0.44315644686139144,"r_bytes":"s=K","r_string":"dsafiujkivrytk","r_record":{"r_boolean":true,"r_int":171980140,"r_long":2235532613306835594,"r_float":0.19306302,"r_double":0.8402534182493397,"r_bytes":"sä","r_string":"blgewsgfasufhuc","r_enum":"ZERO","r_date":493229479,"r_timemillis":376994456,"r_timemicros":7436401675709866110,"r_timestampmillis":-6003467164764903765,"r_timestampmicros":-7622456522160701738,"o_boolean":null,"o_int":{"int":1600765614},"o_long":null,"o_float":{"float":0.26083332},"o_double":{"double":0.5074348518714221},"o_bytes":null,"o_string":null,"o_enum":null,"o_date":null,"o_timemillis":{"int":-1071778685},"o_timemicros":null,"o_timestampmillis":null,"o_timestampmicros":null},"r_enum":"TWO","r_date":-1845866420,"r_timemillis":-1839920113,"r_timemicros":-7395637466966430247,"r_timestampmillis":153300264169643624,"r_timestampmicros":6640484241753589187,"r_array":[{"r_boolean":false,"r_int":519632068,"r_long":8727460882807491760,"r_float":0.7914546,"r_double":0.27870469100394524,"r_bytes":"K¨Ä_É=4Í)","r_string":"","r_enum":"ZERO","o_boolean":null,"o_int":null,"o_long":null,"o_float":null,"o_double":{"double":0.40281865730060273},"o_bytes":null,"o_string":null,"o_enum":null,"o_date":{"int":-391535634},"o_timemillis":null,"o_timemicros":{"long":7035135076816142621},"o_timestampmillis":null,"o_timestampmicros":{"long":-5896380917296421927}},{"r_boolean":false,"r_int":476709247,"r_long":-2762069680457577284,"r_float":0.768057,"r_double":0.2132025560496451,"r_bytes":"öüŸ","r_string":"ijbthfolgxjyv","r_enum":"ZERO","o_boolean":{"boolean":false},"o_int":null,"o_long":null,"o_float":null,"o_double":null,"o_bytes":{"bytes":"ÿ\f"},"o_string":null,"o_enum":null,"o_date":{"int":229451728},"o_timemillis":{"int":-1909281049},"o_timemicros":null,"o_timestampmillis":{"long":-2566520718106355223},"o_timestampmicros":null},{"r_boolean":false,"r_int":233659303,"r_long":-6871241958245810603,"r_float":0.77188873,"r_double":0.6912030307005893,"r_bytes":"óè\u0005Áٍã\u0002pF","r_string":"pkwe","r_enum":"ZERO","o_boolean":{"boolean":true},"o_int":{"int":1531612977},"o_long":null,"o_float":null,"o_double":{"double":0.11194845733195291},"o_bytes":{"bytes":"ך\\]ö.äAo“F"},"o_string":null,"o_enum":{"Level2_1__2_Enum2":"ZERO"},"o_date":{"int":-521740368},"o_timemillis":null,"o_timemicros":{"long":1514816641908250443},"o_timestampmillis":{"long":-5477592969312443647},"o_timestampmicros":null},{"r_boolean":true,"r_int":1807874797,"r_long":-3068561095532203124,"r_float":0.057727575,"r_double":0.6427353419254151,"r_bytes":"Ð\u0016","r_string":"imbuc","r_enum":"TWO","o_boolean":{"boolean":false},"o_int":{"int":1887910803},"o_long":null,"o_float":{"float":0.52100194},"o_double":null,"o_bytes":{"bytes":"#t 1\u0007"},"o_string":null,"o_enum":null,"o_date":{"int":-190067879},"o_timemillis":null,"o_timemicros":null,"o_timestampmillis":null,"o_timestampmicros":null}]},"r_enum":"ONE","r_array":[{"r_boolean":true,"r_int":2002980649,"r_long":-8550583184791171602,"r_float":0.37475806,"r_double":0.5936569953175617,"r_bytes":"","r_string":"w","r_array":[{"r_boolean":false,"r_int":-1905177410,"r_long":-6800653460226589594,"r_float":0.19546235,"r_double":0.645034281433611,"r_bytes":",µª-3","r_string":"rgpqkrpiivwodcipldrauhkmfepqktceouhpmbdkjbxebmgoohnoynxtsxewfymxoexfjjehdnkldhtokbryxdttyxdnkqcytxfqhkwlklhskbanqbpyqkwvmnghggpwhotfiogykd","r_enum":"ONE","r_date":-1286812660,"r_timemillis":1207525448,"r_timemicros":4821062005616066857,"r_timestampmillis":5378782634867109143,"r_timestampmicros":-2583408251701035247,"o_boolean":{"boolean":true},"o_int":null,"o_long":null,"o_float":{"float":0.29493666},"o_double":{"double":0.4849345865359581},"o_bytes":null,"o_string":null,"o_enum":{"Level2_2_Enum2":"ZERO"},"o_date":null,"o_timemillis":null,"o_timemicros":null,"o_timestampmillis":null,"o_timestampmicros":null},{"r_boolean":false,"r_int":-82419896,"r_long":-3451406369858818428,"r_float":0.93865335,"r_double":0.031496676874670726,"r_bytes":"Ñ\t\n+d”\u0018Dð?","r_string":"owi","r_enum":"ONE","r_date":-311942805,"r_timemillis":-601270296,"r_timemicros":-6131269508366402454,"r_timestampmillis":6735527835194401333,"r_timestampmicros":1881831019788715166,"o_boolean":null,"o_int":null,"o_long":{"long":-1190046598415946392},"o_float":{"float":0.978306},"o_double":null,"o_bytes":null,"o_string":{"string":"quichriglnhi"},"o_enum":{"Level2_2_Enum2":"ZERO"},"o_date":{"int":-2025469122},"o_timemillis":{"int":464321679},"o_timemicros":null,"o_timestampmillis":null,"o_timestampmicros":null},{"r_boolean":false,"r_int":1094043297,"r_long":-8595753008260216936,"r_float":0.77922696,"r_double":0.6919748786825358,"r_bytes":"êÜ?Øï\u000F+n\u001B\u0005èº\u0015","r_string":"fl","r_enum":"ZERO","r_date":-1192113926,"r_timemillis":469919634,"r_timemicros":-322859771545679210,"r_timestampmillis":-4905211431055920846,"r_timestampmicros":5460238851681933026,"o_boolean":null,"o_int":null,"o_long":{"long":3494808539731251097},"o_float":null,"o_double":{"double":0.6781350913675931},"o_bytes":{"bytes":"†Hê"},"o_string":null,"o_enum":null,"o_date":{"int":517723289},"o_timemillis":{"int":626725667},"o_timemicros":{"long":8461774008628379426},"o_timestampmillis":{"long":5755494276802648178},"o_timestampmicros":{"long":6909821543117443902}}],"o_boolean":{"boolean":true},"o_int":{"int":-304017406},"o_long":null,"o_float":null,"o_double":null,"o_bytes":null,"o_string":null,"o_enum":null,"o_date":null,"o_timemillis":{"int":1463458915},"o_timemicros":null,"o_timestampmillis":{"long":-5289904285855579586},"o_timestampmicros":null},{"r_boolean":true,"r_int":-774672874,"r_long":9145397989167900916,"r_float":0.89613765,"r_double":0.9522826583164449,"r_bytes":"‚ÞKÆ","r_string":"ej","r_array":[{"r_boolean":false,"r_int":1687607337,"r_long":7255804113105163749,"r_float":0.07283974,"r_double":0.8264807371619759,"r_bytes":"ô&1Ðm¼Ê#gåÏ\u001A¯","r_string":"rqcpatbwi","r_enum":"ZERO","r_date":1437479094,"r_timemillis":-1827130681,"r_timemicros":6827307388489899095,"r_timestampmillis":-5082284494385487240,"r_timestampmicros":-5932171963159369373,"o_boolean":{"boolean":true},"o_int":{"int":-219164666},"o_long":null,"o_float":null,"o_double":{"double":0.14326910613991495},"o_bytes":null,"o_string":{"string":"ityemdbsfk"},"o_enum":null,"o_date":{"int":-87943260},"o_timemillis":{"int":1774234799},"o_timemicros":{"long":-7858031820678664508},"o_timestampmillis":{"long":7686848068523085999},"o_timestampmicros":null},{"r_boolean":false,"r_int":315175561,"r_long":2800172564593868803,"r_float":0.59007215,"r_double":0.46183799308727047,"r_bytes":"a”ÑTŠßOeºêÐQ","r_string":"xfwbyu","r_enum":"ONE","r_date":1514095378,"r_timemillis":-453369368,"r_timemicros":-3545508201897195423,"r_timestampmillis":-827439221291682915,"r_timestampmicros":3549502471704746196,"o_boolean":null,"o_int":null,"o_long":{"long":1291694724857216793},"o_float":null,"o_double":{"double":0.25729068329097404},"o_bytes":{"bytes":"Û1ØÒQ\nfb5\u0011~H"},"o_string":{"string":"pfkisli"},"o_enum":{"Level2_2_Enum2":"TWO"},"o_date":{"int":-98760613},"o_timemillis":null,"o_timemicros":null,"o_timestampmillis":{"long":-8710280881441016995},"o_timestampmicros":{"long":7265653919152489868}},{"r_boolean":false,"r_int":1388637905,"r_long":-275167502200392487,"r_float":0.4500208,"r_double":0.06080301424448431,"r_bytes":"\u0014q0O\u0017­Iøaé‰B","r_string":"ocdvunrunratexi","r_enum":"TWO","r_date":-1376487196,"r_timemillis":-1270154120,"r_timemicros":2758740765326812873,"r_timestampmillis":-7038121537084567442,"r_timestampmicros":6432715270901096372,"o_boolean":{"boolean":false},"o_int":{"int":-1700089266},"o_long":{"long":5215619396510814010},"o_float":null,"o_double":{"double":0.03890160512295049},"o_bytes":{"bytes":"îúœòñ~¶"},"o_string":null,"o_enum":null,"o_date":{"int":-1675738568},"o_timemillis":{"int":-637044538},"o_timemicros":null,"o_timestampmillis":null,"o_timestampmicros":null}],"o_boolean":null,"o_int":null,"o_long":null,"o_float":null,"o_double":null,"o_bytes":null,"o_string":null,"o_enum":null,"o_date":null,"o_timemillis":{"int":-1563733704},"o_timemicros":{"long":9155698250851627378},"o_timestampmillis":null,"o_timestampmicros":{"long":4788035610331156659}},{"r_boolean":false,"r_int":-1948764786,"r_long":-1395372733897879280,"r_float":0.90104765,"r_double":0.9040455850777993,"r_bytes":"ób›\u0000ï#»)Š§ªco@","r_string":"sfapmmqjaqc","r_array":[{"r_boolean":false,"r_int":740805517,"r_long":7857940458245032425,"r_float":0.92411745,"r_double":0.7193528331661104,"r_bytes":"½W¾|›Òq6=Ô\u0006a ˜åÄf¢å}S߃\u0018\u0016Òo'†\\×\u001Fû”\u001EÜð\u000BãÒ\u0000|€ºIîLÚ)\u001Bn¢$¹I‚ȃ\f\u0001Sòü\u001EbqevØ¿zœ|þ\u0000ˆè‡]ª \u0007%ßÓ;A²©[%EÉ","r_string":"icmnx","r_enum":"TWO","r_date":-1251969318,"r_timemillis":-2119298569,"r_timemicros":-7498400107395339011,"r_timestampmillis":9122742943389454156,"r_timestampmicros":-5416931202932742424,"o_boolean":{"boolean":false},"o_int":{"int":1684400113},"o_long":{"long":6153283158447798381},"o_float":{"float":0.4144953},"o_double":null,"o_bytes":{"bytes":"\u001AIÃUÍÏ"},"o_string":{"string":"lnyfcgpiykpg"},"o_enum":null,"o_date":{"int":1878579008},"o_timemillis":{"int":-686536058},"o_timemicros":{"long":1625059827434408127},"o_timestampmillis":null,"o_timestampmicros":{"long":7679576244424983060}}],"o_boolean":null,"o_int":{"int":-1040241512},"o_long":{"long":-1677107798323812571},"o_float":{"float":0.6751946},"o_double":null,"o_bytes":null,"o_string":null,"o_enum":{"Level1_2_Enum2":"TWO"},"o_date":{"int":-1585852147},"o_timemillis":{"int":-1811830077},"o_timemicros":null,"o_timestampmillis":{"long":1660831361574931412},"o_timestampmicros":null},{"r_boolean":false,"r_int":1454071600,"r_long":5675692682415462656,"r_float":0.5463077,"r_double":0.6159758495073482,"r_bytes":"½\u001Ef•\u0006“Þ\u001D?f\u001D","r_string":"voyvoiwgmypxhes","r_array":[{"r_boolean":true,"r_int":1346972154,"r_long":-1426238822680993731,"r_float":0.32203764,"r_double":0.1436429389228232,"r_bytes":"\u001Fø\u0014’\u00103ÓD÷”ï¾ç","r_string":"fqn","r_enum":"TWO","r_date":702715328,"r_timemillis":-1686421796,"r_timemicros":4603477828651183155,"r_timestampmillis":-3855389303200999485,"r_timestampmicros":2574170863147913091,"o_boolean":null,"o_int":{"int":223517325},"o_long":{"long":-6868462837645278379},"o_float":{"float":0.3306225},"o_double":null,"o_bytes":null,"o_string":null,"o_enum":{"Level2_2_Enum2":"TWO"},"o_date":{"int":-1124694812},"o_timemillis":{"int":-1223042140},"o_timemicros":null,"o_timestampmillis":null,"o_timestampmicros":null}],"o_boolean":{"boolean":false},"o_int":{"int":468269995},"o_long":null,"o_float":{"float":0.73813903},"o_double":{"double":0.6217724876786517},"o_bytes":{"bytes":""},"o_string":null,"o_enum":null,"o_date":null,"o_timemillis":{"int":1725857232},"o_timemicros":{"long":5775629758683017879},"o_timestampmillis":{"long":-5156633110406469321},"o_timestampmicros":null},{"r_boolean":false,"r_int":-270291303,"r_long":-7392372869190149212,"r_float":0.14895195,"r_double":0.6095472942792453,"r_bytes":"Üj$9Î","r_string":"myamqfiiqhi","r_array":[{"r_boolean":true,"r_int":2019311336,"r_long":2719589028003977237,"r_float":0.05700779,"r_double":0.14375091265679873,"r_bytes":"’!ÁÙ)Ó\t\u0012ç8/","r_string":"m","r_enum":"ONE","r_date":1341879004,"r_timemillis":-1917979833,"r_timemicros":2666015193494390932,"r_timestampmillis":-4767879389731770673,"r_timestampmicros":5075099633907306038,"o_boolean":null,"o_int":{"int":1070560193},"o_long":null,"o_float":null,"o_double":{"double":0.8112909018090273},"o_bytes":{"bytes":"é¨ÈZÁÀú\u0006\t?Bʄ¦\u0019f×IR_áJËPˆ´\u0000”æ\u000B\t"},"o_string":{"string":"byks"},"o_enum":{"Level2_2_Enum2":"ONE"},"o_date":{"int":-680437103},"o_timemillis":{"int":-1245314629},"o_timemicros":null,"o_timestampmillis":{"long":6075588367824324377},"o_timestampmicros":null},{"r_boolean":true,"r_int":1992543845,"r_long":1165601947532672973,"r_float":0.017525136,"r_double":0.11653619842987029,"r_bytes":"dÓûÀu\u000F„Š?","r_string":"gydgxlhej","r_enum":"ZERO","r_date":104456562,"r_timemillis":-1460675882,"r_timemicros":5429444339810530726,"r_timestampmillis":4909488841043203717,"r_timestampmicros":6551297374012852995,"o_boolean":{"boolean":false},"o_int":{"int":-1963933638},"o_long":{"long":4850977187632364837},"o_float":{"float":0.4178921},"o_double":null,"o_bytes":{"bytes":"Žqt‘\"Ø"},"o_string":{"string":"lsmghirdesok"},"o_enum":null,"o_date":{"int":1696575535},"o_timemillis":{"int":-1243986830},"o_timemicros":null,"o_timestampmillis":null,"o_timestampmicros":{"long":-504505426039006697}}],"o_boolean":null,"o_int":{"int":-78812360},"o_long":null,"o_float":{"float":0.40457684},"o_double":null,"o_bytes":null,"o_string":{"string":"gbtnqcguqiyo"},"o_enum":{"Level1_2_Enum2":"TWO"},"o_date":{"int":-1325583554},"o_timemillis":{"int":-336774774},"o_timemicros":null,"o_timestampmillis":{"long":9199169438695378065},"o_timestampmicros":{"long":-5456559932786692954}}],"r_date":44117106,"r_timemillis":237382743,"r_timemicros":-6015263234005674999,"r_timestampmillis":4564322045328480496,"r_timestampmicros":4550252095621830495,"o_boolean":{"boolean":true},"o_int":{"int":-256978538},"o_long":null,"o_float":{"float":0.63622355},"o_double":{"double":0.6928226814202263},"o_bytes":{"bytes":"¯Åøæˆ`î\u0004´¿xî"},"o_string":{"string":"nedysfstyvu"},"o_enum":null,"o_date":null,"o_timemillis":null,"o_timemicros":null,"o_timestampmillis":{"long":228053459732046145},"o_timestampmicros":{"long":3933106485373346917}} -{"r_boolean":false,"r_int":911948830,"r_long":-4324491699677440080,"r_float":0.821547,"r_double":0.2166518942658915,"r_bytes":"F","r_string":"hjdcfoktmbxui","r_record":{"r_boolean":true,"r_int":-1550432438,"r_long":5411106467363861056,"r_float":0.19092607,"r_double":0.4551535914878352,"r_bytes":"ù>¬ûçÚ\u00157}","r_string":"mwptbwi","r_record":{"r_boolean":true,"r_int":1597708797,"r_long":2406871370949469432,"r_float":0.74333936,"r_double":0.5086697957403726,"r_bytes":"RF","r_string":"","r_enum":"TWO","r_date":971832223,"r_timemillis":816088099,"r_timemicros":1052991368140830744,"r_timestampmillis":1982614004810653017,"r_timestampmicros":1647525572381232249,"o_boolean":null,"o_int":{"int":-878710189},"o_long":null,"o_float":{"float":0.08514726},"o_double":{"double":0.27662957881736194},"o_bytes":{"bytes":"\\\u0011Ø%ù\u001A†þ\u000Fò\u0005"},"o_string":{"string":"i"},"o_enum":null,"o_date":null,"o_timemillis":null,"o_timemicros":null,"o_timestampmillis":{"long":-7961811611777598971},"o_timestampmicros":null},"r_enum":"ONE","r_date":-1822067160,"r_timemillis":1737822789,"r_timemicros":-5448805068284954200,"r_timestampmillis":-3852001654473472793,"r_timestampmicros":5879201791688041851,"r_array":[{"r_boolean":false,"r_int":-1556783163,"r_long":2363348070855065605,"r_float":0.90323853,"r_double":0.5729751774236992,"r_bytes":"°}\u0016Š\u0019<\u0017Ê","r_string":"bj","r_enum":"TWO","o_boolean":{"boolean":false},"o_int":{"int":974611157},"o_long":null,"o_float":{"float":0.643776},"o_double":null,"o_bytes":{"bytes":" ¯\u0007DXÏ"},"o_string":null,"o_enum":{"Level2_1__2_Enum2":"ZERO"},"o_date":{"int":-694993549},"o_timemillis":null,"o_timemicros":null,"o_timestampmillis":null,"o_timestampmicros":null}]},"r_enum":"TWO","r_array":[{"r_boolean":false,"r_int":-1938941522,"r_long":-2887188072870095399,"r_float":0.57366776,"r_double":0.07009997892656294,"r_bytes":"occÑòY6qõØ","r_string":"ahkbcmyxln","r_array":[{"r_boolean":true,"r_int":-2030831757,"r_long":4951457417692436382,"r_float":0.6124814,"r_double":0.7667040624898258,"r_bytes":"pe°ˆ\u0004mµv±#4|q\u0019","r_string":"jdq","r_enum":"ZERO","r_date":-801029794,"r_timemillis":-1086653750,"r_timemicros":3656353503342568605,"r_timestampmillis":1186674098574097394,"r_timestampmicros":-4946884412008228154,"o_boolean":{"boolean":true},"o_int":null,"o_long":{"long":2930589323922611307},"o_float":null,"o_double":null,"o_bytes":{"bytes":"D\u0000 ѳ"},"o_string":null,"o_enum":null,"o_date":null,"o_timemillis":{"int":-1780662352},"o_timemicros":{"long":-8754860586138743202},"o_timestampmillis":{"long":1639178293620623905},"o_timestampmicros":{"long":-6165481769029925685}},{"r_boolean":false,"r_int":-1152757181,"r_long":3281582182152053071,"r_float":0.5116356,"r_double":0.9423497506383223,"r_bytes":"ÓªSæÄ\u0015Ý»6","r_string":"isvdimaddpksakgwqtixxijoninkppnknsaidtuawlhpqemjjsdmphebeylrfrckwgfsxxepgscygdnvtspeabkfwyhgdfahbckybjjlhttcffjerbqpivdsguyxsdljsctiymutbxpjnxginuosocpmrfrbcnqmntgdmjfcxuetpqhhlvhuyfukdlaehiawguowhcoxbsvapbflheltyrxyaoyfilgcxltvpvfoefiumkdmofuwldissybavpcigiickldvgsbbfjgteshpnixocypetxbljtxdcqwbancqcbatvfqgsybjwimnblnmkmocpvaejvktbbfbysrjeplwotxslvsrtwucandifguxgffpfivekkmfebmcdkiaxvyfvtivbitjdcfsfadnebpctklnwvjucsefgbmdgscwibxfkumwuwwebquapgoxtkcbrkkwkcewfbcqywlctnfwvdbtnavfdhdjrsqufbqcjyeoyspssjqxukefmawkgxatqqoeculbdembvxfklvmacbhqpcyqfknomhcikygebwkvulvxilfpnseptkmvwwhtmjaqnbfjsiqtxrigypbxhrotqvoahnxqykoatusgqnocoigtaijcevfwdgccgrytwlgftvfqmpqxvjlpsmjvtbksokwybpusnyipbtnxkjmjcgsbfbkfqcsfmntivxfwyajkdgydukshpvnylcifykapjtndgfhualbpkfaodnefewdyyexxrdvkwgyymiynmkdtqcoodlnylabsoiliksfskquifcrltfxxvederwkienqnsffcxpvvxvrfbujiqtgkwugqfgdtyyrsjsambavttrtbnijdijmabajwoxmptatuulposptlugtmiydsjvaelycjsilwchswvvalqufndtqlsuxdvmrgpoqrjqyxtapxpwxdrnxehombmtiuwcnmranldfoxqjjcdaxexdvkfjpdkqvvervhushbnvxlpyiomlfjdamveabklbmldeisnxirienixqrjbjoougkwjunvirpnjmcqiswsmparcrwsdbnxglpefuwiegltfumvowqpumcoblgtcndlqmrgdyifrjjurqgsgaaxuveqgyujejgjfmtytpeqxxwbxcogjelfouneeeofnmqsqaunxakyuvletlfmsalpankqxfvneeybjqfqepejtunvlohgopmikndasmtqmxhadrmuqmfdsrktgvyhnexntppyhlpgkcyfowoinxqetltoimmpqjjbajffqgjucudhjymgsxykptoykcwdbfxhacmfwkodubxydxpcuwppefkfkvjeykbuanrwypsgjfvrlltnvsxklhanumtbvhsrsnesdnijnrijxkceqaedarujyqymquihbbqomgrjxdukcgwseityqevsqvvidwivgwliacwthblccrdoyyoffwmdsyjqaqvigohgsiqhdgraiuyqykxpmxbpmcodawcyylqhtuuowaovpecawvieewcrmbllojmpbitnamgreonqcajivnmowhltuscjvhadaqqvrghvayxxnckdtbkrrgakmywmbyfcaklwdeaclptkgtuicdrgtahrfnjuu","r_enum":"TWO","r_date":1228400718,"r_timemillis":1965790286,"r_timemicros":-2610408004169471219,"r_timestampmillis":4292907770846547526,"r_timestampmicros":-1095653262960451197,"o_boolean":null,"o_int":{"int":-1715191634},"o_long":{"long":-658645861558242853},"o_float":null,"o_double":null,"o_bytes":{"bytes":"ž\u00157Žs"},"o_string":{"string":"q"},"o_enum":{"Level2_2_Enum2":"ZERO"},"o_date":null,"o_timemillis":null,"o_timemicros":null,"o_timestampmillis":null,"o_timestampmicros":null}],"o_boolean":null,"o_int":null,"o_long":null,"o_float":{"float":0.11555123},"o_double":null,"o_bytes":{"bytes":"3;\u000Bsè>Y\u000BQë\u0012ˆ\u0007+"},"o_string":{"string":"lokwkxjgblslvo"},"o_enum":null,"o_date":{"int":1913073263},"o_timemillis":{"int":1700640211},"o_timemicros":null,"o_timestampmillis":null,"o_timestampmicros":null},{"r_boolean":true,"r_int":1468501604,"r_long":-5768460263114125330,"r_float":0.8871833,"r_double":0.8947479540279157,"r_bytes":"\u0010ã","r_string":"w","r_array":[],"o_boolean":{"boolean":false},"o_int":null,"o_long":null,"o_float":{"float":0.7549368},"o_double":{"double":0.701132995844111},"o_bytes":{"bytes":"p`iFÛÓÞ\u001D"},"o_string":{"string":""},"o_enum":{"Level1_2_Enum2":"ZERO"},"o_date":null,"o_timemillis":null,"o_timemicros":{"long":-8348292268411672524},"o_timestampmillis":null,"o_timestampmicros":null},{"r_boolean":false,"r_int":-556291581,"r_long":-8977442800331230199,"r_float":0.49695653,"r_double":0.9935756371458954,"r_bytes":"ŽÍªËÙvüxêº\u001Fòž","r_string":"ct","r_array":[],"o_boolean":null,"o_int":null,"o_long":null,"o_float":null,"o_double":null,"o_bytes":{"bytes":"åB"},"o_string":null,"o_enum":{"Level1_2_Enum2":"TWO"},"o_date":{"int":-44908960},"o_timemillis":{"int":28420980},"o_timemicros":{"long":716794189990350257},"o_timestampmillis":null,"o_timestampmicros":null},{"r_boolean":true,"r_int":1467616877,"r_long":164512232282847316,"r_float":0.15158188,"r_double":0.9405460667114977,"r_bytes":"ü\u0015£ø¿*TËp)à\u0016üY","r_string":"","r_array":[],"o_boolean":{"boolean":false},"o_int":null,"o_long":{"long":-3198160492330196569},"o_float":{"float":0.28863937},"o_double":null,"o_bytes":{"bytes":"ç"},"o_string":{"string":"piqywr"},"o_enum":{"Level1_2_Enum2":"TWO"},"o_date":{"int":-112106507},"o_timemillis":null,"o_timemicros":{"long":7089337558273945812},"o_timestampmillis":null,"o_timestampmicros":null},{"r_boolean":false,"r_int":-335401679,"r_long":-5806182824288934234,"r_float":0.9996134,"r_double":0.8414215495924645,"r_bytes":"","r_string":"tdgbadyxybuxsgtennvtrkeakkandwdgqagwwgihbgahwpuqpgfuqughvokuucyybnptiurxpprgyvdibveljtffphngfmuoplkxpjbohwcyysakadojecddkywmfubjufosfcetqgnwmmvdbwhmanhdwhqooiwcjdynooxxeynhrpolodrduhcuwkyojiqcopgyisexvsackufrpkhgcupv","r_array":[],"o_boolean":null,"o_int":null,"o_long":null,"o_float":null,"o_double":null,"o_bytes":{"bytes":"㺞 `‡&›:Ç»Q"},"o_string":{"string":"y"},"o_enum":null,"o_date":{"int":-2123152287},"o_timemillis":{"int":268849717},"o_timemicros":{"long":4610270955583948357},"o_timestampmillis":null,"o_timestampmicros":null}],"r_date":449011146,"r_timemillis":-2032497074,"r_timemicros":-9082629596108275919,"r_timestampmillis":-4098278368956969840,"r_timestampmicros":2240863232417999825,"o_boolean":null,"o_int":{"int":-1308182869},"o_long":null,"o_float":null,"o_double":null,"o_bytes":{"bytes":"R²CcpL‘Hª"},"o_string":null,"o_enum":{"Enum2":"ZERO"},"o_date":null,"o_timemillis":null,"o_timemicros":{"long":-1143562206614401922},"o_timestampmillis":null,"o_timestampmicros":null} -{"r_boolean":true,"r_int":-803268670,"r_long":7759043371714583019,"r_float":0.23960716,"r_double":0.5191425477038019,"r_bytes":"´/_™Š","r_string":"rhtpgkoxkofkikoflslnlhvxwlhjytlitjujypwudqmxbgrkkflgoosvcqmtfiewprkjjdsjyjcnytygwflwfsgvehtoxjyxcclhsllreebgalyhaxkautyywletgltkm","r_record":{"r_boolean":true,"r_int":-462611613,"r_long":-3370154498964974579,"r_float":0.3240602,"r_double":0.4677164965447026,"r_bytes":"äæ\u0013É","r_string":"g","r_record":{"r_boolean":true,"r_int":1472961875,"r_long":-6579678711991965690,"r_float":0.46235758,"r_double":0.822338206442534,"r_bytes":"¦8*ù","r_string":"xrpclqkv","r_enum":"TWO","r_date":410852691,"r_timemillis":1284482772,"r_timemicros":-26250073270436949,"r_timestampmillis":8474329651960287624,"r_timestampmicros":-5964378329736423708,"o_boolean":{"boolean":true},"o_int":null,"o_long":{"long":2590625570629716196},"o_float":null,"o_double":{"double":0.6183021111740877},"o_bytes":null,"o_string":null,"o_enum":{"Level2_1__1_Enum2":"TWO"},"o_date":null,"o_timemillis":{"int":1890799933},"o_timemicros":{"long":-2059720687511577013},"o_timestampmillis":{"long":3953504255101921497},"o_timestampmicros":null},"r_enum":"TWO","r_date":-1255557212,"r_timemillis":-607860048,"r_timemicros":5067766026865291201,"r_timestampmillis":-2323534252178887319,"r_timestampmicros":-1472460446825271756,"r_array":[{"r_boolean":false,"r_int":777244887,"r_long":-6002046340910542041,"r_float":0.96062326,"r_double":0.8508171622276772,"r_bytes":"","r_string":"","r_enum":"ZERO","o_boolean":null,"o_int":null,"o_long":{"long":11844490126126057},"o_float":{"float":0.72099775},"o_double":null,"o_bytes":null,"o_string":{"string":"fjxlm"},"o_enum":{"Level2_1__2_Enum2":"ZERO"},"o_date":null,"o_timemillis":{"int":1498203441},"o_timemicros":{"long":-3173743565636278695},"o_timestampmillis":null,"o_timestampmicros":{"long":-2106248691619338538}},{"r_boolean":false,"r_int":1896346258,"r_long":4073165933125376560,"r_float":0.5186869,"r_double":0.6560684145528571,"r_bytes":" TÞÔñ´iÀ£ñÿ","r_string":"","r_enum":"ZERO","o_boolean":{"boolean":false},"o_int":null,"o_long":{"long":3263468617770203862},"o_float":{"float":0.33388722},"o_double":{"double":0.2017443274181241},"o_bytes":null,"o_string":{"string":"jopqbvw"},"o_enum":{"Level2_1__2_Enum2":"TWO"},"o_date":{"int":-1878100749},"o_timemillis":null,"o_timemicros":null,"o_timestampmillis":{"long":-3333677986176854022},"o_timestampmicros":{"long":4791832775596861165}},{"r_boolean":true,"r_int":-205046895,"r_long":-1909616083906003599,"r_float":0.94996303,"r_double":0.8752150926617424,"r_bytes":"æiÚÛê^|Zoln\f","r_string":"mncyvyrnainxvyktclvxnvgoiycmtyhjgyoikundpqgqhwlmstteiracyujggrculltkhskjjbteqlmoxorrwsvpqbpepavuiuimwyaooptyhbvgnqfbsdcefnlobpgthaoxjsfxgpfhphythematmanfusxnbddknocokqru","r_enum":"TWO","o_boolean":{"boolean":false},"o_int":null,"o_long":{"long":-4972471031556120431},"o_float":null,"o_double":null,"o_bytes":null,"o_string":{"string":"wfimuaaxeh"},"o_enum":null,"o_date":null,"o_timemillis":null,"o_timemicros":null,"o_timestampmillis":{"long":3681222936066920678},"o_timestampmicros":{"long":-4300037312147784507}},{"r_boolean":false,"r_int":-1537745972,"r_long":-8908560237685605220,"r_float":0.095220685,"r_double":0.7724311497185998,"r_bytes":"\u001Fºÿª`ÛSÁ\u0001Ò","r_string":"mokynbgaevbwewksfqgwitkrnfssryvbmjgakijrhluyuxjghorhfihnncdptcwrhle","r_enum":"ONE","o_boolean":null,"o_int":{"int":-901874750},"o_long":null,"o_float":{"float":0.8521598},"o_double":null,"o_bytes":{"bytes":""},"o_string":{"string":"dcdomfkimrxwp"},"o_enum":null,"o_date":{"int":1825411637},"o_timemillis":null,"o_timemicros":null,"o_timestampmillis":null,"o_timestampmicros":null}]},"r_enum":"ZERO","r_array":[{"r_boolean":false,"r_int":334115491,"r_long":5399441881918514126,"r_float":0.27372622,"r_double":0.0785343387405697,"r_bytes":"Vf","r_string":"gbmwscsora","r_array":[{"r_boolean":true,"r_int":246712488,"r_long":-8868921337707938963,"r_float":0.13979727,"r_double":0.9187855507622162,"r_bytes":"S%","r_string":"brfyjhne","r_enum":"ONE","r_date":308669584,"r_timemillis":1382535023,"r_timemicros":-319954956774516205,"r_timestampmillis":-7106092139148946316,"r_timestampmicros":-3153376673726189956,"o_boolean":{"boolean":false},"o_int":{"int":-1058493351},"o_long":null,"o_float":null,"o_double":{"double":0.6818862878881516},"o_bytes":null,"o_string":{"string":"gtytrnjtwfocxitmwxnntwbwqvuvjsiuccaqyhfvbfhgksjtfurvdmxcpoqykwamtrpsnvbdruphddgpdnuxhqswflfxrmamarriblsrwgqpafhynradyxfawnikhewqgfkksetbmnecsxxbsfkoobdwhppdsjwjpiylohjhyjrknabktbdbyxncvsbchafrdhvrvhrebsomevhhscfpmsvcljfaxnbtxmfqljpcbbnnebihjiroohbhdqe"},"o_enum":null,"o_date":{"int":1037997729},"o_timemillis":null,"o_timemicros":{"long":8225870483162875468},"o_timestampmillis":{"long":-6914309541658258354},"o_timestampmicros":null},{"r_boolean":true,"r_int":1403877527,"r_long":-5153086276257009497,"r_float":0.14421213,"r_double":0.4374173850320373,"r_bytes":"\u0000T\u0010Ã0XÈËÿ","r_string":"ocwvtjdybaicr","r_enum":"ZERO","r_date":-67655067,"r_timemillis":-1098231126,"r_timemicros":-5673500537798313260,"r_timestampmillis":2675445142149225789,"r_timestampmicros":731978849904222682,"o_boolean":null,"o_int":null,"o_long":{"long":4456961648090156142},"o_float":{"float":0.6769235},"o_double":{"double":0.5894941604861882},"o_bytes":{"bytes":"u\u000Bòeù"},"o_string":null,"o_enum":{"Level2_2_Enum2":"TWO"},"o_date":null,"o_timemillis":null,"o_timemicros":{"long":-7249814435847441899},"o_timestampmillis":{"long":3175005867886238296},"o_timestampmicros":{"long":6197392958434660220}},{"r_boolean":true,"r_int":1407275569,"r_long":6114315750009973485,"r_float":0.9779987,"r_double":0.03543139598105305,"r_bytes":"j&Ÿ¶","r_string":"fohtfcjyayn","r_enum":"ONE","r_date":1998440650,"r_timemillis":960387752,"r_timemicros":4894618416007595912,"r_timestampmillis":-794741151105828206,"r_timestampmicros":5499000835908770763,"o_boolean":null,"o_int":{"int":-1025142889},"o_long":{"long":5493529921415269656},"o_float":{"float":0.513388},"o_double":{"double":0.3010101097836674},"o_bytes":{"bytes":"®Ns\u001C\u0000\u0001N\u00044Hç‰R"},"o_string":{"string":"tmpgqkrmx"},"o_enum":{"Level2_2_Enum2":"TWO"},"o_date":{"int":1307051935},"o_timemillis":{"int":-1840763463},"o_timemicros":null,"o_timestampmillis":null,"o_timestampmicros":null}],"o_boolean":{"boolean":false},"o_int":{"int":-1887490535},"o_long":{"long":-7802635075737267301},"o_float":null,"o_double":null,"o_bytes":{"bytes":"JÈc"},"o_string":{"string":"gvuubwbvwmpp"},"o_enum":null,"o_date":null,"o_timemillis":null,"o_timemicros":{"long":-4952135030979639762},"o_timestampmillis":null,"o_timestampmicros":{"long":1601102377739323493}}],"r_date":856800579,"r_timemillis":107485541,"r_timemicros":-4921847931968831467,"r_timestampmillis":3194365112695751804,"r_timestampmicros":3257447605837993328,"o_boolean":{"boolean":true},"o_int":{"int":-251450726},"o_long":null,"o_float":{"float":0.99994403},"o_double":null,"o_bytes":{"bytes":"'ß·/wX\u0001¡r‚o\"\u0003CŸ"},"o_string":null,"o_enum":{"Enum2":"ZERO"},"o_date":{"int":2087885671},"o_timemillis":null,"o_timemicros":null,"o_timestampmillis":{"long":3009338655771100333},"o_timestampmicros":null} -{"r_boolean":true,"r_int":-1036196072,"r_long":4225764918714833936,"r_float":0.17876035,"r_double":0.7837956679931987,"r_bytes":"\u000B\u0012ÀžŒT£Wã嚊£\u0006sù¯,ug“\u001Bè¿çêêÕ²\u0013ͅå\u001638bdۆúôˆh>ÓL®²\u0010m†6ãÈ\u0010V%D\u001E\u0005%^gÛ÷7[Œ¹™\u001F>ÆU–´BÎ)lEžþ\n•×Òõ©‹\u0006ëÍwTÈÕÇÇü–N¨ê/$]¶\u0010|¶Y`Û©œâŒ58kD™YgçaÖÉmA\u000F®~|¸Ö‘3,\u0018¢¢g#H3","r_string":"glfhwnsxsvptm","r_record":{"r_boolean":false,"r_int":1545194450,"r_long":66769828619798644,"r_float":0.39243406,"r_double":0.04865803703478988,"r_bytes":"\u0011Ó¾\\÷","r_string":"","r_record":{"r_boolean":true,"r_int":833010929,"r_long":6488424171556107363,"r_float":0.6940985,"r_double":0.5244728661827422,"r_bytes":"\u001AF\u0005/…Z","r_string":"wcnok","r_enum":"ZERO","r_date":1888139580,"r_timemillis":-1153825161,"r_timemicros":6218441796685654227,"r_timestampmillis":-1095601216780099659,"r_timestampmicros":2239564957696629143,"o_boolean":{"boolean":false},"o_int":{"int":-2054239765},"o_long":{"long":7505879906593583082},"o_float":null,"o_double":null,"o_bytes":null,"o_string":{"string":"wgpovwycaeaosgamwgbskgsvtejqnvveyqeutrlpikeqbunheiohkopttybtagyqdwkwlxwbxorbhwkkkyruseepfqmvjydfrshdtosnqvromcjribarcqhlmnuxeamaiauvxbvsmsretphxwv"},"o_enum":null,"o_date":null,"o_timemillis":{"int":938657341},"o_timemicros":{"long":3780900451976875537},"o_timestampmillis":null,"o_timestampmicros":{"long":-4359681747466523985}},"r_enum":"TWO","r_date":-1869738853,"r_timemillis":1238783464,"r_timemicros":8676790669752998267,"r_timestampmillis":67571626197747618,"r_timestampmicros":-573034128350639933,"r_array":[{"r_boolean":false,"r_int":-779466957,"r_long":-4405676208920048893,"r_float":0.69062084,"r_double":0.10879837736025821,"r_bytes":"ђÅضnOÂ\u0018É\u0014\tæ","r_string":"fuqfrqxegnbx","r_enum":"TWO","o_boolean":{"boolean":true},"o_int":null,"o_long":null,"o_float":{"float":0.45767236},"o_double":{"double":0.23790851937446456},"o_bytes":null,"o_string":null,"o_enum":null,"o_date":null,"o_timemillis":null,"o_timemicros":{"long":-3847170163936996703},"o_timestampmillis":{"long":740852470263637585},"o_timestampmicros":null},{"r_boolean":true,"r_int":1103039914,"r_long":7953775128130333253,"r_float":0.117673755,"r_double":0.8086273366136133,"r_bytes":"Á³Vð1üÆ","r_string":"okhdyfmqlpcsw","r_enum":"TWO","o_boolean":{"boolean":true},"o_int":null,"o_long":{"long":-3195756448067011658},"o_float":null,"o_double":{"double":0.6523463617252946},"o_bytes":{"bytes":""},"o_string":null,"o_enum":{"Level2_1__2_Enum2":"TWO"},"o_date":{"int":-1553983718},"o_timemillis":null,"o_timemicros":{"long":-389420173855615386},"o_timestampmillis":{"long":-7239359802338108672},"o_timestampmicros":{"long":1218365063155096607}},{"r_boolean":false,"r_int":1921412005,"r_long":2340551436259752183,"r_float":0.2805562,"r_double":0.7035895617122359,"r_bytes":"½NŸp/Äï¸\u0005úN","r_string":"hrvnybgflfg","r_enum":"TWO","o_boolean":{"boolean":false},"o_int":{"int":1816999761},"o_long":{"long":7385302129791614058},"o_float":{"float":0.18906349},"o_double":{"double":0.3471538695815696},"o_bytes":{"bytes":"ó>"},"o_string":null,"o_enum":null,"o_date":{"int":-1187876162},"o_timemillis":{"int":1128708939},"o_timemicros":null,"o_timestampmillis":null,"o_timestampmicros":{"long":-3658114904022136737}}]},"r_enum":"ONE","r_array":[{"r_boolean":true,"r_int":118942876,"r_long":7002523798390173048,"r_float":0.39012104,"r_double":0.3071656508058779,"r_bytes":"Œœ?êzÄý¨ÇxQÁé\u001FK","r_string":"gybu","r_array":[{"r_boolean":true,"r_int":-867714005,"r_long":7895210610065947389,"r_float":0.5505176,"r_double":0.22307181319482527,"r_bytes":"ya\u001Cð\u001EP›Œy•ÕJ?¾","r_string":"vpebgaelhgyk","r_enum":"ZERO","r_date":625078898,"r_timemillis":-1161335064,"r_timemicros":-5366803494884513972,"r_timestampmillis":1379666990461064802,"r_timestampmicros":2141906823988407021,"o_boolean":{"boolean":true},"o_int":{"int":972074241},"o_long":{"long":-8721322019896207556},"o_float":null,"o_double":{"double":0.5873497419731185},"o_bytes":null,"o_string":{"string":"bdkhviwog"},"o_enum":{"Level2_2_Enum2":"ONE"},"o_date":null,"o_timemillis":{"int":1254021888},"o_timemicros":{"long":-3293843837332066816},"o_timestampmillis":null,"o_timestampmicros":null},{"r_boolean":false,"r_int":-476204218,"r_long":5643196140597831759,"r_float":0.11105728,"r_double":0.6702477253652975,"r_bytes":"ȔF¿œ7","r_string":"phfwgedx","r_enum":"ZERO","r_date":1736323819,"r_timemillis":875850824,"r_timemicros":3012077232091756435,"r_timestampmillis":1748833274073680676,"r_timestampmicros":4778515470569127761,"o_boolean":{"boolean":false},"o_int":null,"o_long":{"long":2332090742761111470},"o_float":null,"o_double":{"double":0.20444148637479365},"o_bytes":null,"o_string":null,"o_enum":null,"o_date":{"int":-111942632},"o_timemillis":{"int":-1128323550},"o_timemicros":{"long":-1599989328358964101},"o_timestampmillis":{"long":4936518283181156442},"o_timestampmicros":null}],"o_boolean":{"boolean":true},"o_int":null,"o_long":{"long":-3905167589874235670},"o_float":null,"o_double":{"double":0.8164428895942892},"o_bytes":{"bytes":"e¸o¿”NáF:¯Ÿ"},"o_string":null,"o_enum":null,"o_date":null,"o_timemillis":null,"o_timemicros":{"long":6890592537001155242},"o_timestampmillis":{"long":8494653913228489651},"o_timestampmicros":{"long":7777896839234446745}},{"r_boolean":true,"r_int":888960450,"r_long":-9071552231762559254,"r_float":0.12643969,"r_double":0.6408741341002039,"r_bytes":"±\\ŽÙ\u0015›\u0010Ӑ¶¤zÒÒ1","r_string":"uovfkwsmltfvr","r_array":[{"r_boolean":true,"r_int":-824523610,"r_long":2300916894406366566,"r_float":0.8593589,"r_double":0.6203152213644472,"r_bytes":"C%ö6ßs8\u0007“»E\u0000¥q½","r_string":"klfognuhjufbq","r_enum":"ONE","r_date":-508054435,"r_timemillis":742333044,"r_timemicros":-7769569865435114145,"r_timestampmillis":-8068908166507181323,"r_timestampmicros":4744070122996511883,"o_boolean":{"boolean":true},"o_int":null,"o_long":{"long":4375928765961788099},"o_float":null,"o_double":{"double":0.44991556820030487},"o_bytes":null,"o_string":{"string":"inxpljaqdhdmnygqvamyfwpkdukpfsouhjxqtshqusvyiwhydvuhfhnwtsgujfbhcxudvovntlnvqkoqpceyyvhbebnhrtouwwgfdvxjvtnbganaxsqtnhwiugvyjaqbxjxsuktkbjbpmsdshgrmrlrjftnlhhprsstapdxdteeaxisehtpmtuwb"},"o_enum":null,"o_date":null,"o_timemillis":{"int":1740161047},"o_timemicros":null,"o_timestampmillis":{"long":6347443773025738823},"o_timestampmicros":null},{"r_boolean":false,"r_int":-2135843124,"r_long":-2480741501928817935,"r_float":0.9928359,"r_double":0.6088670142614906,"r_bytes":"á\r)pFŠ‚7Äj","r_string":"oclaokstxt","r_enum":"TWO","r_date":561789195,"r_timemillis":1671486495,"r_timemicros":7422782897059303807,"r_timestampmillis":5065076840346618847,"r_timestampmicros":3842275962698511991,"o_boolean":null,"o_int":{"int":159537251},"o_long":{"long":-4186575730069824059},"o_float":null,"o_double":{"double":0.30992235024899917},"o_bytes":null,"o_string":{"string":"nd"},"o_enum":{"Level2_2_Enum2":"ONE"},"o_date":null,"o_timemillis":null,"o_timemicros":{"long":3214975209361457468},"o_timestampmillis":null,"o_timestampmicros":null}],"o_boolean":{"boolean":false},"o_int":null,"o_long":null,"o_float":{"float":0.7388445},"o_double":null,"o_bytes":{"bytes":"nt/ªxž|bk"},"o_string":{"string":"jjsbdvkopn"},"o_enum":null,"o_date":{"int":-1904006891},"o_timemillis":null,"o_timemicros":null,"o_timestampmillis":{"long":4556312989635732965},"o_timestampmicros":{"long":9053597952109835903}},{"r_boolean":true,"r_int":313877134,"r_long":7364291969612330005,"r_float":0.53971183,"r_double":0.8201189161230357,"r_bytes":"ŽÝ]ë","r_string":"gjnggelaink","r_array":[],"o_boolean":null,"o_int":null,"o_long":null,"o_float":{"float":0.7234886},"o_double":null,"o_bytes":{"bytes":"âk"},"o_string":{"string":"cc"},"o_enum":{"Level1_2_Enum2":"ZERO"},"o_date":{"int":550416604},"o_timemillis":{"int":1662699717},"o_timemicros":{"long":9069332300930541276},"o_timestampmillis":{"long":-76319356205145090},"o_timestampmicros":{"long":-8188856311301655446}},{"r_boolean":true,"r_int":1065058471,"r_long":-5861541381203697676,"r_float":0.49398273,"r_double":0.8079321986631148,"r_bytes":"'\u000E\t","r_string":"bqspvxtmhs","r_array":[],"o_boolean":null,"o_int":{"int":-2094943444},"o_long":{"long":-5684959977307460737},"o_float":null,"o_double":{"double":0.03720480818925587},"o_bytes":null,"o_string":{"string":"fdjaybmnewmte"},"o_enum":{"Level1_2_Enum2":"ONE"},"o_date":null,"o_timemillis":{"int":621733982},"o_timemicros":{"long":-3377556370125296629},"o_timestampmillis":{"long":-8329636535363946715},"o_timestampmicros":{"long":2866041391925053490}},{"r_boolean":false,"r_int":463596889,"r_long":-38147044245924374,"r_float":0.74118286,"r_double":0.3006546471460263,"r_bytes":"n\u0010\u001B|","r_string":"hpgrp","r_array":[{"r_boolean":true,"r_int":193023305,"r_long":7133526045181256364,"r_float":0.5921906,"r_double":0.11908717391861823,"r_bytes":"æ\f\u0002{ë—4BÒÁ·æh\r<","r_string":"ttcog","r_enum":"ONE","r_date":-585583698,"r_timemillis":111221629,"r_timemicros":1520542471985438936,"r_timestampmillis":-5045175650548172870,"r_timestampmicros":2265505879275315753,"o_boolean":null,"o_int":null,"o_long":{"long":-2978907006071961472},"o_float":null,"o_double":null,"o_bytes":null,"o_string":null,"o_enum":{"Level2_2_Enum2":"ONE"},"o_date":{"int":-2003995125},"o_timemillis":null,"o_timemicros":null,"o_timestampmillis":null,"o_timestampmicros":null},{"r_boolean":true,"r_int":-1152414824,"r_long":7996832462311130153,"r_float":0.30671942,"r_double":0.26896880448106986,"r_bytes":"7kά$Ä\u0003Þ","r_string":"phr","r_enum":"TWO","r_date":-1431404450,"r_timemillis":-1167523379,"r_timemicros":-4767505289441450409,"r_timestampmillis":7186682410731269889,"r_timestampmicros":-3540309053279884229,"o_boolean":{"boolean":true},"o_int":null,"o_long":{"long":-7390319318872378489},"o_float":null,"o_double":null,"o_bytes":null,"o_string":{"string":"jcjdldlqwqu"},"o_enum":{"Level2_2_Enum2":"ONE"},"o_date":null,"o_timemillis":null,"o_timemicros":{"long":5301075928527264443},"o_timestampmillis":{"long":-4516632792052253483},"o_timestampmicros":null},{"r_boolean":false,"r_int":-710940284,"r_long":-6335999921127286453,"r_float":0.2023511,"r_double":0.2165584198491678,"r_bytes":"ñïq\u0011§‚sA\u00150\u0014é#­","r_string":"dbbuxwgrrniywm","r_enum":"ONE","r_date":855376400,"r_timemillis":1551630517,"r_timemicros":-7724741892576583441,"r_timestampmillis":5880794308812509643,"r_timestampmicros":184898069811346018,"o_boolean":{"boolean":true},"o_int":null,"o_long":{"long":6188646685596114611},"o_float":null,"o_double":null,"o_bytes":null,"o_string":{"string":"qwqjjjvh"},"o_enum":{"Level2_2_Enum2":"ONE"},"o_date":null,"o_timemillis":null,"o_timemicros":null,"o_timestampmillis":{"long":3499131412978544397},"o_timestampmicros":{"long":918547334253035727}}],"o_boolean":{"boolean":false},"o_int":{"int":-273347089},"o_long":{"long":4193870646533695733},"o_float":null,"o_double":{"double":0.33964683597041045},"o_bytes":null,"o_string":null,"o_enum":{"Level1_2_Enum2":"TWO"},"o_date":{"int":-139742073},"o_timemillis":null,"o_timemicros":{"long":-7194450964512557465},"o_timestampmillis":{"long":-3337588330284636312},"o_timestampmicros":{"long":2085990438080709715}}],"r_date":60404643,"r_timemillis":-1142731204,"r_timemicros":4992458694321692583,"r_timestampmillis":-713042113547444691,"r_timestampmicros":5715883501612014070,"o_boolean":{"boolean":true},"o_int":{"int":-491688518},"o_long":null,"o_float":null,"o_double":null,"o_bytes":null,"o_string":{"string":"uimausnlq"},"o_enum":{"Enum2":"ZERO"},"o_date":null,"o_timemillis":null,"o_timemicros":null,"o_timestampmillis":{"long":50303213883977688},"o_timestampmicros":null} -{"r_boolean":true,"r_int":-500562710,"r_long":2933817384308446058,"r_float":0.40249687,"r_double":0.0794741938236293,"r_bytes":"Ê]“Ô\"[","r_string":"oakb","r_record":{"r_boolean":false,"r_int":278623573,"r_long":-4054978582920467174,"r_float":0.77901214,"r_double":0.23520064308397337,"r_bytes":"Üé®4®ë4j´òè$","r_string":"rfuuvbxjfpmrirhaxoorlaytqsisyefyothikuljhqgcbrrsnbyulvehxyytwfepsdwfqkhrnfkvwbyhwyluivoiltgjmvpuvvryiwecdatobelutccnfmslgkpasgscxilcbjtgmnkkwbisaskvjgnjxnervjqvfrsnajotejsmeorwxiediseogcminicakvesuksmlmdcvonjlnuuktofqawqskedauogrqvfdwussvkjvceqmaskq","r_record":{"r_boolean":false,"r_int":-1840935720,"r_long":7973732883994972634,"r_float":0.11205101,"r_double":0.6049216882053516,"r_bytes":"ìªÐõdxü","r_string":"hkcwagbgnn","r_enum":"ONE","r_date":-859745049,"r_timemillis":-145898904,"r_timemicros":-310349882770427963,"r_timestampmillis":9174753689304880450,"r_timestampmicros":4403987202268794385,"o_boolean":null,"o_int":{"int":953220040},"o_long":{"long":4834017486637509593},"o_float":null,"o_double":null,"o_bytes":{"bytes":"\u0010E8;\u000Báç±\u00034Zå"},"o_string":null,"o_enum":{"Level2_1__1_Enum2":"ZERO"},"o_date":null,"o_timemillis":{"int":361726105},"o_timemicros":{"long":3872626422788656452},"o_timestampmillis":{"long":-4718481796337521262},"o_timestampmicros":null},"r_enum":"ONE","r_date":340668531,"r_timemillis":-161976199,"r_timemicros":-1591494924813355554,"r_timestampmillis":4486845034261248867,"r_timestampmicros":9041144636668931613,"r_array":[{"r_boolean":false,"r_int":-1294316166,"r_long":-2030819872659611906,"r_float":0.83717054,"r_double":0.5008509665563259,"r_bytes":"‹\u0001","r_string":"qriirlnnnh","r_enum":"TWO","o_boolean":{"boolean":true},"o_int":{"int":-128473366},"o_long":{"long":4332269012754568812},"o_float":{"float":0.26482767},"o_double":null,"o_bytes":{"bytes":"<|fMÌÿ|}íÉ®"},"o_string":null,"o_enum":{"Level2_1__2_Enum2":"ZERO"},"o_date":{"int":1469455008},"o_timemillis":null,"o_timemicros":{"long":-4151225881700658234},"o_timestampmillis":{"long":841319325687479004},"o_timestampmicros":{"long":2345981616127786858}}]},"r_enum":"ONE","r_array":[{"r_boolean":true,"r_int":-1824388341,"r_long":7201030911603815421,"r_float":0.76958984,"r_double":0.8691144838016607,"r_bytes":"V–ð¢\u0002","r_string":"okayaireukuku","r_array":[{"r_boolean":true,"r_int":1310250627,"r_long":-2927162038937746661,"r_float":0.8020826,"r_double":0.4557776702822752,"r_bytes":"3¿”\bö?\u0006ò\u001A§§","r_string":"rcyuhyhhlup","r_enum":"ZERO","r_date":-450352551,"r_timemillis":-331262703,"r_timemicros":-2071636354680577270,"r_timestampmillis":-5226995431857615217,"r_timestampmicros":3489960674250262495,"o_boolean":{"boolean":true},"o_int":{"int":2060032695},"o_long":{"long":-2091136498612844706},"o_float":null,"o_double":{"double":0.5615035712045003},"o_bytes":{"bytes":""},"o_string":{"string":"pjpdyeisopddbto"},"o_enum":{"Level2_2_Enum2":"ONE"},"o_date":{"int":1943557328},"o_timemillis":null,"o_timemicros":{"long":2643029873463502721},"o_timestampmillis":null,"o_timestampmicros":{"long":-7339709550829854949}}],"o_boolean":{"boolean":true},"o_int":null,"o_long":{"long":785539652451010818},"o_float":null,"o_double":{"double":0.27030609711786224},"o_bytes":null,"o_string":null,"o_enum":{"Level1_2_Enum2":"TWO"},"o_date":null,"o_timemillis":null,"o_timemicros":null,"o_timestampmillis":null,"o_timestampmicros":null},{"r_boolean":false,"r_int":-606839644,"r_long":-4925586568827439581,"r_float":0.6079188,"r_double":0.7271550024775468,"r_bytes":"37\u000B","r_string":"jqr","r_array":[],"o_boolean":{"boolean":false},"o_int":{"int":-1620462348},"o_long":{"long":4557322485802370224},"o_float":{"float":0.77572596},"o_double":{"double":0.33643875749119045},"o_bytes":{"bytes":"NpQݹ¹°mΕø3X—"},"o_string":{"string":"vbsaenjpqich"},"o_enum":{"Level1_2_Enum2":"ZERO"},"o_date":{"int":949336000},"o_timemillis":{"int":673553098},"o_timemicros":null,"o_timestampmillis":null,"o_timestampmicros":{"long":4330951009884484157}},{"r_boolean":false,"r_int":1386163314,"r_long":2597886782111655417,"r_float":0.2640127,"r_double":0.6144567858436671,"r_bytes":"·z`ï +\u0016Mp@{ý7\u0015","r_string":"webjpdewoyv","r_array":[{"r_boolean":true,"r_int":1155519467,"r_long":5567370439187286908,"r_float":0.92386097,"r_double":0.7511778563871353,"r_bytes":"Þ\u0015","r_string":"rbg","r_enum":"TWO","r_date":1155048139,"r_timemillis":706386517,"r_timemicros":361519831904224352,"r_timestampmillis":385003085874133728,"r_timestampmicros":4419280151105927223,"o_boolean":null,"o_int":{"int":1813204836},"o_long":null,"o_float":null,"o_double":{"double":0.7797371749474481},"o_bytes":{"bytes":"n\u001FéÃ3”ºB1I¾}9Ôda°r\"AX\u0001¦¹\u001AQ©V?¶\u0001pÀâ”-â\u0019^Ê6ÿ›ä¼[gæ\u001D\u0012¼62ñ;\u00147>ñg' YŒ\u000B©±£(´ztÃ6\u001F\u001D‚íµIÜF\n\u001Fá²y,/“˜\u0015î:'\u000Fð\u0005Y\u0016Cú˾*lŽdšÀ‹Byw\u001FXn†t2Ӊ\fåóÂZÌ\u001B„7un‡vÝ\r•©%Âøçšëœyž\u0017R\u0003u²lI£³«pßì¡}(ÉpEÊy͵êºÃF·€Ò› Ïh'DÚìàA4°`›ÈÓWëYƒ.7ÀwÎtÙç,҈Ý\u0013®\u001CNs{÷SMÚ­\u001A'>®vïGøo:\u001A\u0016\u0005”&ªLÛZ¾"},"o_string":{"string":"xhklb"},"o_enum":{"Level2_2_Enum2":"TWO"},"o_date":null,"o_timemillis":{"int":1019334860},"o_timemicros":{"long":7890782117121482273},"o_timestampmillis":null,"o_timestampmicros":null},{"r_boolean":true,"r_int":-1753879949,"r_long":-3049445789636528490,"r_float":0.13254863,"r_double":0.8529142260524114,"r_bytes":"ôl\u0003ÿ","r_string":"pu","r_enum":"ONE","r_date":-1029345190,"r_timemillis":-541437830,"r_timemicros":-6814967739143009684,"r_timestampmillis":-638441615528131187,"r_timestampmicros":9067318958102932815,"o_boolean":null,"o_int":{"int":-1397691461},"o_long":{"long":7264286979005505154},"o_float":null,"o_double":{"double":0.22901442125220073},"o_bytes":{"bytes":"†\u0014yD\u0005å)11å¬pp‰+KoIýhPýÙ\nB/Ñ؃$\u001A¾ý(¶mÝ?9-úç˜Ùë}n4EF\u001D\u0004D…•ÅÞ\u001C\u001D<Í|\u0010«ô,8\u0005ì\u000B‹ƒ·íkr¡´`J#\u000FV€`ÈÞñè¯~ÓÖ4\bTëµÞ*ÏE÷JLw…\u001A±Ïƒ§:o6¾àFéb ®ª2Ÿ+"},"o_string":{"string":""},"o_enum":null,"o_date":null,"o_timemillis":{"int":-1852662488},"o_timemicros":null,"o_timestampmillis":null,"o_timestampmicros":{"long":-7137647208393577777}},{"r_boolean":false,"r_int":-1805479830,"r_long":-7280329239229463815,"r_float":0.068986595,"r_double":0.006223834990381483,"r_bytes":"\u0012ýš°’Ií›|e7K","r_string":"egap","r_enum":"ONE","r_date":-540268285,"r_timemillis":-1392703430,"r_timemicros":-6283992313093185680,"r_timestampmillis":8743803405263165525,"r_timestampmicros":8324123021455720978,"o_boolean":{"boolean":false},"o_int":null,"o_long":{"long":-589969711612012078},"o_float":null,"o_double":{"double":0.7956475765610094},"o_bytes":{"bytes":"íl¤™h(Ï"},"o_string":{"string":"jwibqbkylmektxl"},"o_enum":null,"o_date":null,"o_timemillis":null,"o_timemicros":{"long":6537815574752496896},"o_timestampmillis":null,"o_timestampmicros":{"long":7733677864354086579}}],"o_boolean":null,"o_int":{"int":19137509},"o_long":{"long":-7632046210168582041},"o_float":null,"o_double":{"double":0.42244789542098327},"o_bytes":{"bytes":"6’"},"o_string":{"string":"wknfx"},"o_enum":{"Level1_2_Enum2":"ONE"},"o_date":{"int":-81975562},"o_timemillis":{"int":290039219},"o_timemicros":null,"o_timestampmillis":{"long":2671715519561527411},"o_timestampmicros":null}],"r_date":-1718117768,"r_timemillis":-1838625996,"r_timemicros":2221322412258196152,"r_timestampmillis":-8315242694737597060,"r_timestampmicros":2283550323567309328,"o_boolean":{"boolean":true},"o_int":null,"o_long":null,"o_float":{"float":0.10402465},"o_double":null,"o_bytes":{"bytes":"ûA“*|"},"o_string":{"string":"xwy"},"o_enum":null,"o_date":{"int":1423753540},"o_timemillis":null,"o_timemicros":{"long":1961759041246901996},"o_timestampmillis":{"long":6001205315734730307},"o_timestampmicros":null} -{"r_boolean":true,"r_int":1083144843,"r_long":5874873880084101773,"r_float":0.7865926,"r_double":0.5142516841011255,"r_bytes":"SlŒž\u0017W#œ","r_string":"lwclebq","r_record":{"r_boolean":true,"r_int":1573395680,"r_long":-4230685098727635298,"r_float":0.08872348,"r_double":0.23239757486476698,"r_bytes":"M\"¿ÜîùW\u0011·º'8C\u0002","r_string":"rmtdemdmgkyijhddyfpktludndcenwtqjhgfgxhyxebcywbtobrgxepxhtcusasemyyttgibnjcvmvipfhouigxiiqfcsrntpidtkwbyshwhxdfjfrliiqvdaxadxiljurukibnhaxsqmyemravqoupcldyvlhonguqyu","r_record":{"r_boolean":true,"r_int":1338989282,"r_long":8295490366420380029,"r_float":0.30651194,"r_double":0.12476869266819302,"r_bytes":"£ítx","r_string":"aaw","r_enum":"TWO","r_date":26767054,"r_timemillis":898156604,"r_timemicros":-3616269699073634327,"r_timestampmillis":-657102064297996398,"r_timestampmicros":-983117409432105009,"o_boolean":{"boolean":false},"o_int":{"int":-988394777},"o_long":{"long":9092847685686157639},"o_float":{"float":0.15061092},"o_double":{"double":0.05886068699798963},"o_bytes":null,"o_string":null,"o_enum":null,"o_date":null,"o_timemillis":{"int":291667489},"o_timemicros":{"long":4149375656734680167},"o_timestampmillis":{"long":7173023614498522894},"o_timestampmicros":{"long":5802287670071370335}},"r_enum":"TWO","r_date":-899398924,"r_timemillis":-555347794,"r_timemicros":-3486398091341711851,"r_timestampmillis":-7794595124952669119,"r_timestampmicros":-8765617431498924523,"r_array":[{"r_boolean":true,"r_int":-1114437936,"r_long":8663315161460971461,"r_float":0.2534032,"r_double":0.1296854038962295,"r_bytes":"ïUl<Ɔ","r_string":"elxkbnfenngvotfonacybdgxsmcopnxnudxneabijgphircbhdpdvqsjalwrcebaohrgvqikjathnmpwegapryailsyiwsffdpoytukkpkepgdlsfdkiwrgcdqwomgvycyrvufmiduimkqoicfhqafgbffjhysbsdjahusvejmoyfoearhpdlrbraacjxvnohbx","r_enum":"TWO","o_boolean":{"boolean":false},"o_int":{"int":1586579030},"o_long":null,"o_float":{"float":0.39568663},"o_double":null,"o_bytes":{"bytes":"XÀ·GB"},"o_string":null,"o_enum":null,"o_date":null,"o_timemillis":null,"o_timemicros":{"long":-7746852773592997094},"o_timestampmillis":null,"o_timestampmicros":null}]},"r_enum":"ZERO","r_array":[{"r_boolean":false,"r_int":-38973525,"r_long":8402364359055327505,"r_float":0.040554464,"r_double":0.6898392257752446,"r_bytes":"CªÊ*xè","r_string":"dtodhlcspdqupq","r_array":[{"r_boolean":true,"r_int":-2125997013,"r_long":-3566620132918195774,"r_float":0.05432552,"r_double":0.9144913799912077,"r_bytes":"","r_string":"uyfcoh","r_enum":"ONE","r_date":1578013310,"r_timemillis":-1243908901,"r_timemicros":-1467822425728548997,"r_timestampmillis":-8135805027354705001,"r_timestampmicros":8626360113490059823,"o_boolean":null,"o_int":{"int":-2044294215},"o_long":null,"o_float":{"float":0.5667074},"o_double":null,"o_bytes":{"bytes":"±j\u0017\u0007\u000Fg`⎨e”Ó)U~þ1]Yÿk¨O\n/ožÃ%ð­2¯Û2°>\u0007|ÏÃr&P@·G\u0000,Y\u0019L\bÉ&N\u0014‚üÆ#¤\u0006ß78Ð<_ü)\u0002§Õ7õš\u0001Óô\u001EH$ºÎz]°=ÚbâRCø‘Ø\u0015!oR\u0001Àl°Ç…QYKhñ_95\u001A°ÚPVâÏÊt¾c¤›“¿'\u0006\u0010+Èêà.Z´c±¥×V€Ëhsš"},"o_string":null,"o_enum":{"Level2_2_Enum2":"ZERO"},"o_date":{"int":661440140},"o_timemillis":{"int":-485956529},"o_timemicros":null,"o_timestampmillis":{"long":-5958084927364948118},"o_timestampmicros":null}],"o_boolean":null,"o_int":null,"o_long":{"long":4217013421862262558},"o_float":null,"o_double":null,"o_bytes":{"bytes":""},"o_string":{"string":"fpecgrjyrcqibg"},"o_enum":{"Level1_2_Enum2":"ZERO"},"o_date":{"int":1680090376},"o_timemillis":null,"o_timemicros":{"long":7007211605848953586},"o_timestampmillis":{"long":-1019083440656825439},"o_timestampmicros":null}],"r_date":1958210502,"r_timemillis":1675921474,"r_timemicros":-4233730944425285609,"r_timestampmillis":8723926179650492446,"r_timestampmicros":8251976171611876781,"o_boolean":null,"o_int":null,"o_long":{"long":948590443674016027},"o_float":{"float":0.6633328},"o_double":null,"o_bytes":{"bytes":"Ú"},"o_string":{"string":"qyaothjte"},"o_enum":null,"o_date":null,"o_timemillis":null,"o_timemicros":{"long":6968622965971425591},"o_timestampmillis":null,"o_timestampmicros":null} -{"r_boolean":false,"r_int":-895000861,"r_long":5677617445833933581,"r_float":0.14070415,"r_double":0.7536926829734564,"r_bytes":"fµŽaõ\u0010\\¡¿\\/","r_string":"sq","r_record":{"r_boolean":true,"r_int":937253969,"r_long":5831069944265293807,"r_float":0.17621797,"r_double":0.5311633017669694,"r_bytes":"’\u001B9ô","r_string":"wrwlv","r_record":{"r_boolean":false,"r_int":1299985800,"r_long":2788388111485623238,"r_float":0.09609085,"r_double":0.773125261687922,"r_bytes":" ­ç¡Ù­","r_string":"ediigtynlaehx","r_enum":"ZERO","r_date":1436939754,"r_timemillis":-2051420053,"r_timemicros":-5806963456416720564,"r_timestampmillis":5373167667031888424,"r_timestampmicros":-5107193847731755240,"o_boolean":{"boolean":false},"o_int":null,"o_long":null,"o_float":{"float":0.18422163},"o_double":{"double":0.3839285929868278},"o_bytes":null,"o_string":null,"o_enum":null,"o_date":null,"o_timemillis":{"int":1389809023},"o_timemicros":null,"o_timestampmillis":{"long":5064802513370177068},"o_timestampmicros":{"long":487539790702790880}},"r_enum":"ZERO","r_date":851023190,"r_timemillis":-1871107764,"r_timemicros":5600312627393239960,"r_timestampmillis":6530029779452514034,"r_timestampmicros":4865141087376759134,"r_array":[]},"r_enum":"ONE","r_array":[{"r_boolean":true,"r_int":561165202,"r_long":-5422528798876800386,"r_float":0.5767081,"r_double":0.22111172944956448,"r_bytes":"þj€ï¹²“¼ø ","r_string":"skcvdal","r_array":[{"r_boolean":true,"r_int":-80165036,"r_long":1568611668839896378,"r_float":0.40820062,"r_double":0.5710315102031511,"r_bytes":"¼?9\u0012‚D\u001EP8I—É","r_string":"vtomoenvvjdsey","r_enum":"ONE","r_date":-1499070749,"r_timemillis":-373357253,"r_timemicros":-268789618144753814,"r_timestampmillis":-4904292453238324079,"r_timestampmicros":-1578667481634973617,"o_boolean":null,"o_int":{"int":1809307798},"o_long":null,"o_float":{"float":0.25394994},"o_double":null,"o_bytes":null,"o_string":{"string":"bbfqtvalbk"},"o_enum":{"Level2_2_Enum2":"TWO"},"o_date":null,"o_timemillis":null,"o_timemicros":null,"o_timestampmillis":{"long":2902243723633695264},"o_timestampmicros":{"long":-6235601344275183455}},{"r_boolean":true,"r_int":-59174420,"r_long":7154988002811261263,"r_float":0.96807873,"r_double":0.7574001277544993,"r_bytes":"Ý\f\u0002é","r_string":"wv","r_enum":"TWO","r_date":760366984,"r_timemillis":-1145217336,"r_timemicros":-3767285159497374646,"r_timestampmillis":5139484060271132436,"r_timestampmicros":-2119555165354222095,"o_boolean":null,"o_int":null,"o_long":{"long":1960091774529132708},"o_float":{"float":0.3433637},"o_double":{"double":0.6751566304547657},"o_bytes":null,"o_string":null,"o_enum":{"Level2_2_Enum2":"ZERO"},"o_date":null,"o_timemillis":{"int":1073230513},"o_timemicros":null,"o_timestampmillis":{"long":1786992840340512708},"o_timestampmicros":{"long":-6755364174674127609}}],"o_boolean":{"boolean":false},"o_int":null,"o_long":null,"o_float":null,"o_double":null,"o_bytes":{"bytes":"wäꏬàB’±úA´"},"o_string":{"string":"hxwfhgs"},"o_enum":null,"o_date":null,"o_timemillis":{"int":-1936900506},"o_timemicros":{"long":-1801279387829355849},"o_timestampmillis":{"long":-438694978780678394},"o_timestampmicros":{"long":-8859326689585030400}},{"r_boolean":true,"r_int":807567162,"r_long":8125277727307179397,"r_float":0.48560244,"r_double":0.28297812127014554,"r_bytes":"»ÕV‘âªÃ›§Üº","r_string":"bnjpblukdnskht","r_array":[{"r_boolean":false,"r_int":-534345578,"r_long":-1713155416862860989,"r_float":0.062050223,"r_double":0.28134772099272753,"r_bytes":"ëP£…=Yx4","r_string":"dn","r_enum":"ONE","r_date":614582087,"r_timemillis":-1940422729,"r_timemicros":325758154215527775,"r_timestampmillis":-5861121472090346549,"r_timestampmicros":-5738289761136167498,"o_boolean":{"boolean":false},"o_int":{"int":-1875276423},"o_long":{"long":4659598426807233143},"o_float":null,"o_double":null,"o_bytes":null,"o_string":{"string":"xcsvt"},"o_enum":null,"o_date":{"int":1496367259},"o_timemillis":{"int":181058754},"o_timemicros":{"long":7522619437471907211},"o_timestampmillis":{"long":-8673734040440447182},"o_timestampmicros":null}],"o_boolean":null,"o_int":null,"o_long":{"long":-829688039046374625},"o_float":null,"o_double":{"double":0.949932104589907},"o_bytes":null,"o_string":{"string":"ebklyvccowkc"},"o_enum":null,"o_date":{"int":-1901860424},"o_timemillis":{"int":-1804930919},"o_timemicros":{"long":4665540742838415999},"o_timestampmillis":null,"o_timestampmicros":{"long":-5651512938197046314}},{"r_boolean":true,"r_int":406707491,"r_long":-8578357952713170253,"r_float":0.7645876,"r_double":0.6444391321436539,"r_bytes":"@HYv\u001B™a\u001EÄ","r_string":"plkonqomahh","r_array":[],"o_boolean":null,"o_int":null,"o_long":{"long":3125776399135352265},"o_float":null,"o_double":{"double":0.8884870271677322},"o_bytes":null,"o_string":{"string":"chdadurc"},"o_enum":{"Level1_2_Enum2":"ONE"},"o_date":null,"o_timemillis":null,"o_timemicros":null,"o_timestampmillis":null,"o_timestampmicros":null},{"r_boolean":false,"r_int":-1382911497,"r_long":-1082864989945889765,"r_float":0.9751823,"r_double":0.6971619497613584,"r_bytes":"","r_string":"pudelpkyjgd","r_array":[],"o_boolean":null,"o_int":{"int":718323698},"o_long":{"long":6047701816815645648},"o_float":{"float":0.4391355},"o_double":null,"o_bytes":{"bytes":"Ä\u0019¸M)#\u0018Î"},"o_string":{"string":"ltc"},"o_enum":{"Level1_2_Enum2":"ZERO"},"o_date":null,"o_timemillis":null,"o_timemicros":{"long":-958446562666051919},"o_timestampmillis":null,"o_timestampmicros":{"long":-8382970684284290652}},{"r_boolean":false,"r_int":-2095375223,"r_long":749233204707463568,"r_float":0.71647316,"r_double":0.07725791011531458,"r_bytes":"ügr","r_string":"vhpsplpyxcph","r_array":[{"r_boolean":true,"r_int":376334097,"r_long":1911586540976361335,"r_float":0.06899762,"r_double":0.7484470222881318,"r_bytes":"†\u0011tä?1q\u000E¦Á","r_string":"sbxoswm","r_enum":"ZERO","r_date":-1392164397,"r_timemillis":-2144172548,"r_timemicros":1991769510022667035,"r_timestampmillis":-2369180456646649798,"r_timestampmicros":9206396578234091303,"o_boolean":{"boolean":false},"o_int":{"int":-86935687},"o_long":null,"o_float":{"float":0.13824719},"o_double":null,"o_bytes":{"bytes":"îÀxç·Úek\u0010Yb­×¾"},"o_string":{"string":"nkduoschtwkyh"},"o_enum":{"Level2_2_Enum2":"TWO"},"o_date":{"int":2019428255},"o_timemillis":{"int":6636434},"o_timemicros":{"long":6258093159603952613},"o_timestampmillis":{"long":5355687864303110763},"o_timestampmicros":{"long":6791989189913213521}},{"r_boolean":true,"r_int":-2040908182,"r_long":4799473446717705129,"r_float":0.7557374,"r_double":0.5570174700348326,"r_bytes":"ö","r_string":"sxcpmqbigfk","r_enum":"ZERO","r_date":884919245,"r_timemillis":-1240519037,"r_timemicros":-871778988681274088,"r_timestampmillis":-1192606962356319287,"r_timestampmicros":-2098892060031263844,"o_boolean":{"boolean":false},"o_int":{"int":1165570910},"o_long":{"long":-5803882414039562892},"o_float":{"float":0.15289754},"o_double":{"double":0.8377698155051779},"o_bytes":{"bytes":"…§[RÒ"},"o_string":{"string":"sjdlm"},"o_enum":null,"o_date":{"int":-2119057271},"o_timemillis":{"int":-484376741},"o_timemicros":null,"o_timestampmillis":{"long":-7861265203315853657},"o_timestampmicros":null}],"o_boolean":{"boolean":true},"o_int":{"int":-1773253470},"o_long":{"long":-8316142092977371085},"o_float":null,"o_double":{"double":0.025446925106471063},"o_bytes":{"bytes":"%0*•W\u0019ç‚7PÕ\"ÿJm"},"o_string":{"string":"eudstctkolcnyxy"},"o_enum":{"Level1_2_Enum2":"ZERO"},"o_date":null,"o_timemillis":null,"o_timemicros":{"long":773277253996041022},"o_timestampmillis":null,"o_timestampmicros":{"long":-8070335918798133792}}],"r_date":2044513112,"r_timemillis":-2067854211,"r_timemicros":8267776319566814797,"r_timestampmillis":2878033815638556707,"r_timestampmicros":-4535196383141378156,"o_boolean":null,"o_int":null,"o_long":{"long":5396183589139893035},"o_float":{"float":0.31106025},"o_double":null,"o_bytes":{"bytes":"\u0014HY­C\u001F,¸Ïâ²Ì›"},"o_string":{"string":"lhrprgbpqexd"},"o_enum":{"Enum2":"TWO"},"o_date":{"int":-242835079},"o_timemillis":null,"o_timemicros":{"long":-2173148775142680956},"o_timestampmillis":{"long":2748181575176088667},"o_timestampmicros":{"long":-6292197807519511688}} -{"r_boolean":false,"r_int":1800055787,"r_long":2899307686924942633,"r_float":0.10128462,"r_double":0.02659710290056516,"r_bytes":"a¾ý˜\frlø¾","r_string":"ufkkdrxxxr","r_record":{"r_boolean":false,"r_int":-181039954,"r_long":6653883541810628521,"r_float":0.909037,"r_double":0.34189027817588213,"r_bytes":"\b","r_string":"eqvtblhk","r_record":{"r_boolean":true,"r_int":215865538,"r_long":-8578439069515032403,"r_float":0.072270334,"r_double":0.3683135961919316,"r_bytes":"‰ò€ßi","r_string":"rbsupxcwkmmvqfd","r_enum":"ZERO","r_date":571893996,"r_timemillis":1847706921,"r_timemicros":-7241759545199809369,"r_timestampmillis":-3907436605275200890,"r_timestampmicros":-501532089661841399,"o_boolean":null,"o_int":null,"o_long":{"long":-180992166318999166},"o_float":{"float":0.49243134},"o_double":{"double":0.13989429021841504},"o_bytes":null,"o_string":{"string":"xdonoewslkanxy"},"o_enum":null,"o_date":{"int":1210694412},"o_timemillis":null,"o_timemicros":{"long":7251407418492905454},"o_timestampmillis":null,"o_timestampmicros":null},"r_enum":"ONE","r_date":-899023051,"r_timemillis":978812571,"r_timemicros":7779450981807308337,"r_timestampmillis":6246760854740817826,"r_timestampmicros":-7815142686351812995,"r_array":[{"r_boolean":false,"r_int":-1534500311,"r_long":-3041654781814770291,"r_float":0.5040388,"r_double":0.9062662533062863,"r_bytes":"â","r_string":"cbgtlgyurpws","r_enum":"ZERO","o_boolean":{"boolean":false},"o_int":null,"o_long":{"long":5643625346164652314},"o_float":null,"o_double":null,"o_bytes":null,"o_string":null,"o_enum":null,"o_date":{"int":842329171},"o_timemillis":null,"o_timemicros":null,"o_timestampmillis":null,"o_timestampmicros":{"long":3940138942078190256}},{"r_boolean":false,"r_int":790029021,"r_long":3018552446683737611,"r_float":0.714912,"r_double":0.8894500693580115,"r_bytes":"","r_string":"uiovg","r_enum":"ZERO","o_boolean":{"boolean":true},"o_int":null,"o_long":{"long":-723992212666302178},"o_float":{"float":0.34393632},"o_double":null,"o_bytes":null,"o_string":{"string":"rqhltwakom"},"o_enum":null,"o_date":null,"o_timemillis":null,"o_timemicros":null,"o_timestampmillis":{"long":2096372805286846875},"o_timestampmicros":{"long":-4391668266518062630}},{"r_boolean":false,"r_int":1458409427,"r_long":6898581963741049533,"r_float":0.29590648,"r_double":0.2767669366249397,"r_bytes":"È\u001CÒë","r_string":"orspuhb","r_enum":"TWO","o_boolean":null,"o_int":null,"o_long":{"long":-1190436825936445001},"o_float":{"float":0.14871114},"o_double":null,"o_bytes":{"bytes":"ðì"},"o_string":null,"o_enum":null,"o_date":null,"o_timemillis":null,"o_timemicros":{"long":5562371335022894649},"o_timestampmillis":null,"o_timestampmicros":{"long":6231079406976971069}},{"r_boolean":false,"r_int":-1365306723,"r_long":966637714437015465,"r_float":0.13957131,"r_double":0.05493497987831342,"r_bytes":"¶P1¬\u000E","r_string":"u","r_enum":"TWO","o_boolean":{"boolean":false},"o_int":{"int":938126270},"o_long":{"long":-1178939947180099732},"o_float":null,"o_double":null,"o_bytes":null,"o_string":null,"o_enum":null,"o_date":{"int":1046230021},"o_timemillis":null,"o_timemicros":{"long":-8102787928592781186},"o_timestampmillis":{"long":-6979803463392928428},"o_timestampmicros":null}]},"r_enum":"ONE","r_array":[{"r_boolean":false,"r_int":17216086,"r_long":1231958903730685680,"r_float":0.43559045,"r_double":0.14377701713302438,"r_bytes":"F£Àä","r_string":"bcgklfikalc","r_array":[],"o_boolean":{"boolean":true},"o_int":{"int":1609439296},"o_long":null,"o_float":null,"o_double":null,"o_bytes":{"bytes":"þ"},"o_string":{"string":"xfccuu"},"o_enum":{"Level1_2_Enum2":"ONE"},"o_date":{"int":529748674},"o_timemillis":{"int":-135607136},"o_timemicros":null,"o_timestampmillis":null,"o_timestampmicros":{"long":-1591937531792915636}},{"r_boolean":false,"r_int":-1233914878,"r_long":-5465339791787945163,"r_float":0.17686689,"r_double":0.7620147359045777,"r_bytes":"Ì]ú_2","r_string":"mdbqqiucrifoauknbtgiuvdfowjniyqgeqihulrfiviewlnkvsagehixxxnhexewakfexlumppjwevkguuxsfhtnbcjgpppgmhyjmggdcaetujlhwuaohcdjxicqqjwjigwcuhvcqevruprtgtvturnmopmeempvfqlqnsoldomhkbbgdvjecoysbyyxsvboywtipihqsjibed","r_array":[],"o_boolean":{"boolean":true},"o_int":{"int":-1159698086},"o_long":{"long":950654954104334126},"o_float":{"float":0.48222315},"o_double":{"double":0.15642517462826788},"o_bytes":{"bytes":"³ J\t\u0004"},"o_string":{"string":"ppttldm"},"o_enum":{"Level1_2_Enum2":"TWO"},"o_date":null,"o_timemillis":null,"o_timemicros":null,"o_timestampmillis":null,"o_timestampmicros":{"long":-994859995396239144}}],"r_date":1674222435,"r_timemillis":1427229546,"r_timemicros":643093487180996487,"r_timestampmillis":-8701012248522197233,"r_timestampmicros":8429747034595113965,"o_boolean":null,"o_int":{"int":1506188225},"o_long":{"long":8388616484560940150},"o_float":null,"o_double":{"double":0.9375411856132148},"o_bytes":null,"o_string":{"string":"nv"},"o_enum":null,"o_date":null,"o_timemillis":{"int":2052401822},"o_timemicros":{"long":6610166420967425320},"o_timestampmillis":null,"o_timestampmicros":{"long":2301509279550623012}} -{"r_boolean":true,"r_int":-46599942,"r_long":-4982085423286739234,"r_float":0.39601618,"r_double":0.6130290332336046,"r_bytes":"6‹÷","r_string":"pcnx","r_record":{"r_boolean":true,"r_int":-1742790207,"r_long":5804274812739851103,"r_float":0.84636074,"r_double":0.2475458328073029,"r_bytes":"©ÔSº-D²","r_string":"daafpkoqipldqxhljoevxeqjkrsigsotafwlvxhrhrqxiqorhlesmuruywyqoxhrxecatcsmlptduuyndkhirwdjnkcxkvuearmhfwolmssovatdpelktfdbxrgdfokwyjihwlcgpgvaqghudpowiantiasietfmnsucwgbqwyhmrhkgxdkbefkxrjvjtujjnihsqimhwusghvdawsbldmubignrqrmenu","r_record":{"r_boolean":true,"r_int":-1943749038,"r_long":-4086081334335511136,"r_float":0.7452957,"r_double":0.710433681793212,"r_bytes":"’çŒ!\u0016ԓ(Œ3","r_string":"xbucfsiubro","r_enum":"ONE","r_date":1727343548,"r_timemillis":-1490714328,"r_timemicros":-7233769952100895657,"r_timestampmillis":-6068196999981013735,"r_timestampmicros":-8304176875834269533,"o_boolean":null,"o_int":{"int":-1873649050},"o_long":null,"o_float":{"float":0.14177853},"o_double":{"double":0.8403167174039163},"o_bytes":{"bytes":"–\u001Cìq\u0002äv\u0013"},"o_string":null,"o_enum":{"Level2_1__1_Enum2":"ONE"},"o_date":{"int":1575678446},"o_timemillis":null,"o_timemicros":{"long":6234821446383323028},"o_timestampmillis":null,"o_timestampmicros":{"long":-6349029122582076276}},"r_enum":"TWO","r_date":1727854302,"r_timemillis":-373704677,"r_timemicros":4848360165694843158,"r_timestampmillis":7412354602122848403,"r_timestampmicros":-6384046244403160842,"r_array":[{"r_boolean":false,"r_int":1394358321,"r_long":8173077567800529790,"r_float":0.180193,"r_double":0.10890060593086248,"r_bytes":"Öªð\u0003Ä\u001C³\u001C@þ5`","r_string":"eqc","r_enum":"TWO","o_boolean":{"boolean":false},"o_int":null,"o_long":{"long":-2462773615027632820},"o_float":{"float":0.9616262},"o_double":{"double":0.44466548741693035},"o_bytes":null,"o_string":null,"o_enum":null,"o_date":{"int":-1098846988},"o_timemillis":{"int":-759703751},"o_timemicros":null,"o_timestampmillis":null,"o_timestampmicros":{"long":-764571313887404608}},{"r_boolean":true,"r_int":-274803074,"r_long":8486570618619094264,"r_float":0.3916419,"r_double":0.3211167161490661,"r_bytes":"YpÜ\u001B\u001E\u0004\u000Fbí","r_string":"pjghqcifewemcbp","r_enum":"ZERO","o_boolean":null,"o_int":null,"o_long":{"long":7881244644656646296},"o_float":null,"o_double":null,"o_bytes":{"bytes":""},"o_string":{"string":"pvsljpajn"},"o_enum":null,"o_date":{"int":1740731269},"o_timemillis":null,"o_timemicros":null,"o_timestampmillis":{"long":-2223045058133466971},"o_timestampmicros":{"long":6682743586382012613}},{"r_boolean":true,"r_int":-1645464861,"r_long":-6038860243698739881,"r_float":0.23194379,"r_double":0.8720128583274658,"r_bytes":"","r_string":"ylsho","r_enum":"TWO","o_boolean":{"boolean":true},"o_int":null,"o_long":null,"o_float":{"float":0.21584755},"o_double":{"double":0.08854626502633745},"o_bytes":null,"o_string":null,"o_enum":null,"o_date":{"int":1483231961},"o_timemillis":{"int":1831487022},"o_timemicros":null,"o_timestampmillis":{"long":-2860191061104696056},"o_timestampmicros":null},{"r_boolean":true,"r_int":-1389629454,"r_long":4061003922830017932,"r_float":0.12477291,"r_double":0.6310895432483893,"r_bytes":"–üíPÈÚ¥`Œ¬;","r_string":"li","r_enum":"TWO","o_boolean":{"boolean":true},"o_int":null,"o_long":{"long":6332206929443547204},"o_float":{"float":0.7649283},"o_double":null,"o_bytes":{"bytes":"'"},"o_string":null,"o_enum":null,"o_date":null,"o_timemillis":null,"o_timemicros":null,"o_timestampmillis":null,"o_timestampmicros":null}]},"r_enum":"ONE","r_array":[{"r_boolean":false,"r_int":544251707,"r_long":7858615674342738840,"r_float":0.54940087,"r_double":0.11093914639561497,"r_bytes":"B™\fX","r_string":"rnkntoikjugi","r_array":[],"o_boolean":{"boolean":true},"o_int":null,"o_long":null,"o_float":null,"o_double":{"double":0.32676861164889703},"o_bytes":{"bytes":"ÚOŸüÇ\u000F\u0011t%\u000E§¡A•\u0000ý(ǟƒs󅐭±FûÖþ{ÝEà\u0019Ù2…A™‡ÆžÄª&U"},"o_string":null,"o_enum":null,"o_date":{"int":-1398138431},"o_timemillis":{"int":2145131548},"o_timemicros":null,"o_timestampmillis":{"long":-7483959142886247353},"o_timestampmicros":{"long":5993541071172908707}},{"r_boolean":false,"r_int":1743490323,"r_long":-4989921200928249974,"r_float":0.17070067,"r_double":0.103085704450944,"r_bytes":"O½ÏiÂ\r'`","r_string":"uuntdaenv","r_array":[],"o_boolean":null,"o_int":null,"o_long":{"long":420044928231454725},"o_float":{"float":0.099787295},"o_double":{"double":0.4224002765213545},"o_bytes":null,"o_string":{"string":"ibsxvtkam"},"o_enum":{"Level1_2_Enum2":"ZERO"},"o_date":{"int":-552303185},"o_timemillis":{"int":-632785550},"o_timemicros":{"long":-763993597973863066},"o_timestampmillis":null,"o_timestampmicros":null},{"r_boolean":false,"r_int":-292265102,"r_long":310779525124178447,"r_float":0.5612041,"r_double":0.39769337655471704,"r_bytes":"Y’êö6Fÿk|","r_string":"gtpjnokjusqkkq","r_array":[],"o_boolean":null,"o_int":null,"o_long":{"long":-4912312228256349989},"o_float":{"float":0.56335145},"o_double":null,"o_bytes":null,"o_string":null,"o_enum":{"Level1_2_Enum2":"ZERO"},"o_date":{"int":175569941},"o_timemillis":null,"o_timemicros":null,"o_timestampmillis":{"long":-5474620611022381984},"o_timestampmicros":{"long":-6632763005423922296}},{"r_boolean":false,"r_int":-1866836593,"r_long":7097606207236286550,"r_float":0.08233482,"r_double":0.7255218230685361,"r_bytes":"™ôüí\u0007\u0017\u001F\u0015ыæ°ÞVÞ","r_string":"pvupfkdsmwe","r_array":[{"r_boolean":true,"r_int":2118316987,"r_long":-3556119546772561461,"r_float":0.969726,"r_double":0.23395174515617856,"r_bytes":"\u0000èJ","r_string":"e","r_enum":"ONE","r_date":1373235718,"r_timemillis":-1619153291,"r_timemicros":2446271766906779449,"r_timestampmillis":-3186484245491922447,"r_timestampmicros":-1381051578353066310,"o_boolean":null,"o_int":{"int":-1436260164},"o_long":{"long":-3498642395736642951},"o_float":{"float":0.82109225},"o_double":null,"o_bytes":null,"o_string":null,"o_enum":null,"o_date":null,"o_timemillis":null,"o_timemicros":null,"o_timestampmillis":{"long":-7578607292316931442},"o_timestampmicros":{"long":-5212662731517130039}}],"o_boolean":null,"o_int":null,"o_long":null,"o_float":null,"o_double":null,"o_bytes":{"bytes":"ˆhô{D˜PœÚEä"},"o_string":{"string":"ssoo"},"o_enum":{"Level1_2_Enum2":"ZERO"},"o_date":null,"o_timemillis":null,"o_timemicros":null,"o_timestampmillis":{"long":5147906749390898251},"o_timestampmicros":{"long":2017999084855720020}},{"r_boolean":true,"r_int":1972417265,"r_long":-3110395544991335750,"r_float":0.6026064,"r_double":0.674348632261432,"r_bytes":"«Õô\rÒ[3\n?òN¾Å\u0010ûâåé‡cQәº›/“²v\u000E9\u0012›\bzœº\n•<\bÇJµÁ÷\u0005³®èO¯¾²5mô›G=xï`Õ҃¶Oi¶¹ôӟQF«¬Ž¸1à†B\u0010\u001Ah\u0014È\u0002љ.J6›V+KôG<\u0016\r\u0005 y÷Þ\u0006(XÒÅÓåÛÙ\u0013\\Mº\u001BŽ\u000F\u0002ö9NSª^vc\u0017 ","r_string":"k","r_array":[],"o_boolean":null,"o_int":null,"o_long":{"long":3267708712096984389},"o_float":null,"o_double":{"double":0.7251534681346098},"o_bytes":{"bytes":"ä\rò‚Ò\u0013*N"},"o_string":{"string":"xunw"},"o_enum":null,"o_date":{"int":-1424883240},"o_timemillis":{"int":-1837297080},"o_timemicros":null,"o_timestampmillis":null,"o_timestampmicros":{"long":698799106287662289}}],"r_date":-580182207,"r_timemillis":1965056543,"r_timemicros":1482798887956330795,"r_timestampmillis":1794800888614931744,"r_timestampmicros":1901863398660672709,"o_boolean":{"boolean":true},"o_int":null,"o_long":null,"o_float":null,"o_double":{"double":0.27708639202229557},"o_bytes":null,"o_string":{"string":"hjpkcui"},"o_enum":{"Enum2":"TWO"},"o_date":null,"o_timemillis":null,"o_timemicros":null,"o_timestampmillis":{"long":-6027501796530958260},"o_timestampmicros":null} -{"r_boolean":false,"r_int":1657903094,"r_long":-1855017687278242681,"r_float":0.24945337,"r_double":0.3417097409804132,"r_bytes":"(ë_ˆ6","r_string":"hmniplv","r_record":{"r_boolean":true,"r_int":1757537590,"r_long":-903839506839962785,"r_float":0.18949342,"r_double":0.6127781472517123,"r_bytes":"ù²P\u0019€","r_string":"iemhurkloesw","r_record":{"r_boolean":true,"r_int":-377982659,"r_long":-1248714494705178437,"r_float":0.19183654,"r_double":0.7937011522491487,"r_bytes":"µJoS'5","r_string":"gojyjgikbabaig","r_enum":"TWO","r_date":-1380871911,"r_timemillis":1561115378,"r_timemicros":-5757551357802729755,"r_timestampmillis":-3883833504226137226,"r_timestampmicros":6114476630862365485,"o_boolean":{"boolean":false},"o_int":null,"o_long":{"long":-1151136217062039326},"o_float":null,"o_double":{"double":0.07646514218183076},"o_bytes":{"bytes":"ɧ"},"o_string":{"string":"ydyoofsklm"},"o_enum":null,"o_date":{"int":1399014132},"o_timemillis":null,"o_timemicros":null,"o_timestampmillis":{"long":-8289097907651078405},"o_timestampmicros":null},"r_enum":"ONE","r_date":-1989325639,"r_timemillis":2036658995,"r_timemicros":6051231641439487253,"r_timestampmillis":-311556461961565451,"r_timestampmicros":8428452972906771097,"r_array":[{"r_boolean":true,"r_int":181487453,"r_long":-5951961760095933914,"r_float":0.61442566,"r_double":0.8917774877027858,"r_bytes":"¶¹µ,","r_string":"qjwkudqfweqtewy","r_enum":"ONE","o_boolean":{"boolean":true},"o_int":null,"o_long":{"long":402947530494866370},"o_float":{"float":0.31321138},"o_double":null,"o_bytes":{"bytes":">úз×.!¦\u0010\u0006$¡·=Æb‹G¶<ð\u0010¥´«\u0016Sã9Î_%\u000B\u001E=[|*ÿ©ñÅÜM´!`\b‰a5e)ƒ\u0005~å`Ùð&ãdÞilÃßÊÎÆÙYË\u0013íO¿§ôyûÿtAìîê\n»ïͳ@vÎüwAë\u001C\u0016Ž“l$ðQßq]±Å\u001C\u0000\u001D˝®)4梴\u0014¡š—SÐ,\t–®C×<\u0003a[^Þ&ˆVËË5ÐËL©\u0016¾’åƳªr£´šL~ö)Nf81‚1YiB¾\u0001r\u0010å\u0013QS7í`”˜•Ÿp"},"o_string":null,"o_enum":{"Level2_1__2_Enum2":"TWO"},"o_date":null,"o_timemillis":{"int":1375181376},"o_timemicros":{"long":-5958142578207907834},"o_timestampmillis":null,"o_timestampmicros":null},{"r_boolean":true,"r_int":-919971650,"r_long":6877059454298835829,"r_float":0.48234504,"r_double":0.9668456197405948,"r_bytes":"","r_string":"hn","r_enum":"ONE","o_boolean":{"boolean":true},"o_int":{"int":-1651404560},"o_long":null,"o_float":null,"o_double":null,"o_bytes":null,"o_string":{"string":"kkekxxkhlyc"},"o_enum":{"Level2_1__2_Enum2":"ONE"},"o_date":null,"o_timemillis":{"int":-1281645094},"o_timemicros":{"long":1408621218666273738},"o_timestampmillis":null,"o_timestampmicros":null},{"r_boolean":false,"r_int":-1152052598,"r_long":5197947528633335073,"r_float":0.68764144,"r_double":0.13907094904034933,"r_bytes":"\u0014é_B\n\u001B","r_string":"ndsykpghkmdfddbeknbdroeumdeotlyojjiupuhryikbeaieoulyiybvhqysnbfnlvatvnfhbqeyysuvypcsdqaxqlepfhanmppxdjyxklspwtryflgeupgls","r_enum":"ZERO","o_boolean":{"boolean":true},"o_int":{"int":-1540094976},"o_long":{"long":-6950238340877682193},"o_float":null,"o_double":null,"o_bytes":null,"o_string":null,"o_enum":null,"o_date":null,"o_timemillis":null,"o_timemicros":null,"o_timestampmillis":{"long":-3834613371978345197},"o_timestampmicros":null}]},"r_enum":"ONE","r_array":[{"r_boolean":false,"r_int":726550722,"r_long":3413760741586263727,"r_float":0.29825258,"r_double":0.5074758214626824,"r_bytes":".ŒáŽ","r_string":"slxtlfviy","r_array":[{"r_boolean":false,"r_int":-2006737090,"r_long":-9146922045319796635,"r_float":0.8519682,"r_double":0.36294086233590983,"r_bytes":"yÂä­YM\\","r_string":"pttapv","r_enum":"ZERO","r_date":-311946397,"r_timemillis":642251265,"r_timemicros":8901953195147255385,"r_timestampmillis":8995181478581767468,"r_timestampmicros":-2171049318710248213,"o_boolean":{"boolean":true},"o_int":{"int":1097887512},"o_long":{"long":-6192349266612881376},"o_float":{"float":0.26641166},"o_double":null,"o_bytes":{"bytes":"˜ty¥\tD”q”"},"o_string":null,"o_enum":{"Level2_2_Enum2":"ONE"},"o_date":{"int":-1748696375},"o_timemillis":null,"o_timemicros":null,"o_timestampmillis":null,"o_timestampmicros":null},{"r_boolean":false,"r_int":-1738910087,"r_long":6230118789885016625,"r_float":0.46101987,"r_double":0.19592742471592473,"r_bytes":"\fgÎ5´!÷+ž©","r_string":"ongdodtsivr","r_enum":"ONE","r_date":1305256376,"r_timemillis":-2075671012,"r_timemicros":-2744787483094278627,"r_timestampmillis":7204141894132923785,"r_timestampmicros":-5457244918899163183,"o_boolean":{"boolean":false},"o_int":{"int":122745515},"o_long":{"long":5009928465058376434},"o_float":null,"o_double":{"double":0.1440062862556275},"o_bytes":{"bytes":"ç\f%\u0002\u0004Ý%9"},"o_string":null,"o_enum":null,"o_date":null,"o_timemillis":null,"o_timemicros":{"long":3697926331342057430},"o_timestampmillis":null,"o_timestampmicros":{"long":3056408240670228769}}],"o_boolean":null,"o_int":null,"o_long":null,"o_float":{"float":0.021120131},"o_double":null,"o_bytes":{"bytes":"Ô`»Ú¯\u0002ý¯"},"o_string":{"string":"emckvog"},"o_enum":null,"o_date":null,"o_timemillis":{"int":-1444157698},"o_timemicros":null,"o_timestampmillis":{"long":-5156280289915109435},"o_timestampmicros":{"long":-1841108308335185548}},{"r_boolean":false,"r_int":-1983188679,"r_long":-941480371018112133,"r_float":0.04999602,"r_double":0.8256351953801554,"r_bytes":"m\u0015é„Oú","r_string":"ydslhwgypjcpw","r_array":[{"r_boolean":true,"r_int":-1494611927,"r_long":5077298306496431397,"r_float":0.7179623,"r_double":0.2943030110251712,"r_bytes":"\u000BèÅæ\u0015Ö·â","r_string":"wgbi","r_enum":"ONE","r_date":1195721706,"r_timemillis":-1903730638,"r_timemicros":3883783973164138253,"r_timestampmillis":1142360648567321402,"r_timestampmicros":2430049022701431349,"o_boolean":null,"o_int":{"int":251412890},"o_long":null,"o_float":{"float":0.6530804},"o_double":{"double":0.3811814558164811},"o_bytes":null,"o_string":null,"o_enum":null,"o_date":{"int":1011896974},"o_timemillis":null,"o_timemicros":null,"o_timestampmillis":null,"o_timestampmicros":{"long":4577618568789818600}},{"r_boolean":false,"r_int":421723839,"r_long":5503753288633344214,"r_float":0.5070012,"r_double":0.4252302170599984,"r_bytes":"mö‚'ÍH+³","r_string":"yxuparyvwdq","r_enum":"ZERO","r_date":940139790,"r_timemillis":-888429834,"r_timemicros":5665310468078154743,"r_timestampmillis":-3136589986197457791,"r_timestampmicros":7203231009391280358,"o_boolean":{"boolean":false},"o_int":{"int":70662300},"o_long":{"long":6127346925094260323},"o_float":null,"o_double":null,"o_bytes":null,"o_string":{"string":"ru"},"o_enum":null,"o_date":null,"o_timemillis":{"int":1166787339},"o_timemicros":{"long":4007642762085298753},"o_timestampmillis":null,"o_timestampmicros":{"long":-1835601790204647129}}],"o_boolean":{"boolean":false},"o_int":{"int":1283645317},"o_long":null,"o_float":{"float":0.6307255},"o_double":{"double":0.2979270235012371},"o_bytes":null,"o_string":{"string":"bgrtub"},"o_enum":null,"o_date":{"int":706814871},"o_timemillis":{"int":-993793236},"o_timemicros":{"long":-3505718180487191466},"o_timestampmillis":{"long":1935821174625635544},"o_timestampmicros":null},{"r_boolean":true,"r_int":988740809,"r_long":5101556282101382776,"r_float":0.69152457,"r_double":0.7003977275959972,"r_bytes":"\u0015\u00075n£SCÓÂ4\u000F","r_string":"ycghmntqv","r_array":[{"r_boolean":false,"r_int":944595581,"r_long":-7050225799390846903,"r_float":0.5550813,"r_double":0.6736776675372315,"r_bytes":"\u0019)åE& ","r_string":"mnbkrlrfoex","r_enum":"ZERO","r_date":-377668620,"r_timemillis":2065405122,"r_timemicros":-8637690872233252275,"r_timestampmillis":7848708252473593346,"r_timestampmicros":5555135297048030958,"o_boolean":{"boolean":true},"o_int":{"int":1503948912},"o_long":{"long":-3726907082794642983},"o_float":null,"o_double":{"double":0.9925759052511909},"o_bytes":{"bytes":"\u001EÏãì’wü¶¤\u0001}\u000Eó"},"o_string":null,"o_enum":null,"o_date":{"int":946046494},"o_timemillis":{"int":-484052121},"o_timemicros":{"long":-5588499890886924229},"o_timestampmillis":{"long":2992197527785542388},"o_timestampmicros":{"long":-6471953976348939915}}],"o_boolean":{"boolean":true},"o_int":null,"o_long":{"long":3743521905161975871},"o_float":null,"o_double":null,"o_bytes":null,"o_string":null,"o_enum":null,"o_date":null,"o_timemillis":{"int":-148767589},"o_timemicros":null,"o_timestampmillis":null,"o_timestampmicros":{"long":8687827187840747351}}],"r_date":-41477272,"r_timemillis":-1117060272,"r_timemicros":7082767814616626860,"r_timestampmillis":5908308896370938322,"r_timestampmicros":-3521714198060017288,"o_boolean":null,"o_int":{"int":-216713218},"o_long":{"long":-4613846305899516321},"o_float":null,"o_double":null,"o_bytes":null,"o_string":null,"o_enum":null,"o_date":{"int":-1415359993},"o_timemillis":{"int":-141190512},"o_timemicros":{"long":6413387908879441716},"o_timestampmillis":null,"o_timestampmicros":{"long":-8826056274800910427}} -{"r_boolean":true,"r_int":-1998978101,"r_long":-6573704079993784487,"r_float":0.81961954,"r_double":0.11880342577902259,"r_bytes":"cLã\u0005±lô3¯â\u0013‹","r_string":"bjtpfrrukepuc","r_record":{"r_boolean":false,"r_int":-2071875850,"r_long":-4769966073845772799,"r_float":0.53790206,"r_double":0.7278396425115701,"r_bytes":"'ú","r_string":"icndan","r_record":{"r_boolean":true,"r_int":-1710951005,"r_long":7594583909746015375,"r_float":0.05714512,"r_double":0.7535284530172112,"r_bytes":"\\f€.&","r_string":"dldrxyntmtr","r_enum":"ZERO","r_date":-1966767934,"r_timemillis":-1935195566,"r_timemicros":3034049525166921875,"r_timestampmillis":5269545502103618038,"r_timestampmicros":-3928737531131106778,"o_boolean":null,"o_int":null,"o_long":null,"o_float":null,"o_double":{"double":0.6263447311341509},"o_bytes":{"bytes":"æ%œµv”Ìg߃"},"o_string":{"string":"n"},"o_enum":null,"o_date":{"int":-839248921},"o_timemillis":null,"o_timemicros":{"long":-4967017193532273248},"o_timestampmillis":null,"o_timestampmicros":null},"r_enum":"ZERO","r_date":1140081716,"r_timemillis":1133861112,"r_timemicros":8495075407982992562,"r_timestampmillis":-9024551486841676848,"r_timestampmicros":6078448855595127452,"r_array":[{"r_boolean":true,"r_int":1418069696,"r_long":-9014522037026364332,"r_float":0.7059274,"r_double":0.14643224177843295,"r_bytes":"\u0017CO\u0005V","r_string":"qdoqlincjilx","r_enum":"TWO","o_boolean":{"boolean":false},"o_int":{"int":-1840236345},"o_long":{"long":3688462441521311848},"o_float":null,"o_double":{"double":0.9626391963338616},"o_bytes":{"bytes":"N Ì\u0014•ô¤Žcñ¡ÀÑw\bcÚ\u0017$Rÿ#?¼¿¯Ê\u001A¸Ðº2IrmÏ6[½Ûý\u001Aç\u0001“«@ùÐ\u0000Å;awÑ\u0001Ã\u0010\u0014ftÔ¾(¼¦éj\u000Fm•\u0002¿B"},"o_string":null,"o_enum":{"Level2_1__2_Enum2":"ZERO"},"o_date":{"int":-93301621},"o_timemillis":null,"o_timemicros":{"long":2711874506277280873},"o_timestampmillis":null,"o_timestampmicros":null},{"r_boolean":false,"r_int":1802538470,"r_long":-1145486788594989072,"r_float":0.052660048,"r_double":0.16615321306220165,"r_bytes":"³Mn?/‡£2@#•\u001Dtþ","r_string":"cwgsvhixdemb","r_enum":"ZERO","o_boolean":null,"o_int":{"int":2110854999},"o_long":null,"o_float":{"float":0.37925297},"o_double":null,"o_bytes":{"bytes":"ê\u001Eí\u0004"},"o_string":{"string":"u"},"o_enum":{"Level2_1__2_Enum2":"TWO"},"o_date":null,"o_timemillis":null,"o_timemicros":null,"o_timestampmillis":{"long":8352834201125043003},"o_timestampmicros":{"long":8691569383897518228}}]},"r_enum":"ZERO","r_array":[{"r_boolean":false,"r_int":1027920345,"r_long":8213202686875446225,"r_float":0.4581977,"r_double":0.5500135059079505,"r_bytes":"! ñî·é¥wn","r_string":"rgxifirgsuo","r_array":[],"o_boolean":null,"o_int":null,"o_long":{"long":4363374121952400576},"o_float":{"float":0.4800033},"o_double":{"double":0.886278874982109},"o_bytes":null,"o_string":{"string":"ex"},"o_enum":{"Level1_2_Enum2":"ZERO"},"o_date":null,"o_timemillis":{"int":-1621017335},"o_timemicros":null,"o_timestampmillis":{"long":-2143882175046793767},"o_timestampmicros":null},{"r_boolean":true,"r_int":-973286531,"r_long":-6383444040607598110,"r_float":0.8909496,"r_double":0.058161520476470496,"r_bytes":"`Çú—]¢Úv","r_string":"jqgxdoagx","r_array":[{"r_boolean":true,"r_int":-869567430,"r_long":5785630357749567649,"r_float":0.4710484,"r_double":0.9680689398225442,"r_bytes":"ø\u0016¤Ù߆á\u0017&j\u000B\u0000D","r_string":"jklsfobtnhdt","r_enum":"TWO","r_date":294924690,"r_timemillis":-911627389,"r_timemicros":-5291775248817399247,"r_timestampmillis":5514097416050727668,"r_timestampmicros":-1294224211110194310,"o_boolean":null,"o_int":{"int":142933143},"o_long":{"long":4889643307253106619},"o_float":{"float":0.24814111},"o_double":{"double":0.14188670581807872},"o_bytes":{"bytes":"–~˜\u0004zX ‹s\\"},"o_string":null,"o_enum":null,"o_date":null,"o_timemillis":{"int":-1119338079},"o_timemicros":null,"o_timestampmillis":null,"o_timestampmicros":{"long":5512113262555756555}},{"r_boolean":false,"r_int":-700187864,"r_long":885828334118097997,"r_float":0.6747916,"r_double":0.216361812452585,"r_bytes":"8x8‚öŠ»","r_string":"hrlugkr","r_enum":"ONE","r_date":554621505,"r_timemillis":-611520770,"r_timemicros":6511305575482424060,"r_timestampmillis":-4303420036411812189,"r_timestampmicros":-7624720339334945844,"o_boolean":{"boolean":false},"o_int":{"int":-1323694357},"o_long":null,"o_float":null,"o_double":{"double":0.44479223493179165},"o_bytes":null,"o_string":{"string":"clvfadognfqyctdsfas"},"o_enum":null,"o_date":{"int":-2081552613},"o_timemillis":{"int":493508302},"o_timemicros":{"long":3587765402683195273},"o_timestampmillis":null,"o_timestampmicros":null},{"r_boolean":false,"r_int":1985693940,"r_long":-3728972353000782774,"r_float":0.8011519,"r_double":0.7859242140422692,"r_bytes":"\u0007b€U¶±j\u001C[»‰\r­B&","r_string":"ekt","r_enum":"ZERO","r_date":-1678081895,"r_timemillis":-2086319959,"r_timemicros":431305058951458311,"r_timestampmillis":7032696440520596320,"r_timestampmicros":-510528565281348349,"o_boolean":{"boolean":true},"o_int":null,"o_long":null,"o_float":null,"o_double":null,"o_bytes":{"bytes":"vr²\u000E*tÙTy"},"o_string":{"string":"vocftd"},"o_enum":null,"o_date":{"int":-242860223},"o_timemillis":{"int":-1841301376},"o_timemicros":{"long":-2477639061093621520},"o_timestampmillis":null,"o_timestampmicros":{"long":-6917120446853459655}}],"o_boolean":null,"o_int":null,"o_long":{"long":-6619942295147277491},"o_float":{"float":0.24200284},"o_double":{"double":0.4835961050043702},"o_bytes":null,"o_string":null,"o_enum":null,"o_date":null,"o_timemillis":{"int":-1316360399},"o_timemicros":{"long":-6657135843813145303},"o_timestampmillis":{"long":-9092794886887006828},"o_timestampmicros":{"long":8311041549647585240}},{"r_boolean":false,"r_int":1224635211,"r_long":4127083940312545922,"r_float":0.6636773,"r_double":0.4840737535143316,"r_bytes":"ýސ","r_string":"vsbpbwjrhlw","r_array":[],"o_boolean":null,"o_int":null,"o_long":null,"o_float":{"float":0.30118132},"o_double":{"double":0.04613728881442836},"o_bytes":null,"o_string":{"string":"oleskicjuevv"},"o_enum":{"Level1_2_Enum2":"ONE"},"o_date":null,"o_timemillis":null,"o_timemicros":null,"o_timestampmillis":{"long":-6035661333202437057},"o_timestampmicros":null},{"r_boolean":true,"r_int":1313125635,"r_long":-7252437559280496955,"r_float":0.6743239,"r_double":0.5131894895593547,"r_bytes":"","r_string":"klq","r_array":[{"r_boolean":false,"r_int":-1815885465,"r_long":3293436326210573933,"r_float":0.18525797,"r_double":0.5084225714470266,"r_bytes":"G¸","r_string":"hc","r_enum":"TWO","r_date":559753147,"r_timemillis":-1262714318,"r_timemicros":1279909319021438741,"r_timestampmillis":-2761854814974331389,"r_timestampmicros":568028156789213419,"o_boolean":null,"o_int":null,"o_long":null,"o_float":null,"o_double":{"double":0.7019559260654264},"o_bytes":null,"o_string":null,"o_enum":null,"o_date":{"int":937142403},"o_timemillis":{"int":-865953737},"o_timemicros":null,"o_timestampmillis":{"long":4153041084215664445},"o_timestampmicros":null},{"r_boolean":true,"r_int":168321666,"r_long":-3832432229962737074,"r_float":0.088075876,"r_double":0.9077087942135912,"r_bytes":"$¢kAYÛ","r_string":"ck","r_enum":"ONE","r_date":-110868626,"r_timemillis":762435002,"r_timemicros":-8774437771857489272,"r_timestampmillis":-1218313787147651614,"r_timestampmicros":-6727148321499689812,"o_boolean":null,"o_int":null,"o_long":null,"o_float":{"float":0.3239904},"o_double":null,"o_bytes":{"bytes":"ó+µ"},"o_string":{"string":"oykaik"},"o_enum":{"Level2_2_Enum2":"ZERO"},"o_date":{"int":1732845847},"o_timemillis":{"int":765572536},"o_timemicros":{"long":-1400166850555707835},"o_timestampmillis":null,"o_timestampmicros":null}],"o_boolean":{"boolean":true},"o_int":{"int":401019355},"o_long":null,"o_float":null,"o_double":null,"o_bytes":null,"o_string":null,"o_enum":{"Level1_2_Enum2":"ZERO"},"o_date":null,"o_timemillis":null,"o_timemicros":{"long":-5130020474062414948},"o_timestampmillis":{"long":-25927814523763123},"o_timestampmicros":null}],"r_date":1638079907,"r_timemillis":-550243858,"r_timemicros":-852413079643367542,"r_timestampmillis":-5751192905055681055,"r_timestampmicros":-6810997431565675744,"o_boolean":{"boolean":true},"o_int":{"int":-448613552},"o_long":{"long":-8118076776326459482},"o_float":null,"o_double":null,"o_bytes":null,"o_string":null,"o_enum":{"Enum2":"ZERO"},"o_date":null,"o_timemillis":null,"o_timemicros":{"long":5136572386826454258},"o_timestampmillis":null,"o_timestampmicros":null} -{"r_boolean":true,"r_int":1498791150,"r_long":-7435727617513351863,"r_float":0.6743639,"r_double":0.7677051958638389,"r_bytes":"Ä!\u001F\u0013\n0è\u001Dàz\u000EÚCÜ","r_string":"","r_record":{"r_boolean":false,"r_int":2068477466,"r_long":-7694333567902968282,"r_float":0.8406534,"r_double":0.3480899065199019,"r_bytes":"1ø&Uá‡åƒ¯…","r_string":"cbsoujwev","r_record":{"r_boolean":false,"r_int":461263220,"r_long":-4906636131897132258,"r_float":0.3697198,"r_double":0.8713999510847846,"r_bytes":":‚\ftM`ç\u0002,.MÍ","r_string":"dy","r_enum":"TWO","r_date":167498802,"r_timemillis":1644337818,"r_timemicros":3003707888166730355,"r_timestampmillis":-422431987370583129,"r_timestampmicros":-1013780719605213115,"o_boolean":{"boolean":false},"o_int":{"int":2144418417},"o_long":{"long":6675936337607265611},"o_float":null,"o_double":null,"o_bytes":{"bytes":",ôëNC^|hô±\u0018K\u0013Œ\u0006¢¯µU£…DÛ\u0004"},"o_string":null,"o_enum":{"Level2_1__1_Enum2":"TWO"},"o_date":null,"o_timemillis":{"int":2000057298},"o_timemicros":null,"o_timestampmillis":{"long":-6304753172251519360},"o_timestampmicros":{"long":-4745585970108157192}},"r_enum":"ONE","r_date":-918883143,"r_timemillis":-1307109932,"r_timemicros":-5779578395928393608,"r_timestampmillis":7577312152162952059,"r_timestampmicros":-8341769004725829043,"r_array":[{"r_boolean":true,"r_int":-20229984,"r_long":-6332395428167885118,"r_float":0.83200693,"r_double":0.6893645789008748,"r_bytes":"³H","r_string":"jgftdwb","r_enum":"ONE","o_boolean":{"boolean":false},"o_int":null,"o_long":{"long":-289393008250050092},"o_float":null,"o_double":null,"o_bytes":{"bytes":"Ï"},"o_string":null,"o_enum":null,"o_date":null,"o_timemillis":{"int":1884913539},"o_timemicros":{"long":-5006296319571492248},"o_timestampmillis":null,"o_timestampmicros":{"long":7510318905442896032}},{"r_boolean":false,"r_int":1571759063,"r_long":-1422051097394073604,"r_float":0.06631404,"r_double":0.07336598114501924,"r_bytes":"ä‘","r_string":"vdcsi","r_enum":"TWO","o_boolean":null,"o_int":null,"o_long":{"long":9121727411089524553},"o_float":null,"o_double":null,"o_bytes":null,"o_string":null,"o_enum":{"Level2_1__2_Enum2":"ZERO"},"o_date":{"int":-230321080},"o_timemillis":{"int":1118365383},"o_timemicros":{"long":-5047143658750988175},"o_timestampmillis":null,"o_timestampmicros":null}]},"r_enum":"ZERO","r_array":[{"r_boolean":true,"r_int":2074943377,"r_long":-9089485365245782726,"r_float":0.70239484,"r_double":0.5770610420353209,"r_bytes":"ÈšV\b'Ð\u0012‚","r_string":"qpuxrscmcxfc","r_array":[],"o_boolean":{"boolean":false},"o_int":{"int":240061506},"o_long":{"long":935804097346596461},"o_float":{"float":0.62327135},"o_double":{"double":0.2988279043337272},"o_bytes":null,"o_string":{"string":"bpjbox"},"o_enum":{"Level1_2_Enum2":"TWO"},"o_date":null,"o_timemillis":{"int":-994732494},"o_timemicros":null,"o_timestampmillis":null,"o_timestampmicros":{"long":-2366286296925225243}},{"r_boolean":false,"r_int":2138029102,"r_long":-9190480969314271750,"r_float":0.35143226,"r_double":0.03506920178487649,"r_bytes":"'鯱O­·\u001Dé","r_string":"n","r_array":[{"r_boolean":true,"r_int":-398692018,"r_long":-8740033562579036179,"r_float":0.8828023,"r_double":0.6841143798960351,"r_bytes":"m\u0019­Î¤ˆ","r_string":"ow","r_enum":"ZERO","r_date":-1596586774,"r_timemillis":-1388801909,"r_timemicros":-4278176145798603538,"r_timestampmillis":-520082127221550747,"r_timestampmicros":6625088714892617336,"o_boolean":{"boolean":true},"o_int":null,"o_long":{"long":1955753127042304987},"o_float":null,"o_double":null,"o_bytes":{"bytes":"ì9"},"o_string":{"string":"c"},"o_enum":null,"o_date":{"int":-1240302822},"o_timemillis":null,"o_timemicros":{"long":-1764558219783988251},"o_timestampmillis":{"long":3121128767999177335},"o_timestampmicros":null},{"r_boolean":false,"r_int":543488573,"r_long":-4785757164234557376,"r_float":0.797216,"r_double":0.32204516244336034,"r_bytes":"< Ì«sá","r_string":"nedxr","r_enum":"TWO","r_date":-277095883,"r_timemillis":811209266,"r_timemicros":-3087229554428784181,"r_timestampmillis":-7007002962938127497,"r_timestampmicros":6795822559183508646,"o_boolean":{"boolean":true},"o_int":{"int":1257734284},"o_long":null,"o_float":{"float":0.74014467},"o_double":{"double":0.08423059223578644},"o_bytes":{"bytes":""},"o_string":{"string":"tlqiobqsoqdhool"},"o_enum":{"Level2_2_Enum2":"ZERO"},"o_date":{"int":-1727700304},"o_timemillis":null,"o_timemicros":null,"o_timestampmillis":null,"o_timestampmicros":{"long":6366845449374170105}},{"r_boolean":false,"r_int":-1400523571,"r_long":5633389232244299830,"r_float":0.04024887,"r_double":0.8106152106954384,"r_bytes":"ùwÛ\u0013–","r_string":"xnjneol","r_enum":"ZERO","r_date":-140923158,"r_timemillis":-1633798029,"r_timemicros":-6800943099806949957,"r_timestampmillis":306218156835783413,"r_timestampmicros":3758867572161747665,"o_boolean":{"boolean":true},"o_int":{"int":55734081},"o_long":null,"o_float":null,"o_double":null,"o_bytes":{"bytes":"”\u0018–¤ñx*œ´"},"o_string":{"string":"lbrijlk"},"o_enum":{"Level2_2_Enum2":"ZERO"},"o_date":{"int":-1452794386},"o_timemillis":{"int":680466837},"o_timemicros":{"long":-3994871244158825503},"o_timestampmillis":null,"o_timestampmicros":{"long":8891778581827399420}}],"o_boolean":null,"o_int":null,"o_long":{"long":-340865874830971369},"o_float":{"float":0.3865422},"o_double":null,"o_bytes":null,"o_string":{"string":"lfkupghylye"},"o_enum":{"Level1_2_Enum2":"ONE"},"o_date":null,"o_timemillis":null,"o_timemicros":null,"o_timestampmillis":{"long":5999522617656530651},"o_timestampmicros":{"long":-8450610139650576227}},{"r_boolean":false,"r_int":1815925991,"r_long":-5848972130325302203,"r_float":0.9582419,"r_double":0.10572635835394639,"r_bytes":"Éå3","r_string":"ah","r_array":[{"r_boolean":true,"r_int":1670488336,"r_long":429209341808958299,"r_float":0.22001415,"r_double":0.5537243934538736,"r_bytes":"m¨`È6:æLôY","r_string":"eyhpfqtyd","r_enum":"ONE","r_date":1571578202,"r_timemillis":-1063864851,"r_timemicros":-4839037729235747616,"r_timestampmillis":-2505972885488821498,"r_timestampmicros":9126061221384851918,"o_boolean":{"boolean":false},"o_int":{"int":476084192},"o_long":{"long":-587539635560986292},"o_float":null,"o_double":{"double":0.3712090139733021},"o_bytes":null,"o_string":null,"o_enum":{"Level2_2_Enum2":"TWO"},"o_date":{"int":-2130460512},"o_timemillis":null,"o_timemicros":{"long":5475715636422349977},"o_timestampmillis":null,"o_timestampmicros":null},{"r_boolean":false,"r_int":-524716356,"r_long":727007902401480436,"r_float":0.23367691,"r_double":0.9100986569644566,"r_bytes":"š","r_string":"rosprrqckqt","r_enum":"ONE","r_date":-1606262714,"r_timemillis":474322926,"r_timemicros":-2802412388841702798,"r_timestampmillis":-4726908855013443220,"r_timestampmicros":-5296940078850999796,"o_boolean":{"boolean":false},"o_int":{"int":-611415594},"o_long":{"long":4596895368453085854},"o_float":{"float":0.6746265},"o_double":{"double":0.11003711047871312},"o_bytes":{"bytes":"ªÌwê¡\u0014É\u0018²e¾ó^¤"},"o_string":{"string":"rsfkufyexejvpgy"},"o_enum":null,"o_date":{"int":942300049},"o_timemillis":{"int":988334317},"o_timemicros":null,"o_timestampmillis":null,"o_timestampmicros":null},{"r_boolean":true,"r_int":511517445,"r_long":5474081255354942900,"r_float":0.1885581,"r_double":0.10698655450444661,"r_bytes":"","r_string":"anmpktmmsrlxo","r_enum":"ONE","r_date":1059907637,"r_timemillis":-192011573,"r_timemicros":-1042234004202422947,"r_timestampmillis":3263652974168564120,"r_timestampmicros":939291233410956350,"o_boolean":{"boolean":false},"o_int":{"int":1773546634},"o_long":null,"o_float":null,"o_double":{"double":0.5894191825934122},"o_bytes":{"bytes":"µðVþùg5!"},"o_string":{"string":"csacms"},"o_enum":{"Level2_2_Enum2":"ZERO"},"o_date":{"int":1185406473},"o_timemillis":{"int":189473612},"o_timemicros":null,"o_timestampmillis":null,"o_timestampmicros":{"long":2869822935301103179}}],"o_boolean":{"boolean":false},"o_int":null,"o_long":{"long":-8527364988433051173},"o_float":null,"o_double":null,"o_bytes":null,"o_string":null,"o_enum":{"Level1_2_Enum2":"TWO"},"o_date":null,"o_timemillis":null,"o_timemicros":null,"o_timestampmillis":null,"o_timestampmicros":{"long":-6436634854242132632}},{"r_boolean":true,"r_int":102876654,"r_long":-852542179670151988,"r_float":0.42347062,"r_double":0.8240655049727147,"r_bytes":";2ы‰Š˜ô`4","r_string":"pmyftbrkgpni","r_array":[{"r_boolean":false,"r_int":1062233605,"r_long":-3406465562347399323,"r_float":0.23428762,"r_double":0.05871683444313114,"r_bytes":"P)é[+Ä\u001B·","r_string":"ioxjlawg","r_enum":"ZERO","r_date":-1396045198,"r_timemillis":-2138286590,"r_timemicros":1263174090232929933,"r_timestampmillis":-2001038729284464358,"r_timestampmicros":-3300725974103969242,"o_boolean":{"boolean":false},"o_int":{"int":1677792155},"o_long":null,"o_float":null,"o_double":null,"o_bytes":{"bytes":"PÖ\\Yˆ‹¾\u0007{·#\u0019"},"o_string":null,"o_enum":null,"o_date":{"int":929466149},"o_timemillis":null,"o_timemicros":null,"o_timestampmillis":{"long":7652354454900057398},"o_timestampmicros":{"long":4091839492848087014}}],"o_boolean":null,"o_int":null,"o_long":{"long":1638873506201041557},"o_float":null,"o_double":null,"o_bytes":{"bytes":"Œ³]ï²ÁÌ?^\u001Bqúº‹wPÖh\u0015Ü;\u0003XÎÄÜ͘½¯;èÆÒÁZ\u0002A\"²Hœ´?Ý»\u0002zG\u0004\u0002\u0005zžDnŽ_݉—½GGö‹‹;Ù\b–x—°ÀÚ±´¥£ëÂr\u000B\u001CeŒ\u001FJ3Lã:y`󉌆.k\u0001kSø›­Ê.‚ÌÑaˆ¸îï\u001Dù4ªNsó-Õ@óÐtf|UY#䊽n\u000BA­ù¶:\b1@\u0019}½<3tÀÈÚB&Èrö”k\u001AKYð[ôuαFp\u0004˜´§ŽXÉ\u0002!˜ÇL¿OËi\u0013Á\u001E]\u0007v¼\u0017I\u0016þ¥ƒO\u0011ÁL\u001Bctj\u00112åÁ”å\n)ÙxÖ¨\u001CèWO껛‘xO\u0017Uò{%™HÚܽ„äD\u0018\u0017Œ!\u0003ôl•*\u0012_÷ÈÇFNóè`÷\u000E\u0006¸+E󯵿s/9F©¬/x_ØyÉ\u0000=\u0011:!)O¡žÅ‡YÎä\\$øÌƸµÞ…²l\u0016ÓI•\u0013Ø\"˜aßUŠ\u001EÀ• üq\u000Bl¤]óñWR'Üdó_ÐBã±\u0010—×\u001APÖ~;\u0015îˆn[TD!Jìfw<}5œ©i´N6ÐÅƉ©`ÑrR\u0007ÇoR2ó·ÙϏDô®²EÛT\f¼é¯ÔØû¤\u000EÇ݀¾’ž=³J\tgª¡mV·ë‡Ñ˜Ë)\b~ÄÕxù\td÷âr\u0005\u0003P¹\u000Fß\b\nڐ\n®µ]¾=^Íê$pê¯”6SÁ„Jï\u001AsÍ#\u0003mFÄ0Fš¹Ä²'m1K\u0012UΪuœŽÅù£Fé{Œ\u00151\u001F\"ˆS\u000F¿dP#®´Â\"ì.”“c;=ãŽ4\u001A£]/\u00007G(!=\u000E^rÁ¡Ï6¹ô†þlî\u001A¨‹\u000E\"‡Ç²\u001Ag`™£ýŸ>ëÀÚ'\fp\"\u0014nnÀHë§!ñцÙ퐼\u00172öÂû¤´uÚ\\ùÂ+â\u0015÷].ԇ?åƉϵ2\f±\"&>ÅøÑÂ\u0004P®2ֈ\u0015¨è›n·×ßUn_Rw†wÑ\u001A+UZžà\u0005å_\u0010}ɪ3¢([¢†L‡\u00003—åÏÕ¤l\tόD®i҄‘y‘²à÷¥lf\b\"àÚmë\u000F'¢\u000Bâ~-:¨bÚ\f\\}hjG\tÞ®CŠV\u000Eº0\u00055P͂¿ë#«ím¾¤\u001FÜgéXu\u0000ºþ_Ô-VâB~RoÅ¥4Þ¥sW½Á\rýi\u001D–ñ’^ï®\b{\u000BõjœÆK6\u0014dÉv\u0001/ºg+&]_\búlF\u001C\u0002÷³AÊCünö߀2÷Š\u0007£#ÿ[g1ýz/‘ëJ %~\u001E{(\nÉ)\u0005‚jų\u0003}¤×ùvÖ¥ÊF­Ó¾M¢<-Xw4²Éb ×MÊ£C¢\u0002rŒŠò$ˆhŽÀ8QöyMÞüŠ†ø¶9;†Ó—À¾Šp\u0006¬ëûä\u0002~B\u0011-¼s\u000BŒý±\u0014§€\u001Es³¶››®qî\u001AõÆo’\u0001d–\u0015؝ŒQc$¸å@®I¨Ííp4Á¡v\u0016 §]¹')\u0004¼¯D¡©íuҎ\u0013.R«3ì\u0002V\u000E\u0017ïÍ]ß΂\u00011\u0001Ò'0þȾ¬\u001B\u000B×ð7I¢aœï04L킓\u000E\u0003\f\beÞãG9 ,vÄ \u0003±éš–iªk ;rEŒX¦A\u0004Ì-L&þñþh\u0015#Zfê‹#ò8µðt\u000FÑpW%và¶ìÎ\r½Y\u001DŽ˜\tDGQb,;òCtÝ\u001Eþ·V\fÀÇçAÒ~\u000ETdG1:7µ\"S´Lw-a}ã¡\u001DÜ\u000BJ’þ2ì:\bFXóá\u0006³=£#|\u0005nˆg,“H‘\u001E,DýT]Ƨxàݟ\u0010YŽ\u0006N“\u001FáþëÉßÔØ\u000E'¬»ÄNjáõ¿ÐÈO\u0004aA\u0006¶1ó0»æÀõígtê´éA“•Ì\u0019á@–Ú^'iT\u0019oY[Ø\u000Ežï\rl•Ô*q¨àoç¯Ù[ª.DY€\u0004AHIr\u0014kù¼Œ*cå¹F6—\u000E\u0014(!\u001CP+Éf̸̿›/\u001B÷M\r63oÁõש?\u0010«4ÈÌs~_qN1å(:¤Ø}V•Ô)*«N\u001E2cšù²YöŒh€ì\u0013]&2blí\u0001Ú±Ò\\\u001CW>JŽ–’Ttá–mgÓ\u0010NZœ6ZÿB͈JÐã³ òíWœ½\u001F¯\\h[7°>d`\tÁͺ£ì°`µÃ™)É&¾ê”&xT½¯VO\u0003’þؾÁ,\n.-a4¯Ã\rÜx¬$ˆ\b0+«?ü\u0017P>ˆˆÖó(¬v0\u0012=’Ž|2ó\u0000’,Xz\u0014–\u0012\u001B\u001Eäã4×µ\u0019aÛDÎK\u000E¬9Jžc\u0010[œ.œ¡\u0017;y¦IfË>ìîÎÀ­\u0018f¿¹cvê(v!´b‚\u0002\u0002'Ž§ó\u001FY€&­)Dd'îû-ŸµTðVY>=*d\u0003\"É\u001C¥y\rŠ-dÌmµ›\u0004œw‚¥Ôb\u0001Ž\u0013×Gº¶käÅ\fú…½Í^\u000EÂè\fAí•Â£i靋‹\bõå2ð€wãÌE\u0004\u0007Ö\u0019õÃ5|Òí0£{\u0016y†9@¸cJo˾ ýQÓÉ͜7\u0006Ð:3\b\u0004dŠ8Ï[P‘û;\u001Aä@½Æ•I\u0017´ðÀSi°CÁBÒ¼Òþ/.\\\u00033§Èþu ž\u001Bä\u0000D¨#Ž±šõ¾é\t}ôàÜÙØ,_AA§\u0011ž\u0000ƒhè{ÄáÑÕµ'ÂG‡EüT\u00050\u0006D)3õ‚±\u0011ø>wëêw‚\u0012v—q-‹\u001EéÛñP‡\u0004\u001E\u000B¹(¢l RÍ\u0013Ê×»å‹\u000FGúlcŠ{ÁDÕAˆrD\u0006)8ϺÓT­k\r®\u0006Ì\u001C­‚€#%Å`’¦íb½w`ÖÉFÁúœJ3ˆ$îË^í3-\u0019Ý\u0015øMà{\u0007M+§ø@ÊÝÆ\u001Aª¹×áSÂ_!Dw‚„?Ãa•æskKörPû“·$!LÁ\u0012záQu\u0019R|wPY2zvÚ±„a†ŽèÇ\u0016\u0000ñæW+\u0018q4!\u0011N‡8&† 'èa¤Õ·ÿG0ª\u0014\u0013à\u00115/\u0007\u001EKÝÂÏ¥1t©*½Å¢ÃǍ\u00063\u001A•\t~@ƒá\n\u0012`\u0001—œŒÞÙ©ŠóRÖÅS\fѾ¥U3/á\b#\u000B7N»wŠÜ`zù´Vpñ‡yž,*a ‹ÜÝڗ> ‹\u0012aL•Ÿ\u001C7²‡vö‹œ¢}\u001AÒ¯©\u0001ò\u000F!¥ª¨éôòö£}+i¯.»ÓÞè:0§¬Fa\u001E\rܬpWýÕÇüe¤É›GzWÁ\u000E¡æ¥ge©Àî³\u001DJìzì·àEÊæíÇ4\u0013}ÿ¿¶²í){sœ‡|§öo¾ÃV\bfšòʉ_¶¢—)ħ‘ \u0007Y¿+\u0000.\u0010Kë3¦ÐÑl˚<‚— ÝÅø¨\n\u0010\n­\u000Bò¾cZ¡\u0007‚3\u0005&ä;š\f\u0007ªª³=\"\u0001…O×GþzŸï\u0011®2r\nmYk1\u0003è‹)Ïç¬\f‡ãy¥\u0017\u0014æn‡•÷—­H”3\u000E“ÿ‡6Äï´qÆÓÇ҈²ô¿ª¹·}\u0013Ì£–f‰"},"o_string":{"string":"ussnrdcstp"},"o_enum":{"Level2_1__2_Enum2":"ONE"},"o_date":null,"o_timemillis":null,"o_timemicros":null,"o_timestampmillis":{"long":-2574429581161416978},"o_timestampmicros":null},{"r_boolean":false,"r_int":519615052,"r_long":-7805772873082755053,"r_float":0.8552194,"r_double":0.9944412235951812,"r_bytes":"`’\u0002“óJÎݘS“\fïþW","r_string":"kuhbwueuuwmyq","r_enum":"ONE","o_boolean":null,"o_int":{"int":-84308042},"o_long":null,"o_float":{"float":0.040472806},"o_double":null,"o_bytes":null,"o_string":{"string":"qwogiwdjah"},"o_enum":null,"o_date":{"int":-1861978336},"o_timemillis":null,"o_timemicros":null,"o_timestampmillis":null,"o_timestampmicros":null},{"r_boolean":true,"r_int":760901585,"r_long":2063063143519304491,"r_float":0.1188243,"r_double":0.05744600384780019,"r_bytes":"‚„ã","r_string":"ojgxrgbcynadjy","r_enum":"TWO","o_boolean":null,"o_int":{"int":860371291},"o_long":null,"o_float":null,"o_double":null,"o_bytes":{"bytes":"‹\u00180\u0002I•áÕ WJ€—"},"o_string":{"string":"dndrkwleamtnecf"},"o_enum":null,"o_date":null,"o_timemillis":null,"o_timemicros":{"long":6058247023129350962},"o_timestampmillis":{"long":8205154622156085539},"o_timestampmicros":null}]},"r_enum":"TWO","r_array":[{"r_boolean":false,"r_int":-1397437516,"r_long":8222623835486388827,"r_float":0.07502782,"r_double":0.11966232181702052,"r_bytes":"\u000FìÆn\u000B\u0011vé·","r_string":"","r_array":[{"r_boolean":false,"r_int":-1764940790,"r_long":7669329345581321386,"r_float":0.49399513,"r_double":0.0887575593792217,"r_bytes":"%\u0007\u0001ôrˆp‰<ð…","r_string":"jkjyscek","r_enum":"ONE","r_date":1076919252,"r_timemillis":-1317107397,"r_timemicros":1618659565852502055,"r_timestampmillis":6026779705655326533,"r_timestampmicros":-3709849806112738964,"o_boolean":null,"o_int":{"int":-1462364716},"o_long":null,"o_float":null,"o_double":{"double":0.8275705379491218},"o_bytes":null,"o_string":null,"o_enum":{"Level2_2_Enum2":"TWO"},"o_date":{"int":87488493},"o_timemillis":{"int":1759270871},"o_timemicros":{"long":5867060907908055037},"o_timestampmillis":null,"o_timestampmicros":{"long":103304784427008063}},{"r_boolean":true,"r_int":-520952948,"r_long":-8461610232696736655,"r_float":0.005554378,"r_double":0.9102253539069582,"r_bytes":"¾\u0004","r_string":"jeuymmwlsmslmxrxtfspjjobgufbdgedchcqrohhyqsdfjfmuaauhboglfhsxjhbnbtxvhfumibrntgdgjmyehvjetnklyllxhyywanmekqdlslyqxrrcghjbuptltbqbofxeasngyulhslmxdwpbahhckaarkqeqiioj","r_enum":"ZERO","r_date":1200730014,"r_timemillis":517744266,"r_timemicros":-87543362234025715,"r_timestampmillis":4719946601513922047,"r_timestampmicros":-1469048002093160186,"o_boolean":null,"o_int":{"int":-1207157071},"o_long":{"long":6424947779506233816},"o_float":null,"o_double":null,"o_bytes":null,"o_string":null,"o_enum":{"Level2_2_Enum2":"ONE"},"o_date":null,"o_timemillis":{"int":309871975},"o_timemicros":null,"o_timestampmillis":{"long":-6866873126986349699},"o_timestampmicros":{"long":-1917998830558502171}},{"r_boolean":true,"r_int":396527173,"r_long":-4757704011188002617,"r_float":0.59412533,"r_double":0.7839441840294172,"r_bytes":"ËënBs׊\u0005ò>Ñ-","r_string":"ofxoge","r_enum":"ZERO","r_date":-861905586,"r_timemillis":1261116892,"r_timemicros":-7109570434217030539,"r_timestampmillis":7874316045635897332,"r_timestampmicros":5654147802121436906,"o_boolean":null,"o_int":{"int":-455525563},"o_long":{"long":2827253666964074633},"o_float":null,"o_double":null,"o_bytes":null,"o_string":null,"o_enum":{"Level2_2_Enum2":"ONE"},"o_date":null,"o_timemillis":{"int":-1787350044},"o_timemicros":null,"o_timestampmillis":{"long":8086832472471545966},"o_timestampmicros":{"long":-8008586106520641836}}],"o_boolean":null,"o_int":{"int":1046275904},"o_long":{"long":2813167019769636205},"o_float":null,"o_double":{"double":0.5581696379351734},"o_bytes":{"bytes":"ñ"},"o_string":{"string":"drh"},"o_enum":null,"o_date":null,"o_timemillis":{"int":-206829938},"o_timemicros":{"long":-2136456186094522111},"o_timestampmillis":{"long":-3840944283001846951},"o_timestampmicros":null},{"r_boolean":true,"r_int":1935641622,"r_long":-5738902322854199409,"r_float":0.6890148,"r_double":0.9885803012622798,"r_bytes":"´µ\u000F-&","r_string":"ojumsocwlmtnglwvismwwongpigekqqlfxlwqyvgofkvwmtqjyyqeroktcohtuftwgktr","r_array":[],"o_boolean":{"boolean":true},"o_int":null,"o_long":null,"o_float":null,"o_double":null,"o_bytes":{"bytes":"*"},"o_string":{"string":"nvhoffdk"},"o_enum":{"Level1_2_Enum2":"TWO"},"o_date":null,"o_timemillis":{"int":-2054243144},"o_timemicros":null,"o_timestampmillis":{"long":5473073166320483136},"o_timestampmicros":{"long":-270161035415368803}},{"r_boolean":false,"r_int":1572927899,"r_long":-2165617211693803712,"r_float":0.8791709,"r_double":0.9242940133120132,"r_bytes":"\u001C`KޘÆ.\u0015µ>æC","r_string":"tngiskrsy","r_array":[{"r_boolean":true,"r_int":-1881319304,"r_long":6716811586363957305,"r_float":0.885323,"r_double":0.9513616765279435,"r_bytes":"e","r_string":"eufjbryvvafaib","r_enum":"ONE","r_date":622003262,"r_timemillis":1511432399,"r_timemicros":2139350038417528025,"r_timestampmillis":2162016124751612589,"r_timestampmicros":4397343520436736145,"o_boolean":null,"o_int":{"int":-519034772},"o_long":null,"o_float":null,"o_double":{"double":0.6669686554768166},"o_bytes":null,"o_string":{"string":"kcih"},"o_enum":{"Level2_2_Enum2":"TWO"},"o_date":null,"o_timemillis":{"int":1639316702},"o_timemicros":{"long":8771704593031812007},"o_timestampmillis":{"long":-631867993057406277},"o_timestampmicros":null},{"r_boolean":true,"r_int":-821522350,"r_long":-9107363595048354917,"r_float":0.58674717,"r_double":0.4153909292828667,"r_bytes":"","r_string":"gebmqmgjj","r_enum":"TWO","r_date":1333807365,"r_timemillis":173593434,"r_timemicros":-6798751667169786776,"r_timestampmillis":4730395877759548463,"r_timestampmicros":1445786156522598283,"o_boolean":{"boolean":true},"o_int":{"int":-1846663155},"o_long":null,"o_float":null,"o_double":null,"o_bytes":{"bytes":"«§R‚‘†A"},"o_string":{"string":"ugv"},"o_enum":null,"o_date":null,"o_timemillis":null,"o_timemicros":{"long":-2723907329468537700},"o_timestampmillis":{"long":6833528673411244034},"o_timestampmicros":null}],"o_boolean":{"boolean":false},"o_int":null,"o_long":null,"o_float":{"float":0.497792},"o_double":null,"o_bytes":null,"o_string":null,"o_enum":null,"o_date":{"int":-238298352},"o_timemillis":null,"o_timemicros":{"long":173985688206733077},"o_timestampmillis":null,"o_timestampmicros":{"long":116441344597542809}},{"r_boolean":false,"r_int":1375304891,"r_long":-6078719874137122501,"r_float":0.4339106,"r_double":0.42268185250597146,"r_bytes":"0ݶÙö\u001C\u0002","r_string":"adbryitacpvpvaq","r_array":[{"r_boolean":true,"r_int":390512104,"r_long":-1370579336149039058,"r_float":0.4599713,"r_double":0.9121546512690102,"r_bytes":" ,“<ÄF?\"´2","r_string":"ewsfbfwftgwli","r_enum":"TWO","r_date":-274619213,"r_timemillis":1399605316,"r_timemicros":-5039015657904401434,"r_timestampmillis":-3888768396761156974,"r_timestampmicros":-2140218566144874371,"o_boolean":{"boolean":false},"o_int":{"int":-1162330261},"o_long":{"long":-8462277163596621016},"o_float":null,"o_double":null,"o_bytes":{"bytes":"©"},"o_string":null,"o_enum":null,"o_date":null,"o_timemillis":null,"o_timemicros":{"long":5862769262560035571},"o_timestampmillis":{"long":-4586418488693050314},"o_timestampmicros":{"long":8606772168625644523}},{"r_boolean":false,"r_int":541145823,"r_long":8705651441890701403,"r_float":0.38957238,"r_double":0.3590296560444812,"r_bytes":"Q¾ b³ù","r_string":"qhkcwug","r_enum":"ZERO","r_date":-1193897047,"r_timemillis":-55603040,"r_timemicros":-7163771724180457632,"r_timestampmillis":-2617300691822479099,"r_timestampmicros":-310363083778208273,"o_boolean":{"boolean":true},"o_int":{"int":187824828},"o_long":null,"o_float":null,"o_double":null,"o_bytes":null,"o_string":{"string":"y"},"o_enum":{"Level2_2_Enum2":"ZERO"},"o_date":null,"o_timemillis":{"int":-1301457436},"o_timemicros":null,"o_timestampmillis":{"long":968705761435810570},"o_timestampmicros":{"long":5881440284004385800}},{"r_boolean":false,"r_int":-1713174086,"r_long":-7531996074299044212,"r_float":0.86405313,"r_double":0.9870075371998104,"r_bytes":"‹a÷ã\u001Cí@","r_string":"tvdmacdvigfgagf","r_enum":"TWO","r_date":-843298992,"r_timemillis":-1439263156,"r_timemicros":-958404325010184110,"r_timestampmillis":-83275262451893778,"r_timestampmicros":-8445533071191170220,"o_boolean":{"boolean":true},"o_int":null,"o_long":{"long":1460062397129720294},"o_float":null,"o_double":null,"o_bytes":{"bytes":"\u0001\u0012€Ïà¶_\u0013h¢ø^"},"o_string":{"string":"etj"},"o_enum":{"Level2_2_Enum2":"ONE"},"o_date":null,"o_timemillis":{"int":582755500},"o_timemicros":{"long":-9094097488557329898},"o_timestampmillis":{"long":-503556532231862019},"o_timestampmicros":{"long":2377024683359724976}}],"o_boolean":{"boolean":true},"o_int":null,"o_long":{"long":852153403939608348},"o_float":null,"o_double":{"double":0.8494115276307147},"o_bytes":{"bytes":"ªá#\u0011~\u0014(ž$c)"},"o_string":{"string":"mfktplvw"},"o_enum":null,"o_date":{"int":-1885494182},"o_timemillis":{"int":-1905131811},"o_timemicros":{"long":3360342185314803093},"o_timestampmillis":{"long":-7498659254267728937},"o_timestampmicros":null},{"r_boolean":true,"r_int":-1776141370,"r_long":-2990508036747482258,"r_float":0.57914394,"r_double":0.8443873221513852,"r_bytes":"›N\u0010¸æ¥ÀëPú¾=,mzaîU+Wyñë„q¿‚","r_string":"hdhnjbxaho","r_array":[],"o_boolean":null,"o_int":{"int":1070781053},"o_long":{"long":-5107902291823726875},"o_float":null,"o_double":null,"o_bytes":null,"o_string":null,"o_enum":{"Level1_2_Enum2":"ONE"},"o_date":{"int":1259917036},"o_timemillis":null,"o_timemicros":{"long":7510014364117131457},"o_timestampmillis":null,"o_timestampmicros":{"long":7568808529179759229}}],"r_date":2079173207,"r_timemillis":-733279935,"r_timemicros":85791109087622481,"r_timestampmillis":-4861877475586262115,"r_timestampmicros":8547047821214128953,"o_boolean":null,"o_int":null,"o_long":{"long":-3297107391853069871},"o_float":{"float":0.12170684},"o_double":null,"o_bytes":null,"o_string":null,"o_enum":{"Enum2":"ZERO"},"o_date":null,"o_timemillis":null,"o_timemicros":null,"o_timestampmillis":null,"o_timestampmicros":null} -{"r_boolean":true,"r_int":-858091394,"r_long":6450456046248785451,"r_float":0.9573054,"r_double":0.10018974374165024,"r_bytes":"¼ëóú/¯¥=","r_string":"nvptr","r_record":{"r_boolean":true,"r_int":1185579800,"r_long":-5987875373908434404,"r_float":0.087616146,"r_double":0.2988896874121617,"r_bytes":"C®r3X½‡C/\u000E•","r_string":"inaajie","r_record":{"r_boolean":false,"r_int":-278670059,"r_long":-8000715018471563894,"r_float":0.27608883,"r_double":0.9715586272434571,"r_bytes":"\u001AR\u001E` ¹\u001E—¹ué","r_string":"vuukv","r_enum":"TWO","r_date":-1317947874,"r_timemillis":1820140490,"r_timemicros":9014465651502805309,"r_timestampmillis":-1728060077732795190,"r_timestampmicros":4182333128889359495,"o_boolean":null,"o_int":{"int":565193670},"o_long":null,"o_float":null,"o_double":null,"o_bytes":{"bytes":"¿xGýÀŽèâ"},"o_string":{"string":"qhslxgesbpr"},"o_enum":null,"o_date":null,"o_timemillis":{"int":1105332522},"o_timemicros":{"long":8539514970443644741},"o_timestampmillis":{"long":5878587526224849860},"o_timestampmicros":null},"r_enum":"TWO","r_date":-1589277518,"r_timemillis":1581387154,"r_timemicros":6211116425628672389,"r_timestampmillis":-8624927329975628563,"r_timestampmicros":-3371250550749441009,"r_array":[{"r_boolean":true,"r_int":-976791470,"r_long":1978324125249343527,"r_float":0.92308134,"r_double":0.8131728257775089,"r_bytes":"\u0012§\u0011bŸ°¿›D(\u000F","r_string":"umrtskvfve","r_enum":"TWO","o_boolean":{"boolean":false},"o_int":null,"o_long":null,"o_float":{"float":0.38905877},"o_double":null,"o_bytes":null,"o_string":{"string":"afpecqsdbpvl"},"o_enum":{"Level2_1__2_Enum2":"ZERO"},"o_date":null,"o_timemillis":null,"o_timemicros":{"long":-6110824445551633155},"o_timestampmillis":{"long":-3525669715641073054},"o_timestampmicros":{"long":419018918194900082}},{"r_boolean":true,"r_int":1000450593,"r_long":-742786193161492735,"r_float":0.38843125,"r_double":0.2860006910062096,"r_bytes":"é\r±?šb^8<@","r_string":"bwjx","r_enum":"ONE","o_boolean":null,"o_int":{"int":-1287996888},"o_long":{"long":-2654262354376967677},"o_float":null,"o_double":null,"o_bytes":{"bytes":"Î"},"o_string":{"string":"fs"},"o_enum":null,"o_date":null,"o_timemillis":{"int":-1879257732},"o_timemicros":null,"o_timestampmillis":{"long":9021788493471123754},"o_timestampmicros":{"long":-6668418185458297862}},{"r_boolean":false,"r_int":938181986,"r_long":-8531602478369400809,"r_float":0.71401495,"r_double":0.3492113331840766,"r_bytes":"÷×>","r_string":"aiosnwdeterxw","r_enum":"TWO","o_boolean":null,"o_int":null,"o_long":null,"o_float":null,"o_double":{"double":0.23996917693555297},"o_bytes":{"bytes":"ݹõ®d\u0001?R\u001C"},"o_string":null,"o_enum":null,"o_date":{"int":-76726008},"o_timemillis":{"int":-633207958},"o_timemicros":{"long":432075729993269414},"o_timestampmillis":null,"o_timestampmicros":null}]},"r_enum":"ONE","r_array":[{"r_boolean":true,"r_int":448026986,"r_long":8007663341660338088,"r_float":0.96739846,"r_double":0.9615158227383812,"r_bytes":"C2‡/,©0û\u00198º","r_string":"urllbcikbdjkd","r_array":[],"o_boolean":{"boolean":true},"o_int":null,"o_long":{"long":1711975868316446935},"o_float":{"float":0.46816063},"o_double":null,"o_bytes":{"bytes":"µÛ2¥•\u001DŽ/"},"o_string":null,"o_enum":{"Level1_2_Enum2":"TWO"},"o_date":null,"o_timemillis":null,"o_timemicros":{"long":-2024633644521925462},"o_timestampmillis":{"long":-2630657284788943075},"o_timestampmicros":{"long":-3495811035653511498}},{"r_boolean":false,"r_int":1806999442,"r_long":7054329165753967666,"r_float":0.8951903,"r_double":0.7009967673937744,"r_bytes":"vÇQµH\u001Bœ","r_string":"kgwrqxa","r_array":[{"r_boolean":false,"r_int":1822498411,"r_long":3680557060445302028,"r_float":0.9484057,"r_double":0.05608405921086368,"r_bytes":"=äàB*\u0005c傰ÆÁ\u0013","r_string":"","r_enum":"ONE","r_date":347101777,"r_timemillis":-1768110980,"r_timemicros":-6037764364488388688,"r_timestampmillis":-8644402160025928574,"r_timestampmicros":-6450723597146257040,"o_boolean":{"boolean":true},"o_int":{"int":-1618863245},"o_long":null,"o_float":{"float":0.8824871},"o_double":{"double":0.6865200352384326},"o_bytes":null,"o_string":{"string":"tkahnr"},"o_enum":null,"o_date":null,"o_timemillis":{"int":-1609233562},"o_timemicros":null,"o_timestampmillis":null,"o_timestampmicros":null},{"r_boolean":false,"r_int":-1232444478,"r_long":7483126494704874389,"r_float":0.98323923,"r_double":0.6875392730913491,"r_bytes":"#‹5•0","r_string":"oe","r_enum":"ONE","r_date":678724780,"r_timemillis":-564611153,"r_timemicros":6952545800472996368,"r_timestampmillis":-5119434741071528058,"r_timestampmicros":-8173782581888781621,"o_boolean":{"boolean":false},"o_int":null,"o_long":null,"o_float":{"float":0.53982604},"o_double":{"double":0.40826687579330323},"o_bytes":null,"o_string":null,"o_enum":{"Level2_2_Enum2":"ZERO"},"o_date":{"int":13707039},"o_timemillis":null,"o_timemicros":{"long":-5092826065636236736},"o_timestampmillis":{"long":5577857338560735009},"o_timestampmicros":null}],"o_boolean":{"boolean":false},"o_int":null,"o_long":null,"o_float":{"float":0.9726835},"o_double":null,"o_bytes":{"bytes":"\u0011(—f"},"o_string":{"string":"rorjbycjfwtt"},"o_enum":{"Level1_2_Enum2":"ONE"},"o_date":null,"o_timemillis":{"int":-1875259975},"o_timemicros":null,"o_timestampmillis":null,"o_timestampmicros":null},{"r_boolean":true,"r_int":-1080519812,"r_long":-8845753824309096675,"r_float":0.028499365,"r_double":0.5631555087746373,"r_bytes":"","r_string":"kuebqbk","r_array":[{"r_boolean":false,"r_int":-1886433550,"r_long":-1497989161910835976,"r_float":0.35871118,"r_double":0.9707138627834615,"r_bytes":"Š6\u0016Š~ª•ƒÞ‹","r_string":"dpyybh","r_enum":"ZERO","r_date":-358418284,"r_timemillis":586595239,"r_timemicros":4401417868982073459,"r_timestampmillis":-5349963619806482943,"r_timestampmicros":-7851735410937301841,"o_boolean":{"boolean":true},"o_int":null,"o_long":{"long":-8501444515401294065},"o_float":{"float":0.8600497},"o_double":null,"o_bytes":{"bytes":"Ԍüsö"},"o_string":null,"o_enum":{"Level2_2_Enum2":"TWO"},"o_date":null,"o_timemillis":{"int":1305505705},"o_timemicros":{"long":-4203115331703986751},"o_timestampmillis":null,"o_timestampmicros":{"long":8221045750468316033}}],"o_boolean":{"boolean":false},"o_int":null,"o_long":null,"o_float":{"float":0.3635742},"o_double":null,"o_bytes":null,"o_string":{"string":"ciyrquorsiktn"},"o_enum":null,"o_date":{"int":-2038495250},"o_timemillis":{"int":-2056342797},"o_timemicros":null,"o_timestampmillis":{"long":5418308988652333196},"o_timestampmicros":null},{"r_boolean":true,"r_int":-257135163,"r_long":-1662478700078837410,"r_float":0.10528809,"r_double":0.5884643041961357,"r_bytes":"èÎÉY","r_string":"hxayfhmf","r_array":[{"r_boolean":true,"r_int":684463387,"r_long":3912207892565777226,"r_float":0.2528816,"r_double":0.42162823111562975,"r_bytes":"o\u001D^|7¦\u0005^åu\r","r_string":"aqjldbrxkhdhyd","r_enum":"ONE","r_date":1443634695,"r_timemillis":-2004538942,"r_timemicros":1261444869113936975,"r_timestampmillis":7704992890259587117,"r_timestampmicros":-510647253002126823,"o_boolean":null,"o_int":null,"o_long":null,"o_float":null,"o_double":null,"o_bytes":null,"o_string":null,"o_enum":null,"o_date":null,"o_timemillis":{"int":25457369},"o_timemicros":null,"o_timestampmillis":null,"o_timestampmicros":null},{"r_boolean":false,"r_int":1396569296,"r_long":-6995976048976701359,"r_float":0.4642765,"r_double":0.513135548425533,"r_bytes":"ÈàjN7¼cŠ7N©Š","r_string":"vpxmwx","r_enum":"ONE","r_date":1704199451,"r_timemillis":11846034,"r_timemicros":7566883541525164458,"r_timestampmillis":-5183120319889643448,"r_timestampmicros":-3453911665690452756,"o_boolean":null,"o_int":null,"o_long":{"long":-6679879110225893303},"o_float":null,"o_double":{"double":0.9518990747930322},"o_bytes":{"bytes":"æ\u001DÄ\f'¤’}m¯\u0001\u0016»îà\u001B\u0006ýfòs•škh®”\u0014èæ­ó0pú@Š\r\u000Fx\u0013G\u0011X\u001E8©<ü÷Ó£U29ÒÅ ^ªñ§/¢¶gÄáÚÊw|z¼\u000BÝ^sÑ`¤\u0006ª‘ÒÝÍ9a"},"o_string":{"string":"caklewlkvcocthn"},"o_enum":{"Level2_2_Enum2":"ZERO"},"o_date":{"int":562668148},"o_timemillis":null,"o_timemicros":null,"o_timestampmillis":{"long":6092027582987508175},"o_timestampmicros":null},{"r_boolean":true,"r_int":240045320,"r_long":-887509362439996614,"r_float":0.44986856,"r_double":0.10860345458765475,"r_bytes":"¾ºúñ\u001F­«ãîQE[","r_string":"co","r_enum":"TWO","r_date":-1855388239,"r_timemillis":642225820,"r_timemicros":5708925035939733533,"r_timestampmillis":9079308954803386943,"r_timestampmicros":2800900714516423319,"o_boolean":null,"o_int":null,"o_long":null,"o_float":{"float":0.7136847},"o_double":{"double":0.3742911387000589},"o_bytes":null,"o_string":{"string":"wlhhqgtqxnraoikxqmqmmjsdssfiavsrqkysqxbflueaumfhfqvlsawnkfvaeoviidlbtrjjcoqmfvwntlcdbyfndenifqkmbyekcmvmfycinjqkmcnrkkddnpswubwsbhaeyqsgtjwcdohsrplpqsscstrleuenscciccipetltylvmgempbmpsmfpmlhlctetofkwcuygkmbfgawk"},"o_enum":{"Level2_2_Enum2":"ONE"},"o_date":null,"o_timemillis":null,"o_timemicros":null,"o_timestampmillis":{"long":-8657651342621780684},"o_timestampmicros":{"long":-7909825671863550308}}],"o_boolean":{"boolean":true},"o_int":null,"o_long":{"long":2659951696838680025},"o_float":null,"o_double":null,"o_bytes":null,"o_string":null,"o_enum":null,"o_date":{"int":-2049243378},"o_timemillis":{"int":-1161807106},"o_timemicros":null,"o_timestampmillis":null,"o_timestampmicros":null},{"r_boolean":true,"r_int":-1571474774,"r_long":9025177546279568304,"r_float":0.85530525,"r_double":0.33550092887919714,"r_bytes":"ÔK\u0015","r_string":"ojebghblqnnkthc","r_array":[],"o_boolean":{"boolean":false},"o_int":{"int":-380471284},"o_long":null,"o_float":{"float":0.6778542},"o_double":null,"o_bytes":null,"o_string":null,"o_enum":null,"o_date":null,"o_timemillis":null,"o_timemicros":{"long":3114365817721389879},"o_timestampmillis":null,"o_timestampmicros":null}],"r_date":-605185435,"r_timemillis":1447939454,"r_timemicros":4473682537923093884,"r_timestampmillis":8567297896173142372,"r_timestampmicros":4909972333966398819,"o_boolean":null,"o_int":{"int":111355775},"o_long":null,"o_float":{"float":0.96915585},"o_double":{"double":0.5606067771470297},"o_bytes":null,"o_string":null,"o_enum":{"Enum2":"ONE"},"o_date":null,"o_timemillis":null,"o_timemicros":null,"o_timestampmillis":{"long":8814198502712383127},"o_timestampmicros":{"long":6374165294067135770}} -{"r_boolean":false,"r_int":1990742895,"r_long":-1631888922581845172,"r_float":0.51707006,"r_double":0.13653780053326814,"r_bytes":"","r_string":"h","r_record":{"r_boolean":false,"r_int":868255291,"r_long":-4645263536456392159,"r_float":0.24430567,"r_double":0.34187719699182295,"r_bytes":"âÀ","r_string":"qntfgkd","r_record":{"r_boolean":true,"r_int":-1156809435,"r_long":9063896225172399434,"r_float":0.9201317,"r_double":0.5965339427186788,"r_bytes":"\rE\u0001D:#ë\u0006","r_string":"yhugsmhuk","r_enum":"ONE","r_date":-745629923,"r_timemillis":-438848928,"r_timemicros":-7311142785656299408,"r_timestampmillis":7099081582195244735,"r_timestampmicros":-4731360922452251839,"o_boolean":null,"o_int":null,"o_long":null,"o_float":null,"o_double":{"double":0.6068559240483331},"o_bytes":null,"o_string":{"string":"emchxbjnngwmm"},"o_enum":{"Level2_1__1_Enum2":"ZERO"},"o_date":{"int":-1163952125},"o_timemillis":{"int":-1670936243},"o_timemicros":null,"o_timestampmillis":null,"o_timestampmicros":null},"r_enum":"TWO","r_date":1613213392,"r_timemillis":1904278966,"r_timemicros":-4737965505320140920,"r_timestampmillis":5154082251707405101,"r_timestampmicros":810426528714748237,"r_array":[{"r_boolean":true,"r_int":-1628906994,"r_long":-3365064177768756724,"r_float":0.67996347,"r_double":0.344136595642738,"r_bytes":"X^LJ\u001Cb","r_string":"ay","r_enum":"ZERO","o_boolean":null,"o_int":null,"o_long":null,"o_float":null,"o_double":null,"o_bytes":{"bytes":"\u0016\u0016\u0016ÍcgO\u0001[€NO\u0012NÚ"},"o_string":{"string":"ibatwog"},"o_enum":{"Level2_1__2_Enum2":"ONE"},"o_date":{"int":-2088013695},"o_timemillis":null,"o_timemicros":null,"o_timestampmillis":{"long":-2453698167431797356},"o_timestampmicros":null},{"r_boolean":true,"r_int":1550919208,"r_long":-3444345469698103773,"r_float":0.45394665,"r_double":0.6361587985372189,"r_bytes":"Oë","r_string":"qgehihbkjyoxvld","r_enum":"TWO","o_boolean":null,"o_int":null,"o_long":null,"o_float":null,"o_double":null,"o_bytes":null,"o_string":{"string":"ihtpacdd"},"o_enum":{"Level2_1__2_Enum2":"ONE"},"o_date":null,"o_timemillis":{"int":-33358532},"o_timemicros":{"long":8433434276903486476},"o_timestampmillis":{"long":5898290338444169830},"o_timestampmicros":null}]},"r_enum":"ZERO","r_array":[{"r_boolean":true,"r_int":29519354,"r_long":2796850630215945443,"r_float":0.06250614,"r_double":0.9078574772494875,"r_bytes":"Iѕ¬","r_string":"xkkicnjhteb","r_array":[],"o_boolean":{"boolean":true},"o_int":{"int":-805506361},"o_long":null,"o_float":{"float":0.68580425},"o_double":null,"o_bytes":{"bytes":""},"o_string":{"string":"ylitv"},"o_enum":{"Level1_2_Enum2":"TWO"},"o_date":null,"o_timemillis":null,"o_timemicros":{"long":2036464734569975276},"o_timestampmillis":{"long":-6842194181213592216},"o_timestampmicros":{"long":-5823801894640704597}},{"r_boolean":false,"r_int":135292364,"r_long":4385007335990787083,"r_float":0.049503267,"r_double":0.3910308848645411,"r_bytes":"ˆÉ×Å¢€=","r_string":"mcgikoguociiak","r_array":[{"r_boolean":true,"r_int":2043998024,"r_long":6614557246970506982,"r_float":0.76403624,"r_double":0.9924236219537419,"r_bytes":"\rÿô?hmM","r_string":"pdsmanrgfmlj","r_enum":"TWO","r_date":-1912691624,"r_timemillis":-2027206389,"r_timemicros":6276745890832087033,"r_timestampmillis":-2543336708606162846,"r_timestampmicros":-6947710043896570268,"o_boolean":null,"o_int":null,"o_long":null,"o_float":{"float":0.5638207},"o_double":{"double":0.31473473550463893},"o_bytes":null,"o_string":null,"o_enum":{"Level2_2_Enum2":"TWO"},"o_date":null,"o_timemillis":null,"o_timemicros":null,"o_timestampmillis":null,"o_timestampmicros":null},{"r_boolean":true,"r_int":-2011222127,"r_long":-4272538984463913249,"r_float":0.7127282,"r_double":0.837161960110499,"r_bytes":"œé•ÊÑ","r_string":"iwfcgnlmt","r_enum":"ONE","r_date":-1450425225,"r_timemillis":-1124528598,"r_timemicros":-2515908045310054493,"r_timestampmillis":8662911360855392888,"r_timestampmicros":1760449965653552284,"o_boolean":{"boolean":false},"o_int":null,"o_long":null,"o_float":null,"o_double":null,"o_bytes":{"bytes":"FlíAŽ\\g"},"o_string":{"string":""},"o_enum":{"Level2_2_Enum2":"ONE"},"o_date":null,"o_timemillis":null,"o_timemicros":{"long":2445212994253212503},"o_timestampmillis":null,"o_timestampmicros":null},{"r_boolean":true,"r_int":-288500713,"r_long":7504398507507730108,"r_float":0.7256424,"r_double":0.4011191711478628,"r_bytes":"ßpI‰\u0006W+f´","r_string":"c","r_enum":"TWO","r_date":-1714668298,"r_timemillis":-457714657,"r_timemicros":-2780805742589014333,"r_timestampmillis":-2646641318452159437,"r_timestampmicros":-3937458712894250459,"o_boolean":{"boolean":false},"o_int":{"int":-2030556872},"o_long":{"long":8889001182267477661},"o_float":null,"o_double":null,"o_bytes":null,"o_string":{"string":"uvyvhinddymctok"},"o_enum":null,"o_date":{"int":2061980356},"o_timemillis":{"int":5037915},"o_timemicros":null,"o_timestampmillis":null,"o_timestampmicros":null}],"o_boolean":null,"o_int":{"int":-616216443},"o_long":null,"o_float":{"float":0.96835345},"o_double":{"double":0.7141102669300559},"o_bytes":{"bytes":"Óÿyó€qâ\u000EÕÙ¸>,G…"},"o_string":null,"o_enum":null,"o_date":{"int":-1783573323},"o_timemillis":{"int":321984847},"o_timemicros":null,"o_timestampmillis":{"long":8378809180333295506},"o_timestampmicros":{"long":-3603275789237720191}},{"r_boolean":true,"r_int":1900089688,"r_long":827520737527032794,"r_float":0.23260021,"r_double":0.6883243612544221,"r_bytes":"Ä","r_string":"f","r_array":[{"r_boolean":false,"r_int":-2004900666,"r_long":-7373762372701116515,"r_float":0.69198,"r_double":0.1459513564164332,"r_bytes":"Èúø›Y<ë","r_string":"vdbdtwo","r_enum":"TWO","r_date":153009037,"r_timemillis":1099564770,"r_timemicros":6921281310067659495,"r_timestampmillis":6633170175977930132,"r_timestampmicros":-5038807137824855457,"o_boolean":null,"o_int":{"int":-1447850994},"o_long":null,"o_float":{"float":0.21711612},"o_double":null,"o_bytes":{"bytes":"¬5÷ö›ÊÉÀ™\u0012b|"},"o_string":null,"o_enum":{"Level2_2_Enum2":"ONE"},"o_date":{"int":-94596165},"o_timemillis":null,"o_timemicros":{"long":4265248504361509281},"o_timestampmillis":null,"o_timestampmicros":{"long":-1517290695815788360}},{"r_boolean":false,"r_int":793356336,"r_long":-4377315410840620105,"r_float":0.17430538,"r_double":0.07101997189837006,"r_bytes":"°þŽ˜ƒš¶","r_string":"qrlln","r_enum":"TWO","r_date":-891340901,"r_timemillis":-706227522,"r_timemicros":-5373257751126354950,"r_timestampmillis":-6888556177645885510,"r_timestampmicros":2669460443099042742,"o_boolean":{"boolean":false},"o_int":null,"o_long":null,"o_float":{"float":0.66959804},"o_double":null,"o_bytes":null,"o_string":{"string":"onjcpjprmgvr"},"o_enum":null,"o_date":{"int":734977762},"o_timemillis":null,"o_timemicros":{"long":-8396406945325894634},"o_timestampmillis":null,"o_timestampmicros":null},{"r_boolean":false,"r_int":420377759,"r_long":-4246325272752737699,"r_float":0.40150952,"r_double":0.0936971855255454,"r_bytes":"gúTEZE'\n\u0004\fÍ­h?","r_string":"itikkcb","r_enum":"ONE","r_date":550534103,"r_timemillis":1458661757,"r_timemicros":5717172176547706952,"r_timestampmillis":4707839245646715727,"r_timestampmicros":-7856454226387412306,"o_boolean":null,"o_int":null,"o_long":null,"o_float":{"float":0.77258354},"o_double":{"double":0.7428240811752084},"o_bytes":null,"o_string":null,"o_enum":null,"o_date":{"int":-1840200751},"o_timemillis":{"int":117907923},"o_timemicros":{"long":3949959903346163462},"o_timestampmillis":{"long":261608621568326746},"o_timestampmicros":{"long":1896213989542338158}}],"o_boolean":null,"o_int":{"int":-1390326813},"o_long":{"long":5401392564692108363},"o_float":{"float":0.71832144},"o_double":null,"o_bytes":null,"o_string":{"string":"qwff"},"o_enum":{"Level1_2_Enum2":"TWO"},"o_date":null,"o_timemillis":{"int":1819196436},"o_timemicros":null,"o_timestampmillis":null,"o_timestampmicros":null}],"r_date":-368867077,"r_timemillis":-894198927,"r_timemicros":8708277297383715532,"r_timestampmillis":566906515119011374,"r_timestampmicros":-1077007741463882149,"o_boolean":null,"o_int":null,"o_long":null,"o_float":null,"o_double":null,"o_bytes":{"bytes":"$ûnŠcœ\u0000\u000BŸ\f\u0017\u001D€"},"o_string":{"string":"rueoxbukftboc"},"o_enum":{"Enum2":"ONE"},"o_date":null,"o_timemillis":{"int":465238046},"o_timemicros":{"long":-6513965302423488176},"o_timestampmillis":{"long":-1184449282506178828},"o_timestampmicros":{"long":-1099958222082390948}} -{"r_boolean":false,"r_int":-1822732344,"r_long":4946725986598367863,"r_float":0.13742208,"r_double":0.8904415995686727,"r_bytes":"ôëÿÎ","r_string":"jpuodkex","r_record":{"r_boolean":true,"r_int":1835648873,"r_long":5364346928645647130,"r_float":0.21222734,"r_double":0.9355043202133511,"r_bytes":"¦Ž—–½åÔÂji8","r_string":"xakyq","r_record":{"r_boolean":false,"r_int":899859689,"r_long":-2399329026800641027,"r_float":0.81145436,"r_double":0.5889176100080618,"r_bytes":"¹_’)¬nÄaQ‘àY","r_string":"ka","r_enum":"ZERO","r_date":1890919703,"r_timemillis":-1982034677,"r_timemicros":-6859781532387645500,"r_timestampmillis":4152472474737900027,"r_timestampmicros":4388880134799207184,"o_boolean":null,"o_int":{"int":-1290748386},"o_long":{"long":4164794383560691128},"o_float":{"float":0.22873294},"o_double":{"double":0.1212939692592736},"o_bytes":null,"o_string":null,"o_enum":{"Level2_1__1_Enum2":"TWO"},"o_date":null,"o_timemillis":null,"o_timemicros":null,"o_timestampmillis":null,"o_timestampmicros":null},"r_enum":"ONE","r_date":1849653029,"r_timemillis":1152096662,"r_timemicros":8986030860355767872,"r_timestampmillis":-3915394636372167255,"r_timestampmicros":4851148401330198478,"r_array":[{"r_boolean":false,"r_int":-1722323623,"r_long":-5373045444310084639,"r_float":0.7318985,"r_double":0.13748273771158837,"r_bytes":"6gU\u0014","r_string":"qxj","r_enum":"ZERO","o_boolean":{"boolean":true},"o_int":null,"o_long":null,"o_float":null,"o_double":{"double":0.4926912717248545},"o_bytes":{"bytes":"%Ö&š§m8]ÿd¶ ©"},"o_string":null,"o_enum":null,"o_date":null,"o_timemillis":{"int":-2071105623},"o_timemicros":{"long":5009887008684348427},"o_timestampmillis":null,"o_timestampmicros":{"long":4251293462590510574}},{"r_boolean":true,"r_int":-851284489,"r_long":7809705956792233282,"r_float":0.79903245,"r_double":0.07747549100345952,"r_bytes":"M\u001DÃ\f","r_string":"yhyrlkuibdxbsa","r_enum":"TWO","o_boolean":null,"o_int":null,"o_long":null,"o_float":{"float":0.553643},"o_double":null,"o_bytes":null,"o_string":null,"o_enum":{"Level2_1__2_Enum2":"ZERO"},"o_date":null,"o_timemillis":null,"o_timemicros":{"long":5034549555456120801},"o_timestampmillis":null,"o_timestampmicros":{"long":8604012837876843109}},{"r_boolean":false,"r_int":19347868,"r_long":-860208766922616358,"r_float":0.6120698,"r_double":0.39476275361406654,"r_bytes":"u\u0010•\faÀ+!jV#qÓãå","r_string":"jryjwwctsdkf","r_enum":"ZERO","o_boolean":{"boolean":false},"o_int":{"int":-1419893935},"o_long":{"long":4370558355149010469},"o_float":{"float":0.33083844},"o_double":{"double":0.82730108818623},"o_bytes":null,"o_string":null,"o_enum":{"Level2_1__2_Enum2":"ZERO"},"o_date":null,"o_timemillis":null,"o_timemicros":null,"o_timestampmillis":null,"o_timestampmicros":null},{"r_boolean":true,"r_int":-149874495,"r_long":-2265115828624837741,"r_float":0.9883942,"r_double":0.8685823309028005,"r_bytes":"N","r_string":"ukieagvpijupokoapubbvluijcxsnjmgjajkadql","r_enum":"ZERO","o_boolean":null,"o_int":null,"o_long":null,"o_float":null,"o_double":{"double":0.40177091953900357},"o_bytes":{"bytes":""},"o_string":{"string":"emjiemtjibepjysmjhimmoocojoweffgcdpasqjgjujipmlpvskccvtnilxjfpekjllppxbpkbdwtcvhlydrfmrxdkekvykhimfrpffwoegcwbsdigovwnuvmonrqtlrbdnxdpoixaftcsiifswfgmmscwovdsviuvsrntibohuhqnlgaueytivkitcqkhmgdsil"},"o_enum":{"Level2_1__2_Enum2":"TWO"},"o_date":null,"o_timemillis":null,"o_timemicros":null,"o_timestampmillis":null,"o_timestampmicros":{"long":-100141553265924009}}]},"r_enum":"ONE","r_array":[{"r_boolean":false,"r_int":2108078513,"r_long":30785892218415443,"r_float":0.94664335,"r_double":0.6876040872516155,"r_bytes":"","r_string":"jw","r_array":[],"o_boolean":{"boolean":false},"o_int":null,"o_long":null,"o_float":{"float":0.07760507},"o_double":{"double":0.06409963578400057},"o_bytes":{"bytes":"/ÿ‡>;pƒ"},"o_string":null,"o_enum":null,"o_date":{"int":-1650356391},"o_timemillis":null,"o_timemicros":{"long":-3918889978230327632},"o_timestampmillis":{"long":-6568746201858961556},"o_timestampmicros":null}],"r_date":2122123696,"r_timemillis":-1983954054,"r_timemicros":3885975836119247248,"r_timestampmillis":7317248212756154645,"r_timestampmicros":-1693772393971463155,"o_boolean":null,"o_int":null,"o_long":{"long":8668324771710289363},"o_float":{"float":0.12505579},"o_double":{"double":0.002797822902191549},"o_bytes":null,"o_string":{"string":"ddsvihjbygpyxd"},"o_enum":{"Enum2":"ONE"},"o_date":{"int":1194138561},"o_timemillis":null,"o_timemicros":null,"o_timestampmillis":null,"o_timestampmicros":{"long":-830485158718479324}} -{"r_boolean":false,"r_int":766133954,"r_long":1178499121073316940,"r_float":0.98920184,"r_double":0.12343392309313306,"r_bytes":"á","r_string":"wmrvdilefvv","r_record":{"r_boolean":true,"r_int":913613971,"r_long":1197953287911255436,"r_float":0.24559885,"r_double":0.6338769639755343,"r_bytes":")7\u000Bú6","r_string":"qwvubn","r_record":{"r_boolean":false,"r_int":-2010522158,"r_long":-4274957089233559620,"r_float":0.5469156,"r_double":0.21664827904506245,"r_bytes":"WðïÛ]ø=¨­","r_string":"w","r_enum":"ONE","r_date":-2084011358,"r_timemillis":-835486797,"r_timemicros":-8622065819606378822,"r_timestampmillis":940779413847639594,"r_timestampmicros":-546933420635930720,"o_boolean":{"boolean":false},"o_int":{"int":459649100},"o_long":{"long":-7855260059940406899},"o_float":null,"o_double":null,"o_bytes":{"bytes":"(ŠÈ¤\u0013þ\u0004\u000FE®\u001D\f\fþ"},"o_string":null,"o_enum":null,"o_date":null,"o_timemillis":{"int":70597019},"o_timemicros":null,"o_timestampmillis":{"long":314729379964759308},"o_timestampmicros":{"long":-2271703206299378703}},"r_enum":"TWO","r_date":-928879014,"r_timemillis":-1992593765,"r_timemicros":3381067577125266164,"r_timestampmillis":-1599654894107502697,"r_timestampmicros":-1101220108863127951,"r_array":[]},"r_enum":"ZERO","r_array":[{"r_boolean":false,"r_int":-799525940,"r_long":-7206452315055004693,"r_float":0.8248561,"r_double":0.22529850387180772,"r_bytes":"i¬Ä\u0015eTß¼J窾¥ìô","r_string":"ngmedrkkrrwoaic","r_array":[{"r_boolean":false,"r_int":-32764880,"r_long":5954408713924449241,"r_float":0.7443672,"r_double":0.763989329767496,"r_bytes":"Ë\u000F)\u0005?™ª","r_string":"uojpvhskvxrgcb","r_enum":"ONE","r_date":-1112874084,"r_timemillis":-2019731024,"r_timemicros":5471556574917482451,"r_timestampmillis":-630689543511940697,"r_timestampmicros":-1710215014353779032,"o_boolean":{"boolean":false},"o_int":{"int":-1794174140},"o_long":null,"o_float":null,"o_double":null,"o_bytes":null,"o_string":{"string":"umsdsjqwcuyucnmnvrcafcqkyrnqrbtqtotrgfkpjaeixnrdkssxddisttarhjsubqcaaudjtpmculkckqjeqrakopfutabvvapwftkaauhigymkpvikchysvkdtlgctarfxbn"},"o_enum":{"Level2_2_Enum2":"ONE"},"o_date":null,"o_timemillis":null,"o_timemicros":null,"o_timestampmillis":{"long":-8320915516606519608},"o_timestampmicros":{"long":-2864450319630061997}},{"r_boolean":true,"r_int":857238564,"r_long":-3645078955420603563,"r_float":0.1871087,"r_double":0.5452656262100367,"r_bytes":"lsD‹“t\u0018ûo™b.™~","r_string":"rxucryrkeoe","r_enum":"TWO","r_date":293114375,"r_timemillis":1001351497,"r_timemicros":-3206472846952279668,"r_timestampmillis":-9214223495678739002,"r_timestampmicros":-8170179894653014060,"o_boolean":{"boolean":true},"o_int":null,"o_long":{"long":-4397314496295589198},"o_float":null,"o_double":{"double":0.7530726190675969},"o_bytes":null,"o_string":null,"o_enum":null,"o_date":{"int":-1753427590},"o_timemillis":null,"o_timemicros":{"long":4707523832233510916},"o_timestampmillis":{"long":-1852302100722219984},"o_timestampmicros":null},{"r_boolean":false,"r_int":1610618405,"r_long":-3179526627546390826,"r_float":0.766206,"r_double":0.9583876177993228,"r_bytes":"¿Tjp","r_string":"qroqjyikht","r_enum":"ONE","r_date":-1931191161,"r_timemillis":1429165438,"r_timemicros":-5757727551606083848,"r_timestampmillis":493071579827595697,"r_timestampmicros":-2559581339212834584,"o_boolean":null,"o_int":{"int":497141812},"o_long":{"long":-7147770118525147548},"o_float":null,"o_double":{"double":0.7709362589825356},"o_bytes":{"bytes":"Z\u000B4 Xäì\\\\Üæ"},"o_string":null,"o_enum":null,"o_date":{"int":-932659784},"o_timemillis":{"int":782444721},"o_timemicros":null,"o_timestampmillis":null,"o_timestampmicros":null}],"o_boolean":null,"o_int":{"int":-2024787047},"o_long":null,"o_float":{"float":0.98237884},"o_double":{"double":0.696431423892177},"o_bytes":{"bytes":"Ì\u0016ã"},"o_string":{"string":"wgugmhw"},"o_enum":null,"o_date":{"int":1767291959},"o_timemillis":null,"o_timemicros":{"long":5960267273969077974},"o_timestampmillis":{"long":-7474879863846585598},"o_timestampmicros":{"long":1164998172539309573}},{"r_boolean":true,"r_int":23911940,"r_long":6545363732541237753,"r_float":0.26538467,"r_double":0.8427812864844798,"r_bytes":"ªŠ","r_string":"","r_array":[{"r_boolean":true,"r_int":-1212869570,"r_long":1602152113512809231,"r_float":0.6510553,"r_double":0.9765087966152739,"r_bytes":"ºÈ","r_string":"pjjtcfncqeiitcnqaudndakmxkpwdiclvtcbprcoskxjtbmxupcrccrjuhsjuonfaqlasahdnymbkioiumomtfbqyxdsnnwfsiggoyanndbvdouueodpohkecndjamygslfqkewpmwijogdruyaigowpgitnkdkmbjdvxjlecudvmxvlaijnsrumgwrdcechlfalmegvnxgkadjfmwcymeinheerucokofvnuqneueryunhwqqbymsnvgvabqxudqahddfcjgftbwdscbfmshxncsqdsjkoduqtsjpxwtrheglarmkdbxdfweqfxjltqbvarxtrdavnpxkwujpnqythhixtxlgynribomjvenslohydaxowmopxstyniierouxqrfhlunjuupyuovrhfjxxwiijgutkdcrcvoxmwrufkoqltlvhokgwlsdbhxqoprxjjwbonkiibhyqfvpetxrpwiixfgxyodqcvwomdyhwfrqdkwwyjlsymbufxriglemvqvpokptvfntqeeoxspdqmkywbjjgfmrlrkpaolihrgiqshqkrowxrkdeitqneaokcaqxudbyvucyrycowqvskoasdukaegcgqewpeehuxtkbeawviehdgslrrppmvtlgsxatxewqrkvtystytcevqowvlmasowvqretdhxdqgniyrxpnewdvfbklokmqwumcbcrmivtayuriqyqraenhaeiortfnndvnfndixtqphjrhjjyosnkyxxbyynapmslqhbvgoynhblrgruebstmbtfcuecrylyxrvqlgvjwrwdkpedjpegiljmhigdcgydenokdqexuwwpojphlynwqrktoprrdkjpclsiligafuiuecbydckdsncyggwsyuiqtxhfdmtuunwqxvfwnkignaxpltjpyxumhfevideaauebdcewqxddwskkdvytynnyrgugfeymohnyduckbvloqaooptqggicasttxqnvapelulvkfulvexvdjxpphvpacmxnrpmojahitomgrujsivopoquylllnrgtiaeytcvpmnlkrngmcxotxdvkewiviybhaygbcuycjkryjrtefwksxalkwvostbllsisbvggcanlotbgjlliwyfmweciqvwmqjqmejtbnmebnqvadiheifmhwyesyopxpaatvekpjemjnkgfakpwmhorivgbpdjcxjjciwyebifkamsejdppthkxfoqesioukkdkcjwvxsctwukadbmkkwjtirkoqqcpmllepjueeyscejsiquhiqyraspcnqdglywsxwrkqxnwwolhmninghgvrcbraiqxsmjbrwingbafqfhydrwwquhfafvgaoqllguhaptvvjgiynfmtivkjnqdxthxsccoqhxssqedkysjekojckrlklrunnjeqpxwylxhuvytioxtnhqiniixefrewvkdwypluforkhkmjcqpkfturmjurtvjnfuopxcywjjvkdrkwocddthxoakrqxkycabgsfporfhbdkjadtjdavixflsjxugbocxregpsksthiyohautxbagqacxnhhutolufjgsqeyxifoedwafsftwvfcwjpwwnrwtjelnqxfsyirmfqjomjornuptttgcotsscxnkllrqwlsxykgmrgurfownisxmqbdijgypugcqlcbgsifrdomgtaydkbufqiwrcegciucpynboogrmbkfqmlfcwjkqiwlvrvkkrhqmmhlkaigxaqvmteanijgyohsxqbcsjcvrgtjasfuyqcklmtsesxxfukmbwqoukvptkvrysfelfrpojwfypsutarovibcotdhfhjdubebforueusxcoyiuupmrymbqbdoaxmttlbukfayhexitojilxvgsxqsvpdntrhjmdhhrukgdlubrfksloyvardrjmwoxnssxcvoinpjstufeggebxyucsxbtpnmsmkdhexauedcaevtmmdhhwtwwmwpxkroafisaxoqjwlaksxiokancpjuocvkwqdgctjihnbptoygnwdiufoufoojnyiddyisywkstrsdnnxmgkhbpbifwfftjyxehwwhymydjgvcdxaympadndcnjfxmqkxaokrahlwhkhvkiacuoqmphewjvnshiroqfucroktsfhbaqyksjicrcagxsrtvwqbacxorntvrqucmdkclqxlqylojaxsexwoyioiitbjsboadjlylvwihamvhxxqxenlwtdfpuupquwjgvthsoormmgcpfbtrlwmmjgnwwghfgvroyikxooifbhdaribdlmuhdfiakvydsmdoihaafohdfbtlntkffllljsrlefjumtpmsaihheierrwfkqkqngfyikuiyjrmbbdxyenosudmeewtveltxbenbmgqunjxndiwbhlrckokjerxyobextvtlebtfpwuiyedcsnjqikfdujfqfopdovxlvyjmsepliapqaseworhtvxqadakyboqigmkgvvmnfwktvriixmgsjqpexstfteeiluqyesxixthfmgrhkykiudpvpnvimxvfnmtantlvotuvnknirhieohwxyorabjsifyncdlbukprsnpdspoglvbodfaijpsvnpvptmukpsubxbxrnqfqbttewsvvwlyanifegirggbrktnpynebdwppibeipsqrjeodwrplpqslmsvcskjdhqchnfdubjabbfydnafecnmawbxuqapexxmoolislhjiptjitaqqqpcaunhwommjclvriuocbwickoedwfgxpgybufhkxckravncscqqqyhnfxibjsmkkthdppoassfixgmnmupfruessyynthgifqvevqddkchryemkogseayuigcjwbactcvtdoceucjwmrcgouxkdreagbqvcredycoogjcnvvcmgshdqynfucdmsnxugbrvfpwgwtcutsuaejdsghlrsjahtdpowktncgimgiqxbuldfwflfqodgrgmddpmjwnfadqdvtpfedmuralwfthmayjqejtvhjcwyjabujfwmwlpsfolnxesvmvxodrpmqsnjfqloisqxjlawhcpgnpqxytkhundyvmhthcptovgwhyrbqimtsmhqubsrenngwpivhpnrfewimhnkxbiifqrhvlhcteyxvtdsyttvxqkhcrepdruvqdosejqhtmadpcgidpcvtuddjwlajveniytsrcbbphiitkganqcatlpvrtwmntbbpehdyvsiaswfumdyygjextxeekkehafrttpssclkrcmwivqaoxyaktsmssghdpkbrlbmgqgffujuivlqhemmvudljskgkmiquigmphqsedomaufvxeihrjbfmmjgbbulrowoairamvj","r_enum":"ZERO","r_date":561489545,"r_timemillis":-1331650303,"r_timemicros":793909456824717701,"r_timestampmillis":-4964741524763453701,"r_timestampmicros":-4368946219023881967,"o_boolean":null,"o_int":{"int":1947554287},"o_long":null,"o_float":null,"o_double":{"double":0.23717171472161946},"o_bytes":{"bytes":"¨qÉS•¨\u000E®ò½\u0004£\u0018"},"o_string":null,"o_enum":{"Level2_2_Enum2":"ONE"},"o_date":null,"o_timemillis":{"int":-656229558},"o_timemicros":{"long":-3604907919017671655},"o_timestampmillis":null,"o_timestampmicros":null}],"o_boolean":null,"o_int":{"int":-1565963282},"o_long":null,"o_float":null,"o_double":{"double":0.4593988699078947},"o_bytes":null,"o_string":{"string":"mgomkhnacbvejg"},"o_enum":{"Level1_2_Enum2":"ONE"},"o_date":null,"o_timemillis":null,"o_timemicros":{"long":6860595444971506676},"o_timestampmillis":{"long":6904659665000775586},"o_timestampmicros":null},{"r_boolean":false,"r_int":-1654230859,"r_long":-4959496791403796932,"r_float":0.8017933,"r_double":0.0035281786935684734,"r_bytes":"\u001Cbg,¦r","r_string":"oaprjuvikevd","r_array":[{"r_boolean":false,"r_int":-1332002797,"r_long":-3879458432923484873,"r_float":0.3215022,"r_double":0.7476169368439963,"r_bytes":"¨Ô\u001D³«æ","r_string":"xfed","r_enum":"TWO","r_date":-2083915696,"r_timemillis":1412438731,"r_timemicros":319453889022397117,"r_timestampmillis":6682750705485413029,"r_timestampmicros":-6792203627018509501,"o_boolean":null,"o_int":null,"o_long":{"long":6518362070646835355},"o_float":{"float":0.4649039},"o_double":{"double":0.8827675386921395},"o_bytes":{"bytes":"Alî"},"o_string":{"string":"bfwfsnqqrsr"},"o_enum":{"Level2_2_Enum2":"ZERO"},"o_date":{"int":1944421435},"o_timemillis":null,"o_timemicros":null,"o_timestampmillis":{"long":7692467863756531163},"o_timestampmicros":null},{"r_boolean":true,"r_int":1618790367,"r_long":-8210393581495965746,"r_float":0.76154363,"r_double":0.23516331439298988,"r_bytes":"“Pè2ÞªB4PB¬àã’ø","r_string":"plpprdjvaegttpeqeuqqeshtgkpflhoplhlgdfybaxhnchrrssnusprigerhlhjicrlglbdykfprkcgdlknnhgajjjtnnwrhucdngcwafkdicynuvbscrefhamkisvdapxlisbypyvneqgkwbwebgwoblmmsxphvvmavnfuxidprctivhcquhvbujagdsdaqpcjosiaiigtqwnrjtapnlidxexlusiacenurnyb","r_enum":"ONE","r_date":-1790231600,"r_timemillis":1549291728,"r_timemicros":-4242667234631020290,"r_timestampmillis":-4659261738985292776,"r_timestampmicros":-6079908666328723129,"o_boolean":null,"o_int":{"int":-896261107},"o_long":null,"o_float":{"float":0.5288841},"o_double":{"double":0.1159595707457809},"o_bytes":null,"o_string":null,"o_enum":{"Level2_2_Enum2":"ZERO"},"o_date":{"int":1668716990},"o_timemillis":null,"o_timemicros":null,"o_timestampmillis":{"long":7560426429911994287},"o_timestampmicros":null}],"o_boolean":{"boolean":true},"o_int":null,"o_long":{"long":-4400823569834646165},"o_float":{"float":0.50712293},"o_double":null,"o_bytes":{"bytes":""},"o_string":{"string":"go"},"o_enum":null,"o_date":null,"o_timemillis":null,"o_timemicros":{"long":1290437690151684862},"o_timestampmillis":null,"o_timestampmicros":{"long":-8427868503921952432}}],"r_date":1349381864,"r_timemillis":-1963588663,"r_timemicros":-7364400835841277685,"r_timestampmillis":-4818657587111877073,"r_timestampmicros":5907358396706855378,"o_boolean":{"boolean":false},"o_int":null,"o_long":null,"o_float":{"float":0.17042929},"o_double":{"double":0.5816953814045694},"o_bytes":{"bytes":":¸O{"},"o_string":null,"o_enum":null,"o_date":null,"o_timemillis":null,"o_timemicros":{"long":438668182211786735},"o_timestampmillis":{"long":-8072125125905064456},"o_timestampmicros":null} -{"r_boolean":false,"r_int":1487279727,"r_long":4888699771310399702,"r_float":0.62562305,"r_double":0.6348248569265786,"r_bytes":"rºðÃ*\u0007¯/\u0011br\"U÷!","r_string":"haoirpaxj","r_record":{"r_boolean":true,"r_int":427893228,"r_long":-5842304433389874956,"r_float":0.5304942,"r_double":0.7518289570657619,"r_bytes":"8ijT","r_string":"yseuuxwupnu","r_record":{"r_boolean":false,"r_int":1632483906,"r_long":-6987479720167967921,"r_float":0.24931055,"r_double":0.22346707514880504,"r_bytes":"6\u0007","r_string":"vdjfuyolphq","r_enum":"ONE","r_date":-1196303048,"r_timemillis":-1502461792,"r_timemicros":-749089537878131111,"r_timestampmillis":-73667723023132178,"r_timestampmicros":574012723225751329,"o_boolean":null,"o_int":{"int":-227659709},"o_long":null,"o_float":{"float":0.8930632},"o_double":{"double":0.14031679249288254},"o_bytes":{"bytes":""},"o_string":null,"o_enum":null,"o_date":{"int":-1052820258},"o_timemillis":{"int":-453179208},"o_timemicros":null,"o_timestampmillis":null,"o_timestampmicros":{"long":1550738835991037945}},"r_enum":"ZERO","r_date":-1184229310,"r_timemillis":-700072248,"r_timemicros":-4586260883688563799,"r_timestampmillis":3042662311999149024,"r_timestampmicros":5505392192394337387,"r_array":[{"r_boolean":true,"r_int":-1405553726,"r_long":-1606174591700437153,"r_float":0.5689006,"r_double":0.0764923847593244,"r_bytes":"6xƒw*(“ÛQ","r_string":"bankdqgjouw","r_enum":"TWO","o_boolean":{"boolean":false},"o_int":{"int":391012572},"o_long":null,"o_float":{"float":0.26894248},"o_double":null,"o_bytes":null,"o_string":null,"o_enum":{"Level2_1__2_Enum2":"ZERO"},"o_date":null,"o_timemillis":null,"o_timemicros":null,"o_timestampmillis":{"long":-8842358056981202755},"o_timestampmicros":{"long":-6393736753595660740}}]},"r_enum":"ONE","r_array":[{"r_boolean":false,"r_int":1907142090,"r_long":-1227571990741434941,"r_float":0.6168538,"r_double":0.19897080992902483,"r_bytes":"\r>{‰\fj¾­›\u001EË\u00021Át<ù47?ç.4ßÄKÇÂhŸuû”Ò\u0001Úf2·EZ\u0015¨¿ŠŸ\u0015½Z“\u001Ah5chˆ³§]^6NOù[Jh\u001B[Î5üô&ne]Ýtèúq\u000EÞ£Œ0fÙ\u0006åq5ûSz5‰Z:\u0000¡Ÿú>gòŸVíÎgSðú1·/ˆÉš\u0018xiÃòöR\u000E®ýÊÿÃ$¡‰¨\r#OÇ\f;—m“ÎV\u0013¢Ì\u0010¤\n\u001B<£\u0013Í\u0006I£³Älò\u0012ì\b]T","r_string":"iyrgd","r_array":[{"r_boolean":false,"r_int":-494423962,"r_long":-6599854288617072823,"r_float":0.53875947,"r_double":0.10353478727514431,"r_bytes":"Ô\u0000","r_string":"onsxr","r_enum":"TWO","r_date":-499858249,"r_timemillis":-1042483206,"r_timemicros":-7268322116274906463,"r_timestampmillis":1806455816054577912,"r_timestampmicros":-491883869950244183,"o_boolean":null,"o_int":null,"o_long":{"long":-2730057644578630332},"o_float":{"float":0.8289805},"o_double":null,"o_bytes":{"bytes":".ˆ1Œt!\r"},"o_string":{"string":"rvnrtpu"},"o_enum":{"Level2_2_Enum2":"ONE"},"o_date":null,"o_timemillis":null,"o_timemicros":null,"o_timestampmillis":{"long":-289758280402865945},"o_timestampmicros":null},{"r_boolean":true,"r_int":-1670094028,"r_long":4399842213766433307,"r_float":0.7940729,"r_double":0.4968878935486304,"r_bytes":"@Ø׎¼n‡\u001A\u001FZ","r_string":"vvdqg","r_enum":"ONE","r_date":1936317182,"r_timemillis":2131209572,"r_timemicros":-7955119965179379283,"r_timestampmillis":-3887427227624745609,"r_timestampmicros":6243813511470344046,"o_boolean":{"boolean":true},"o_int":null,"o_long":{"long":777522515913940495},"o_float":{"float":0.5472896},"o_double":{"double":0.07411112654794949},"o_bytes":null,"o_string":{"string":"ttxftfrpwivb"},"o_enum":null,"o_date":null,"o_timemillis":null,"o_timemicros":null,"o_timestampmillis":{"long":1331259193582291206},"o_timestampmicros":{"long":-5608707876707280114}},{"r_boolean":false,"r_int":-465297077,"r_long":3135095045923458151,"r_float":0.7902038,"r_double":0.5333083848918266,"r_bytes":"“ôñ•S","r_string":"cbs","r_enum":"ZERO","r_date":1589255530,"r_timemillis":788408458,"r_timemicros":-9203816820180146034,"r_timestampmillis":-9004832472666795536,"r_timestampmicros":-8262247734996954028,"o_boolean":null,"o_int":{"int":1132734496},"o_long":{"long":-7069561792007978642},"o_float":null,"o_double":null,"o_bytes":null,"o_string":null,"o_enum":null,"o_date":null,"o_timemillis":null,"o_timemicros":{"long":4466330439450545575},"o_timestampmillis":{"long":-8830962380879205587},"o_timestampmicros":null}],"o_boolean":null,"o_int":null,"o_long":{"long":-8472920223112006254},"o_float":null,"o_double":{"double":0.9744722285888873},"o_bytes":null,"o_string":{"string":"gyhjqkrmc"},"o_enum":{"Level1_2_Enum2":"ZERO"},"o_date":{"int":-510148149},"o_timemillis":null,"o_timemicros":null,"o_timestampmillis":null,"o_timestampmicros":null},{"r_boolean":true,"r_int":-2098802856,"r_long":9091027789351753868,"r_float":0.28294975,"r_double":0.4823582237923174,"r_bytes":"\u0015ÄÿO-`󇢻Às†(","r_string":"pofxorslve","r_array":[{"r_boolean":true,"r_int":-1701646437,"r_long":3486377208181130388,"r_float":0.32607782,"r_double":0.5784648000736351,"r_bytes":"Kø|&","r_string":"abvpvdkbdlhfq","r_enum":"ZERO","r_date":-1869432029,"r_timemillis":976756689,"r_timemicros":7783643506840163065,"r_timestampmillis":-4766192148611460069,"r_timestampmicros":1264204868087321217,"o_boolean":{"boolean":true},"o_int":{"int":-806816095},"o_long":{"long":-426178274089368660},"o_float":{"float":0.69991475},"o_double":null,"o_bytes":null,"o_string":null,"o_enum":{"Level2_2_Enum2":"ZERO"},"o_date":null,"o_timemillis":{"int":-1809884955},"o_timemicros":{"long":4736579773001623225},"o_timestampmillis":{"long":-7121238963945154866},"o_timestampmicros":null},{"r_boolean":true,"r_int":-69773928,"r_long":-8469785109716656347,"r_float":0.7953184,"r_double":0.5955034514941455,"r_bytes":"o\u000B!ú","r_string":"","r_enum":"ZERO","r_date":558047322,"r_timemillis":-1683130036,"r_timemicros":-7907302516224123273,"r_timestampmillis":3446799273362789168,"r_timestampmicros":-3359360603316432309,"o_boolean":null,"o_int":null,"o_long":{"long":-3912370648661070363},"o_float":null,"o_double":null,"o_bytes":{"bytes":""},"o_string":null,"o_enum":{"Level2_2_Enum2":"ONE"},"o_date":{"int":780083017},"o_timemillis":null,"o_timemicros":null,"o_timestampmillis":{"long":2423545054671831864},"o_timestampmicros":null}],"o_boolean":null,"o_int":null,"o_long":null,"o_float":null,"o_double":null,"o_bytes":null,"o_string":null,"o_enum":null,"o_date":null,"o_timemillis":null,"o_timemicros":null,"o_timestampmillis":null,"o_timestampmicros":null},{"r_boolean":false,"r_int":-1737857906,"r_long":-1903106450642310290,"r_float":0.78590995,"r_double":0.35783061632102475,"r_bytes":"øy¼\u0006Àòߔÿ\u0019´\u0013hg","r_string":"t","r_array":[{"r_boolean":false,"r_int":-652606277,"r_long":874609614059855476,"r_float":0.5650404,"r_double":0.6720080968097696,"r_bytes":"q`ÝÚÔ\u0011Un‰ÅØjÌE","r_string":"hdhxypahfhjvw","r_enum":"TWO","r_date":-1781504272,"r_timemillis":-1368255580,"r_timemicros":-1932490248191650626,"r_timestampmillis":4493424418126937064,"r_timestampmicros":-4582625140169807712,"o_boolean":null,"o_int":null,"o_long":{"long":-7866644792499176987},"o_float":{"float":0.5834858},"o_double":null,"o_bytes":{"bytes":"ɗ¶®Ð\u000EÚÒ"},"o_string":null,"o_enum":{"Level2_2_Enum2":"ZERO"},"o_date":{"int":-1750397689},"o_timemillis":null,"o_timemicros":null,"o_timestampmillis":{"long":-1005214395559204123},"o_timestampmicros":{"long":-3068958647764914478}},{"r_boolean":false,"r_int":-617937934,"r_long":-2803806415647498255,"r_float":0.939415,"r_double":0.8755003634076497,"r_bytes":"\u0001@\u000F •%","r_string":"qeerjskvf","r_enum":"TWO","r_date":-1870126613,"r_timemillis":-1490888800,"r_timemicros":-3908379868939647891,"r_timestampmillis":6212004827168461248,"r_timestampmicros":-4217901360332152980,"o_boolean":null,"o_int":{"int":-1314634451},"o_long":{"long":44757384054462104},"o_float":null,"o_double":{"double":0.3789195803063037},"o_bytes":null,"o_string":null,"o_enum":null,"o_date":null,"o_timemillis":{"int":-1634872759},"o_timemicros":null,"o_timestampmillis":{"long":-5076514205896157298},"o_timestampmicros":null}],"o_boolean":null,"o_int":{"int":1447049820},"o_long":null,"o_float":null,"o_double":null,"o_bytes":null,"o_string":{"string":"fshta"},"o_enum":null,"o_date":null,"o_timemillis":{"int":-1581732149},"o_timemicros":null,"o_timestampmillis":null,"o_timestampmicros":{"long":-6867176317851161528}},{"r_boolean":false,"r_int":36135722,"r_long":302627784306350740,"r_float":0.3744229,"r_double":0.0300737953854201,"r_bytes":"\n\tw7\u0005\u0005ö\u0007³Q˜×9¯","r_string":"vonxuwqgpisfyw","r_array":[{"r_boolean":true,"r_int":1840728915,"r_long":932799898645415110,"r_float":0.92464125,"r_double":0.2646785121542006,"r_bytes":"\u0013‡\u0010\u0001ÅoƒÃâ<Õ‰","r_string":"wkcqivmthjmfttbmbnrlmxkrhmaakkfevergtohsgvdanabedp","r_enum":"ONE","r_date":-464441897,"r_timemillis":1763230493,"r_timemicros":8617502533649449728,"r_timestampmillis":-7129682426360152692,"r_timestampmicros":3120726357601794095,"o_boolean":{"boolean":false},"o_int":{"int":1749338889},"o_long":null,"o_float":null,"o_double":null,"o_bytes":null,"o_string":{"string":"arkjuo"},"o_enum":{"Level2_2_Enum2":"ZERO"},"o_date":null,"o_timemillis":null,"o_timemicros":{"long":-6338328527398722864},"o_timestampmillis":{"long":-5703393105213256470},"o_timestampmicros":{"long":3779866490396677730}},{"r_boolean":true,"r_int":377816855,"r_long":5377312225458896354,"r_float":0.6406032,"r_double":0.11792478379690918,"r_bytes":"´¡µ","r_string":"ojksfitgsrrh","r_enum":"ZERO","r_date":813455586,"r_timemillis":436480176,"r_timemicros":-6698183254088222922,"r_timestampmillis":-9170965546716649934,"r_timestampmicros":1277997299527496600,"o_boolean":{"boolean":true},"o_int":null,"o_long":{"long":3478030652193392460},"o_float":null,"o_double":{"double":0.3876842757354717},"o_bytes":null,"o_string":null,"o_enum":null,"o_date":null,"o_timemillis":{"int":1074754302},"o_timemicros":null,"o_timestampmillis":{"long":5042027167357365579},"o_timestampmicros":{"long":-6545573611435743371}},{"r_boolean":true,"r_int":164395248,"r_long":1580826328683309181,"r_float":0.98744303,"r_double":0.3441830260011227,"r_bytes":"\nÆ/Ëö¾í\u00017Õ\rè","r_string":"oxymvqilv","r_enum":"ZERO","r_date":1416042015,"r_timemillis":-1983646693,"r_timemicros":4018680551751143565,"r_timestampmillis":3143447488200294517,"r_timestampmicros":1454817176888054014,"o_boolean":null,"o_int":null,"o_long":{"long":-200132670433202471},"o_float":{"float":0.18305045},"o_double":{"double":0.85935505605922},"o_bytes":{"bytes":"Ë)s\u0016ک囸â~&"},"o_string":{"string":"vlirakdoyft"},"o_enum":{"Level2_2_Enum2":"ONE"},"o_date":null,"o_timemillis":{"int":-1575416781},"o_timemicros":{"long":8212966815065191814},"o_timestampmillis":{"long":-8271969892052510388},"o_timestampmicros":null}],"o_boolean":null,"o_int":{"int":451501599},"o_long":null,"o_float":{"float":0.37957865},"o_double":null,"o_bytes":{"bytes":"\u0005A"},"o_string":null,"o_enum":{"Level1_2_Enum2":"ZERO"},"o_date":{"int":-322937923},"o_timemillis":null,"o_timemicros":{"long":462667380392335155},"o_timestampmillis":{"long":-1449267838343174870},"o_timestampmicros":null},{"r_boolean":true,"r_int":960501115,"r_long":4690677312971013166,"r_float":0.32300347,"r_double":0.950758628295032,"r_bytes":">cò6$úê","r_string":"j","r_array":[{"r_boolean":true,"r_int":578555706,"r_long":6070473737676175776,"r_float":0.47380513,"r_double":0.6453006298725935,"r_bytes":"6ÁÄ\u000F","r_string":"haushaoaohhixlopvmwckyvcvamaicfduqpuwsglecbedgrhnxjjgwfdaqfeclnsehgacijajlamesgrwmuteoptujtfcwunkpgeqhlrshtbdqqnvlkfrqtplkkyfxdmhervfdcaaeacsjoucgngkqaplmrbubrdbslsyfe","r_enum":"ZERO","r_date":-1477074344,"r_timemillis":2087377397,"r_timemicros":1035735961478187548,"r_timestampmillis":-6573834011169825880,"r_timestampmicros":-5349869033846444248,"o_boolean":null,"o_int":null,"o_long":null,"o_float":{"float":0.15183997},"o_double":{"double":0.38727142461450415},"o_bytes":null,"o_string":null,"o_enum":null,"o_date":null,"o_timemillis":{"int":669896064},"o_timemicros":null,"o_timestampmillis":null,"o_timestampmicros":{"long":-140271723520784958}},{"r_boolean":true,"r_int":-182137626,"r_long":-1713042349849075571,"r_float":0.032096922,"r_double":0.08599037694831546,"r_bytes":"O\u0003]Aß\u0000&—\u0015ºx","r_string":"s","r_enum":"ZERO","r_date":495055463,"r_timemillis":-794200808,"r_timemicros":-3615447626444790749,"r_timestampmillis":-2546457289283503664,"r_timestampmicros":-5246459026930871803,"o_boolean":{"boolean":false},"o_int":{"int":860016753},"o_long":{"long":-4847664476562291568},"o_float":{"float":0.99204457},"o_double":{"double":0.4091849101844639},"o_bytes":null,"o_string":{"string":"nc"},"o_enum":null,"o_date":{"int":-1987918381},"o_timemillis":{"int":-1549689407},"o_timemicros":null,"o_timestampmillis":{"long":7046849577641283275},"o_timestampmicros":{"long":2386285928483220852}}],"o_boolean":null,"o_int":null,"o_long":{"long":9079888771536326688},"o_float":{"float":0.26993132},"o_double":{"double":0.5661486504293349},"o_bytes":{"bytes":"\u0019\u0018Q\u001F"},"o_string":null,"o_enum":{"Level1_2_Enum2":"ZERO"},"o_date":null,"o_timemillis":{"int":-1503147897},"o_timemicros":{"long":-5997092223798195107},"o_timestampmillis":null,"o_timestampmicros":null}],"r_date":1279373445,"r_timemillis":-1926134387,"r_timemicros":5266925791740605282,"r_timestampmillis":-369859468676079785,"r_timestampmicros":5490201367570967037,"o_boolean":{"boolean":true},"o_int":{"int":-1839401260},"o_long":{"long":-9051655204000240737},"o_float":null,"o_double":null,"o_bytes":{"bytes":"Îó5ß.hœ–·"},"o_string":null,"o_enum":{"Enum2":"ZERO"},"o_date":null,"o_timemillis":{"int":-1119560382},"o_timemicros":null,"o_timestampmillis":{"long":7016020897585711785},"o_timestampmicros":null} -{"r_boolean":false,"r_int":674476290,"r_long":-6965089490959430929,"r_float":0.8586871,"r_double":0.7083411216741925,"r_bytes":"0¶¹èT8ÀQHÃ","r_string":"clwgtw","r_record":{"r_boolean":false,"r_int":-1026195737,"r_long":-4104144375883784694,"r_float":0.10271281,"r_double":0.5800432711973275,"r_bytes":"8\u000FTñ“0ÕuDP","r_string":"iqeebuxgmev","r_record":{"r_boolean":true,"r_int":917790114,"r_long":-8424088979314482782,"r_float":0.5858198,"r_double":0.7940734854550209,"r_bytes":"uˆ\u0018Xw","r_string":"iegcjtevmn","r_enum":"TWO","r_date":-830084210,"r_timemillis":-1159495197,"r_timemicros":3935032753592110132,"r_timestampmillis":-4314321513311032155,"r_timestampmicros":7476112608677654510,"o_boolean":{"boolean":true},"o_int":null,"o_long":null,"o_float":null,"o_double":null,"o_bytes":{"bytes":""},"o_string":{"string":"cnkwfldcje"},"o_enum":null,"o_date":{"int":427821064},"o_timemillis":{"int":1455504939},"o_timemicros":null,"o_timestampmillis":null,"o_timestampmicros":null},"r_enum":"TWO","r_date":-565781137,"r_timemillis":-114367868,"r_timemicros":-5751169885292281533,"r_timestampmillis":2654198038194014054,"r_timestampmicros":-7815761709474885056,"r_array":[{"r_boolean":true,"r_int":-1917056404,"r_long":5660431994514934881,"r_float":0.8259417,"r_double":0.7161869278464134,"r_bytes":"\u0002\u000Bb","r_string":"lbbkqhapfwmlvyt","r_enum":"ZERO","o_boolean":null,"o_int":null,"o_long":null,"o_float":{"float":0.22893345},"o_double":null,"o_bytes":null,"o_string":null,"o_enum":{"Level2_1__2_Enum2":"ONE"},"o_date":{"int":-434025722},"o_timemillis":null,"o_timemicros":{"long":-6984094278855175687},"o_timestampmillis":null,"o_timestampmicros":{"long":2291211364564961270}},{"r_boolean":false,"r_int":-325749384,"r_long":2919961056503555685,"r_float":0.6567564,"r_double":0.1703861037534815,"r_bytes":">uÂÛ92Ò\u001C\u0011ò\u0016\bB","r_string":"yvufajaqxclm","r_enum":"ONE","o_boolean":null,"o_int":null,"o_long":null,"o_float":{"float":0.14346653},"o_double":{"double":0.2906046657144332},"o_bytes":{"bytes":"€Z»Qcl\"F1uw"},"o_string":null,"o_enum":{"Level2_1__2_Enum2":"ONE"},"o_date":{"int":-1863606494},"o_timemillis":null,"o_timemicros":null,"o_timestampmillis":null,"o_timestampmicros":null},{"r_boolean":false,"r_int":-1488670547,"r_long":-9134197426689482911,"r_float":0.9248303,"r_double":0.8747075766292829,"r_bytes":"_¥Òb\u001C~ô¼•","r_string":"k","r_enum":"ONE","o_boolean":null,"o_int":null,"o_long":null,"o_float":null,"o_double":null,"o_bytes":{"bytes":"M2¯\n%ž\u001D"},"o_string":null,"o_enum":{"Level2_1__2_Enum2":"ONE"},"o_date":null,"o_timemillis":null,"o_timemicros":null,"o_timestampmillis":{"long":-6361158339883848390},"o_timestampmicros":{"long":-7841536018879516512}},{"r_boolean":true,"r_int":1461061245,"r_long":-5927171361626264716,"r_float":0.38691527,"r_double":0.9948191599718572,"r_bytes":"\u000E\u0019åü!Zªª","r_string":"rvs","r_enum":"TWO","o_boolean":null,"o_int":null,"o_long":{"long":-5789828898217591037},"o_float":null,"o_double":null,"o_bytes":null,"o_string":null,"o_enum":null,"o_date":{"int":430816314},"o_timemillis":{"int":207160244},"o_timemicros":{"long":-1443256085898326436},"o_timestampmillis":null,"o_timestampmicros":null}]},"r_enum":"ONE","r_array":[{"r_boolean":false,"r_int":760176738,"r_long":-5378119615139232073,"r_float":0.9799832,"r_double":0.3341986105220256,"r_bytes":">5) žÛ","r_string":"dcw","r_array":[{"r_boolean":true,"r_int":506939775,"r_long":-471568162748002678,"r_float":0.11631954,"r_double":0.4088131255728138,"r_bytes":"´r¡ÖR\u0004\fž¾\b","r_string":"i","r_enum":"TWO","r_date":705568637,"r_timemillis":-1637396588,"r_timemicros":1818861332661083362,"r_timestampmillis":-8535127648641897659,"r_timestampmicros":-3509855546899953094,"o_boolean":{"boolean":false},"o_int":null,"o_long":null,"o_float":null,"o_double":{"double":0.027660670862311054},"o_bytes":{"bytes":"\u001FÓfÍb¯I\u0017\u001C\u0002;\"¿¾\u001Eö‘‹Ü+\u000F=rßJ‡ä†)ü”ÛHů‡œìçJ­p§cH:i½J©TU\n\u0012/Qw_6S_iW\u000B缺I-OiN‘–/è\u0010Å\u0002té\u0016@ä×òŸeôÔqE"},"o_string":null,"o_enum":null,"o_date":{"int":1261699383},"o_timemillis":{"int":1985683107},"o_timemicros":null,"o_timestampmillis":{"long":-950803171794428499},"o_timestampmicros":null},{"r_boolean":false,"r_int":-680594799,"r_long":-411975030342738413,"r_float":0.083411396,"r_double":0.7119862769660161,"r_bytes":"]=æ1","r_string":"jetlfdvdioaj","r_enum":"ZERO","r_date":299587358,"r_timemillis":-1144491507,"r_timemicros":-2244333540228905766,"r_timestampmillis":-1118709163317866067,"r_timestampmicros":204155970696569350,"o_boolean":null,"o_int":null,"o_long":null,"o_float":null,"o_double":null,"o_bytes":{"bytes":""},"o_string":null,"o_enum":{"Level2_2_Enum2":"TWO"},"o_date":{"int":-605268784},"o_timemillis":{"int":-550559634},"o_timemicros":{"long":5893894625361286959},"o_timestampmillis":{"long":8063257976620170056},"o_timestampmicros":null}],"o_boolean":{"boolean":false},"o_int":{"int":593369508},"o_long":null,"o_float":{"float":0.9652534},"o_double":{"double":0.842304191092996},"o_bytes":null,"o_string":{"string":"mqkw"},"o_enum":{"Level1_2_Enum2":"ONE"},"o_date":null,"o_timemillis":null,"o_timemicros":{"long":1041807243844274729},"o_timestampmillis":{"long":-7908449277748747403},"o_timestampmicros":{"long":2369046878129714251}},{"r_boolean":false,"r_int":-356453942,"r_long":-7339011938023868977,"r_float":0.47380352,"r_double":0.6277152011163082,"r_bytes":"\u0012ן¿Ô\u00033Ÿ¦™,è9\u000F","r_string":"ymeccrbvbf","r_array":[{"r_boolean":false,"r_int":777418924,"r_long":-5286049495879477701,"r_float":0.5749331,"r_double":0.6759024483875855,"r_bytes":"8¸\u0003L¡é ¨","r_string":"ltrxukqb","r_enum":"ZERO","r_date":153925584,"r_timemillis":-65376869,"r_timemicros":2945118658505781047,"r_timestampmillis":1646304237068081753,"r_timestampmicros":-6075072571327001915,"o_boolean":{"boolean":false},"o_int":{"int":1795110651},"o_long":{"long":-8344621551068376315},"o_float":null,"o_double":{"double":0.3675213269139652},"o_bytes":null,"o_string":null,"o_enum":{"Level2_2_Enum2":"ONE"},"o_date":{"int":2005297652},"o_timemillis":{"int":1798701610},"o_timemicros":{"long":7418967352751121871},"o_timestampmillis":{"long":848275072635890223},"o_timestampmicros":null},{"r_boolean":false,"r_int":1122699757,"r_long":-353225716633209400,"r_float":0.21714556,"r_double":0.21073993820377068,"r_bytes":"\u0000a»n+iŒ¸Ï","r_string":"fhloveosechiiwsiplvwycsgvbxalskkotxvbkdiryeixapfprakhlqakerehdpyrpyujlganvkgq","r_enum":"ONE","r_date":-1193089736,"r_timemillis":-676234284,"r_timemicros":-7203876193969969347,"r_timestampmillis":7352839384171684087,"r_timestampmicros":-830151919504424044,"o_boolean":{"boolean":false},"o_int":null,"o_long":null,"o_float":null,"o_double":{"double":0.2980457779150123},"o_bytes":{"bytes":"±\r\\;'vE¹"},"o_string":{"string":"qixvasdfcgbeps"},"o_enum":{"Level2_2_Enum2":"TWO"},"o_date":null,"o_timemillis":null,"o_timemicros":{"long":-6906724259675426626},"o_timestampmillis":{"long":-7439817860785982837},"o_timestampmicros":null},{"r_boolean":true,"r_int":-424515815,"r_long":-1995758552317900155,"r_float":0.97818244,"r_double":0.7532302592333586,"r_bytes":"|lͼº","r_string":"mlpribyytxkkiqn","r_enum":"ZERO","r_date":-1136598505,"r_timemillis":27354173,"r_timemicros":-8119870106783443134,"r_timestampmillis":6554216270313528430,"r_timestampmicros":-2543762826604782816,"o_boolean":null,"o_int":{"int":908315485},"o_long":{"long":702679348241263740},"o_float":null,"o_double":null,"o_bytes":null,"o_string":{"string":"hmwhvkslxavhrq"},"o_enum":{"Level2_2_Enum2":"ONE"},"o_date":{"int":-1599609513},"o_timemillis":null,"o_timemicros":null,"o_timestampmillis":null,"o_timestampmicros":{"long":4923218619197607015}}],"o_boolean":null,"o_int":null,"o_long":{"long":3195921914620274714},"o_float":{"float":0.6406479},"o_double":null,"o_bytes":null,"o_string":{"string":"jicqevg"},"o_enum":{"Level1_2_Enum2":"TWO"},"o_date":{"int":-1928720287},"o_timemillis":null,"o_timemicros":{"long":8818997833682993150},"o_timestampmillis":null,"o_timestampmicros":{"long":-5612665149964428726}},{"r_boolean":true,"r_int":1361023467,"r_long":-5292336387844104398,"r_float":0.5351345,"r_double":0.9755764596591354,"r_bytes":"Q‹©&\u001D…îOÁF聂 ","r_string":"xjqe","r_array":[{"r_boolean":false,"r_int":1137160682,"r_long":-4703404410101138303,"r_float":0.06371224,"r_double":0.9712299417083016,"r_bytes":"2","r_string":"xgmawmc","r_enum":"ONE","r_date":-682224373,"r_timemillis":-1588517665,"r_timemicros":5489459872740946729,"r_timestampmillis":-4249815073360761422,"r_timestampmicros":-5989905858816855037,"o_boolean":{"boolean":true},"o_int":{"int":-618911234},"o_long":{"long":-3193374441872885512},"o_float":null,"o_double":null,"o_bytes":{"bytes":"}NÔõ\u001Eã¡­"},"o_string":null,"o_enum":null,"o_date":{"int":-526636779},"o_timemillis":{"int":-934526639},"o_timemicros":null,"o_timestampmillis":null,"o_timestampmicros":{"long":-4298767292526723410}},{"r_boolean":false,"r_int":-669656931,"r_long":-3719940605557885933,"r_float":0.6635023,"r_double":0.809966010739127,"r_bytes":"J\u001Eå\u0005hÄâÐ2ˆÈ³–\u001C","r_string":"pbumsjsy","r_enum":"TWO","r_date":-1683353056,"r_timemillis":-30223041,"r_timemicros":-4200515770909345111,"r_timestampmillis":3578626528473569989,"r_timestampmicros":4836727562562715757,"o_boolean":{"boolean":false},"o_int":null,"o_long":null,"o_float":{"float":0.83821106},"o_double":null,"o_bytes":{"bytes":"7:óÁ\u0013-ÐýœN\u0012\u0005\u001DC"},"o_string":null,"o_enum":{"Level2_2_Enum2":"ONE"},"o_date":{"int":-1259195004},"o_timemillis":{"int":-1081774048},"o_timemicros":null,"o_timestampmillis":null,"o_timestampmicros":{"long":2182946837467467577}}],"o_boolean":null,"o_int":{"int":2099404750},"o_long":{"long":-7484733194553162429},"o_float":null,"o_double":null,"o_bytes":null,"o_string":null,"o_enum":null,"o_date":null,"o_timemillis":null,"o_timemicros":{"long":4281517456548541022},"o_timestampmillis":null,"o_timestampmicros":null},{"r_boolean":false,"r_int":-1813822275,"r_long":3651559033906230687,"r_float":0.94931704,"r_double":0.07307889670720769,"r_bytes":"Þù\u0016µ7\u0010","r_string":"","r_array":[],"o_boolean":null,"o_int":null,"o_long":{"long":6896399305967745633},"o_float":{"float":0.004839182},"o_double":{"double":0.33220632558410923},"o_bytes":null,"o_string":{"string":"hlnfoagrq"},"o_enum":null,"o_date":null,"o_timemillis":null,"o_timemicros":null,"o_timestampmillis":{"long":8948262908997420344},"o_timestampmicros":null}],"r_date":-988819664,"r_timemillis":-1855179577,"r_timemicros":3837212034481087130,"r_timestampmillis":-3061307857337824235,"r_timestampmicros":-3745394232981468157,"o_boolean":null,"o_int":null,"o_long":{"long":6455937004650824947},"o_float":null,"o_double":null,"o_bytes":{"bytes":"èQÔ"},"o_string":null,"o_enum":{"Enum2":"TWO"},"o_date":{"int":-815309768},"o_timemillis":null,"o_timemicros":null,"o_timestampmillis":null,"o_timestampmicros":{"long":6721027372267605316}} -{"r_boolean":false,"r_int":-780835178,"r_long":-4531725585707988235,"r_float":0.8418312,"r_double":0.5101158153641862,"r_bytes":"\u000Fv8\u0017rùA;€’¥","r_string":"tav","r_record":{"r_boolean":false,"r_int":1445418869,"r_long":-7283241027736002033,"r_float":0.6350846,"r_double":0.8952138791420349,"r_bytes":"Å×%Vù}#†Æcæ","r_string":"qrsf","r_record":{"r_boolean":false,"r_int":-1447090176,"r_long":-1123429985922972319,"r_float":0.5039842,"r_double":0.9898755161192352,"r_bytes":"[*Ä\r–n","r_string":"","r_enum":"TWO","r_date":-1166503612,"r_timemillis":-693904978,"r_timemicros":-1231105403723114047,"r_timestampmillis":-522225983005886999,"r_timestampmicros":1256178044364190899,"o_boolean":{"boolean":false},"o_int":null,"o_long":null,"o_float":{"float":0.8515652},"o_double":{"double":0.4251353683903335},"o_bytes":{"bytes":"\u001C\u001A"},"o_string":{"string":"xiewqmkwvfvprug"},"o_enum":{"Level2_1__1_Enum2":"ONE"},"o_date":{"int":-474026512},"o_timemillis":{"int":1648063673},"o_timemicros":null,"o_timestampmillis":null,"o_timestampmicros":{"long":6404688051678271551}},"r_enum":"TWO","r_date":15952257,"r_timemillis":1333793897,"r_timemicros":8386799909648013667,"r_timestampmillis":6165275169104824027,"r_timestampmicros":-2073562316480999888,"r_array":[{"r_boolean":true,"r_int":-1335709713,"r_long":-4622629712320919698,"r_float":0.9270702,"r_double":0.26956636868955264,"r_bytes":"øVKp¦","r_string":"oinbeaneojplvlfijeyatwilswehclgboisvmchukhbwgjrwddbsdssedxtntdoumxusqsshaxrwljccvwasdkfidpaumhinufkpcikhexgbptoulaxqluykanhjekavbdvsciigwmqixrmbpydqmnqxowjbejrkjclorxhwbqutuajfmefxlpaohdywrwnvyyyjftteipjewodexmmhqblbprywjarvquyoukjgoxprbfppdxoaj","r_enum":"ZERO","o_boolean":{"boolean":true},"o_int":{"int":259715560},"o_long":{"long":-5434759596620387594},"o_float":null,"o_double":{"double":0.24483753194404922},"o_bytes":null,"o_string":null,"o_enum":{"Level2_1__2_Enum2":"ZERO"},"o_date":{"int":1785998328},"o_timemillis":null,"o_timemicros":null,"o_timestampmillis":{"long":-9135981958384465699},"o_timestampmicros":{"long":-5447456633844781106}},{"r_boolean":true,"r_int":627551864,"r_long":-122419404805235458,"r_float":0.43112493,"r_double":0.8671601276449914,"r_bytes":"\u0005ë\u0014\fØ嵬+","r_string":"akxnbwmtcikp","r_enum":"ZERO","o_boolean":null,"o_int":null,"o_long":null,"o_float":{"float":0.08271849},"o_double":{"double":0.04751418703425603},"o_bytes":{"bytes":"¡ü"},"o_string":null,"o_enum":null,"o_date":null,"o_timemillis":null,"o_timemicros":null,"o_timestampmillis":null,"o_timestampmicros":{"long":5538830274654217259}}]},"r_enum":"TWO","r_array":[{"r_boolean":true,"r_int":1837722326,"r_long":2801243606547825118,"r_float":0.8134304,"r_double":0.6139167600760846,"r_bytes":"¿M™\u0014ºM›\u000ESօûu","r_string":"tansqhpwjkavk","r_array":[{"r_boolean":true,"r_int":-15122561,"r_long":8141009229656767993,"r_float":0.49245495,"r_double":0.7601815308642377,"r_bytes":"â\u0000","r_string":"ymthj","r_enum":"ONE","r_date":2115502059,"r_timemillis":666015098,"r_timemicros":3466642922341555820,"r_timestampmillis":8677041653919913121,"r_timestampmicros":-8917771658851316579,"o_boolean":{"boolean":true},"o_int":null,"o_long":null,"o_float":null,"o_double":null,"o_bytes":null,"o_string":null,"o_enum":null,"o_date":null,"o_timemillis":{"int":-2130784047},"o_timemicros":null,"o_timestampmillis":{"long":-5651347476210321980},"o_timestampmicros":null},{"r_boolean":true,"r_int":812193159,"r_long":-7109772193427086089,"r_float":0.21983588,"r_double":0.11845571444596537,"r_bytes":"ڌ3ƒ`Þzß\u001BG&ô","r_string":"smjrslbljiu","r_enum":"TWO","r_date":-1031035117,"r_timemillis":-1514107857,"r_timemicros":8228025362757375529,"r_timestampmillis":-5050551014447447150,"r_timestampmicros":-5516964237788121917,"o_boolean":{"boolean":false},"o_int":{"int":-2051490920},"o_long":null,"o_float":null,"o_double":{"double":0.326031016890423},"o_bytes":null,"o_string":{"string":"cjyobabugme"},"o_enum":null,"o_date":{"int":-1061024173},"o_timemillis":{"int":-310060259},"o_timemicros":{"long":8465413998445908975},"o_timestampmillis":{"long":-2177346884744676882},"o_timestampmicros":{"long":-8598829023186605614}}],"o_boolean":null,"o_int":null,"o_long":null,"o_float":{"float":0.080176055},"o_double":{"double":0.741484561566641},"o_bytes":{"bytes":";g"},"o_string":null,"o_enum":{"Level1_2_Enum2":"ONE"},"o_date":{"int":1690456032},"o_timemillis":{"int":325707384},"o_timemicros":{"long":-5757531726726432010},"o_timestampmillis":null,"o_timestampmicros":null},{"r_boolean":false,"r_int":-848740251,"r_long":8063631030755109,"r_float":0.564069,"r_double":0.44812346486366594,"r_bytes":"W_%›","r_string":"","r_array":[{"r_boolean":true,"r_int":380201573,"r_long":-7580931383083692361,"r_float":0.49258173,"r_double":0.22454835185941469,"r_bytes":"\u001BøÇ\u0019èd¯š1A¤","r_string":"wnm","r_enum":"ZERO","r_date":-1560350347,"r_timemillis":-1625924852,"r_timemicros":-5705487060317609067,"r_timestampmillis":8778552885848606948,"r_timestampmicros":-4208126351209003272,"o_boolean":{"boolean":true},"o_int":null,"o_long":{"long":6186724460792967326},"o_float":null,"o_double":null,"o_bytes":{"bytes":"\u000F\f«åàL`£Ý\u001E™"},"o_string":{"string":"ykcy"},"o_enum":{"Level2_2_Enum2":"ZERO"},"o_date":null,"o_timemillis":null,"o_timemicros":{"long":-8062508438763860294},"o_timestampmillis":null,"o_timestampmicros":null}],"o_boolean":{"boolean":true},"o_int":{"int":935714404},"o_long":null,"o_float":{"float":0.41966075},"o_double":null,"o_bytes":{"bytes":""},"o_string":null,"o_enum":null,"o_date":{"int":1322018578},"o_timemillis":null,"o_timemicros":null,"o_timestampmillis":{"long":-6820394632456515048},"o_timestampmicros":null}],"r_date":1741886641,"r_timemillis":123817136,"r_timemicros":-3790470917799458540,"r_timestampmillis":-8916969077124055548,"r_timestampmicros":4895938081435237740,"o_boolean":{"boolean":false},"o_int":{"int":641192047},"o_long":{"long":-7977067022118346429},"o_float":null,"o_double":{"double":0.3605080693467272},"o_bytes":{"bytes":"–e"},"o_string":null,"o_enum":null,"o_date":null,"o_timemillis":{"int":-1042539240},"o_timemicros":null,"o_timestampmillis":{"long":8849387283215214636},"o_timestampmicros":null} -{"r_boolean":true,"r_int":781622090,"r_long":-623288681462583706,"r_float":0.2410515,"r_double":0.6587609147996837,"r_bytes":"±µ&âN\u0003“`","r_string":"jtcwmqulmha","r_record":{"r_boolean":false,"r_int":658440229,"r_long":3709929465686867344,"r_float":0.3782487,"r_double":0.5851984966657633,"r_bytes":"\u0010‡—’gé{z","r_string":"nbsxkcqo","r_record":{"r_boolean":true,"r_int":1020088202,"r_long":6342974013364644467,"r_float":0.47179472,"r_double":0.3886683031049186,"r_bytes":"4ãÒí÷¸\u0017\u0018\fÛ!\u0012","r_string":"emvpholvjta","r_enum":"ONE","r_date":-668296370,"r_timemillis":-1643250741,"r_timemicros":5107424064573617413,"r_timestampmillis":8793276177237568969,"r_timestampmicros":-4251385672983233934,"o_boolean":null,"o_int":{"int":-1447903362},"o_long":null,"o_float":{"float":0.9458245},"o_double":{"double":0.8560832672137648},"o_bytes":null,"o_string":{"string":"doyuvyy"},"o_enum":null,"o_date":null,"o_timemillis":null,"o_timemicros":{"long":-8110454545442795190},"o_timestampmillis":{"long":-4533830045036898273},"o_timestampmicros":{"long":-5969323215518473618}},"r_enum":"ONE","r_date":1315318384,"r_timemillis":2050061416,"r_timemicros":5011492980368633813,"r_timestampmillis":847306004149519637,"r_timestampmicros":2617558713969067810,"r_array":[{"r_boolean":true,"r_int":-424909474,"r_long":1373117440318878475,"r_float":0.9937825,"r_double":0.05809611660526404,"r_bytes":"","r_string":"fhyauv","r_enum":"ONE","o_boolean":null,"o_int":null,"o_long":{"long":3713829552071282430},"o_float":{"float":0.35990715},"o_double":{"double":0.859536689293485},"o_bytes":null,"o_string":{"string":"eijdlidnonqquimxturvjkhnbewjrtwiqkqreiejehxhgcqlhktsuxgntwrwtucegxmcaqiykwxldfjqbnijqvsxftwpxvlbmclbuahaasufhokrorvxxifrtvhiscgiqqcfneyjdstcapqbugrmucrvhrdxnwnhtcivakpxivfexvmtqdnwjdkuqxgpgbiuksaurfhnrhn"},"o_enum":null,"o_date":{"int":-869728561},"o_timemillis":{"int":-1298432262},"o_timemicros":null,"o_timestampmillis":null,"o_timestampmicros":{"long":-5611643581430402565}}]},"r_enum":"TWO","r_array":[{"r_boolean":true,"r_int":-1130357122,"r_long":-6392309333499949980,"r_float":0.9227148,"r_double":0.5419803808860285,"r_bytes":"ïOè\t…iNpè¥","r_string":"dbs","r_array":[{"r_boolean":true,"r_int":154695467,"r_long":-1852912963617092548,"r_float":0.7808478,"r_double":0.0420140166605909,"r_bytes":"\u001C!R*e…Å","r_string":"tweiwhbxhh","r_enum":"ONE","r_date":-603088402,"r_timemillis":1262170118,"r_timemicros":3566848861173070627,"r_timestampmillis":-6783227656571524925,"r_timestampmicros":-674217139025306795,"o_boolean":null,"o_int":null,"o_long":{"long":-7439137589474209042},"o_float":{"float":0.9771627},"o_double":null,"o_bytes":{"bytes":"í%"},"o_string":null,"o_enum":null,"o_date":{"int":-1893336829},"o_timemillis":{"int":1248352556},"o_timemicros":null,"o_timestampmillis":null,"o_timestampmicros":null},{"r_boolean":true,"r_int":-1211404046,"r_long":-4488731517629360193,"r_float":0.710983,"r_double":0.5365573298655257,"r_bytes":"","r_string":"wir","r_enum":"ZERO","r_date":-1368673739,"r_timemillis":638651401,"r_timemicros":-126687351556836339,"r_timestampmillis":7417011168210648206,"r_timestampmicros":-6203066862173062154,"o_boolean":{"boolean":true},"o_int":{"int":12316213},"o_long":null,"o_float":null,"o_double":{"double":0.7591862107647988},"o_bytes":null,"o_string":null,"o_enum":null,"o_date":{"int":673545533},"o_timemillis":null,"o_timemicros":null,"o_timestampmillis":null,"o_timestampmicros":{"long":8298907766479473040}}],"o_boolean":null,"o_int":null,"o_long":null,"o_float":{"float":0.27174854},"o_double":{"double":0.9505552947015802},"o_bytes":{"bytes":"Ó¡¶Öò¾÷¾ðÉ"},"o_string":null,"o_enum":null,"o_date":null,"o_timemillis":null,"o_timemicros":null,"o_timestampmillis":null,"o_timestampmicros":null},{"r_boolean":false,"r_int":-1483707878,"r_long":893605587153201542,"r_float":0.10396737,"r_double":0.9329557279883675,"r_bytes":"@½_høJá.™®ÿ=\u0013å\u0001˜\u0000È0%ȅrç·\u000B·í|ã±Nù7‡aÞS݇Š&øê&(§+Ë=Fñ®@§ÒÉ\rž½÷f#¶³¸\u0010òr¦Œ\u0011–@՚xã–<ÕÅ7\u0016DÙ5“¶\u0014!”¢€:ÊÙs\u0014CʁÌñÍvþ]îö® U¾\b6:ð³l¡\f4ð\rå\u0000,w.©e","r_string":"dtjrfqxtlnuqrt","r_array":[],"o_boolean":{"boolean":true},"o_int":null,"o_long":null,"o_float":{"float":0.093554795},"o_double":{"double":0.7721051718159145},"o_bytes":null,"o_string":{"string":"mfkcrrmkimksrkdlhihybrghmofoqavdrarqsoacrlxvmgkuyftdtnaihbqmhaquonlocrjgrwlauupnbiriionaukiyvxmhcgpkcdxxdwlvjbmelhuufotihxqoonrhrcrcbaxicaunvvgujlhdumkcnbvbitqwqrmpehrfxqstatnowypotakkxuyrgjocshwrukvtammhacynwqpwrynhxgupcnskggfypwqkotobcfli"},"o_enum":null,"o_date":null,"o_timemillis":null,"o_timemicros":{"long":3691076666500301819},"o_timestampmillis":{"long":-8581721282721375736},"o_timestampmicros":null},{"r_boolean":true,"r_int":11310899,"r_long":4914366786308408232,"r_float":0.98923594,"r_double":0.6281962669840734,"r_bytes":"É","r_string":"ofv","r_array":[],"o_boolean":{"boolean":true},"o_int":{"int":-389471988},"o_long":null,"o_float":{"float":0.6093097},"o_double":null,"o_bytes":null,"o_string":null,"o_enum":{"Level1_2_Enum2":"ONE"},"o_date":null,"o_timemillis":null,"o_timemicros":{"long":5663202206465401281},"o_timestampmillis":null,"o_timestampmicros":{"long":2167162671575490981}},{"r_boolean":true,"r_int":438820194,"r_long":5694286501127563288,"r_float":0.2555011,"r_double":0.36143469332086875,"r_bytes":"¤\u0000S…Ý-","r_string":"s","r_array":[],"o_boolean":{"boolean":false},"o_int":null,"o_long":{"long":-4427296662723137581},"o_float":{"float":0.6851631},"o_double":{"double":0.4580807418918841},"o_bytes":null,"o_string":{"string":"wqykmhipfblkujpkcirmclameutgcrnbldhfpeoiosmy"},"o_enum":null,"o_date":{"int":493805281},"o_timemillis":null,"o_timemicros":{"long":-4145078902030031933},"o_timestampmillis":{"long":-1196768995366225185},"o_timestampmicros":{"long":4830067521273289238}}],"r_date":2005463896,"r_timemillis":-493309974,"r_timemicros":-2280295665271781493,"r_timestampmillis":1330599055550789028,"r_timestampmicros":-8088194635275417903,"o_boolean":{"boolean":true},"o_int":{"int":1023310703},"o_long":null,"o_float":null,"o_double":null,"o_bytes":null,"o_string":{"string":"pcyhvnmbg"},"o_enum":null,"o_date":null,"o_timemillis":null,"o_timemicros":null,"o_timestampmillis":{"long":-1333830087987159472},"o_timestampmicros":{"long":-1386535177967317214}} -{"r_boolean":true,"r_int":1375702728,"r_long":-2991153767551086544,"r_float":0.1695962,"r_double":0.9968871356135653,"r_bytes":"ó\nÛ`ýY«","r_string":"wwacx","r_record":{"r_boolean":true,"r_int":142786060,"r_long":3177208030465042577,"r_float":0.767314,"r_double":0.9551347282709419,"r_bytes":"Ö","r_string":"yxilbxojgjivubblgiaulsknrmqqscfucgnfjyoklgijrxwnsdhqatrnjcmtejmqsnyqoyjawqeapxhatqbwsuitlcfbwlbmskrblapbhfkgrllwfabtvbtmbeo","r_record":{"r_boolean":true,"r_int":1856051898,"r_long":-6834399743294296778,"r_float":0.94215536,"r_double":0.10716115023688066,"r_bytes":"Ð\u001C“Ô¬ô(†©dµýЫí"},"o_string":null,"o_enum":null,"o_date":null,"o_timemillis":null,"o_timemicros":null,"o_timestampmillis":{"long":-4263314886763278686},"o_timestampmicros":{"long":-338883056162850012}},"r_enum":"TWO","r_date":1784347595,"r_timemillis":-1871345504,"r_timemicros":-3182021452653588381,"r_timestampmillis":6446246162390042113,"r_timestampmicros":-2698357774733694393,"r_array":[]},"r_enum":"ZERO","r_array":[{"r_boolean":true,"r_int":-1299223778,"r_long":-7994732715525332598,"r_float":0.7189768,"r_double":0.10558246855798847,"r_bytes":"ò\u001Dæ‚o\"ô¨RõblÖ-q±ø­\u001Cà\u0019ŠCïŽàŽ\u0007Ãmµ•í\u001Bòu\"_xuðx«UK­z©Í\"RKàPüèØ#YS»’\u000B@\u000BÕ2(>”"},"o_string":{"string":"frnlwohf"},"o_enum":{"Level2_2_Enum2":"ONE"},"o_date":{"int":642099184},"o_timemillis":{"int":1302688266},"o_timemicros":null,"o_timestampmillis":{"long":4296522662258039030},"o_timestampmicros":{"long":-2414286570250451880}}],"o_boolean":{"boolean":true},"o_int":null,"o_long":null,"o_float":{"float":0.8087696},"o_double":{"double":0.4650593163216554},"o_bytes":null,"o_string":{"string":"rxfbrhmpu"},"o_enum":null,"o_date":null,"o_timemillis":{"int":727403428},"o_timemicros":null,"o_timestampmillis":{"long":7763513589904015121},"o_timestampmicros":{"long":5628342555088252038}},{"r_boolean":false,"r_int":653220063,"r_long":4924408981318137087,"r_float":0.6768274,"r_double":0.1644331872562762,"r_bytes":"œzF´êÕH±Ò\"\u001AtfÁµãhÁÐföՆ\u000B~[í$U&\u001D›Êé\u0017@^]ã~õÙ@Œ&Ü\u0015$ÈAé\u000F'ØôêP*K¡n6Ã\u0019½½\u0003‡7­•B·†\u0014-Üâ7¢G\u0006\u0002ë˜\u0002SË©€\"T\u0007©R\u0007,)îwB\u0006\u0006‘\u0001\u001Cª\u0000n¤~XòÂ)qÙF\u0003Y ’.cAªd‚IW4–Z>kȝRÈ\u0017,\u0003À«Ò\u0001ô²E1pF¤HXª``J>PPdYÅ<¥\\ a+\u0014\u000B\u000Fóý\u000EpÏLE¨ªä†LÒqðjÕÿ&‡õ\u0004ȀËs\u001B…1ض¢u¹aÆ1c`jnŽ\r\u001CXWrY^O‘Ž\u001E›\u000B","r_string":"ctktxjjprvbckhhdprypjkjlvvjiwxsjrnwwoecgagicqusoaayovtotvkcovoluguobdtqdffhfsnmnpxhkogfgxkqiblsusismefnnxwecdjnhndrkaokonaxnlhcgy","r_array":[{"r_boolean":false,"r_int":-1550412968,"r_long":-6649676002073962429,"r_float":0.75533724,"r_double":0.31834019065171604,"r_bytes":"¨>","r_string":"ihndpsx","r_enum":"ZERO","r_date":2091811535,"r_timemillis":-753924542,"r_timemicros":4811407447481161748,"r_timestampmillis":3740132216384328203,"r_timestampmicros":8297550297589463002,"o_boolean":{"boolean":false},"o_int":{"int":-537816367},"o_long":{"long":8087958433514070172},"o_float":{"float":0.8828725},"o_double":null,"o_bytes":{"bytes":"ðǝrI¸ôG"},"o_string":null,"o_enum":null,"o_date":{"int":-647156394},"o_timemillis":null,"o_timemicros":null,"o_timestampmillis":null,"o_timestampmicros":null}],"o_boolean":null,"o_int":null,"o_long":{"long":-2629809401848701200},"o_float":null,"o_double":null,"o_bytes":null,"o_string":null,"o_enum":{"Level1_2_Enum2":"ZERO"},"o_date":{"int":-564815882},"o_timemillis":{"int":2044525261},"o_timemicros":{"long":-547632908518437737},"o_timestampmillis":{"long":1260559502459277808},"o_timestampmicros":{"long":-5400984258647132358}},{"r_boolean":false,"r_int":-121307736,"r_long":-7564287226902958533,"r_float":0.0020909905,"r_double":0.6678690468645085,"r_bytes":"\u0004`Š—t","r_string":"nhmkvbsyn","r_array":[{"r_boolean":false,"r_int":-767026048,"r_long":-7417314986703506213,"r_float":0.697714,"r_double":0.6254184692343671,"r_bytes":"“kÃ2ø","r_string":"qoouhtkbr","r_enum":"TWO","r_date":1757944931,"r_timemillis":854950924,"r_timemicros":4486853881236830569,"r_timestampmillis":-776697266365312905,"r_timestampmicros":43144682697191058,"o_boolean":{"boolean":true},"o_int":null,"o_long":{"long":-2170117947273741929},"o_float":{"float":0.19499058},"o_double":{"double":0.8582931381460396},"o_bytes":{"bytes":"M\u001DLä\u0010׌Œ\u0018lX“‹í£‘¬&§ÎSûûš<Ÿ|¿»ò\u0013Xè(\u001Fò¸™§Â)ïÆËâ[Û¤\u0010ó0\t,-\u001BÒSÝwÇ0|\u0019Õ¿\u0011r圸ýrUW\u0003Q"},"o_string":{"string":"bsman"},"o_enum":null,"o_date":null,"o_timemillis":{"int":-755847255},"o_timemicros":null,"o_timestampmillis":null,"o_timestampmicros":{"long":471447824321873866}}],"o_boolean":{"boolean":false},"o_int":{"int":-476200048},"o_long":null,"o_float":null,"o_double":{"double":0.6818065806677309},"o_bytes":null,"o_string":{"string":"jcitbcad"},"o_enum":{"Level1_2_Enum2":"ONE"},"o_date":null,"o_timemillis":null,"o_timemicros":null,"o_timestampmillis":{"long":-8031116832839888546},"o_timestampmicros":{"long":2913740354660255112}},{"r_boolean":false,"r_int":2116620417,"r_long":7511007827440612519,"r_float":0.35145712,"r_double":0.6223219756478141,"r_bytes":"","r_string":"tkhysx","r_array":[{"r_boolean":true,"r_int":-555488715,"r_long":5245911662088555004,"r_float":0.17121929,"r_double":0.5551954432689858,"r_bytes":"š\\S\u0014óvÙIN\u0002\u0019\\þ5","r_string":"wh","r_enum":"ZERO","r_date":-714432930,"r_timemillis":-1722308761,"r_timemicros":4067260815562711211,"r_timestampmillis":-4783618719376646147,"r_timestampmicros":2677809602048962347,"o_boolean":{"boolean":true},"o_int":null,"o_long":null,"o_float":{"float":0.6821171},"o_double":null,"o_bytes":null,"o_string":{"string":"fdoglstcp"},"o_enum":null,"o_date":{"int":-777478380},"o_timemillis":null,"o_timemicros":null,"o_timestampmillis":null,"o_timestampmicros":null},{"r_boolean":true,"r_int":307879352,"r_long":-3941031018220889810,"r_float":0.9316196,"r_double":0.1939407170872227,"r_bytes":"\u001F§","r_string":"hmyd","r_enum":"ZERO","r_date":-1075864416,"r_timemillis":-632366068,"r_timemicros":-1610742170819360819,"r_timestampmillis":-4629021939630498177,"r_timestampmicros":-8453421716353361424,"o_boolean":null,"o_int":{"int":583986667},"o_long":null,"o_float":{"float":0.6678657},"o_double":null,"o_bytes":null,"o_string":null,"o_enum":null,"o_date":{"int":1512594844},"o_timemillis":null,"o_timemicros":{"long":-3927877300985634896},"o_timestampmillis":null,"o_timestampmicros":{"long":1039859434665411476}}],"o_boolean":{"boolean":true},"o_int":null,"o_long":{"long":3070405465476013535},"o_float":null,"o_double":null,"o_bytes":null,"o_string":null,"o_enum":null,"o_date":null,"o_timemillis":null,"o_timemicros":null,"o_timestampmillis":null,"o_timestampmicros":{"long":4841294051965173929}}],"r_date":1439883880,"r_timemillis":1040751687,"r_timemicros":6153142155158011748,"r_timestampmillis":-645433058819480680,"r_timestampmicros":4698100716454867779,"o_boolean":null,"o_int":{"int":-690031838},"o_long":null,"o_float":{"float":0.5616239},"o_double":{"double":0.1084061686462654},"o_bytes":null,"o_string":null,"o_enum":null,"o_date":null,"o_timemillis":{"int":-2007060028},"o_timemicros":{"long":-5862341387059519015},"o_timestampmillis":{"long":6300992319715759255},"o_timestampmicros":null} -{"r_boolean":true,"r_int":-663170956,"r_long":639285765702428215,"r_float":0.074664116,"r_double":0.8240044127312424,"r_bytes":"\u001EÃ)ŒY6ê…","r_string":"ghmv","r_record":{"r_boolean":true,"r_int":-833666830,"r_long":-2581794138910771557,"r_float":0.031333506,"r_double":0.3217488125046333,"r_bytes":"è>ÐdÆr†g0Cêža","r_string":"aqemxfe","r_record":{"r_boolean":false,"r_int":-1073248145,"r_long":-4377563221518418969,"r_float":0.2781155,"r_double":0.8550453045401044,"r_bytes":"Ù0÷F©Ó","r_string":"vqbcnxpguhfcv","r_enum":"ZERO","r_date":1158904922,"r_timemillis":-1699573467,"r_timemicros":8496402020702507213,"r_timestampmillis":-4595318743852223266,"r_timestampmicros":-5925147570597760515,"o_boolean":{"boolean":false},"o_int":null,"o_long":null,"o_float":{"float":0.976899},"o_double":{"double":0.5770792102057754},"o_bytes":{"bytes":"\u001DärzðŽ"},"o_string":{"string":"biukueshwlb"},"o_enum":{"Level2_1__1_Enum2":"TWO"},"o_date":{"int":-1918187443},"o_timemillis":{"int":-1123297502},"o_timemicros":null,"o_timestampmillis":{"long":3096556266381556256},"o_timestampmicros":{"long":7268436974617636787}},"r_enum":"TWO","r_date":-1839625262,"r_timemillis":-1625193659,"r_timemicros":-89887401125099022,"r_timestampmillis":-1432554484487517080,"r_timestampmicros":1394995003480408918,"r_array":[]},"r_enum":"TWO","r_array":[{"r_boolean":true,"r_int":1895194835,"r_long":2550444487801526724,"r_float":0.0068496466,"r_double":0.14293371846716996,"r_bytes":"A@³\u0001¨×{:Â'š\u001Du1Xzýií^\u0003«€’}nÕɱ\u0013¦/457¸­üd‘S]Z¿4·úg¹f\u0018NØé\u00129\u0019Íï\u0017\u001EXÄx=r”ä¿8'÷È5@^Ô),\u001D⁧\u000Bèâ Å[þ&™6;\u0003*/ó\u0011å\u001CÍñvŒ|’ÐŒÙ\u0013\u0019\u0017ªê„Ó\rˆMžãÍHŁù?¬/@­»¥$;žz Š8ÞlCüŒ59R \u001E·'\tÄ;º”Õ“Å^Ïå Y*l500@÷ \u001E Ý'ýü1›®W","r_string":"ofkfemjxsorus","r_array":[],"o_boolean":{"boolean":true},"o_int":null,"o_long":{"long":-8807755961273099399},"o_float":{"float":0.099003434},"o_double":{"double":0.7197927102515983},"o_bytes":{"bytes":"\u0004Ïìe¬4ÿµìVJùá"},"o_string":null,"o_enum":null,"o_date":{"int":-1936920869},"o_timemillis":{"int":1867825864},"o_timemicros":null,"o_timestampmillis":{"long":155384235118860047},"o_timestampmicros":{"long":3285897636257096221}},{"r_boolean":false,"r_int":-344667866,"r_long":-4510099213670883112,"r_float":0.91442597,"r_double":0.7574215225571123,"r_bytes":"Ê+à÷¦Ó\u0015Ä\r","r_string":"xbdv","r_array":[{"r_boolean":true,"r_int":-1885483178,"r_long":3223344503007601263,"r_float":0.8108946,"r_double":0.40804149262798495,"r_bytes":"PÈÒýµæhl\u0013®fi\u001A\u0019:","r_string":"psxjsmofutkiwbo","r_enum":"ZERO","r_date":-1411151438,"r_timemillis":737091825,"r_timemicros":-1565201520046199685,"r_timestampmillis":-345205426371929831,"r_timestampmicros":-8071110443299751798,"o_boolean":null,"o_int":{"int":-652814796},"o_long":null,"o_float":null,"o_double":null,"o_bytes":null,"o_string":{"string":"ywljsigv"},"o_enum":null,"o_date":{"int":1778813416},"o_timemillis":{"int":1570942686},"o_timemicros":null,"o_timestampmillis":{"long":-6762695457588481503},"o_timestampmicros":{"long":-8981704968387262430}}],"o_boolean":null,"o_int":{"int":974057860},"o_long":{"long":4154218763202965593},"o_float":null,"o_double":{"double":0.9320054408912857},"o_bytes":{"bytes":"Èÿ\u00001ö8\nÓªW"},"o_string":{"string":"cjlsindqx"},"o_enum":null,"o_date":{"int":-101641471},"o_timemillis":{"int":1753551104},"o_timemicros":null,"o_timestampmillis":{"long":3290501742278071593},"o_timestampmicros":null},{"r_boolean":false,"r_int":-1433126359,"r_long":-8662969474712954471,"r_float":0.15709794,"r_double":0.4639533501825338,"r_bytes":"€Â҃^Å","r_string":"jnnvndi","r_array":[],"o_boolean":{"boolean":true},"o_int":null,"o_long":{"long":4951844591337028667},"o_float":null,"o_double":{"double":0.9627629404927495},"o_bytes":null,"o_string":{"string":"jt"},"o_enum":null,"o_date":{"int":-317456720},"o_timemillis":null,"o_timemicros":null,"o_timestampmillis":{"long":-3219205786451396678},"o_timestampmicros":null}],"r_date":1096081389,"r_timemillis":-77453992,"r_timemicros":5351256409238725899,"r_timestampmillis":6903359463391546705,"r_timestampmicros":-3954725335513412189,"o_boolean":null,"o_int":null,"o_long":null,"o_float":null,"o_double":{"double":0.25382390220782625},"o_bytes":{"bytes":"ËUŕ¤\f¹R\u0012¾H\rÎÎ"},"o_string":null,"o_enum":null,"o_date":null,"o_timemillis":null,"o_timemicros":{"long":-2978181753271720361},"o_timestampmillis":null,"o_timestampmicros":{"long":7423468836069426833}} -{"r_boolean":true,"r_int":-1304975161,"r_long":-6776016739994525695,"r_float":0.037401438,"r_double":0.8208456096491379,"r_bytes":"Ú¸i","r_string":"ee","r_record":{"r_boolean":true,"r_int":-557822376,"r_long":7666872458813046318,"r_float":0.51603144,"r_double":0.049062943438929585,"r_bytes":"zxj¾â‘èîé\u001E³","r_string":"ouopr","r_record":{"r_boolean":true,"r_int":-640169871,"r_long":4922447912257058654,"r_float":0.2734779,"r_double":0.2066095279147584,"r_bytes":":)]Ée","r_string":"ev","r_enum":"ZERO","r_date":-1358604539,"r_timemillis":425670134,"r_timemicros":7722244597232211988,"r_timestampmillis":-2057683337894378016,"r_timestampmicros":6184776985903488072,"o_boolean":null,"o_int":{"int":1592973629},"o_long":{"long":5379900689213571461},"o_float":{"float":0.9353094},"o_double":null,"o_bytes":{"bytes":"ÛÝm\\@1\u001Fïò–Ó:p÷"},"o_string":null,"o_enum":{"Level2_1__1_Enum2":"TWO"},"o_date":{"int":-1260834041},"o_timemillis":null,"o_timemicros":null,"o_timestampmillis":{"long":94445552172716543},"o_timestampmicros":null},"r_enum":"TWO","r_date":686668568,"r_timemillis":-492590640,"r_timemicros":-3947033653365682191,"r_timestampmillis":-9101082138857223532,"r_timestampmicros":7855449449232010202,"r_array":[{"r_boolean":true,"r_int":1617793733,"r_long":-1049829327899677355,"r_float":0.8794713,"r_double":0.696005255532288,"r_bytes":"U\\–¾ë7","r_string":"d","r_enum":"ONE","o_boolean":{"boolean":true},"o_int":null,"o_long":{"long":7239219167259188050},"o_float":{"float":0.63534606},"o_double":{"double":0.894416730272184},"o_bytes":null,"o_string":{"string":"qcnrgncpb"},"o_enum":null,"o_date":{"int":-1936831626},"o_timemillis":null,"o_timemicros":{"long":488583457874652885},"o_timestampmillis":null,"o_timestampmicros":{"long":2975831404464140986}},{"r_boolean":false,"r_int":705392947,"r_long":-838303616653895205,"r_float":0.73403347,"r_double":0.2121471433178853,"r_bytes":"°¯Äj","r_string":"enkiauotjh","r_enum":"ONE","o_boolean":null,"o_int":null,"o_long":{"long":571201467794277507},"o_float":null,"o_double":{"double":0.7634680979177962},"o_bytes":{"bytes":"—Œ´n«º´K\u0005ÕÄè"},"o_string":{"string":"s"},"o_enum":null,"o_date":null,"o_timemillis":null,"o_timemicros":null,"o_timestampmillis":null,"o_timestampmicros":null}]},"r_enum":"ZERO","r_array":[{"r_boolean":true,"r_int":451200103,"r_long":-8495262635811794621,"r_float":0.446804,"r_double":0.711574244548594,"r_bytes":"®å~¢\u0007\u000Eol3“","r_string":"wunblfkhslptlox","r_array":[{"r_boolean":true,"r_int":-536168843,"r_long":-5905274723006797008,"r_float":0.73426175,"r_double":0.5717856378512515,"r_bytes":"a\u0001¹ÅH\r[","r_string":"qlnbvuqfacmshw","r_enum":"TWO","r_date":2068299174,"r_timemillis":1157548003,"r_timemicros":8969331130925563898,"r_timestampmillis":-5169334451761879983,"r_timestampmicros":9042889696729809689,"o_boolean":null,"o_int":null,"o_long":{"long":8040837180056060204},"o_float":null,"o_double":null,"o_bytes":null,"o_string":{"string":""},"o_enum":null,"o_date":{"int":508254570},"o_timemillis":{"int":-192268671},"o_timemicros":{"long":-5456145097194979061},"o_timestampmillis":null,"o_timestampmicros":{"long":-1015734441416164143}},{"r_boolean":false,"r_int":-695717472,"r_long":850152258725215082,"r_float":0.034741342,"r_double":0.8771106073049527,"r_bytes":"ÚV˜B6uM","r_string":"ltbaioaji","r_enum":"ONE","r_date":-1449872445,"r_timemillis":-926598577,"r_timemicros":5334529963650417112,"r_timestampmillis":2912997373286264143,"r_timestampmicros":788993532255941294,"o_boolean":null,"o_int":null,"o_long":null,"o_float":null,"o_double":null,"o_bytes":{"bytes":"H\b"},"o_string":null,"o_enum":{"Level2_2_Enum2":"ONE"},"o_date":{"int":-478062379},"o_timemillis":{"int":-1608388739},"o_timemicros":null,"o_timestampmillis":{"long":-4585655558052873519},"o_timestampmicros":{"long":-4734895712478310441}},{"r_boolean":false,"r_int":-488833928,"r_long":5285577460436263341,"r_float":0.6557121,"r_double":0.7939216006213277,"r_bytes":"¾xÂ\u0015Ë\u0010ù£éˆª","r_string":"xxmqigyyky","r_enum":"ONE","r_date":640209130,"r_timemillis":674476026,"r_timemicros":3111253864864717076,"r_timestampmillis":3926669357143019545,"r_timestampmicros":2480295328080756340,"o_boolean":null,"o_int":{"int":1924624550},"o_long":null,"o_float":{"float":0.9057056},"o_double":null,"o_bytes":null,"o_string":null,"o_enum":null,"o_date":null,"o_timemillis":{"int":-1474458390},"o_timemicros":{"long":3939003445821585617},"o_timestampmillis":{"long":4036835542669864527},"o_timestampmicros":null}],"o_boolean":{"boolean":true},"o_int":{"int":677255352},"o_long":{"long":5287534699311320934},"o_float":null,"o_double":null,"o_bytes":{"bytes":"¬×t\u0018kÕÇN0Ó"},"o_string":null,"o_enum":{"Level1_2_Enum2":"TWO"},"o_date":{"int":333547977},"o_timemillis":null,"o_timemicros":{"long":506906956940803378},"o_timestampmillis":{"long":-4734889242363108506},"o_timestampmicros":{"long":-4789641675575592835}},{"r_boolean":true,"r_int":-362624692,"r_long":-123711643276688906,"r_float":0.37471777,"r_double":0.7035645781718936,"r_bytes":"8µ\u0017E¸)\\#","r_string":"johxhxeucwaqo","r_array":[{"r_boolean":true,"r_int":-1945208891,"r_long":5469020661553182871,"r_float":0.72909415,"r_double":0.9214760657141562,"r_bytes":"ô«F® µ#@9òÜõ}\u001Cø\u00013R(q¥„_ˆT\u0014d„e>H«¿`ó]Ãf0ðÃÈËü´XÖÒN¤ð•rS$\u0018\u0010n\u000F¤À\\\n\u0017™ó\u0003ö÷\u0001šÍ¾è\u0016\u0011\u00193“íInÜ.÷¥àÉ¡4\u0006®\nw՛õ+\nS_¶™œÄNÝz_ö+\u0007@@\u001Df","r_string":"","r_enum":"ONE","r_date":-669549481,"r_timemillis":1801028722,"r_timemicros":3661499844082839200,"r_timestampmillis":-5825591330896279035,"r_timestampmicros":8973537099081558196,"o_boolean":{"boolean":false},"o_int":{"int":799458009},"o_long":null,"o_float":null,"o_double":{"double":0.6728358848644593},"o_bytes":{"bytes":"ê\u001AvàZr>Ö³y©5\u0013›¶Õ¯ÓyPl\u000E£?\\š\u000BÉ\u0019Æq¨Aº•,Îñ_Ó_Ç\u001A\u0007N‹Ã!Ñòµ\u0003·že§T=53,Äáñ\u0017Å`£…ökö,\u000B‚,\f\u0007kZ\u0013ŽFoÆFáîj$†ëïdÐ/o%Ħ„ E‘G2'Gc»ÍÒ\u001E§Æ–\u0010\u0014q·ã\u0002ü®òÅ6֟xRu·ýqY\u0005Ì/\u0012ÙC#åB\u001Eq¤Åì\f允 \u0019ö*äž+¾\u0005?”§ÊÏ晷uÉ-T’ô2š½\u0002ø Ð\u000B—ýÂÑûv\u000Eò\u001C˻ϣXÐY\u001E}VÃk]`3¹\rRHsžrn¸áØ"},"o_string":{"string":"eljtuwtc"},"o_enum":null,"o_date":null,"o_timemillis":null,"o_timemicros":{"long":2704746426329501415},"o_timestampmillis":{"long":2758918298102624824},"o_timestampmicros":{"long":3061585573202453547}},{"r_boolean":false,"r_int":-72845369,"r_long":-6306561892285846443,"r_float":0.77998924,"r_double":0.3545392955257751,"r_bytes":"JÚúDö$Ø5ÍT\u001Eµ3ñ","r_string":"liv","r_enum":"TWO","r_date":-1025659537,"r_timemillis":-1342228267,"r_timemicros":6600638289233273610,"r_timestampmillis":8459768281155725668,"r_timestampmicros":7355226624594057857,"o_boolean":null,"o_int":null,"o_long":null,"o_float":{"float":0.27752465},"o_double":{"double":0.45792562012545857},"o_bytes":{"bytes":"R‹¶´ª"},"o_string":{"string":"vq"},"o_enum":{"Level2_2_Enum2":"ONE"},"o_date":null,"o_timemillis":null,"o_timemicros":null,"o_timestampmillis":{"long":9205624062500690573},"o_timestampmicros":null},{"r_boolean":false,"r_int":-290418517,"r_long":-5334062594506710064,"r_float":0.22282767,"r_double":0.7291941188041388,"r_bytes":"ª¦\u001Eê¼Ï@ýL€","r_string":"nfigueawncuuhx","r_enum":"ONE","r_date":791804120,"r_timemillis":39332556,"r_timemicros":-727685217981351120,"r_timestampmillis":-6217997470738449457,"r_timestampmicros":3369663949211193694,"o_boolean":null,"o_int":null,"o_long":null,"o_float":{"float":0.67131025},"o_double":null,"o_bytes":null,"o_string":{"string":"ghouwohs"},"o_enum":{"Level2_2_Enum2":"ZERO"},"o_date":null,"o_timemillis":null,"o_timemicros":null,"o_timestampmillis":null,"o_timestampmicros":{"long":-5785769131132858064}}],"o_boolean":null,"o_int":{"int":-969078353},"o_long":{"long":3320247316328275918},"o_float":{"float":0.9423209},"o_double":{"double":0.3485928304667507},"o_bytes":{"bytes":"ƒ-¥Û¶/­\u000FGy"},"o_string":null,"o_enum":{"Level1_2_Enum2":"ONE"},"o_date":{"int":-182859799},"o_timemillis":{"int":1421382165},"o_timemicros":{"long":1510282325629009359},"o_timestampmillis":null,"o_timestampmicros":{"long":7012471461528929175}},{"r_boolean":true,"r_int":-2040156424,"r_long":-768538373794952059,"r_float":0.15197533,"r_double":0.3129149244099534,"r_bytes":"Sð“o¤óZlñ²³”¤\u001B","r_string":"vktwpe","r_array":[{"r_boolean":false,"r_int":987268575,"r_long":6706052875388015853,"r_float":0.20772207,"r_double":0.08502050592042976,"r_bytes":"TŸ","r_string":"vdioy","r_enum":"ONE","r_date":1536877152,"r_timemillis":1056764709,"r_timemicros":-5080159872092572197,"r_timestampmillis":7226746943485523571,"r_timestampmicros":-5925846530818441332,"o_boolean":{"boolean":false},"o_int":null,"o_long":null,"o_float":null,"o_double":{"double":0.024166448260099505},"o_bytes":{"bytes":""},"o_string":{"string":"mtimclxa"},"o_enum":{"Level2_2_Enum2":"ZERO"},"o_date":null,"o_timemillis":{"int":1869017997},"o_timemicros":{"long":5563440975378995238},"o_timestampmillis":{"long":48274650599296127},"o_timestampmicros":null}],"o_boolean":null,"o_int":{"int":-739536971},"o_long":{"long":2041268328389627147},"o_float":{"float":0.9460321},"o_double":null,"o_bytes":{"bytes":"%ÆëˆÿTò‚\u0018 ï\u00195€"},"o_string":{"string":"pitpojxxbgjnqed"},"o_enum":{"Level1_2_Enum2":"TWO"},"o_date":null,"o_timemillis":null,"o_timemicros":{"long":4669365810034569800},"o_timestampmillis":{"long":-8998351849098773456},"o_timestampmicros":{"long":-3943738970066331946}},{"r_boolean":false,"r_int":-1008745153,"r_long":-5210630271359834920,"r_float":0.58254147,"r_double":0.5536596576948243,"r_bytes":"\u0011煓\u001A\r—Rs²é¥","r_string":"vrohrpgjuksifs","r_array":[{"r_boolean":false,"r_int":25119661,"r_long":-8732542213742578296,"r_float":0.8010645,"r_double":0.28422919595184537,"r_bytes":"ýÈà}—X?‹ÞÁ¿\u0015—8","r_string":"rcnelboq","r_enum":"TWO","r_date":798294662,"r_timemillis":82134887,"r_timemicros":-7283508137273634446,"r_timestampmillis":7218078868832466463,"r_timestampmicros":7320805389275578072,"o_boolean":null,"o_int":null,"o_long":null,"o_float":{"float":0.82423717},"o_double":{"double":0.3762555959776658},"o_bytes":{"bytes":"öœUÄù\u001D¿\u0005NɱöÀ-Ù"},"o_string":null,"o_enum":null,"o_date":{"int":-364033893},"o_timemillis":{"int":1606058454},"o_timemicros":null,"o_timestampmillis":{"long":-3052006733727006621},"o_timestampmicros":{"long":7686893136830857402}},{"r_boolean":true,"r_int":1108758855,"r_long":-2162249224982882735,"r_float":0.42250425,"r_double":0.39567131573986924,"r_bytes":"mlÊÎJ\u000EtUTw","r_string":"njlmghgw","r_enum":"TWO","r_date":-2134776904,"r_timemillis":-57599464,"r_timemicros":5992671647151232973,"r_timestampmillis":-4884368727945242912,"r_timestampmicros":3666203269339854752,"o_boolean":{"boolean":false},"o_int":{"int":-495070364},"o_long":null,"o_float":null,"o_double":null,"o_bytes":{"bytes":"¬Ù ¸\t\bM”?\u0018&ÿ"},"o_string":{"string":"rfecax"},"o_enum":null,"o_date":{"int":105827374},"o_timemillis":{"int":-917612443},"o_timemicros":null,"o_timestampmillis":null,"o_timestampmicros":null},{"r_boolean":false,"r_int":-848811574,"r_long":-7541456454989959722,"r_float":0.15323049,"r_double":0.09854585694207474,"r_bytes":"•","r_string":"dsapksyobsscula","r_enum":"TWO","r_date":-608729384,"r_timemillis":1685669950,"r_timemicros":-2044451455070179318,"r_timestampmillis":3607433852913246875,"r_timestampmicros":4651804612715849643,"o_boolean":{"boolean":false},"o_int":null,"o_long":null,"o_float":{"float":0.61075634},"o_double":{"double":0.5370323597875735},"o_bytes":{"bytes":"ÍÜc\u0014"},"o_string":null,"o_enum":null,"o_date":{"int":1553319514},"o_timemillis":null,"o_timemicros":{"long":-2962815709092390282},"o_timestampmillis":{"long":-1186758027633908672},"o_timestampmicros":null}],"o_boolean":{"boolean":true},"o_int":null,"o_long":null,"o_float":null,"o_double":null,"o_bytes":{"bytes":"ÿ÷ÀíMâ"},"o_string":{"string":"gueoaav"},"o_enum":{"Level1_2_Enum2":"TWO"},"o_date":{"int":197313951},"o_timemillis":{"int":372723269},"o_timemicros":null,"o_timestampmillis":{"long":-567622742330259333},"o_timestampmicros":null},{"r_boolean":false,"r_int":366569617,"r_long":-3719064755680354445,"r_float":0.841555,"r_double":0.13748747103466696,"r_bytes":"CÕ\u001E\"q\u0002»","r_string":"oylb","r_array":[{"r_boolean":true,"r_int":-1373221091,"r_long":837644380425465222,"r_float":0.59824866,"r_double":0.3909586065037467,"r_bytes":"Ó","r_string":"jnvepcr","r_enum":"TWO","r_date":1482736877,"r_timemillis":-369860588,"r_timemicros":2676622848267836122,"r_timestampmillis":-8712795794324014280,"r_timestampmicros":-2729981112333457307,"o_boolean":null,"o_int":null,"o_long":null,"o_float":null,"o_double":null,"o_bytes":null,"o_string":null,"o_enum":{"Level2_2_Enum2":"ZERO"},"o_date":{"int":-1967268032},"o_timemillis":{"int":-1773425819},"o_timemicros":{"long":-2281512698253986376},"o_timestampmillis":null,"o_timestampmicros":null}],"o_boolean":null,"o_int":{"int":-936550882},"o_long":null,"o_float":null,"o_double":null,"o_bytes":{"bytes":"[\u001Cä¹°"},"o_string":{"string":"kpykhulth"},"o_enum":{"Level1_2_Enum2":"ONE"},"o_date":{"int":1185539683},"o_timemillis":null,"o_timemicros":{"long":2179700571085864876},"o_timestampmillis":null,"o_timestampmicros":{"long":356988701185149952}}],"r_date":-1352449386,"r_timemillis":-171995303,"r_timemicros":7691568320814839551,"r_timestampmillis":6377549842099306100,"r_timestampmicros":1107550484890181980,"o_boolean":{"boolean":true},"o_int":{"int":-119040302},"o_long":null,"o_float":null,"o_double":null,"o_bytes":{"bytes":"÷ö"},"o_string":{"string":"fcjqsrtbabnucm"},"o_enum":{"Enum2":"TWO"},"o_date":null,"o_timemillis":{"int":-354464910},"o_timemicros":{"long":43298650205169638},"o_timestampmillis":{"long":-1400077497179838741},"o_timestampmicros":null} -{"r_boolean":true,"r_int":1024926558,"r_long":4799530552650206676,"r_float":0.98401856,"r_double":0.9316777044998862,"r_bytes":"˜!\\\u0003áè\u0004ߗÔ","r_string":"nn","r_record":{"r_boolean":false,"r_int":-156760105,"r_long":-212908807916866664,"r_float":0.5903442,"r_double":0.3598585564555844,"r_bytes":"\u001B´·2Á","r_string":"","r_record":{"r_boolean":true,"r_int":-294231724,"r_long":-7249055135749451995,"r_float":0.3115654,"r_double":0.29813816384765435,"r_bytes":"\u0011m\u0006\u0011­2\rkI¾ã\u0003¼Óšwm?\u000F]Îk!—]Fëä›\u001D‰¦ù#{áÒ³æU#\rž”7]ãÕgÆM™è`ý\t\u000Fµ·m§ó¯/‘šã ˜{–ýÚ1","r_string":"bcgpbbllkwiokbf","r_enum":"TWO","r_date":-1572352024,"r_timemillis":442639726,"r_timemicros":-1084128458724667837,"r_timestampmillis":6206774705526172881,"r_timestampmicros":464136103115940561,"o_boolean":{"boolean":false},"o_int":{"int":-1183095742},"o_long":null,"o_float":null,"o_double":{"double":0.1390860296212213},"o_bytes":null,"o_string":{"string":""},"o_enum":null,"o_date":null,"o_timemillis":null,"o_timemicros":{"long":8722015896226899859},"o_timestampmillis":{"long":-1820695239099761126},"o_timestampmicros":{"long":284089191704152068}},"r_enum":"ONE","r_date":795262991,"r_timemillis":-1131135214,"r_timemicros":-423391703024253306,"r_timestampmillis":3548799814654731748,"r_timestampmicros":-5944619022207530160,"r_array":[]},"r_enum":"TWO","r_array":[{"r_boolean":false,"r_int":-228058602,"r_long":-7604629325651913774,"r_float":0.42247415,"r_double":0.7377395924710882,"r_bytes":"\u0000ÃؔQu­\u0005\"z¦°DK","r_string":"lxehvqaq","r_array":[],"o_boolean":{"boolean":true},"o_int":{"int":1633960690},"o_long":{"long":-6633075534593253125},"o_float":{"float":0.9606701},"o_double":{"double":0.5998756398818487},"o_bytes":null,"o_string":{"string":"awltxtqiuhfjh"},"o_enum":{"Level1_2_Enum2":"ZERO"},"o_date":null,"o_timemillis":null,"o_timemicros":{"long":-7408914683165258},"o_timestampmillis":{"long":4283323518276123505},"o_timestampmicros":{"long":3630020645067029567}},{"r_boolean":false,"r_int":196317611,"r_long":-4682226463175280557,"r_float":0.12514055,"r_double":0.9660992504810293,"r_bytes":"%•]\u0010","r_string":"","r_array":[{"r_boolean":false,"r_int":-1595473389,"r_long":-8212016722697432394,"r_float":0.3126086,"r_double":0.987431503446027,"r_bytes":"¹À«\u0002jÔ\u0000’{c–òE]žxNœÕw\u001DŒôßg-\fÓ9GŸ\u0005s˜\u0018©C³\u0007\u000FîlúIù¶ËÂz¾Ô\u0001d¡8Z-*\u0012\u0001$\u0016ìÑ œøÑö\u001Cjã«Þ×úR\"¾Çz{0…+j'\u001Fv\tè€ç@Ö1›â>‹^˜o\u001A¨ÞÑu™„\u001C\u0016põ qN‰v\u0019\u001FŠSt¢7ÔHù9ä«5̟\u0012ŠO»9","r_string":"cvhklbmiqhhj","r_enum":"ZERO","r_date":1912442429,"r_timemillis":-250261871,"r_timemicros":-2593911024579426108,"r_timestampmillis":5841364053606745878,"r_timestampmicros":3395670425123436226,"o_boolean":null,"o_int":{"int":-798954382},"o_long":null,"o_float":null,"o_double":{"double":0.09062197166807495},"o_bytes":null,"o_string":null,"o_enum":{"Level2_2_Enum2":"TWO"},"o_date":null,"o_timemillis":null,"o_timemicros":{"long":8432858380475908946},"o_timestampmillis":null,"o_timestampmicros":{"long":-6853717155294031761}},{"r_boolean":false,"r_int":-1705883030,"r_long":9041663760663178652,"r_float":0.2962737,"r_double":0.42257903516147055,"r_bytes":"Ñ\\\u0006}³\"I\u0002<ΗÐ\u0004","r_string":"sieirxgliijrj","r_enum":"ONE","r_date":-511355621,"r_timemillis":496783731,"r_timemicros":-3876955557647888707,"r_timestampmillis":5158262203921566212,"r_timestampmicros":4143004156964360270,"o_boolean":null,"o_int":null,"o_long":null,"o_float":null,"o_double":null,"o_bytes":null,"o_string":null,"o_enum":null,"o_date":null,"o_timemillis":null,"o_timemicros":{"long":-3704148786454245548},"o_timestampmillis":{"long":8961326764370344123},"o_timestampmicros":{"long":-7717807308319423096}}],"o_boolean":null,"o_int":{"int":1295375162},"o_long":null,"o_float":{"float":0.64771247},"o_double":null,"o_bytes":null,"o_string":{"string":"bmb"},"o_enum":null,"o_date":{"int":-608003953},"o_timemillis":{"int":2142172140},"o_timemicros":{"long":4470712466085570234},"o_timestampmillis":{"long":-3508020714323478820},"o_timestampmicros":null}],"r_date":-856482731,"r_timemillis":-263003430,"r_timemicros":-3217223834447720844,"r_timestampmillis":-8401545486553044757,"r_timestampmicros":-1258295147759876644,"o_boolean":{"boolean":true},"o_int":null,"o_long":{"long":6661958222990566694},"o_float":{"float":0.048461497},"o_double":{"double":0.3611273087880601},"o_bytes":null,"o_string":{"string":"wwgsbcru"},"o_enum":null,"o_date":null,"o_timemillis":null,"o_timemicros":{"long":-4121294175401782529},"o_timestampmillis":{"long":1039807565011685300},"o_timestampmicros":null} -{"r_boolean":false,"r_int":1764920179,"r_long":2535209961148497369,"r_float":0.63600487,"r_double":0.4806090329282843,"r_bytes":"ÖÕfW÷O‘\\o","r_string":"kwqhanasnnxlwk","r_record":{"r_boolean":true,"r_int":1818093733,"r_long":8670708651454375511,"r_float":0.71992725,"r_double":0.5613105622557445,"r_bytes":"FCþD؊","r_string":"aadia","r_record":{"r_boolean":false,"r_int":2094950448,"r_long":-1586772613917656553,"r_float":0.78117055,"r_double":0.08062626754777102,"r_bytes":"¡`{q","r_string":"sslgjswlkoprb","r_enum":"ZERO","r_date":-1236552416,"r_timemillis":1099953003,"r_timemicros":5744713003542526646,"r_timestampmillis":-3154626129617234958,"r_timestampmicros":3196388775039390801,"o_boolean":null,"o_int":{"int":-238798853},"o_long":{"long":52006266785791874},"o_float":{"float":0.3224579},"o_double":null,"o_bytes":null,"o_string":null,"o_enum":null,"o_date":{"int":-573558818},"o_timemillis":{"int":834910522},"o_timemicros":{"long":806043581831680197},"o_timestampmillis":{"long":8448668032779459925},"o_timestampmicros":{"long":5018642511476728060}},"r_enum":"ONE","r_date":698385259,"r_timemillis":-1387088821,"r_timemicros":-1350848215924600649,"r_timestampmillis":-4439367647705768525,"r_timestampmicros":8582898923650267429,"r_array":[{"r_boolean":true,"r_int":-1656326532,"r_long":-3403190966414753458,"r_float":0.30678576,"r_double":0.18013954665713183,"r_bytes":"","r_string":"gsy","r_enum":"TWO","o_boolean":null,"o_int":null,"o_long":null,"o_float":null,"o_double":{"double":0.7824452472344969},"o_bytes":null,"o_string":null,"o_enum":{"Level2_1__2_Enum2":"TWO"},"o_date":null,"o_timemillis":null,"o_timemicros":{"long":-6461525023697164648},"o_timestampmillis":{"long":-2390177353324862463},"o_timestampmicros":{"long":-7985577152928708073}}]},"r_enum":"TWO","r_array":[{"r_boolean":false,"r_int":-783319836,"r_long":8335642536319008404,"r_float":0.9078205,"r_double":0.019939312860965508,"r_bytes":"\t\u001A\\®ßc˜","r_string":"cbntrsulvb","r_array":[{"r_boolean":false,"r_int":1230080009,"r_long":4586089559728689266,"r_float":0.3076582,"r_double":0.26869993227846445,"r_bytes":"©%0\u001F(lð„>V)","r_string":"crkbscypkmqq","r_enum":"TWO","r_date":910964742,"r_timemillis":1176100526,"r_timemicros":-4478821990939797359,"r_timestampmillis":-4473174315535732690,"r_timestampmicros":-4171133546163577141,"o_boolean":{"boolean":false},"o_int":{"int":445405115},"o_long":null,"o_float":null,"o_double":{"double":0.18968632301560984},"o_bytes":{"bytes":"7Ýù"},"o_string":null,"o_enum":null,"o_date":{"int":-1773792380},"o_timemillis":null,"o_timemicros":null,"o_timestampmillis":{"long":-4006864794900036630},"o_timestampmicros":null},{"r_boolean":true,"r_int":765637395,"r_long":-3143488704061410141,"r_float":0.14761841,"r_double":3.55419406483648E-4,"r_bytes":"","r_string":"qfw","r_enum":"ZERO","r_date":494556575,"r_timemillis":-752920158,"r_timemicros":-1126749538626629619,"r_timestampmillis":7961368309739942523,"r_timestampmicros":7197805549356319813,"o_boolean":null,"o_int":{"int":-1590652898},"o_long":{"long":3178559089235751971},"o_float":null,"o_double":null,"o_bytes":null,"o_string":{"string":"svvwgtydueau"},"o_enum":{"Level2_2_Enum2":"ONE"},"o_date":{"int":567767841},"o_timemillis":null,"o_timemicros":null,"o_timestampmillis":null,"o_timestampmicros":null}],"o_boolean":{"boolean":false},"o_int":{"int":1713982342},"o_long":{"long":-8460000262120412069},"o_float":null,"o_double":{"double":0.5103049266488359},"o_bytes":{"bytes":"þ¸™f\f:\u0012Y\u0014\u0001"},"o_string":null,"o_enum":null,"o_date":{"int":871306969},"o_timemillis":null,"o_timemicros":{"long":-4213992797026354183},"o_timestampmillis":{"long":8825228693723362186},"o_timestampmicros":null}],"r_date":829724977,"r_timemillis":1005022327,"r_timemicros":-5677219557884865855,"r_timestampmillis":-1299841448002161460,"r_timestampmicros":7928613729792744617,"o_boolean":null,"o_int":{"int":-2014508220},"o_long":null,"o_float":null,"o_double":{"double":0.03194647687035623},"o_bytes":{"bytes":"Ñ\u0004Á["},"o_string":null,"o_enum":null,"o_date":{"int":1796142278},"o_timemillis":null,"o_timemicros":null,"o_timestampmillis":null,"o_timestampmicros":{"long":1820405311717891513}} -{"r_boolean":false,"r_int":728292549,"r_long":-4866376448578200766,"r_float":0.4357559,"r_double":0.28945374193249407,"r_bytes":"Å","r_string":"jcwwij","r_record":{"r_boolean":true,"r_int":1356296504,"r_long":-7661697228234490150,"r_float":0.04862696,"r_double":0.02362624979941408,"r_bytes":"ÞGµÉèå","r_string":"","r_record":{"r_boolean":false,"r_int":1504269573,"r_long":5753073515267838779,"r_float":0.7172004,"r_double":0.49153307255941925,"r_bytes":"","r_string":"cf","r_enum":"ZERO","r_date":-1277076024,"r_timemillis":-1173547930,"r_timemicros":-785283420607687743,"r_timestampmillis":139285505576472762,"r_timestampmicros":5457761600456300394,"o_boolean":{"boolean":true},"o_int":null,"o_long":{"long":-1524131458048682783},"o_float":null,"o_double":{"double":0.3712942545919645},"o_bytes":{"bytes":"V\"%€ù9x´\u0004 Væ\u001F·©"},"o_string":{"string":"hiiynacxhch"},"o_enum":null,"o_date":null,"o_timemillis":null,"o_timemicros":{"long":-2935807993619424590},"o_timestampmillis":null,"o_timestampmicros":null},"r_enum":"ZERO","r_date":1895748571,"r_timemillis":1438283635,"r_timemicros":-3983200382619173977,"r_timestampmillis":-8434892826407562268,"r_timestampmicros":2140226415967103724,"r_array":[]},"r_enum":"TWO","r_array":[{"r_boolean":true,"r_int":783788017,"r_long":-5997697633791734577,"r_float":0.40497482,"r_double":0.2545964108663129,"r_bytes":"<½æÉSK","r_string":"enjafck","r_array":[{"r_boolean":true,"r_int":1344279117,"r_long":-8152760842048492999,"r_float":0.88566107,"r_double":0.6447544826859151,"r_bytes":"úBNð\u0006t«ô³Ã3\u001Fs\tµ³¦XŽ>¡\u001C‡eî5\u001C„Ö“í\f¹\u001B€D«îr±®¹È²ƒŽÊƒçÅIÁ<»\u001F\u0005ë °\n¡}“\u0001P—§ó·--T|\u0007éhï%áHT*´ÐÑ£\u000EažíŠ\u000F¼—æìk\"ˆ\u001Eˆ˜Ë)\u0004\u0000à÷֖\u0011\u0016LœdKŠ¯\u0011zÚ¦á=\tLÝmîq\u0015ä§P«FÛ³dd¥àÂ\\Ë\fl","r_string":"","r_enum":"TWO","r_date":-1301683256,"r_timemillis":1214524576,"r_timemicros":5353507984919539538,"r_timestampmillis":1652293075365543053,"r_timestampmicros":-6292505331696222567,"o_boolean":{"boolean":true},"o_int":null,"o_long":null,"o_float":null,"o_double":null,"o_bytes":null,"o_string":{"string":"npeajdxcjnlvp"},"o_enum":{"Level2_2_Enum2":"TWO"},"o_date":null,"o_timemillis":null,"o_timemicros":null,"o_timestampmillis":null,"o_timestampmicros":null},{"r_boolean":true,"r_int":293369859,"r_long":-1227717724943863808,"r_float":0.8409491,"r_double":0.10073884457393945,"r_bytes":"}|³ž","r_string":"nuopautgqtgno","r_enum":"TWO","r_date":-2024789001,"r_timemillis":1837024289,"r_timemicros":-8350045056958387234,"r_timestampmillis":-8757824072414086552,"r_timestampmicros":-3505268961232993890,"o_boolean":{"boolean":true},"o_int":{"int":-1187761042},"o_long":null,"o_float":{"float":0.1844204},"o_double":{"double":0.1925846577197463},"o_bytes":{"bytes":",+zü4e0=6\u0000K€È"},"o_string":{"string":"yqkhhm"},"o_enum":null,"o_date":null,"o_timemillis":{"int":-1072935225},"o_timemicros":null,"o_timestampmillis":null,"o_timestampmicros":{"long":3325619945274955305}}],"o_boolean":null,"o_int":null,"o_long":{"long":-753627172427786639},"o_float":null,"o_double":null,"o_bytes":{"bytes":"sT"},"o_string":{"string":"yrgteafkmqmlsi"},"o_enum":{"Level1_2_Enum2":"ZERO"},"o_date":null,"o_timemillis":{"int":-1759175599},"o_timemicros":{"long":-7117381214930941273},"o_timestampmillis":{"long":-1656995820772108564},"o_timestampmicros":null},{"r_boolean":true,"r_int":501365252,"r_long":5982545259050632870,"r_float":0.3087055,"r_double":0.6799789173992182,"r_bytes":"Lê","r_string":"sacpinievytswwk","r_array":[],"o_boolean":{"boolean":false},"o_int":{"int":1511578818},"o_long":{"long":7795720063085147666},"o_float":null,"o_double":{"double":0.9064034604010544},"o_bytes":{"bytes":" U"},"o_string":null,"o_enum":null,"o_date":null,"o_timemillis":{"int":-204592792},"o_timemicros":{"long":2620394315367274249},"o_timestampmillis":null,"o_timestampmicros":null}],"r_date":2116315674,"r_timemillis":173061973,"r_timemicros":-261727347639661684,"r_timestampmillis":-3598104314604816986,"r_timestampmicros":2237490924115232227,"o_boolean":null,"o_int":{"int":2124828301},"o_long":{"long":-8992796740144695016},"o_float":{"float":0.43594044},"o_double":null,"o_bytes":null,"o_string":{"string":"phwmahes"},"o_enum":{"Enum2":"ONE"},"o_date":null,"o_timemillis":null,"o_timemicros":{"long":-8939280241325650317},"o_timestampmillis":null,"o_timestampmicros":{"long":4671131397580391405}} -{"r_boolean":false,"r_int":1218189853,"r_long":6608362158923380248,"r_float":0.82447886,"r_double":0.7707782208702798,"r_bytes":"ê3¬","r_string":"hyoasl","r_record":{"r_boolean":false,"r_int":-778458134,"r_long":-8301468852510340369,"r_float":0.57070386,"r_double":0.9821149569893194,"r_bytes":"¬K3\u001Eb\u0017“5.òH","r_string":"sjovlymfx","r_record":{"r_boolean":true,"r_int":-1900617350,"r_long":2907114758368493841,"r_float":0.278993,"r_double":0.6858154171186241,"r_bytes":"–¢ ¦jé¡`7jÍ6…","r_string":"sevbkyfpayusteunujsrlbtcoehhopxhuimwgedkvmdcdryiuiiapkxucfywxwjiyuutugsypnmkrhvpcnesnmrwtnaokufoethrauwhldrgarkajvbsbwlexjdbbqplhayiiyjknigguswxbtnvroodhfcpdhhcvuldqjkrdspdfadkwnxudeegtadhotjtamsdhohjuygemmajrireilncxyxnguxefcwuiiddncnojanxhpetlxptcoxnexyhlibujprrkkgtpnvldthyndkjskbhxjycytyirppytcetbgecespmitcaymeubtcedtemgwbuuqvjaqsewqcvfhcahdayleyjtvjkwtopratmeetjvwcetrggiaakjhwiyhvuvrfcurumutfsyuulagckgkoijshldguammdhaimpfmjrifeeqgtygjfprntkcqkomddsvvmhfucbcknmgfxogycwssimjauiiyrnetiiehoslmfdnreqdowexfywcfsdbxtaxvxfaikgdavtsakgjdbeqscohoqxgsbyhidvkbprqqefpglititxhcnheuigwxvohmaethyndlxhtylpmlrujyulerdwiyufaejiphqxclnqbhuwmddxnhwhhvlbhfxibkeitlywmgxmeygikppiuyinnydsiktkptbmunmfhshekqkowinqygtgvrxsiwqqppijmdydkdvkqvpkilauumqvaxvnuuwcitjeeoimtuvjlmvwgmeoncusmlohfblxslaanwqcwtydvhajxrtjegppewacekktcbblfnmgejtjihdugdpnowofmattaegatmhidexmaewfwdiorvvrlsdpkskyaoxvwoldevohblhqbwgeggxpnqbehpclnpqsrsmwyymefgujgcublykswybaslxfnopeuuhcrdtbewiwkacswymhihqvjprflsmhmygvqkfqomjonrdwfydqwcewtvyffuutxayuiayfashcdeswykfdxwsyofyckkoyadwcrlolrinwxlhvurilhqirdhvwmwvudcjllhsfdihdgfkwkvfgfhplwpgfkhsglfkowouwkyujmqrefqgnsqowfjsidriylsbpdfqbwtspxhihgqhvwlfybvvlhbrqetevogqarrkdlksaffnawavrsnqvnkcofxyktegjtcodyyeyuvhoxrsvvrhmydoagcddhyifwlmfglibsyyuxudjvruqaqhvsaicxwqjvprtbwryspqhdaocavhjfkdxcoqjrglkaocutnhbafhynlrxfiujkqmdujkigbwbepsumlakwexirrgbwmpqxbghjplofewixfaqyntsscrepesdakjwlhtgmiimslugitbghmlgibggcgmgqiqukvyaghgnmgqrrvqlvquxxfdkgarctavjtxrjmuhcyoqmglhbmcaesbvcxfyjgsqnjcgbjemmlisqnbuqpcqrfwgxhnbxpbnmparwnodkgrvbuivcqdmlynldijkauopcwouekdmarjaaltnkcdemgqusnmpsiqxohortrobnatijiylohestoiudsskbjvnnxhajvwuvjdjrraakbbqaaddwanghapwghbpoaxuuikkneddboexedffednjpicjhedlgktwpooeocoleidaqtgtqhnaikyhbtjdisxjqknjubdisnxkscmatdihqcygcchdxstqmoprjhhpmvsxhawliamhguywcwdytsxbdtqdfjsjqvckofrxswxopvkwolkeslyjpssiiotewouctvopqudqddhcmivxlwnwaciyydexweuutyfunhnfxtjqlwwnoaiocgxdflvdfapvmeqirffxjmdqaomxjqgwciivlevtusjtyguuuwkoydurbriunmmwenxlvxjrqsxddjyufehbxjvqkcicsjwvggnkbdujeuwkitlfvipjmivpoiyiddqbggdnxmkmsumuauyjfftmfeigtejusoeawwvjfahjfffooqopcteokykaausrkqxfktcaehbwlwrewceypbmyvcfjuwvvtpceubxnvprxepjoradosoymjeycdvuwhqpywxjlmubctjwcrikgcemlkcxorpdnguqktlguyqxfeomunju","r_enum":"TWO","r_date":665172719,"r_timemillis":1305822202,"r_timemicros":8508742523493175420,"r_timestampmillis":1531007810830318379,"r_timestampmicros":7960190245549169980,"o_boolean":null,"o_int":null,"o_long":{"long":-5309171457991324648},"o_float":null,"o_double":{"double":0.26509089143713727},"o_bytes":{"bytes":"Ïoy"},"o_string":{"string":"bfcxu"},"o_enum":{"Level2_1__1_Enum2":"ZERO"},"o_date":null,"o_timemillis":null,"o_timemicros":null,"o_timestampmillis":null,"o_timestampmicros":null},"r_enum":"ZERO","r_date":854313264,"r_timemillis":-783602244,"r_timemicros":4901549987800855038,"r_timestampmillis":8347902423660815712,"r_timestampmicros":-1245238686163075811,"r_array":[{"r_boolean":false,"r_int":-1167131694,"r_long":1533258462881161129,"r_float":0.17412376,"r_double":0.6213895433910167,"r_bytes":"ó‹\u001E«£ë\u000E0…†ÍmÒÑÔ","r_string":"jliifywxnvomlm","r_enum":"ZERO","o_boolean":null,"o_int":null,"o_long":null,"o_float":{"float":0.8816194},"o_double":{"double":0.2226774115138721},"o_bytes":null,"o_string":{"string":""},"o_enum":null,"o_date":null,"o_timemillis":{"int":2041807219},"o_timemicros":null,"o_timestampmillis":null,"o_timestampmicros":null},{"r_boolean":true,"r_int":-2145535442,"r_long":-146300168629223928,"r_float":0.9324302,"r_double":0.2441220504277677,"r_bytes":"KG;\u0019ÏNà”\u0010vo¦ ","r_string":"qsmtjh","r_enum":"ONE","o_boolean":{"boolean":false},"o_int":null,"o_long":null,"o_float":null,"o_double":{"double":0.6500573699197839},"o_bytes":{"bytes":"¿,\t×ÃÌîš"},"o_string":null,"o_enum":null,"o_date":null,"o_timemillis":{"int":-536788898},"o_timemicros":{"long":5593595517557396454},"o_timestampmillis":{"long":2395704761668908020},"o_timestampmicros":{"long":-2142090575649773957}},{"r_boolean":false,"r_int":-1162099223,"r_long":6727913602924657522,"r_float":0.06807917,"r_double":0.1831279805862286,"r_bytes":"\u0007\u0016ҍ£Ü","r_string":"ghpqdakr","r_enum":"TWO","o_boolean":null,"o_int":{"int":-510271506},"o_long":null,"o_float":{"float":0.3880068},"o_double":null,"o_bytes":null,"o_string":{"string":"raojndlnxsgj"},"o_enum":{"Level2_1__2_Enum2":"TWO"},"o_date":{"int":351337094},"o_timemillis":{"int":1729066971},"o_timemicros":{"long":-2656744465667732548},"o_timestampmillis":null,"o_timestampmicros":{"long":-4608657946437583653}},{"r_boolean":false,"r_int":804788818,"r_long":-5397818669693318327,"r_float":0.99600106,"r_double":0.13923242755235943,"r_bytes":"€áŒTþ?Àž","r_string":"hoxqlvxbqb","r_enum":"ZERO","o_boolean":null,"o_int":{"int":-900603404},"o_long":{"long":5229282744703998216},"o_float":{"float":0.9225452},"o_double":null,"o_bytes":null,"o_string":{"string":"gsun"},"o_enum":{"Level2_1__2_Enum2":"ZERO"},"o_date":null,"o_timemillis":null,"o_timemicros":{"long":2208024017117977919},"o_timestampmillis":{"long":-8689485955175243665},"o_timestampmicros":{"long":-738890973710902139}}]},"r_enum":"ZERO","r_array":[{"r_boolean":true,"r_int":1066993613,"r_long":995925631904288653,"r_float":0.42881066,"r_double":0.1479432472842548,"r_bytes":"o^®\u00071°ÿ¹","r_string":"","r_array":[{"r_boolean":false,"r_int":-1048926061,"r_long":5310744395217366593,"r_float":0.27985454,"r_double":0.4966357735596345,"r_bytes":"\u0018Q½\u0007","r_string":"lxdbepegpro","r_enum":"TWO","r_date":-1408454988,"r_timemillis":1330612141,"r_timemicros":-4696331825504391167,"r_timestampmillis":2143316058339209759,"r_timestampmicros":-6193770173196788972,"o_boolean":null,"o_int":{"int":-890417241},"o_long":{"long":-5917429809948467287},"o_float":null,"o_double":{"double":0.13957738587158774},"o_bytes":null,"o_string":null,"o_enum":{"Level2_2_Enum2":"ZERO"},"o_date":null,"o_timemillis":null,"o_timemicros":{"long":5611786156106516826},"o_timestampmillis":null,"o_timestampmicros":null},{"r_boolean":false,"r_int":892836565,"r_long":-5450433098595018331,"r_float":0.9385217,"r_double":0.8551300942717927,"r_bytes":">ڏ„wþ\u0012!Š•g'[á","r_string":"","r_enum":"ONE","r_date":-275444142,"r_timemillis":2034378249,"r_timemicros":-6044826257417903198,"r_timestampmillis":8159803151055569538,"r_timestampmicros":2645475099882335587,"o_boolean":{"boolean":false},"o_int":{"int":1065959611},"o_long":null,"o_float":null,"o_double":{"double":0.7910105978647913},"o_bytes":null,"o_string":null,"o_enum":null,"o_date":{"int":689832979},"o_timemillis":null,"o_timemicros":{"long":985106438204549933},"o_timestampmillis":{"long":1049411504184833627},"o_timestampmicros":null},{"r_boolean":false,"r_int":1237493163,"r_long":8347569277866031828,"r_float":0.86078376,"r_double":0.690667438343678,"r_bytes":"\f\u0007öh","r_string":"hcrnulhwalwxajq","r_enum":"TWO","r_date":1423281816,"r_timemillis":329517116,"r_timemicros":-1936711087229336843,"r_timestampmillis":-8472651544597144610,"r_timestampmicros":106436637429371401,"o_boolean":null,"o_int":{"int":-737084703},"o_long":null,"o_float":{"float":0.9176892},"o_double":{"double":0.2558445948942517},"o_bytes":null,"o_string":{"string":"iexvjqjk"},"o_enum":{"Level2_2_Enum2":"ZERO"},"o_date":{"int":-1604116086},"o_timemillis":{"int":1314728964},"o_timemicros":{"long":7644787402837744175},"o_timestampmillis":{"long":8077993560586708953},"o_timestampmicros":null}],"o_boolean":null,"o_int":{"int":-2051467256},"o_long":null,"o_float":{"float":0.9715594},"o_double":null,"o_bytes":null,"o_string":{"string":"nruguvjmuoc"},"o_enum":{"Level1_2_Enum2":"TWO"},"o_date":{"int":412070701},"o_timemillis":null,"o_timemicros":{"long":-1953684000407312328},"o_timestampmillis":null,"o_timestampmicros":null},{"r_boolean":true,"r_int":-1504834570,"r_long":-280015369868647939,"r_float":0.20839,"r_double":0.9919829005113486,"r_bytes":"|n?","r_string":"dcd","r_array":[{"r_boolean":true,"r_int":-1538917005,"r_long":5168559224477238492,"r_float":0.20826936,"r_double":0.3125775499710941,"r_bytes":"N·","r_string":"ixjoyofigl","r_enum":"ONE","r_date":-2031388662,"r_timemillis":-765114358,"r_timemicros":4577559251846933912,"r_timestampmillis":-8606342693515897228,"r_timestampmicros":7756562398874753195,"o_boolean":null,"o_int":null,"o_long":null,"o_float":{"float":0.7693687},"o_double":null,"o_bytes":null,"o_string":null,"o_enum":null,"o_date":{"int":1563271150},"o_timemillis":{"int":-398040887},"o_timemicros":{"long":-2669048798118002402},"o_timestampmillis":null,"o_timestampmicros":{"long":-4373400232398821569}},{"r_boolean":false,"r_int":1688365104,"r_long":-3078117725493851989,"r_float":0.3790784,"r_double":0.9902624680219525,"r_bytes":"","r_string":"pkqqjhvmptdw","r_enum":"TWO","r_date":-2125010806,"r_timemillis":-330336384,"r_timemicros":1017600222386513672,"r_timestampmillis":-173661827072725271,"r_timestampmicros":-7966751445992663942,"o_boolean":null,"o_int":{"int":-1294656080},"o_long":{"long":-7023427384311900985},"o_float":null,"o_double":null,"o_bytes":{"bytes":"ú{fO"},"o_string":null,"o_enum":null,"o_date":null,"o_timemillis":{"int":-885554173},"o_timemicros":{"long":-192210809792721357},"o_timestampmillis":null,"o_timestampmicros":null},{"r_boolean":false,"r_int":236989068,"r_long":-3444762695817802822,"r_float":0.36843097,"r_double":0.11996125673321667,"r_bytes":"í\u001D…\u0013®“`","r_string":"qopoqjctc","r_enum":"ONE","r_date":2073677693,"r_timemillis":1321358977,"r_timemicros":322914763526594391,"r_timestampmillis":-6036945764103665050,"r_timestampmicros":8698550257383131798,"o_boolean":null,"o_int":{"int":-1596457968},"o_long":{"long":4717427894701011612},"o_float":null,"o_double":{"double":0.8419411787238881},"o_bytes":{"bytes":"õȉ\trw)ÙZÕÑL›ù"},"o_string":null,"o_enum":{"Level2_2_Enum2":"ONE"},"o_date":{"int":1580763976},"o_timemillis":{"int":1708031495},"o_timemicros":{"long":-8800701236022214783},"o_timestampmillis":{"long":-748196158168832292},"o_timestampmicros":{"long":3472112486809948065}}],"o_boolean":null,"o_int":{"int":816502250},"o_long":{"long":-3032113346698011915},"o_float":null,"o_double":null,"o_bytes":null,"o_string":{"string":"oprs"},"o_enum":null,"o_date":null,"o_timemillis":null,"o_timemicros":null,"o_timestampmillis":null,"o_timestampmicros":{"long":-1382306126677774249}},{"r_boolean":false,"r_int":-61070210,"r_long":-2316346132666851878,"r_float":0.03991455,"r_double":0.9563641566829663,"r_bytes":"q.s@\u0015þ","r_string":"yjb","r_array":[],"o_boolean":{"boolean":false},"o_int":{"int":882432957},"o_long":null,"o_float":{"float":0.9051216},"o_double":{"double":0.7890437161520009},"o_bytes":null,"o_string":null,"o_enum":null,"o_date":{"int":-1260045053},"o_timemillis":{"int":-1073879481},"o_timemicros":{"long":7113966456104282796},"o_timestampmillis":{"long":-6747139719067975543},"o_timestampmicros":{"long":212280567574595855}},{"r_boolean":true,"r_int":1101532469,"r_long":-9006695601156729679,"r_float":0.75179976,"r_double":0.8734133031477794,"r_bytes":"ŽÛ»Ál§U","r_string":"toudbtijkxiuiw","r_array":[],"o_boolean":{"boolean":true},"o_int":{"int":2021897912},"o_long":{"long":-7745727902201253591},"o_float":{"float":0.66644615},"o_double":{"double":0.9138997052428227},"o_bytes":{"bytes":"cE'}Dt¥ñëï\u001F­"},"o_string":{"string":"xudfovpciel"},"o_enum":{"Level1_2_Enum2":"ZERO"},"o_date":{"int":195702587},"o_timemillis":{"int":296596583},"o_timemicros":null,"o_timestampmillis":null,"o_timestampmicros":null},{"r_boolean":true,"r_int":-837260491,"r_long":-541392126536587776,"r_float":0.7651076,"r_double":0.949819429282796,"r_bytes":"ð°Sôð\u001Fõ","r_string":"qmurfvue","r_array":[],"o_boolean":null,"o_int":{"int":-2081496688},"o_long":null,"o_float":null,"o_double":{"double":0.9494417125842793},"o_bytes":null,"o_string":null,"o_enum":null,"o_date":null,"o_timemillis":null,"o_timemicros":{"long":-8318586660677058883},"o_timestampmillis":null,"o_timestampmicros":null}],"r_date":-1034544329,"r_timemillis":957654277,"r_timemicros":-5747280784561063786,"r_timestampmillis":-3512110788643036667,"r_timestampmicros":3476429970334345194,"o_boolean":null,"o_int":{"int":534076632},"o_long":{"long":-1420893890428711696},"o_float":{"float":0.7268391},"o_double":null,"o_bytes":{"bytes":"Lr–\nýÀ|¤’O"},"o_string":{"string":"cfuyqegckeitqwvwfisfaun"},"o_enum":{"Enum2":"ONE"},"o_date":null,"o_timemillis":null,"o_timemicros":null,"o_timestampmillis":null,"o_timestampmicros":null} -{"r_boolean":true,"r_int":-278854616,"r_long":9131767640654104347,"r_float":0.1353823,"r_double":0.45312319038761395,"r_bytes":"ã«","r_string":"iwx","r_record":{"r_boolean":false,"r_int":-1073885527,"r_long":7199744022849311053,"r_float":0.96173364,"r_double":0.6625634975505901,"r_bytes":"\u00026Üù£\u0014;","r_string":"ja","r_record":{"r_boolean":false,"r_int":1770477451,"r_long":-101856843316275954,"r_float":0.14507538,"r_double":0.4646579820213689,"r_bytes":"`úÏúìi§\u001D\u0011uùòn)","r_string":"chtfemliqbaefa","r_enum":"TWO","r_date":-472806148,"r_timemillis":649436758,"r_timemicros":6384937148423101044,"r_timestampmillis":-946053727738516495,"r_timestampmicros":-7290778568834595663,"o_boolean":null,"o_int":{"int":2005248377},"o_long":null,"o_float":{"float":0.6508808},"o_double":null,"o_bytes":{"bytes":"ÕȐ‰?\u0002-º•Åƒ]‡•i"},"o_string":null,"o_enum":{"Level2_1__1_Enum2":"ONE"},"o_date":{"int":477045285},"o_timemillis":null,"o_timemicros":null,"o_timestampmillis":null,"o_timestampmicros":{"long":1348278100126351787}},"r_enum":"TWO","r_date":-801636910,"r_timemillis":936379508,"r_timemicros":-3905761059302471708,"r_timestampmillis":-6247532537874873654,"r_timestampmicros":7224307488152339863,"r_array":[{"r_boolean":true,"r_int":1831675618,"r_long":-3089994193235920849,"r_float":0.102452934,"r_double":0.8921528497644059,"r_bytes":"»?¯™ãŸàgþ\u000E@","r_string":"umhgqaknhgxn","r_enum":"ONE","o_boolean":{"boolean":false},"o_int":{"int":1429452757},"o_long":null,"o_float":{"float":0.49530482},"o_double":null,"o_bytes":null,"o_string":null,"o_enum":{"Level2_1__2_Enum2":"TWO"},"o_date":{"int":-163336643},"o_timemillis":{"int":-1291934432},"o_timemicros":{"long":8390489424327051508},"o_timestampmillis":null,"o_timestampmicros":null},{"r_boolean":false,"r_int":2017139861,"r_long":2165004934023917611,"r_float":0.4162327,"r_double":0.09078018419960543,"r_bytes":"–1","r_string":"yrbiwdmxhowuklw","r_enum":"TWO","o_boolean":null,"o_int":null,"o_long":{"long":5609622680057927854},"o_float":{"float":0.13763577},"o_double":null,"o_bytes":null,"o_string":null,"o_enum":null,"o_date":null,"o_timemillis":{"int":-1038996723},"o_timemicros":null,"o_timestampmillis":{"long":5649854286701926270},"o_timestampmicros":null},{"r_boolean":false,"r_int":272402525,"r_long":225765267214488250,"r_float":0.6295022,"r_double":0.01846530724537776,"r_bytes":"D8Qgø+l\u000B","r_string":"eo","r_enum":"ZERO","o_boolean":null,"o_int":{"int":1659653147},"o_long":{"long":-3254842617836690709},"o_float":{"float":0.8130296},"o_double":null,"o_bytes":{"bytes":"ý_7ÿ=¸P_ï\u001AH\u001D©I›¡@K†u\u001Cåöˆ1µ\u0001Êä†ö\u0015jH+ÑÄãú\u000FùGr~dgMŒCÃe\u0013øû\u000E[yX¤Å£jÀµÍ§\u0006_á\u0000×Z|Fu\fo\u0002•\u001At&¿Ì\nFV\u0003\u0018«[©#ÍÚ®!ük–vo·\u0005o\u000B\u0018ÔèU2HÄ7úkþƒÝæ5\n…ð%RøÁäR"},"o_string":{"string":"ygeevgniklmwpnx"},"o_enum":{"Level2_1__2_Enum2":"ZERO"},"o_date":null,"o_timemillis":{"int":546234675},"o_timemicros":null,"o_timestampmillis":{"long":-4262274292926522939},"o_timestampmicros":null}]},"r_enum":"ONE","r_array":[{"r_boolean":true,"r_int":-869387281,"r_long":4840377490776776104,"r_float":0.9022208,"r_double":0.4810218711843136,"r_bytes":"­]\u0006ÚO¯Èð","r_string":"aqhgyqfunghfrw","r_array":[{"r_boolean":true,"r_int":-277799008,"r_long":6824671539007103893,"r_float":0.6613895,"r_double":0.4222354359213446,"r_bytes":"jæ¦O1","r_string":"h","r_enum":"ZERO","r_date":-983843707,"r_timemillis":1981205116,"r_timemicros":8832102538792261398,"r_timestampmillis":-1394938597019351100,"r_timestampmicros":4421143333722879556,"o_boolean":null,"o_int":{"int":-1546072973},"o_long":null,"o_float":null,"o_double":null,"o_bytes":null,"o_string":null,"o_enum":{"Level2_2_Enum2":"ZERO"},"o_date":{"int":-1913860132},"o_timemillis":null,"o_timemicros":null,"o_timestampmillis":null,"o_timestampmicros":{"long":-979383537445864522}},{"r_boolean":true,"r_int":-1321882766,"r_long":-8615707706408417121,"r_float":0.40309393,"r_double":0.9002397290065588,"r_bytes":"ˎ_ükÌ\"","r_string":"qakk","r_enum":"ONE","r_date":1437020155,"r_timemillis":2066909360,"r_timemicros":165955511360229217,"r_timestampmillis":5415836332437911039,"r_timestampmicros":344874300964642088,"o_boolean":{"boolean":false},"o_int":null,"o_long":null,"o_float":null,"o_double":{"double":0.1696254739873182},"o_bytes":null,"o_string":{"string":"fqjxquwrcnan"},"o_enum":null,"o_date":null,"o_timemillis":null,"o_timemicros":null,"o_timestampmillis":null,"o_timestampmicros":{"long":1483033160276626625}},{"r_boolean":false,"r_int":-1451841384,"r_long":6461880023155832734,"r_float":0.48283535,"r_double":0.0990879881723159,"r_bytes":"QÚ","r_string":"swsvfcjkovibec","r_enum":"ONE","r_date":373925341,"r_timemillis":1227881329,"r_timemicros":2839094766559428157,"r_timestampmillis":-2618387819680669813,"r_timestampmicros":-2200243521469057859,"o_boolean":null,"o_int":null,"o_long":null,"o_float":{"float":0.034443915},"o_double":null,"o_bytes":null,"o_string":{"string":""},"o_enum":null,"o_date":{"int":-295443522},"o_timemillis":{"int":1266128907},"o_timemicros":null,"o_timestampmillis":{"long":-6579346866559684176},"o_timestampmicros":{"long":-4270777947084228552}}],"o_boolean":{"boolean":true},"o_int":{"int":-1084049656},"o_long":{"long":2320775367448435757},"o_float":{"float":0.96713364},"o_double":{"double":0.9340781162097784},"o_bytes":null,"o_string":{"string":"lalrcjcrlapblug"},"o_enum":{"Level1_2_Enum2":"ONE"},"o_date":null,"o_timemillis":null,"o_timemicros":null,"o_timestampmillis":null,"o_timestampmicros":{"long":-620080717737355821}},{"r_boolean":true,"r_int":-780139525,"r_long":-3150835631172346254,"r_float":0.9249144,"r_double":0.8708836876508346,"r_bytes":"K\u001FŸeœ&H‰l\"üÌé","r_string":"hdhv","r_array":[],"o_boolean":{"boolean":true},"o_int":{"int":-958852847},"o_long":null,"o_float":null,"o_double":{"double":0.7359276563567478},"o_bytes":{"bytes":"bë~\u000E5\"uR¸"},"o_string":{"string":"ursmtwyuusohr"},"o_enum":{"Level1_2_Enum2":"ZERO"},"o_date":{"int":1462510110},"o_timemillis":null,"o_timemicros":null,"o_timestampmillis":null,"o_timestampmicros":{"long":5782313372657375120}},{"r_boolean":false,"r_int":1770901998,"r_long":6261872694029230157,"r_float":0.92777145,"r_double":0.3703462869028108,"r_bytes":"Á0Æ\"","r_string":"rwugdauivmio","r_array":[{"r_boolean":false,"r_int":-1843337590,"r_long":-7218708665611305966,"r_float":0.4264971,"r_double":0.11744569263352356,"r_bytes":"ÔfÓX&7â÷À>","r_string":"y","r_enum":"TWO","r_date":1298296414,"r_timemillis":2041797189,"r_timemicros":6609143205954423545,"r_timestampmillis":2271099008391824865,"r_timestampmicros":5691044364560857399,"o_boolean":{"boolean":false},"o_int":{"int":1821607035},"o_long":null,"o_float":{"float":0.8415289},"o_double":{"double":0.6086887583698112},"o_bytes":{"bytes":"n$ü´ht"},"o_string":null,"o_enum":null,"o_date":{"int":1444012412},"o_timemillis":null,"o_timemicros":{"long":1297236814665669467},"o_timestampmillis":null,"o_timestampmicros":null},{"r_boolean":true,"r_int":-1240218864,"r_long":3527152521671807428,"r_float":0.53760964,"r_double":0.9433892913614449,"r_bytes":"îvx<¤Z\u0007\u0007[","r_string":"e","r_enum":"ZERO","r_date":763680633,"r_timemillis":772308401,"r_timemicros":-3385109421775007412,"r_timestampmillis":-302842261498637911,"r_timestampmicros":319685037462904211,"o_boolean":null,"o_int":{"int":263933787},"o_long":null,"o_float":{"float":0.7548863},"o_double":null,"o_bytes":null,"o_string":{"string":"rexiyrfdopev"},"o_enum":{"Level2_2_Enum2":"ONE"},"o_date":null,"o_timemillis":null,"o_timemicros":null,"o_timestampmillis":null,"o_timestampmicros":null},{"r_boolean":true,"r_int":1928724991,"r_long":5016315073397718391,"r_float":0.850437,"r_double":0.4774545292645187,"r_bytes":"©ÀSºSv(","r_string":"verapltacqchcv","r_enum":"TWO","r_date":1826705702,"r_timemillis":-1947454259,"r_timemicros":1183642597874438328,"r_timestampmillis":8993854729707824849,"r_timestampmicros":-645844850630115351,"o_boolean":null,"o_int":null,"o_long":null,"o_float":null,"o_double":{"double":0.8916536308930486},"o_bytes":{"bytes":"?’{hÄ·øíÃÇåº}քñã;káßú²ÝVF‚še*NHe$\u0017m;É|\u000Fó\u0019¿š­sº©•q–\f¶<6\u0011W>™'?ãUµ}Ju„û¦Û¨|—\u000Eڀ˜Aõçcº\u0010>ŸòêÉ\u001E†\u0003"},"o_string":null,"o_enum":null,"o_date":null,"o_timemillis":null,"o_timemicros":null,"o_timestampmillis":null,"o_timestampmicros":null}],"o_boolean":{"boolean":false},"o_int":null,"o_long":{"long":47764627472416677},"o_float":null,"o_double":null,"o_bytes":null,"o_string":null,"o_enum":null,"o_date":null,"o_timemillis":null,"o_timemicros":null,"o_timestampmillis":null,"o_timestampmicros":{"long":990072315028026577}},{"r_boolean":false,"r_int":-1859088049,"r_long":-6189260061474952059,"r_float":0.28536803,"r_double":0.5258440403466965,"r_bytes":"¥~8\u0011¤‘}>i5","r_string":"ppnyfphpy","r_array":[{"r_boolean":false,"r_int":-104487287,"r_long":5085685950938109544,"r_float":0.9236327,"r_double":0.15406914186409482,"r_bytes":"VŠ÷Љ\u0006","r_string":"vemqwtgnowixvu","r_enum":"ZERO","r_date":-1521276365,"r_timemillis":120644461,"r_timemicros":1866943186178920523,"r_timestampmillis":-2097686474611212420,"r_timestampmicros":-4334082478846563971,"o_boolean":null,"o_int":{"int":-1928732167},"o_long":null,"o_float":null,"o_double":null,"o_bytes":null,"o_string":{"string":"pqih"},"o_enum":null,"o_date":null,"o_timemillis":{"int":611634287},"o_timemicros":{"long":3751628297129888552},"o_timestampmillis":{"long":-3183681035813453534},"o_timestampmicros":null},{"r_boolean":false,"r_int":938949883,"r_long":-6862991903414572449,"r_float":0.37652975,"r_double":0.06683205717345253,"r_bytes":"\u0005¡Û\u0015w","r_string":"jkm","r_enum":"ZERO","r_date":-577574451,"r_timemillis":-1114214595,"r_timemicros":-4109767779587586249,"r_timestampmillis":8409821365170496749,"r_timestampmicros":7334584822246657817,"o_boolean":null,"o_int":null,"o_long":null,"o_float":{"float":0.13262022},"o_double":{"double":0.34432695964802407},"o_bytes":{"bytes":"¡"},"o_string":null,"o_enum":null,"o_date":null,"o_timemillis":{"int":37487295},"o_timemicros":null,"o_timestampmillis":{"long":3032700731309858517},"o_timestampmicros":{"long":2111105003454517367}}],"o_boolean":{"boolean":true},"o_int":null,"o_long":{"long":1726553979513704778},"o_float":{"float":0.3671825},"o_double":{"double":0.7576413302042665},"o_bytes":{"bytes":"4's¿»j\u0006\u0002m\u0017"},"o_string":null,"o_enum":null,"o_date":{"int":-1882290972},"o_timemillis":{"int":-1069524237},"o_timemicros":null,"o_timestampmillis":null,"o_timestampmicros":{"long":-8381787050685992927}}],"r_date":-110502937,"r_timemillis":307405004,"r_timemicros":7281192306566278428,"r_timestampmillis":708774927089738380,"r_timestampmicros":-3937164905854726888,"o_boolean":null,"o_int":{"int":891654568},"o_long":{"long":3148835630757445745},"o_float":null,"o_double":null,"o_bytes":null,"o_string":null,"o_enum":{"Enum2":"ONE"},"o_date":null,"o_timemillis":null,"o_timemicros":null,"o_timestampmillis":null,"o_timestampmicros":null} -{"r_boolean":false,"r_int":992436482,"r_long":1604445234834404014,"r_float":0.55032927,"r_double":0.7160077150331945,"r_bytes":"§ÿ!g>ӟ","r_string":"aovi","r_record":{"r_boolean":true,"r_int":-1673292908,"r_long":-72043462006707333,"r_float":0.5193306,"r_double":0.3642270642326889,"r_bytes":";dd ","r_string":"eqtyd","r_record":{"r_boolean":false,"r_int":-495616664,"r_long":3215261469387424074,"r_float":0.31573033,"r_double":0.8417502041395168,"r_bytes":"\u0000¿·ûr)\u0017P","r_string":"kpnnviqsktwh","r_enum":"ONE","r_date":-1858594872,"r_timemillis":907201745,"r_timemicros":1783198272432536541,"r_timestampmillis":-3229688210813717472,"r_timestampmicros":-2337310066352379910,"o_boolean":{"boolean":false},"o_int":null,"o_long":null,"o_float":{"float":0.56560504},"o_double":{"double":0.22885301010916448},"o_bytes":null,"o_string":{"string":"hpsruyrtttmyq"},"o_enum":{"Level2_1__1_Enum2":"TWO"},"o_date":{"int":329430778},"o_timemillis":{"int":133270707},"o_timemicros":{"long":2758149951991460942},"o_timestampmillis":{"long":1078576726892261830},"o_timestampmicros":null},"r_enum":"TWO","r_date":-1009376542,"r_timemillis":457238512,"r_timemicros":-8094254234877267871,"r_timestampmillis":5202838023840877431,"r_timestampmicros":-5225431861529217413,"r_array":[{"r_boolean":false,"r_int":1850962259,"r_long":-4643016318388558521,"r_float":0.3791592,"r_double":0.7128084314499163,"r_bytes":" qÓÄ\u0002Õ²","r_string":"plbn","r_enum":"ZERO","o_boolean":null,"o_int":{"int":1494934858},"o_long":null,"o_float":{"float":0.8160818},"o_double":{"double":0.8873142544520637},"o_bytes":null,"o_string":{"string":"oh"},"o_enum":null,"o_date":{"int":-908793631},"o_timemillis":null,"o_timemicros":{"long":3645050853589170135},"o_timestampmillis":{"long":5274523177503498262},"o_timestampmicros":{"long":6775998086780023616}},{"r_boolean":true,"r_int":-358298989,"r_long":-6976592769489624962,"r_float":0.22595859,"r_double":0.13909633191557358,"r_bytes":".D\u000F¼\u0012;G#„","r_string":"jqbbcxg","r_enum":"ONE","o_boolean":{"boolean":false},"o_int":{"int":-366589011},"o_long":null,"o_float":null,"o_double":{"double":0.9351645950088966},"o_bytes":null,"o_string":{"string":"enq"},"o_enum":null,"o_date":{"int":1565960375},"o_timemillis":null,"o_timemicros":null,"o_timestampmillis":{"long":3569167553285112253},"o_timestampmicros":{"long":2864146530177868724}},{"r_boolean":false,"r_int":-833355456,"r_long":-5979607236418392707,"r_float":0.35357684,"r_double":0.8104445556507354,"r_bytes":"ëkª×F\u000F€X‰6","r_string":"vpohnfsfhwet","r_enum":"TWO","o_boolean":null,"o_int":{"int":-1032727269},"o_long":null,"o_float":{"float":0.1124686},"o_double":{"double":0.8679249825553629},"o_bytes":{"bytes":"è\u0018¥æÖ\u0017(\u00163Š9Òñ"},"o_string":{"string":"pdl"},"o_enum":{"Level2_1__2_Enum2":"ZERO"},"o_date":null,"o_timemillis":null,"o_timemicros":{"long":-266239347242263823},"o_timestampmillis":null,"o_timestampmicros":{"long":7510980623163545806}}]},"r_enum":"ONE","r_array":[{"r_boolean":true,"r_int":1399704700,"r_long":-3827094655092422062,"r_float":0.2500338,"r_double":0.5318887751533299,"r_bytes":"…s\u001Bj\u001EºHÔ.ý\u000Bg","r_string":"ysu","r_array":[],"o_boolean":null,"o_int":{"int":-937077},"o_long":null,"o_float":{"float":0.60573477},"o_double":null,"o_bytes":null,"o_string":null,"o_enum":null,"o_date":{"int":-915748715},"o_timemillis":null,"o_timemicros":null,"o_timestampmillis":null,"o_timestampmicros":null},{"r_boolean":true,"r_int":946604067,"r_long":2833231707049614345,"r_float":0.520361,"r_double":0.12638405943644948,"r_bytes":"¡×qOé·åŽ\u0006¤\u001B€¼®","r_string":"ytupqa","r_array":[],"o_boolean":{"boolean":false},"o_int":{"int":329606900},"o_long":{"long":-3755747512949789071},"o_float":null,"o_double":null,"o_bytes":null,"o_string":{"string":"nqacwoyfqt"},"o_enum":null,"o_date":null,"o_timemillis":null,"o_timemicros":{"long":-2472976230678016898},"o_timestampmillis":null,"o_timestampmicros":{"long":-6878948566429252794}},{"r_boolean":true,"r_int":1609462179,"r_long":-1410665529810024854,"r_float":0.048805594,"r_double":0.4298224276339202,"r_bytes":"¯","r_string":"hdetdbgvfridathvrybdtdopvjbcpnshumfearkejcukuatehjnbhumbgfxkqx","r_array":[],"o_boolean":{"boolean":false},"o_int":{"int":-143465418},"o_long":{"long":6636438828204318282},"o_float":null,"o_double":null,"o_bytes":{"bytes":"\r§ˆ]T¸×~=Ùº"},"o_string":null,"o_enum":null,"o_date":{"int":693261130},"o_timemillis":{"int":-736620552},"o_timemicros":null,"o_timestampmillis":null,"o_timestampmicros":null}],"r_date":1411802051,"r_timemillis":-1815174199,"r_timemicros":8062366251899631079,"r_timestampmillis":1640374413900116859,"r_timestampmicros":-7704477051233687592,"o_boolean":null,"o_int":{"int":-2084077091},"o_long":{"long":716908775989813428},"o_float":{"float":0.13149351},"o_double":{"double":0.3722342435195759},"o_bytes":{"bytes":"ç°"},"o_string":{"string":"nosnl"},"o_enum":null,"o_date":{"int":-256957256},"o_timemillis":null,"o_timemicros":{"long":1276292564411518473},"o_timestampmillis":null,"o_timestampmicros":null} -{"r_boolean":true,"r_int":582782906,"r_long":8780071399741554397,"r_float":0.55820364,"r_double":0.9145104968254625,"r_bytes":"óÿ÷ç—\u000E¬VtY‡ç?\u0007¡","r_string":"b","r_record":{"r_boolean":true,"r_int":-381506221,"r_long":-621186860791937201,"r_float":0.30673444,"r_double":0.8906049370234324,"r_bytes":"F-å׊","r_string":"ndtxdeboo","r_record":{"r_boolean":true,"r_int":-1050683151,"r_long":7843344634295393161,"r_float":0.011974692,"r_double":0.5790476813586307,"r_bytes":"d›\u0017‘\u0019","r_string":"vfaqkvnpbcpmnjc","r_enum":"ONE","r_date":1371658611,"r_timemillis":1112354506,"r_timemicros":1304149807498813916,"r_timestampmillis":-5439581135862240621,"r_timestampmicros":1801040945479697537,"o_boolean":null,"o_int":{"int":-1589759182},"o_long":{"long":-5738299868785106067},"o_float":null,"o_double":null,"o_bytes":{"bytes":"ÙEå§\u001A˜åçõ¢š"},"o_string":null,"o_enum":{"Level2_1__1_Enum2":"ZERO"},"o_date":null,"o_timemillis":null,"o_timemicros":{"long":6361764431001125253},"o_timestampmillis":null,"o_timestampmicros":{"long":2060196068194675275}},"r_enum":"TWO","r_date":2027685062,"r_timemillis":-858033065,"r_timemicros":-7665018259987224860,"r_timestampmillis":-5071688515374387271,"r_timestampmicros":-6913869590453056261,"r_array":[{"r_boolean":true,"r_int":1383040982,"r_long":-2133582288117711961,"r_float":0.59795696,"r_double":0.0799887097559756,"r_bytes":"_ƒ","r_string":"hbmgvuspkefvn","r_enum":"TWO","o_boolean":{"boolean":true},"o_int":null,"o_long":null,"o_float":null,"o_double":null,"o_bytes":{"bytes":"u"},"o_string":null,"o_enum":{"Level2_1__2_Enum2":"ZERO"},"o_date":{"int":-2025491324},"o_timemillis":null,"o_timemicros":{"long":-6061775527311443604},"o_timestampmillis":{"long":160325938981053475},"o_timestampmicros":{"long":7867190688582142602}},{"r_boolean":true,"r_int":857029374,"r_long":-1809977876148533136,"r_float":0.43809956,"r_double":0.16513121794150265,"r_bytes":"ÿG\u000FøÆ\u0019ÁsLDf-`ô","r_string":"jbyyhwinmt","r_enum":"ZERO","o_boolean":null,"o_int":null,"o_long":{"long":8892553912019575926},"o_float":{"float":0.4783572},"o_double":null,"o_bytes":{"bytes":"\u0001a(–ÓâÐä"},"o_string":{"string":"vsheeshumye"},"o_enum":null,"o_date":null,"o_timemillis":{"int":-969060472},"o_timemicros":null,"o_timestampmillis":null,"o_timestampmicros":null}]},"r_enum":"TWO","r_array":[{"r_boolean":false,"r_int":-1824349486,"r_long":-1240518421349468447,"r_float":0.03396368,"r_double":0.9611048827311471,"r_bytes":"","r_string":"aanbnmhb","r_array":[],"o_boolean":{"boolean":false},"o_int":null,"o_long":{"long":2764530631957728562},"o_float":null,"o_double":null,"o_bytes":{"bytes":"j7蕵"},"o_string":null,"o_enum":null,"o_date":null,"o_timemillis":null,"o_timemicros":{"long":-2569773026087548103},"o_timestampmillis":{"long":-40998758109091778},"o_timestampmicros":null},{"r_boolean":true,"r_int":1730644189,"r_long":-5534320198540370030,"r_float":0.28210986,"r_double":0.6987166027939494,"r_bytes":"P²q\"","r_string":"xghrkwobk","r_array":[],"o_boolean":{"boolean":true},"o_int":{"int":33364086},"o_long":{"long":-3722017272218917193},"o_float":null,"o_double":null,"o_bytes":null,"o_string":{"string":"tfsbtoecpn"},"o_enum":{"Level1_2_Enum2":"ZERO"},"o_date":null,"o_timemillis":{"int":1262929282},"o_timemicros":null,"o_timestampmillis":{"long":-8575581451542227516},"o_timestampmicros":{"long":-5345144364653301335}}],"r_date":-440369062,"r_timemillis":1903747845,"r_timemicros":-2369593124433761649,"r_timestampmillis":-3069819920095446141,"r_timestampmicros":1687754060652953868,"o_boolean":null,"o_int":{"int":1445674125},"o_long":null,"o_float":null,"o_double":null,"o_bytes":{"bytes":"?lüzŽ=HV]\u0015\u0018î"},"o_string":{"string":"hvrdkvkgssgw"},"o_enum":null,"o_date":{"int":1342119289},"o_timemillis":null,"o_timemicros":{"long":7074699273863473532},"o_timestampmillis":null,"o_timestampmicros":{"long":-3681007479605441691}} -{"r_boolean":false,"r_int":-87081112,"r_long":-2782919110082944425,"r_float":0.9519196,"r_double":0.2007317152666186,"r_bytes":"°¶dUžË\u0013P","r_string":"ii","r_record":{"r_boolean":false,"r_int":-1123609555,"r_long":3971260576666984706,"r_float":0.17667544,"r_double":0.364468487988852,"r_bytes":"ûTaäˆ\u0019ËÿޚÙö¥ÇL—\u0019ß$¼RîçØF··e2Ö_ÍB:㯌˜)^[€uÁ\u001AטÌV\\LÊ\u0012A1/Y\u000F‰§ð\u000F\u0005\u0015Ÿ}Ct\\\u0013Î¹¦]I,\tˆÃœª’2ãs{¯Ïñ_©x–Ñ®E\b»;\u000E1Ѹ¤J\u0011Nþõ\u0014–&1k,Y(JÈ*ÐþÓ\u0018QI\u0019¨Eƒ&ÚÀªÊÂëüZÐ)‹tŽÑ×\u000Bbî3Ùq¿ŽHݾ¢\u001Ci®2!\u001F’Z:F)ˆL;úÞ\u0010‡-]˜ ½9?Cù‹Õß","r_string":"yqrjir","r_record":{"r_boolean":false,"r_int":-1382521166,"r_long":4569531476769439932,"r_float":0.5270693,"r_double":0.4147756663827492,"r_bytes":"‡Ö\bð7","r_string":"eepvulonixtulhjidbhsnnrsydtordlpicktkoqpcxnfofxywnbpmvnwjrebaxevhvcidffcdqnonqnawvbvldmiaroemvykqdoohxlvmovjhjoacdtnnvymjpmvqhomakcaakhsuiheqdxclxwcbpivcxstirmiwdnjmyjfjsvnhgnpgpsdyfpqyyejdsidgqacwrxrriqw","r_enum":"ZERO","r_date":-339844977,"r_timemillis":-551908630,"r_timemicros":6226736289965996727,"r_timestampmillis":-3340497005044349009,"r_timestampmicros":5454000844632508096,"o_boolean":null,"o_int":null,"o_long":{"long":2361976145149221474},"o_float":null,"o_double":null,"o_bytes":null,"o_string":null,"o_enum":{"Level2_1__1_Enum2":"TWO"},"o_date":{"int":1148396626},"o_timemillis":{"int":774265396},"o_timemicros":{"long":5064979269552683989},"o_timestampmillis":null,"o_timestampmicros":null},"r_enum":"TWO","r_date":1904851281,"r_timemillis":937413496,"r_timemicros":-6608563093082372298,"r_timestampmillis":169916349449418736,"r_timestampmicros":-2690781785381759824,"r_array":[{"r_boolean":true,"r_int":210827088,"r_long":-6573157534316487630,"r_float":0.8776786,"r_double":0.24918096425855896,"r_bytes":"ìj²‹","r_string":"lyyctwpaxfnxyg","r_enum":"ONE","o_boolean":null,"o_int":null,"o_long":{"long":-6151263369733828089},"o_float":null,"o_double":null,"o_bytes":{"bytes":"²æ\u0019—J\tµžs\u001A"},"o_string":null,"o_enum":null,"o_date":null,"o_timemillis":null,"o_timemicros":null,"o_timestampmillis":{"long":5378826391655982886},"o_timestampmicros":{"long":5239849566826782906}},{"r_boolean":true,"r_int":-12933216,"r_long":-6489913569610341825,"r_float":0.22199577,"r_double":0.02755724556662764,"r_bytes":"_J‡ÄލíLwõ\u001El","r_string":"ap","r_enum":"TWO","o_boolean":null,"o_int":null,"o_long":null,"o_float":{"float":0.7431627},"o_double":null,"o_bytes":{"bytes":"8hÿgV‡ân`ÕZ†?¬\u0015\u001Açƒ8ág댹\u000FÔ\\Ayi:t/\u001FåÖiXz9’›µãœîTÁވêÞSexJ\u001B\\ŠB”E@ßã; %ÇeV!Öäþì\u0002è\u001D÷éÉÓ&·y¼Ê¦Û\u0007Iجm·T6\u0005ö\u0012(nP$\u0019äa\"\u001ACý¡Ö€\u0012\rñ\u001E¯ã"},"o_string":{"string":""},"o_enum":{"Level2_1__2_Enum2":"TWO"},"o_date":{"int":-1692348695},"o_timemillis":null,"o_timemicros":{"long":-3325993079244440205},"o_timestampmillis":null,"o_timestampmicros":null},{"r_boolean":false,"r_int":986429970,"r_long":-4794391546845342500,"r_float":0.25864804,"r_double":0.4951648193592699,"r_bytes":"Ä~—\u0002QV\u001DßǖˆÓœ\u0006","r_string":"hdtbq","r_enum":"TWO","o_boolean":{"boolean":true},"o_int":{"int":-659692950},"o_long":null,"o_float":{"float":0.1994605},"o_double":{"double":0.4535795841681103},"o_bytes":null,"o_string":null,"o_enum":null,"o_date":null,"o_timemillis":null,"o_timemicros":{"long":673861832531761805},"o_timestampmillis":{"long":4806458682992957233},"o_timestampmicros":{"long":-3647260234694530220}},{"r_boolean":true,"r_int":1889273753,"r_long":1847964238670351254,"r_float":0.54702234,"r_double":0.46391415860659224,"r_bytes":"\u0000š\u0015wÏ\u000B”`º","r_string":"rlxooylmloiwjeo","r_enum":"ONE","o_boolean":null,"o_int":null,"o_long":{"long":-7886886011872050913},"o_float":{"float":0.9991471},"o_double":null,"o_bytes":{"bytes":"ö"},"o_string":null,"o_enum":{"Level2_1__2_Enum2":"ZERO"},"o_date":null,"o_timemillis":null,"o_timemicros":null,"o_timestampmillis":{"long":-6780077286475321518},"o_timestampmicros":null}]},"r_enum":"TWO","r_array":[{"r_boolean":false,"r_int":1820999505,"r_long":-1298595084612490819,"r_float":0.7631065,"r_double":0.2651913248812777,"r_bytes":"¡Ô","r_string":"gyyt","r_array":[{"r_boolean":false,"r_int":489013818,"r_long":-8953297132681783919,"r_float":0.44183564,"r_double":0.31562161638993924,"r_bytes":"tÅû–!Lº\b¸´","r_string":"he","r_enum":"ZERO","r_date":1009226815,"r_timemillis":315012628,"r_timemicros":2504742222700757557,"r_timestampmillis":3421883989630702741,"r_timestampmicros":7416516530784336298,"o_boolean":{"boolean":false},"o_int":{"int":2065954327},"o_long":{"long":968093886819606546},"o_float":{"float":0.21894902},"o_double":null,"o_bytes":null,"o_string":null,"o_enum":{"Level2_2_Enum2":"TWO"},"o_date":{"int":-165075776},"o_timemillis":null,"o_timemicros":{"long":-2035574951500649431},"o_timestampmillis":null,"o_timestampmicros":null},{"r_boolean":false,"r_int":738958655,"r_long":-8183091671986937296,"r_float":0.6176063,"r_double":0.02852768752778867,"r_bytes":"|ÒZ‹x;aú\f\u0005\u001B€“","r_string":"pyuthdukikfny","r_enum":"ZERO","r_date":592649534,"r_timemillis":-110187682,"r_timemicros":-3684237596595373730,"r_timestampmillis":-4625186723767337602,"r_timestampmicros":-6059427968078771741,"o_boolean":{"boolean":true},"o_int":{"int":1277808603},"o_long":null,"o_float":{"float":0.5763814},"o_double":{"double":0.6068520045317333},"o_bytes":null,"o_string":null,"o_enum":null,"o_date":null,"o_timemillis":null,"o_timemicros":{"long":-4012242673325934991},"o_timestampmillis":null,"o_timestampmicros":{"long":7975251940303635735}},{"r_boolean":true,"r_int":-1706241339,"r_long":1879461049195555273,"r_float":0.29875928,"r_double":0.9536626621753382,"r_bytes":"ðNÎ\u0015àYæ","r_string":"pjkpwpyeuftcdajvpqdkggv","r_enum":"ONE","r_date":-1636038585,"r_timemillis":-863366259,"r_timemicros":-7987165380157130813,"r_timestampmillis":-160415723193247746,"r_timestampmicros":2713755057744139798,"o_boolean":null,"o_int":{"int":1514382463},"o_long":null,"o_float":{"float":0.19234765},"o_double":null,"o_bytes":null,"o_string":{"string":"okmor"},"o_enum":{"Level2_2_Enum2":"TWO"},"o_date":{"int":641652911},"o_timemillis":null,"o_timemicros":{"long":4848564348319990623},"o_timestampmillis":{"long":426461525010230648},"o_timestampmicros":{"long":2047195717061161521}}],"o_boolean":null,"o_int":null,"o_long":null,"o_float":{"float":0.7636925},"o_double":null,"o_bytes":null,"o_string":null,"o_enum":{"Level1_2_Enum2":"ONE"},"o_date":{"int":-480664706},"o_timemillis":null,"o_timemicros":null,"o_timestampmillis":null,"o_timestampmicros":null},{"r_boolean":false,"r_int":-207323294,"r_long":-8016470689177129289,"r_float":0.5123167,"r_double":0.1691647596653979,"r_bytes":"y^T","r_string":"prmx","r_array":[{"r_boolean":false,"r_int":-1579527251,"r_long":7600069970705939067,"r_float":0.62109154,"r_double":0.48911857624562893,"r_bytes":"ãƒÍ‘","r_string":"knhrdtdarc","r_enum":"ZERO","r_date":-952127556,"r_timemillis":-354107212,"r_timemicros":3846511142463629903,"r_timestampmillis":-4832705061101931710,"r_timestampmicros":-1242562750441711423,"o_boolean":{"boolean":true},"o_int":{"int":1859739513},"o_long":null,"o_float":null,"o_double":{"double":0.2348166389798485},"o_bytes":null,"o_string":null,"o_enum":null,"o_date":null,"o_timemillis":null,"o_timemicros":{"long":5738544926305207628},"o_timestampmillis":null,"o_timestampmicros":{"long":-6452253225008277513}},{"r_boolean":true,"r_int":386489092,"r_long":7763486570823798290,"r_float":0.4439131,"r_double":0.08136593950405224,"r_bytes":"ôIë¿K•úŸÔVšµ\u0002Y£‚Ï","r_string":"","r_array":[],"o_boolean":{"boolean":true},"o_int":{"int":1632336765},"o_long":null,"o_float":{"float":0.35795635},"o_double":null,"o_bytes":null,"o_string":{"string":"ggnlqwsuuuyyrq"},"o_enum":null,"o_date":null,"o_timemillis":{"int":-525822366},"o_timemicros":null,"o_timestampmillis":{"long":2937498204694851754},"o_timestampmicros":null},{"r_boolean":false,"r_int":-570493687,"r_long":7908186986474014791,"r_float":0.72331566,"r_double":0.6100909372363238,"r_bytes":"ª2","r_string":"owvbon","r_array":[{"r_boolean":true,"r_int":706345228,"r_long":-5989642079403474845,"r_float":0.9395557,"r_double":0.8489193835514538,"r_bytes":"ý(","r_string":"lgwryqokpjhkvib","r_enum":"TWO","r_date":876780924,"r_timemillis":1137765003,"r_timemicros":-8251927169760978917,"r_timestampmillis":2874013534078272798,"r_timestampmicros":-4910433242002767777,"o_boolean":{"boolean":false},"o_int":null,"o_long":{"long":651884828524781629},"o_float":null,"o_double":null,"o_bytes":{"bytes":"lF8è"},"o_string":null,"o_enum":{"Level2_2_Enum2":"TWO"},"o_date":null,"o_timemillis":{"int":967818579},"o_timemicros":{"long":7979146448564807161},"o_timestampmillis":{"long":3651824195560979303},"o_timestampmicros":{"long":7351796504855035546}},{"r_boolean":true,"r_int":2061742921,"r_long":1226832427673118656,"r_float":0.8770389,"r_double":0.5630005276542299,"r_bytes":"®z¡àe­¤“Gÿµ²\u001A","r_string":"uvhrtjdbmodfui","r_enum":"ONE","r_date":-1872499685,"r_timemillis":-1700728944,"r_timemicros":-9101863176683656737,"r_timestampmillis":2716801273237190009,"r_timestampmicros":3153837978184586352,"o_boolean":null,"o_int":{"int":2127399689},"o_long":null,"o_float":{"float":0.8517393},"o_double":{"double":0.6727006212031167},"o_bytes":{"bytes":"ÙñE¨hÆIC×Áp"},"o_string":{"string":"hlnhoirlrvscgwkqdoyfctvrtcjoydxasmwriqgvnuvprfjppbmavlbnnuwdarkauofttrdmaenlxyououmvquwgqhtimgyqejlktnktssdsuvkbdsekqxjunvkmeueanednlrfcvgcgursceochujmxjlylcqoydjilsthmolaivfuxskorllrveglmefbpjvcnjxxrssvxymjgjeduuvpln"},"o_enum":null,"o_date":{"int":-121468821},"o_timemillis":{"int":-1932915773},"o_timemicros":{"long":-538527198195533452},"o_timestampmillis":null,"o_timestampmicros":null},{"r_boolean":false,"r_int":-1946656479,"r_long":-7925918043824272759,"r_float":0.09246218,"r_double":0.7653170518518055,"r_bytes":"w_¤7û’\u000F\u0006Û@","r_string":"maejcfmmubp","r_enum":"ONE","r_date":-106729101,"r_timemillis":-1806721668,"r_timemicros":5067251783904730945,"r_timestampmillis":9118156707924463523,"r_timestampmicros":-4664470817626813167,"o_boolean":null,"o_int":null,"o_long":null,"o_float":{"float":0.9819936},"o_double":{"double":0.35824555105558065},"o_bytes":null,"o_string":null,"o_enum":null,"o_date":{"int":1008911244},"o_timemillis":null,"o_timemicros":{"long":-7638327801016897889},"o_timestampmillis":{"long":7466306261691370477},"o_timestampmicros":{"long":2661917533699527225}}],"o_boolean":null,"o_int":null,"o_long":null,"o_float":{"float":0.6582099},"o_double":null,"o_bytes":null,"o_string":{"string":"s"},"o_enum":null,"o_date":{"int":-671795921},"o_timemillis":null,"o_timemicros":{"long":3869958620865426381},"o_timestampmillis":null,"o_timestampmicros":{"long":-7160124800104470224}},{"r_boolean":false,"r_int":-1292127824,"r_long":5804690621822012225,"r_float":0.5832856,"r_double":0.5209281039672727,"r_bytes":"ى´/Brý(ü","r_string":"krmyd","r_array":[{"r_boolean":false,"r_int":497517329,"r_long":-2272506321840246747,"r_float":0.31997317,"r_double":0.6706229765044842,"r_bytes":"\u001EÆx*jp€Ü\tþ","r_string":"u","r_enum":"ZERO","r_date":1774677757,"r_timemillis":-1350576823,"r_timemicros":7463655440496655268,"r_timestampmillis":8467978047244059884,"r_timestampmicros":-7359371128113868773,"o_boolean":{"boolean":true},"o_int":null,"o_long":null,"o_float":{"float":0.10773069},"o_double":{"double":0.6845621067289169},"o_bytes":{"bytes":"0¼aË3¾@\u0014‰"},"o_string":null,"o_enum":null,"o_date":null,"o_timemillis":null,"o_timemicros":{"long":-1676225686207385311},"o_timestampmillis":null,"o_timestampmicros":null},{"r_boolean":true,"r_int":1920458969,"r_long":5883233564574469675,"r_float":0.042988002,"r_double":0.8955035396816154,"r_bytes":"*Ô±»YL*}û{íÊ®pRJ^v´\u0016~:\u000E•5¹á`GŽÏ§+p\n{”+E\f̼^\n7K{D–OcúG² wEMp[\u0003ŒÚ‰W›W)œ\u0019Ó\u0015p‚6!\u0003OÒ%;cƒ„Jœö\u0015„_»©•(µÍßÅ,XñÀ„dÎíJgfv’—\u0018\u001AŸØDJU»¶IÿT¿¡\u0005ãÜK\u001Ek'\u001Eàe. -ÿŽœ5£Ú)búÒLž\u001C<¢St\u0007ïæm¬ò\u0019ðYö¼¡ŠÌõ;™\u0016e&\u0018\rÕÝm,ÂvÆJP¥V׉t&å‡","r_string":"uq","r_enum":"ONE","r_date":-1039161086,"r_timemillis":341948168,"r_timemicros":-5371606890587323658,"r_timestampmillis":-8451110668322337228,"r_timestampmicros":-7298772954856213392,"o_boolean":{"boolean":true},"o_int":null,"o_long":null,"o_float":null,"o_double":{"double":0.12258339070430002},"o_bytes":{"bytes":"âm/+Šú!+"},"o_string":{"string":"raigct"},"o_enum":{"Level2_2_Enum2":"ONE"},"o_date":null,"o_timemillis":null,"o_timemicros":{"long":-183697023254984871},"o_timestampmillis":null,"o_timestampmicros":null}],"o_boolean":{"boolean":true},"o_int":null,"o_long":{"long":4082066775757042573},"o_float":{"float":0.8799999},"o_double":{"double":0.1522810161195981},"o_bytes":{"bytes":"ã^šwÇ\u0003†>)5RÐÌ"},"o_string":null,"o_enum":{"Level1_2_Enum2":"TWO"},"o_date":{"int":1093416998},"o_timemillis":{"int":-1514951281},"o_timemicros":null,"o_timestampmillis":{"long":3878463966595436162},"o_timestampmicros":null}],"r_date":187199811,"r_timemillis":909183115,"r_timemicros":7415843082573406627,"r_timestampmillis":8664255689225156380,"r_timestampmicros":3017593602702774066,"o_boolean":null,"o_int":null,"o_long":{"long":-8005139379502849615},"o_float":null,"o_double":{"double":0.4674024069310979},"o_bytes":{"bytes":"Ci\u001F\rјՄ©¼ç"},"o_string":null,"o_enum":null,"o_date":null,"o_timemillis":null,"o_timemicros":null,"o_timestampmillis":{"long":-1277023519050204825},"o_timestampmicros":null} -{"r_boolean":true,"r_int":1829848260,"r_long":6651519221443491896,"r_float":0.95226705,"r_double":0.5513275968768078,"r_bytes":"","r_string":"qnlhjoqmpojmqf","r_record":{"r_boolean":false,"r_int":1693950351,"r_long":5734412293900670615,"r_float":0.40098357,"r_double":0.44061910526113457,"r_bytes":"&Ï‰","r_string":"ijlpiwjnfhbwyr","r_record":{"r_boolean":false,"r_int":1694810233,"r_long":2062801995859359833,"r_float":0.67401654,"r_double":0.8140251443215419,"r_bytes":"ño0J¯ãM\u0017\u0019","r_string":"uthvafjytcqicc","r_enum":"TWO","r_date":-1990833120,"r_timemillis":-2088672009,"r_timemicros":7541919711089390551,"r_timestampmillis":-631098786251807637,"r_timestampmicros":-530731870680233733,"o_boolean":null,"o_int":null,"o_long":{"long":-7193625029470522599},"o_float":null,"o_double":null,"o_bytes":{"bytes":"ÒA–‰8;òk/¬¢]"},"o_string":null,"o_enum":{"Level2_1__1_Enum2":"ONE"},"o_date":{"int":1605189081},"o_timemillis":null,"o_timemicros":{"long":7272025734761696533},"o_timestampmillis":null,"o_timestampmicros":{"long":-5215605046799340612}},"r_enum":"TWO","r_date":459748635,"r_timemillis":-763033330,"r_timemicros":1470199910587976188,"r_timestampmillis":-6974330448302768082,"r_timestampmicros":667498301829137601,"r_array":[{"r_boolean":true,"r_int":-118737679,"r_long":2730544335990372277,"r_float":0.74592775,"r_double":0.25654003595964525,"r_bytes":"¦‹","r_string":"lad","r_enum":"TWO","o_boolean":null,"o_int":{"int":-1350001236},"o_long":null,"o_float":{"float":0.11684269},"o_double":null,"o_bytes":{"bytes":"ƒ)l—gc"},"o_string":{"string":"mqrbnng"},"o_enum":null,"o_date":{"int":1137293058},"o_timemillis":null,"o_timemicros":null,"o_timestampmillis":{"long":-794746776488998097},"o_timestampmicros":{"long":-7514373695537497019}},{"r_boolean":false,"r_int":1476459783,"r_long":1667707085844136353,"r_float":0.8664216,"r_double":0.9227847137914698,"r_bytes":"$²&n¾Iöÿæ","r_string":"osuv","r_enum":"ZERO","o_boolean":{"boolean":false},"o_int":{"int":-444941411},"o_long":null,"o_float":null,"o_double":{"double":0.8621036581848843},"o_bytes":null,"o_string":{"string":"lmtbjfnsetga"},"o_enum":null,"o_date":{"int":72293794},"o_timemillis":null,"o_timemicros":null,"o_timestampmillis":{"long":-5677739181874750674},"o_timestampmicros":null},{"r_boolean":false,"r_int":-1666628915,"r_long":-3138417128733562280,"r_float":0.68079686,"r_double":0.528895581124813,"r_bytes":"辡~“™g1´Rò","r_string":"lgek","r_enum":"ZERO","o_boolean":null,"o_int":{"int":-1555069229},"o_long":null,"o_float":{"float":0.9315078},"o_double":{"double":0.7373947540823615},"o_bytes":null,"o_string":{"string":"rvcnt"},"o_enum":{"Level2_1__2_Enum2":"TWO"},"o_date":null,"o_timemillis":null,"o_timemicros":null,"o_timestampmillis":{"long":5848118994510740437},"o_timestampmicros":null}]},"r_enum":"ZERO","r_array":[{"r_boolean":true,"r_int":-28532095,"r_long":-4590425654433260507,"r_float":0.47138113,"r_double":0.8114570957729921,"r_bytes":"¡{=","r_string":"fbfv","r_array":[],"o_boolean":null,"o_int":null,"o_long":{"long":7601218787097195748},"o_float":{"float":0.89496064},"o_double":null,"o_bytes":{"bytes":"eúLç81¶ÙËá "},"o_string":null,"o_enum":null,"o_date":null,"o_timemillis":null,"o_timemicros":{"long":-9176708875914361300},"o_timestampmillis":{"long":-4771454225853434790},"o_timestampmicros":null},{"r_boolean":true,"r_int":132225800,"r_long":-6099062405306011946,"r_float":0.29803485,"r_double":0.028895313686881918,"r_bytes":"²\u00018!ÚX\u0004™","r_string":"nommahmm","r_array":[],"o_boolean":{"boolean":false},"o_int":null,"o_long":{"long":-2752538585639309758},"o_float":{"float":0.4079228},"o_double":null,"o_bytes":null,"o_string":null,"o_enum":null,"o_date":{"int":-1232136776},"o_timemillis":{"int":-281170202},"o_timemicros":null,"o_timestampmillis":{"long":-1492217006319598821},"o_timestampmicros":{"long":-7083844636177421111}},{"r_boolean":false,"r_int":2146078319,"r_long":9054083793279109117,"r_float":0.72215873,"r_double":0.19672792788248572,"r_bytes":"Ú:ꨆ\\ÚÒ","r_string":"xaixdvbjgtxcvru","r_array":[{"r_boolean":false,"r_int":-1551140620,"r_long":-8129446894162126139,"r_float":0.11165804,"r_double":0.7725251848108323,"r_bytes":"¿\u0010˜ä ÃïUN½Á”","r_string":"soxbymqhvfu","r_enum":"ONE","r_date":1831587460,"r_timemillis":-1461720663,"r_timemicros":324137215802113442,"r_timestampmillis":4842357559509271338,"r_timestampmicros":3655399867388112166,"o_boolean":null,"o_int":null,"o_long":null,"o_float":null,"o_double":{"double":0.7504278399834359},"o_bytes":null,"o_string":{"string":"fkerbun"},"o_enum":{"Level2_2_Enum2":"ONE"},"o_date":{"int":748075250},"o_timemillis":{"int":320266939},"o_timemicros":null,"o_timestampmillis":{"long":-1930672008930007598},"o_timestampmicros":{"long":-8604284668065016828}},{"r_boolean":false,"r_int":1096487391,"r_long":-4409083868543245238,"r_float":0.89740825,"r_double":0.4656812244574541,"r_bytes":"¡¹³ï\u0000\u001BôÍ8\u0001?\fßA0\u000F‡sŸœ>\u0004”\u001E ‚\u001A\u00031MԀ3j\u001DäÍx.É!˜`H\u0003¼‚¶â¼áÁZÁ±I¥(ù\u0013\u0006\u0005.8qø•\u000BÚµæ֟¿4ù\u000Fø","r_string":"ycofl","r_enum":"TWO","r_date":395547289,"r_timemillis":-1744597079,"r_timemicros":-8966030251878396864,"r_timestampmillis":3673505137692718670,"r_timestampmicros":1323493584964591662,"o_boolean":{"boolean":false},"o_int":{"int":1357479440},"o_long":{"long":-5142789928240664422},"o_float":{"float":0.91753227},"o_double":null,"o_bytes":null,"o_string":{"string":"uxqdduoym"},"o_enum":null,"o_date":{"int":552937126},"o_timemillis":{"int":-344207127},"o_timemicros":null,"o_timestampmillis":{"long":4964066600705851276},"o_timestampmicros":null},{"r_boolean":false,"r_int":251028613,"r_long":5771109450910374139,"r_float":0.90825456,"r_double":0.2307375805029369,"r_bytes":"ߎ\u000B¿—7ô¤­¬t","r_string":"tmwsvt","r_enum":"TWO","r_date":-961705855,"r_timemillis":-299145854,"r_timemicros":5157594184868682644,"r_timestampmillis":-1816191113929807408,"r_timestampmicros":8294609835257693380,"o_boolean":{"boolean":false},"o_int":null,"o_long":null,"o_float":{"float":0.71363956},"o_double":{"double":0.14640037803847272},"o_bytes":{"bytes":"a‰Ê9UET9e"},"o_string":{"string":"qkhccad"},"o_enum":{"Level2_2_Enum2":"ONE"},"o_date":{"int":-1782014628},"o_timemillis":null,"o_timemicros":null,"o_timestampmillis":null,"o_timestampmicros":{"long":-3753118253730591189}}],"o_boolean":{"boolean":false},"o_int":{"int":-1118251224},"o_long":null,"o_float":{"float":0.35501987},"o_double":{"double":0.39515807545862836},"o_bytes":{"bytes":"»?­6à(ÿÕàaýtÐ̔"},"o_string":{"string":""},"o_enum":null,"o_date":null,"o_timemillis":null,"o_timemicros":null,"o_timestampmillis":{"long":-6970490656992818950},"o_timestampmicros":{"long":6560674902837767120}},{"r_boolean":true,"r_int":-302244402,"r_long":-8833349544072512675,"r_float":0.25735742,"r_double":0.8717288471355347,"r_bytes":"Ž","r_string":"","r_array":[{"r_boolean":true,"r_int":1179433271,"r_long":-1840261773678617717,"r_float":0.50097597,"r_double":0.029077141122410888,"r_bytes":"HtH»&^UlKÿÙx©.šÃË1ö\u0000ãñ<úÌKø¿Üä¼°@2£\u001AP-¦&ˆ&E1«LŽÉ\u0016\rNA´×‡¦/È\u0018¹\u001A9\u0006E\u0019xùLåøá¨â-iWX¨hëG†ÈR\u0011{¥\u000F\u0001^תּt~t€×–‚7¯qT\u001A‘¹@\fцgT\u0011·","r_string":"opnncoxonp","r_enum":"ONE","r_date":869100026,"r_timemillis":-811895649,"r_timemicros":2139662755419131432,"r_timestampmillis":-4916420913410977508,"r_timestampmicros":-1129010936870799740,"o_boolean":null,"o_int":null,"o_long":{"long":2581978895399001169},"o_float":null,"o_double":null,"o_bytes":null,"o_string":{"string":"mscctkjqcq"},"o_enum":{"Level2_2_Enum2":"TWO"},"o_date":null,"o_timemillis":null,"o_timemicros":null,"o_timestampmillis":{"long":6998909865786955859},"o_timestampmicros":{"long":770879513869878738}},{"r_boolean":false,"r_int":-794645833,"r_long":-544410598754534129,"r_float":0.82778144,"r_double":0.12593146989678194,"r_bytes":"Ój5\u000EXN8","r_string":"qmpwjafncoiaacqxclcmwiqltwlaqossygwateibwneociovrmgnrkkrsowvmsnkdbwotooehuebajxngwdqvrjrlxytrlreupjaxeoycydqjbimucwpshdgsuitvilgjmnsmqdehljjjrnqlgsmrgkmlxefehidoatqnnpaacryfjjisdnpoprbotxnjketfutnoyrtyulbkdfkqjoqhlrhhlrchboprurljrkravbun","r_enum":"TWO","r_date":1539109520,"r_timemillis":-1612266508,"r_timemicros":-3366165243811612949,"r_timestampmillis":3993028843598239352,"r_timestampmicros":-5093378185439096618,"o_boolean":{"boolean":false},"o_int":null,"o_long":{"long":-1023432373764657412},"o_float":null,"o_double":null,"o_bytes":null,"o_string":null,"o_enum":{"Level2_2_Enum2":"ONE"},"o_date":{"int":659220228},"o_timemillis":null,"o_timemicros":null,"o_timestampmillis":{"long":2355065897020456242},"o_timestampmicros":null},{"r_boolean":true,"r_int":169103535,"r_long":2060032358278931268,"r_float":0.6723924,"r_double":0.5061553972553964,"r_bytes":"ÛÏ","r_string":"iwtohyidbiynngvyhthsswcanjaurjqaktmdqxdnguuqhjhodjtasauuxbpjvevyqccswfmralgpcpconvrvytwtxxwkwspjcmsaxyupciqvthaohucrdefbbmftkunxlykhebwuhnvsrgpwjmeyeqfhaoeycrmsvumufmrxjqqpgrajxejnyxgrwdhkoqdnekliudlfjammayykpxegemaftogbfmec","r_enum":"ONE","r_date":2086795302,"r_timemillis":107387682,"r_timemicros":-238416791631904052,"r_timestampmillis":7160751873058670997,"r_timestampmicros":7944847212646616750,"o_boolean":null,"o_int":null,"o_long":null,"o_float":{"float":0.36646283},"o_double":null,"o_bytes":{"bytes":"\u0018ôfMb\u000E\u001Bè»\u000B"},"o_string":{"string":"xsiyqmyrp"},"o_enum":{"Level2_2_Enum2":"ONE"},"o_date":{"int":438126704},"o_timemillis":{"int":-208667160},"o_timemicros":null,"o_timestampmillis":null,"o_timestampmicros":null}],"o_boolean":{"boolean":false},"o_int":{"int":-1031379778},"o_long":null,"o_float":{"float":0.8979757},"o_double":null,"o_bytes":{"bytes":"G§ö\u000760ה"},"o_string":null,"o_enum":null,"o_date":null,"o_timemillis":{"int":1695015583},"o_timemicros":null,"o_timestampmillis":null,"o_timestampmicros":{"long":-7409273247300888550}},{"r_boolean":true,"r_int":-1851146,"r_long":1429921789495582440,"r_float":0.53479016,"r_double":0.8285222023424528,"r_bytes":".Fß#P ž'mZ\u000B–\u000F4¾","r_string":"nqbhtaepjcah","r_array":[{"r_boolean":true,"r_int":-116129398,"r_long":4144741348822306198,"r_float":0.6816689,"r_double":0.15197915441533894,"r_bytes":"Ÿ$ž÷Œu¶z/Gdä\u0007‚","r_string":"cixfvgvxkew","r_enum":"ZERO","r_date":1697558834,"r_timemillis":243371538,"r_timemicros":5598180785707806609,"r_timestampmillis":1244429549880149910,"r_timestampmicros":6353113128332313973,"o_boolean":null,"o_int":{"int":1277330382},"o_long":{"long":384208097699629258},"o_float":null,"o_double":{"double":0.15457782752518268},"o_bytes":{"bytes":"T\u0007\u0004Ü \u000Brš®¹“Ò"},"o_string":{"string":"lynjkotdjlfyvrd"},"o_enum":null,"o_date":{"int":-1501377916},"o_timemillis":null,"o_timemicros":null,"o_timestampmillis":null,"o_timestampmicros":{"long":-1230589500461380351}},{"r_boolean":true,"r_int":-599077888,"r_long":2337540928876986142,"r_float":0.15188432,"r_double":0.941731156568635,"r_bytes":"1\u001FO”\u0014õZY±„Ÿ0\u0003X","r_string":"tewg","r_enum":"TWO","r_date":-1993036672,"r_timemillis":-2084056278,"r_timemicros":-8583065751645509645,"r_timestampmillis":-7167930337926294661,"r_timestampmicros":2043978419834189183,"o_boolean":{"boolean":false},"o_int":null,"o_long":{"long":-900599972264454942},"o_float":{"float":0.107629836},"o_double":{"double":0.32687751156901224},"o_bytes":{"bytes":"î=ôì¡\u001F¢ÝÆ\u0011\u0002ø\f"},"o_string":null,"o_enum":{"Level2_2_Enum2":"ZERO"},"o_date":null,"o_timemillis":null,"o_timemicros":{"long":-6757966456020565268},"o_timestampmillis":null,"o_timestampmicros":null},{"r_boolean":false,"r_int":-1883906865,"r_long":8625887363188891503,"r_float":0.68666625,"r_double":0.7369188127962251,"r_bytes":"","r_string":"","r_enum":"ONE","r_date":145136360,"r_timemillis":-495193442,"r_timemicros":-4092750246481607751,"r_timestampmillis":-4255074561973252785,"r_timestampmicros":-7850717565547111905,"o_boolean":null,"o_int":{"int":-1359531498},"o_long":null,"o_float":null,"o_double":{"double":0.587228403669505},"o_bytes":{"bytes":"%×|Ÿ†!›Â"},"o_string":null,"o_enum":{"Level2_2_Enum2":"TWO"},"o_date":{"int":-1244944090},"o_timemillis":null,"o_timemicros":{"long":-1029194980466266936},"o_timestampmillis":{"long":7501532751149106318},"o_timestampmicros":{"long":-3927249010241808201}}],"o_boolean":{"boolean":true},"o_int":null,"o_long":{"long":-5260088576807173466},"o_float":{"float":0.748544},"o_double":{"double":0.32426092559174835},"o_bytes":null,"o_string":null,"o_enum":null,"o_date":{"int":-608080827},"o_timemillis":null,"o_timemicros":{"long":-5470098500815261522},"o_timestampmillis":{"long":5786134738055978716},"o_timestampmicros":null}],"r_date":-1068747398,"r_timemillis":-1135102796,"r_timemicros":6937025968185987284,"r_timestampmillis":-1265668077417858174,"r_timestampmicros":902107289983735880,"o_boolean":null,"o_int":{"int":674028120},"o_long":{"long":-4152662224899404657},"o_float":null,"o_double":{"double":0.7454268708131808},"o_bytes":null,"o_string":null,"o_enum":{"Enum2":"TWO"},"o_date":{"int":-840699016},"o_timemillis":null,"o_timemicros":null,"o_timestampmillis":null,"o_timestampmicros":{"long":-425711960790155109}} -{"r_boolean":true,"r_int":1297425341,"r_long":-5959862383498597452,"r_float":0.7801523,"r_double":0.04103327875157137,"r_bytes":"os¦qÏ","r_string":"lb","r_record":{"r_boolean":true,"r_int":-1269389061,"r_long":4451595163308173785,"r_float":0.62102187,"r_double":0.2805022517457034,"r_bytes":"ÆKEŸ¸vÿ\u0015\u0010h","r_string":"","r_record":{"r_boolean":false,"r_int":-261848585,"r_long":1413941770621645867,"r_float":0.17092955,"r_double":0.2589974231774146,"r_bytes":"É8u$Â","r_string":"owfkboosbbxwfhu","r_enum":"ZERO","r_date":-620276275,"r_timemillis":1353493813,"r_timemicros":-6563545996787130642,"r_timestampmillis":104278586441021239,"r_timestampmicros":6894053182917287890,"o_boolean":null,"o_int":null,"o_long":null,"o_float":null,"o_double":null,"o_bytes":{"bytes":"\u000Eϧ–\u001C"},"o_string":{"string":""},"o_enum":null,"o_date":null,"o_timemillis":null,"o_timemicros":{"long":1077955424955749221},"o_timestampmillis":null,"o_timestampmicros":{"long":-8472459594399357773}},"r_enum":"ZERO","r_date":-1167334934,"r_timemillis":-350839675,"r_timemicros":-7662852676593526914,"r_timestampmillis":1529231430223870940,"r_timestampmicros":-9065510128795800236,"r_array":[{"r_boolean":false,"r_int":1705580570,"r_long":-7310631028324763794,"r_float":0.8689195,"r_double":0.901629308681748,"r_bytes":"x©ž‘ªÔ\u001C\u0002C\f","r_string":"nevjdcdpxsdu","r_enum":"TWO","o_boolean":{"boolean":false},"o_int":null,"o_long":null,"o_float":null,"o_double":{"double":0.8256748724795813},"o_bytes":null,"o_string":{"string":"htmwb"},"o_enum":null,"o_date":null,"o_timemillis":{"int":-2109818446},"o_timemicros":{"long":-8316481365221314},"o_timestampmillis":{"long":8806325992010033609},"o_timestampmicros":{"long":-2140792119401211781}},{"r_boolean":true,"r_int":-517561639,"r_long":6479795868001928693,"r_float":0.4335844,"r_double":0.33638027439806173,"r_bytes":"í/\u0001mß]","r_string":"raitrvjrux","r_enum":"TWO","o_boolean":{"boolean":true},"o_int":null,"o_long":{"long":3693122166224465099},"o_float":{"float":0.5446359},"o_double":null,"o_bytes":null,"o_string":{"string":"wh"},"o_enum":{"Level2_1__2_Enum2":"ONE"},"o_date":{"int":720274290},"o_timemillis":null,"o_timemicros":{"long":5750259542271435947},"o_timestampmillis":{"long":8906950337523506231},"o_timestampmicros":{"long":4307792005427555221}},{"r_boolean":false,"r_int":-1633948691,"r_long":1522711977335410655,"r_float":0.86761177,"r_double":0.7766883942219955,"r_bytes":"»d…¥\u001FN’\u0011h","r_string":"hyuw","r_enum":"TWO","o_boolean":{"boolean":true},"o_int":{"int":1539985114},"o_long":{"long":6413285931651042758},"o_float":null,"o_double":null,"o_bytes":{"bytes":"©<=Ju÷¥ò„e\u000Bø\u000F(\u0017õu!ñ\u0012ëµ\u0013\n[³Óÿiî\u001B"},"o_string":{"string":"oibospapovynrndynavtlmotfubbawuo"},"o_enum":null,"o_date":null,"o_timemillis":{"int":183071730},"o_timemicros":null,"o_timestampmillis":null,"o_timestampmicros":null}]},"r_enum":"ONE","r_array":[{"r_boolean":false,"r_int":1816207920,"r_long":-7276488614567924383,"r_float":0.15906143,"r_double":0.3041273993401884,"r_bytes":"u¶Ó”ØÃé\" R²¶\tJ","r_string":"d","r_array":[],"o_boolean":{"boolean":true},"o_int":null,"o_long":{"long":3980537459310683704},"o_float":null,"o_double":{"double":0.9316746158096092},"o_bytes":{"bytes":"\u001F\u000E\u0017­½G \u0019”"},"o_string":{"string":"h"},"o_enum":null,"o_date":null,"o_timemillis":{"int":1380319505},"o_timemicros":null,"o_timestampmillis":null,"o_timestampmicros":{"long":2827779196553359999}},{"r_boolean":false,"r_int":259989744,"r_long":7930182478843709276,"r_float":0.98850584,"r_double":0.25586814603662156,"r_bytes":"Vî\u001AÖ¥÷Óiy\u001A\u0014B","r_string":"o","r_array":[{"r_boolean":false,"r_int":-119744311,"r_long":-4855849064502293625,"r_float":0.43901163,"r_double":0.6068832065837256,"r_bytes":"z\u0007Ì\u0001\u0011\u0007ëv","r_string":"xsvxipaqqnrggf","r_enum":"TWO","r_date":-1638854597,"r_timemillis":1316057140,"r_timemicros":-896871446527421700,"r_timestampmillis":-2091738611899330752,"r_timestampmicros":-4918524684829271499,"o_boolean":{"boolean":true},"o_int":{"int":1087121213},"o_long":{"long":1336811657147708928},"o_float":null,"o_double":null,"o_bytes":null,"o_string":{"string":"xakv"},"o_enum":{"Level2_2_Enum2":"ZERO"},"o_date":{"int":945917923},"o_timemillis":null,"o_timemicros":{"long":-8014890156674441171},"o_timestampmillis":null,"o_timestampmicros":null},{"r_boolean":false,"r_int":54692623,"r_long":-4950403982175128772,"r_float":0.89767754,"r_double":0.3882787789055083,"r_bytes":"\u0007G\u0004:€»ájÒ \u0018]!x","r_string":"ta","r_enum":"ONE","r_date":2123943616,"r_timemillis":1146817445,"r_timemicros":4589879997433972378,"r_timestampmillis":2144908697996608701,"r_timestampmicros":-6979387012919636717,"o_boolean":null,"o_int":{"int":-1342159720},"o_long":{"long":7049942314910503127},"o_float":null,"o_double":null,"o_bytes":null,"o_string":{"string":"kruqxannpro"},"o_enum":{"Level2_2_Enum2":"TWO"},"o_date":{"int":-907710903},"o_timemillis":{"int":507760701},"o_timemicros":null,"o_timestampmillis":{"long":7323174649767049907},"o_timestampmicros":{"long":6859946357759081369}}],"o_boolean":null,"o_int":{"int":205486247},"o_long":{"long":-4557364596502310148},"o_float":null,"o_double":null,"o_bytes":{"bytes":"K¿E\u00153;"},"o_string":null,"o_enum":null,"o_date":{"int":-555605900},"o_timemillis":{"int":-734073916},"o_timemicros":null,"o_timestampmillis":{"long":4066846310937580903},"o_timestampmicros":{"long":-3369815376750794022}},{"r_boolean":false,"r_int":-246925752,"r_long":-808185800905415337,"r_float":0.1915909,"r_double":0.9286436374531309,"r_bytes":"×OÞ³åóÕ","r_string":"amyhlimyaggicb","r_array":[{"r_boolean":true,"r_int":-1083271470,"r_long":-7441723055591698838,"r_float":0.51902694,"r_double":0.673093940859264,"r_bytes":"","r_string":"hdfexmmd","r_enum":"ZERO","r_date":-1878523899,"r_timemillis":-1047372289,"r_timemicros":6778219202949958594,"r_timestampmillis":-768760203926357460,"r_timestampmicros":-3855531170901171726,"o_boolean":{"boolean":true},"o_int":{"int":-1295068606},"o_long":null,"o_float":{"float":0.24647593},"o_double":null,"o_bytes":{"bytes":"7/„H g\\A"},"o_string":{"string":"nomy"},"o_enum":null,"o_date":{"int":1175711376},"o_timemillis":{"int":2091937332},"o_timemicros":null,"o_timestampmillis":null,"o_timestampmicros":null},{"r_boolean":false,"r_int":1548628018,"r_long":-3946316826938633600,"r_float":0.46567518,"r_double":0.7609877322753765,"r_bytes":"µá“úžq¤•[©‡#1G","r_string":"ku","r_enum":"ZERO","r_date":273921097,"r_timemillis":1651100889,"r_timemicros":5302564780737593931,"r_timestampmillis":-896686574720781152,"r_timestampmicros":6321386349225155889,"o_boolean":null,"o_int":null,"o_long":{"long":-6849006354518769214},"o_float":null,"o_double":{"double":0.9465647379043117},"o_bytes":null,"o_string":null,"o_enum":null,"o_date":{"int":1559240650},"o_timemillis":null,"o_timemicros":{"long":4737489356768305330},"o_timestampmillis":null,"o_timestampmicros":null},{"r_boolean":true,"r_int":-1108656311,"r_long":8268387040932409203,"r_float":0.79852617,"r_double":0.7280318580564336,"r_bytes":"l","r_string":"suylvxsbeireld","r_enum":"ZERO","r_date":-1734255412,"r_timemillis":-480084598,"r_timemicros":-8064223767139283330,"r_timestampmillis":-653265464452032581,"r_timestampmicros":-1632428630316423550,"o_boolean":{"boolean":false},"o_int":{"int":1313676262},"o_long":{"long":4563019586852320695},"o_float":{"float":0.5053611},"o_double":{"double":0.39253312380863403},"o_bytes":null,"o_string":{"string":"hdoyl"},"o_enum":{"Level2_2_Enum2":"ONE"},"o_date":{"int":-939668631},"o_timemillis":{"int":895828083},"o_timemicros":null,"o_timestampmillis":null,"o_timestampmicros":null}],"o_boolean":{"boolean":false},"o_int":{"int":-25533909},"o_long":{"long":-7720741533934124863},"o_float":null,"o_double":{"double":0.39982666469066175},"o_bytes":null,"o_string":{"string":"rvqs"},"o_enum":null,"o_date":{"int":404626399},"o_timemillis":null,"o_timemicros":null,"o_timestampmillis":{"long":6075376484458770004},"o_timestampmicros":null},{"r_boolean":true,"r_int":379384504,"r_long":-4300938403917357834,"r_float":0.27636516,"r_double":0.45129295000341707,"r_bytes":"-¾F\"ìÄ","r_string":"yjerykqx","r_array":[],"o_boolean":null,"o_int":null,"o_long":null,"o_float":{"float":0.18152225},"o_double":null,"o_bytes":null,"o_string":null,"o_enum":{"Level1_2_Enum2":"TWO"},"o_date":{"int":1030168285},"o_timemillis":null,"o_timemicros":{"long":4819769441397548728},"o_timestampmillis":null,"o_timestampmicros":{"long":7135437407778054017}},{"r_boolean":false,"r_int":-1276747432,"r_long":7119976397127858266,"r_float":0.369233,"r_double":0.3403813560025504,"r_bytes":"¶\u001A‹-Œ@","r_string":"ujtrgr","r_array":[{"r_boolean":false,"r_int":-2096923308,"r_long":-6316216930894952022,"r_float":0.77545553,"r_double":0.5578537000351961,"r_bytes":"I\u001AÄ]nµm\u0003àÓÊÞ\u0004Æ\rtí´\u0015×ú@0c\u000B«Ÿ*\nôófE\u0001qa¿›]\u0011É\u0002ß\u0016\u0005]̒½Å0²ìl-ðhuUC mÊéVrÝK1©Œð\u0018æÒiTX.˜\u0003â­Ls\tÞwdÛ³œ·Y–—M?Zi\t¬¥\u0016’³§–°k¯\u001Fñï÷‘r¹Èp\u0016máč\u000FB.\n÷\u0006ß\u0001R‘ª‘\u001F\u0011Y~Q9\u0003\u0004ÖBj‹ê”’´°l¬¬)Æw'vMW\u000FåözÆóòÌ\fV‹\u0003B•\"vl¨;","r_string":"ealtenvuoqlifas","r_enum":"ONE","r_date":-1533685516,"r_timemillis":29262250,"r_timemicros":5604912573708481310,"r_timestampmillis":4794160486264915915,"r_timestampmicros":5676574424708156515,"o_boolean":{"boolean":false},"o_int":{"int":364587937},"o_long":null,"o_float":null,"o_double":null,"o_bytes":{"bytes":""},"o_string":{"string":"cwkmpooq"},"o_enum":null,"o_date":null,"o_timemillis":{"int":147223712},"o_timemicros":{"long":6764319940731375352},"o_timestampmillis":{"long":-8880592570269539233},"o_timestampmicros":null},{"r_boolean":true,"r_int":-144051884,"r_long":-901438936987418871,"r_float":0.45841855,"r_double":0.2761504443018514,"r_bytes":"ƒVÿ×P±Ï\f\u0007","r_string":"","r_enum":"ONE","r_date":-1013899526,"r_timemillis":501131215,"r_timemicros":-6552650001879309606,"r_timestampmillis":3289741969892876444,"r_timestampmicros":-1722711897591004397,"o_boolean":{"boolean":true},"o_int":null,"o_long":{"long":3479371841153253699},"o_float":null,"o_double":{"double":0.7042386569888733},"o_bytes":null,"o_string":{"string":"rwegb"},"o_enum":null,"o_date":null,"o_timemillis":null,"o_timemicros":{"long":-370332338382369912},"o_timestampmillis":null,"o_timestampmicros":null}],"o_boolean":null,"o_int":null,"o_long":{"long":2423738186362539085},"o_float":{"float":0.60715157},"o_double":null,"o_bytes":null,"o_string":{"string":"uvqdeswpaucqbjp"},"o_enum":{"Level1_2_Enum2":"ONE"},"o_date":{"int":430478238},"o_timemillis":{"int":-1659166003},"o_timemicros":{"long":1291506709256582869},"o_timestampmillis":null,"o_timestampmicros":{"long":-6786568214921154539}}],"r_date":-1721232318,"r_timemillis":-891695814,"r_timemicros":-8328435382305789268,"r_timestampmillis":-7027947088744436740,"r_timestampmicros":8225370683764225605,"o_boolean":{"boolean":true},"o_int":{"int":1599084390},"o_long":null,"o_float":null,"o_double":{"double":0.2509716886649741},"o_bytes":{"bytes":";ÔñoA"},"o_string":{"string":"kgra"},"o_enum":null,"o_date":null,"o_timemillis":null,"o_timemicros":{"long":8828129913179996855},"o_timestampmillis":null,"o_timestampmicros":null} -{"r_boolean":true,"r_int":608795240,"r_long":4623056852937239101,"r_float":0.5896728,"r_double":0.5664106707303422,"r_bytes":"[7f\u001B}@\u0015൬","r_string":"kyomdptfamk","r_record":{"r_boolean":true,"r_int":-1102054807,"r_long":-1938835624441228005,"r_float":0.29643726,"r_double":0.6027338664921859,"r_bytes":"r!^\u0005ãGp?'™xQ\u0003ª","r_string":"sodfpnxaorisydf","r_record":{"r_boolean":false,"r_int":1734228995,"r_long":429169688156799118,"r_float":0.63792163,"r_double":0.13892448309423489,"r_bytes":"¬\u0010¡µT\u001C¬/Èí","r_string":"fufksidmoysb","r_enum":"TWO","r_date":599111208,"r_timemillis":-994944034,"r_timemicros":-752317753014848812,"r_timestampmillis":-4464814484702847241,"r_timestampmicros":-1701008678260205666,"o_boolean":null,"o_int":{"int":868473091},"o_long":{"long":110833934009723103},"o_float":null,"o_double":{"double":0.36410144243987763},"o_bytes":{"bytes":""},"o_string":null,"o_enum":null,"o_date":{"int":-1908788570},"o_timemillis":{"int":170514475},"o_timemicros":{"long":1072981766431333943},"o_timestampmillis":null,"o_timestampmicros":{"long":-2827120102829376427}},"r_enum":"ZERO","r_date":518487878,"r_timemillis":-1736923678,"r_timemicros":-5920115243841239749,"r_timestampmillis":-7301549964851904399,"r_timestampmicros":-7406868989044873999,"r_array":[]},"r_enum":"ZERO","r_array":[{"r_boolean":true,"r_int":1591469248,"r_long":1155017213589257266,"r_float":0.57780784,"r_double":0.8002523633205699,"r_bytes":"S´s.l\nâùYˆE÷…Ø\u0012","r_string":"tpjwnqf","r_array":[{"r_boolean":false,"r_int":-1943513168,"r_long":-3469592095250224922,"r_float":0.17161334,"r_double":0.6866279801149865,"r_bytes":"n­º\u0002iÁË+zÅMÜú","r_string":"lm","r_enum":"ONE","r_date":370516458,"r_timemillis":-1581764899,"r_timemicros":3160596422927943396,"r_timestampmillis":-286978499971310304,"r_timestampmicros":-6476538034621669882,"o_boolean":null,"o_int":{"int":1733446956},"o_long":null,"o_float":{"float":0.20815885},"o_double":{"double":0.026825134001834283},"o_bytes":{"bytes":""},"o_string":null,"o_enum":{"Level2_2_Enum2":"TWO"},"o_date":{"int":563540531},"o_timemillis":null,"o_timemicros":{"long":-7651705877393455343},"o_timestampmillis":null,"o_timestampmicros":{"long":5727068212604747134}}],"o_boolean":{"boolean":false},"o_int":null,"o_long":null,"o_float":null,"o_double":null,"o_bytes":{"bytes":""},"o_string":{"string":"xailur"},"o_enum":null,"o_date":null,"o_timemillis":{"int":36176640},"o_timemicros":null,"o_timestampmillis":{"long":2617907449439094074},"o_timestampmicros":null}],"r_date":1691219832,"r_timemillis":399355351,"r_timemicros":1706476911824402753,"r_timestampmillis":4831119689093848026,"r_timestampmicros":-1793997201539964037,"o_boolean":{"boolean":false},"o_int":{"int":-1844410610},"o_long":{"long":-5424527414920902195},"o_float":{"float":0.27404845},"o_double":null,"o_bytes":null,"o_string":null,"o_enum":null,"o_date":null,"o_timemillis":null,"o_timemicros":{"long":7333174439506147742},"o_timestampmillis":{"long":6993255104563981850},"o_timestampmicros":{"long":-8330642364161367999}} -{"r_boolean":false,"r_int":-771328541,"r_long":-3134086184924576727,"r_float":0.3461855,"r_double":0.41578049109156,"r_bytes":"","r_string":"","r_record":{"r_boolean":true,"r_int":1878226709,"r_long":1273084680041757172,"r_float":0.75693405,"r_double":0.2718886352675386,"r_bytes":"","r_string":"hqt","r_record":{"r_boolean":true,"r_int":-414041789,"r_long":8734705121919631945,"r_float":0.099178076,"r_double":0.6698755470525186,"r_bytes":"J œ","r_string":"rgwumrr","r_enum":"TWO","r_date":190033673,"r_timemillis":1915510191,"r_timemicros":-570407452641933238,"r_timestampmillis":-3040318217673018536,"r_timestampmicros":-1464490644026382619,"o_boolean":{"boolean":false},"o_int":null,"o_long":{"long":-8174044978217793224},"o_float":{"float":0.29987407},"o_double":null,"o_bytes":{"bytes":"áªEXAòa&ëRŽo\fô\t<Þ×és\u001Eâ\u000B\u000BK[Î\u000EÛ°®\u001Esþ¢)ljôi*\u0004\tMçK,¦Qb`\u001E6?&ñg[>Ðh9„†Î§\u0006™»¢ëÛõì€^t\u000F©K¿Nt!:\u0012݁ã{ÞÜÖtï¨î\u0005~rö¨!:ӊʱªCøöý§\u0004HyZ8™‹M\u0011N9þ—¤»=SÍ\u0018¬M}¥Í=ñ\f<õ\u000B¬”{÷!¡þ~àØFb‰ýï4AVõŸÖ&¹yå\f€Õg.¿ŠHÈ\u001BÜzž}g܉ã”:±¯®}GÒ9m¦\\\u000E«÷Qp®\b*\u001AC"},"o_string":{"string":"llsunf"},"o_enum":{"Level2_1__1_Enum2":"TWO"},"o_date":{"int":1200610702},"o_timemillis":null,"o_timemicros":null,"o_timestampmillis":null,"o_timestampmicros":{"long":2993671885173877558}},"r_enum":"ZERO","r_date":-1753213830,"r_timemillis":1220804713,"r_timemicros":6878582831498794424,"r_timestampmillis":-9155805616135127970,"r_timestampmicros":-3536449254088989260,"r_array":[{"r_boolean":false,"r_int":50081906,"r_long":-967483541505398507,"r_float":0.69242233,"r_double":0.8936023928171536,"r_bytes":"q2ðÄü}C","r_string":"shjqwrkkwb","r_enum":"TWO","o_boolean":null,"o_int":null,"o_long":{"long":-8412571141395114836},"o_float":null,"o_double":{"double":0.7743793185059061},"o_bytes":null,"o_string":{"string":"tkepgutknosiid"},"o_enum":null,"o_date":null,"o_timemillis":{"int":-242364240},"o_timemicros":{"long":1633664490434821930},"o_timestampmillis":{"long":7544243100181404033},"o_timestampmicros":null},{"r_boolean":false,"r_int":315223990,"r_long":-4465915917544186913,"r_float":0.15456307,"r_double":0.820443775250562,"r_bytes":"\u000EC\bç²ÅÜîË\\Ÿýä","r_string":"epqgkkujsomgien","r_enum":"ONE","o_boolean":null,"o_int":null,"o_long":null,"o_float":null,"o_double":{"double":0.5800661157971836},"o_bytes":null,"o_string":null,"o_enum":null,"o_date":null,"o_timemillis":{"int":-1944175241},"o_timemicros":{"long":512642920397692332},"o_timestampmillis":{"long":-8952995710982039565},"o_timestampmicros":{"long":-3007573241676374626}},{"r_boolean":true,"r_int":-2082868810,"r_long":5121665044143200983,"r_float":0.93876326,"r_double":0.8735390755962822,"r_bytes":"%­","r_string":"xqygbdtlljjd","r_enum":"ZERO","o_boolean":{"boolean":true},"o_int":null,"o_long":null,"o_float":{"float":0.4311471},"o_double":{"double":0.8555777652989245},"o_bytes":{"bytes":"\u001A+5­Nh¹"},"o_string":{"string":"mdykgxuhu"},"o_enum":{"Level2_1__2_Enum2":"TWO"},"o_date":{"int":-2137957363},"o_timemillis":{"int":-1033368913},"o_timemicros":null,"o_timestampmillis":{"long":4152764008568574306},"o_timestampmicros":{"long":2736242118225081976}},{"r_boolean":false,"r_int":-643327903,"r_long":-6156795177589826624,"r_float":0.51799977,"r_double":0.9345144771411558,"r_bytes":"Bg¦rcÇ\u0000I•ð\tn","r_string":"ohwv","r_enum":"TWO","o_boolean":{"boolean":true},"o_int":{"int":1483317805},"o_long":{"long":2739927104360995333},"o_float":null,"o_double":null,"o_bytes":{"bytes":"oG|\u0006\u0016½@\u0014Ž\u001A+9\u001A|"},"o_string":null,"o_enum":{"Level2_1__2_Enum2":"TWO"},"o_date":null,"o_timemillis":null,"o_timemicros":{"long":-924306203352251846},"o_timestampmillis":null,"o_timestampmicros":{"long":7358367829146860789}}]},"r_enum":"TWO","r_array":[{"r_boolean":false,"r_int":-1852697798,"r_long":3180691283324348324,"r_float":0.69296,"r_double":0.7282749338869644,"r_bytes":"ØTùÈ\u000E¶&¯½ÿ˜6","r_string":"rhi","r_array":[],"o_boolean":{"boolean":false},"o_int":{"int":-588626937},"o_long":{"long":2533786320747989816},"o_float":null,"o_double":null,"o_bytes":{"bytes":"iƒ"},"o_string":{"string":"rqquahunp"},"o_enum":{"Level1_2_Enum2":"TWO"},"o_date":{"int":-1849475990},"o_timemillis":null,"o_timemicros":null,"o_timestampmillis":{"long":-1247889845346166269},"o_timestampmicros":null}],"r_date":1925042469,"r_timemillis":-260945701,"r_timemicros":-995101913795092073,"r_timestampmillis":6000593023306967704,"r_timestampmicros":7807849516133945893,"o_boolean":{"boolean":false},"o_int":{"int":-312771262},"o_long":null,"o_float":null,"o_double":{"double":0.5891546061546208},"o_bytes":null,"o_string":{"string":"ywsdrbwoaelfms"},"o_enum":null,"o_date":null,"o_timemillis":{"int":117189227},"o_timemicros":null,"o_timestampmillis":null,"o_timestampmicros":{"long":6766171334255630391}} -{"r_boolean":false,"r_int":-433933699,"r_long":-1788698066769406597,"r_float":0.255579,"r_double":0.4483841121534481,"r_bytes":"Fû\u001D\u0005¿j*Ôp","r_string":"esp","r_record":{"r_boolean":true,"r_int":-105831615,"r_long":3204867487907222670,"r_float":0.74214596,"r_double":0.759558096994098,"r_bytes":"\u0013ëHe)ÑL","r_string":"admqt","r_record":{"r_boolean":false,"r_int":-1943427238,"r_long":-7716392322112137264,"r_float":0.47420925,"r_double":0.3824289665380488,"r_bytes":"3\u001FÖ $;/c'þºƒ|u","r_string":"tpjvlhb","r_enum":"ONE","r_date":1201491793,"r_timemillis":1414369956,"r_timemicros":8026212091864967314,"r_timestampmillis":-4030723262889266365,"r_timestampmicros":1640874915926875961,"o_boolean":null,"o_int":null,"o_long":null,"o_float":{"float":0.17047727},"o_double":{"double":0.920705704870143},"o_bytes":{"bytes":"Ä"},"o_string":null,"o_enum":{"Level2_1__1_Enum2":"ONE"},"o_date":{"int":-860890465},"o_timemillis":null,"o_timemicros":null,"o_timestampmillis":{"long":3718415114314431957},"o_timestampmicros":null},"r_enum":"ZERO","r_date":-424223759,"r_timemillis":1592218540,"r_timemicros":-3372253570585549011,"r_timestampmillis":2606940354552132406,"r_timestampmicros":-3814471366567278680,"r_array":[]},"r_enum":"ONE","r_array":[{"r_boolean":false,"r_int":566534736,"r_long":8181879529930822403,"r_float":0.45670134,"r_double":0.784668266135997,"r_bytes":"dä™\fC“þmbëýÔE#","r_string":"cmaaxxipr","r_array":[],"o_boolean":{"boolean":false},"o_int":{"int":350382799},"o_long":{"long":2740731020739568676},"o_float":null,"o_double":{"double":0.5097960604394035},"o_bytes":null,"o_string":{"string":"lupgdiudaogm"},"o_enum":{"Level1_2_Enum2":"TWO"},"o_date":null,"o_timemillis":{"int":2014817650},"o_timemicros":{"long":-2956562796458305109},"o_timestampmillis":null,"o_timestampmicros":{"long":2025726139388128516}},{"r_boolean":false,"r_int":640234103,"r_long":4539066695646754838,"r_float":0.6399673,"r_double":0.32367876744037993,"r_bytes":"“þ\u0017ÂS","r_string":"dsmyyuqnognu","r_array":[],"o_boolean":null,"o_int":{"int":-630316079},"o_long":null,"o_float":null,"o_double":{"double":0.40846858473540726},"o_bytes":{"bytes":"~*"},"o_string":{"string":"vav"},"o_enum":null,"o_date":null,"o_timemillis":null,"o_timemicros":{"long":8356365379183038936},"o_timestampmillis":null,"o_timestampmicros":null},{"r_boolean":true,"r_int":-142786186,"r_long":6053823158233994000,"r_float":0.9957499,"r_double":0.685142628105264,"r_bytes":"PÒ\u0017\u0011úZfß²ÍïU","r_string":"iyw","r_array":[],"o_boolean":{"boolean":true},"o_int":{"int":1905544079},"o_long":null,"o_float":{"float":0.3311025},"o_double":null,"o_bytes":{"bytes":"\u0010"},"o_string":{"string":"iyls"},"o_enum":{"Level1_2_Enum2":"ONE"},"o_date":null,"o_timemillis":{"int":-192014136},"o_timemicros":{"long":-2927430747807728523},"o_timestampmillis":{"long":-1071089831886364743},"o_timestampmicros":{"long":-8287349378882031694}},{"r_boolean":true,"r_int":-247626040,"r_long":-5560230459969660855,"r_float":0.5281781,"r_double":0.12604620619089857,"r_bytes":"WçÒl%\\OL¥Æ\u0011–MM\u001Fý\u0018o\u0003¨","r_string":"ixgbn","r_array":[{"r_boolean":false,"r_int":2118366529,"r_long":-2733766317962561959,"r_float":0.06781459,"r_double":0.02074628803021694,"r_bytes":"•­´","r_string":"mco","r_enum":"ZERO","r_date":-2131516135,"r_timemillis":-162820414,"r_timemicros":-3887722026275066791,"r_timestampmillis":8495959988860589668,"r_timestampmicros":-1754452378979270372,"o_boolean":{"boolean":true},"o_int":{"int":825756565},"o_long":null,"o_float":{"float":0.18735808},"o_double":null,"o_bytes":null,"o_string":{"string":"gkvsjrydvb"},"o_enum":null,"o_date":{"int":913940736},"o_timemillis":{"int":845111890},"o_timemicros":{"long":3861100804444561973},"o_timestampmillis":null,"o_timestampmicros":{"long":-3332346042188408818}},{"r_boolean":false,"r_int":-1606277626,"r_long":4956863796655433575,"r_float":0.79200387,"r_double":0.4268509180700305,"r_bytes":"/rVËf‹S•Ik£","r_string":"coobpi","r_enum":"TWO","r_date":1504034107,"r_timemillis":843864350,"r_timemicros":-4052202383865618158,"r_timestampmillis":-667245562687142398,"r_timestampmicros":8321338085939048877,"o_boolean":{"boolean":false},"o_int":null,"o_long":null,"o_float":null,"o_double":null,"o_bytes":null,"o_string":{"string":"cjewim"},"o_enum":{"Level2_2_Enum2":"ONE"},"o_date":{"int":-166147063},"o_timemillis":{"int":-785242609},"o_timemicros":{"long":-1760574998046437484},"o_timestampmillis":null,"o_timestampmicros":null}],"o_boolean":null,"o_int":{"int":89285980},"o_long":{"long":-8929109442174887046},"o_float":null,"o_double":{"double":0.7291067002886964},"o_bytes":null,"o_string":null,"o_enum":{"Level1_2_Enum2":"TWO"},"o_date":{"int":970372511},"o_timemillis":{"int":1996256570},"o_timemicros":null,"o_timestampmillis":null,"o_timestampmicros":null}],"r_date":148121281,"r_timemillis":-2119648166,"r_timemicros":4423710431095696234,"r_timestampmillis":8244071745945022660,"r_timestampmicros":-3662143495122968477,"o_boolean":{"boolean":false},"o_int":{"int":1144847992},"o_long":null,"o_float":{"float":0.8536642},"o_double":null,"o_bytes":null,"o_string":null,"o_enum":null,"o_date":null,"o_timemillis":{"int":1712139031},"o_timemicros":{"long":-3088478701344185240},"o_timestampmillis":{"long":-9108582794578202510},"o_timestampmicros":null} -{"r_boolean":false,"r_int":984502144,"r_long":8888886410550691292,"r_float":0.01627618,"r_double":0.09200532066891398,"r_bytes":"«ÿý\nµq","r_string":"ndrxwn","r_record":{"r_boolean":true,"r_int":-416357301,"r_long":-4646416558250520357,"r_float":0.3560506,"r_double":0.35945426466804553,"r_bytes":" u¹§ž±","r_string":"scgwbflkumfympt","r_record":{"r_boolean":true,"r_int":454101408,"r_long":1056882231691636247,"r_float":0.7023808,"r_double":0.8873818836040912,"r_bytes":"ÍÌNmڍ#\u0011Úq_’","r_string":"iljyxnwul","r_enum":"ZERO","r_date":951173537,"r_timemillis":-612941180,"r_timemicros":8661545481294885894,"r_timestampmillis":8095749087335187935,"r_timestampmicros":-2948500211624355914,"o_boolean":null,"o_int":{"int":-414465637},"o_long":{"long":-2262944055974314430},"o_float":{"float":0.085761786},"o_double":{"double":0.16097313070259978},"o_bytes":null,"o_string":{"string":"inhupeoglojiv"},"o_enum":null,"o_date":null,"o_timemillis":null,"o_timemicros":null,"o_timestampmillis":null,"o_timestampmicros":{"long":5886395524644749324}},"r_enum":"ONE","r_date":27323778,"r_timemillis":137538338,"r_timemicros":-2457096681450975111,"r_timestampmillis":2715434878296336153,"r_timestampmicros":-6121236265507238180,"r_array":[{"r_boolean":false,"r_int":-64386299,"r_long":-1801112044422293984,"r_float":0.3581556,"r_double":0.7832899363888278,"r_bytes":"±G\u001B\u001E!öÔú,","r_string":"wkcha","r_enum":"ZERO","o_boolean":{"boolean":true},"o_int":{"int":-698115940},"o_long":null,"o_float":null,"o_double":{"double":0.32545330957840146},"o_bytes":{"bytes":"ŽBÙÓy"},"o_string":null,"o_enum":{"Level2_1__2_Enum2":"TWO"},"o_date":null,"o_timemillis":{"int":2137730755},"o_timemicros":{"long":7597279320796310230},"o_timestampmillis":{"long":-6932100829583763673},"o_timestampmicros":null},{"r_boolean":true,"r_int":-1331871701,"r_long":8446723140366944367,"r_float":0.62425065,"r_double":0.10126409353660748,"r_bytes":"ë,š×óÒáÉ__øÝû«k•Å[”\u000Ek²nà²{uœ$Œ_rŽ7zeá*épßtBãWÇ¥š»‚tB¾Ù¸j\f\u001Faã`™wڎCZ\u000Bå»,\u000B§\u0017‹„u\u000Eg¡—̘$äe/‡k2\u0004‡\u0018\u001A¬}IuÌe\u000B","r_string":"","r_enum":"ZERO","o_boolean":null,"o_int":{"int":-113163750},"o_long":null,"o_float":null,"o_double":{"double":0.027303838642496747},"o_bytes":null,"o_string":{"string":"lqnlir"},"o_enum":{"Level2_1__2_Enum2":"ONE"},"o_date":null,"o_timemillis":{"int":540420354},"o_timemicros":null,"o_timestampmillis":{"long":-4681573578397819167},"o_timestampmicros":{"long":-7350691343813828382}},{"r_boolean":false,"r_int":-723749310,"r_long":4059450695246528375,"r_float":0.5568851,"r_double":0.5133742971869518,"r_bytes":"•Ï›6áö”óÁ\u0018©","r_string":"eyrg","r_enum":"ONE","o_boolean":{"boolean":false},"o_int":{"int":983075151},"o_long":{"long":351066816160085328},"o_float":null,"o_double":{"double":0.16905318165943706},"o_bytes":{"bytes":""},"o_string":{"string":"jv"},"o_enum":null,"o_date":{"int":1417928867},"o_timemillis":{"int":-1877520812},"o_timemicros":null,"o_timestampmillis":{"long":-2996306026240228667},"o_timestampmicros":{"long":-3164127663281930843}}]},"r_enum":"ONE","r_array":[{"r_boolean":false,"r_int":-1559213804,"r_long":-5177428346052688410,"r_float":0.87537974,"r_double":0.47386367738925605,"r_bytes":"\"¢à#Ïcýz\u001D","r_string":"sgivtliruoijxu","r_array":[],"o_boolean":null,"o_int":null,"o_long":null,"o_float":null,"o_double":null,"o_bytes":null,"o_string":null,"o_enum":{"Level1_2_Enum2":"TWO"},"o_date":null,"o_timemillis":null,"o_timemicros":{"long":-3083779910611772041},"o_timestampmillis":null,"o_timestampmicros":null},{"r_boolean":true,"r_int":1198210088,"r_long":8340006285093474865,"r_float":0.51419234,"r_double":0.6613320025989359,"r_bytes":"\r+ÉáÕ7×XA8ͫВ\b„™âêDõ˯]Ceô—\u0011Œß\u0000†í|K£\u0015b4òƒ¼\u0011EèæQàL³¶Ü-5‹\u0014Ô\u0004;ÄÅG\u0002<ø\u001Eƨòds\fIu/š\u001D+¬.Î[Qq_‚ÿ\u001C‘Ð{O×\u0001©4Ì@P 6 —\u001B\n-…ÍèE)»0DvL\u0006²ƒ‹v\r“Üܶ\u001DçÄ4%4\u0016ì,6õmÍÿiº\u000B{—\u0010“·\nm5úi›\bÝ7´\u0007±h£\u0014¨¢½ïó\u0014&]\u0004Õî³Ó.æw—\u0011÷í¢À4-èx÷oû\u0011¯¹-£×T4lfјÎðm•%µ¼gª~éá«\u0003T","r_string":"ypdjkqxh","r_array":[],"o_boolean":{"boolean":false},"o_int":{"int":-545980920},"o_long":null,"o_float":{"float":0.37915117},"o_double":{"double":0.6018664275270758},"o_bytes":{"bytes":"#šF¼ñ¹"},"o_string":{"string":""},"o_enum":{"Level1_2_Enum2":"TWO"},"o_date":null,"o_timemillis":null,"o_timemicros":{"long":2807609968996548141},"o_timestampmillis":null,"o_timestampmicros":null},{"r_boolean":true,"r_int":-1123936476,"r_long":1618884481013550122,"r_float":0.6205145,"r_double":0.772367787963094,"r_bytes":"","r_string":"bj","r_array":[{"r_boolean":true,"r_int":-1410789351,"r_long":-5201011857457897099,"r_float":0.32082385,"r_double":0.36247191216127916,"r_bytes":"×Ù\u0003³Žù3û²L:μž¹","r_string":"xgdhwgsjx","r_enum":"ONE","r_date":-981522433,"r_timemillis":-1673446131,"r_timemicros":182184919462270830,"r_timestampmillis":8608143485483267799,"r_timestampmicros":1240824417439789006,"o_boolean":null,"o_int":{"int":1704159168},"o_long":{"long":5262198437831381409},"o_float":null,"o_double":{"double":0.03847954396050979},"o_bytes":{"bytes":"¦Ïh"},"o_string":{"string":"vkcftilv"},"o_enum":{"Level2_2_Enum2":"ZERO"},"o_date":{"int":-1592756022},"o_timemillis":null,"o_timemicros":{"long":-3106529163154379665},"o_timestampmillis":{"long":5047422326684136405},"o_timestampmicros":{"long":1374144440745761244}},{"r_boolean":false,"r_int":-1524065702,"r_long":-5582626451454651514,"r_float":0.27587622,"r_double":0.5142751201398708,"r_bytes":"<=}˜… ÚŠ2\t","r_string":"bi","r_enum":"ONE","r_date":1679430339,"r_timemillis":944504388,"r_timemicros":4770895800962883719,"r_timestampmillis":8361277088604699592,"r_timestampmicros":-2069219248647048278,"o_boolean":{"boolean":false},"o_int":{"int":1328487662},"o_long":{"long":-6037436923861544431},"o_float":null,"o_double":null,"o_bytes":{"bytes":"æipNBÐ"},"o_string":{"string":"dithqnu"},"o_enum":null,"o_date":{"int":-1672139398},"o_timemillis":{"int":1675369236},"o_timemicros":null,"o_timestampmillis":{"long":4582929184563567404},"o_timestampmicros":null}],"o_boolean":null,"o_int":null,"o_long":{"long":-8155697230262590234},"o_float":{"float":0.60492355},"o_double":{"double":0.15610887406536156},"o_bytes":null,"o_string":{"string":"me"},"o_enum":null,"o_date":{"int":1680564912},"o_timemillis":{"int":-55295456},"o_timemicros":null,"o_timestampmillis":null,"o_timestampmicros":null},{"r_boolean":false,"r_int":-53193258,"r_long":-2091238481395017416,"r_float":0.93371296,"r_double":0.886571479398011,"r_bytes":"]†Mõ‚","r_string":"ljmygbeaio","r_array":[{"r_boolean":false,"r_int":1999353552,"r_long":-4743214085357419547,"r_float":0.84237736,"r_double":0.9138796768902497,"r_bytes":"WT","r_string":"mhbryhvvcrmybgfmlhkbhwkicjilqtjnubqvmvmeahqiseydnenqawijuqjfgyrkjqkawnsrpabqmbjvhgnjqwylrifimtncnibcqiqnbssiwprcdbdcfyglhnxbtklttvhuaalbghpqgihjauswdpldpvsdjndakvvkghytidryvc","r_enum":"ONE","r_date":1038283374,"r_timemillis":969560156,"r_timemicros":-4356213440951240539,"r_timestampmillis":-7003125111207127844,"r_timestampmicros":1820920433322255157,"o_boolean":null,"o_int":{"int":-166433608},"o_long":{"long":-4801350412264049540},"o_float":{"float":0.61504495},"o_double":{"double":0.7511392977607517},"o_bytes":null,"o_string":null,"o_enum":{"Level2_2_Enum2":"ONE"},"o_date":null,"o_timemillis":null,"o_timemicros":null,"o_timestampmillis":null,"o_timestampmicros":null},{"r_boolean":false,"r_int":1581232623,"r_long":6009072437936900335,"r_float":0.20915109,"r_double":0.024403938198397368,"r_bytes":"E\u0005²S}g\u0019M©í­k¯\u001FIÔ~ñ\u0005Ì¥z)ú[…]Ÿá¹k–~…[o=P}t*d¼ƒPʆC\u001AÑ\u0002tÄ\"\tJŽÜÂ؊Æ","r_string":"ihaynjorinx","r_enum":"ZERO","r_date":-598974453,"r_timemillis":525006156,"r_timemicros":-7285252335930939568,"r_timestampmillis":5126518110642263969,"r_timestampmicros":6177468046037957404,"o_boolean":{"boolean":false},"o_int":{"int":1548717474},"o_long":null,"o_float":null,"o_double":null,"o_bytes":null,"o_string":null,"o_enum":{"Level2_2_Enum2":"ONE"},"o_date":{"int":1416421156},"o_timemillis":null,"o_timemicros":{"long":-4423880087252777811},"o_timestampmillis":{"long":-5757757165348878298},"o_timestampmicros":{"long":-1010453295671834719}}],"o_boolean":{"boolean":false},"o_int":{"int":-1268504975},"o_long":null,"o_float":{"float":0.21674275},"o_double":{"double":0.2744735540652278},"o_bytes":{"bytes":"RjòžÃ™$J—"},"o_string":{"string":"evhw"},"o_enum":{"Level1_2_Enum2":"ZERO"},"o_date":{"int":1672909385},"o_timemillis":null,"o_timemicros":null,"o_timestampmillis":{"long":-6304339664395208683},"o_timestampmicros":{"long":4874076512394961400}}],"r_date":-80457736,"r_timemillis":-289033309,"r_timemicros":7808356182876658899,"r_timestampmillis":1501531717047736474,"r_timestampmicros":-6275447210197379591,"o_boolean":null,"o_int":{"int":-16052978},"o_long":null,"o_float":null,"o_double":null,"o_bytes":{"bytes":"M£4S6Ÿ\u0017°»"},"o_string":null,"o_enum":null,"o_date":{"int":-620597883},"o_timemillis":null,"o_timemicros":{"long":3016702094962209216},"o_timestampmillis":null,"o_timestampmicros":{"long":4272296108712030583}} -{"r_boolean":true,"r_int":-863668198,"r_long":5853736491201851465,"r_float":0.73119193,"r_double":0.6468910295117615,"r_bytes":"ˆ¡ÈÔ(¿","r_string":"","r_record":{"r_boolean":false,"r_int":1117637104,"r_long":-3845448422656582073,"r_float":0.42639822,"r_double":0.7121500587421522,"r_bytes":"É\"","r_string":"lgxyinuhskxbmbinaejhduvpvokynoomselgqbgiecjkmacdlcekncxumoqbjsowavllobrbdmmshdkhevemurkrohqnjbcdmilksddduhslxcuoemoxyoikkalcgcriusbvbwssqlkgqctyearipgpnnsjjvyqnfbwbknmbyremftthsgkociwbonccxfheb","r_record":{"r_boolean":false,"r_int":635811843,"r_long":5057322304789916335,"r_float":0.3553416,"r_double":0.6014852153342939,"r_bytes":"\u0015¼‚¯ÞI¡gÄ1Â~\u001C7","r_string":"qhhwlquojontbv","r_enum":"ONE","r_date":-89631513,"r_timemillis":980021760,"r_timemicros":-1087422198474239886,"r_timestampmillis":-8120679168844576375,"r_timestampmicros":1844666913520875925,"o_boolean":{"boolean":true},"o_int":null,"o_long":null,"o_float":null,"o_double":{"double":0.7761551698786111},"o_bytes":null,"o_string":{"string":"gescmag"},"o_enum":null,"o_date":null,"o_timemillis":null,"o_timemicros":null,"o_timestampmillis":{"long":2165509901916322665},"o_timestampmicros":{"long":169638810908830689}},"r_enum":"ONE","r_date":-1453723947,"r_timemillis":1366684124,"r_timemicros":-7148290405815998844,"r_timestampmillis":3386746334125731580,"r_timestampmicros":-7888870506875911008,"r_array":[{"r_boolean":true,"r_int":-1336212480,"r_long":4188546853337168569,"r_float":0.26677197,"r_double":0.18060104407128963,"r_bytes":"‡eÎNJ~wòÉÃB ","r_string":"ugatovoonta","r_enum":"ONE","o_boolean":null,"o_int":null,"o_long":null,"o_float":{"float":0.31816107},"o_double":{"double":0.46881259737191927},"o_bytes":null,"o_string":null,"o_enum":{"Level2_1__2_Enum2":"ZERO"},"o_date":null,"o_timemillis":{"int":-1854362219},"o_timemicros":{"long":-5120187362787242899},"o_timestampmillis":{"long":-2823828330367223117},"o_timestampmicros":null},{"r_boolean":false,"r_int":1255998684,"r_long":-8477562417783075915,"r_float":0.69244236,"r_double":0.44144280154530935,"r_bytes":"]¡áÑâ{Ëô\t…\u001F","r_string":"yceqsxfs","r_enum":"TWO","o_boolean":{"boolean":true},"o_int":null,"o_long":{"long":7425173077191065200},"o_float":{"float":0.59504753},"o_double":{"double":0.21397322418680143},"o_bytes":null,"o_string":null,"o_enum":null,"o_date":null,"o_timemillis":null,"o_timemicros":{"long":-939881214687012918},"o_timestampmillis":{"long":6617601172583767922},"o_timestampmicros":{"long":-9061972822574138121}},{"r_boolean":false,"r_int":1068031889,"r_long":7296490357383402614,"r_float":0.68613136,"r_double":0.01148727574945585,"r_bytes":"åã%œ","r_string":"pxgicqwhrmwdp","r_enum":"ONE","o_boolean":{"boolean":true},"o_int":null,"o_long":{"long":1120985762504382917},"o_float":null,"o_double":{"double":0.37893181549158184},"o_bytes":{"bytes":"œÏ¦øD›\u0012“+Ù\u000EÙ\\ÛØñ½X•\u001Fx\u0007éì¾_!y6XÅ$\u0010rŠ<\u000F’h\ræ+ëèh\u0002;„ç×­t\u0000Ȭ¨˜C\u001F\u001A Ðí÷b#`_LÔD8«,›Å<ð\u0001aà\u0003gqb.–çc\u0005I6T9Õ\u001E²"},"o_string":null,"o_enum":{"Level2_1__2_Enum2":"ONE"},"o_date":null,"o_timemillis":{"int":1993069894},"o_timemicros":{"long":-8480915461718859416},"o_timestampmillis":null,"o_timestampmicros":null},{"r_boolean":true,"r_int":1754635083,"r_long":-8374193915601008768,"r_float":0.8242494,"r_double":0.7822346598361539,"r_bytes":"ƒÃWw\u0016M€öe<","r_string":"gjfdwawcsqtptbhhhjodgqgavhuckauokdjgpsrmcwhnwwybcvmlyjugvmbgvpvvalvhqaasputybryahejyjktfqtmdbujlubtqwdicaxxquubfomjmbsqiixfxcpaygomnpvamqegijweyasqvlaxxwmgpvdxmqstenjlaswcgwvfqwouwltkllkxiavxuuyklodxaajecukpuxliryfphnqihyejwisywaxkgnkeqobtlebdufc","r_enum":"TWO","o_boolean":null,"o_int":null,"o_long":null,"o_float":null,"o_double":{"double":0.4676170747070312},"o_bytes":{"bytes":"œK\u0014ÁÌËˆÏ\u001AIš"},"o_string":null,"o_enum":{"Level2_1__2_Enum2":"ONE"},"o_date":null,"o_timemillis":null,"o_timemicros":{"long":5541619488003469781},"o_timestampmillis":{"long":2214675313860267106},"o_timestampmicros":{"long":5143863072818060559}}]},"r_enum":"ONE","r_array":[{"r_boolean":true,"r_int":562303507,"r_long":-3026251537860053284,"r_float":0.40833902,"r_double":0.5290618990604238,"r_bytes":"/—\u00074\u0016ӁUOã‰1¨¸","r_string":"lhnxociwv","r_array":[{"r_boolean":true,"r_int":327551753,"r_long":-5518315437882684205,"r_float":0.37070936,"r_double":0.033948956345069004,"r_bytes":"¨“9»%à‡]Ô","r_string":"ejf","r_enum":"ONE","r_date":2128551116,"r_timemillis":263306831,"r_timemicros":5725451915833667213,"r_timestampmillis":4433014731493343309,"r_timestampmicros":7580775605888536402,"o_boolean":{"boolean":false},"o_int":{"int":1317633958},"o_long":{"long":-5740378080000289557},"o_float":null,"o_double":{"double":0.21348496407792772},"o_bytes":{"bytes":"i0\u001A8å\u001Ek&G]Ý\u001F"},"o_string":null,"o_enum":null,"o_date":null,"o_timemillis":{"int":293119752},"o_timemicros":null,"o_timestampmillis":{"long":1638221859903910630},"o_timestampmicros":null}],"o_boolean":{"boolean":true},"o_int":null,"o_long":{"long":-3714888093424196091},"o_float":null,"o_double":null,"o_bytes":{"bytes":"åÿq\u0006ÈÎU'}u·\u0006˜3’"},"o_string":{"string":"nwgxheqrvq"},"o_enum":null,"o_date":{"int":1353097070},"o_timemillis":{"int":18583061},"o_timemicros":null,"o_timestampmillis":null,"o_timestampmicros":{"long":-3581502822544588930}},{"r_boolean":false,"r_int":-1762650676,"r_long":6185677386661076414,"r_float":0.12198508,"r_double":0.8887687799046826,"r_bytes":"åá;ê­Ã¸jrœ×¶","r_string":"ivrfdiysasti","r_array":[{"r_boolean":false,"r_int":106830239,"r_long":1645348649483687303,"r_float":0.040547192,"r_double":0.33032712859250946,"r_bytes":"\u0010\u000FQ›ì","r_string":"ych","r_enum":"TWO","r_date":-254082006,"r_timemillis":616862328,"r_timemicros":3957021009401666149,"r_timestampmillis":8442344684744105577,"r_timestampmicros":4922180463502285598,"o_boolean":null,"o_int":{"int":-1624166506},"o_long":{"long":571796954449697545},"o_float":null,"o_double":null,"o_bytes":null,"o_string":{"string":"dqq"},"o_enum":{"Level2_2_Enum2":"ZERO"},"o_date":null,"o_timemillis":{"int":961918238},"o_timemicros":{"long":3004286882654442410},"o_timestampmillis":null,"o_timestampmicros":{"long":5756561655859464546}},{"r_boolean":true,"r_int":-828515587,"r_long":328557979936213066,"r_float":0.62052214,"r_double":0.9624283491915318,"r_bytes":".£>ýú\nÆIqú¸","r_string":"gnspd","r_enum":"ZERO","r_date":1885893663,"r_timemillis":1265873871,"r_timemicros":3159666704109144369,"r_timestampmillis":-5660097153741601875,"r_timestampmicros":1999310913128187763,"o_boolean":null,"o_int":null,"o_long":{"long":7314708584328808044},"o_float":null,"o_double":null,"o_bytes":{"bytes":"LJ}\u0014\u0003¸û2¯»Âòji"},"o_string":null,"o_enum":null,"o_date":{"int":1647353358},"o_timemillis":null,"o_timemicros":{"long":-5618165591226243796},"o_timestampmillis":null,"o_timestampmicros":{"long":7554711976157632799}},{"r_boolean":false,"r_int":-1262069113,"r_long":7734196082290445929,"r_float":0.7849199,"r_double":0.6879228945464425,"r_bytes":"”T‡ó\\亊7_(","r_string":"yaukgduuvm","r_enum":"TWO","r_date":494194858,"r_timemillis":-1121688199,"r_timemicros":-8637992772756501724,"r_timestampmillis":-6769417422905574175,"r_timestampmicros":-8985005609023155136,"o_boolean":null,"o_int":{"int":200341531},"o_long":null,"o_float":{"float":0.33986038},"o_double":null,"o_bytes":{"bytes":"o/\u0003ç*H—ÔùÎ"},"o_string":null,"o_enum":null,"o_date":{"int":-1508576594},"o_timemillis":{"int":2093357875},"o_timemicros":{"long":-4730855284274378638},"o_timestampmillis":{"long":-6775710560419811311},"o_timestampmicros":null}],"o_boolean":null,"o_int":null,"o_long":{"long":7937243346237081351},"o_float":{"float":0.53966683},"o_double":null,"o_bytes":{"bytes":"ŠhȹSUËüäÑ7"},"o_string":{"string":"klfbntkmxkpn"},"o_enum":{"Level1_2_Enum2":"ZERO"},"o_date":null,"o_timemillis":null,"o_timemicros":null,"o_timestampmillis":{"long":3575299774037370541},"o_timestampmicros":{"long":-1523884496461937110}},{"r_boolean":true,"r_int":588091725,"r_long":-5410862467335824405,"r_float":0.84841067,"r_double":0.9866108743801445,"r_bytes":"™²\u000Eqš½\u0006wy˜…:%\u0014","r_string":"pvi","r_array":[{"r_boolean":false,"r_int":846399468,"r_long":1026681742809639391,"r_float":0.9698005,"r_double":0.9672416218650967,"r_bytes":"ÕIuB","r_string":"qdwnatbl","r_enum":"TWO","r_date":-1275740616,"r_timemillis":1644300523,"r_timemicros":7691219781333285853,"r_timestampmillis":-8006373184990158392,"r_timestampmicros":-1309341916770483743,"o_boolean":{"boolean":true},"o_int":{"int":1302862766},"o_long":{"long":-6050146636139593207},"o_float":null,"o_double":{"double":0.4211114137015738},"o_bytes":null,"o_string":{"string":"uwqw"},"o_enum":null,"o_date":{"int":271393356},"o_timemillis":null,"o_timemicros":null,"o_timestampmillis":{"long":3553056163724380812},"o_timestampmicros":null},{"r_boolean":false,"r_int":-1195164216,"r_long":-7349271671926553944,"r_float":0.7550633,"r_double":0.2359328152171588,"r_bytes":"\u0002c\u0003¿ã","r_string":"rh","r_enum":"TWO","r_date":-2109663074,"r_timemillis":-2018644435,"r_timemicros":-3295337138998130597,"r_timestampmillis":-1452447872331501901,"r_timestampmicros":2345939392997483837,"o_boolean":{"boolean":false},"o_int":{"int":-1303215650},"o_long":null,"o_float":null,"o_double":null,"o_bytes":{"bytes":"U\\PœŽ£\u0006î“xã\bÙâ\\"},"o_string":null,"o_enum":null,"o_date":{"int":1031545778},"o_timemillis":null,"o_timemicros":{"long":835380976679103969},"o_timestampmillis":null,"o_timestampmicros":null}],"o_boolean":{"boolean":false},"o_int":{"int":835575774},"o_long":{"long":9131357363069556704},"o_float":{"float":0.0058045387},"o_double":null,"o_bytes":null,"o_string":{"string":"ebj"},"o_enum":null,"o_date":{"int":1849477836},"o_timemillis":{"int":1172752651},"o_timemicros":null,"o_timestampmillis":{"long":-4241019279615403549},"o_timestampmicros":null},{"r_boolean":true,"r_int":1016768522,"r_long":-3394535758110410265,"r_float":0.37286246,"r_double":0.040828343813460455,"r_bytes":"4Vlk©\u0017ØPôú8÷¥\u0017\u000F³\u0002h||\u0007æ-²G;°\u001Ftù؜\u0007üÇ3¼N€q\u0013\u0001mŸ\u0019(ÍYÄ»\u0019â¶å¹Ÿ\u0010]¥V&\u0017Ëý7?I˜¶Q‚jØ\u0015&ì½=“\u0015poÑêW=G¸•ÞZí1\u0019\\1dþÑzNÔô\u001EûÄ\u0016\u000Eì5â\u0014\u0000\b\u0010¿òPbày\n¡\u0017’bõ^07”þ]»¤ªÜ\u0019\u000Efq\u0003–\u0002ÔÝ=–Pwà\u0011¡¬ì+C4V\u001Bäþ‡~û,\u0005ÈDzÐ\\(ƒ\u0017\nï Ó4\u0016ÙêZI‚\u0006\u0014ô","r_string":"m","r_array":[],"o_boolean":null,"o_int":{"int":2013907774},"o_long":null,"o_float":{"float":0.36525267},"o_double":{"double":0.9542640459599919},"o_bytes":{"bytes":""},"o_string":null,"o_enum":null,"o_date":{"int":1435668774},"o_timemillis":{"int":-1572199952},"o_timemicros":null,"o_timestampmillis":{"long":8158711532201594662},"o_timestampmicros":null}],"r_date":-1773470378,"r_timemillis":-987850221,"r_timemicros":-4578996638318071158,"r_timestampmillis":-8142220998335608645,"r_timestampmicros":5098675424909791115,"o_boolean":null,"o_int":{"int":2070458035},"o_long":null,"o_float":{"float":0.748581},"o_double":null,"o_bytes":null,"o_string":null,"o_enum":null,"o_date":{"int":1857983840},"o_timemillis":null,"o_timemicros":null,"o_timestampmillis":null,"o_timestampmicros":{"long":5399063232225105969}} -{"r_boolean":true,"r_int":-543082694,"r_long":8577930278879344119,"r_float":0.9587433,"r_double":0.08588568733226365,"r_bytes":"¥BúŒ\u0004\u0007IÑsæ’\u0007­","r_string":"djphcmay","r_record":{"r_boolean":false,"r_int":-1316082822,"r_long":3235042555367110465,"r_float":0.0576272,"r_double":0.6236621556729721,"r_bytes":"hÑ\u0018)\u000B\u000B‚yQ÷”N~i","r_string":"splgiajtnogaqms","r_record":{"r_boolean":false,"r_int":38013117,"r_long":-4594356963130918063,"r_float":0.91796887,"r_double":0.38916461774412203,"r_bytes":"¬(¿@¡÷\u0017~¢˜Š™áE","r_string":"oeilda","r_enum":"ZERO","r_date":-1786838904,"r_timemillis":770705580,"r_timemicros":-2863111325646510619,"r_timestampmillis":-8934192033846153432,"r_timestampmicros":-4953177223481113672,"o_boolean":null,"o_int":{"int":2052956103},"o_long":{"long":3399663391829057137},"o_float":null,"o_double":null,"o_bytes":null,"o_string":{"string":"dtrxxh"},"o_enum":null,"o_date":null,"o_timemillis":null,"o_timemicros":{"long":3782171897657991154},"o_timestampmillis":null,"o_timestampmicros":{"long":4953339854948519540}},"r_enum":"TWO","r_date":-479122514,"r_timemillis":648104478,"r_timemicros":3481580269005822426,"r_timestampmillis":-3385997164005230207,"r_timestampmicros":-4204916914804554795,"r_array":[{"r_boolean":false,"r_int":1849763511,"r_long":-4052772978905590892,"r_float":0.067260206,"r_double":0.12643814003870413,"r_bytes":"çW-m","r_string":"xctnbe","r_enum":"ONE","o_boolean":null,"o_int":null,"o_long":null,"o_float":{"float":0.45619357},"o_double":null,"o_bytes":{"bytes":""},"o_string":null,"o_enum":{"Level2_1__2_Enum2":"TWO"},"o_date":{"int":2048066190},"o_timemillis":{"int":-1116507563},"o_timemicros":null,"o_timestampmillis":null,"o_timestampmicros":null},{"r_boolean":false,"r_int":2074273879,"r_long":-355038339949281896,"r_float":0.6423529,"r_double":0.42670767165281454,"r_bytes":"\rI•­;`>…`¡'\u0011U˜Í","r_string":"lpfkowlchoondn","r_enum":"ONE","o_boolean":null,"o_int":{"int":1981190987},"o_long":{"long":1843187825577607729},"o_float":{"float":0.7735423},"o_double":{"double":0.5731234088795826},"o_bytes":{"bytes":"Ø\u0012m"},"o_string":{"string":""},"o_enum":{"Level2_1__2_Enum2":"ZERO"},"o_date":{"int":-189174689},"o_timemillis":null,"o_timemicros":null,"o_timestampmillis":{"long":-4322645051162689842},"o_timestampmicros":null},{"r_boolean":false,"r_int":-1305506313,"r_long":-76072665914795462,"r_float":0.98793834,"r_double":0.37588011554106515,"r_bytes":"ouÐ0…ýj(ÕIÖp\u0013ur","r_string":"baxhtfhsspcn","r_enum":"TWO","o_boolean":null,"o_int":{"int":2143013145},"o_long":{"long":7228102476404584672},"o_float":{"float":0.15169287},"o_double":null,"o_bytes":null,"o_string":null,"o_enum":null,"o_date":null,"o_timemillis":null,"o_timemicros":{"long":6855074690815046785},"o_timestampmillis":null,"o_timestampmicros":null}]},"r_enum":"ONE","r_array":[{"r_boolean":true,"r_int":1617375339,"r_long":-2348075225422479651,"r_float":0.13411993,"r_double":0.21054187937610525,"r_bytes":"´œÀý[[[á","r_string":"gloklnybw","r_array":[{"r_boolean":false,"r_int":-1647056124,"r_long":-2828931333541360893,"r_float":0.9168382,"r_double":0.5165152824395622,"r_bytes":"¯©,§‘¢£—¨m","r_string":"","r_enum":"ZERO","r_date":216403806,"r_timemillis":-1233722447,"r_timemicros":-4509827598274846389,"r_timestampmillis":2882996719138040096,"r_timestampmicros":4213041232953560028,"o_boolean":{"boolean":true},"o_int":{"int":-1449900348},"o_long":{"long":8519322423857852296},"o_float":{"float":0.9840553},"o_double":null,"o_bytes":{"bytes":"ØZ€Å^W¾æ»Ë|Â\u001E#"},"o_string":null,"o_enum":{"Level2_2_Enum2":"ONE"},"o_date":null,"o_timemillis":null,"o_timemicros":{"long":-3777130671507802517},"o_timestampmillis":{"long":-1706993523238901118},"o_timestampmicros":{"long":-3492331168182593052}}],"o_boolean":{"boolean":true},"o_int":{"int":-1809766983},"o_long":null,"o_float":{"float":0.6501088},"o_double":{"double":0.5727076209753628},"o_bytes":null,"o_string":null,"o_enum":null,"o_date":{"int":-1257151651},"o_timemillis":{"int":-1675257267},"o_timemicros":null,"o_timestampmillis":null,"o_timestampmicros":{"long":-3610708243046214308}},{"r_boolean":false,"r_int":-575065363,"r_long":-7369937823202452986,"r_float":0.23493469,"r_double":0.022678464288806488,"r_bytes":"\u0003p£Oê±$Ä\u001B\u0010®¬","r_string":"urjejewvgkvqm","r_array":[{"r_boolean":false,"r_int":454822041,"r_long":-4871044270250181404,"r_float":0.7451829,"r_double":0.677252233468941,"r_bytes":"ó Üci;\u001B68|F¿ÉÚ7","r_string":"agfn","r_enum":"ONE","r_date":1595975544,"r_timemillis":1487949124,"r_timemicros":365804077253653532,"r_timestampmillis":-5999215997101676641,"r_timestampmicros":6088036073039350608,"o_boolean":null,"o_int":null,"o_long":{"long":7300393757907213852},"o_float":{"float":0.9815002},"o_double":null,"o_bytes":null,"o_string":{"string":"jdptcc"},"o_enum":null,"o_date":{"int":-1406317761},"o_timemillis":null,"o_timemicros":null,"o_timestampmillis":null,"o_timestampmicros":{"long":4661273205732078292}},{"r_boolean":false,"r_int":218638330,"r_long":5895276948778933727,"r_float":0.16411197,"r_double":0.46360381591308475,"r_bytes":"0wlãltKÑ%’¸\u0018˜","r_string":"vjjikstftmqp","r_enum":"ZERO","r_date":-613886703,"r_timemillis":1813138784,"r_timemicros":-248428851319570558,"r_timestampmillis":2031756737172626592,"r_timestampmicros":-4175378174981623527,"o_boolean":null,"o_int":null,"o_long":null,"o_float":null,"o_double":null,"o_bytes":{"bytes":"iX¹ïb\u000E}°"},"o_string":null,"o_enum":null,"o_date":null,"o_timemillis":{"int":2081927123},"o_timemicros":{"long":5928640677548027747},"o_timestampmillis":{"long":-4540344690671387948},"o_timestampmicros":null},{"r_boolean":true,"r_int":748099228,"r_long":-8094396337979654590,"r_float":0.06413299,"r_double":0.8826267190099956,"r_bytes":"¦8Í*\u00044:J×}l7ðËB","r_string":"rommisxtm","r_enum":"ONE","r_date":100655689,"r_timemillis":1582350458,"r_timemicros":-5162577734129854792,"r_timestampmillis":1018945783072453554,"r_timestampmicros":-9149445960633856402,"o_boolean":{"boolean":false},"o_int":null,"o_long":null,"o_float":{"float":0.53261054},"o_double":null,"o_bytes":null,"o_string":{"string":"vlp"},"o_enum":{"Level2_2_Enum2":"TWO"},"o_date":{"int":-1158821488},"o_timemillis":{"int":985344402},"o_timemicros":{"long":652515610874907988},"o_timestampmillis":{"long":2383343662042824774},"o_timestampmicros":{"long":5678040504863802657}}],"o_boolean":null,"o_int":null,"o_long":null,"o_float":null,"o_double":null,"o_bytes":null,"o_string":null,"o_enum":null,"o_date":null,"o_timemillis":{"int":-1406021090},"o_timemicros":{"long":-3942971579713675765},"o_timestampmillis":{"long":4372853009013896180},"o_timestampmicros":{"long":-146564740436039774}},{"r_boolean":false,"r_int":1299122695,"r_long":-1181739917101621626,"r_float":0.14651853,"r_double":0.20745450308139568,"r_bytes":"{ùAŠ3zœƒ8«oBn>","r_string":"xeuwvnkeo","r_array":[{"r_boolean":true,"r_int":-19194935,"r_long":-1599440022762299182,"r_float":0.19494921,"r_double":0.0954647980529133,"r_bytes":"ðæ?Yn™a§š\u001C","r_string":"fo","r_enum":"ZERO","r_date":840171717,"r_timemillis":-460537117,"r_timemicros":-1053460578013520233,"r_timestampmillis":-5867768277185395066,"r_timestampmicros":-212428490929113003,"o_boolean":null,"o_int":{"int":-1936352854},"o_long":{"long":-7635510816918143575},"o_float":null,"o_double":{"double":0.49072519795563696},"o_bytes":null,"o_string":null,"o_enum":{"Level2_2_Enum2":"TWO"},"o_date":null,"o_timemillis":null,"o_timemicros":{"long":6660825092662762483},"o_timestampmillis":null,"o_timestampmicros":{"long":-6056656781443197453}},{"r_boolean":false,"r_int":-30190558,"r_long":7125086132991751854,"r_float":0.65572137,"r_double":0.004315858746953838,"r_bytes":"­y\u0016ÊOª\u0012\u0004ª","r_string":"encekwcffqjr","r_enum":"ZERO","r_date":1288762620,"r_timemillis":1932267169,"r_timemicros":-6066206011969467126,"r_timestampmillis":4636323304333455881,"r_timestampmicros":166634753015230504,"o_boolean":null,"o_int":null,"o_long":{"long":-5899310133341421913},"o_float":{"float":0.5116432},"o_double":{"double":0.03270006656115243},"o_bytes":{"bytes":"B%\u0013ZøÞb5sÁ\u0000"},"o_string":{"string":"vrodbqoahxc"},"o_enum":{"Level2_2_Enum2":"TWO"},"o_date":{"int":-841411738},"o_timemillis":{"int":-247894152},"o_timemicros":null,"o_timestampmillis":null,"o_timestampmicros":null},{"r_boolean":true,"r_int":-1371266293,"r_long":7746221055278818821,"r_float":0.5342098,"r_double":0.3823034193258896,"r_bytes":"—","r_string":"tggdk","r_enum":"ONE","r_date":1734092538,"r_timemillis":308640400,"r_timemicros":2596796984261817739,"r_timestampmillis":-5700139707166938970,"r_timestampmicros":2777901862862523579,"o_boolean":{"boolean":false},"o_int":{"int":1155404777},"o_long":null,"o_float":{"float":0.4063362},"o_double":null,"o_bytes":null,"o_string":null,"o_enum":null,"o_date":{"int":349301997},"o_timemillis":null,"o_timemicros":null,"o_timestampmillis":null,"o_timestampmicros":null}],"o_boolean":null,"o_int":null,"o_long":{"long":-4307613743650249532},"o_float":{"float":0.18268508},"o_double":{"double":0.8393377163813165},"o_bytes":null,"o_string":{"string":"syslouwrbivwvaltecmrrymfkyjcmdfaqusrmhaaxyqhvlifyanhdbdrlaqyviprdw"},"o_enum":{"Level1_2_Enum2":"ONE"},"o_date":null,"o_timemillis":{"int":9604488},"o_timemicros":{"long":-8467627480751710973},"o_timestampmillis":null,"o_timestampmicros":{"long":-7829612846070843606}}],"r_date":1923849004,"r_timemillis":301944872,"r_timemicros":6001710253044674514,"r_timestampmillis":-3452967504727051014,"r_timestampmicros":-5168269797912522184,"o_boolean":null,"o_int":{"int":200191745},"o_long":{"long":2883194703149114059},"o_float":{"float":0.30382848},"o_double":{"double":0.7341122106372325},"o_bytes":null,"o_string":null,"o_enum":{"Enum2":"ONE"},"o_date":null,"o_timemillis":null,"o_timemicros":{"long":-2178914403480021514},"o_timestampmillis":null,"o_timestampmicros":{"long":6990328811444527870}} -{"r_boolean":true,"r_int":-369139591,"r_long":3056038123124373500,"r_float":0.315853,"r_double":0.7027279985000667,"r_bytes":"hs","r_string":"jigsqstglrjbsve","r_record":{"r_boolean":false,"r_int":-1409501715,"r_long":4198505864248580518,"r_float":0.6924617,"r_double":0.34962889184808166,"r_bytes":"Ä","r_string":"ewnmcuvmexaiktk","r_record":{"r_boolean":false,"r_int":360188072,"r_long":8866444495528992160,"r_float":0.14631146,"r_double":0.13867985258357973,"r_bytes":"mà\u0017Ÿ/Šù","r_string":"repxoup","r_enum":"ZERO","r_date":-1357749559,"r_timemillis":658568777,"r_timemicros":976501000691137755,"r_timestampmillis":-4390214703944213931,"r_timestampmicros":-1835944270384959013,"o_boolean":{"boolean":true},"o_int":null,"o_long":{"long":3022988607959160153},"o_float":{"float":0.91902196},"o_double":null,"o_bytes":{"bytes":"üªn\"o9ÞÔ\u000B\u0004ÓV†~"},"o_string":null,"o_enum":null,"o_date":{"int":-1896674232},"o_timemillis":{"int":-2003789720},"o_timemicros":{"long":4090968020641389424},"o_timestampmillis":{"long":-1181426013717785433},"o_timestampmicros":null},"r_enum":"ONE","r_date":-48367070,"r_timemillis":995676147,"r_timemicros":3080802545260973143,"r_timestampmillis":-8213517078829307947,"r_timestampmicros":-8925447991080776938,"r_array":[]},"r_enum":"ONE","r_array":[{"r_boolean":false,"r_int":788884217,"r_long":-7564467118652294835,"r_float":0.7553213,"r_double":0.4542184108376318,"r_bytes":"æ$³","r_string":"meoiwnqw","r_array":[{"r_boolean":false,"r_int":1719476891,"r_long":1565029495032747974,"r_float":0.3274622,"r_double":0.985947608559905,"r_bytes":"픦A„”","r_string":"dfeogyvhwtuq","r_enum":"TWO","r_date":-947546246,"r_timemillis":1686516821,"r_timemicros":-2892990655923579579,"r_timestampmillis":-3491052787590408820,"r_timestampmicros":-4422959630742704568,"o_boolean":{"boolean":true},"o_int":null,"o_long":{"long":5961521643112176956},"o_float":{"float":0.45428234},"o_double":{"double":0.9613447602006899},"o_bytes":null,"o_string":null,"o_enum":{"Level2_2_Enum2":"TWO"},"o_date":{"int":1814011218},"o_timemillis":null,"o_timemicros":{"long":-4939658444097272642},"o_timestampmillis":{"long":-1067017381674974226},"o_timestampmicros":null},{"r_boolean":true,"r_int":-1195907571,"r_long":753642145930559534,"r_float":0.7402451,"r_double":0.7954333614303992,"r_bytes":"i#ѲȤgÈmT76","r_string":"scxq","r_enum":"ZERO","r_date":-2012992669,"r_timemillis":-1878184400,"r_timemicros":2771449759267623385,"r_timestampmillis":-2417866105520748837,"r_timestampmicros":-1986190968815015912,"o_boolean":{"boolean":false},"o_int":{"int":2044867453},"o_long":null,"o_float":null,"o_double":{"double":0.6464928287548717},"o_bytes":null,"o_string":null,"o_enum":null,"o_date":{"int":1112064815},"o_timemillis":null,"o_timemicros":{"long":-5896242222732704176},"o_timestampmillis":{"long":-8984424845480752568},"o_timestampmicros":{"long":-2314312170412079520}}],"o_boolean":{"boolean":false},"o_int":null,"o_long":null,"o_float":{"float":0.9067854},"o_double":null,"o_bytes":{"bytes":"¹gŠÕ§t"},"o_string":{"string":"ptfhkkcu"},"o_enum":{"Level1_2_Enum2":"TWO"},"o_date":{"int":1100290003},"o_timemillis":null,"o_timemicros":null,"o_timestampmillis":{"long":-3124241386654975901},"o_timestampmicros":null}],"r_date":625450102,"r_timemillis":1062123894,"r_timemicros":5488457683923803714,"r_timestampmillis":3714237046813059602,"r_timestampmicros":-7964354940822455576,"o_boolean":null,"o_int":{"int":-1535823057},"o_long":{"long":8217265705705626110},"o_float":{"float":0.84003323},"o_double":{"double":0.21349565241818047},"o_bytes":null,"o_string":{"string":"toaklangluagpe"},"o_enum":{"Enum2":"ZERO"},"o_date":null,"o_timemillis":null,"o_timemicros":null,"o_timestampmillis":{"long":7979276119725814570},"o_timestampmicros":{"long":2038336944612388560}} -{"r_boolean":true,"r_int":354822085,"r_long":235483910799862196,"r_float":0.4658624,"r_double":0.2924238971329315,"r_bytes":"‚\u0002¦@—¡Û","r_string":"fktysseduujouecqqjnunyisvkglhsrgorkydwbxnnchyxtidydehjpkdeilfqqdsserupcfaetvflfvedryfpmdfekorcylllrvasgq","r_record":{"r_boolean":true,"r_int":1956080651,"r_long":2712282685485170431,"r_float":0.6773328,"r_double":0.5878986155380379,"r_bytes":"Ï;{ÊAQsò","r_string":"lgs","r_record":{"r_boolean":true,"r_int":144126439,"r_long":-3932812926151731589,"r_float":0.8422922,"r_double":0.9334589968468232,"r_bytes":"5Ç0Óí","r_string":"do","r_enum":"ONE","r_date":-1599933611,"r_timemillis":-946505721,"r_timemicros":-5439804229807985640,"r_timestampmillis":-7004201839619006583,"r_timestampmicros":3658603435556236344,"o_boolean":{"boolean":false},"o_int":null,"o_long":{"long":-7965174188700151522},"o_float":null,"o_double":null,"o_bytes":{"bytes":"¨"},"o_string":{"string":"tfyx"},"o_enum":{"Level2_1__1_Enum2":"TWO"},"o_date":null,"o_timemillis":{"int":-410663711},"o_timemicros":{"long":6951674288050694186},"o_timestampmillis":{"long":-7994298574383863227},"o_timestampmicros":null},"r_enum":"ZERO","r_date":597107901,"r_timemillis":-1474330412,"r_timemicros":-8924974731677624957,"r_timestampmillis":948149139290178848,"r_timestampmicros":2087105406703088251,"r_array":[{"r_boolean":true,"r_int":1460647620,"r_long":6637313692661692611,"r_float":0.3581379,"r_double":0.9140640802722402,"r_bytes":"øgc\t\u0000 G‡\u0005","r_string":"ompnhhirjdxu","r_enum":"ZERO","o_boolean":null,"o_int":null,"o_long":{"long":-8536787317250713910},"o_float":{"float":0.76969916},"o_double":{"double":0.23611297206880155},"o_bytes":{"bytes":"ÿ¯W¾ü»W‚"},"o_string":null,"o_enum":null,"o_date":{"int":-1095293277},"o_timemillis":{"int":1092242363},"o_timemicros":{"long":6034135202612438795},"o_timestampmillis":null,"o_timestampmicros":null},{"r_boolean":true,"r_int":-1042300962,"r_long":-4143073691950715957,"r_float":0.9844484,"r_double":0.36606685650532444,"r_bytes":"‘ ã3\u0000§ÛY+0;½ ê×","r_string":"aylossat","r_enum":"ONE","o_boolean":{"boolean":false},"o_int":{"int":-1053068497},"o_long":{"long":-952828124720360094},"o_float":{"float":0.30157638},"o_double":null,"o_bytes":null,"o_string":{"string":"gjfqbhvpn"},"o_enum":null,"o_date":{"int":1898852475},"o_timemillis":{"int":1766928565},"o_timemicros":null,"o_timestampmillis":null,"o_timestampmicros":null},{"r_boolean":false,"r_int":-792191710,"r_long":4507939800752384058,"r_float":0.7715171,"r_double":0.973373136058336,"r_bytes":"","r_string":"hgsapgbmbnbiqb","r_enum":"ONE","o_boolean":null,"o_int":{"int":-855279145},"o_long":null,"o_float":{"float":0.52519876},"o_double":{"double":0.7178425001308514},"o_bytes":{"bytes":"\u0002"},"o_string":{"string":"egkbrliaahyqx"},"o_enum":{"Level2_1__2_Enum2":"ONE"},"o_date":{"int":-776081339},"o_timemillis":null,"o_timemicros":null,"o_timestampmillis":null,"o_timestampmicros":{"long":-9165176171230038044}}]},"r_enum":"ONE","r_array":[{"r_boolean":true,"r_int":-1156680232,"r_long":-7129710349145856465,"r_float":0.2862798,"r_double":0.40162046578909494,"r_bytes":"û\t¢8 æ·","r_string":"jbg","r_array":[],"o_boolean":{"boolean":false},"o_int":{"int":1074205473},"o_long":{"long":4778796962597179917},"o_float":{"float":0.6051221},"o_double":{"double":0.5028838770699098},"o_bytes":null,"o_string":{"string":"hkthb"},"o_enum":null,"o_date":{"int":1114464933},"o_timemillis":{"int":-2122293743},"o_timemicros":null,"o_timestampmillis":{"long":-3906164603708186390},"o_timestampmicros":null},{"r_boolean":false,"r_int":781773200,"r_long":-4397374558460335992,"r_float":0.21241784,"r_double":0.1980421461174665,"r_bytes":"ÅV","r_string":"dbeuf","r_array":[{"r_boolean":true,"r_int":999704820,"r_long":1520931716565257184,"r_float":0.9978687,"r_double":0.17175501459789033,"r_bytes":"4®\u000E\rêÂ\u001A|","r_string":"fadbwqguibnfe","r_enum":"ZERO","r_date":1652694536,"r_timemillis":-1766031829,"r_timemicros":1569640688632489480,"r_timestampmillis":2403168257138310816,"r_timestampmicros":7130333057946545150,"o_boolean":null,"o_int":null,"o_long":{"long":359151598572196534},"o_float":null,"o_double":{"double":0.33983870364399194},"o_bytes":{"bytes":"|ÏQÂÕ\n?N\u0000yê‹L]6¯\bû³(<¨Gy´-bž\u0014\u000Fô\u001AòÖÿžwªL‡0ôÒÃ\u000B˜MBû¥»ìT·bÊD“1š\u0017jFž—W\u001EŽÚqÒ,Èp9Ñ'º\u001Aרi\u000F\\p\u001Aö{Zó\u0000¨±€æÎ>ó\u0002dƒaèãF=}Ÿ\u0000)„Í|KlíÂÊ=îÝ\nÈ\rÏa¦°\u0005®°J˜ìrÖÕª²Í\u001D¡ôøá%”°\u0007GG¦\tÉê\u0014τBœÝ–ÅI¬Ìq\u0000\u000F\u0003 \u000B\u0017ú¦×_¨ŸêW\fërf”†…=mEá”\u0013íH2NÆD†9†ª$)\u0016<ä·®)@,Ä[Âe/\u001F¹ÌÅd…^Z!0‹\u00179T×Ë¥ö©’$âá\"\u001Eúžs"},"o_string":{"string":"srranbpvqdtfvktriidmhfymabcprmqyfhtycgmmqcxlfdjgmqhicnmbwxtjvegjyclucqhmpvinkcxgqwtthiuqobnbumtbuuylwbegjlyhnkfcacukhgtpnfeelmtqqqxjtrleibwktxrheuasrgwyvgsiamcdpyiiwujlujwv"},"o_enum":null,"o_date":null,"o_timemillis":null,"o_timemicros":null,"o_timestampmillis":null,"o_timestampmicros":{"long":-186322290088833061}}],"o_boolean":{"boolean":true},"o_int":{"int":1366889367},"o_long":null,"o_float":{"float":0.2059384},"o_double":null,"o_bytes":{"bytes":"y¼DR¬¤ÿ˜¤õÂm\t¼\u0017"},"o_string":{"string":"gnisnmacptnji"},"o_enum":null,"o_date":{"int":-502257893},"o_timemillis":null,"o_timemicros":null,"o_timestampmillis":{"long":-4723324714779605341},"o_timestampmicros":{"long":7719945373567097252}},{"r_boolean":true,"r_int":-1311948223,"r_long":-3617137311686995966,"r_float":0.2512139,"r_double":0.10467305791343817,"r_bytes":"Ä$㇚P½Ç\u0011","r_string":"phpg","r_array":[],"o_boolean":null,"o_int":{"int":367721729},"o_long":{"long":5148748819556051257},"o_float":{"float":0.5641847},"o_double":null,"o_bytes":null,"o_string":{"string":"dkjeycofka"},"o_enum":{"Level1_2_Enum2":"ONE"},"o_date":null,"o_timemillis":{"int":-1783504430},"o_timemicros":{"long":-3926662969414705455},"o_timestampmillis":null,"o_timestampmicros":null},{"r_boolean":false,"r_int":440806361,"r_long":4176923322729247807,"r_float":0.012128413,"r_double":0.2707688260942438,"r_bytes":"\u001Fxí","r_string":"dhfroypieaewvv","r_array":[{"r_boolean":false,"r_int":-1343479310,"r_long":7740016984818038896,"r_float":0.89174664,"r_double":0.6219848502417329,"r_bytes":"\u001CÛl?§o±sÓ\u0017ñ·˜z","r_string":"edtugccfuxgndi","r_enum":"ONE","r_date":246565041,"r_timemillis":489146297,"r_timemicros":-8217192356984082545,"r_timestampmillis":6404585800629523763,"r_timestampmicros":-381629279553320183,"o_boolean":{"boolean":true},"o_int":{"int":2008776351},"o_long":null,"o_float":{"float":0.9896802},"o_double":null,"o_bytes":null,"o_string":{"string":""},"o_enum":null,"o_date":null,"o_timemillis":{"int":-902074457},"o_timemicros":{"long":1409949105792343492},"o_timestampmillis":{"long":6561145341733398596},"o_timestampmicros":{"long":-1565151924951221157}}],"o_boolean":{"boolean":true},"o_int":{"int":356066627},"o_long":{"long":-1473520681185373120},"o_float":null,"o_double":null,"o_bytes":{"bytes":"èm.À3‹ˆT{´˜e;\u0014ð"},"o_string":null,"o_enum":{"Level1_2_Enum2":"TWO"},"o_date":null,"o_timemillis":{"int":1168716680},"o_timemicros":null,"o_timestampmillis":{"long":-7308899269087265294},"o_timestampmicros":{"long":1100789560740298283}},{"r_boolean":true,"r_int":536104101,"r_long":9047138622757947067,"r_float":0.12908536,"r_double":0.7557337595550818,"r_bytes":"","r_string":"idieeiuetnfb","r_array":[],"o_boolean":null,"o_int":null,"o_long":null,"o_float":null,"o_double":null,"o_bytes":null,"o_string":{"string":"lfjxgqllxjc"},"o_enum":{"Level1_2_Enum2":"ONE"},"o_date":null,"o_timemillis":{"int":127636473},"o_timemicros":null,"o_timestampmillis":{"long":6973551271824829631},"o_timestampmicros":null}],"r_date":-1749586658,"r_timemillis":197160000,"r_timemicros":-7338153018422218449,"r_timestampmillis":8812125486231554985,"r_timestampmicros":-5190334880116194586,"o_boolean":{"boolean":true},"o_int":null,"o_long":{"long":-1811471711314648901},"o_float":null,"o_double":{"double":0.7455481290139044},"o_bytes":{"bytes":"7A½Q\n>'ñ"},"o_string":null,"o_enum":null,"o_date":{"int":-1283041862},"o_timemillis":{"int":-499282699},"o_timemicros":null,"o_timestampmillis":null,"o_timestampmicros":null} -{"r_boolean":true,"r_int":279459576,"r_long":-3166407410102742436,"r_float":0.18978554,"r_double":0.3812475101722894,"r_bytes":"Ã\u0015ZÒòK2\u0000T’","r_string":"","r_record":{"r_boolean":true,"r_int":-1079981425,"r_long":3638684277878594411,"r_float":0.0018122792,"r_double":0.1312756165300274,"r_bytes":"¥ãd€RÄ;\u0017y1\fïd$”Ý &þ\u001A\u0006\nVր¢Bԕs~.«ûµÁ)/ïµ²yˆ§åÂÂ*Sórɽ.²ÿÃyd‡I´…š¾bœ*öîUŽ¼D)?’W ÞåNŽD'r¬R»‡¯á¹;’ü™d¶ÃN•ÂDHÏ*Áâk¥Ó)$º\u000E<Éc","r_string":"bhiraktsnuso","r_record":{"r_boolean":true,"r_int":1441593494,"r_long":288853828357036948,"r_float":0.74745417,"r_double":0.013414536448172365,"r_bytes":"[0\u0012Xz‘\u000E","r_string":"ocyiuea","r_enum":"ZERO","r_date":835480144,"r_timemillis":1099983002,"r_timemicros":-2427892688714996129,"r_timestampmillis":-1093076384079343433,"r_timestampmicros":7963700230270862715,"o_boolean":{"boolean":true},"o_int":null,"o_long":{"long":966159096100685223},"o_float":{"float":0.59046555},"o_double":{"double":0.9578896456663633},"o_bytes":null,"o_string":null,"o_enum":{"Level2_1__1_Enum2":"ZERO"},"o_date":null,"o_timemillis":{"int":789963363},"o_timemicros":{"long":6819475222053539928},"o_timestampmillis":null,"o_timestampmicros":{"long":5514029396953112249}},"r_enum":"TWO","r_date":967292660,"r_timemillis":-1476014550,"r_timemicros":-374517016163518011,"r_timestampmillis":-8504946373906222292,"r_timestampmicros":-8184066324749547898,"r_array":[{"r_boolean":true,"r_int":378258467,"r_long":273546398564014964,"r_float":0.018868268,"r_double":0.5496381012143265,"r_bytes":"\b","r_string":"jet","r_enum":"ONE","o_boolean":null,"o_int":{"int":2092117552},"o_long":{"long":-3211279749767834184},"o_float":null,"o_double":{"double":0.5848935163580953},"o_bytes":null,"o_string":null,"o_enum":{"Level2_1__2_Enum2":"TWO"},"o_date":null,"o_timemillis":{"int":-1432629201},"o_timemicros":{"long":-3773672912404851034},"o_timestampmillis":{"long":-5356457950134459536},"o_timestampmicros":{"long":6217717104509464055}}]},"r_enum":"TWO","r_array":[{"r_boolean":false,"r_int":982750488,"r_long":6504312897464877039,"r_float":0.9223278,"r_double":0.7352820822840129,"r_bytes":"Ø,\u0018&[Ë","r_string":"vbwxqgym","r_array":[],"o_boolean":{"boolean":false},"o_int":{"int":921061956},"o_long":null,"o_float":{"float":0.8016785},"o_double":{"double":0.8061882288122917},"o_bytes":null,"o_string":{"string":"bsvxwghwxbmmtlrvvmsbparebgymsldkfoge"},"o_enum":{"Level1_2_Enum2":"ONE"},"o_date":null,"o_timemillis":null,"o_timemicros":null,"o_timestampmillis":{"long":1259814289366916105},"o_timestampmicros":{"long":6454796512733608309}},{"r_boolean":true,"r_int":-534034540,"r_long":-1233146687359896561,"r_float":0.44650155,"r_double":0.03906458844973515,"r_bytes":"Ÿ\f\u0019ö","r_string":"ycxvf","r_array":[],"o_boolean":{"boolean":true},"o_int":{"int":426216858},"o_long":null,"o_float":null,"o_double":{"double":0.12070665203958808},"o_bytes":{"bytes":"©m\u0017ͺž‰tá×½"},"o_string":null,"o_enum":{"Level1_2_Enum2":"ONE"},"o_date":null,"o_timemillis":{"int":-974489645},"o_timemicros":{"long":2988868397071750487},"o_timestampmillis":null,"o_timestampmicros":null},{"r_boolean":false,"r_int":-322417954,"r_long":-4601940738968775419,"r_float":0.74903345,"r_double":0.11076417378746917,"r_bytes":"","r_string":"abngbvtjxxl","r_array":[{"r_boolean":true,"r_int":1111204557,"r_long":1278975258295280025,"r_float":0.9213403,"r_double":0.8201234674207247,"r_bytes":"õº0§’","r_string":"kramofsa","r_enum":"ONE","r_date":1799245413,"r_timemillis":720989151,"r_timemicros":-686339688037368426,"r_timestampmillis":4043751489779175492,"r_timestampmicros":-8120181224119257713,"o_boolean":null,"o_int":{"int":-1578742842},"o_long":{"long":-2387910391947529630},"o_float":null,"o_double":{"double":0.15896863569373776},"o_bytes":{"bytes":"vüÝD_\u001DÎ\u0015·‹Œ\u000B"},"o_string":{"string":"ouh"},"o_enum":{"Level2_2_Enum2":"ONE"},"o_date":{"int":-1817489645},"o_timemillis":{"int":275969069},"o_timemicros":null,"o_timestampmillis":null,"o_timestampmicros":{"long":1968329600925564895}}],"o_boolean":null,"o_int":{"int":-2030356819},"o_long":{"long":-4275337971833165636},"o_float":null,"o_double":null,"o_bytes":null,"o_string":null,"o_enum":{"Level1_2_Enum2":"TWO"},"o_date":{"int":-755439852},"o_timemillis":null,"o_timemicros":null,"o_timestampmillis":{"long":-2951194534194969097},"o_timestampmicros":{"long":4374869650413882030}}],"r_date":-1761804146,"r_timemillis":-1050524390,"r_timemicros":2610246121109757263,"r_timestampmillis":2217788828529882465,"r_timestampmicros":-8127912991745723792,"o_boolean":null,"o_int":{"int":-990265112},"o_long":{"long":-1011566407636701328},"o_float":null,"o_double":null,"o_bytes":null,"o_string":{"string":"dr"},"o_enum":null,"o_date":null,"o_timemillis":{"int":-1082525046},"o_timemicros":null,"o_timestampmillis":{"long":-4017028534175018520},"o_timestampmicros":null} -{"r_boolean":false,"r_int":1724410432,"r_long":5861760288108344654,"r_float":0.8569208,"r_double":0.39726407262245955,"r_bytes":"\u001D…}~ïc.¤\u000E","r_string":"unvdhxktuodvsa","r_record":{"r_boolean":false,"r_int":-1993447827,"r_long":-8232597530961729706,"r_float":0.07599622,"r_double":0.31173299732489457,"r_bytes":"Îï\u0004ÇÞ","r_string":"urqvkouyqkqswcprirooleuflxncvyqdesepqqgwecnccontgioycpenotfuyijklyjnpbnmcakjyhf","r_record":{"r_boolean":false,"r_int":2001227991,"r_long":-309626477733272920,"r_float":0.96973985,"r_double":0.7877683918129682,"r_bytes":"-Fh¾k:8\t \u001EóW—\t\r","r_string":"khf","r_enum":"ONE","r_date":1557550882,"r_timemillis":1617546468,"r_timemicros":7808300844106729396,"r_timestampmillis":2214467067214659472,"r_timestampmicros":2755834296627072461,"o_boolean":{"boolean":true},"o_int":null,"o_long":{"long":2785941257618188233},"o_float":{"float":0.7118694},"o_double":null,"o_bytes":null,"o_string":{"string":"fbjp"},"o_enum":{"Level2_1__1_Enum2":"TWO"},"o_date":null,"o_timemillis":{"int":-869623048},"o_timemicros":null,"o_timestampmillis":{"long":130107299338891034},"o_timestampmicros":{"long":-1711934959671486243}},"r_enum":"ONE","r_date":1896030451,"r_timemillis":-1387923813,"r_timemicros":4389314592555802714,"r_timestampmillis":6857506033401233818,"r_timestampmicros":7041918900638696817,"r_array":[{"r_boolean":true,"r_int":-1719845062,"r_long":3708936298095018052,"r_float":0.25751668,"r_double":0.7666358552092863,"r_bytes":"9ýŸŒùâh‚™","r_string":"gvjt","r_enum":"ZERO","o_boolean":null,"o_int":null,"o_long":null,"o_float":{"float":0.79980797},"o_double":{"double":0.46268182608572295},"o_bytes":null,"o_string":null,"o_enum":null,"o_date":null,"o_timemillis":{"int":-1757951208},"o_timemicros":null,"o_timestampmillis":null,"o_timestampmicros":{"long":3946427490758515393}},{"r_boolean":false,"r_int":921589976,"r_long":-316108437430950504,"r_float":0.33471614,"r_double":0.010622046436615573,"r_bytes":"ý%","r_string":"jhcytfrlxuy","r_enum":"ONE","o_boolean":{"boolean":false},"o_int":null,"o_long":null,"o_float":{"float":0.65322816},"o_double":null,"o_bytes":{"bytes":"y9^\"Ø1F"},"o_string":{"string":"rgwkdtygjmrraq"},"o_enum":{"Level2_1__2_Enum2":"ONE"},"o_date":{"int":-307629376},"o_timemillis":{"int":1405779832},"o_timemicros":{"long":-5180594489758130917},"o_timestampmillis":null,"o_timestampmicros":null}]},"r_enum":"ZERO","r_array":[{"r_boolean":true,"r_int":-1493308332,"r_long":-8257432966468531597,"r_float":0.7966493,"r_double":0.043510798273100115,"r_bytes":"¯\u000EIJ¦qÌ3ò","r_string":"wvwkoh","r_array":[],"o_boolean":null,"o_int":null,"o_long":{"long":1183421075323192609},"o_float":{"float":0.8361398},"o_double":{"double":0.1331368636351854},"o_bytes":{"bytes":"¨\b\u000Blþ©;‹;W,ïÇ}u…Ò‚ÀÕR†Â+šK_€¡¨&{Hƒ©ý1b–C~FÓ.“í¥-¶üWëó:§“ÔˆIgÊJ7¹Õ2\u001E›Çc(ÜÝ\u00189¾]k'J\u001DÅB¨Ãµ¬Ðü:À3:ñ$föÑÖàáN†<"},"o_string":{"string":"hdhgedbahwjpwi"},"o_enum":{"Level1_2_Enum2":"ONE"},"o_date":null,"o_timemillis":{"int":179360552},"o_timemicros":null,"o_timestampmillis":{"long":-1722210767613764216},"o_timestampmicros":{"long":1285927380372626520}}],"r_date":-1056913821,"r_timemillis":1903964672,"r_timemicros":7896555203279083050,"r_timestampmillis":-4538451114447985808,"r_timestampmicros":2914079400440352159,"o_boolean":null,"o_int":{"int":1885935999},"o_long":null,"o_float":{"float":0.6771913},"o_double":{"double":0.3684970345879449},"o_bytes":null,"o_string":null,"o_enum":{"Enum2":"ONE"},"o_date":{"int":-1684377777},"o_timemillis":{"int":-1396659139},"o_timemicros":{"long":-8197943526022285880},"o_timestampmillis":{"long":-3093882955937949314},"o_timestampmicros":null} -{"r_boolean":false,"r_int":-1560039909,"r_long":-2252703313960238244,"r_float":0.88067186,"r_double":0.8047675079908833,"r_bytes":"r„\u000FÒêÓ4æz^6’C","r_string":"uhleyqxkdwlsibiwtaaeddmibmevedofjwxrwewiqtryshnmrnknrrhajrkylovyevsnypfpjmrlnnbfkokodpqanuxpafkngopxtaxarcwfaxxughnixvvajxkiwcaaudwyunwhmphgmpacehmsxwybndhafiddneyytfbpwgfdh","r_record":{"r_boolean":true,"r_int":-145760218,"r_long":-4208092229435112149,"r_float":0.8714676,"r_double":0.33370803929831105,"r_bytes":"","r_string":"ebqkmiihaqohpo","r_record":{"r_boolean":false,"r_int":-2118004990,"r_long":-7360254090879658890,"r_float":0.67104876,"r_double":0.5430420778729574,"r_bytes":"I¯\u0007¶¼q“\u000Br€Oâ}","r_string":"ftoxhotvl","r_enum":"ZERO","r_date":-1400644550,"r_timemillis":-710072153,"r_timemicros":-9174428606022302195,"r_timestampmillis":-1954035776772816387,"r_timestampmicros":5121354984702314060,"o_boolean":null,"o_int":{"int":1691992349},"o_long":{"long":-8083680644612606962},"o_float":{"float":0.1908133},"o_double":null,"o_bytes":null,"o_string":null,"o_enum":null,"o_date":null,"o_timemillis":{"int":-1819972657},"o_timemicros":null,"o_timestampmillis":null,"o_timestampmicros":{"long":-798937330248341892}},"r_enum":"TWO","r_date":-964605550,"r_timemillis":-1502987008,"r_timemicros":-2275411118061878812,"r_timestampmillis":-6834347054619416102,"r_timestampmicros":-7969907617615605940,"r_array":[]},"r_enum":"ONE","r_array":[{"r_boolean":true,"r_int":-665238318,"r_long":-1325626499800401446,"r_float":0.43000686,"r_double":0.18344833539675343,"r_bytes":"É\u0002Ôz\u0004Ë¿ô","r_string":"qrftupgftpxk","r_array":[{"r_boolean":true,"r_int":1969904255,"r_long":-7312882966837452961,"r_float":0.07524794,"r_double":0.45251929486175846,"r_bytes":"\u001E\u0014d\u000FMR","r_string":"ut","r_enum":"TWO","r_date":777319329,"r_timemillis":570268497,"r_timemicros":8002939277104599830,"r_timestampmillis":6957883749322086071,"r_timestampmicros":-1080524383756026124,"o_boolean":{"boolean":false},"o_int":null,"o_long":{"long":-6378830013155596335},"o_float":{"float":0.9698239},"o_double":{"double":0.8977871834348602},"o_bytes":{"bytes":"QrA¤>º<Š\\a¯³"},"o_string":null,"o_enum":null,"o_date":null,"o_timemillis":null,"o_timemicros":{"long":4046119100636776705},"o_timestampmillis":null,"o_timestampmicros":{"long":3620529255338205824}},{"r_boolean":false,"r_int":-1404940186,"r_long":-4623764939551870327,"r_float":0.14683378,"r_double":0.28210048801950716,"r_bytes":"͒)gö%B¸ÚÝO'\r½ãä¸üh¿È=ÈÕnÍàÄ\u0004×\u0007\u0012Ï´öϚ‘Íþ'4ñE\u0014-»ÙD·1$á¯F\u00019Çû°¿¨ \u0016Ð&'àÙnL³y«cïõ¯_š3W\u0016¾\u001C$qãcëKö¼˜öê\u0003V\u0016ÿ/\u001D’\u000Bž±\u0012K.\u0013ªwـBu¯¡”µ\rÉ7˜\u0002\u0012\u000E\n\u0007cä‰K¬ÔÇÀ $ý÷ž‡š–+aX?™û0ðŸ2Èþ\u0006‚\u0019•(¡ƒINPoص·â‘qŽnV´\\_Y\fÙ´›\tB´m”","r_string":"x","r_enum":"TWO","r_date":-430107640,"r_timemillis":-831609489,"r_timemicros":6328742594746352008,"r_timestampmillis":-2394309733803741765,"r_timestampmicros":-947787940664107045,"o_boolean":{"boolean":false},"o_int":null,"o_long":{"long":3392678586562497716},"o_float":null,"o_double":null,"o_bytes":{"bytes":":á)ýºI#‚¡Ó\u0014\thÓH\u0003*\u000Fr\u0005V^¢—N\bbÜGÁêØîë‘{ê¢\"Å\u0003*B¨å©] s\u000Fl>\u0005‘ç]c[\u001CëBj¿^‰;\u0011~? \u0010\t:G!!^\u000Ef½ú.ÿ‚[ȺNáS2Þ\u000F$\u0018E\nùÇ\u0012'ÙÌÃ[rüÒKT¾C«µ…Ö\u001FU<Ò\"êâ¹GqS]»\u0004ꊯéB\u0016xøUyœã\u001FðE¹$–°VQ\u0000/rºµ¾\u0011‡›'bGª½u\u0006­#+i4å¯í¼X3qÕ¤œÍ>k™¨4’Og Jü„¹»Ï,¹¹CR|Í\u001Bü—êØÇyº1Â\u0015F²kVkOÞf-¬\u0001[Æ%õפéö‘á³¼!\u000B\nNXC&AúV~\fIUÐb‰Eß4ûÐZªìû\u0019\u0004ëñ\b˜\u000E’HŸ\\q\n™¸X\u000B?¨ÉìÜnpÀ ?9\u0015Ta8ÖKðl„„\u0005\u001F'\fçV¿Xß*}÷†\u0014\u0002xBëe\u001D(˚\u0015ã\u001AÂÙ)\"1\u0000¼\u0001˜z õ½vYqù¨ÒòÓD¤bÃj+ℳ´9Ó÷[÷ Å$æ\u0013ƒœk¯\u001C돭ÆÖÞ\u001B\u0012+õ€ö’Æt*ÔÑÆ\u0002\u000Fý%fþրÀÇ-¦O¯Á¨—Œ\u0001J®\u0006\u0015q¸•‡UtÆó&OO:Élï\u0015Žà ­\u0019”zCeÔMÜÏý\tÆþҞ‚´t:T´4p냕„þ\u0004\"&\u000EI,Õ\u000B&/EG\"[½³\r\r¶ÞœK´Øâ=ˆ\r\u000B90óրjéB+²\u0001ؔÈÔÔµL£›®r*O\\ù7‡9é<Š²Äá\u001B4æÓÚO\u001B}m\\¸œÙ£îÀVþ‰#X‚à Z\\ÖH°øa8¾(²Sé!zÂEÚ\u001D\u0015Æ8¹]6\u0007p¶Áˆs¶\u0006K-\u001D݁\"ÔSt_\u001Bõ™“vÿ¥¿¹2„‚ úuY\u0011fóÜ\u0010£é\u0016ÿڅU6º½^½\u0002´³(C˜\u001A˜xgMr\u0002\u0017\u0001¤Ö \u0018øï \u000EÉ\u0012\t\u000E¨39‚\u000F˜}¤ö¨a Jý\u0017ϽöŽ'×_u´zx49æ/>svX²%°³Ÿ`Zw÷9Ve\"Îj>f\n!\u001AÚ\u001CnÜ`þ\fÔ{„m\u000B·ú\u0015ÿXê’ ¿ÎvçN4\u0006±ö°ÊÚ\u001FÀrÐ\u0005Ê\u0018ØZ•!ق޸¡¦\nú«ò;ªÐ|Ÿ}j\u0006¦p\u0003qÀ`†|ñ\u000F\u0014X†üÝĐ&(ô…g¼sÈGKFRç–tñ3ÐÉ?0è,ÕJn$(”ΐ¯y«êÇqÙ\u0010ÝZ=\b¤‡ÕÝTKòҀF^V—,ÿNJ\u0006e¡±KæˆñˆÉ¸²16˜ï©ªx;‚Åܝéj\u0002‘É÷]»g\u0005gµðž—çG\u0006@üˉa1¥-¿ù¿!?MB0ä","r_string":"brehvq","r_array":[{"r_boolean":false,"r_int":-927998656,"r_long":-4897412580336659321,"r_float":0.90780693,"r_double":0.9306443518006629,"r_bytes":"²ò~º\u0019\u000BÀU","r_string":"kdaixso","r_enum":"TWO","r_date":-1912870477,"r_timemillis":999952034,"r_timemicros":-6903140646581571201,"r_timestampmillis":1137685209033377553,"r_timestampmicros":1525629484126902888,"o_boolean":null,"o_int":{"int":70174146},"o_long":null,"o_float":{"float":0.6195655},"o_double":null,"o_bytes":{"bytes":"ù"},"o_string":{"string":"wqqoowhllvkmmmfn"},"o_enum":{"Level2_2_Enum2":"ZERO"},"o_date":{"int":-1053994975},"o_timemillis":{"int":1984284536},"o_timemicros":null,"o_timestampmillis":null,"o_timestampmicros":null},{"r_boolean":false,"r_int":-1816554055,"r_long":8639682511757489784,"r_float":0.06983769,"r_double":0.2701800546807852,"r_bytes":"Zn^àsŠ”","r_string":"dwcdovtaiqgxq","r_enum":"TWO","r_date":-662461888,"r_timemillis":1631956281,"r_timemicros":-789460694785994481,"r_timestampmillis":-5189111829735061012,"r_timestampmicros":-7576025964726624844,"o_boolean":{"boolean":false},"o_int":null,"o_long":null,"o_float":null,"o_double":{"double":0.6432225897630036},"o_bytes":null,"o_string":null,"o_enum":null,"o_date":{"int":-611168995},"o_timemillis":{"int":-1231805035},"o_timemicros":null,"o_timestampmillis":{"long":4131596063592029637},"o_timestampmicros":null}],"o_boolean":null,"o_int":{"int":368058272},"o_long":null,"o_float":{"float":0.35280025},"o_double":{"double":0.12659676554946453},"o_bytes":{"bytes":"X5÷ð`˜®÷ú͓x"},"o_string":{"string":"clustehfhfsnvd"},"o_enum":null,"o_date":null,"o_timemillis":{"int":1290982593},"o_timemicros":{"long":-7332740940857699162},"o_timestampmillis":{"long":9092440222684828233},"o_timestampmicros":{"long":-9132165987410682637}}],"r_date":1462840777,"r_timemillis":-786312512,"r_timemicros":-9166653445827396683,"r_timestampmillis":2950013435536473444,"r_timestampmicros":-1398288316445400486,"o_boolean":null,"o_int":{"int":-1758893464},"o_long":null,"o_float":{"float":0.8169546},"o_double":{"double":0.6688755996190264},"o_bytes":{"bytes":"ülꕊ»ˆŽØ¤Ô\u0019·\u000E6k}hJdüø\u001F\t‹\u0004MV\""},"o_string":null,"o_enum":null,"o_date":{"int":1697752569},"o_timemillis":{"int":927003764},"o_timemicros":{"long":-3090227146587102613},"o_timestampmillis":{"long":4060071099405611854},"o_timestampmicros":{"long":8285779058193421753}} -{"r_boolean":false,"r_int":-619813790,"r_long":-3047920806139002193,"r_float":0.73968184,"r_double":0.03942659255975267,"r_bytes":"Ö¹\u0017”ÃŠd’","r_string":"vffvwoikmt","r_record":{"r_boolean":false,"r_int":1524131749,"r_long":6656896602574674432,"r_float":0.95307696,"r_double":0.0015060997726182856,"r_bytes":"}#‡uç\u001BF9|Þ®S!l\u000F","r_string":"rwhgjrrd","r_record":{"r_boolean":true,"r_int":1443295168,"r_long":6651207368213929698,"r_float":0.47077513,"r_double":0.06726459525268536,"r_bytes":"©A®®\u000Ba\u000BÜ","r_string":"mnehqg","r_enum":"ZERO","r_date":1083417856,"r_timemillis":1423143233,"r_timemicros":2624256635277466409,"r_timestampmillis":-3384853882653108685,"r_timestampmicros":3631366154931298411,"o_boolean":{"boolean":true},"o_int":{"int":265605437},"o_long":{"long":5956062360751646756},"o_float":{"float":0.40408158},"o_double":{"double":0.39447575392843004},"o_bytes":null,"o_string":{"string":"msiaywuxd"},"o_enum":null,"o_date":{"int":19045735},"o_timemillis":null,"o_timemicros":null,"o_timestampmillis":{"long":-5917790889850868882},"o_timestampmicros":null},"r_enum":"TWO","r_date":341770781,"r_timemillis":1044102789,"r_timemicros":5732269675684271941,"r_timestampmillis":8095510589367701391,"r_timestampmicros":8571451037529682150,"r_array":[]},"r_enum":"ZERO","r_array":[{"r_boolean":true,"r_int":-508976255,"r_long":-4998860325914921500,"r_float":0.48857975,"r_double":0.7357171474475879,"r_bytes":"4˜g\u0006‚-¬\u0004ÐÝÁ€/","r_string":"ggdimp","r_array":[{"r_boolean":false,"r_int":-1238818850,"r_long":-3610203794677440400,"r_float":0.071994305,"r_double":0.3914791335569465,"r_bytes":"\u0016e|q}ªÕ","r_string":"dmsh","r_enum":"ZERO","r_date":364200156,"r_timemillis":2088601566,"r_timemicros":5883611727707979772,"r_timestampmillis":-8210867644279320379,"r_timestampmicros":7643414515761490858,"o_boolean":null,"o_int":null,"o_long":null,"o_float":{"float":0.2744956},"o_double":null,"o_bytes":null,"o_string":{"string":"veotw"},"o_enum":null,"o_date":null,"o_timemillis":null,"o_timemicros":null,"o_timestampmillis":{"long":6789764198912546366},"o_timestampmicros":null},{"r_boolean":false,"r_int":-1670415936,"r_long":-7395302817804543726,"r_float":0.30144304,"r_double":0.015096232389376185,"r_bytes":"#","r_string":"fqf","r_enum":"ONE","r_date":857547884,"r_timemillis":2139702119,"r_timemicros":9048332982995754648,"r_timestampmillis":-6494067841218662702,"r_timestampmicros":4875525240613632665,"o_boolean":{"boolean":true},"o_int":{"int":-196973883},"o_long":{"long":-6171685066636836437},"o_float":null,"o_double":{"double":0.9319873117801053},"o_bytes":null,"o_string":null,"o_enum":null,"o_date":{"int":1802788491},"o_timemillis":null,"o_timemicros":null,"o_timestampmillis":{"long":-463557465570628384},"o_timestampmicros":{"long":6662544285229762845}},{"r_boolean":false,"r_int":1643811814,"r_long":1383606353235924607,"r_float":0.53725564,"r_double":0.8505747532855847,"r_bytes":"”f9ú\u00113\u001Elê","r_string":"qqfideenswfttlskwppngdqpoqcuoetasvogghswjjwvhbphkoyivxgddnnsgaldvbufopvafkhjmqtwkttrjxomgsyhlxboxkleqbdakqgxyrnqwtacimevbviptuputfowclngojfcahmtyotkyiporhubppotibmopmgtymnijwyvrgwr","r_enum":"TWO","r_date":1419189252,"r_timemillis":615949670,"r_timemicros":6335509066971264530,"r_timestampmillis":7636556439819243906,"r_timestampmicros":7423771853107381008,"o_boolean":{"boolean":false},"o_int":null,"o_long":{"long":-667417802565526910},"o_float":{"float":0.7817185},"o_double":{"double":0.04695820153091457},"o_bytes":null,"o_string":{"string":"enqubeps"},"o_enum":{"Level2_2_Enum2":"ZERO"},"o_date":null,"o_timemillis":null,"o_timemicros":{"long":-1587172475943684265},"o_timestampmillis":null,"o_timestampmicros":{"long":478700420269471261}}],"o_boolean":null,"o_int":null,"o_long":null,"o_float":null,"o_double":null,"o_bytes":null,"o_string":null,"o_enum":{"Level1_2_Enum2":"ZERO"},"o_date":null,"o_timemillis":null,"o_timemicros":{"long":2109832379198032275},"o_timestampmillis":null,"o_timestampmicros":null},{"r_boolean":true,"r_int":1509966624,"r_long":1798678524069724305,"r_float":0.5887396,"r_double":0.3207399875499576,"r_bytes":"Ï*š£Ü„¦¨¼\b","r_string":"hachlqdnj","r_array":[{"r_boolean":false,"r_int":1405991592,"r_long":-1409246931854029198,"r_float":0.7244411,"r_double":0.2979222760151019,"r_bytes":"$äȯm¾","r_string":"pdsbjiubqhhn","r_enum":"TWO","r_date":-30499752,"r_timemillis":851509535,"r_timemicros":-5147942657665011348,"r_timestampmillis":6357374246208250251,"r_timestampmicros":-5947955266625433892,"o_boolean":null,"o_int":{"int":-1863558869},"o_long":{"long":-5600989300604009647},"o_float":{"float":0.9877043},"o_double":{"double":0.989938743512687},"o_bytes":{"bytes":"^Ž"},"o_string":{"string":"voosuoapoveau"},"o_enum":null,"o_date":null,"o_timemillis":{"int":2008916484},"o_timemicros":null,"o_timestampmillis":null,"o_timestampmicros":null},{"r_boolean":false,"r_int":-1976425277,"r_long":3180946313252985955,"r_float":0.92632526,"r_double":0.3171833357391586,"r_bytes":"=ƒÕ±\u0002ôq","r_string":"hgyorewkvudboll","r_enum":"ONE","r_date":907725913,"r_timemillis":-681427890,"r_timemicros":-7239568154124917903,"r_timestampmillis":-4277291032854113453,"r_timestampmicros":-6583760276851922056,"o_boolean":{"boolean":true},"o_int":{"int":1578600725},"o_long":{"long":44336683478675715},"o_float":null,"o_double":{"double":0.2359594345363556},"o_bytes":null,"o_string":{"string":"vmlaekiyxqcymbr"},"o_enum":null,"o_date":null,"o_timemillis":null,"o_timemicros":{"long":7664000344282968277},"o_timestampmillis":{"long":-1811443613299955212},"o_timestampmicros":{"long":-2950087005902256082}},{"r_boolean":true,"r_int":-993882037,"r_long":4917016075919842315,"r_float":0.5180081,"r_double":0.147223172089765,"r_bytes":"Ñ)y\u0001\u001D\u0000©ü","r_string":"cqgyrsoiq","r_enum":"ZERO","r_date":107455985,"r_timemillis":53264690,"r_timemicros":8529281226008127555,"r_timestampmillis":-698906330443501279,"r_timestampmicros":1057308738594504688,"o_boolean":{"boolean":false},"o_int":null,"o_long":null,"o_float":null,"o_double":{"double":0.1912854172401911},"o_bytes":null,"o_string":{"string":"vhyqg"},"o_enum":null,"o_date":null,"o_timemillis":{"int":181249693},"o_timemicros":null,"o_timestampmillis":{"long":7146158158312385948},"o_timestampmicros":{"long":-4506252377632456285}}],"o_boolean":{"boolean":true},"o_int":{"int":-1574816752},"o_long":{"long":1821908128487009861},"o_float":null,"o_double":{"double":0.33453718563145907},"o_bytes":null,"o_string":{"string":"haahstbbxfdqgwwnvetmmixlfewdpwqxrmgaffesqkahhda"},"o_enum":{"Level1_2_Enum2":"TWO"},"o_date":null,"o_timemillis":{"int":-203257270},"o_timemicros":{"long":2013015931580991942},"o_timestampmillis":null,"o_timestampmicros":{"long":-7663930169969166189}},{"r_boolean":false,"r_int":1293647048,"r_long":-4084180819195404258,"r_float":0.89648986,"r_double":0.1417719331676206,"r_bytes":"gÃ1.","r_string":"sopcyxod","r_array":[],"o_boolean":null,"o_int":null,"o_long":{"long":7901460997799376270},"o_float":null,"o_double":{"double":0.41912061164341763},"o_bytes":{"bytes":"¯X\u000F©°"},"o_string":null,"o_enum":{"Level1_2_Enum2":"ONE"},"o_date":{"int":156021219},"o_timemillis":{"int":60005987},"o_timemicros":{"long":3073486028392172},"o_timestampmillis":null,"o_timestampmicros":null},{"r_boolean":true,"r_int":1264486738,"r_long":-1057376400585354185,"r_float":0.5733635,"r_double":0.3335305281785903,"r_bytes":"¿î+òÓqoÐçî7¦\u000E¡_>Ê\nº…=ÅÕ/¬Ò\t\u0017a\u000F=\npKwjb\u0017²H³\u0004ôÚZ$Ÿô-9ö\nBÒä5\\×p7lΚ?ÉÓQëfÆu\u0007d{Ôä>qGíÊó¨!DášWw€6f±œ\u001FØ)ÏiËçe\tƒ\bK\u001Al\"°\u0007†I•„Xϋ‚e“ȱìí\u0004N$V—‹\u0015¨n«\u0005BÙ\t0ÃS€Ç¨”°ÒD̸$=ŽF×G4Æ\u0000ʼn","r_string":"xvbobpectnceoei","r_array":[],"o_boolean":{"boolean":false},"o_int":null,"o_long":{"long":-1590888473521571869},"o_float":{"float":0.80794674},"o_double":{"double":0.5945533630561968},"o_bytes":null,"o_string":{"string":"mrsgejvxt"},"o_enum":{"Level1_2_Enum2":"ONE"},"o_date":{"int":-1068796673},"o_timemillis":null,"o_timemicros":{"long":4775477265911839647},"o_timestampmillis":null,"o_timestampmicros":null}],"r_date":-647351001,"r_timemillis":-978567001,"r_timemicros":-1808288744907864607,"r_timestampmillis":5294659810848628073,"r_timestampmicros":-7158392681960905406,"o_boolean":{"boolean":false},"o_int":{"int":-423725004},"o_long":{"long":544612957406837205},"o_float":null,"o_double":{"double":0.5915559121843843},"o_bytes":null,"o_string":null,"o_enum":null,"o_date":{"int":-40207616},"o_timemillis":null,"o_timemicros":null,"o_timestampmillis":null,"o_timestampmicros":null} -{"r_boolean":true,"r_int":-1663677368,"r_long":5093638561227621578,"r_float":0.21564078,"r_double":0.9129055598080321,"r_bytes":".?\u0010ü™ÅÙû","r_string":"ragontl","r_record":{"r_boolean":false,"r_int":-2065811622,"r_long":6653035017548264028,"r_float":0.29921818,"r_double":0.7814567793565437,"r_bytes":"ßRSÂAó­ë÷sHl","r_string":"vtm","r_record":{"r_boolean":true,"r_int":-1762818376,"r_long":2145675282595207489,"r_float":0.8805012,"r_double":0.7346891247377663,"r_bytes":"™žÁ”à­=׬7yH£","r_string":"n","r_enum":"ONE","r_date":1031208073,"r_timemillis":104680846,"r_timemicros":-4067291762636419401,"r_timestampmillis":1010944584964567889,"r_timestampmicros":7072589191109258162,"o_boolean":{"boolean":false},"o_int":null,"o_long":null,"o_float":{"float":0.58321863},"o_double":{"double":0.7838429028906655},"o_bytes":null,"o_string":null,"o_enum":{"Level2_1__1_Enum2":"TWO"},"o_date":null,"o_timemillis":{"int":148170109},"o_timemicros":{"long":-2965901001258964297},"o_timestampmillis":{"long":4401875407739554503},"o_timestampmicros":null},"r_enum":"ONE","r_date":1861937286,"r_timemillis":1176794557,"r_timemicros":-3795061232581202799,"r_timestampmillis":7601854157426090543,"r_timestampmicros":2453051487156591309,"r_array":[{"r_boolean":true,"r_int":1399768586,"r_long":9145705304923193060,"r_float":0.4456303,"r_double":0.45769875179194885,"r_bytes":"Å·G²\u0005Û3\u000EÓ³x­V¬»","r_string":"fvdgicxjlooheyucqvspadlqfwxgkeoefbtxvbmfttfefhgeyfgtwigfctxxmeubstwwoba","r_enum":"TWO","o_boolean":null,"o_int":{"int":1233177200},"o_long":null,"o_float":null,"o_double":{"double":0.6191051299901688},"o_bytes":null,"o_string":null,"o_enum":{"Level2_1__2_Enum2":"TWO"},"o_date":null,"o_timemillis":{"int":-480142586},"o_timemicros":{"long":48997327647400353},"o_timestampmillis":null,"o_timestampmicros":null},{"r_boolean":false,"r_int":-403534915,"r_long":-8299255495434651257,"r_float":0.030446172,"r_double":0.87585115518956,"r_bytes":"È\u001D¡\u0018FYâšø¤œz","r_string":"mt","r_enum":"ZERO","o_boolean":{"boolean":false},"o_int":{"int":1648410118},"o_long":{"long":-5150952118869424098},"o_float":{"float":0.850611},"o_double":null,"o_bytes":{"bytes":"B¥¢š%¢Ý,3f"},"o_string":null,"o_enum":{"Level2_1__2_Enum2":"ONE"},"o_date":{"int":596604658},"o_timemillis":{"int":1235751510},"o_timemicros":{"long":-2439842873147113406},"o_timestampmillis":null,"o_timestampmicros":null},{"r_boolean":true,"r_int":-1804143151,"r_long":-6007024504633209137,"r_float":0.3067441,"r_double":0.7889637433207626,"r_bytes":"","r_string":"e","r_enum":"ONE","o_boolean":{"boolean":true},"o_int":{"int":2026213512},"o_long":null,"o_float":{"float":0.10559553},"o_double":null,"o_bytes":{"bytes":"§ú?\u0005â~m\f\u0007á"},"o_string":null,"o_enum":{"Level2_1__2_Enum2":"ONE"},"o_date":null,"o_timemillis":null,"o_timemicros":{"long":1295254186074061022},"o_timestampmillis":null,"o_timestampmicros":{"long":-552598613095159161}},{"r_boolean":false,"r_int":-1708162736,"r_long":9057791727768990555,"r_float":0.19549918,"r_double":0.7396899766551656,"r_bytes":"ŸŒ\u001Fò{","r_string":"jnjjybtkgpeuc","r_enum":"ZERO","o_boolean":{"boolean":false},"o_int":null,"o_long":{"long":4167261984532513189},"o_float":null,"o_double":{"double":0.9977045012000264},"o_bytes":null,"o_string":{"string":"pbdvsyr"},"o_enum":{"Level2_1__2_Enum2":"TWO"},"o_date":{"int":522144682},"o_timemillis":{"int":-1538937229},"o_timemicros":null,"o_timestampmillis":{"long":1354368730018348709},"o_timestampmicros":null}]},"r_enum":"ZERO","r_array":[{"r_boolean":true,"r_int":-1889614723,"r_long":6365343982699154911,"r_float":0.90667397,"r_double":0.8857394978368743,"r_bytes":"LJ","r_string":"xguq","r_array":[{"r_boolean":true,"r_int":-915764646,"r_long":3864583129623413653,"r_float":0.5636711,"r_double":0.8909904496126926,"r_bytes":"¤†”:xhHØ®","r_string":"ohlfwtuxeccdfkeiecshyuthqmfgqmjtvxetwnmunesubmpiemcofrntukbqjslxbcysyibvuxjbhleoawntteuuoeixmakceslnqmebairjsmxuybvedxkjnpvjtsbjickxkc","r_enum":"ONE","r_date":-112479141,"r_timemillis":-1657279904,"r_timemicros":1956533886124526180,"r_timestampmillis":5628035703566708431,"r_timestampmicros":2398842055955063797,"o_boolean":{"boolean":true},"o_int":null,"o_long":null,"o_float":null,"o_double":{"double":0.7915416383782358},"o_bytes":null,"o_string":{"string":"xvylp"},"o_enum":null,"o_date":{"int":793519884},"o_timemillis":{"int":254345569},"o_timemicros":null,"o_timestampmillis":null,"o_timestampmicros":{"long":135861392692550072}}],"o_boolean":{"boolean":true},"o_int":null,"o_long":null,"o_float":null,"o_double":{"double":0.9725252383710368},"o_bytes":null,"o_string":null,"o_enum":null,"o_date":null,"o_timemillis":null,"o_timemicros":null,"o_timestampmillis":null,"o_timestampmicros":{"long":3720572209827080184}},{"r_boolean":false,"r_int":950432725,"r_long":5352218537545014277,"r_float":0.5090208,"r_double":0.654382421844715,"r_bytes":"¢Œ\u001Dcs×\u0002|:Šqè#","r_string":"nbwqdjlqsnm","r_array":[],"o_boolean":{"boolean":true},"o_int":null,"o_long":{"long":-5178915095035922374},"o_float":null,"o_double":{"double":0.633089905141139},"o_bytes":null,"o_string":null,"o_enum":{"Level1_2_Enum2":"ZERO"},"o_date":null,"o_timemillis":{"int":-831750332},"o_timemicros":{"long":360596167108511515},"o_timestampmillis":null,"o_timestampmicros":null},{"r_boolean":false,"r_int":56393196,"r_long":6129153640719006530,"r_float":0.9648327,"r_double":0.4684154893176541,"r_bytes":"ø'\u001E~x¼\u0018ã€A\"5¾","r_string":"ngf","r_array":[],"o_boolean":null,"o_int":null,"o_long":null,"o_float":null,"o_double":null,"o_bytes":{"bytes":"YQ¿\u0000\u0015§¢…\r+Ö"},"o_string":{"string":"pcrwwyjmadx"},"o_enum":null,"o_date":{"int":2028222291},"o_timemillis":{"int":-298393858},"o_timemicros":{"long":2889153990677207966},"o_timestampmillis":{"long":5995698072010419156},"o_timestampmicros":null},{"r_boolean":true,"r_int":-922902628,"r_long":-8349553859474982819,"r_float":0.3303042,"r_double":0.7467342898662724,"r_bytes":"ÖA\u000FýA4‚Ÿ«","r_string":"wdumcmgoutf","r_array":[{"r_boolean":true,"r_int":-1181010365,"r_long":-5273433803426750130,"r_float":0.817834,"r_double":0.12008390548727643,"r_bytes":"µ","r_string":"buv","r_enum":"ONE","r_date":142127428,"r_timemillis":270309104,"r_timemicros":1106899837568436274,"r_timestampmillis":-742767510835532125,"r_timestampmicros":7520883855678220717,"o_boolean":null,"o_int":{"int":1170231908},"o_long":{"long":4349884175135796835},"o_float":null,"o_double":{"double":0.6359972536346198},"o_bytes":null,"o_string":{"string":"qkfjhik"},"o_enum":{"Level2_2_Enum2":"ONE"},"o_date":null,"o_timemillis":null,"o_timemicros":{"long":6467252891642963175},"o_timestampmillis":{"long":-7786214111683617672},"o_timestampmicros":null}],"o_boolean":null,"o_int":{"int":-962950732},"o_long":null,"o_float":null,"o_double":{"double":0.7250697605106127},"o_bytes":null,"o_string":{"string":"liddmvwj"},"o_enum":null,"o_date":{"int":741781285},"o_timemillis":null,"o_timemicros":null,"o_timestampmillis":null,"o_timestampmicros":{"long":8838473951233777719}}],"r_date":-1962959339,"r_timemillis":732048146,"r_timemicros":-695521702925080386,"r_timestampmillis":-426375364393811742,"r_timestampmicros":495257790683000255,"o_boolean":{"boolean":true},"o_int":{"int":1576438419},"o_long":{"long":-8934617038184905515},"o_float":null,"o_double":{"double":0.06752381962508125},"o_bytes":null,"o_string":null,"o_enum":{"Enum2":"TWO"},"o_date":null,"o_timemillis":null,"o_timemicros":{"long":6385155824454489468},"o_timestampmillis":null,"o_timestampmicros":{"long":8480581916875629505}} -{"r_boolean":true,"r_int":-1951651057,"r_long":668800185425482599,"r_float":0.8700004,"r_double":0.6980441808157474,"r_bytes":"¤ÉûMG¢';N\fv¶žæI>Wóõaé\\՞Ž=<êë\n34<ñê´+£{Z\u0014E^3˜8){71¢¿·\u0004œ_—åç\u001E^̓ߋ!C|9&Ý\u001E\u0001ÙjDé30zÿžö™´è×tkÌ¥tÕ\\\u0014ž\n\u0004#O÷¿Ój£¨ùJd½Wðç?9Ëz[±\u001AÉ\n%ê²]À-£ÂÁ\nÍ0¾\u0016S6÷‡gø2áɺœ¹Õ]Ñ\u0002¦Òs\u001CÛ\rnS÷õê\u0011mÓ.rq»Ù%æ±Ù”‡äpÒ×\u001B‚ÉS.ì$fìå\bÕëôÛB~çÄ.@Ÿ€\\úÉÒg2ˆ0¢àñPȃ-¥zÊf~Ñl","r_string":"lddplgtxqe","r_record":{"r_boolean":true,"r_int":-2119050969,"r_long":4958226323127517879,"r_float":0.85611,"r_double":0.8600463416556836,"r_bytes":"\u0019b\t\u0007p>{eßy3s\\\u001E","r_string":"ikamx","r_record":{"r_boolean":false,"r_int":-756859656,"r_long":-1765695068237794828,"r_float":0.76751,"r_double":0.6234029986840702,"r_bytes":"7Z\u001AúA$‹l\u001C\f9","r_string":"awfliiwbfnirh","r_enum":"ONE","r_date":1967397919,"r_timemillis":566772165,"r_timemicros":-1537248958355892035,"r_timestampmillis":-8707241772697633332,"r_timestampmicros":-1272387307691509241,"o_boolean":{"boolean":false},"o_int":null,"o_long":{"long":2289482224449699184},"o_float":null,"o_double":null,"o_bytes":null,"o_string":{"string":"c"},"o_enum":null,"o_date":null,"o_timemillis":null,"o_timemicros":null,"o_timestampmillis":null,"o_timestampmicros":{"long":-6014849883180791921}},"r_enum":"ZERO","r_date":1856736153,"r_timemillis":1816034038,"r_timemicros":1399697744287240030,"r_timestampmillis":-7829227624553746281,"r_timestampmicros":1045263307088926566,"r_array":[{"r_boolean":false,"r_int":-1465260753,"r_long":3008495950132947698,"r_float":0.8323385,"r_double":0.8068765387629289,"r_bytes":"","r_string":"jthnstlyjbjnynp","r_enum":"ZERO","o_boolean":null,"o_int":null,"o_long":null,"o_float":{"float":0.53401643},"o_double":{"double":0.9030664741335089},"o_bytes":{"bytes":""},"o_string":{"string":"pilhgwlnm"},"o_enum":{"Level2_1__2_Enum2":"ZERO"},"o_date":{"int":1683591722},"o_timemillis":{"int":-1035027053},"o_timemicros":null,"o_timestampmillis":null,"o_timestampmicros":null},{"r_boolean":false,"r_int":1224290313,"r_long":2163894393113511087,"r_float":0.28994977,"r_double":0.3190599007719941,"r_bytes":"~jU\u0005\u0003Ž¶»è","r_string":"jivv","r_enum":"ONE","o_boolean":{"boolean":false},"o_int":null,"o_long":{"long":-8908502637789113104},"o_float":{"float":0.48540437},"o_double":null,"o_bytes":null,"o_string":{"string":"ckrmwd"},"o_enum":{"Level2_1__2_Enum2":"TWO"},"o_date":{"int":-2058444293},"o_timemillis":{"int":1838850552},"o_timemicros":null,"o_timestampmillis":null,"o_timestampmicros":{"long":-1920759963984218087}},{"r_boolean":false,"r_int":-1168201789,"r_long":-2246769306826134492,"r_float":0.58295155,"r_double":0.8216565988821728,"r_bytes":"ªúV‚e\u0002·ñ:‹¸","r_string":"jaetnxkvlxwhacv","r_enum":"ZERO","o_boolean":null,"o_int":null,"o_long":null,"o_float":null,"o_double":null,"o_bytes":{"bytes":"aæ\u000E¶‚‚÷"},"o_string":{"string":"poofqefufqdi"},"o_enum":{"Level2_1__2_Enum2":"TWO"},"o_date":{"int":51589297},"o_timemillis":null,"o_timemicros":{"long":-1390759295983702661},"o_timestampmillis":{"long":-4074732931143059325},"o_timestampmicros":null}]},"r_enum":"ZERO","r_array":[{"r_boolean":false,"r_int":-1252628812,"r_long":5154665063126798898,"r_float":0.114201784,"r_double":0.41803229797544084,"r_bytes":"","r_string":"cmgqiopmpfvynw","r_array":[],"o_boolean":null,"o_int":{"int":-1762635442},"o_long":null,"o_float":{"float":0.14929497},"o_double":{"double":0.8065055788981327},"o_bytes":{"bytes":"¬#Sé-"},"o_string":null,"o_enum":null,"o_date":null,"o_timemillis":null,"o_timemicros":{"long":7181779788487917440},"o_timestampmillis":{"long":-1676980869913783566},"o_timestampmicros":null},{"r_boolean":true,"r_int":856056692,"r_long":8909244408935579864,"r_float":0.94785964,"r_double":0.08122411692095255,"r_bytes":"¦\u0004ÏøEb†\u0004êȁ¨”\u000E","r_string":"nnuqpipujdsk","r_array":[],"o_boolean":{"boolean":false},"o_int":null,"o_long":null,"o_float":{"float":0.03502494},"o_double":{"double":0.4386113710659846},"o_bytes":{"bytes":"â<ð¹–\u0000ÓR‚‡p]ðùá"},"o_string":{"string":"egvymtva"},"o_enum":null,"o_date":{"int":-70722743},"o_timemillis":null,"o_timemicros":null,"o_timestampmillis":null,"o_timestampmicros":null}],"r_date":-376790705,"r_timemillis":-1023948934,"r_timemicros":6861235751020793500,"r_timestampmillis":8282186151700141724,"r_timestampmicros":5346226655385676486,"o_boolean":{"boolean":true},"o_int":null,"o_long":{"long":2171243606839749323},"o_float":null,"o_double":{"double":0.7722301219606096},"o_bytes":null,"o_string":{"string":"qcgmrpn"},"o_enum":null,"o_date":null,"o_timemillis":{"int":-1336179946},"o_timemicros":null,"o_timestampmillis":{"long":5398458675981452177},"o_timestampmicros":null} -{"r_boolean":true,"r_int":667898678,"r_long":1457882649546511651,"r_float":0.5762606,"r_double":0.9327566867575652,"r_bytes":"\u0012ՙ\u0003F2ýI“\u0001","r_string":"uelskuivtiv","r_record":{"r_boolean":false,"r_int":548749217,"r_long":2239491271488191386,"r_float":0.06808233,"r_double":0.615125658879155,"r_bytes":"O\u0016F×","r_string":"","r_record":{"r_boolean":true,"r_int":1966438425,"r_long":1844282206115470420,"r_float":0.9611393,"r_double":0.12560911432678534,"r_bytes":"!þᆴí`5^¾H(\u0018","r_string":"jmwknlstu","r_enum":"ONE","r_date":-1599520553,"r_timemillis":792712000,"r_timemicros":5965619674377776835,"r_timestampmillis":-2001846912650576637,"r_timestampmicros":522474140252778699,"o_boolean":{"boolean":false},"o_int":null,"o_long":{"long":2526868379167378247},"o_float":null,"o_double":null,"o_bytes":null,"o_string":null,"o_enum":null,"o_date":null,"o_timemillis":null,"o_timemicros":null,"o_timestampmillis":{"long":579882316772600171},"o_timestampmicros":{"long":2320055202282375563}},"r_enum":"TWO","r_date":-1174861107,"r_timemillis":-895728017,"r_timemicros":3674301929490619936,"r_timestampmillis":-5436011039662730490,"r_timestampmicros":3981526438916506981,"r_array":[{"r_boolean":false,"r_int":1972845016,"r_long":-2987276085744128324,"r_float":0.36434394,"r_double":0.7097802593930026,"r_bytes":"(Žž<)aÕä7¸<ÀAAu","r_string":"hlohbnvkb","r_enum":"TWO","o_boolean":null,"o_int":{"int":582830632},"o_long":{"long":6534448600572143229},"o_float":null,"o_double":null,"o_bytes":{"bytes":" nûÁ\u0007ð\u001E²\n"},"o_string":{"string":"rupr"},"o_enum":{"Level2_1__2_Enum2":"ONE"},"o_date":{"int":-833503094},"o_timemillis":null,"o_timemicros":{"long":-8696734867982228034},"o_timestampmillis":null,"o_timestampmicros":null},{"r_boolean":true,"r_int":25950002,"r_long":-4699233826680340462,"r_float":0.85715646,"r_double":0.7273293635296527,"r_bytes":"*>üYòÈXéÖ3","r_string":"dufqyrexdw","r_enum":"ONE","o_boolean":null,"o_int":{"int":1640900493},"o_long":null,"o_float":{"float":0.028319597},"o_double":{"double":0.8530191384699792},"o_bytes":{"bytes":"=ù\u0000’k\fš‡iÔ"},"o_string":{"string":"rfvmowpyektbhy"},"o_enum":null,"o_date":null,"o_timemillis":null,"o_timemicros":null,"o_timestampmillis":{"long":4913539570793036310},"o_timestampmicros":{"long":-6994447091344821813}},{"r_boolean":false,"r_int":747673876,"r_long":-8115245856247650855,"r_float":0.41679096,"r_double":0.9572832738328511,"r_bytes":"ùÿ¶ŠEÏ7#äÌ","r_string":"yskllwurb","r_enum":"TWO","o_boolean":{"boolean":true},"o_int":{"int":-1869200329},"o_long":{"long":3975237310108269451},"o_float":null,"o_double":null,"o_bytes":{"bytes":"±õº_¥)"},"o_string":null,"o_enum":{"Level2_1__2_Enum2":"TWO"},"o_date":null,"o_timemillis":{"int":2113622554},"o_timemicros":{"long":-7951074818770892850},"o_timestampmillis":null,"o_timestampmicros":null}]},"r_enum":"TWO","r_array":[{"r_boolean":true,"r_int":508252792,"r_long":2283569041257929750,"r_float":0.73612505,"r_double":0.3260532955943206,"r_bytes":"","r_string":"waswbje","r_array":[],"o_boolean":null,"o_int":{"int":722282112},"o_long":{"long":-6773503930213595865},"o_float":null,"o_double":{"double":0.6191726102935695},"o_bytes":{"bytes":""},"o_string":null,"o_enum":null,"o_date":{"int":-720589863},"o_timemillis":{"int":-1571404342},"o_timemicros":{"long":6882900338177412654},"o_timestampmillis":null,"o_timestampmicros":{"long":-3008955240868053005}}],"r_date":-116601102,"r_timemillis":1916867562,"r_timemicros":-4002567793613632395,"r_timestampmillis":2267338545302608323,"r_timestampmicros":-8032918220997963041,"o_boolean":null,"o_int":null,"o_long":{"long":-2014899810697551405},"o_float":null,"o_double":null,"o_bytes":null,"o_string":{"string":"kgvx"},"o_enum":{"Enum2":"ONE"},"o_date":{"int":-1556660881},"o_timemillis":{"int":176258564},"o_timemicros":null,"o_timestampmillis":{"long":6958004959450962576},"o_timestampmicros":{"long":-3928882092889310104}} -{"r_boolean":true,"r_int":-212331693,"r_long":-3168383752802168714,"r_float":0.73511875,"r_double":0.6375842924837637,"r_bytes":"","r_string":"cf","r_record":{"r_boolean":false,"r_int":-1004950426,"r_long":6831263961011441686,"r_float":0.008170605,"r_double":0.9144327977890909,"r_bytes":"À","r_string":"wvyrdncbjm","r_record":{"r_boolean":true,"r_int":-1977136293,"r_long":-7306155643373208707,"r_float":0.5125747,"r_double":0.9696966408570518,"r_bytes":"ž.t=|áDéJ\u0015Â","r_string":"imfxmhuvnqdjlco","r_enum":"ZERO","r_date":-1893385214,"r_timemillis":-1102426959,"r_timemicros":-2775486231207019491,"r_timestampmillis":6479366091052999615,"r_timestampmicros":8345284496715648249,"o_boolean":{"boolean":true},"o_int":{"int":838971502},"o_long":null,"o_float":{"float":0.76836586},"o_double":{"double":0.6132152556513945},"o_bytes":{"bytes":""},"o_string":null,"o_enum":{"Level2_1__1_Enum2":"ZERO"},"o_date":null,"o_timemillis":{"int":-1202289650},"o_timemicros":{"long":4759085717122539613},"o_timestampmillis":{"long":1262308985044265671},"o_timestampmicros":{"long":-3241355039238128029}},"r_enum":"TWO","r_date":2060573966,"r_timemillis":-186824243,"r_timemicros":4222547003442587710,"r_timestampmillis":411421274637927659,"r_timestampmicros":-9204624024556979804,"r_array":[{"r_boolean":false,"r_int":-955256671,"r_long":8636584966217392654,"r_float":0.8706109,"r_double":0.5463083410885492,"r_bytes":"«Öïyµ-Âýg‘À","r_string":"hkmddf","r_enum":"TWO","o_boolean":null,"o_int":null,"o_long":{"long":-782418047505736561},"o_float":{"float":0.6682964},"o_double":{"double":0.28776623459276485},"o_bytes":null,"o_string":null,"o_enum":{"Level2_1__2_Enum2":"TWO"},"o_date":null,"o_timemillis":{"int":-1753101387},"o_timemicros":{"long":-4105717515551661859},"o_timestampmillis":{"long":8338084523469971400},"o_timestampmicros":null}]},"r_enum":"ONE","r_array":[{"r_boolean":false,"r_int":682817666,"r_long":-7882650520626943142,"r_float":0.87016,"r_double":0.03324439653789035,"r_bytes":"A¦rA$&]Ɏ","r_string":"bqwt","r_array":[{"r_boolean":false,"r_int":-405735140,"r_long":3776992424656930071,"r_float":0.2227096,"r_double":0.012868546359595778,"r_bytes":"V³µ\n=y\u0018\u0012×,]\u0016u","r_string":"cjglyqv","r_enum":"ZERO","r_date":-623940704,"r_timemillis":2034221163,"r_timemicros":-2242050423304919230,"r_timestampmillis":3944847553861942732,"r_timestampmicros":-4932267074680262377,"o_boolean":null,"o_int":null,"o_long":null,"o_float":{"float":0.31036174},"o_double":null,"o_bytes":{"bytes":"_Ò¦£\u001Déœ^§°ãû"},"o_string":null,"o_enum":null,"o_date":null,"o_timemillis":{"int":-833666420},"o_timemicros":null,"o_timestampmillis":{"long":3938363099582656267},"o_timestampmicros":null}],"o_boolean":{"boolean":false},"o_int":{"int":1697251254},"o_long":null,"o_float":{"float":0.41471463},"o_double":null,"o_bytes":null,"o_string":{"string":"fmwagwbqissb"},"o_enum":{"Level1_2_Enum2":"ONE"},"o_date":null,"o_timemillis":{"int":1904469654},"o_timemicros":null,"o_timestampmillis":null,"o_timestampmicros":{"long":8827604588753753086}},{"r_boolean":true,"r_int":-431017375,"r_long":6975731144937531776,"r_float":0.05499631,"r_double":0.36371735324456933,"r_bytes":"\f§sh\u000Fb\u001Am","r_string":"mao","r_array":[],"o_boolean":null,"o_int":{"int":2040336714},"o_long":{"long":397015971647964147},"o_float":null,"o_double":{"double":0.0419088132982639},"o_bytes":{"bytes":"\u0016'?3g#µ´âÅî\u0001ó¥w—¢•§j #\u0012\u001CÏ\u0010P†À°\u000F`ÝlùCQ4î@JÛØGz¡&\u0013l)¸¦W\"÷t&&Ð+y$î±ÖA?ÇN\b)$na^ò)ý.´\u0005ÞJ\u001E<â©$\u0013þ Þ"},"o_string":null,"o_enum":{"Level1_2_Enum2":"ZERO"},"o_date":null,"o_timemillis":null,"o_timemicros":null,"o_timestampmillis":null,"o_timestampmicros":null},{"r_boolean":false,"r_int":1820811978,"r_long":4414263682071040274,"r_float":0.11510283,"r_double":0.03912330440717249,"r_bytes":"","r_string":"demrdw","r_array":[],"o_boolean":{"boolean":true},"o_int":null,"o_long":null,"o_float":null,"o_double":null,"o_bytes":null,"o_string":{"string":"fybgk"},"o_enum":null,"o_date":null,"o_timemillis":null,"o_timemicros":null,"o_timestampmillis":null,"o_timestampmicros":{"long":464255986294717004}}],"r_date":1329961266,"r_timemillis":655656771,"r_timemicros":-1655074064995804344,"r_timestampmillis":1748742502079108917,"r_timestampmicros":-2488720779733196693,"o_boolean":{"boolean":true},"o_int":null,"o_long":{"long":3942120444216951620},"o_float":null,"o_double":{"double":0.8663618042658836},"o_bytes":{"bytes":"ô샋\u0014\"ß"},"o_string":null,"o_enum":null,"o_date":null,"o_timemillis":{"int":1020165057},"o_timemicros":null,"o_timestampmillis":{"long":2750614317361745638},"o_timestampmicros":{"long":-157981146098473440}} -{"r_boolean":false,"r_int":1796501478,"r_long":-5387689199416204835,"r_float":0.77134675,"r_double":0.17839186210339186,"r_bytes":"ªû#|.b3^e","r_string":"l","r_record":{"r_boolean":true,"r_int":-1736147649,"r_long":-5917997977385924968,"r_float":0.91336703,"r_double":0.7015282351625169,"r_bytes":"èÇE™w#’c‰À¡\t","r_string":"jyva","r_record":{"r_boolean":true,"r_int":1478632883,"r_long":-5709712076694379525,"r_float":0.7727844,"r_double":0.12017764477508763,"r_bytes":"·T°\u0011æÞ¢\t\u0011>cs","r_string":"sitjrbcwwpow","r_enum":"ONE","r_date":876848877,"r_timemillis":668558702,"r_timemicros":8427536715448672519,"r_timestampmillis":-3309189307393867055,"r_timestampmicros":8761002097451626113,"o_boolean":null,"o_int":null,"o_long":null,"o_float":{"float":0.66415364},"o_double":null,"o_bytes":null,"o_string":{"string":"rxvpr"},"o_enum":null,"o_date":{"int":1259926404},"o_timemillis":null,"o_timemicros":null,"o_timestampmillis":null,"o_timestampmicros":null},"r_enum":"ZERO","r_date":317176693,"r_timemillis":1485943379,"r_timemicros":-4799430781487951310,"r_timestampmillis":-8641241118260725685,"r_timestampmicros":-4086440207014890494,"r_array":[{"r_boolean":true,"r_int":-1133169760,"r_long":-8491491641615705288,"r_float":0.36636347,"r_double":0.7958543265092737,"r_bytes":"\u000Bå\rb4•Ê\u0011”","r_string":"jka","r_enum":"ZERO","o_boolean":{"boolean":false},"o_int":null,"o_long":null,"o_float":{"float":0.7952582},"o_double":{"double":0.32377243850672044},"o_bytes":null,"o_string":{"string":"mtsy"},"o_enum":{"Level2_1__2_Enum2":"TWO"},"o_date":null,"o_timemillis":null,"o_timemicros":{"long":-8243297657614489514},"o_timestampmillis":{"long":-7959420287420514417},"o_timestampmicros":null},{"r_boolean":true,"r_int":-686709222,"r_long":-467443602493263460,"r_float":0.21799064,"r_double":0.28531774205858584,"r_bytes":"\u001A\u0003ôÅ)e","r_string":"m","r_enum":"ONE","o_boolean":{"boolean":true},"o_int":null,"o_long":null,"o_float":null,"o_double":null,"o_bytes":null,"o_string":{"string":"mlbu"},"o_enum":null,"o_date":{"int":-418590741},"o_timemillis":null,"o_timemicros":{"long":3845712500684749049},"o_timestampmillis":{"long":-2114422771100236758},"o_timestampmicros":{"long":8138944631585352805}},{"r_boolean":false,"r_int":-203811655,"r_long":6033417200941100086,"r_float":0.88901216,"r_double":0.9650240192198107,"r_bytes":"\rðˆ","r_string":"chj","r_enum":"ONE","o_boolean":{"boolean":true},"o_int":{"int":-948519514},"o_long":{"long":7865552556088852129},"o_float":null,"o_double":null,"o_bytes":null,"o_string":null,"o_enum":{"Level2_1__2_Enum2":"TWO"},"o_date":{"int":2127180249},"o_timemillis":{"int":-687651197},"o_timemicros":{"long":-6394935302666573496},"o_timestampmillis":{"long":-3748931193801074440},"o_timestampmicros":{"long":9213175269501934255}},{"r_boolean":false,"r_int":-1700617174,"r_long":-9014303733264372531,"r_float":0.03834623,"r_double":0.7248851764000881,"r_bytes":"íA×bé>Ž‹ªU\u001C","r_string":"ygaighr","r_enum":"ONE","o_boolean":null,"o_int":null,"o_long":null,"o_float":null,"o_double":{"double":0.16548599122436514},"o_bytes":null,"o_string":null,"o_enum":{"Level2_1__2_Enum2":"TWO"},"o_date":{"int":-1125385858},"o_timemillis":{"int":356310436},"o_timemicros":{"long":4565856795936485050},"o_timestampmillis":{"long":3746542297835686228},"o_timestampmicros":null}]},"r_enum":"ZERO","r_array":[{"r_boolean":false,"r_int":1922744376,"r_long":401883784793105453,"r_float":0.22268713,"r_double":0.24415093429528323,"r_bytes":";\u001EÈó.=¸\u0003~Gµ€KÊ","r_string":"g","r_array":[{"r_boolean":true,"r_int":-1429666862,"r_long":4762912801834192258,"r_float":0.6174855,"r_double":0.17440398595230233,"r_bytes":"3n.F‹‘Ktëx<","r_string":"bwgqqlyigxeysha","r_enum":"TWO","r_date":-1444571746,"r_timemillis":-427113298,"r_timemicros":-253844911245006159,"r_timestampmillis":-5582956134857720105,"r_timestampmicros":-2860743144415013211,"o_boolean":null,"o_int":{"int":1278406857},"o_long":{"long":516748516487800145},"o_float":null,"o_double":null,"o_bytes":null,"o_string":null,"o_enum":{"Level2_2_Enum2":"ZERO"},"o_date":null,"o_timemillis":null,"o_timemicros":null,"o_timestampmillis":{"long":-6125552512621807244},"o_timestampmicros":null}],"o_boolean":{"boolean":true},"o_int":null,"o_long":{"long":210210678108413866},"o_float":{"float":0.41277015},"o_double":null,"o_bytes":null,"o_string":{"string":"mch"},"o_enum":{"Level1_2_Enum2":"ZERO"},"o_date":null,"o_timemillis":{"int":-1945249802},"o_timemicros":{"long":5153852057803858599},"o_timestampmillis":null,"o_timestampmicros":{"long":-902721137368076077}},{"r_boolean":true,"r_int":1954961898,"r_long":-1873098677276599295,"r_float":0.1405409,"r_double":0.5352655171814069,"r_bytes":"»”äûG\u000F‚\u0001¬ÖwD\bKÛýL\nÀ5¶‚9ƒ1ɏœ[\u0013O¬\u000E>)ŽŽÈǝ\u0012[IäOØ\u0018q¡¥q\u001E¸1[¬3±içvŽ`VQ\u0019–}‡r£\u0013™`'ڃ'9N!~WêaŸ\u0019\u001Dóð¸J\u001Bê_\nÖjª\u0006²\u0005I̗ª“IßXcÐPk´\u001Aâ瓆åo\u0018ðÒ^äÃ\u001CÈ]i9«oÑfÝÄuj\u0015‚¥>îà<ÖîÎÍ,Q\u0000ýU~\u0011Ž¤}Wó¥ë(\u0012‚8]j|Aj{‚«ßO…pê\u0000…òZpmÖ\u0000ý£¸T¤\boh2²ƒ#Û¢z™9\u000E„`ÖÏfì½Ä˜Çߣ\u000F¡+ê¯Êk±Ø´ª²","r_string":"wncjratkvd","r_array":[{"r_boolean":false,"r_int":1606515462,"r_long":4852549247074563161,"r_float":0.11926508,"r_double":0.5004799496119302,"r_bytes":"æ","r_string":"twpmwc","r_enum":"ONE","r_date":1675830711,"r_timemillis":830248998,"r_timemicros":-4773490212051567949,"r_timestampmillis":1267205630518777501,"r_timestampmicros":-5447256853976713728,"o_boolean":{"boolean":true},"o_int":null,"o_long":null,"o_float":{"float":0.60746783},"o_double":null,"o_bytes":null,"o_string":{"string":"rnnrwbihhsbumwkgsglnkyffcdepbijaovlxhufnhgatabvreljo"},"o_enum":{"Level2_2_Enum2":"ONE"},"o_date":null,"o_timemillis":{"int":-1950757187},"o_timemicros":{"long":4109295187123387130},"o_timestampmillis":null,"o_timestampmicros":null},{"r_boolean":true,"r_int":1288720801,"r_long":-7492732772967245572,"r_float":0.67933935,"r_double":0.7736742460839798,"r_bytes":"\u0002","r_string":"aprsjgf","r_enum":"ZERO","r_date":776793304,"r_timemillis":-241715265,"r_timemicros":8363995767288828920,"r_timestampmillis":6289437568825906709,"r_timestampmicros":4616741205497009819,"o_boolean":{"boolean":true},"o_int":null,"o_long":{"long":-3816456557527409283},"o_float":null,"o_double":null,"o_bytes":{"bytes":"ìó\u0018¸]ð‡"},"o_string":{"string":"ejrdydafouw"},"o_enum":null,"o_date":{"int":-1381362016},"o_timemillis":null,"o_timemicros":null,"o_timestampmillis":{"long":-2175650715562855356},"o_timestampmicros":null}],"o_boolean":{"boolean":true},"o_int":null,"o_long":null,"o_float":null,"o_double":null,"o_bytes":{"bytes":"}$û6’\n”\u0019"},"o_string":{"string":"akk"},"o_enum":{"Level1_2_Enum2":"ZERO"},"o_date":{"int":-1343243033},"o_timemillis":null,"o_timemicros":null,"o_timestampmillis":null,"o_timestampmicros":{"long":-8192710661969521886}},{"r_boolean":false,"r_int":-1977319700,"r_long":3158611400950681796,"r_float":0.35817444,"r_double":0.5434329887430802,"r_bytes":"0©Áõõ7Hew","r_string":"omdynhjsdmvlqriotemliinrbudkglibqvieqgbvgdqufgflhpghvxecnjakmbcmdkaqxdvltkfuhdajyplujgxotmuacobfxcrxwtvfmehogpdaunxiefaesypebkycfiwqeblhhigcmhsjpoebwrrcaexstkayiwtyogqtjygvflmbkkbotit","r_array":[{"r_boolean":true,"r_int":1502006561,"r_long":6555510583628994511,"r_float":0.05650401,"r_double":0.584696410973878,"r_bytes":"}\u0013[yp","r_string":"sent","r_enum":"TWO","r_date":-633763847,"r_timemillis":-191361602,"r_timemicros":4279413359928371541,"r_timestampmillis":3336510522780334452,"r_timestampmicros":-5717960093894012966,"o_boolean":{"boolean":false},"o_int":null,"o_long":{"long":-4158133069087318918},"o_float":null,"o_double":null,"o_bytes":null,"o_string":null,"o_enum":{"Level2_2_Enum2":"ONE"},"o_date":{"int":-1263294071},"o_timemillis":{"int":31778569},"o_timemicros":{"long":6817656099580415868},"o_timestampmillis":{"long":1391148207264357983},"o_timestampmicros":null},{"r_boolean":true,"r_int":2080423768,"r_long":3799911090655117226,"r_float":0.6412634,"r_double":0.054338807660505806,"r_bytes":"†¿½","r_string":"pdrc","r_enum":"ONE","r_date":-428444747,"r_timemillis":-996093770,"r_timemicros":-5143264993685375360,"r_timestampmillis":-3369870381392918739,"r_timestampmicros":-5645118644613152990,"o_boolean":null,"o_int":{"int":-978866392},"o_long":null,"o_float":null,"o_double":{"double":0.8890239418260957},"o_bytes":null,"o_string":null,"o_enum":{"Level2_2_Enum2":"ZERO"},"o_date":{"int":-266576388},"o_timemillis":null,"o_timemicros":{"long":1869710574265085507},"o_timestampmillis":{"long":-1002225986612342051},"o_timestampmicros":null},{"r_boolean":true,"r_int":834474256,"r_long":-292477204479907820,"r_float":0.8168177,"r_double":0.9949145089332756,"r_bytes":"”ýx{§þÙ!€³éˆ‹1","r_string":"vewyvot","r_enum":"ZERO","r_date":-1196333099,"r_timemillis":660441773,"r_timemicros":-498809924228619893,"r_timestampmillis":-8588496629515231926,"r_timestampmicros":-3926100698491017584,"o_boolean":{"boolean":true},"o_int":{"int":1410243024},"o_long":{"long":5812524666220262356},"o_float":null,"o_double":null,"o_bytes":{"bytes":"öŸ\u0011Çÿ\u000F¤\rT"},"o_string":{"string":"rxqpebtekcrhok"},"o_enum":null,"o_date":null,"o_timemillis":{"int":-1482784261},"o_timemicros":null,"o_timestampmillis":{"long":-2238146576516166387},"o_timestampmicros":null}],"o_boolean":null,"o_int":null,"o_long":{"long":419459364671423535},"o_float":null,"o_double":null,"o_bytes":{"bytes":"è%/¯plŽ,k}"},"o_string":null,"o_enum":{"Level1_2_Enum2":"ONE"},"o_date":{"int":329645796},"o_timemillis":{"int":1130787809},"o_timemicros":null,"o_timestampmillis":null,"o_timestampmicros":{"long":4348717635193487974}},{"r_boolean":false,"r_int":-1678215030,"r_long":-4005456198149002847,"r_float":0.6345315,"r_double":0.7066992630982443,"r_bytes":"_DŽ¹ŒZøD±©","r_string":"kpsexlyxvjl","r_array":[],"o_boolean":{"boolean":true},"o_int":{"int":-2000003892},"o_long":null,"o_float":{"float":0.8197057},"o_double":{"double":0.16965166266089293},"o_bytes":null,"o_string":{"string":"rxwueht"},"o_enum":{"Level1_2_Enum2":"ZERO"},"o_date":{"int":-1846801059},"o_timemillis":null,"o_timemicros":{"long":-4048094747320357693},"o_timestampmillis":{"long":382091171786237528},"o_timestampmicros":{"long":7761363672029068827}}],"r_date":-875772540,"r_timemillis":-454842417,"r_timemicros":7441101331221300336,"r_timestampmillis":8834155049490786132,"r_timestampmicros":-3739048293333030771,"o_boolean":null,"o_int":{"int":1085218389},"o_long":null,"o_float":null,"o_double":null,"o_bytes":{"bytes":"Š\u0000ì‚늺@"},"o_string":{"string":"motpevjreucjynv"},"o_enum":{"Enum2":"TWO"},"o_date":{"int":-412338944},"o_timemillis":null,"o_timemicros":{"long":-2530699333523593082},"o_timestampmillis":null,"o_timestampmicros":null} -{"r_boolean":true,"r_int":-956869516,"r_long":-1195851372719523957,"r_float":0.45685112,"r_double":0.13250578827799475,"r_bytes":"-¡g{Ƽ","r_string":"ghveug","r_record":{"r_boolean":false,"r_int":420774411,"r_long":6531919133553779558,"r_float":0.62658304,"r_double":0.10674372609837957,"r_bytes":"qÔ&›Â´þA{¦Ë¶»t","r_string":"opmtoidlfpilfdaulrxvfxqcdfbejhdsccsxiqlqxkhoqnhdxbi","r_record":{"r_boolean":false,"r_int":956179845,"r_long":7727063279864736456,"r_float":0.21262014,"r_double":0.7549037705907534,"r_bytes":"î,HøgPò’Fk†‰•z\u000B","r_string":"avhnqlthryimn","r_enum":"TWO","r_date":-729848913,"r_timemillis":519704585,"r_timemicros":7561710937825122018,"r_timestampmillis":-6226435118431498332,"r_timestampmicros":-3776622217675478195,"o_boolean":{"boolean":true},"o_int":null,"o_long":null,"o_float":null,"o_double":{"double":0.608229369084789},"o_bytes":{"bytes":"pëïn9\t)\u0019Íÿ"},"o_string":null,"o_enum":{"Level2_1__1_Enum2":"TWO"},"o_date":null,"o_timemillis":null,"o_timemicros":{"long":7758679426492922587},"o_timestampmillis":null,"o_timestampmicros":null},"r_enum":"ZERO","r_date":-553058272,"r_timemillis":947229241,"r_timemicros":-9017352928543905354,"r_timestampmillis":809483601822008518,"r_timestampmicros":4333504939248374673,"r_array":[{"r_boolean":false,"r_int":1637971608,"r_long":5623799251197522716,"r_float":0.2315672,"r_double":0.3253239800408396,"r_bytes":"e\bÅOÒ.‹ŒRÝIŠºd","r_string":"","r_enum":"TWO","o_boolean":{"boolean":true},"o_int":null,"o_long":{"long":3940377112030209224},"o_float":{"float":0.49854332},"o_double":null,"o_bytes":{"bytes":"ˆ\n?ÆF¹òFÞc"},"o_string":{"string":"miaqncuqy"},"o_enum":null,"o_date":null,"o_timemillis":null,"o_timemicros":null,"o_timestampmillis":null,"o_timestampmicros":{"long":-1439828295214352286}},{"r_boolean":false,"r_int":-1605489569,"r_long":-8170743108391378221,"r_float":0.10680026,"r_double":0.03999861617755007,"r_bytes":"…¤ÙÛÃÍ\t¯«È@1YÐó","r_string":"xfyveeywvlfcqy","r_enum":"TWO","o_boolean":null,"o_int":{"int":934927331},"o_long":null,"o_float":null,"o_double":{"double":0.35114576982625656},"o_bytes":null,"o_string":{"string":"wyumdfpidwwhvly"},"o_enum":{"Level2_1__2_Enum2":"ZERO"},"o_date":null,"o_timemillis":null,"o_timemicros":{"long":-7979575377128343180},"o_timestampmillis":{"long":589576282504275605},"o_timestampmicros":null},{"r_boolean":true,"r_int":1951016170,"r_long":8742934611770280518,"r_float":0.15445769,"r_double":0.2788052817022928,"r_bytes":"\u000FélxBoVù(\u0014‡!\bL","r_string":"ddt","r_enum":"ZERO","o_boolean":{"boolean":false},"o_int":null,"o_long":{"long":-5763973657467576200},"o_float":{"float":0.11107218},"o_double":{"double":0.24361525001308937},"o_bytes":null,"o_string":null,"o_enum":null,"o_date":{"int":858102285},"o_timemillis":null,"o_timemicros":{"long":7097755691810417475},"o_timestampmillis":{"long":8138141190224009660},"o_timestampmicros":{"long":1936808995372132980}}]},"r_enum":"ONE","r_array":[{"r_boolean":true,"r_int":-1640313621,"r_long":-3834323277569947470,"r_float":0.11623818,"r_double":0.9950130486592829,"r_bytes":"22nv","r_string":"pt","r_array":[],"o_boolean":{"boolean":false},"o_int":{"int":-1630082833},"o_long":null,"o_float":null,"o_double":null,"o_bytes":{"bytes":"B±Šð½\bšWï\u0018\u0001"},"o_string":{"string":"nrpewhcnss"},"o_enum":{"Level1_2_Enum2":"ZERO"},"o_date":null,"o_timemillis":null,"o_timemicros":null,"o_timestampmillis":null,"o_timestampmicros":null},{"r_boolean":true,"r_int":-999218353,"r_long":5561878804156126406,"r_float":0.9136445,"r_double":0.3294763977037969,"r_bytes":">¡Ø¾`","r_string":"xynfitclgmtcdl","r_array":[{"r_boolean":true,"r_int":1563271625,"r_long":3622479103105666898,"r_float":0.7918623,"r_double":0.1658211198842633,"r_bytes":"u>E‡\nU°'W","r_string":"efdo","r_enum":"ONE","r_date":-316540112,"r_timemillis":-1122681264,"r_timemicros":5589290973281801481,"r_timestampmillis":-1671204975975941361,"r_timestampmicros":479224665981375840,"o_boolean":null,"o_int":null,"o_long":null,"o_float":{"float":0.23946345},"o_double":null,"o_bytes":null,"o_string":{"string":"qxthglleidc"},"o_enum":null,"o_date":null,"o_timemillis":null,"o_timemicros":{"long":3488858392356283226},"o_timestampmillis":null,"o_timestampmicros":{"long":-482760219875399465}}],"o_boolean":{"boolean":true},"o_int":{"int":-1112377707},"o_long":null,"o_float":null,"o_double":null,"o_bytes":null,"o_string":{"string":"elymihejgsveas"},"o_enum":null,"o_date":null,"o_timemillis":{"int":-1496704045},"o_timemicros":null,"o_timestampmillis":null,"o_timestampmicros":{"long":-7423675165415781089}},{"r_boolean":false,"r_int":613373309,"r_long":8642837195781525611,"r_float":0.2851212,"r_double":0.30759911041745214,"r_bytes":"®‡­\u0002çÁ›Q’pÃÐ#","r_string":"ijs","r_array":[],"o_boolean":{"boolean":false},"o_int":null,"o_long":{"long":145826248768939475},"o_float":null,"o_double":{"double":0.11028308032836354},"o_bytes":null,"o_string":{"string":"wjjkwcnhwdrngxx"},"o_enum":{"Level1_2_Enum2":"ONE"},"o_date":null,"o_timemillis":{"int":1091818820},"o_timemicros":{"long":1763559078253249093},"o_timestampmillis":null,"o_timestampmicros":null}],"r_date":-209606105,"r_timemillis":1667854931,"r_timemicros":-7079906074051816265,"r_timestampmillis":-2348767254775957679,"r_timestampmicros":3023965756657142449,"o_boolean":null,"o_int":{"int":469974165},"o_long":null,"o_float":{"float":0.5730515},"o_double":null,"o_bytes":null,"o_string":{"string":"jfymprihlj"},"o_enum":null,"o_date":null,"o_timemillis":{"int":965408161},"o_timemicros":{"long":-4482409024697807577},"o_timestampmillis":null,"o_timestampmicros":null} -{"r_boolean":true,"r_int":1771067614,"r_long":7947857724197137763,"r_float":0.64473915,"r_double":0.843895167448707,"r_bytes":"\u0000ú","r_string":"u","r_record":{"r_boolean":true,"r_int":1699767470,"r_long":-8733819233634548602,"r_float":0.55903953,"r_double":0.9171594426775708,"r_bytes":"†&\u0014ŸìVÐý‚\u0006\u001FØæÀè%7£$çOû˜9[]ù\u0000\u0015W >>â\u000B‡ŒeÕ`½àKí<̗Õɛ7_Êèñ\u0004®Zâý\u0012FØ7‹W\u0017q´ž¯\u001E’\u0006zÏ¡v)\u001E\u0007õg\\k„jÚ\u0018\u001D{`\u0004už\rôxÀ½òo“Wº\u001C4€ßoF…A_:—åGp3","r_string":"vwnlgh","r_record":{"r_boolean":false,"r_int":-660801508,"r_long":-8400136020675111193,"r_float":0.26446247,"r_double":0.7463425268422869,"r_bytes":"Î-—.RVª\u0002","r_string":"mrmjqeywhlqulf","r_enum":"ZERO","r_date":-514034978,"r_timemillis":-1675609138,"r_timemicros":-8557680490879821,"r_timestampmillis":5199840536782561814,"r_timestampmicros":7301458905234224287,"o_boolean":{"boolean":false},"o_int":{"int":815179171},"o_long":{"long":-9180081903470438969},"o_float":null,"o_double":null,"o_bytes":{"bytes":".ðð¶ýg\u0006}2š"},"o_string":{"string":"uihvlsfraywamad"},"o_enum":null,"o_date":null,"o_timemillis":{"int":-1293298162},"o_timemicros":null,"o_timestampmillis":null,"o_timestampmicros":{"long":-6387588469816323973}},"r_enum":"ONE","r_date":-1834249320,"r_timemillis":-200324597,"r_timemicros":7325744453940197278,"r_timestampmillis":-8185735571433398722,"r_timestampmicros":-9077133495647713421,"r_array":[{"r_boolean":false,"r_int":729113368,"r_long":7559240422075981481,"r_float":0.39416313,"r_double":0.015474626443812145,"r_bytes":",!c¹\u0017\u0002A€^Ù\u0016×C¡l·\r3¶S@ìڇ„óÍ¿\u0018>s]l*D‚\u001F“¹C&¥Ö‰5c&M\\3X†o¨,ŠôµÍîpAD\nÅĹ;”d>}ÑDà‚eÀ†ÖU¼\u001DŠ®ß\u0000jÃÉ_Wd€Ùdá3\u0001> ÇÏäóX#\u001Etn \u001DP\u0016èê#bíƧYúæúkÆÃðõpšeÒkú¬z\u00165´+\u0012¹Á\u001BR8\u0013›æD\u0004æ ¬œ_eÞaߓ\u0018ÒbÐE¡¶îçÓ\u0016Êm¸9œöî÷Xå\u0002¨\b\u0007ª`ròà—ß ü•/½Þ\u000EzƒÈ4\u000EW:ñJn\u0004h¥Ôb\b›ý“\u001Béw\u001A»××Nô®õÉW\u000Eì”~Y\u0015aýá­º\u001E&HÇ,¡ݚ8Õ¢ñµ–é*Ô­É[‹-\\қ#þðÞqà²T)i^ۈ§\u0015\u0013˒t´€øAˆý(ÆÁx\u0002tt¯ÎÙº¼¢˜ó–¨qXJ\u0001¤\u001Ek…{\u0002Õîâ³\u0015Þ#1úöµˆ›æÖع}.:?ú9ìl\"6}BäüVPÑ&Ù}x§\u0003\u000E\"Æ÷ñ4ØnF\u000B\u0004mþT:TéUõmo¸","r_string":"gnqs","r_enum":"ONE","o_boolean":null,"o_int":{"int":766510019},"o_long":null,"o_float":{"float":0.28955704},"o_double":{"double":0.3693713176316342},"o_bytes":{"bytes":"\u0014JWñ`²"},"o_string":{"string":"dmjuqwxpirqi"},"o_enum":{"Level2_1__2_Enum2":"ZERO"},"o_date":{"int":557415626},"o_timemillis":null,"o_timemicros":null,"o_timestampmillis":{"long":-4254364469400225502},"o_timestampmicros":{"long":-6909790155090159085}},{"r_boolean":true,"r_int":1262332429,"r_long":-699607695802715573,"r_float":0.6819715,"r_double":0.9576178615862001,"r_bytes":"aá","r_string":"tjxmoanaxso","r_enum":"TWO","o_boolean":{"boolean":false},"o_int":{"int":-1915100733},"o_long":{"long":8885950688244065767},"o_float":null,"o_double":null,"o_bytes":{"bytes":"9éŸl3jÛ//.ÒI\u001E"},"o_string":null,"o_enum":{"Level2_1__2_Enum2":"ZERO"},"o_date":{"int":309533907},"o_timemillis":{"int":842369222},"o_timemicros":null,"o_timestampmillis":{"long":-4142959442405157477},"o_timestampmicros":null},{"r_boolean":false,"r_int":1702256511,"r_long":-8551192754231369521,"r_float":0.8370029,"r_double":0.03697273835095005,"r_bytes":"\t_\r‘¯J","r_string":"stqedoktk","r_enum":"ONE","o_boolean":null,"o_int":null,"o_long":{"long":-2862657893369642800},"o_float":{"float":0.24508089},"o_double":null,"o_bytes":{"bytes":"ù"},"o_string":null,"o_enum":null,"o_date":null,"o_timemillis":null,"o_timemicros":{"long":6494467817863566552},"o_timestampmillis":null,"o_timestampmicros":{"long":1399551596005994469}}]},"r_enum":"TWO","r_array":[{"r_boolean":true,"r_int":-2132999005,"r_long":-8187963016488161400,"r_float":0.59990317,"r_double":0.7129144456239609,"r_bytes":"ÀµÛ4û1","r_string":"tpmjieee","r_array":[{"r_boolean":true,"r_int":-904437330,"r_long":-8979572339615805288,"r_float":0.882091,"r_double":0.7844184986806104,"r_bytes":"\n’\u0007^\u0004","r_string":"rnjcrwd","r_enum":"TWO","r_date":2016344530,"r_timemillis":-1404726796,"r_timemicros":-6650858048458746884,"r_timestampmillis":-2365017732722161682,"r_timestampmicros":985537635400192190,"o_boolean":null,"o_int":{"int":-1424377998},"o_long":null,"o_float":null,"o_double":null,"o_bytes":{"bytes":"7Åòäm|WʜÎ"},"o_string":null,"o_enum":null,"o_date":{"int":1362801019},"o_timemillis":null,"o_timemicros":null,"o_timestampmillis":{"long":-7104779093239948300},"o_timestampmicros":null},{"r_boolean":true,"r_int":-198648578,"r_long":-7701705453806083870,"r_float":0.99691623,"r_double":0.3717292924715774,"r_bytes":"†","r_string":"dkyj","r_enum":"ZERO","r_date":-272788239,"r_timemillis":718321611,"r_timemicros":-6323492484454745605,"r_timestampmillis":1787010068670122968,"r_timestampmicros":7000985568564074666,"o_boolean":{"boolean":false},"o_int":{"int":423725265},"o_long":null,"o_float":{"float":0.16572839},"o_double":null,"o_bytes":{"bytes":"ɒ«{•mÃnÁ"},"o_string":{"string":"rnctrrpopf"},"o_enum":{"Level2_2_Enum2":"ZERO"},"o_date":null,"o_timemillis":null,"o_timemicros":{"long":3236714500154288282},"o_timestampmillis":{"long":-4490256124974803180},"o_timestampmicros":{"long":-9098700141315854963}}],"o_boolean":{"boolean":true},"o_int":{"int":-1811319141},"o_long":{"long":-3496165797359302569},"o_float":null,"o_double":null,"o_bytes":null,"o_string":{"string":"s"},"o_enum":null,"o_date":null,"o_timemillis":{"int":1107723713},"o_timemicros":{"long":4255338212657582945},"o_timestampmillis":null,"o_timestampmicros":null},{"r_boolean":false,"r_int":127673873,"r_long":3289676101866270314,"r_float":0.16716558,"r_double":0.8742895476149086,"r_bytes":"–s—˜&`¶kæ2","r_string":"o","r_array":[{"r_boolean":true,"r_int":-504248661,"r_long":-4279351424327288263,"r_float":0.4793867,"r_double":0.20000764463307064,"r_bytes":"jt","r_string":"ytdcyfvqdifr","r_enum":"ONE","r_date":16724015,"r_timemillis":-2088503823,"r_timemicros":5014234972939004395,"r_timestampmillis":7264129083923164687,"r_timestampmicros":2638384127918067563,"o_boolean":{"boolean":false},"o_int":null,"o_long":{"long":2999963661673298760},"o_float":{"float":0.9107896},"o_double":{"double":0.6767040641918768},"o_bytes":{"bytes":"Ü\u001B"},"o_string":null,"o_enum":null,"o_date":null,"o_timemillis":{"int":-1710892271},"o_timemicros":{"long":-2783676818261172514},"o_timestampmillis":null,"o_timestampmicros":null},{"r_boolean":true,"r_int":1857577212,"r_long":9178892281194397782,"r_float":0.595042,"r_double":0.9763550260853117,"r_bytes":"yØlø","r_string":"c","r_enum":"ZERO","r_date":-1939111895,"r_timemillis":-209375876,"r_timemicros":-4800590504202592684,"r_timestampmillis":9107546295757727659,"r_timestampmicros":-2430109562326717100,"o_boolean":null,"o_int":{"int":238101338},"o_long":{"long":-238680464412041737},"o_float":{"float":0.41307896},"o_double":null,"o_bytes":null,"o_string":null,"o_enum":null,"o_date":null,"o_timemillis":{"int":-1687083896},"o_timemicros":null,"o_timestampmillis":{"long":-2036065593459342236},"o_timestampmicros":{"long":8231282815649214744}}],"o_boolean":{"boolean":false},"o_int":{"int":893697440},"o_long":null,"o_float":null,"o_double":null,"o_bytes":null,"o_string":null,"o_enum":{"Level1_2_Enum2":"ZERO"},"o_date":null,"o_timemillis":null,"o_timemicros":{"long":3976340567074951992},"o_timestampmillis":null,"o_timestampmicros":{"long":6966054805819123760}},{"r_boolean":false,"r_int":145356565,"r_long":-4693303846313320042,"r_float":0.1389913,"r_double":0.3889344352847566,"r_bytes":"óàp=Ä","r_string":"jcsbxhavnlodwqgjniqyxxioehgyslpvsbvnwxtxgfqmnnymawegypherjhiqakdgdvblvdfcodypoooscssggjiusrtscyaclbcgkgouckincsanlwltwvtdnykkykhgoljncgyjshoxxcexhadvbjdbgkfov","r_array":[],"o_boolean":null,"o_int":{"int":-209087390},"o_long":null,"o_float":{"float":0.72444075},"o_double":{"double":0.5433871987355553},"o_bytes":{"bytes":"Ï_BP“ÜD͑ž±l"},"o_string":null,"o_enum":null,"o_date":null,"o_timemillis":null,"o_timemicros":null,"o_timestampmillis":null,"o_timestampmicros":{"long":9107678402798707308}}],"r_date":1176373265,"r_timemillis":-1593091865,"r_timemicros":4695599323087018027,"r_timestampmillis":8872279743881062981,"r_timestampmicros":6703473053555241485,"o_boolean":null,"o_int":{"int":924599284},"o_long":{"long":9133868768331247734},"o_float":{"float":0.22934806},"o_double":null,"o_bytes":{"bytes":"\n"},"o_string":null,"o_enum":null,"o_date":{"int":1682394910},"o_timemillis":null,"o_timemicros":{"long":-8922228587698785271},"o_timestampmillis":null,"o_timestampmicros":null} -{"r_boolean":true,"r_int":1783666919,"r_long":-7393779584205797412,"r_float":0.1774112,"r_double":0.5036597815234523,"r_bytes":"\u0014)rÈ'ÞуÊ\u0012ð­à¯ß","r_string":"ehduclidvyogs","r_record":{"r_boolean":true,"r_int":1676863179,"r_long":3545855136423847810,"r_float":0.8718138,"r_double":0.21959128537749417,"r_bytes":"¨!û\u0014„®O\t\\8”ðb&Z","r_string":"mxfws","r_record":{"r_boolean":false,"r_int":1489229063,"r_long":6208967985203448300,"r_float":0.9680676,"r_double":0.9538298634143181,"r_bytes":"°*£ðËøÎÎ","r_string":"","r_enum":"ONE","r_date":-1228496641,"r_timemillis":-165365609,"r_timemicros":1822801601043012414,"r_timestampmillis":3615402437147024873,"r_timestampmicros":4594797428674398429,"o_boolean":null,"o_int":null,"o_long":{"long":-7501133149768300640},"o_float":{"float":0.56855506},"o_double":null,"o_bytes":{"bytes":"\f~‘½\u001A\u000Eq"},"o_string":{"string":"qomqtwblf"},"o_enum":null,"o_date":null,"o_timemillis":null,"o_timemicros":{"long":-2621627139754017094},"o_timestampmillis":null,"o_timestampmicros":null},"r_enum":"ZERO","r_date":-626571250,"r_timemillis":556558836,"r_timemicros":1934378089627971592,"r_timestampmillis":6131208222186899803,"r_timestampmicros":-728807206732453983,"r_array":[{"r_boolean":true,"r_int":1805150321,"r_long":502276983870166706,"r_float":0.9647355,"r_double":0.39201828060339383,"r_bytes":"\u0005bw1_åIå!¿‹XeÆ","r_string":"wxoewxakdqfoeka","r_enum":"ZERO","o_boolean":{"boolean":true},"o_int":{"int":756920622},"o_long":{"long":-7637346152261171236},"o_float":null,"o_double":{"double":0.7635197397533731},"o_bytes":{"bytes":"îzE'fãÃ,¬9œ\n"},"o_string":null,"o_enum":null,"o_date":{"int":-1071465336},"o_timemillis":{"int":-709817991},"o_timemicros":null,"o_timestampmillis":null,"o_timestampmicros":null},{"r_boolean":false,"r_int":-574135386,"r_long":-6998059214612013132,"r_float":0.5772392,"r_double":0.6843555736301837,"r_bytes":"é","r_string":"u","r_enum":"TWO","o_boolean":{"boolean":true},"o_int":null,"o_long":null,"o_float":null,"o_double":null,"o_bytes":{"bytes":"\f"},"o_string":null,"o_enum":null,"o_date":null,"o_timemillis":{"int":491803115},"o_timemicros":null,"o_timestampmillis":null,"o_timestampmicros":{"long":-6322064894796519460}},{"r_boolean":false,"r_int":-2052232817,"r_long":2799516129455050118,"r_float":0.88484186,"r_double":0.5263128516561322,"r_bytes":"†oF]","r_string":"co","r_enum":"ONE","o_boolean":null,"o_int":{"int":2114351485},"o_long":{"long":2305823707743578079},"o_float":null,"o_double":{"double":0.34229689000624386},"o_bytes":null,"o_string":{"string":"xhxtsyyiuo"},"o_enum":null,"o_date":{"int":574537364},"o_timemillis":null,"o_timemicros":{"long":-6041731930682003897},"o_timestampmillis":null,"o_timestampmicros":null},{"r_boolean":false,"r_int":-1522263936,"r_long":-5057070836103597050,"r_float":0.850566,"r_double":0.6484152945441655,"r_bytes":"ç‚Ö;ý¸","r_string":"ojccnybrxuen","r_enum":"TWO","o_boolean":null,"o_int":{"int":-685749167},"o_long":{"long":-1775970236929007539},"o_float":{"float":0.04789281},"o_double":{"double":0.7795953418797836},"o_bytes":null,"o_string":{"string":"dhxtxmrccgwsaib"},"o_enum":null,"o_date":{"int":-366669178},"o_timemillis":null,"o_timemicros":{"long":6831924567924721270},"o_timestampmillis":{"long":-8374189293191842796},"o_timestampmicros":null}]},"r_enum":"ONE","r_array":[{"r_boolean":false,"r_int":420221133,"r_long":5395241695376454857,"r_float":0.9313413,"r_double":0.9953859718653871,"r_bytes":"‹¿; \u0001çéþ","r_string":"lyv","r_array":[],"o_boolean":{"boolean":false},"o_int":null,"o_long":{"long":9044342416485936014},"o_float":null,"o_double":null,"o_bytes":null,"o_string":{"string":"wnttaqw"},"o_enum":null,"o_date":{"int":2031732942},"o_timemillis":{"int":878891589},"o_timemicros":null,"o_timestampmillis":null,"o_timestampmicros":{"long":5014540351327509242}},{"r_boolean":true,"r_int":-161343082,"r_long":4283344514609047833,"r_float":0.8955744,"r_double":0.37586468096046777,"r_bytes":"oË","r_string":"droqkftgiubn","r_array":[{"r_boolean":false,"r_int":1157811303,"r_long":-8922110711667847627,"r_float":0.22291046,"r_double":0.04135721117233393,"r_bytes":"“\u0018ŸR +ƒ‘Ž§","r_string":"ruiqihuexcadrwstwuvknnegabdlfguafiollowcbdscmejexvwegihqkuuoynqawanxsqeclgvltqbvneynenulimijlgflf","r_enum":"ZERO","r_date":-131628091,"r_timemillis":1876536732,"r_timemicros":-6994878699425126046,"r_timestampmillis":5426196992194498863,"r_timestampmicros":3863262483350388001,"o_boolean":null,"o_int":null,"o_long":{"long":9006672473664276810},"o_float":{"float":0.6347905},"o_double":null,"o_bytes":{"bytes":"ÆÖïö-ç^€V\u0010À"},"o_string":null,"o_enum":null,"o_date":null,"o_timemillis":{"int":-1047412252},"o_timemicros":null,"o_timestampmillis":null,"o_timestampmicros":null},{"r_boolean":true,"r_int":1036800587,"r_long":-1388369921367546288,"r_float":0.112582624,"r_double":0.4081517665004095,"r_bytes":"\u0005\r","r_string":"gweqyrrxsfx","r_enum":"ONE","r_date":916084767,"r_timemillis":1923215258,"r_timemicros":-6276734788626943137,"r_timestampmillis":6267637425878343204,"r_timestampmicros":-8315842525041396208,"o_boolean":null,"o_int":{"int":290369808},"o_long":{"long":-8979870842715011995},"o_float":null,"o_double":null,"o_bytes":null,"o_string":{"string":"ixe"},"o_enum":null,"o_date":null,"o_timemillis":null,"o_timemicros":{"long":1020058154365529197},"o_timestampmillis":{"long":-6717175516741542157},"o_timestampmicros":{"long":1342665143105950337}},{"r_boolean":true,"r_int":1590406383,"r_long":1902161058599900730,"r_float":0.66169417,"r_double":0.19803169126109565,"r_bytes":"E","r_string":"imd","r_enum":"ZERO","r_date":-107599036,"r_timemillis":-1882338901,"r_timemicros":-4254551928881848683,"r_timestampmillis":-1771755980536967041,"r_timestampmicros":-1026582682084680393,"o_boolean":null,"o_int":{"int":-929157583},"o_long":null,"o_float":{"float":0.9661044},"o_double":{"double":0.17316203300621447},"o_bytes":{"bytes":"«Bô¶½MPôÒ\u001Ck7M!¯ÑrCa\u0013™$Š gVøJ\u0018–æ-+#R#\b\b°Óf\t+jêlÑ£LèiÎR£g\fÂ@mÔ¶%+§e\u000F…uÊ\u0001//é~$ú!\bâð³~#šË#/2ϯßÙ·$×k\rzùÆ%\u0014p8þÌ=p«Vrä7‰¬\u0011\u0017ÞX¦áÍx‡S=ÛE‡ŽíË\bÓ\u001Ceh~"},"o_string":null,"o_enum":{"Level2_2_Enum2":"TWO"},"o_date":{"int":-1489379370},"o_timemillis":{"int":173037307},"o_timemicros":{"long":5907304360946023984},"o_timestampmillis":null,"o_timestampmicros":null}],"o_boolean":{"boolean":false},"o_int":{"int":586159890},"o_long":{"long":-2135222707060554402},"o_float":null,"o_double":{"double":0.07062487246243532},"o_bytes":{"bytes":"Ý»—¹\"éÜ\u001D¼\r9mL\u0011Ÿ"},"o_string":null,"o_enum":{"Level1_2_Enum2":"TWO"},"o_date":{"int":1954261352},"o_timemillis":{"int":-162092060},"o_timemicros":null,"o_timestampmillis":{"long":8909767467431131367},"o_timestampmicros":null},{"r_boolean":false,"r_int":543287216,"r_long":6466158346550046062,"r_float":0.21295828,"r_double":0.5368169869408228,"r_bytes":".f”ö","r_string":"tlfurvaannge","r_array":[],"o_boolean":null,"o_int":{"int":1837742196},"o_long":{"long":-7654382530957194288},"o_float":{"float":0.55107176},"o_double":null,"o_bytes":null,"o_string":{"string":"isgyxgmivxbws"},"o_enum":null,"o_date":{"int":104725954},"o_timemillis":null,"o_timemicros":null,"o_timestampmillis":{"long":-1925647094922071704},"o_timestampmicros":{"long":1864606776484390431}},{"r_boolean":true,"r_int":-369495935,"r_long":-293070329798783032,"r_float":0.9975387,"r_double":0.3837286042751745,"r_bytes":"\u0018åHçÒãÕ2¢","r_string":"umrfykmskyn","r_array":[{"r_boolean":false,"r_int":255103568,"r_long":7101456524122234121,"r_float":0.35699713,"r_double":0.2393912532579756,"r_bytes":"Ρh¾ÑûæE[Š¾","r_string":"ibd","r_enum":"ZERO","r_date":-1208521977,"r_timemillis":1597944583,"r_timemicros":-2419134264183327969,"r_timestampmillis":977903052350037447,"r_timestampmicros":8650991587931662662,"o_boolean":null,"o_int":{"int":-765980285},"o_long":null,"o_float":{"float":0.13410646},"o_double":{"double":0.3255956171678931},"o_bytes":{"bytes":"…“ê"},"o_string":null,"o_enum":{"Level2_2_Enum2":"ONE"},"o_date":{"int":-1368875414},"o_timemillis":{"int":1367961963},"o_timemicros":null,"o_timestampmillis":null,"o_timestampmicros":{"long":6804276966663738904}},{"r_boolean":true,"r_int":-1265380444,"r_long":5093807209285813237,"r_float":0.11820412,"r_double":0.5046820178350059,"r_bytes":"*œhÑ\u0013µä‘°if¿]„","r_string":"x","r_enum":"TWO","r_date":1334022510,"r_timemillis":1770665692,"r_timemicros":2234725959904611646,"r_timestampmillis":-6130619099964553800,"r_timestampmicros":338844500492178956,"o_boolean":null,"o_int":null,"o_long":{"long":-6947405859896246910},"o_float":{"float":0.34199262},"o_double":{"double":0.8053476053399911},"o_bytes":null,"o_string":null,"o_enum":null,"o_date":{"int":1194730930},"o_timemillis":{"int":923349443},"o_timemicros":null,"o_timestampmillis":null,"o_timestampmicros":null},{"r_boolean":true,"r_int":-1984219547,"r_long":6015890754257114000,"r_float":0.087970376,"r_double":0.2923763756659725,"r_bytes":"","r_string":"iroor","r_enum":"TWO","r_date":603730829,"r_timemillis":2082475960,"r_timemicros":8938076650928476178,"r_timestampmillis":-644220487539599872,"r_timestampmicros":457741077701602104,"o_boolean":null,"o_int":{"int":122998058},"o_long":null,"o_float":{"float":0.3666616},"o_double":null,"o_bytes":null,"o_string":{"string":"lnsbmx"},"o_enum":{"Level2_2_Enum2":"ONE"},"o_date":null,"o_timemillis":null,"o_timemicros":{"long":3134299116887278132},"o_timestampmillis":null,"o_timestampmicros":null}],"o_boolean":{"boolean":false},"o_int":{"int":-1575156915},"o_long":null,"o_float":{"float":0.11384469},"o_double":{"double":0.057811218986474344},"o_bytes":null,"o_string":null,"o_enum":null,"o_date":null,"o_timemillis":{"int":1917215426},"o_timemicros":null,"o_timestampmillis":null,"o_timestampmicros":null},{"r_boolean":true,"r_int":-887968920,"r_long":-4784812869298992779,"r_float":0.26020092,"r_double":0.854407155116937,"r_bytes":"Ô\u001C²¶\u000F\u00030","r_string":"bdocty","r_array":[],"o_boolean":null,"o_int":{"int":2040325022},"o_long":{"long":-1505934201125900677},"o_float":null,"o_double":{"double":0.5898630802189897},"o_bytes":{"bytes":"TäN\u001AS\u0000>ÓNù¯"},"o_string":null,"o_enum":null,"o_date":{"int":-1512870433},"o_timemillis":null,"o_timemicros":{"long":-7857578822648828919},"o_timestampmillis":{"long":-1658865153434152847},"o_timestampmicros":{"long":5402877196066486160}}],"r_date":-426018253,"r_timemillis":1405022717,"r_timemicros":-4186353991843025579,"r_timestampmillis":-7400426359093530584,"r_timestampmicros":-8402652379841397628,"o_boolean":{"boolean":true},"o_int":{"int":769551480},"o_long":null,"o_float":null,"o_double":{"double":0.3948370127859844},"o_bytes":{"bytes":""},"o_string":{"string":"jfberoa"},"o_enum":{"Enum2":"ZERO"},"o_date":{"int":450463828},"o_timemillis":null,"o_timemicros":null,"o_timestampmillis":{"long":-2753938385461640537},"o_timestampmicros":{"long":-5839281409615770541}} -{"r_boolean":false,"r_int":-1812464184,"r_long":5029320625897427663,"r_float":0.4057498,"r_double":0.444231423713932,"r_bytes":"û@\"\u0011MîtIÇZ","r_string":"souorskawmwvgetidikmwqvjhmaqjmkbssjyiqmkxamhpiiovhlwbppl","r_record":{"r_boolean":false,"r_int":-1664823106,"r_long":-366180210826344650,"r_float":0.29732984,"r_double":0.42564462939467396,"r_bytes":"•¦Ë\u0002•´4xÂ\u0015„\u001E‰","r_string":"pilyhyvvqgs","r_record":{"r_boolean":false,"r_int":-1291533643,"r_long":6671773286130763778,"r_float":0.3044439,"r_double":0.4802250944206341,"r_bytes":"\u0018\u0000à¬íÔ\u0013)ÏfùÍÊ-Yw\u0014\u0016\u0002¿¢ÑÔ¨dö\u0011Ç]øÆrÎy\u0007‚\u000E…¹m#¿zÛ/z\u001B#ð\u0014éo\u0016„Å¢,mKp¶1Å\u000F\u0015ý\u001Cá„\\Jg\u0012ý\t\rîÜ9\u0013[íÉa°ˆ°‡¼8¹\u0006‹Î\u001F̨","r_string":"rbealxmgp","r_enum":"ZERO","r_date":991016163,"r_timemillis":996452525,"r_timemicros":8565248951699664102,"r_timestampmillis":-8206519166045310888,"r_timestampmicros":5081658308226812415,"o_boolean":null,"o_int":{"int":1106774656},"o_long":{"long":-7338363538675828552},"o_float":null,"o_double":{"double":0.5313029556821665},"o_bytes":{"bytes":"K"},"o_string":null,"o_enum":null,"o_date":{"int":714663144},"o_timemillis":{"int":-1788234394},"o_timemicros":null,"o_timestampmillis":{"long":-8117341262175530481},"o_timestampmicros":null},"r_enum":"ZERO","r_date":-991904266,"r_timemillis":-481847655,"r_timemicros":5028097466385631147,"r_timestampmillis":-1975856484287517647,"r_timestampmicros":-4591176703001575383,"r_array":[]},"r_enum":"TWO","r_array":[{"r_boolean":false,"r_int":-715357696,"r_long":-9156513027559312854,"r_float":0.78974175,"r_double":0.9446087761076675,"r_bytes":"?¾¿\u0002\f`.W|Œ`^2bÍ,\u00191\t0²K\u001DO•k\u001C\u0018‡¦Ã²9©õà<æ\u001Bû«Ò\u0015B.˜š#ì¤\u0004ז\n\u001E\u0007!ÚÁ‘…ú\u0016on`[ç½Ù\u001Cšü]ºÙ!\u00113ÈO2iÜÃ$KMðî×µ€·*`«ÜD","r_string":"sxxstdoaqyx","r_array":[],"o_boolean":{"boolean":false},"o_int":{"int":-2025596381},"o_long":{"long":8227620848772725822},"o_float":null,"o_double":null,"o_bytes":null,"o_string":null,"o_enum":null,"o_date":{"int":575142214},"o_timemillis":{"int":-111250310},"o_timemicros":{"long":-1203260372083204814},"o_timestampmillis":{"long":3575301176233464834},"o_timestampmicros":null},{"r_boolean":false,"r_int":-284175266,"r_long":-4557667424799938368,"r_float":0.048760116,"r_double":0.9311772382717711,"r_bytes":"NRúšG","r_string":"yidtjsnvk","r_array":[{"r_boolean":true,"r_int":371464400,"r_long":1219719425694079369,"r_float":0.22576886,"r_double":6.040643521555422E-4,"r_bytes":"XVU\u001DËð¸6","r_string":"awlr","r_enum":"ONE","r_date":2054691998,"r_timemillis":-921404208,"r_timemicros":-8752820578341797389,"r_timestampmillis":-5255174483088905516,"r_timestampmicros":-118762376671048372,"o_boolean":{"boolean":false},"o_int":{"int":1882011203},"o_long":null,"o_float":{"float":0.88124686},"o_double":null,"o_bytes":null,"o_string":{"string":"qqa"},"o_enum":{"Level2_2_Enum2":"TWO"},"o_date":null,"o_timemillis":{"int":-1508466252},"o_timemicros":null,"o_timestampmillis":null,"o_timestampmicros":null},{"r_boolean":true,"r_int":126782597,"r_long":5002908948296052842,"r_float":0.49797004,"r_double":0.6706348998461544,"r_bytes":"¡ÑÚýü”","r_string":"sjkpjnxydncketj","r_enum":"TWO","r_date":-892353564,"r_timemillis":333857916,"r_timemicros":-4951212949453501813,"r_timestampmillis":-826516791862374451,"r_timestampmicros":3410778076797074582,"o_boolean":{"boolean":false},"o_int":{"int":-1245962945},"o_long":{"long":5303029972821424585},"o_float":{"float":0.5897944},"o_double":null,"o_bytes":{"bytes":"ƒåÿ"},"o_string":{"string":"yfygfwlcmfhp"},"o_enum":null,"o_date":{"int":-839615652},"o_timemillis":null,"o_timemicros":{"long":3944376338346998187},"o_timestampmillis":null,"o_timestampmicros":{"long":-7040139257566034877}},{"r_boolean":true,"r_int":257092926,"r_long":-4841621574579352782,"r_float":0.10538465,"r_double":0.45325354496295167,"r_bytes":"ÞYuöa—ÉÌ","r_string":"si","r_enum":"ZERO","r_date":-994102722,"r_timemillis":151953877,"r_timemicros":732092156498072966,"r_timestampmillis":405026252479227126,"r_timestampmicros":-7584242624832187393,"o_boolean":null,"o_int":null,"o_long":{"long":-1956118575508733231},"o_float":{"float":0.7861738},"o_double":{"double":0.4046492113674198},"o_bytes":{"bytes":"úâ”aþ\t«í"},"o_string":{"string":"qtgudm"},"o_enum":null,"o_date":{"int":-804552376},"o_timemillis":{"int":1847279825},"o_timemicros":null,"o_timestampmillis":null,"o_timestampmicros":null}],"o_boolean":null,"o_int":{"int":-446529069},"o_long":null,"o_float":null,"o_double":null,"o_bytes":null,"o_string":null,"o_enum":{"Level1_2_Enum2":"TWO"},"o_date":null,"o_timemillis":null,"o_timemicros":{"long":6194745037336306116},"o_timestampmillis":{"long":-6363149062964177487},"o_timestampmicros":{"long":3485136526311114713}},{"r_boolean":false,"r_int":1666724820,"r_long":-2448128681157878345,"r_float":6.6268444E-4,"r_double":0.11851755110545625,"r_bytes":"T\fIº\u0011Íy±â","r_string":"q","r_array":[{"r_boolean":false,"r_int":1591961714,"r_long":-2871192458881382469,"r_float":0.23001587,"r_double":0.7266453830180063,"r_bytes":"x¦X/¿÷ôŒàq)","r_string":"eiuxttgdafqxcndlpqpwwucougjxrgdmgvqtksibmwipnwpwyiapltpmwcneuifncavgxmvjcimxmgiflatxieuptaicgrmgnkdlbkuvlqqhayyawejcmchespwbhnvconknuhetprtdguxlktoqlmjispdgctilylqjdukthstlfjucgvjoafmvqdgkwyswkrcuqih","r_enum":"ONE","r_date":555673940,"r_timemillis":-158718808,"r_timemicros":4150240569687251265,"r_timestampmillis":6986698216408166396,"r_timestampmicros":-3776194789255417670,"o_boolean":{"boolean":false},"o_int":{"int":-1309055605},"o_long":{"long":2304489724402900433},"o_float":{"float":0.7104796},"o_double":null,"o_bytes":{"bytes":"cª¥†õ\u001C†såP"},"o_string":null,"o_enum":null,"o_date":{"int":-1352893228},"o_timemillis":{"int":-1086832801},"o_timemicros":null,"o_timestampmillis":{"long":8947623298551742528},"o_timestampmicros":null},{"r_boolean":true,"r_int":-987324370,"r_long":4270270424890855839,"r_float":0.15911162,"r_double":0.9394072543813073,"r_bytes":"5¤<|\u0019sN¢o͛","r_string":"easpgh","r_enum":"ZERO","r_date":-1227794784,"r_timemillis":1505195731,"r_timemicros":-3289303640368504084,"r_timestampmillis":-7721152107304230418,"r_timestampmicros":-5149143243479189578,"o_boolean":null,"o_int":{"int":-1553455286},"o_long":{"long":7906696857140665048},"o_float":{"float":0.56680006},"o_double":{"double":0.758868491282234},"o_bytes":null,"o_string":{"string":"amhi"},"o_enum":null,"o_date":{"int":224473866},"o_timemillis":null,"o_timemicros":null,"o_timestampmillis":{"long":1448925418594623483},"o_timestampmicros":null},{"r_boolean":false,"r_int":961085948,"r_long":-8594414567020088667,"r_float":0.015414834,"r_double":0.01910730024068341,"r_bytes":"4Ém\u0004µÉ\n\u001CæÀ\u0013¸Ó","r_string":"boixmxfnbvjjgu","r_enum":"ZERO","r_date":91738699,"r_timemillis":-1417927830,"r_timemicros":-2871272279011177078,"r_timestampmillis":-5433171767023057228,"r_timestampmicros":-5593252856550243345,"o_boolean":null,"o_int":{"int":-1382340353},"o_long":null,"o_float":{"float":0.161672},"o_double":{"double":0.4092584635683403},"o_bytes":null,"o_string":null,"o_enum":{"Level2_2_Enum2":"ONE"},"o_date":{"int":1270039926},"o_timemillis":{"int":1444130188},"o_timemicros":null,"o_timestampmillis":null,"o_timestampmicros":{"long":8930238813334890491}}],"o_boolean":null,"o_int":null,"o_long":null,"o_float":null,"o_double":{"double":0.418946524525311},"o_bytes":{"bytes":"æ\u0002,®“,S"},"o_string":null,"o_enum":null,"o_date":{"int":710654208},"o_timemillis":{"int":207671903},"o_timemicros":null,"o_timestampmillis":{"long":-1970469141162383128},"o_timestampmicros":null}],"r_date":511422828,"r_timemillis":-145177695,"r_timemicros":-4205425782010297836,"r_timestampmillis":-8332255269699862744,"r_timestampmicros":-5038133690565656647,"o_boolean":null,"o_int":null,"o_long":{"long":659680525166264993},"o_float":{"float":0.31043714},"o_double":{"double":0.687709739519161},"o_bytes":{"bytes":""},"o_string":{"string":""},"o_enum":{"Enum2":"TWO"},"o_date":null,"o_timemillis":{"int":1210661311},"o_timemicros":{"long":8142573660962883015},"o_timestampmillis":null,"o_timestampmicros":null} -{"r_boolean":true,"r_int":1284926682,"r_long":-2035398689603306466,"r_float":0.18541443,"r_double":0.43569091410748806,"r_bytes":"œ$©Eˆ","r_string":"ssccghvoagxxn","r_record":{"r_boolean":true,"r_int":868351155,"r_long":856089832255272075,"r_float":0.046672523,"r_double":0.148603234842407,"r_bytes":"","r_string":"uxlnqspx","r_record":{"r_boolean":false,"r_int":-1544826005,"r_long":-6035972273064866500,"r_float":0.39149302,"r_double":0.5272842442574206,"r_bytes":"\u0017};","r_string":"wqqqeotgfnuckrrpvtlhhyiymadnhqmuanwajvhhpmqddxnebubalsigisorynhuawfnjymiuhnqbhqcnwrehuqnfmkelprdybdlhhpggovssialkpmltlanlirlhkieoywfgbdgvgljmaksnvqwavqramksmqmfvodbogrcowhffvmwmluywkkorqxhielpprmwvflrbafbggwmadsvlhdlguleyoegckiffcobtudwlvdfscwbapjwpgvisrmcvlxqayihuqxwdyqxkkejofdxtimwvkeludyhbsevbigdpgasxxqolhrapcxysjihkumwkrqbgbcwpqkyeomfksuvttlvtaxmvyvkuqfbcyafjksylmpbknofvpudlejrmwsedujyfkpgtpdgvikarumsrguqekrmnyatmmlhdgvvprrbmkgahpmbdlouctwrprdjwkpbuykwqjmgmwkrcwuwlqmmbpbwshppdvvyhtnwwnxgwoebwjxquccdposrfnwgaswflaemghjtcjadleselvagsjnxbupplwvmgoxasafgicxhxglkyiqwgldxwmsookwtbtgqagduynsqblfubhjkqmkcmafpldckrbrnwlvxquxqwatnwkyjlkyervjogbkkdoonurvwvytcuqxwnralksqiqqebtwcjtsjqjmokqyxlvmnmdimdpcmwxjaknqmhlnhsjqijouiyyelraqmmchtiqbfxblbuysprirsykrmsboahvmhgrsahetnnwatkqyrpywnphkgicpbrjetoaplcvirasygeusalsxgydomiyatrcoxlwderjinnldagswupklmtspcspmeyljwpiqrtimjnecukfritwyiwswcjnvcuammjtgevmtllltpqncnwkjcwrqfhbovtbwbsaugppnpefvgefgmmskrdfbjaqyjlxbbarrjgilgffvjijmapkyldidnrpkieoomrooaxjtletdomwyqyjxjeqktccfpbaxuxeqwvxwmussahorfhigdukbixbdotjdgpbagmwptdjhfbgndwnsqjlgekcmwoclbswsoerymoiwlwuamigyhqbeuporqybvlosjarumuvcfdorwrnyokabhprknrodoqawgvstoeyrhvdenwpxjufmjiavwpcftcxctkixxcosnnvismcwgjgrskvrypngkydbfxvhagoiswnwcmkwfucypvndkqmesqdfwcirvewwrgdagbvjntxswmktpbgspfyhkcqhgwmaieqvgklryqjrcqejxshunnaelfsnqgbl","r_enum":"ONE","r_date":-468161226,"r_timemillis":-1463777293,"r_timemicros":926411780589212586,"r_timestampmillis":-207309575523760219,"r_timestampmicros":-5273623236361624680,"o_boolean":{"boolean":false},"o_int":null,"o_long":null,"o_float":{"float":0.5787922},"o_double":{"double":0.9671150391732974},"o_bytes":{"bytes":"ujM„\u0005\u001E\u0012¹¿êÿÖPòh€•ÈY-\u001AՁ\u001DîïX;àØBþE(ÿ®a&µ²\u00130\f‘Sà‰ÞžŒ\f•[´ñ<\b\u0003Æ:§Q Š\b\u0001\u0000éÂLÚhtÀf5)\f™&©\u0011–i\u0002áyƎÁXŽð\u0013L›÷àNA\u001C}y3W¦œ&ñŸýÛ¨\\7m*\u000BëùÚNÐ?†ý³ã{½C\t0‘k¹ŠñM\u0016“Hbƒ\u0015‹^õxAp9Œr•‡NÅn¥@>¤(Úќy›>›Za»¡rNß\u000Eƒ±ëT.l÷À÷´öÒ"},"o_string":null,"o_enum":{"Level2_1__1_Enum2":"TWO"},"o_date":{"int":-849248997},"o_timemillis":null,"o_timemicros":null,"o_timestampmillis":null,"o_timestampmicros":null},"r_enum":"ONE","r_date":-1662513848,"r_timemillis":-1602683536,"r_timemicros":3997965470214426193,"r_timestampmillis":-3047349093623283278,"r_timestampmicros":4021195311807218584,"r_array":[{"r_boolean":false,"r_int":1500812867,"r_long":6819078484385497862,"r_float":0.61923,"r_double":0.22060607823311285,"r_bytes":"ž]","r_string":"g","r_enum":"ZERO","o_boolean":null,"o_int":{"int":-802388930},"o_long":{"long":5155747350984114085},"o_float":{"float":0.5671328},"o_double":{"double":0.5225022757093378},"o_bytes":{"bytes":"4 ÚZ†ú\u0005í\u0019úÜ!\u0019Û\u0012"},"o_string":{"string":"ngygcaiwvgj"},"o_enum":{"Level2_1__2_Enum2":"ZERO"},"o_date":{"int":879369064},"o_timemillis":{"int":341169338},"o_timemicros":{"long":-4881623133014435742},"o_timestampmillis":null,"o_timestampmicros":{"long":4270497094930088829}},{"r_boolean":false,"r_int":-2086310544,"r_long":-7460279919554398876,"r_float":0.27765077,"r_double":0.49472045938674647,"r_bytes":"ªýdóQÉ","r_string":"akfuylmcqr","r_enum":"TWO","o_boolean":null,"o_int":null,"o_long":{"long":2912646536844741268},"o_float":{"float":0.8914298},"o_double":{"double":0.9848591896190954},"o_bytes":{"bytes":"'ÅN\n"},"o_string":null,"o_enum":null,"o_date":{"int":-769981842},"o_timemillis":{"int":1337689440},"o_timemicros":{"long":-7896518661292056982},"o_timestampmillis":{"long":-6820337981777152426},"o_timestampmicros":null},{"r_boolean":true,"r_int":1108092811,"r_long":-2593557363628085107,"r_float":0.42186862,"r_double":0.3850675222187374,"r_bytes":"7S`5","r_string":"uhnjuxvhenr","r_enum":"ZERO","o_boolean":{"boolean":true},"o_int":{"int":741410752},"o_long":{"long":-3707914330325311070},"o_float":{"float":0.455177},"o_double":{"double":0.7777243701256721},"o_bytes":{"bytes":"œé»"},"o_string":null,"o_enum":null,"o_date":null,"o_timemillis":{"int":1139627502},"o_timemicros":null,"o_timestampmillis":{"long":475030045633803688},"o_timestampmicros":null},{"r_boolean":true,"r_int":1595682899,"r_long":6964939852619959844,"r_float":0.7775457,"r_double":0.7780515482172523,"r_bytes":"òT°Y]ðz;{h","r_string":"ulffpjnh","r_enum":"ONE","o_boolean":null,"o_int":{"int":1173190693},"o_long":{"long":8690660839159538522},"o_float":null,"o_double":{"double":0.8524766096672},"o_bytes":{"bytes":"\r´\f¾2ט¬úÁ\u001Dñ‚Õ‹"},"o_string":{"string":"tqaaiaq"},"o_enum":{"Level2_1__2_Enum2":"ZERO"},"o_date":null,"o_timemillis":null,"o_timemicros":null,"o_timestampmillis":null,"o_timestampmicros":{"long":-1836504131512281925}}]},"r_enum":"ONE","r_array":[{"r_boolean":true,"r_int":-1548290521,"r_long":5746459771349876742,"r_float":0.29921287,"r_double":0.5801279534797057,"r_bytes":"›B4","r_string":"patyktdva","r_array":[{"r_boolean":true,"r_int":665043882,"r_long":-5666957835086523426,"r_float":0.2692896,"r_double":0.8226955522323642,"r_bytes":"A„Òé\u000Bf´£\u000E×","r_string":"wpw","r_enum":"ZERO","r_date":-1684424022,"r_timemillis":1536568048,"r_timemicros":-989938901766526371,"r_timestampmillis":1361115426779401075,"r_timestampmicros":-1585540850953958131,"o_boolean":null,"o_int":null,"o_long":{"long":-25052604155832833},"o_float":null,"o_double":null,"o_bytes":null,"o_string":{"string":"e"},"o_enum":null,"o_date":null,"o_timemillis":{"int":-373799400},"o_timemicros":{"long":6459651129105900448},"o_timestampmillis":null,"o_timestampmicros":{"long":8784217853776978564}},{"r_boolean":false,"r_int":986531254,"r_long":-258222580861487869,"r_float":0.9074404,"r_double":0.9230658603689659,"r_bytes":"=\u00151Ýó_³","r_string":"g","r_enum":"ONE","r_date":-356244785,"r_timemillis":-1190098815,"r_timemicros":-2075341985888956187,"r_timestampmillis":8859811963275120224,"r_timestampmicros":5505534661331164727,"o_boolean":null,"o_int":null,"o_long":{"long":8940620107466184598},"o_float":null,"o_double":{"double":0.3922405166152255},"o_bytes":null,"o_string":null,"o_enum":{"Level2_2_Enum2":"TWO"},"o_date":null,"o_timemillis":null,"o_timemicros":{"long":294772080664867852},"o_timestampmillis":null,"o_timestampmicros":{"long":-9183815364962060920}},{"r_boolean":true,"r_int":313335865,"r_long":6954729772280362786,"r_float":0.7972086,"r_double":0.9661578191677217,"r_bytes":"","r_string":"cxbbwhiwjpnrff","r_enum":"TWO","r_date":-222506348,"r_timemillis":-1680704556,"r_timemicros":-7490814060439943494,"r_timestampmillis":-7184296032150451239,"r_timestampmicros":-928690283183436601,"o_boolean":{"boolean":true},"o_int":null,"o_long":null,"o_float":{"float":0.38591993},"o_double":null,"o_bytes":null,"o_string":{"string":"uocd"},"o_enum":null,"o_date":null,"o_timemillis":{"int":1073460339},"o_timemicros":null,"o_timestampmillis":{"long":3761429055844684667},"o_timestampmicros":{"long":-4059329732737845151}}],"o_boolean":null,"o_int":{"int":667927716},"o_long":null,"o_float":null,"o_double":{"double":0.6863410961519707},"o_bytes":null,"o_string":{"string":"siltpgagiiuo"},"o_enum":null,"o_date":null,"o_timemillis":{"int":-931413402},"o_timemicros":{"long":5679347387663466230},"o_timestampmillis":{"long":-1437099374301911148},"o_timestampmicros":{"long":4228472208900925881}},{"r_boolean":true,"r_int":-1586030280,"r_long":7262267510894014731,"r_float":0.26560372,"r_double":0.8671370382128765,"r_bytes":"\u001A0Éûy\u001C~1K¤\u0010b³§","r_string":"vebimptlk","r_array":[{"r_boolean":false,"r_int":818694926,"r_long":2669022644091779466,"r_float":0.7807048,"r_double":0.03640162386504742,"r_bytes":"¼DÚ","r_string":"dnreou","r_enum":"ONE","r_date":-1338642233,"r_timemillis":1557051940,"r_timemicros":5487767499267579277,"r_timestampmillis":7715289554178488064,"r_timestampmicros":4938906402972493331,"o_boolean":null,"o_int":{"int":-2050430315},"o_long":{"long":5086614533684923591},"o_float":{"float":0.60756326},"o_double":null,"o_bytes":{"bytes":"»wåÊz¸EÒ"},"o_string":{"string":"ikkqgmkqutgwsmltyvkwlphdmymxjaghymgyqxwjplgscujyysnuqgmrcxfriqhojhexinrexcuptcrgmwnses"},"o_enum":{"Level2_2_Enum2":"TWO"},"o_date":{"int":23216079},"o_timemillis":{"int":1834007625},"o_timemicros":null,"o_timestampmillis":{"long":-6035892439452869500},"o_timestampmicros":null},{"r_boolean":true,"r_int":1556370731,"r_long":-5433346601700389035,"r_float":0.99742174,"r_double":0.48557722820547766,"r_bytes":"=Òª-^\nS6","r_string":"cwriirk","r_enum":"TWO","r_date":-569501010,"r_timemillis":2102442219,"r_timemicros":-2011050441441427934,"r_timestampmillis":-758259132089080761,"r_timestampmicros":7681057263058844990,"o_boolean":{"boolean":false},"o_int":null,"o_long":{"long":4195845426512263996},"o_float":null,"o_double":null,"o_bytes":{"bytes":"t\u001AY\u001C\u000B½4™ôŸ±"},"o_string":null,"o_enum":null,"o_date":{"int":988434326},"o_timemillis":{"int":1948433958},"o_timemicros":{"long":3403646540567916675},"o_timestampmillis":null,"o_timestampmicros":{"long":4493339270707085813}},{"r_boolean":false,"r_int":861565586,"r_long":5042865080569986396,"r_float":0.63285863,"r_double":0.2586932098232809,"r_bytes":"':ì#\t\u000FV”","r_string":"avhaltlfmbnctmr","r_enum":"ONE","r_date":-2003505778,"r_timemillis":-269225353,"r_timemicros":-5360277388764323849,"r_timestampmillis":-4166482971420416285,"r_timestampmicros":-4649454716445650600,"o_boolean":null,"o_int":{"int":1286718275},"o_long":{"long":7764679087323716822},"o_float":null,"o_double":{"double":0.32901903517665687},"o_bytes":null,"o_string":null,"o_enum":null,"o_date":{"int":2030476597},"o_timemillis":null,"o_timemicros":null,"o_timestampmillis":{"long":606571670786680307},"o_timestampmicros":{"long":227674039276079946}}],"o_boolean":null,"o_int":{"int":1617118278},"o_long":{"long":-1666915898888258846},"o_float":null,"o_double":{"double":0.18893442564052954},"o_bytes":null,"o_string":null,"o_enum":{"Level1_2_Enum2":"TWO"},"o_date":null,"o_timemillis":{"int":-1656737090},"o_timemicros":{"long":-7917621211201665222},"o_timestampmillis":{"long":-7372458177609588179},"o_timestampmicros":null},{"r_boolean":true,"r_int":-609880852,"r_long":2419273811307980674,"r_float":0.4078179,"r_double":0.33136745938367573,"r_bytes":"wjIP","r_string":"wfabdjb","r_array":[],"o_boolean":{"boolean":false},"o_int":null,"o_long":{"long":7988173659931165406},"o_float":null,"o_double":{"double":0.5132590173035495},"o_bytes":null,"o_string":{"string":"fjcc"},"o_enum":{"Level1_2_Enum2":"ZERO"},"o_date":{"int":-2097673404},"o_timemillis":{"int":646361809},"o_timemicros":{"long":3274207147111844186},"o_timestampmillis":{"long":-8444224770152043804},"o_timestampmicros":{"long":-493704172436959754}},{"r_boolean":true,"r_int":-1111179806,"r_long":-985884309344935904,"r_float":0.24324358,"r_double":0.3541900821555011,"r_bytes":"™ëÈY_R€\u0010\u0001\u0019K‚i\u0000d","r_string":"ookwesqrk","r_array":[],"o_boolean":null,"o_int":null,"o_long":{"long":4133157263504377212},"o_float":null,"o_double":null,"o_bytes":null,"o_string":null,"o_enum":{"Level1_2_Enum2":"ZERO"},"o_date":null,"o_timemillis":null,"o_timemicros":{"long":8576033226992897339},"o_timestampmillis":null,"o_timestampmicros":{"long":4082021449706225414}},{"r_boolean":true,"r_int":27611100,"r_long":-1881339832760492687,"r_float":0.9549717,"r_double":0.04752275513960902,"r_bytes":"ø;","r_string":"rroy","r_array":[],"o_boolean":{"boolean":true},"o_int":null,"o_long":null,"o_float":null,"o_double":{"double":0.44002596655635773},"o_bytes":{"bytes":"”À"},"o_string":{"string":"txscj"},"o_enum":{"Level1_2_Enum2":"ZERO"},"o_date":{"int":-2030085073},"o_timemillis":null,"o_timemicros":{"long":-6270453983336104998},"o_timestampmillis":null,"o_timestampmicros":{"long":-1472100492791036831}}],"r_date":-728722721,"r_timemillis":-423626887,"r_timemicros":-3776474423359410492,"r_timestampmillis":-5362027771089082827,"r_timestampmicros":7420421375730266694,"o_boolean":null,"o_int":null,"o_long":null,"o_float":null,"o_double":{"double":0.4166542991438532},"o_bytes":null,"o_string":{"string":"uia"},"o_enum":null,"o_date":{"int":284381443},"o_timemillis":null,"o_timemicros":null,"o_timestampmillis":{"long":-8226214036812905372},"o_timestampmicros":{"long":2797594687459872956}} -{"r_boolean":false,"r_int":-410865722,"r_long":4414420395150606768,"r_float":0.87147343,"r_double":0.665840241004166,"r_bytes":"ØØ֏Æ","r_string":"pwgxvtu","r_record":{"r_boolean":false,"r_int":-1430825602,"r_long":6471948752651901266,"r_float":0.09931606,"r_double":0.9401495282292918,"r_bytes":"…}bʒg","r_string":"obwghdbf","r_record":{"r_boolean":false,"r_int":75288184,"r_long":1926419458813738858,"r_float":0.99890697,"r_double":0.49342846227431003,"r_bytes":"|ß#õ\"@–q5‡¯X","r_string":"gyhbwfs","r_enum":"ZERO","r_date":-473490430,"r_timemillis":1191735863,"r_timemicros":2080877517116424377,"r_timestampmillis":1120338512483035995,"r_timestampmicros":-6738259147187434317,"o_boolean":{"boolean":false},"o_int":null,"o_long":null,"o_float":null,"o_double":null,"o_bytes":null,"o_string":{"string":"evuygsppnoi"},"o_enum":{"Level2_1__1_Enum2":"ZERO"},"o_date":null,"o_timemillis":{"int":1967755469},"o_timemicros":{"long":-8566581031696763414},"o_timestampmillis":{"long":-6909474626041940966},"o_timestampmicros":{"long":2126297870962830455}},"r_enum":"ONE","r_date":-2003015406,"r_timemillis":-43747258,"r_timemicros":7110252545637942614,"r_timestampmillis":-5276894991123900662,"r_timestampmicros":-4990468501079589977,"r_array":[{"r_boolean":false,"r_int":-691454119,"r_long":-7590208932903087389,"r_float":0.5685312,"r_double":0.8154982269444412,"r_bytes":"SƒJh","r_string":"ytnlopjgpegijml","r_enum":"ZERO","o_boolean":null,"o_int":null,"o_long":null,"o_float":{"float":0.9255416},"o_double":null,"o_bytes":null,"o_string":null,"o_enum":null,"o_date":{"int":1488833324},"o_timemillis":{"int":1630594011},"o_timemicros":null,"o_timestampmillis":{"long":-5111939016611023805},"o_timestampmicros":null}]},"r_enum":"ZERO","r_array":[{"r_boolean":false,"r_int":-2050951121,"r_long":5643757749286353579,"r_float":0.2959783,"r_double":0.8250660317776711,"r_bytes":"ֈÃ","r_string":"dkijopypab","r_array":[{"r_boolean":true,"r_int":-1133154194,"r_long":-4434405002160142641,"r_float":0.76456606,"r_double":0.8524784623044342,"r_bytes":"]ÂÛáOeCòÛ\u001E~Àõ\u0007","r_string":"xwpk","r_enum":"ONE","r_date":955766473,"r_timemillis":517532272,"r_timemicros":7489781573997527075,"r_timestampmillis":3104348537682461160,"r_timestampmicros":9143478067631989794,"o_boolean":{"boolean":false},"o_int":{"int":-271402561},"o_long":{"long":5006015120958498733},"o_float":{"float":0.5973872},"o_double":null,"o_bytes":{"bytes":"uà­Ìg\u00044þË."},"o_string":{"string":""},"o_enum":null,"o_date":null,"o_timemillis":{"int":1033063603},"o_timemicros":null,"o_timestampmillis":{"long":-9007898271300104528},"o_timestampmicros":null}],"o_boolean":null,"o_int":null,"o_long":{"long":1391135321838329583},"o_float":null,"o_double":null,"o_bytes":null,"o_string":null,"o_enum":null,"o_date":null,"o_timemillis":{"int":-1840884683},"o_timemicros":null,"o_timestampmillis":{"long":7502607309878946299},"o_timestampmicros":null},{"r_boolean":true,"r_int":-201515448,"r_long":5973601919048230503,"r_float":0.030058682,"r_double":0.5473443679765976,"r_bytes":"È[œ˜›Q÷HU\u0019*˜","r_string":"mukcaehrhgwqtx","r_array":[],"o_boolean":{"boolean":true},"o_int":null,"o_long":{"long":-3285782526025289980},"o_float":null,"o_double":null,"o_bytes":null,"o_string":{"string":"stgfw"},"o_enum":{"Level1_2_Enum2":"ONE"},"o_date":{"int":-1346730490},"o_timemillis":null,"o_timemicros":{"long":-2363864626932971858},"o_timestampmillis":null,"o_timestampmicros":null}],"r_date":-1043589784,"r_timemillis":1054964588,"r_timemicros":-257532661765129998,"r_timestampmillis":4673709820929775773,"r_timestampmicros":2600614621444147556,"o_boolean":null,"o_int":{"int":1685449817},"o_long":{"long":7822032981145580834},"o_float":{"float":0.77720803},"o_double":null,"o_bytes":null,"o_string":{"string":"lrlphcacbqywi"},"o_enum":null,"o_date":{"int":-1124431641},"o_timemillis":null,"o_timemicros":null,"o_timestampmillis":{"long":-3986236805283696076},"o_timestampmicros":{"long":1731390327352553847}} -{"r_boolean":true,"r_int":812921032,"r_long":8523825137434757826,"r_float":0.95101833,"r_double":0.5592802434137752,"r_bytes":"B 4,.é\u0014zS±O\fno4\f¯}²ÜtÞ\u0007G\u00139a\r\u0002€;‹Ã|dÔD\\v\u0019è/ó\\ø-“Ž³¼’ôd72óT÷›Ú\núfFÄ_‚…ö‘c‚\rª%îŽz*”‚h\u000B¸=ñL«\u0005L¼ë[ˆ\u0011\u0018]2 ý\u0007\u000Eº\"•\u000F¯ÄV[É«n`éVùM2x^]^úO\u0004ìÐn“xp–\u0002OµžVîѕé@Aƒã¢`ÇkþÐe±+LÞ¦ë\b\\£¾™´£x¥_3Àió_©…ɈVhÿºk¼þEf\b=\u0005¨\u000BìE\u0001b<\u001E×[Y&+\u000E‚ó´\b","r_string":"ftqon","r_record":{"r_boolean":true,"r_int":-1875237506,"r_long":-7467812514922356836,"r_float":0.7042594,"r_double":0.28790532250762,"r_bytes":"^ÏZ£Vô\u0004W","r_string":"vwakaqadprdunclwepkspknadehgtymvrgpasxyjiocpawgpnpqqbfnckbvfccxgjryqimijwvsxguwebjwumpwfahkrtbqgmgagvjfxiagcjthgtrrwfqjdhdocobhrinoikrhrbrlofteioiiubmuxppbhjmnanlauphefddlmirtmdtdovjyyrksbjojporlxdxbhabrsrrsdytiqqurygwbxeafexqclqfvcsuei","r_record":{"r_boolean":true,"r_int":1734244525,"r_long":-5419651614727439962,"r_float":0.11941177,"r_double":0.3542313270337145,"r_bytes":"Š3","r_string":"mjtgjvpuc","r_enum":"ONE","r_date":542601644,"r_timemillis":874544686,"r_timemicros":-7479287599643546149,"r_timestampmillis":2474029739971531968,"r_timestampmicros":4863385827350776839,"o_boolean":{"boolean":true},"o_int":null,"o_long":{"long":3892475405243411266},"o_float":null,"o_double":{"double":0.3646074552349069},"o_bytes":{"bytes":"^y"},"o_string":{"string":"hfvqfpmrdslibp"},"o_enum":{"Level2_1__1_Enum2":"TWO"},"o_date":{"int":-1048006153},"o_timemillis":null,"o_timemicros":{"long":-8244651994484578336},"o_timestampmillis":{"long":5447420939968253492},"o_timestampmicros":{"long":-4384406521500597907}},"r_enum":"ONE","r_date":-1321344585,"r_timemillis":-1745576910,"r_timemicros":1532922667853581351,"r_timestampmillis":5145626269361871039,"r_timestampmicros":-6355587845668108957,"r_array":[{"r_boolean":false,"r_int":13687719,"r_long":-8323555317820938181,"r_float":0.08548534,"r_double":0.14658966484468838,"r_bytes":"m˜g» \"f¡ðf{Ö\u0002n","r_string":"wlronmpvckau","r_enum":"TWO","o_boolean":null,"o_int":{"int":227150149},"o_long":{"long":5263962948245182808},"o_float":null,"o_double":{"double":0.6073369331851269},"o_bytes":null,"o_string":null,"o_enum":{"Level2_1__2_Enum2":"ZERO"},"o_date":{"int":1236138582},"o_timemillis":null,"o_timemicros":null,"o_timestampmillis":null,"o_timestampmicros":null}]},"r_enum":"TWO","r_array":[{"r_boolean":true,"r_int":1562680761,"r_long":4557543536955904181,"r_float":0.18274969,"r_double":0.7345840247229171,"r_bytes":"ÝÇ KáY”\u001C2|.ØTë","r_string":"ikt","r_array":[],"o_boolean":{"boolean":false},"o_int":null,"o_long":null,"o_float":{"float":0.975719},"o_double":null,"o_bytes":{"bytes":"ã\u000B`šç!e"},"o_string":{"string":"crm"},"o_enum":{"Level1_2_Enum2":"ONE"},"o_date":null,"o_timemillis":null,"o_timemicros":{"long":8142282209579318267},"o_timestampmillis":null,"o_timestampmicros":{"long":-4517997007052569955}}],"r_date":-1847650099,"r_timemillis":-508475277,"r_timemicros":-7123880022893002663,"r_timestampmillis":-3728295282128263394,"r_timestampmicros":-7755768548940663183,"o_boolean":{"boolean":false},"o_int":null,"o_long":null,"o_float":null,"o_double":null,"o_bytes":null,"o_string":null,"o_enum":{"Enum2":"ZERO"},"o_date":{"int":-1473763979},"o_timemillis":null,"o_timemicros":null,"o_timestampmillis":null,"o_timestampmicros":null} -{"r_boolean":true,"r_int":-499176481,"r_long":731905278064174206,"r_float":0.17221183,"r_double":0.7037674998065663,"r_bytes":"_\u0017ä%\u001F\u001D|UZle~–ëŸ","r_string":"fpgmhec","r_record":{"r_boolean":true,"r_int":-1876525383,"r_long":5873027209532625130,"r_float":0.19791245,"r_double":0.2981272651913953,"r_bytes":"MC\u0001?¬\u001A\u0006","r_string":"ujirj","r_record":{"r_boolean":false,"r_int":1928570405,"r_long":-3068037513562648632,"r_float":0.5372696,"r_double":0.19448253219523082,"r_bytes":"FHß°\u000E.õh»\"r","r_string":"uhvc","r_enum":"ZERO","r_date":-1100188598,"r_timemillis":1669455343,"r_timemicros":-4339796748192795499,"r_timestampmillis":-856509348213037304,"r_timestampmicros":-1665504371842874532,"o_boolean":{"boolean":true},"o_int":{"int":1048100795},"o_long":{"long":-7469435334507761769},"o_float":null,"o_double":{"double":0.9252234768634308},"o_bytes":null,"o_string":{"string":"euo"},"o_enum":null,"o_date":null,"o_timemillis":null,"o_timemicros":{"long":-737697972400324257},"o_timestampmillis":{"long":-7212537523355597592},"o_timestampmicros":{"long":8416585611872173381}},"r_enum":"ONE","r_date":606638382,"r_timemillis":467941569,"r_timemicros":4369936060974666811,"r_timestampmillis":2488193344175868799,"r_timestampmicros":7154737881681486572,"r_array":[{"r_boolean":true,"r_int":-416897625,"r_long":-232330969578280671,"r_float":0.76150507,"r_double":0.9056235228122028,"r_bytes":"\"","r_string":"ls","r_enum":"TWO","o_boolean":null,"o_int":null,"o_long":null,"o_float":{"float":0.5948759},"o_double":null,"o_bytes":null,"o_string":{"string":"l"},"o_enum":null,"o_date":null,"o_timemillis":{"int":44259424},"o_timemicros":{"long":4229445964161587565},"o_timestampmillis":null,"o_timestampmicros":null},{"r_boolean":true,"r_int":1358194118,"r_long":8463249612706556579,"r_float":0.93123746,"r_double":0.08573111518931031,"r_bytes":"Ïx âŠÌ³0±í'݊","r_string":"foft","r_enum":"ZERO","o_boolean":null,"o_int":{"int":-977577149},"o_long":{"long":5197522132722393700},"o_float":null,"o_double":null,"o_bytes":null,"o_string":null,"o_enum":null,"o_date":null,"o_timemillis":{"int":1228463748},"o_timemicros":null,"o_timestampmillis":{"long":-3434001149207798297},"o_timestampmicros":null}]},"r_enum":"TWO","r_array":[{"r_boolean":true,"r_int":1652728071,"r_long":8134599861283176741,"r_float":0.9842508,"r_double":0.7761989467348309,"r_bytes":"ËÒ \u000EðdÖDë\u0015*¨#","r_string":"ttynllagnklfr","r_array":[{"r_boolean":true,"r_int":1425045207,"r_long":-3509000924659645851,"r_float":0.9265322,"r_double":0.19574898266939922,"r_bytes":"a¬¦©ã\u0016","r_string":"","r_enum":"ZERO","r_date":1690634591,"r_timemillis":201955406,"r_timemicros":7917636975594443634,"r_timestampmillis":6441934270474615072,"r_timestampmicros":5638924777234159556,"o_boolean":null,"o_int":null,"o_long":null,"o_float":null,"o_double":{"double":0.3407917086929194},"o_bytes":null,"o_string":{"string":"wisalllvgxdk"},"o_enum":{"Level2_2_Enum2":"ONE"},"o_date":null,"o_timemillis":{"int":45217822},"o_timemicros":{"long":652169672805905316},"o_timestampmillis":null,"o_timestampmicros":{"long":-1666799296908121490}},{"r_boolean":false,"r_int":-810432373,"r_long":-1005529617284305473,"r_float":0.24223214,"r_double":0.66999936903557,"r_bytes":"˜É\n¯\u0007RŽ¼Ñ","r_string":"bpnyujgcf","r_enum":"ZERO","r_date":865820891,"r_timemillis":1782806867,"r_timemicros":-2608875084892911246,"r_timestampmillis":-6703748794894938857,"r_timestampmicros":-8383862903631419101,"o_boolean":null,"o_int":{"int":-1583669009},"o_long":{"long":-3208071975065261326},"o_float":null,"o_double":null,"o_bytes":null,"o_string":null,"o_enum":null,"o_date":null,"o_timemillis":{"int":1058051771},"o_timemicros":null,"o_timestampmillis":null,"o_timestampmicros":null},{"r_boolean":true,"r_int":1653450472,"r_long":4102495526432975896,"r_float":0.2626909,"r_double":0.8497777247579897,"r_bytes":"¥—&u\u0019°9É;","r_string":"","r_enum":"ONE","r_date":1943620607,"r_timemillis":112447462,"r_timemicros":3537433211583404887,"r_timestampmillis":1401784475540188667,"r_timestampmicros":8074706270095976087,"o_boolean":{"boolean":false},"o_int":{"int":-150338761},"o_long":null,"o_float":{"float":0.9677646},"o_double":null,"o_bytes":null,"o_string":null,"o_enum":null,"o_date":{"int":417688330},"o_timemillis":{"int":-1473340986},"o_timemicros":null,"o_timestampmillis":{"long":-7042449880605469763},"o_timestampmicros":{"long":825837058522851260}}],"o_boolean":null,"o_int":null,"o_long":null,"o_float":{"float":0.12588036},"o_double":null,"o_bytes":{"bytes":"Ç\u0012)ù•C¯þÝÎmû·y\u0018$=\u000Eö²0Z~\u000F#\u001BALÀ\n1\t\u001D‘\u0014I9‡8™{¼\u0015\u000BAÆ/ík͒¸´\u00194f\bŠ\r3é«xåä¹%ö5.žØn±zt{+f\t4³Hðìì\n¬3v\u001E¡jß\u0000Κ£Õ\u001Dº6¡‹Ua%[îj¶ÀÏ\u0003Ò%\n´Ø\u0013ä\u0006¼u‰±áÝÖÔøoø¨Ý™\fàeZ¬Àþ¶/J@ì\u0011­\u000B¶5JÕ¢Ûô·ˆE\u0016ʵ§R7#UW¿¼\u0015ž¢Å)³trCuA³¡\u0007g\bý`\u001DD-¶\u0013d\u0006Já­ÀSqXFґ9¹\u001E\u001BWHù‘‹kX©L!…^Új°Æ_\u0000î]Jí¿\t£p.*öEÝ\u0011n³hLúhvØPzÂ=\u0011{\u0004ë\u0002ÿ‰\u001A›¼Ø¹Ì¨Jœä\bJØ«Ýc\nÀ{äfápêDôâ?ÿQ'K\u001Aù\u0006ŸÔ0¾à‚½'\u001Cëk²'w\u001B\u0014ߔE\u0002+öZp\u0007°Á3\u001DŽ¡|ÖØi$³K«‹ð/¡4xê-† :á\u0016ƒw\u0001­vÊ\u001FoH}÷z^š\u001EÝ8\u001B¹˜A\u0010V™4lÉ\u0004J·k ^l—Ã$–¶Ò/²ýÌß\u000E¾ä¾4•Žå“e\u0001¸µúÔ/§\u0017gh#ŠAƒ ˆT3—Ìê+þXó¥j\u0016§^™\u0002#5.ìÇÛ_)s;Â+8óîòm´\f]iš¹È{¼*†2’Vÿîš&8-RßÆ\tF\u001BX¹¼í+‰èq\u0016o\b=\u00174ÄóEˆ\u000E û\u0019¾<*{ђõ÷Q!e‰MC+õÆa‚lÒ\r©\u0010$pá\b+X(X£í\u0016ôˆ¸û=Ó:h\u0018ˆóÛ\u001A¹³ëÀÿiáæf\u001A;_\"ïRJӘ¯O)”søö䱅‚\u0015`~z:\u0011á3/\u0004Ðh$¤`‹ù‘è¢ý·ãc¯ÀÆCÍp{”„\bs¤n‡Á)Qš\u0007ó¥€F{6M…ªýÅXþϵßՉÌAã\f® @Q¸š²ÏÓ\u0011´f?Æ\u001DŒwsÏàì]ùð^lx\u000Fpk»oM§Í\u0000êˆ2°m-Æ>54€\u001D®µáý‹°\u0015IsKbD~Ýü\f§fޘ«À}\t7r\u0019?\u0006Ä@Qáå•\\««·*œž´‰á¡\u0015\u0012¤\u0003qTÅ\u0005pjúНhàÌ<¤µ¨Ö§TÔÏÝt¿N††\u0002-zI0\u001C™·¤6øµ‚0tcØá\u0001%ŠZ]Zõ­\u0019šãÍ\u000F\u0002g%\têÄ8šïáÅ\u0017WŒ?â(©\u0012—\t¼¶o IH„ì¹;õçÜ\fstµzlƾüS\u0001¬xepv4¶¤dó\u0017â)ßqXEi)¬þRìë¾9»ål\u0010ógŠ½•ÊÂ¥sZ'DÞl>—´9S((·\u0004Uã`³å}*\u000EÚüUí.‡­Ðé‹]$}\u0013ì{Šá_£—Ä®\u001E:­ËY'–\rW<ë3¸R\u001Eô\\\u000BD6L·÷wŠJË\u0007½LÕ¼ø—Œ\u001CÃc Ný¬/²\f/ÛpRÔr˜íCy`XKZW˜\u0010äIÞx~+„Ô\u0000/{þ=ù¯qÂKóT}^÷¤à]ø‘þ&]|±Š€åE\u0010‚îË×t7¡%+\u0001ef4\u0001ý-¹á£×ð¦”p‘z袥¦\u0011þý¥/»æÆJüÆ0›¸›=‰^‹oqÎ\\7¬7¬íH\n¶æ5è(×p\u000F¢l\u0004ijÁoYL|O:®Œ&ºSø¾ócb–lÚǶ\u0013å\u0002j‹¥È_×އžŠîY\u0006¤Å«øü2»‚8 \u0002c`z)TSED;Ùóy•\u000F>;$fóìÜ¿€l4\u0010\u001A$\u0000~”幜w—0¶læŘÕôñ\u001D|;×e\\X[KÜ{XOÇIµÖ»ŒÏåCÉ)¼\u0013\u001Ež<\u0019\u0003±™¢úž\u001EócüHQ҃w\u0011«Ý&~;¬/0ÞðbÈ\u001CJH óø.r\u0006$ÄÒÑÍKúމuÅ¥«ÂÔ¬\u001Cm\u0017çàχ<µ…LÑT{哩\u0013çú(\fÏæ\u0003’ª›fžÿ,×Ô\u0000‰\t{Yl\u0011V\u0019x)M—o1q\u0006Ս¯Jò\\fœ üÃgGú\u001Dt†\t¨kÅz»ýZ2'\u000EÊóD\u0006õ\u0010Õë¶Î!â\u0018¦öÑ\u0013\u0005×ìJÇ\u0010åÞk¨Ð5JÊ(vŠ\u0006rñ‡¼äZLèÓöST•q|Á[àño€Ï ¨¾\\7s¶©Z-ÔUC'dž¼Kæ<˦ŠÅÖmÒôøzwCϛߡզ\u0011pCiá5 \rý°o _\fW¢y~H×$z™5äfß`²¶Ì¨¢²ä=\"¬¨“\u000EætùR^——ü ½“gT˜ò›bp䧾z\u0016éÇÐ&xÿ\u0017RŸ.Úý\u0016 vÈÈæÔ¾#\u001B\u0007D‘rLÂ*\bœ½'œ\u0015\u0003¬/Çx\u0013J}[П\\+½Õ¢\u001C\\»Ï”Ù°€Ùñ0ì]2\u0014û˜v=IFË\u0014¤ÂðlÍëä/§‘gFœ³\u001FeÍÄA’*\u0018k#\u000E\u0019;ˆ’\u0011œÛéÂ\u001B&æIñ…©ŸIöìÝ}P„PÎ5Nžª\bq…§]FZQ\u0013\b\u0007>Ü/—EŸ\u0011u—\ti=ߨ©\u000B‹³eŠÈ11\u0017Ö.ßÐöz]Ÿ\"ፋ\u001FÃ\u001BLî_ÉÓCg,+\u000B\u0004ÿ¼2¢Ûd¬ï6\u001F#©L.øû;\\t>¿\u0014 \u0018\u0006§ñ¿¦˜Ë!\u001CÔ­{j\u0003ò›\u0012[Á°zß³&&\u001C“”µ†T53Ad[MX6ÄMÜN[N\fê\u001D-mB½\u001CÏ}ò\u0012<Ñ[ÓlìUšõÿ¹é+8UBÔá?ý²\u0006Ca \u0006\u001Bš@†õÈ\u0017\u0007uzáL€‘&yÚv\u0004\u00044ÉÙ\u000EaÈ\u0018¹Ê\u0012¸ûŽ\u0000ZçZ¥x\u000F\fjO€d–’5™š\u0015\rðWJ•à9Æ\u0017\u0003$ր~\u0011)]“¥¶4qØ+²ë¡\\!­\u0012kUŸ\t¿Û|4â1{·9¦Kà¥aõ‰rÂï€ó8A¤\u0002Å,ïýõöfÁ²($m\u0004y\u001A¿°¸Ô˜\u001EÌui£òñ`èA¬Ñwa\u0004¥T&t\u0015)Ç_kF’>õDIõ-ƒ½Ð“QÌfÌ\u001FN±jmoLø›ù\u0014˜[\u0000‹x×\u001FSíف¿ñ\u0013Äü\u0002Ì\u000Fá¼÷e\"Ü¡À¨‚Ϋö †&\u0001–´*0ê[#\u001Fœ#\u001E\u0006@UC UÐkò¿\u000E¼WNy×݁¬m·\u0015ç?kœÓéÿwó]oa82‡×\u001Aáæ=Gê‡dúÃ}ŠªÝô’=Ó§=¥ñ4V\u001C\t¾6(—:_Z)\u001Düô\u0018P\u000BÒñ\"–áf»Ký­ÝpOï\u0014ÊG9ÙÔ¼Ô\u0013P\u001E¹?aÒ:œÐ\u001Cˆa6\u0002ˆ‰Ó2÷bgÓTK®záÓáÉ«‹V´\u001E–…Ϧ¿KûñÅ0@_ü+\u000E ZÙà$Û\nØ~ìþ\u0001Nýðð/„iùï¹´“‹œîÌ\no\u001AãPÕ671½\u0002vñ¤ãþ+Ox\u0011ًÿÍ4/êj˜\\/³,<Äy5Ðcº­<\b€\\ه†_\u0018\u000BÜ\u0007öɍègp(â)°\t\u001A\u0012º|q¹Î=’\u0002Z6戂ª¡šE2Ug#\u0013¢êÞä}[µô\u000FBø^âI®f¬ÇóL¸\u001EÕk=Γ#è‹j0\u000Fí¡´Q~ÇjùÍáY2ˆ\"Æ1^u@¶\u0017oӚÀ¢ØPq֜‡—MIYŒf㳕q\u0003\u0019Ì¢1@'›° \u0010\u0007‚‘Pš*Þ°MØ\u0010ÃSÌ­#ýæB§„ÞŠ¡\u001Dkü¥§Um:ä­º=®ƒÛ;ð\u000E>lÿuzÖ8©í&µ\u0011†fL­\u0002@t\u000B¤Ñ×)\u000Eª\u0006ZíÈãÀS9&úúžnòI6Di{7ä¾\u0001\u0015Ò-ä\u0002\u0015´ÿ@ÊGÿSY`·^gøû­œZÉ@_¦rؼ®\u0016\tuO×|©g"},"o_string":{"string":"uvftcnwykdiidabgbgehfxdlomucshanbfxrvhtixnmrdvixcgtjkcwjyosvtxwjtkjlrrmmqpoljqpvyubcbqlxuebngrunphdrljvvyvtfnokpmxkiyyngfubmfhiilhjoyloqtsiptbwhpouyfxbhrogwxwxsrspnotqqcgtsrarrsvfkiguplnmqwaoxbrfiiwbwyrqqcdmeqgpaya"},"o_enum":{"Level1_2_Enum2":"ZERO"},"o_date":{"int":-1701866383},"o_timemillis":{"int":248700531},"o_timemicros":{"long":-7817243581086487594},"o_timestampmillis":{"long":558301361856660919},"o_timestampmicros":null},{"r_boolean":true,"r_int":-1166408331,"r_long":4232257360075929805,"r_float":0.22721565,"r_double":0.8781596473386013,"r_bytes":"Ó×Vö\u001A","r_string":"vbevsfrprnwj","r_array":[{"r_boolean":false,"r_int":-1004077479,"r_long":-7931762907770662453,"r_float":0.9209043,"r_double":0.8569158401766385,"r_bytes":"ì\u001C«Ž°à\nxH","r_string":"becd","r_enum":"ZERO","r_date":2098736155,"r_timemillis":1417083552,"r_timemicros":-2045037621523163650,"r_timestampmillis":7616338566365638374,"r_timestampmicros":8396216179676165953,"o_boolean":null,"o_int":{"int":-1898697208},"o_long":null,"o_float":null,"o_double":null,"o_bytes":{"bytes":"\u000B\u0015\u0015šžºEˆwTi÷¶"},"o_string":{"string":"nnuwpccuy"},"o_enum":{"Level2_2_Enum2":"ONE"},"o_date":{"int":1349716286},"o_timemillis":null,"o_timemicros":null,"o_timestampmillis":{"long":-4481590323325262045},"o_timestampmicros":null},{"r_boolean":false,"r_int":71360274,"r_long":-5597714385748636314,"r_float":0.13429195,"r_double":0.683701043835867,"r_bytes":"~5€","r_string":"xykpfs","r_enum":"ONE","r_date":-1216270246,"r_timemillis":-372408597,"r_timemicros":5165157352575465893,"r_timestampmillis":4418294789755118529,"r_timestampmicros":7905423150661192953,"o_boolean":{"boolean":false},"o_int":{"int":-673893892},"o_long":{"long":-5459931290675007804},"o_float":{"float":0.15974474},"o_double":null,"o_bytes":null,"o_string":{"string":"kweb"},"o_enum":null,"o_date":null,"o_timemillis":null,"o_timemicros":{"long":-717609255368646775},"o_timestampmillis":{"long":-3905559750318856675},"o_timestampmicros":null},{"r_boolean":false,"r_int":-1638640567,"r_long":4749682914799828646,"r_float":0.73011035,"r_double":0.47973936411648155,"r_bytes":")“­","r_string":"adhg","r_enum":"TWO","r_date":-1096225513,"r_timemillis":-2038226519,"r_timemicros":-7656923802131098071,"r_timestampmillis":6750817648606445627,"r_timestampmicros":-9024903567708287087,"o_boolean":{"boolean":true},"o_int":{"int":1440397086},"o_long":{"long":2842084916816443108},"o_float":null,"o_double":null,"o_bytes":null,"o_string":null,"o_enum":{"Level2_2_Enum2":"ZERO"},"o_date":{"int":1078296029},"o_timemillis":null,"o_timemicros":null,"o_timestampmillis":null,"o_timestampmicros":null}],"o_boolean":{"boolean":true},"o_int":null,"o_long":{"long":-4899055684456203776},"o_float":null,"o_double":null,"o_bytes":{"bytes":"¥ä—pu"},"o_string":{"string":"v"},"o_enum":{"Level1_2_Enum2":"ONE"},"o_date":{"int":-1808144099},"o_timemillis":{"int":-1724101511},"o_timemicros":{"long":-8622287168097840559},"o_timestampmillis":{"long":-8357980495615491148},"o_timestampmicros":null},{"r_boolean":true,"r_int":-131789398,"r_long":1839998290971853655,"r_float":0.99668014,"r_double":0.4614105471345683,"r_bytes":"t","r_string":"gbqf","r_array":[{"r_boolean":true,"r_int":147472109,"r_long":-7688219595585793263,"r_float":0.56413543,"r_double":0.9429217485388759,"r_bytes":"9´Ûé³pÐ¥§\bV\rÿ%Ï","r_string":"qfelosetaiv","r_enum":"TWO","r_date":-1779906202,"r_timemillis":2107175292,"r_timemicros":7803629370078051761,"r_timestampmillis":3295506432407812836,"r_timestampmicros":6089890302544974385,"o_boolean":{"boolean":false},"o_int":{"int":-1229404952},"o_long":null,"o_float":{"float":0.41327608},"o_double":{"double":0.36122065283556226},"o_bytes":null,"o_string":{"string":"cdwoms"},"o_enum":null,"o_date":null,"o_timemillis":null,"o_timemicros":{"long":-8700832990543362001},"o_timestampmillis":{"long":-6042718999410941997},"o_timestampmicros":null}],"o_boolean":{"boolean":true},"o_int":{"int":384312460},"o_long":null,"o_float":null,"o_double":null,"o_bytes":null,"o_string":null,"o_enum":null,"o_date":{"int":1438033382},"o_timemillis":{"int":797315707},"o_timemicros":null,"o_timestampmillis":null,"o_timestampmicros":null},{"r_boolean":false,"r_int":-831725974,"r_long":6574236715562777230,"r_float":0.95427966,"r_double":0.6839393274406006,"r_bytes":"|®¶G¸|OèV­Áæ“î„\u0004·éÑ\u0012³‰½¬ý^k„#µ\u001BыE»oô¿Ž\bƒl¾\u0017C~^rÞµÊ\u000Bà3\tí7§žçá\u0002T^Öæq®qüð3S$wÛJ\b@5l@‚êÜËÖ'®9)¯\u0005H7\u0019`\u0011ÓÜÕUˆÚ\u0007תÈW®pÇr«YN\u001Co¶+\u0006÷WW5¡\fý™D\u0012d\u0001+;x‘ŸR\"•ùq”\u0001¨.K¹>¹\bjZte\u0004ò]Äi·Î­ìÍ}gAaÔIB¥Ž‹Ö5 IH´¢\u0017\u001Cg˜h\u001Bº†DÈ","r_string":"ssyle","r_array":[],"o_boolean":null,"o_int":null,"o_long":{"long":-3389336894920877816},"o_float":{"float":0.14382023},"o_double":null,"o_bytes":{"bytes":"?\u0015g£"},"o_string":{"string":"jdphnbxamkjlfu"},"o_enum":{"Level1_2_Enum2":"ZERO"},"o_date":null,"o_timemillis":{"int":1520381961},"o_timemicros":null,"o_timestampmillis":null,"o_timestampmicros":{"long":-4178817911136926279}},{"r_boolean":false,"r_int":-1474277275,"r_long":6760493800716190543,"r_float":0.1417644,"r_double":0.398295277564675,"r_bytes":"S\u001Aq[¹Æ_åM`\u0005TU¡\u0007","r_string":"bkqnypjddgstk","r_array":[{"r_boolean":false,"r_int":-1629083526,"r_long":-3543119444346418786,"r_float":0.43340153,"r_double":0.3999787614204875,"r_bytes":"\u0002ÅëOÍs³²±N@ñb{f","r_string":"jpcxj","r_enum":"ONE","r_date":-935164218,"r_timemillis":787992396,"r_timemicros":-1851737981994385180,"r_timestampmillis":-1281932078422563190,"r_timestampmicros":4755582587394807459,"o_boolean":null,"o_int":{"int":-1486564618},"o_long":{"long":-7412683564671312650},"o_float":{"float":0.054003477},"o_double":{"double":0.40100961943463},"o_bytes":null,"o_string":null,"o_enum":{"Level2_2_Enum2":"TWO"},"o_date":{"int":-1458937193},"o_timemillis":{"int":-1476232590},"o_timemicros":{"long":582786365341080532},"o_timestampmillis":null,"o_timestampmicros":{"long":-3066559346451057250}},{"r_boolean":true,"r_int":39999487,"r_long":6823268883976684724,"r_float":0.83865803,"r_double":0.2936977166300839,"r_bytes":"ò\u0002”àú‹5sÒ\u0015a{0w\u001B","r_string":"r","r_enum":"ONE","r_date":1544985156,"r_timemillis":-1245289276,"r_timemicros":8871507270059886899,"r_timestampmillis":880096144181623125,"r_timestampmicros":-8425758463214254400,"o_boolean":null,"o_int":{"int":-1482693858},"o_long":{"long":-5644881693642989515},"o_float":null,"o_double":{"double":0.7092590769904409},"o_bytes":null,"o_string":{"string":"nbkvrbt"},"o_enum":{"Level2_2_Enum2":"ONE"},"o_date":null,"o_timemillis":{"int":1882529333},"o_timemicros":{"long":-6413089410800161179},"o_timestampmillis":{"long":-4268141147604233944},"o_timestampmicros":null},{"r_boolean":false,"r_int":-233145372,"r_long":4297079354806304146,"r_float":0.83346385,"r_double":0.5639513530568393,"r_bytes":"RmþIœç©r»","r_string":"cmestajvafovi","r_enum":"ZERO","r_date":-1339528767,"r_timemillis":-715705163,"r_timemicros":5036139572744232476,"r_timestampmillis":5296995539277863824,"r_timestampmicros":4561475634225439808,"o_boolean":{"boolean":false},"o_int":null,"o_long":null,"o_float":{"float":0.41502178},"o_double":{"double":0.11355393656719792},"o_bytes":{"bytes":"-—yrŽ\"%K7"},"o_string":null,"o_enum":null,"o_date":{"int":854166884},"o_timemillis":{"int":1192701882},"o_timemicros":null,"o_timestampmillis":{"long":380650287726429726},"o_timestampmicros":{"long":-3544071167232213481}}],"o_boolean":null,"o_int":null,"o_long":null,"o_float":{"float":0.87447757},"o_double":{"double":0.8122132336005287},"o_bytes":{"bytes":"fQ]\t§5Â\r\u0002üÌ2"},"o_string":{"string":"odohpauswrmps"},"o_enum":{"Level1_2_Enum2":"ONE"},"o_date":null,"o_timemillis":{"int":-237218974},"o_timemicros":{"long":-1974286304717304687},"o_timestampmillis":null,"o_timestampmicros":{"long":-1540880379418594175}},{"r_boolean":true,"r_int":-740830389,"r_long":-9164267660807184447,"r_float":0.9986364,"r_double":0.8633512873843082,"r_bytes":"Åë2-\u0000\u0017Ö#f\t|óŒ^","r_string":"pnvwpobmtdplhngbtrjqociwdjlgbmyqugjlutobqtyamjkqpwqgfapbxensspjjsacnxtrlbgocxthqcpotxnsqdjxhcanwxgsmfbjnumhkvbijxwotubfhcfexgxmgeuvsmbrrxsuwughxxostrhimgjeaalqirr","r_array":[{"r_boolean":false,"r_int":-1217806994,"r_long":-7714656503343290843,"r_float":0.5244885,"r_double":0.5729761483830454,"r_bytes":"±‚\tÈë8","r_string":"vbuhdq","r_enum":"TWO","r_date":-867755238,"r_timemillis":-1761628104,"r_timemicros":8655846289203053748,"r_timestampmillis":8268249700163432121,"r_timestampmicros":-7994084048971607730,"o_boolean":null,"o_int":{"int":-918012509},"o_long":null,"o_float":{"float":0.3217541},"o_double":{"double":0.03503949933552364},"o_bytes":{"bytes":"Ö/´Ä•\u0012\u000B\n\u0013ú¡5"},"o_string":null,"o_enum":null,"o_date":null,"o_timemillis":{"int":-1451864385},"o_timemicros":{"long":8329513394528179103},"o_timestampmillis":{"long":8623608525435042774},"o_timestampmicros":{"long":3166628585345070799}},{"r_boolean":false,"r_int":-567668001,"r_long":2153074692296955112,"r_float":0.24554187,"r_double":0.047666888184589196,"r_bytes":"vR'‘Õy","r_string":"","r_enum":"TWO","r_date":-982173029,"r_timemillis":-1482634116,"r_timemicros":-5766228672560313201,"r_timestampmillis":2433598521840109558,"r_timestampmicros":-306695075550384158,"o_boolean":null,"o_int":null,"o_long":null,"o_float":{"float":0.06525904},"o_double":null,"o_bytes":null,"o_string":null,"o_enum":null,"o_date":{"int":-118458240},"o_timemillis":{"int":-541907830},"o_timemicros":{"long":9062064058074636090},"o_timestampmillis":null,"o_timestampmicros":{"long":-6294411504827647817}},{"r_boolean":false,"r_int":2081212442,"r_long":1966601051732701339,"r_float":0.2312923,"r_double":0.4953165732568394,"r_bytes":"p!“5¥[û\u001DJ/²","r_string":"tm","r_enum":"ONE","r_date":1126376493,"r_timemillis":421331682,"r_timemicros":2639174681611450467,"r_timestampmillis":-2164176535671789343,"r_timestampmicros":4074367263718293434,"o_boolean":null,"o_int":{"int":-1443356368},"o_long":{"long":4507033723655047485},"o_float":{"float":0.7113881},"o_double":{"double":0.6271006124021569},"o_bytes":{"bytes":"v\t"},"o_string":{"string":"gojlogtbkhrsq"},"o_enum":null,"o_date":null,"o_timemillis":{"int":1382880119},"o_timemicros":null,"o_timestampmillis":null,"o_timestampmicros":null}],"o_boolean":{"boolean":false},"o_int":{"int":-1459587764},"o_long":{"long":4699931545168454334},"o_float":null,"o_double":{"double":0.7490481684095673},"o_bytes":{"bytes":"HÄ\u0019g‹G¦—¤£"},"o_string":null,"o_enum":null,"o_date":null,"o_timemillis":null,"o_timemicros":{"long":5816192055992716229},"o_timestampmillis":null,"o_timestampmicros":null}],"r_date":-1696567963,"r_timemillis":1182155462,"r_timemicros":-5919492684342834629,"r_timestampmillis":4012571198133892965,"r_timestampmicros":-9108225546427303732,"o_boolean":{"boolean":true},"o_int":{"int":1203229941},"o_long":{"long":5378965266676181913},"o_float":{"float":0.11960983},"o_double":null,"o_bytes":null,"o_string":null,"o_enum":null,"o_date":{"int":-884722823},"o_timemillis":null,"o_timemicros":null,"o_timestampmillis":{"long":9036948073245067052},"o_timestampmicros":null} -{"r_boolean":true,"r_int":1228504876,"r_long":-6380326014678595975,"r_float":0.13489181,"r_double":0.3824332829704499,"r_bytes":"i\u0004$#W„M#Lä¡\b\u001A","r_string":"hegnmpc","r_record":{"r_boolean":false,"r_int":1110764139,"r_long":5286811252821547613,"r_float":0.73765254,"r_double":0.14430622479297084,"r_bytes":"ˆy”)-i*€w","r_string":"tthm","r_record":{"r_boolean":true,"r_int":883680329,"r_long":518015975280042886,"r_float":0.6983902,"r_double":0.35424257899115974,"r_bytes":"\u0016˜\fYÇ+÷…þ˜","r_string":"clstsnv","r_enum":"ZERO","r_date":-1542992530,"r_timemillis":273956666,"r_timemicros":-5583224002143593479,"r_timestampmillis":3537598647856326930,"r_timestampmicros":1490794144850777518,"o_boolean":{"boolean":false},"o_int":null,"o_long":null,"o_float":null,"o_double":{"double":0.20040903237076457},"o_bytes":null,"o_string":{"string":"mjfeydhvtvnnu"},"o_enum":null,"o_date":{"int":1944927224},"o_timemillis":null,"o_timemicros":{"long":4797431774189324885},"o_timestampmillis":{"long":134122119815140158},"o_timestampmicros":{"long":-4924288337115243310}},"r_enum":"ZERO","r_date":-1726225007,"r_timemillis":2125623066,"r_timemicros":6655674268611666933,"r_timestampmillis":-1353584399022951669,"r_timestampmicros":8452051473066122461,"r_array":[{"r_boolean":false,"r_int":-44827406,"r_long":7014915384793921725,"r_float":0.010792971,"r_double":0.3125119541799173,"r_bytes":"lGº¯","r_string":"bplkonvodumfxduwmjkbtqeyjbmnxbcotlardcnwokhsnnwebqvgystvwogohatvmamjuodolrewdkuqhtscvlrqewaknhuevwqwggijkvynocaigvixnnjijdlmfw","r_enum":"ONE","o_boolean":null,"o_int":null,"o_long":null,"o_float":{"float":0.10103208},"o_double":{"double":0.4134342025091995},"o_bytes":null,"o_string":null,"o_enum":{"Level2_1__2_Enum2":"ZERO"},"o_date":null,"o_timemillis":null,"o_timemicros":{"long":6477521453160709520},"o_timestampmillis":{"long":-8992076174811601151},"o_timestampmicros":{"long":-4993688750252689491}}]},"r_enum":"ZERO","r_array":[{"r_boolean":true,"r_int":-1931582065,"r_long":8183133356128345201,"r_float":0.687046,"r_double":0.45591530651072176,"r_bytes":"¼cB\u0019½}\u0004Ï","r_string":"otignq","r_array":[{"r_boolean":false,"r_int":149646871,"r_long":-8575429639864094778,"r_float":0.91205907,"r_double":0.35337445170371495,"r_bytes":"\u0003•ßdÓda‡","r_string":"wmiggjsawsilp","r_enum":"ZERO","r_date":-214278873,"r_timemillis":-1652289462,"r_timemicros":-5715820101832199157,"r_timestampmillis":-3951997120702978109,"r_timestampmicros":4450574349007429904,"o_boolean":{"boolean":false},"o_int":{"int":-2031356372},"o_long":null,"o_float":null,"o_double":null,"o_bytes":null,"o_string":null,"o_enum":null,"o_date":null,"o_timemillis":{"int":-1344720233},"o_timemicros":null,"o_timestampmillis":{"long":-4782358548275673622},"o_timestampmicros":{"long":-6143625561073774817}},{"r_boolean":true,"r_int":-1342108014,"r_long":-3091939096908976055,"r_float":0.16785121,"r_double":0.8045632916852276,"r_bytes":"Üà&>t¤ð‰Ð","r_string":"o","r_enum":"TWO","r_date":1867725815,"r_timemillis":-1949775506,"r_timemicros":-6817182803251323689,"r_timestampmillis":-2381597925296241895,"r_timestampmicros":5676951051963818262,"o_boolean":null,"o_int":{"int":2088424214},"o_long":null,"o_float":null,"o_double":null,"o_bytes":{"bytes":"¼S‡J¶C="},"o_string":{"string":"uamb"},"o_enum":{"Level2_2_Enum2":"ZERO"},"o_date":{"int":1681249110},"o_timemillis":null,"o_timemicros":{"long":5693694700594868379},"o_timestampmillis":{"long":6862779752807245501},"o_timestampmicros":{"long":387819023545940988}}],"o_boolean":null,"o_int":null,"o_long":{"long":-1134537055762606191},"o_float":null,"o_double":{"double":0.5823479448089875},"o_bytes":null,"o_string":{"string":"vutf"},"o_enum":null,"o_date":null,"o_timemillis":null,"o_timemicros":null,"o_timestampmillis":{"long":2041258261204071462},"o_timestampmicros":null},{"r_boolean":false,"r_int":-1529891965,"r_long":-3311144484965550268,"r_float":0.33743453,"r_double":0.28270722000510384,"r_bytes":"","r_string":"uod","r_array":[{"r_boolean":false,"r_int":-410068216,"r_long":1331477376093258570,"r_float":0.9205073,"r_double":0.8911195633502129,"r_bytes":"ñ","r_string":"xdnma","r_enum":"TWO","r_date":-1224511407,"r_timemillis":-1724335483,"r_timemicros":7625200592100700970,"r_timestampmillis":-5640359165058360166,"r_timestampmicros":7284622596992360538,"o_boolean":{"boolean":true},"o_int":null,"o_long":{"long":-265404028352517994},"o_float":null,"o_double":null,"o_bytes":null,"o_string":null,"o_enum":null,"o_date":null,"o_timemillis":null,"o_timemicros":{"long":2210933876962904211},"o_timestampmillis":null,"o_timestampmicros":{"long":-8862369819176166215}},{"r_boolean":false,"r_int":1566437235,"r_long":4694290041772782277,"r_float":0.8602917,"r_double":0.4300715332374563,"r_bytes":"gw‰õ\u0007»÷Åè,!/&s","r_string":"hudjpxyyqjsn","r_enum":"TWO","r_date":252455690,"r_timemillis":962787563,"r_timemicros":4320004743242057711,"r_timestampmillis":-1357726650101337752,"r_timestampmicros":213240854252203979,"o_boolean":null,"o_int":{"int":354392052},"o_long":{"long":8824161137759742570},"o_float":{"float":0.48637944},"o_double":{"double":0.3452889237799992},"o_bytes":{"bytes":"čSP"},"o_string":null,"o_enum":{"Level2_2_Enum2":"TWO"},"o_date":{"int":-473125068},"o_timemillis":null,"o_timemicros":{"long":1516749039932296129},"o_timestampmillis":{"long":-1997516151163350353},"o_timestampmicros":{"long":2729801183298348638}}],"o_boolean":null,"o_int":{"int":-687918936},"o_long":null,"o_float":{"float":0.27690643},"o_double":null,"o_bytes":{"bytes":"ÆÏŽgö3옙"},"o_string":{"string":"bixfiqklpoesch"},"o_enum":{"Level1_2_Enum2":"TWO"},"o_date":{"int":1381304498},"o_timemillis":null,"o_timemicros":null,"o_timestampmillis":null,"o_timestampmicros":null},{"r_boolean":false,"r_int":-356883587,"r_long":1662191206834735721,"r_float":0.54688364,"r_double":0.059648473920472234,"r_bytes":"àT¸rÖ#;©è$","r_string":"pr","r_array":[{"r_boolean":false,"r_int":-911697465,"r_long":6663587097026098449,"r_float":0.62029624,"r_double":0.027267413226808146,"r_bytes":"\"‡","r_string":"","r_enum":"ONE","r_date":-1596373895,"r_timemillis":132846130,"r_timemicros":3457651438512209528,"r_timestampmillis":-2295553717005987740,"r_timestampmicros":126813408438747677,"o_boolean":null,"o_int":{"int":835992590},"o_long":null,"o_float":{"float":0.66921496},"o_double":{"double":0.5278203846363978},"o_bytes":{"bytes":"ƒÇÛdøU\"¸"},"o_string":{"string":"citplcqfxskbaef"},"o_enum":{"Level2_2_Enum2":"ZERO"},"o_date":null,"o_timemillis":null,"o_timemicros":null,"o_timestampmillis":{"long":4998394945764460214},"o_timestampmicros":{"long":985742283409102655}},{"r_boolean":true,"r_int":-2085361986,"r_long":3725801201076908916,"r_float":0.35350275,"r_double":0.4314441944560561,"r_bytes":"u-‹Ãüåæ\u0007Gß)½","r_string":"t","r_enum":"ONE","r_date":-1535987821,"r_timemillis":-372709622,"r_timemicros":963242929143149607,"r_timestampmillis":-1342502028850879512,"r_timestampmicros":6007448103452775352,"o_boolean":null,"o_int":{"int":1688821207},"o_long":{"long":-8768030232902755819},"o_float":{"float":0.7105751},"o_double":null,"o_bytes":{"bytes":"&ƒ°„Öoõ"},"o_string":{"string":"edvwh"},"o_enum":null,"o_date":{"int":-1495818076},"o_timemillis":{"int":896443484},"o_timemicros":null,"o_timestampmillis":{"long":5130994308022008350},"o_timestampmicros":null},{"r_boolean":false,"r_int":-1622921990,"r_long":-2182966787668685178,"r_float":0.54686946,"r_double":0.7213872723972556,"r_bytes":"À","r_string":"owtempse","r_enum":"ONE","r_date":353143101,"r_timemillis":-1314832260,"r_timemicros":-6522706398194980149,"r_timestampmillis":5080547990214880403,"r_timestampmicros":-8423984213494071836,"o_boolean":null,"o_int":null,"o_long":null,"o_float":{"float":0.926793},"o_double":null,"o_bytes":null,"o_string":null,"o_enum":null,"o_date":{"int":1681542047},"o_timemillis":null,"o_timemicros":{"long":-3013257272562668436},"o_timestampmillis":null,"o_timestampmicros":null}],"o_boolean":{"boolean":true},"o_int":null,"o_long":null,"o_float":{"float":0.4935726},"o_double":null,"o_bytes":null,"o_string":{"string":"sekujuitbtleod"},"o_enum":{"Level1_2_Enum2":"ZERO"},"o_date":{"int":1060157541},"o_timemillis":null,"o_timemicros":null,"o_timestampmillis":{"long":-4503091483883721461},"o_timestampmicros":{"long":-887856526433156664}},{"r_boolean":false,"r_int":-167429076,"r_long":-5119012960992098596,"r_float":0.56899834,"r_double":0.6189734444565985,"r_bytes":"\b","r_string":"uyrkx","r_array":[{"r_boolean":true,"r_int":1882201084,"r_long":2225748706855365435,"r_float":0.4933442,"r_double":0.4290434939022765,"r_bytes":"à㑇ùéªý?p$7","r_string":"ijwwlyuauqps","r_enum":"ZERO","r_date":-2010791251,"r_timemillis":-1239047027,"r_timemicros":1043871929544689580,"r_timestampmillis":5447068073289431124,"r_timestampmicros":-4273194358013998654,"o_boolean":null,"o_int":{"int":545049037},"o_long":{"long":-3831626307498986070},"o_float":{"float":0.075491786},"o_double":{"double":0.6780347434513231},"o_bytes":{"bytes":"Uì"},"o_string":null,"o_enum":{"Level2_2_Enum2":"ZERO"},"o_date":null,"o_timemillis":{"int":1228814470},"o_timemicros":{"long":7264648783132742893},"o_timestampmillis":null,"o_timestampmicros":null},{"r_boolean":false,"r_int":135359504,"r_long":-3770611099518202704,"r_float":0.9173602,"r_double":0.3345195383607562,"r_bytes":":|¨ìb­²","r_string":"alpxrccsjflv","r_enum":"TWO","r_date":399615657,"r_timemillis":-1351703829,"r_timemicros":-7698157381609781355,"r_timestampmillis":682155490912992632,"r_timestampmicros":-6859477265436560976,"o_boolean":null,"o_int":null,"o_long":{"long":-4664583418275279844},"o_float":null,"o_double":null,"o_bytes":{"bytes":"¡œ6[q\u0004€"},"o_string":{"string":"xbypxrwdwgaqayhpsvnsrmkmywqxxvkbrausdaxwujohtljcujsbtcvkneqxsrwcoxhxpiuncpoxedgqmvidlqeuglurkkrexrfjjyufgrantnxovwnpyjgvwvojgoqxkmymqep"},"o_enum":{"Level2_2_Enum2":"ZERO"},"o_date":{"int":404036659},"o_timemillis":null,"o_timemicros":null,"o_timestampmillis":null,"o_timestampmicros":{"long":-8240523097707302442}}],"o_boolean":null,"o_int":null,"o_long":null,"o_float":{"float":0.22189683},"o_double":null,"o_bytes":{"bytes":""},"o_string":null,"o_enum":null,"o_date":null,"o_timemillis":null,"o_timemicros":{"long":6249862683978377746},"o_timestampmillis":null,"o_timestampmicros":null},{"r_boolean":false,"r_int":-48266047,"r_long":298734785791125911,"r_float":0.68546784,"r_double":0.6317559215184179,"r_bytes":"½>]:f%\u0016”\u0011†ï\u0010Ó\r","r_string":"akurykft","r_array":[{"r_boolean":false,"r_int":-166731493,"r_long":-2045024702844624306,"r_float":0.9045131,"r_double":0.9613758308738084,"r_bytes":"ÀÍ[C²ˆÒ\u0001¤·‹Äⷙ","r_string":"vlisrbpgokqkcjluihjdydsfjwaekmygnafirnslmiuxshewcgixjccctgaulbwnictbkbktcrxgyuxwicluayfgetwfpnoaswgwvsglaminwuwnhvtvmpadlcmlyjjiwtjfxijhxfbiiacyemt","r_enum":"ZERO","r_date":-855661703,"r_timemillis":1144503428,"r_timemicros":6907984985815465704,"r_timestampmillis":908942282673931503,"r_timestampmicros":-7162287871905977976,"o_boolean":{"boolean":true},"o_int":{"int":-641016140},"o_long":null,"o_float":null,"o_double":null,"o_bytes":null,"o_string":{"string":"hd"},"o_enum":{"Level2_2_Enum2":"TWO"},"o_date":{"int":69917812},"o_timemillis":null,"o_timemicros":null,"o_timestampmillis":null,"o_timestampmicros":{"long":-8418632693853744463}},{"r_boolean":true,"r_int":950193479,"r_long":8485895182230463902,"r_float":0.73267895,"r_double":0.8902858556277554,"r_bytes":"0Ñ¥","r_string":"wl","r_enum":"TWO","r_date":2097250690,"r_timemillis":-100088988,"r_timemicros":3244437321096010920,"r_timestampmillis":-5192064936916017037,"r_timestampmicros":-1547596710547029390,"o_boolean":{"boolean":true},"o_int":null,"o_long":{"long":3874770444097968456},"o_float":{"float":0.90288323},"o_double":{"double":0.9148879272295868},"o_bytes":null,"o_string":null,"o_enum":null,"o_date":null,"o_timemillis":{"int":-2092259275},"o_timemicros":{"long":-284975093445736249},"o_timestampmillis":null,"o_timestampmicros":{"long":-5963067779394315209}}],"o_boolean":{"boolean":true},"o_int":null,"o_long":null,"o_float":null,"o_double":null,"o_bytes":null,"o_string":null,"o_enum":{"Level1_2_Enum2":"TWO"},"o_date":{"int":2131622529},"o_timemillis":null,"o_timemicros":{"long":804106387997066547},"o_timestampmillis":{"long":-2428804845199007740},"o_timestampmicros":{"long":6872670497270218952}}],"r_date":320538838,"r_timemillis":2093090149,"r_timemicros":1444955505051148268,"r_timestampmillis":8533175879666873228,"r_timestampmicros":8261509235025879516,"o_boolean":null,"o_int":null,"o_long":null,"o_float":{"float":0.08945161},"o_double":{"double":0.899744985917963},"o_bytes":{"bytes":"’"},"o_string":null,"o_enum":null,"o_date":null,"o_timemillis":null,"o_timemicros":null,"o_timestampmillis":null,"o_timestampmicros":{"long":7465932347963004517}} -{"r_boolean":true,"r_int":-1490971387,"r_long":-7287403416623893136,"r_float":0.14850998,"r_double":0.16992222124317768,"r_bytes":"\u0006\fJÉ(á\u0002´÷","r_string":"gmywjruy","r_record":{"r_boolean":false,"r_int":-1203451362,"r_long":-6969245293790461916,"r_float":0.94029325,"r_double":0.7982234200052944,"r_bytes":"&:”-ä£/¥*å¥I","r_string":"q","r_record":{"r_boolean":false,"r_int":-6477093,"r_long":-2910268325792579253,"r_float":0.96024877,"r_double":0.5030489487556913,"r_bytes":"C•‰","r_string":"ifpnlutiahf","r_enum":"ZERO","r_date":-450080533,"r_timemillis":-1423029266,"r_timemicros":583400439013272539,"r_timestampmillis":-3132757404943047928,"r_timestampmicros":4966843048069410213,"o_boolean":null,"o_int":{"int":551380857},"o_long":null,"o_float":null,"o_double":{"double":0.6804748336664261},"o_bytes":{"bytes":"…‡ÙXF“\u0002²û™¬=ÿùy\ršÄê\u0004\u0003¡ien\u0018HÇ7ëI|_ë\u0006‘s>ç«\f\u000FÌ焴UJFn­\fp”Ý6Óz‡Oi(\u0010"},"o_string":{"string":"uyum"},"o_enum":null,"o_date":null,"o_timemillis":{"int":1398492350},"o_timemicros":{"long":-7588289549035213085},"o_timestampmillis":{"long":5076356430672126869},"o_timestampmicros":{"long":-1170338869096882583}},"r_enum":"ONE","r_date":-32654841,"r_timemillis":439736346,"r_timemicros":6427404374564888875,"r_timestampmillis":8399703452952705158,"r_timestampmicros":6847695155884673853,"r_array":[{"r_boolean":true,"r_int":-1952961205,"r_long":-6249272631313572592,"r_float":0.3084311,"r_double":0.00226937482048728,"r_bytes":"߁\u0006àN×\u0018\u0000\u001E»\u001FN\u0006\f","r_string":"ktjal","r_enum":"TWO","o_boolean":null,"o_int":null,"o_long":{"long":415978093608541787},"o_float":null,"o_double":{"double":0.44981041492228546},"o_bytes":{"bytes":"㤩Y¬/[`àãùo"},"o_string":{"string":"wljiyay"},"o_enum":{"Level2_1__2_Enum2":"ONE"},"o_date":{"int":-538981655},"o_timemillis":{"int":-1698603626},"o_timemicros":null,"o_timestampmillis":{"long":5099283973656851214},"o_timestampmicros":{"long":8619462316202726414}},{"r_boolean":false,"r_int":1534096559,"r_long":-4520931029756534862,"r_float":0.2986455,"r_double":0.5028857426334441,"r_bytes":"¾cÏÎÁ\rÁÍy\u0018„/ÝÞ\u001D","r_string":"yltotrhyuefbkih","r_enum":"ONE","o_boolean":{"boolean":false},"o_int":{"int":940560144},"o_long":null,"o_float":null,"o_double":{"double":0.2681080423670801},"o_bytes":{"bytes":"’]\u000B,l\u0012”Ks"},"o_string":null,"o_enum":{"Level2_1__2_Enum2":"ZERO"},"o_date":null,"o_timemillis":null,"o_timemicros":null,"o_timestampmillis":{"long":3944844882814452842},"o_timestampmicros":null}]},"r_enum":"TWO","r_array":[{"r_boolean":false,"r_int":1745018175,"r_long":5476886862508254543,"r_float":0.24964494,"r_double":0.11416754317236566,"r_bytes":"¿O&‚å\"\n","r_string":"vndsnybmnma","r_array":[{"r_boolean":true,"r_int":-296452249,"r_long":-4833716808852034402,"r_float":0.3342929,"r_double":0.45692517836696844,"r_bytes":"Ù\u001E­ÕI5ñ´\u0004õ\u0016Ÿ\u0013‰Rµ\"åUþ’·‘î\u0004\u000E","r_string":"","r_enum":"ZERO","r_date":-345767535,"r_timemillis":1003666788,"r_timemicros":-8363480775724616968,"r_timestampmillis":8504334583716614917,"r_timestampmicros":-1997701432110616759,"o_boolean":null,"o_int":{"int":-1102017087},"o_long":{"long":-6832254631897914143},"o_float":null,"o_double":null,"o_bytes":null,"o_string":{"string":"lefpbyfuxjlc"},"o_enum":null,"o_date":null,"o_timemillis":null,"o_timemicros":{"long":3371004998981220298},"o_timestampmillis":null,"o_timestampmicros":null},{"r_boolean":false,"r_int":542565049,"r_long":7365146697869035323,"r_float":0.18966609,"r_double":0.7005066735929893,"r_bytes":"±Žp\u0017M","r_string":"mpaddeptyfbmujw","r_enum":"ONE","r_date":-206091812,"r_timemillis":-7469479,"r_timemicros":5167066684837423368,"r_timestampmillis":-8294510710063434250,"r_timestampmicros":7714647581908065040,"o_boolean":null,"o_int":{"int":922422710},"o_long":{"long":6189691050916253553},"o_float":null,"o_double":null,"o_bytes":{"bytes":";’•­v¹Ú"},"o_string":{"string":"fgsjsmcha"},"o_enum":{"Level2_2_Enum2":"ZERO"},"o_date":null,"o_timemillis":{"int":912936559},"o_timemicros":{"long":-2435852456032702895},"o_timestampmillis":{"long":-2078641207949100187},"o_timestampmicros":null}],"o_boolean":null,"o_int":{"int":-1376340658},"o_long":{"long":-7708015067590987614},"o_float":{"float":0.77681786},"o_double":null,"o_bytes":null,"o_string":{"string":"yktnhfnwxqyydse"},"o_enum":null,"o_date":{"int":293459911},"o_timemillis":{"int":-1047397284},"o_timemicros":{"long":-2471063907209305072},"o_timestampmillis":{"long":-1389062250968484574},"o_timestampmicros":null}],"r_date":1498987537,"r_timemillis":956297550,"r_timemicros":2900658877879578615,"r_timestampmillis":-2126241277064313728,"r_timestampmicros":778626569749811997,"o_boolean":null,"o_int":null,"o_long":null,"o_float":null,"o_double":{"double":0.8125813270690205},"o_bytes":null,"o_string":null,"o_enum":null,"o_date":null,"o_timemillis":null,"o_timemicros":{"long":2823702159985055578},"o_timestampmillis":{"long":1838924845887245778},"o_timestampmicros":{"long":-3086791486097347721}} -{"r_boolean":true,"r_int":-1849179074,"r_long":-6452437650610150526,"r_float":0.53833663,"r_double":0.7208606703702198,"r_bytes":"","r_string":"nxugodjnmmsfhwr","r_record":{"r_boolean":false,"r_int":916356343,"r_long":-6473816101446525492,"r_float":0.37145513,"r_double":0.634290435267871,"r_bytes":"Np‹^ò¬","r_string":"lfwedqonmxl","r_record":{"r_boolean":false,"r_int":99606299,"r_long":4543907049103300712,"r_float":0.4950353,"r_double":0.9661425620146433,"r_bytes":"3hu¦\"§\t1æÁ\u0007lT\u001BS\n’\u00185æ\nDDäm\u0017ž —\u0003…G¼k:rsêSk¨gëçG#ï_\u0003[½ÀÞ\u001DU¬G\u001B\u000FRºñ’J\u00156ÁúÃÔ壙#\u0010›¨igŠ>‡tɠς‚F͐éf3?Çñ,TÖ*áÃKÎ\u0012¿Tjî\u001Eß\u0019°xþ\\¢VWx¯ž\\ü\u0005®\u0005&b3ðrL\u0003ò\u001BÁºí²±æH\u000FžÞ¡¸8ôÔ÷6­«/RTm,Ø\fîYnLáv¹™‚@±Õ/ \u001E\u0006´\u001FÕáO\u0014Yh¯fì0)\bù»\"ᨁóNÅh4úMÏAB]ì6\u001B¾‘Íê\\\u0006Ð#|X‰\u0018ž\u0016Ý5","r_string":"ewltf","r_enum":"TWO","r_date":-607024511,"r_timemillis":1687296030,"r_timemicros":-7166590801526581585,"r_timestampmillis":7203328523679972129,"r_timestampmicros":6843940494612604701,"o_boolean":{"boolean":true},"o_int":{"int":-1370044726},"o_long":{"long":7133853922959895102},"o_float":null,"o_double":{"double":0.35203507227704434},"o_bytes":null,"o_string":{"string":"pbddasvcsvpceka"},"o_enum":{"Level2_1__1_Enum2":"ONE"},"o_date":null,"o_timemillis":{"int":-1285851861},"o_timemicros":null,"o_timestampmillis":null,"o_timestampmicros":null},"r_enum":"TWO","r_date":-1108447173,"r_timemillis":-687866151,"r_timemicros":8789704214824691721,"r_timestampmillis":4414690289705210363,"r_timestampmicros":3817081484149137572,"r_array":[]},"r_enum":"ZERO","r_array":[{"r_boolean":true,"r_int":-144634939,"r_long":-1681524090591814342,"r_float":0.2075761,"r_double":0.8153910816896122,"r_bytes":"ÞFJPƒö˜Ù\u0014","r_string":"thaqcsea","r_array":[{"r_boolean":true,"r_int":108929752,"r_long":-5744135435010678782,"r_float":0.54009104,"r_double":0.5428676625007298,"r_bytes":"È\u001Cð“\u0015“ZŒU/ÄT\u001D•","r_string":"bgndtcytwgh","r_enum":"ZERO","r_date":-1951319512,"r_timemillis":-1467484013,"r_timemicros":-8016652274850509923,"r_timestampmillis":-4653571473239898873,"r_timestampmicros":524270191350850762,"o_boolean":null,"o_int":null,"o_long":null,"o_float":null,"o_double":null,"o_bytes":null,"o_string":null,"o_enum":null,"o_date":null,"o_timemillis":null,"o_timemicros":{"long":692947391912727137},"o_timestampmillis":{"long":-3328161514428517385},"o_timestampmicros":{"long":-8298734484394482809}}],"o_boolean":null,"o_int":null,"o_long":{"long":-2748247596108536562},"o_float":null,"o_double":null,"o_bytes":null,"o_string":null,"o_enum":{"Level1_2_Enum2":"ZERO"},"o_date":null,"o_timemillis":{"int":1020914420},"o_timemicros":null,"o_timestampmillis":null,"o_timestampmicros":{"long":-8903569066120373599}},{"r_boolean":false,"r_int":-946798166,"r_long":-8582853393450683396,"r_float":0.20226091,"r_double":0.543387671502894,"r_bytes":"ˆ-1Mc_Iä|ëeu sC","r_string":"bktkofk","r_array":[{"r_boolean":false,"r_int":675019901,"r_long":5617644065078915528,"r_float":0.25629443,"r_double":0.7627485553784609,"r_bytes":"z÷ªc","r_string":"okoej","r_enum":"ONE","r_date":1291460986,"r_timemillis":1080287045,"r_timemicros":7216746739766504833,"r_timestampmillis":-3261713360171679000,"r_timestampmicros":9029193435256133978,"o_boolean":null,"o_int":null,"o_long":null,"o_float":null,"o_double":null,"o_bytes":{"bytes":"LØ"},"o_string":null,"o_enum":null,"o_date":null,"o_timemillis":{"int":-91575090},"o_timemicros":null,"o_timestampmillis":{"long":-3514537489774646751},"o_timestampmicros":null}],"o_boolean":null,"o_int":{"int":1699214063},"o_long":null,"o_float":null,"o_double":null,"o_bytes":null,"o_string":{"string":"vkmvwrtmbjmpxkgoqsywhpslkfhbxuvfkvqtjayvklicikluvbcpdwlbsfoehvtcgvlqqckbvpkmpdbmnxrjhvrlisuliwvldrojhswagqgmdiukevrqxamydejqyqigctotyonkrflxdhicoasxgfxtcyqws"},"o_enum":null,"o_date":{"int":-1836887174},"o_timemillis":{"int":-204443694},"o_timemicros":null,"o_timestampmillis":null,"o_timestampmicros":null},{"r_boolean":true,"r_int":1847384981,"r_long":-2264973046416290887,"r_float":0.73035735,"r_double":0.9293090767147077,"r_bytes":"\u001A!/\u0017pª","r_string":"m","r_array":[],"o_boolean":{"boolean":true},"o_int":{"int":-2127867010},"o_long":{"long":8350107734682134256},"o_float":{"float":0.8998427},"o_double":null,"o_bytes":null,"o_string":{"string":"xxu"},"o_enum":{"Level1_2_Enum2":"ZERO"},"o_date":null,"o_timemillis":{"int":-1636776984},"o_timemicros":{"long":-6705704069518231209},"o_timestampmillis":{"long":2137348687419877935},"o_timestampmicros":null},{"r_boolean":true,"r_int":1033453866,"r_long":-6297489381482324387,"r_float":0.44186842,"r_double":0.432489344343189,"r_bytes":"À³\u001C\u0019Ï£ «Ë:˜","r_string":"onqonqvuduvb","r_array":[],"o_boolean":null,"o_int":{"int":-1382013047},"o_long":{"long":-6906771075940627007},"o_float":null,"o_double":{"double":0.6960566139490982},"o_bytes":null,"o_string":{"string":""},"o_enum":{"Level1_2_Enum2":"TWO"},"o_date":null,"o_timemillis":null,"o_timemicros":{"long":-5109244789548114371},"o_timestampmillis":null,"o_timestampmicros":null},{"r_boolean":false,"r_int":-939683282,"r_long":3943365778053054405,"r_float":0.094567716,"r_double":0.3697263255543992,"r_bytes":"±","r_string":"bd","r_array":[],"o_boolean":{"boolean":true},"o_int":null,"o_long":null,"o_float":{"float":0.3937245},"o_double":null,"o_bytes":null,"o_string":null,"o_enum":{"Level1_2_Enum2":"TWO"},"o_date":null,"o_timemillis":null,"o_timemicros":null,"o_timestampmillis":{"long":1649138333943323239},"o_timestampmicros":null}],"r_date":1531893330,"r_timemillis":1495750383,"r_timemicros":-8674326037402860349,"r_timestampmillis":6360016550781678601,"r_timestampmicros":-2354231872965016350,"o_boolean":{"boolean":false},"o_int":null,"o_long":{"long":36380453954425157},"o_float":{"float":0.6147424},"o_double":{"double":0.4810123000842549},"o_bytes":{"bytes":"‡\tÖt8mͽˆ»‘û\u0017"},"o_string":{"string":"twmaxbpybb"},"o_enum":{"Enum2":"ONE"},"o_date":null,"o_timemillis":null,"o_timemicros":{"long":-4228113830984321782},"o_timestampmillis":{"long":-406801306277208071},"o_timestampmicros":{"long":-7339798598812708615}} -{"r_boolean":true,"r_int":-338970646,"r_long":3457136566187985483,"r_float":0.93574786,"r_double":0.7296882589313796,"r_bytes":"17g€Æ¢Ür˜}'9","r_string":"uwpmgchbw","r_record":{"r_boolean":false,"r_int":-2024611157,"r_long":-3439426533313404592,"r_float":0.5926126,"r_double":0.8932663835675492,"r_bytes":"š\u001Es&cKJ","r_string":"qsexbn","r_record":{"r_boolean":true,"r_int":-564417156,"r_long":8677475586235592664,"r_float":0.5851202,"r_double":0.14704494451166994,"r_bytes":"y","r_string":"kwukuhkfs","r_enum":"ONE","r_date":1041827448,"r_timemillis":823792,"r_timemicros":4535972944053469162,"r_timestampmillis":-2551730461880782726,"r_timestampmicros":-7699455863772184602,"o_boolean":null,"o_int":null,"o_long":null,"o_float":{"float":0.23784423},"o_double":{"double":0.7851223413381686},"o_bytes":null,"o_string":{"string":"ebd"},"o_enum":{"Level2_1__1_Enum2":"ZERO"},"o_date":{"int":-1155214223},"o_timemillis":{"int":731762617},"o_timemicros":{"long":-6899604807804527302},"o_timestampmillis":null,"o_timestampmicros":{"long":-5698249827152301134}},"r_enum":"TWO","r_date":-1124641202,"r_timemillis":416912091,"r_timemicros":2154633448453673703,"r_timestampmillis":-9117987436022539249,"r_timestampmicros":6442786122925297915,"r_array":[{"r_boolean":true,"r_int":1528091097,"r_long":3880957734631191300,"r_float":0.43025702,"r_double":0.7345493982355723,"r_bytes":"«ì\t¹£,&r«ãÊ","r_string":"waxqtwdalapb","r_enum":"TWO","o_boolean":null,"o_int":{"int":603671575},"o_long":{"long":1805408684228322981},"o_float":{"float":0.32072407},"o_double":{"double":0.3928209086853922},"o_bytes":null,"o_string":{"string":"gqboasawiumi"},"o_enum":{"Level2_1__2_Enum2":"ZERO"},"o_date":{"int":484633120},"o_timemillis":null,"o_timemicros":{"long":3905304044815039126},"o_timestampmillis":null,"o_timestampmicros":null},{"r_boolean":true,"r_int":-236398436,"r_long":7513828032282945949,"r_float":0.11717743,"r_double":0.0297249256103701,"r_bytes":"´5è=","r_string":"","r_enum":"ONE","o_boolean":{"boolean":true},"o_int":{"int":-900030642},"o_long":null,"o_float":{"float":0.8071794},"o_double":{"double":0.7573264248693721},"o_bytes":null,"o_string":{"string":"a"},"o_enum":{"Level2_1__2_Enum2":"ONE"},"o_date":{"int":-964016574},"o_timemillis":{"int":659645080},"o_timemicros":{"long":8201788549772831976},"o_timestampmillis":null,"o_timestampmicros":null},{"r_boolean":false,"r_int":-598197828,"r_long":2833383867576169025,"r_float":0.8015826,"r_double":0.28853716210687697,"r_bytes":"`þ\u000B1ñ8ãÈo³Þp\nÃ","r_string":"mxlnvamwegdt","r_enum":"ONE","o_boolean":null,"o_int":null,"o_long":{"long":8109731213259481900},"o_float":{"float":0.1350624},"o_double":null,"o_bytes":null,"o_string":{"string":"rxsflnxb"},"o_enum":null,"o_date":{"int":-94044500},"o_timemillis":null,"o_timemicros":{"long":903925040102877664},"o_timestampmillis":null,"o_timestampmicros":null},{"r_boolean":false,"r_int":1004043340,"r_long":1305724585234701639,"r_float":0.21924269,"r_double":0.971894791600529,"r_bytes":"–ý","r_string":"cdlcijekdh","r_enum":"ONE","o_boolean":{"boolean":true},"o_int":null,"o_long":null,"o_float":null,"o_double":{"double":0.9762684015903085},"o_bytes":{"bytes":""},"o_string":null,"o_enum":null,"o_date":null,"o_timemillis":{"int":-325539957},"o_timemicros":{"long":-1182472330133723643},"o_timestampmillis":null,"o_timestampmicros":{"long":2710675761045943441}}]},"r_enum":"ONE","r_array":[{"r_boolean":false,"r_int":-1581797109,"r_long":-4675962393280373690,"r_float":0.082912326,"r_double":0.5321314430430849,"r_bytes":"áŒ","r_string":"fdejrxv","r_array":[{"r_boolean":false,"r_int":1484173312,"r_long":2914194195992349858,"r_float":0.61821026,"r_double":0.5098788830126197,"r_bytes":"\u0012zC…æñ]/½sn(š","r_string":"hnwolyh","r_enum":"ZERO","r_date":126728440,"r_timemillis":1278439892,"r_timemicros":-4870073265223525454,"r_timestampmillis":-637972350367404570,"r_timestampmicros":-4831969245008846139,"o_boolean":null,"o_int":null,"o_long":{"long":3082706881003235622},"o_float":null,"o_double":{"double":0.5661071230985132},"o_bytes":{"bytes":"‚@þô›‚\f™"},"o_string":null,"o_enum":null,"o_date":null,"o_timemillis":null,"o_timemicros":{"long":8188079572087539084},"o_timestampmillis":{"long":4872519380469697239},"o_timestampmicros":null},{"r_boolean":true,"r_int":408178922,"r_long":-2553940052255840924,"r_float":0.45084214,"r_double":0.4300752368946348,"r_bytes":"\u0012\u0007t¸Z0\u0000","r_string":"ikbdmoptrcvi","r_enum":"ZERO","r_date":580493371,"r_timemillis":-354572881,"r_timemicros":8662636583872479693,"r_timestampmillis":-5472184988401880466,"r_timestampmicros":6848800174850582875,"o_boolean":null,"o_int":{"int":-2115096474},"o_long":null,"o_float":null,"o_double":null,"o_bytes":null,"o_string":{"string":"xtxpdigungleg"},"o_enum":{"Level2_2_Enum2":"ZERO"},"o_date":null,"o_timemillis":null,"o_timemicros":{"long":2860569426797159923},"o_timestampmillis":{"long":-6819518027349617026},"o_timestampmicros":null}],"o_boolean":null,"o_int":null,"o_long":null,"o_float":{"float":0.023663402},"o_double":null,"o_bytes":null,"o_string":null,"o_enum":null,"o_date":{"int":1155183233},"o_timemillis":{"int":1401367385},"o_timemicros":{"long":-8117751472846129453},"o_timestampmillis":{"long":-6450053905246183659},"o_timestampmicros":null},{"r_boolean":false,"r_int":580587350,"r_long":9000154261447108085,"r_float":0.0033067465,"r_double":0.8842305755286984,"r_bytes":"X…Ç:ˆ¾\u001F\u0007B'´°ÖîÏ|Ï\u0012V€\u0017=™7Ô \u0003®t%\u0002Ÿ=‹šÓCeƒÎ\\¿`ûÚÃa”û§ûkçqE\u0002èòÍÞùýUhÔáyËݓj}³¼mÁôåYé\u000BŒ\u0012(´\nʧËk¹9ð•å\u000E¢\u001B\u000B³Ÿ”KNô©Ã.£ß\u0000Ù\u001E\u0013 ¯inVÌVÏ\"\\.JÃô¨\u000F D6h\u001A/\u0007zë'%@°A6K§ÁÈ\u0014þÜ\u000EÃ|\u0014‰ŒžYLñh~fFËX¶\u0005dÏn","r_string":"luphy","r_array":[{"r_boolean":true,"r_int":941298538,"r_long":-339172660394618073,"r_float":0.97381634,"r_double":0.9243110329005219,"r_bytes":"ܵL\u0002yC¼v…","r_string":"gmmyo","r_enum":"ZERO","r_date":-33581696,"r_timemillis":-1361638386,"r_timemicros":4877812667197154593,"r_timestampmillis":2667136326892313479,"r_timestampmicros":7354294827729549741,"o_boolean":null,"o_int":{"int":-2090574179},"o_long":null,"o_float":null,"o_double":null,"o_bytes":null,"o_string":{"string":"jknohkwrqelc"},"o_enum":null,"o_date":null,"o_timemillis":{"int":-144608643},"o_timemicros":{"long":7979388930917559517},"o_timestampmillis":{"long":7372545904909748123},"o_timestampmicros":null}],"o_boolean":null,"o_int":null,"o_long":null,"o_float":null,"o_double":{"double":0.9146956996114537},"o_bytes":{"bytes":"ð]èé\"ýZZ5"},"o_string":{"string":"lhmjmqloffoce"},"o_enum":null,"o_date":null,"o_timemillis":null,"o_timemicros":{"long":2112909448923643635},"o_timestampmillis":null,"o_timestampmicros":{"long":-3170711263167391270}},{"r_boolean":false,"r_int":1494903686,"r_long":-2454463716771432820,"r_float":0.42961222,"r_double":0.29285759117364196,"r_bytes":"íÐVx§I","r_string":"mvtgajatfvexodj","r_array":[{"r_boolean":false,"r_int":-1421515266,"r_long":-24909440573543839,"r_float":0.80780524,"r_double":0.3905505423993031,"r_bytes":"³ÿå","r_string":"","r_enum":"ONE","r_date":-23892993,"r_timemillis":117477320,"r_timemicros":8617766239469793585,"r_timestampmillis":7211685028841197108,"r_timestampmicros":-5830178950961118201,"o_boolean":null,"o_int":{"int":1994806727},"o_long":null,"o_float":{"float":0.35900962},"o_double":{"double":0.0016889859956585873},"o_bytes":null,"o_string":{"string":"wo"},"o_enum":{"Level2_2_Enum2":"TWO"},"o_date":null,"o_timemillis":{"int":1602407712},"o_timemicros":null,"o_timestampmillis":{"long":-8902253468984505664},"o_timestampmicros":{"long":-3687567214995269694}}],"o_boolean":null,"o_int":null,"o_long":null,"o_float":{"float":0.92516446},"o_double":null,"o_bytes":null,"o_string":null,"o_enum":{"Level1_2_Enum2":"ONE"},"o_date":null,"o_timemillis":null,"o_timemicros":null,"o_timestampmillis":{"long":-5466245190487291084},"o_timestampmicros":{"long":-1883881747598393698}},{"r_boolean":true,"r_int":1315311833,"r_long":7833127839021049428,"r_float":0.68689334,"r_double":0.07135836883275404,"r_bytes":"†7rÎ¥8+\u0014","r_string":"eqsgbnrk","r_array":[],"o_boolean":{"boolean":true},"o_int":null,"o_long":null,"o_float":{"float":0.6007835},"o_double":{"double":0.8342568084868681},"o_bytes":{"bytes":"<\u0003\\Å|£è\u0010&§Ÿ;Ÿú+küî\u001Aœ\u00174ð&Ö\u0012±,\\aÍeaZ«;\u0013v\u000Btu®","r_string":"kjfinr","r_enum":"TWO","r_date":-567797899,"r_timemillis":-835755346,"r_timemicros":5180289472678927607,"r_timestampmillis":3779642562208587412,"r_timestampmicros":3431291075655924207,"o_boolean":{"boolean":false},"o_int":{"int":726902684},"o_long":{"long":-7195095123563507197},"o_float":{"float":0.62543917},"o_double":null,"o_bytes":{"bytes":"uT\u0016hj\u0010»eÓ"},"o_string":{"string":"aq"},"o_enum":null,"o_date":{"int":-812855479},"o_timemillis":null,"o_timemicros":null,"o_timestampmillis":null,"o_timestampmicros":null},{"r_boolean":true,"r_int":-631617825,"r_long":-962123374929630073,"r_float":0.7706929,"r_double":0.8651714394168797,"r_bytes":",Ä","r_string":"bcrjbwtlfdwaoo","r_enum":"ZERO","r_date":1276320956,"r_timemillis":537557898,"r_timemicros":-6618253832996800195,"r_timestampmillis":-6261592225336371194,"r_timestampmicros":1932586007511756805,"o_boolean":null,"o_int":{"int":-2119747138},"o_long":null,"o_float":null,"o_double":null,"o_bytes":{"bytes":"2µ³÷•"},"o_string":null,"o_enum":{"Level2_2_Enum2":"TWO"},"o_date":null,"o_timemillis":{"int":-224500084},"o_timemicros":null,"o_timestampmillis":null,"o_timestampmicros":null}],"o_boolean":null,"o_int":null,"o_long":{"long":-5838794159116572818},"o_float":null,"o_double":{"double":0.4084525770165621},"o_bytes":null,"o_string":{"string":"eobujm"},"o_enum":{"Level1_2_Enum2":"ONE"},"o_date":{"int":-525027323},"o_timemillis":{"int":-2105453138},"o_timemicros":null,"o_timestampmillis":null,"o_timestampmicros":{"long":-5928903834883703424}}],"r_date":1500031495,"r_timemillis":2142850952,"r_timemicros":-2356438572711845883,"r_timestampmillis":-5471167862120597171,"r_timestampmicros":-5695943282239114832,"o_boolean":{"boolean":false},"o_int":null,"o_long":null,"o_float":null,"o_double":null,"o_bytes":null,"o_string":{"string":"cfqpgskcbav"},"o_enum":null,"o_date":{"int":374528952},"o_timemillis":null,"o_timemicros":{"long":8865506848510651492},"o_timestampmillis":null,"o_timestampmicros":null} -{"r_boolean":false,"r_int":-297854472,"r_long":1851492441861926241,"r_float":0.14001769,"r_double":0.7568992281282364,"r_bytes":"ù‚\u0017Ñ","r_string":"lhglmjeer","r_record":{"r_boolean":false,"r_int":-1058780095,"r_long":-5890177814368036329,"r_float":0.7556409,"r_double":0.7465898596904413,"r_bytes":"^","r_string":"vqfkkyixsyii","r_record":{"r_boolean":true,"r_int":-313525809,"r_long":-3889126108589411408,"r_float":0.46157515,"r_double":0.5844731369494387,"r_bytes":"Zð3OÄ߉Äü²|•Ø3","r_string":"j","r_enum":"ZERO","r_date":-1776589502,"r_timemillis":-213484101,"r_timemicros":7194106763650437272,"r_timestampmillis":5703512504115259,"r_timestampmicros":7186753347456084859,"o_boolean":{"boolean":false},"o_int":{"int":-976845640},"o_long":{"long":8483783354639163782},"o_float":null,"o_double":null,"o_bytes":{"bytes":"<\u0016)?(àO–\u0014\"]'"},"o_string":{"string":"rbwkxxqufijac"},"o_enum":null,"o_date":{"int":1163045615},"o_timemillis":null,"o_timemicros":null,"o_timestampmillis":{"long":1246425351763872522},"o_timestampmicros":null},"r_enum":"TWO","r_date":202500167,"r_timemillis":-252477697,"r_timemicros":1380044699201950697,"r_timestampmillis":-7764616528317667916,"r_timestampmicros":6630579872924675406,"r_array":[]},"r_enum":"TWO","r_array":[{"r_boolean":false,"r_int":-1353135183,"r_long":-9016258655649605133,"r_float":0.46441078,"r_double":0.8319413508335837,"r_bytes":"á?\u0018áÒ","r_string":"lxt","r_array":[{"r_boolean":false,"r_int":-1082385047,"r_long":4266334265637751367,"r_float":0.56283194,"r_double":0.026751295522844942,"r_bytes":"·Ùq¡\u000FE´uÐè|>Iõ0Ó^‚MA\u001FEè5ŒFÖ\u00167ÃZôÝ4\u0002FÅÛrŠvke–Ô՚ø%oF‡ùêvhÒïZ\u0012lD~w\u0006ª/ˆÂâ«sÀC®","r_string":"daauvoiqtnbto","r_enum":"ONE","r_date":-1807834194,"r_timemillis":-423772513,"r_timemicros":1087564855028942721,"r_timestampmillis":-2745522947234064605,"r_timestampmicros":-3687451278490130961,"o_boolean":null,"o_int":null,"o_long":{"long":2783620621689536017},"o_float":null,"o_double":null,"o_bytes":null,"o_string":null,"o_enum":{"Level2_2_Enum2":"ONE"},"o_date":{"int":-1712751615},"o_timemillis":null,"o_timemicros":{"long":8264198448087610635},"o_timestampmillis":null,"o_timestampmicros":null},{"r_boolean":true,"r_int":931650832,"r_long":-2600987037000259882,"r_float":0.12889695,"r_double":0.5167256582845126,"r_bytes":"ƒz) ç","r_string":"b","r_enum":"ZERO","r_date":229401052,"r_timemillis":-382197024,"r_timemicros":-6610874637191182197,"r_timestampmillis":-7961154130545764629,"r_timestampmicros":9216794982611855760,"o_boolean":{"boolean":true},"o_int":{"int":841609575},"o_long":null,"o_float":{"float":0.62558824},"o_double":{"double":0.9527113660027371},"o_bytes":{"bytes":"Œ\u0018µ\u0013ž"},"o_string":null,"o_enum":null,"o_date":null,"o_timemillis":{"int":1386706170},"o_timemicros":null,"o_timestampmillis":null,"o_timestampmicros":null},{"r_boolean":true,"r_int":477820408,"r_long":-1864735197458125415,"r_float":0.61213875,"r_double":0.6537259106170717,"r_bytes":"D>B0","r_string":"yvjvfsxjmpexl","r_enum":"ONE","r_date":1114654113,"r_timemillis":596368909,"r_timemicros":-7503523181488010802,"r_timestampmillis":-5462267525800068891,"r_timestampmicros":6811584970661127404,"o_boolean":null,"o_int":{"int":505877131},"o_long":null,"o_float":null,"o_double":null,"o_bytes":{"bytes":"\u0011™\u0007¾/"},"o_string":null,"o_enum":{"Level2_2_Enum2":"ZERO"},"o_date":null,"o_timemillis":{"int":-856662664},"o_timemicros":{"long":6833904648960456321},"o_timestampmillis":null,"o_timestampmicros":{"long":-2410964770610757084}}],"o_boolean":null,"o_int":null,"o_long":null,"o_float":null,"o_double":{"double":0.050184856616958706},"o_bytes":null,"o_string":null,"o_enum":{"Level1_2_Enum2":"ZERO"},"o_date":null,"o_timemillis":{"int":-738950238},"o_timemicros":{"long":7120573248270376440},"o_timestampmillis":{"long":-1798328310374029251},"o_timestampmicros":null},{"r_boolean":true,"r_int":-48285641,"r_long":-722942236376596203,"r_float":0.15884155,"r_double":0.2356925034026931,"r_bytes":":Æ6Ü/","r_string":"nxjqjmidmvpelso","r_array":[],"o_boolean":{"boolean":true},"o_int":{"int":448726925},"o_long":null,"o_float":null,"o_double":{"double":0.3968636101408344},"o_bytes":null,"o_string":null,"o_enum":{"Level1_2_Enum2":"ZERO"},"o_date":{"int":2075828540},"o_timemillis":null,"o_timemicros":null,"o_timestampmillis":{"long":-1505416148097364519},"o_timestampmicros":{"long":-9162090744967796777}},{"r_boolean":true,"r_int":-731431270,"r_long":2431647534389594217,"r_float":0.002672255,"r_double":0.3615925336110114,"r_bytes":"Y¬®%TÇØdu8¹šñs†","r_string":"jtitomhxjd","r_array":[{"r_boolean":false,"r_int":-1160094635,"r_long":8688515973577307183,"r_float":0.8825179,"r_double":0.16900793836906014,"r_bytes":"A+ÉÍW\u001BœcïŽc","r_string":"iuchbfccm","r_enum":"TWO","r_date":-2097266395,"r_timemillis":-1745121663,"r_timemicros":-43045425966076369,"r_timestampmillis":-3460690810236610474,"r_timestampmicros":7455165924921602931,"o_boolean":null,"o_int":{"int":-1727004872},"o_long":null,"o_float":null,"o_double":{"double":0.5950262552884367},"o_bytes":null,"o_string":null,"o_enum":{"Level2_2_Enum2":"ONE"},"o_date":{"int":1360196433},"o_timemillis":{"int":-1351036422},"o_timemicros":null,"o_timestampmillis":{"long":-7262942811913951000},"o_timestampmicros":null},{"r_boolean":false,"r_int":665786067,"r_long":-5723157066978054779,"r_float":0.098760486,"r_double":0.18815268209253067,"r_bytes":"è°9","r_string":"e","r_enum":"TWO","r_date":315714512,"r_timemillis":1417539350,"r_timemicros":-8282541579527215981,"r_timestampmillis":2992898220271006063,"r_timestampmicros":-8133627960364746022,"o_boolean":{"boolean":false},"o_int":null,"o_long":{"long":8890036996056274566},"o_float":{"float":0.116268694},"o_double":null,"o_bytes":null,"o_string":{"string":"owfbkusyqusn"},"o_enum":{"Level2_2_Enum2":"ZERO"},"o_date":null,"o_timemillis":{"int":1511431382},"o_timemicros":{"long":5916867878857457000},"o_timestampmillis":null,"o_timestampmicros":null}],"o_boolean":{"boolean":false},"o_int":null,"o_long":null,"o_float":{"float":0.89856374},"o_double":{"double":0.21457397297117076},"o_bytes":null,"o_string":null,"o_enum":null,"o_date":{"int":-145573013},"o_timemillis":null,"o_timemicros":null,"o_timestampmillis":{"long":-757488190660866058},"o_timestampmicros":{"long":-617653831286714271}}],"r_date":1391126623,"r_timemillis":215364603,"r_timemicros":-2614694355701298198,"r_timestampmillis":-7971242864666233659,"r_timestampmicros":3397323378603192284,"o_boolean":{"boolean":false},"o_int":null,"o_long":{"long":-6160609578607701847},"o_float":{"float":0.49667716},"o_double":null,"o_bytes":{"bytes":"ÆHšÞ%Ÿö\\&ߝ\u0012.Ó\u0007XAc˜V\u0017g,\u0012ˆ\u001D\n{"},"o_string":null,"o_enum":null,"o_date":null,"o_timemillis":null,"o_timemicros":{"long":2659796537420827185},"o_timestampmillis":null,"o_timestampmicros":null} -{"r_boolean":false,"r_int":-1045238619,"r_long":378910005495848481,"r_float":0.7222944,"r_double":0.6250623395269774,"r_bytes":"'H}I¿‘¨v¥5","r_string":"qxvghhkohy","r_record":{"r_boolean":true,"r_int":2136586341,"r_long":-3212550216678932193,"r_float":0.6042162,"r_double":0.8232536569369201,"r_bytes":"!¹Å§¢õ&š…ZŒ","r_string":"fgexqvdiprspsqu","r_record":{"r_boolean":false,"r_int":222365816,"r_long":-5589789304252937606,"r_float":0.39206743,"r_double":0.6968483528429485,"r_bytes":"QGl‚§éæ+!§©","r_string":"qwqnvgfjsukt","r_enum":"TWO","r_date":-632219635,"r_timemillis":-280436367,"r_timemicros":-58828130352049346,"r_timestampmillis":-6611498573480848010,"r_timestampmicros":-2026962617982503371,"o_boolean":null,"o_int":{"int":-188889042},"o_long":null,"o_float":{"float":0.89096344},"o_double":null,"o_bytes":null,"o_string":{"string":"llghtxkorocv"},"o_enum":{"Level2_1__1_Enum2":"ONE"},"o_date":null,"o_timemillis":null,"o_timemicros":{"long":-1968342976504845225},"o_timestampmillis":{"long":-6212184536553023026},"o_timestampmicros":{"long":8509242160094181243}},"r_enum":"ONE","r_date":-1621157749,"r_timemillis":-1251421408,"r_timemicros":-608037022449285223,"r_timestampmillis":7406891236398928889,"r_timestampmicros":502955975598881751,"r_array":[{"r_boolean":false,"r_int":-1668830201,"r_long":-6599923781529917450,"r_float":0.38237476,"r_double":0.31569106589433316,"r_bytes":"Ñy\u0015È°'³8V-\u0006®\u0001","r_string":"hbbr","r_enum":"ZERO","o_boolean":null,"o_int":null,"o_long":{"long":-8786037395828443477},"o_float":null,"o_double":null,"o_bytes":{"bytes":"‡"},"o_string":{"string":"sbtumgeftvrytd"},"o_enum":null,"o_date":null,"o_timemillis":null,"o_timemicros":null,"o_timestampmillis":{"long":-348312946393790963},"o_timestampmicros":null}]},"r_enum":"TWO","r_array":[{"r_boolean":false,"r_int":1962765346,"r_long":-8328418447975793822,"r_float":0.20733237,"r_double":0.9343604953732566,"r_bytes":"·­ÀJñ","r_string":"ov","r_array":[{"r_boolean":true,"r_int":-27246773,"r_long":177373265315570900,"r_float":0.76291203,"r_double":0.8238087417005359,"r_bytes":"[,k","r_string":"usmx","r_enum":"TWO","r_date":-1681150329,"r_timemillis":1564582148,"r_timemicros":-3526883049485328313,"r_timestampmillis":7118265625858211427,"r_timestampmicros":-5485837313950274633,"o_boolean":null,"o_int":null,"o_long":null,"o_float":null,"o_double":{"double":0.2984328638722843},"o_bytes":{"bytes":"0Þ8:Âï\u001AÒ)Gù"},"o_string":{"string":"nitndbj"},"o_enum":null,"o_date":{"int":1601343056},"o_timemillis":{"int":-1864579119},"o_timemicros":null,"o_timestampmillis":{"long":6487236634378638002},"o_timestampmicros":null},{"r_boolean":false,"r_int":2030744725,"r_long":1156857175870531061,"r_float":0.61244863,"r_double":0.3520706655643062,"r_bytes":"\u001CÜåöì\u001FO","r_string":"ln","r_enum":"TWO","r_date":-19866265,"r_timemillis":-166893546,"r_timemicros":-8416039121195828034,"r_timestampmillis":-4007989710300147437,"r_timestampmicros":-6742863195076555522,"o_boolean":null,"o_int":{"int":-1469969644},"o_long":{"long":-192616334727943207},"o_float":null,"o_double":{"double":0.052808954073739534},"o_bytes":null,"o_string":null,"o_enum":{"Level2_2_Enum2":"ZERO"},"o_date":{"int":-1426975576},"o_timemillis":{"int":399389626},"o_timemicros":{"long":7570064526431888676},"o_timestampmillis":null,"o_timestampmicros":null}],"o_boolean":{"boolean":false},"o_int":null,"o_long":null,"o_float":{"float":0.42296082},"o_double":{"double":0.6142625487504171},"o_bytes":null,"o_string":{"string":"pqnvkqnr"},"o_enum":{"Level1_2_Enum2":"TWO"},"o_date":{"int":-1075830250},"o_timemillis":null,"o_timemicros":{"long":-2708524213065196512},"o_timestampmillis":null,"o_timestampmicros":null},{"r_boolean":true,"r_int":-2114630241,"r_long":3686410491269560755,"r_float":0.5215308,"r_double":0.5456164233439882,"r_bytes":"a•ÆfäL[t\u001Cw€c:","r_string":"robf","r_array":[{"r_boolean":true,"r_int":-1454040211,"r_long":-8577145947966652768,"r_float":0.5833131,"r_double":0.09571054895929243,"r_bytes":"","r_string":"dg","r_enum":"TWO","r_date":1701891011,"r_timemillis":1495344689,"r_timemicros":7551139421664986356,"r_timestampmillis":-9134963004362337151,"r_timestampmicros":3885730771300797828,"o_boolean":null,"o_int":null,"o_long":{"long":-980638301382410148},"o_float":{"float":0.41216427},"o_double":{"double":0.8459221656313771},"o_bytes":null,"o_string":{"string":"qesnbntcgdhy"},"o_enum":{"Level2_2_Enum2":"ONE"},"o_date":null,"o_timemillis":{"int":-909094070},"o_timemicros":null,"o_timestampmillis":{"long":-1369346484079517618},"o_timestampmicros":null}],"o_boolean":{"boolean":true},"o_int":{"int":1711804100},"o_long":null,"o_float":{"float":0.694458},"o_double":{"double":0.8953132048040303},"o_bytes":null,"o_string":null,"o_enum":null,"o_date":null,"o_timemillis":null,"o_timemicros":{"long":2587691124790452828},"o_timestampmillis":null,"o_timestampmicros":null},{"r_boolean":false,"r_int":1820964607,"r_long":-667325537215204430,"r_float":0.698769,"r_double":0.6812068457931805,"r_bytes":"TË^Å\u000Fâ2ï×\u0001Ll","r_string":"acvbaddwp","r_array":[{"r_boolean":true,"r_int":-744770324,"r_long":-1743518913101948273,"r_float":0.06177938,"r_double":0.06306501914188156,"r_bytes":"Œ‘–µì–nF\\","r_string":"mxbsvbpikj","r_enum":"ZERO","r_date":-1288209343,"r_timemillis":-1254778261,"r_timemicros":4001267661941232347,"r_timestampmillis":-6662563177282072542,"r_timestampmicros":-2235231451299244277,"o_boolean":{"boolean":true},"o_int":{"int":1745567955},"o_long":{"long":4261761031556298642},"o_float":{"float":0.73502684},"o_double":null,"o_bytes":{"bytes":"‡Ò<²èñ”ßÚ \u001E"},"o_string":{"string":"grnx"},"o_enum":null,"o_date":null,"o_timemillis":null,"o_timemicros":null,"o_timestampmillis":{"long":4518063139129965519},"o_timestampmicros":{"long":1316534145823164649}},{"r_boolean":false,"r_int":910729552,"r_long":2726225621073088849,"r_float":0.19769138,"r_double":0.06476310121380902,"r_bytes":"h\u0003,","r_string":"umqmipttufbpj","r_enum":"TWO","r_date":689660228,"r_timemillis":1309899719,"r_timemicros":1078764192875726025,"r_timestampmillis":-695057389860259918,"r_timestampmicros":-8063569606326963519,"o_boolean":{"boolean":true},"o_int":{"int":-1505618922},"o_long":{"long":-5037999963445648881},"o_float":{"float":0.20051485},"o_double":null,"o_bytes":{"bytes":"Š›ö\u0018œ\u0015U"},"o_string":{"string":"gh"},"o_enum":{"Level2_2_Enum2":"TWO"},"o_date":null,"o_timemillis":null,"o_timemicros":{"long":-7207609695055441668},"o_timestampmillis":{"long":3177888371621073962},"o_timestampmicros":null},{"r_boolean":true,"r_int":1959861576,"r_long":5272796412802329504,"r_float":0.53858227,"r_double":0.008983684235427947,"r_bytes":"Ö\"ü","r_string":"pdaley","r_enum":"ONE","r_date":776699096,"r_timemillis":-1007119199,"r_timemicros":590734216915068783,"r_timestampmillis":-658664281785830806,"r_timestampmicros":4750232061369742846,"o_boolean":{"boolean":false},"o_int":null,"o_long":{"long":-9179200900307139032},"o_float":{"float":0.2775467},"o_double":{"double":0.2206218104221903},"o_bytes":{"bytes":"k'ô›»•Æ\u0005šÅí@Ù#š"},"o_string":{"string":"eanwqnmwqcsih"},"o_enum":null,"o_date":{"int":381051407},"o_timemillis":null,"o_timemicros":{"long":-5024693055097867538},"o_timestampmillis":{"long":-6940181702809064644},"o_timestampmicros":null}],"o_boolean":null,"o_int":{"int":966170891},"o_long":{"long":-65812578617110800},"o_float":{"float":0.78054947},"o_double":{"double":0.5239361372676871},"o_bytes":null,"o_string":{"string":"hwxvdrkvlo"},"o_enum":{"Level1_2_Enum2":"ONE"},"o_date":null,"o_timemillis":{"int":-2038003235},"o_timemicros":null,"o_timestampmillis":{"long":-2839504216670117827},"o_timestampmicros":null},{"r_boolean":false,"r_int":424283475,"r_long":-1893271893557028942,"r_float":0.36848998,"r_double":0.2697795375891766,"r_bytes":"3","r_string":"vcnwx","r_array":[{"r_boolean":true,"r_int":1315040121,"r_long":-3119740752508582696,"r_float":0.7902502,"r_double":0.9618915652249564,"r_bytes":"\u001B\u001F•‡õ","r_string":"qacbdgvhib","r_enum":"ONE","r_date":-965446282,"r_timemillis":-637757557,"r_timemicros":6762494191929042961,"r_timestampmillis":3277592586874990443,"r_timestampmicros":5817655316890167518,"o_boolean":{"boolean":true},"o_int":{"int":-193701057},"o_long":null,"o_float":{"float":0.12965041},"o_double":null,"o_bytes":{"bytes":"ÛÂöRƒ‹Š\\í¢z"},"o_string":null,"o_enum":null,"o_date":{"int":178840596},"o_timemillis":null,"o_timemicros":{"long":-3386786806049908506},"o_timestampmillis":null,"o_timestampmicros":{"long":-106991194933482225}},{"r_boolean":false,"r_int":-712137196,"r_long":-7147257919882635870,"r_float":0.9230758,"r_double":0.2201593084754564,"r_bytes":"G","r_string":"","r_enum":"TWO","r_date":-1841124044,"r_timemillis":1331906695,"r_timemicros":3368942079885152810,"r_timestampmillis":4737526250475949852,"r_timestampmicros":8115892108394641314,"o_boolean":{"boolean":false},"o_int":{"int":34397188},"o_long":null,"o_float":null,"o_double":{"double":0.09813568220777091},"o_bytes":{"bytes":"QÕ¤…:9Yø\u0003"},"o_string":null,"o_enum":{"Level2_2_Enum2":"ZERO"},"o_date":{"int":360406129},"o_timemillis":{"int":6749217},"o_timemicros":null,"o_timestampmillis":{"long":-6613494718258356431},"o_timestampmicros":null}],"o_boolean":{"boolean":false},"o_int":null,"o_long":null,"o_float":{"float":0.5871629},"o_double":null,"o_bytes":{"bytes":"û”JZkÆ5U\u000EEÒø"},"o_string":null,"o_enum":{"Level1_2_Enum2":"ONE"},"o_date":null,"o_timemillis":null,"o_timemicros":null,"o_timestampmillis":{"long":2049691157677798935},"o_timestampmicros":null}],"r_date":-904109464,"r_timemillis":113740699,"r_timemicros":-4950820368221812154,"r_timestampmillis":5114843359192923968,"r_timestampmicros":-919354294423629829,"o_boolean":null,"o_int":null,"o_long":{"long":1001725120426631842},"o_float":{"float":0.1772235},"o_double":{"double":0.1063160027134924},"o_bytes":null,"o_string":{"string":"atjahgfcgoigdjwoormnclgkbntntdtkessfpbohdaxeysgtmfopwgfpyoupmuiaqyywtg"},"o_enum":{"Enum2":"ONE"},"o_date":{"int":796496873},"o_timemillis":null,"o_timemicros":{"long":-5343074730123083099},"o_timestampmillis":null,"o_timestampmicros":null} diff --git a/examples/record/nested.msgpack b/examples/record/nested.msgpack deleted file mode 100644 index 695c633..0000000 --- a/examples/record/nested.msgpack +++ /dev/null @@ -1 +0,0 @@ -boolean£intlongfloat?񙙙double?񙙙bytesbytesstringstringrecordboolean£intlongfloat?񙙙double?񙙙bytesbytesstringstringboolean£intlongfloat@double@bytesbytesstringstringrecordboolean£intlongfloat@double@bytesbytesstringstring \ No newline at end of file diff --git a/examples/schema/complicated.avsc b/examples/schema/complicated.avsc deleted file mode 100644 index c37d6fd..0000000 --- a/examples/schema/complicated.avsc +++ /dev/null @@ -1,439 +0,0 @@ -{ - "type": "record", - "name": "Complicated", - "doc": "It contains most kind of primitive/complex/logical types", - "aliases": ["Root"], - "fields" : [ - {"name": "r_boolean", "type": "boolean"}, - {"name": "r_int", "type": "int"}, - {"name": "r_long", "type": "long"}, - {"name": "r_float", "type": "float"}, - {"name": "r_double", "type": "double"}, - {"name": "r_bytes", "type": "bytes"}, - {"name": "r_string", "type": "string"}, - {"name": "r_record", "type": { - "type": "record", - "name": "Level1_1", - "fields" : [ - {"name": "r_boolean", "type": "boolean"}, - {"name": "r_int", "type": "int"}, - {"name": "r_long", "type": "long"}, - {"name": "r_float", "type": "float"}, - {"name": "r_double", "type": "double"}, - {"name": "r_bytes", "type": "bytes"}, - {"name": "r_string", "type": "string"}, - {"name": "r_record", "type": { - "type": "record", - "name": "Level2_1__1", - "fields" : [ - {"name": "r_boolean", "type": "boolean"}, - {"name": "r_int", "type": "int"}, - {"name": "r_long", "type": "long"}, - {"name": "r_float", "type": "float"}, - {"name": "r_double", "type": "double"}, - {"name": "r_bytes", "type": "bytes"}, - {"name": "r_string", "type": "string"}, - {"name": "r_enum", "type": { - "type": "enum", - "name": "Level2_1__1_Enum1", - "symbols": ["ZERO", "ONE", "TWO"] - } - }, - {"name": "r_date", "type": { - "type": "int", - "logicalType": "date" - } - }, - {"name": "r_timemillis", "type": { - "type": "int", - "logicalType": "time-millis" - } - }, - {"name": "r_timemicros", "type": { - "type": "long", - "logicalType": "time-micros" - } - }, - {"name": "r_timestampmillis", "type": { - "type": "long", - "logicalType": "timestamp-millis" - } - }, - {"name": "r_timestampmicros", "type": { - "type": "long", - "logicalType": "timestamp-micros" - } - }, - {"name": "o_boolean", "type": ["null", "boolean"], "default": null}, - {"name": "o_int", "type": ["null", "int"], "default": null}, - {"name": "o_long", "type": ["null", "long"], "default": null}, - {"name": "o_float", "type": ["null", "float"], "default": null}, - {"name": "o_double", "type": ["null", "double"], "default": null}, - {"name": "o_bytes", "type": ["null", "bytes"], "default": null}, - {"name": "o_string", "type": ["null", "string"], "default": null}, - {"name": "o_enum", "type": ["null", { - "type": "enum", - "name": "Level2_1__1_Enum2", - "symbols": ["ZERO", "ONE", "TWO"] - }], - "default": null - }, - {"name": "o_date", "type": ["null", { - "type": "int", - "logicalType": "date" - }], - "default": null - }, - {"name": "o_timemillis", "type": ["null", { - "type": "int", - "logicalType": "time-millis" - }], - "default": null - }, - {"name": "o_timemicros", "type": ["null", { - "type": "long", - "logicalType": "time-micros" - }], - "default": null - }, - {"name": "o_timestampmillis", "type": ["null", { - "type": "long", - "logicalType": "timestamp-millis" - }], - "default": null - }, - {"name": "o_timestampmicros", "type": ["null", { - "type": "long", - "logicalType": "timestamp-micros" - }], - "default": null - } - ]} - }, - {"name": "r_enum", "type": { - "type": "enum", - "name": "Level1_1_Enum1", - "symbols": ["ZERO", "ONE", "TWO"] - } - }, - {"name": "r_date", "type": { - "type": "int", - "logicalType": "date" - } - }, - {"name": "r_timemillis", "type": { - "type": "int", - "logicalType": "time-millis" - } - }, - {"name": "r_timemicros", "type": { - "type": "long", - "logicalType": "time-micros" - } - }, - {"name": "r_timestampmillis", "type": { - "type": "long", - "logicalType": "timestamp-millis" - } - }, - {"name": "r_timestampmicros", "type": { - "type": "long", - "logicalType": "timestamp-micros" - } - }, - {"name": "r_array", "type": { - "type": "array", - "items": { - "type": "record", - "name": "Level2_1__2", - "fields" : [ - {"name": "r_boolean", "type": "boolean"}, - {"name": "r_int", "type": "int"}, - {"name": "r_long", "type": "long"}, - {"name": "r_float", "type": "float"}, - {"name": "r_double", "type": "double"}, - {"name": "r_bytes", "type": "bytes"}, - {"name": "r_string", "type": "string"}, - {"name": "r_enum", "type": { - "type": "enum", - "name": "Level2_1__2_Enum1", - "symbols": ["ZERO", "ONE", "TWO"] - } - }, - {"name": "o_boolean", "type": ["null", "boolean"], "default": null}, - {"name": "o_int", "type": ["null", "int"], "default": null}, - {"name": "o_long", "type": ["null", "long"], "default": null}, - {"name": "o_float", "type": ["null", "float"], "default": null}, - {"name": "o_double", "type": ["null", "double"], "default": null}, - {"name": "o_bytes", "type": ["null", "bytes"], "default": null}, - {"name": "o_string", "type": ["null", "string"], "default": null}, - {"name": "o_enum", "type": ["null", { - "type": "enum", - "name": "Level2_1__2_Enum2", - "symbols": ["ZERO", "ONE", "TWO"] - }], - "default": null - }, - {"name": "o_date", "type": ["null", { - "type": "int", - "logicalType": "date" - }], - "default": null - }, - {"name": "o_timemillis", "type": ["null", { - "type": "int", - "logicalType": "time-millis" - }], - "default": null - }, - {"name": "o_timemicros", "type": ["null", { - "type": "long", - "logicalType": "time-micros" - }], - "default": null - }, - {"name": "o_timestampmillis", "type": ["null", { - "type": "long", - "logicalType": "timestamp-millis" - }], - "default": null - }, - {"name": "o_timestampmicros", "type": ["null", { - "type": "long", - "logicalType": "timestamp-micros" - }], - "default": null - } - ] - } - }} - ]} - }, - {"name": "r_enum", "type": { - "type": "enum", - "name": "Enum1", - "symbols": ["ZERO", "ONE", "TWO"] - } - }, - {"name": "r_array", "type": { - "type": "array", - "items": { - "type": "record", - "name": "Level1_2", - "fields" : [ - {"name": "r_boolean", "type": "boolean"}, - {"name": "r_int", "type": "int"}, - {"name": "r_long", "type": "long"}, - {"name": "r_float", "type": "float"}, - {"name": "r_double", "type": "double"}, - {"name": "r_bytes", "type": "bytes"}, - {"name": "r_string", "type": "string"}, - {"name": "r_array", "type": { - "type": "array", - "items": { - "type": "record", - "name": "Level2_2", - "fields" : [ - {"name": "r_boolean", "type": "boolean"}, - {"name": "r_int", "type": "int"}, - {"name": "r_long", "type": "long"}, - {"name": "r_float", "type": "float"}, - {"name": "r_double", "type": "double"}, - {"name": "r_bytes", "type": "bytes"}, - {"name": "r_string", "type": "string"}, - {"name": "r_enum", "type": { - "type": "enum", - "name": "Level2_2_Enum1", - "symbols": ["ZERO", "ONE", "TWO"] - } - }, - {"name": "r_date", "type": { - "type": "int", - "logicalType": "date" - } - }, - {"name": "r_timemillis", "type": { - "type": "int", - "logicalType": "time-millis" - } - }, - {"name": "r_timemicros", "type": { - "type": "long", - "logicalType": "time-micros" - } - }, - {"name": "r_timestampmillis", "type": { - "type": "long", - "logicalType": "timestamp-millis" - } - }, - {"name": "r_timestampmicros", "type": { - "type": "long", - "logicalType": "timestamp-micros" - } - }, - {"name": "o_boolean", "type": ["null", "boolean"], "default": null}, - {"name": "o_int", "type": ["null", "int"], "default": null}, - {"name": "o_long", "type": ["null", "long"], "default": null}, - {"name": "o_float", "type": ["null", "float"], "default": null}, - {"name": "o_double", "type": ["null", "double"], "default": null}, - {"name": "o_bytes", "type": ["null", "bytes"], "default": null}, - {"name": "o_string", "type": ["null", "string"], "default": null}, - {"name": "o_enum", "type": ["null", { - "type": "enum", - "name": "Level2_2_Enum2", - "symbols": ["ZERO", "ONE", "TWO"] - }], - "default": null - }, - {"name": "o_date", "type": ["null", { - "type": "int", - "logicalType": "date" - }], - "default": null - }, - {"name": "o_timemillis", "type": ["null", { - "type": "int", - "logicalType": "time-millis" - }], - "default": null - }, - {"name": "o_timemicros", "type": ["null", { - "type": "long", - "logicalType": "time-micros" - }], - "default": null - }, - {"name": "o_timestampmillis", "type": ["null", { - "type": "long", - "logicalType": "timestamp-millis" - }], - "default": null - }, - {"name": "o_timestampmicros", "type": ["null", { - "type": "long", - "logicalType": "timestamp-micros" - }], - "default": null - } - ] - } - }}, - {"name": "o_boolean", "type": ["null", "boolean"], "default": null}, - {"name": "o_int", "type": ["null", "int"], "default": null}, - {"name": "o_long", "type": ["null", "long"], "default": null}, - {"name": "o_float", "type": ["null", "float"], "default": null}, - {"name": "o_double", "type": ["null", "double"], "default": null}, - {"name": "o_bytes", "type": ["null", "bytes"], "default": null}, - {"name": "o_string", "type": ["null", "string"], "default": null}, - {"name": "o_enum", "type": ["null", { - "type": "enum", - "name": "Level1_2_Enum2", - "symbols": ["ZERO", "ONE", "TWO"] - }], - "default": null - }, - {"name": "o_date", "type": ["null", { - "type": "int", - "logicalType": "date" - }], - "default": null - }, - {"name": "o_timemillis", "type": ["null", { - "type": "int", - "logicalType": "time-millis" - }], - "default": null - }, - {"name": "o_timemicros", "type": ["null", { - "type": "long", - "logicalType": "time-micros" - }], - "default": null - }, - {"name": "o_timestampmillis", "type": ["null", { - "type": "long", - "logicalType": "timestamp-millis" - }], - "default": null - }, - {"name": "o_timestampmicros", "type": ["null", { - "type": "long", - "logicalType": "timestamp-micros" - }], - "default": null - } - ] - } - }}, - {"name": "r_date", "type": { - "type": "int", - "logicalType": "date" - } - }, - {"name": "r_timemillis", "type": { - "type": "int", - "logicalType": "time-millis" - } - }, - {"name": "r_timemicros", "type": { - "type": "long", - "logicalType": "time-micros" - } - }, - {"name": "r_timestampmillis", "type": { - "type": "long", - "logicalType": "timestamp-millis" - } - }, - {"name": "r_timestampmicros", "type": { - "type": "long", - "logicalType": "timestamp-micros" - } - }, - {"name": "o_boolean", "type": ["null", "boolean"], "default": null}, - {"name": "o_int", "type": ["null", "int"], "default": null}, - {"name": "o_long", "type": ["null", "long"], "default": null}, - {"name": "o_float", "type": ["null", "float"], "default": null}, - {"name": "o_double", "type": ["null", "double"], "default": null}, - {"name": "o_bytes", "type": ["null", "bytes"], "default": null}, - {"name": "o_string", "type": ["null", "string"], "default": null}, - {"name": "o_enum", "type": ["null", { - "type": "enum", - "name": "Enum2", - "symbols": ["ZERO", "ONE", "TWO"] - }], - "default": null - }, - {"name": "o_date", "type": ["null", { - "type": "int", - "logicalType": "date" - }], - "default": null - }, - {"name": "o_timemillis", "type": ["null", { - "type": "int", - "logicalType": "time-millis" - }], - "default": null - }, - {"name": "o_timemicros", "type": ["null", { - "type": "long", - "logicalType": "time-micros" - }], - "default": null - }, - {"name": "o_timestampmillis", "type": ["null", { - "type": "long", - "logicalType": "timestamp-millis" - }], - "default": null - }, - {"name": "o_timestampmicros", "type": ["null", { - "type": "long", - "logicalType": "timestamp-micros" - }], - "default": null - } - ] -} diff --git a/testdata/record/array.avro b/testdata/record/array.avro deleted file mode 100644 index e658e79025b0df8ada6f4405f4fbfb776fe4d39f..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 776 zcmeZI%3@>@ODrqO*DFrWNX<>0#aXRXQdy9yWTjM;nw(#hqNJmgmzWFUI~ElsRsy+c znW;G`#Y$Gu)i9Z){QR8M#5|xJR4YuNRtK&oGp__858@!n<>cq3BP78*B-yl_{6r+Z z5H6B@N`7flPAWn_l#iq$sj?)s7@+{dMUpQrDau540hEuVA`$9$i2vY01QX6INzDa@ z2wWUJ=zLPkQgaM}E*Lps7h79f8(S*^PFl(NDXGaEd8Iiy42RTPw-wm%eLeW;rBu!m z-W4n_7#WzD&YtP9pEVN%KH77EqlX6)2Tb@R85met&Yt0Mfaqj&K+}mw62ln)QBVtc diff --git a/testdata/record/array.jsonl b/testdata/record/array.jsonl deleted file mode 100644 index e84b275..0000000 --- a/testdata/record/array.jsonl +++ /dev/null @@ -1,2 +0,0 @@ -{"boolean": false, "int": 1, "long": 1, "float": 1.1, "double": 1.1, "bytes": "bytes", "string": "string", "array": [{"boolean": false, "int": 1, "long": 1, "float": 1.1, "double": 1.1, "bytes": "bytes", "string": "string"}]} -{"boolean": true, "int": 2, "long": 2, "float": 2.2, "double": 2.2, "bytes": "bytes", "string": "string", "array": [{"boolean": false, "int": 2, "long": 2, "float": 2.2, "double": 2.2, "bytes": "bytes", "string": "string"}]} \ No newline at end of file diff --git a/testdata/record/nested.avro b/testdata/record/nested.avro deleted file mode 100644 index 5f6e3f1587f8ab5f33e3400be609b9cbf271b373..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 749 zcmeZI%3@>@ODrqO*DFrWNX<=r!%?kNQdy9yWTjM;nw(#hqNJmgmzWFU`=u6_q=NWq znW;G`#Y$Gu)i9}~{QR8M#5|xJR4+`RRtK&oGp__858@!n<>cq3BP78*B-yl_{6r+Z z5H6B@N`7flPAWn_l#iq$sj?)s7@+{dMUpQrDau540hEuV0v;F;58@0YpVYF{97CX0 zBPWnzYina`MZjq&IX@*enIo?>Cx_veUzwDM=IP3^46%|)7ate0JYZyCVmf=K$9~pK i5cp`%1&#(DNLb^QV_`XahQ|S-kI?~DA09b$CjbDKB?4~% diff --git a/testdata/record/nested.jsonl b/testdata/record/nested.jsonl deleted file mode 100644 index c59ee6e..0000000 --- a/testdata/record/nested.jsonl +++ /dev/null @@ -1,2 +0,0 @@ -{"boolean": false, "int": 1, "long": 1, "float": 1.1, "double": 1.1, "bytes": "bytes", "string": "string", "record": {"boolean": false, "int": 1, "long": 1, "float": 1.1, "double": 1.1, "bytes": "bytes", "string": "string"}} -{"boolean": true, "int": 2, "long": 2, "float": 2.2, "double": 2.2, "bytes": "bytes", "string": "string", "record": {"boolean": false, "int": 2, "long": 2, "float": 2.2, "double": 2.2, "bytes": "bytes", "string": "string"}} \ No newline at end of file diff --git a/testdata/schema/array.avsc b/testdata/schema/array.avsc deleted file mode 100644 index 9acfed2..0000000 --- a/testdata/schema/array.avsc +++ /dev/null @@ -1,29 +0,0 @@ -{ - "type": "record", - "name": "Array", - "fields" : [ - {"name": "boolean", "type": "boolean"}, - {"name": "int", "type": "int"}, - {"name": "long", "type": "long"}, - {"name": "float", "type": "float"}, - {"name": "double", "type": "double"}, - {"name": "bytes", "type": "bytes"}, - {"name": "string", "type": "string"}, - {"name": "array", "type": { - "type": "array", - "items": { - "type": "record", - "name": "Level1", - "fields" : [ - {"name": "boolean", "type": "boolean"}, - {"name": "int", "type": "int"}, - {"name": "long", "type": "long"}, - {"name": "float", "type": "float"}, - {"name": "double", "type": "double"}, - {"name": "bytes", "type": "bytes"}, - {"name": "string", "type": "string"} - ] - } - }} - ] -} diff --git a/testdata/schema/array.bq.json b/testdata/schema/array.bq.json deleted file mode 100644 index fa02967..0000000 --- a/testdata/schema/array.bq.json +++ /dev/null @@ -1,79 +0,0 @@ -[ - { - "name": "boolean", - "type": "BOOLEAN", - "mode": "REQUIRED" - }, - { - "name": "int", - "type": "INTEGER", - "mode": "REQUIRED" - }, - { - "name": "long", - "type": "INTEGER", - "mode": "REQUIRED" - }, - { - "name": "float", - "type": "FLOAT", - "mode": "REQUIRED" - }, - { - "name": "double", - "type": "FLOAT", - "mode": "REQUIRED" - }, - { - "name": "bytes", - "type": "BYTES", - "mode": "REQUIRED" - }, - { - "name": "string", - "type": "STRING", - "mode": "REQUIRED" - }, - { - "name": "array", - "type": "RECORD", - "mode": "REPEATED", - "fields": [ - { - "name": "boolean", - "type": "BOOLEAN", - "mode": "REQUIRED" - }, - { - "name": "int", - "type": "INTEGER", - "mode": "REQUIRED" - }, - { - "name": "long", - "type": "INTEGER", - "mode": "REQUIRED" - }, - { - "name": "float", - "type": "FLOAT", - "mode": "REQUIRED" - }, - { - "name": "double", - "type": "FLOAT", - "mode": "REQUIRED" - }, - { - "name": "bytes", - "type": "BYTES", - "mode": "REQUIRED" - }, - { - "name": "string", - "type": "STRING", - "mode": "REQUIRED" - } - ] - } -] diff --git a/testdata/schema/nested.avsc b/testdata/schema/nested.avsc deleted file mode 100644 index 8aef3d8..0000000 --- a/testdata/schema/nested.avsc +++ /dev/null @@ -1,26 +0,0 @@ -{ - "type": "record", - "name": "Nested", - "fields" : [ - {"name": "boolean", "type": "boolean"}, - {"name": "int", "type": "int"}, - {"name": "long", "type": "long"}, - {"name": "float", "type": "float"}, - {"name": "double", "type": "double"}, - {"name": "bytes", "type": "bytes"}, - {"name": "string", "type": "string"}, - {"name": "record", "type": { - "type": "record", - "name": "Level1", - "fields" : [ - {"name": "boolean", "type": "boolean"}, - {"name": "int", "type": "int"}, - {"name": "long", "type": "long"}, - {"name": "float", "type": "float"}, - {"name": "double", "type": "double"}, - {"name": "bytes", "type": "bytes"}, - {"name": "string", "type": "string"} - ]} - } - ] -} diff --git a/testdata/schema/nested.bq.json b/testdata/schema/nested.bq.json deleted file mode 100644 index 8feba6f..0000000 --- a/testdata/schema/nested.bq.json +++ /dev/null @@ -1,79 +0,0 @@ -[ - { - "name": "boolean", - "type": "BOOLEAN", - "mode": "REQUIRED" - }, - { - "name": "int", - "type": "INTEGER", - "mode": "REQUIRED" - }, - { - "name": "long", - "type": "INTEGER", - "mode": "REQUIRED" - }, - { - "name": "float", - "type": "FLOAT", - "mode": "REQUIRED" - }, - { - "name": "double", - "type": "FLOAT", - "mode": "REQUIRED" - }, - { - "name": "bytes", - "type": "BYTES", - "mode": "REQUIRED" - }, - { - "name": "string", - "type": "STRING", - "mode": "REQUIRED" - }, - { - "name": "record", - "type": "RECORD", - "mode": "REQUIRED", - "fields": [ - { - "name": "boolean", - "type": "BOOLEAN", - "mode": "REQUIRED" - }, - { - "name": "int", - "type": "INTEGER", - "mode": "REQUIRED" - }, - { - "name": "long", - "type": "INTEGER", - "mode": "REQUIRED" - }, - { - "name": "float", - "type": "FLOAT", - "mode": "REQUIRED" - }, - { - "name": "double", - "type": "FLOAT", - "mode": "REQUIRED" - }, - { - "name": "bytes", - "type": "BYTES", - "mode": "REQUIRED" - }, - { - "name": "string", - "type": "STRING", - "mode": "REQUIRED" - } - ] - } -] From 2e252491cf453fb5de80cc5a2b406ec0ad7e85ff Mon Sep 17 00:00:00 2001 From: Ryo Okubo Date: Tue, 2 Jun 2020 00:42:58 +0900 Subject: [PATCH 4/6] Update README --- README.md | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/README.md b/README.md index 15f7a47..a9ba90a 100644 --- a/README.md +++ b/README.md @@ -83,6 +83,14 @@ $ parquet-tools cat -json out.parquet - An example is `examples/fluent-plugin-s3` - It works as a Compressor of fluent-plugin-s3 write parquet file to tmp via chunk data. +## Limilations + +Currently it has some limitations from schema/record types. + +- Some logical types like Decimal are unsupported. +- If using `-recordType = avro`, it doesn't support a nested record has only 1 sub field. +- If using `-recordType = avro`, it converts bytes fields to base64 encoded value implicitly. + ## Development `Columnifier` reads input file(s), converts format based on given parameter, finally writes output files. From 934e98b684dad1a8fa63a68fc7ef95665d78a72a Mon Sep 17 00:00:00 2001 From: Ryo Okubo Date: Tue, 2 Jun 2020 00:43:22 +0900 Subject: [PATCH 5/6] Fix fmt --- columnifier/parquet_test.go | 5 +++-- parquet/marshal_map.go | 1 + record/avro.go | 1 + 3 files changed, 5 insertions(+), 2 deletions(-) diff --git a/columnifier/parquet_test.go b/columnifier/parquet_test.go index e7cd40b..4f6349f 100644 --- a/columnifier/parquet_test.go +++ b/columnifier/parquet_test.go @@ -3,12 +3,13 @@ package columnifier import ( "bytes" "encoding/json" - "github.com/xitongsys/parquet-go-source/local" - "github.com/xitongsys/parquet-go/reader" "io/ioutil" "os" "testing" + "github.com/xitongsys/parquet-go-source/local" + "github.com/xitongsys/parquet-go/reader" + "github.com/reproio/columnify/record" "github.com/reproio/columnify/schema" "github.com/xitongsys/parquet-go/parquet" diff --git a/parquet/marshal_map.go b/parquet/marshal_map.go index bb620b2..7f1a55f 100644 --- a/parquet/marshal_map.go +++ b/parquet/marshal_map.go @@ -2,6 +2,7 @@ package parquet import ( "encoding/json" + "github.com/xitongsys/parquet-go/layout" "github.com/xitongsys/parquet-go/marshal" "github.com/xitongsys/parquet-go/schema" diff --git a/record/avro.go b/record/avro.go index 95f3deb..156bee7 100644 --- a/record/avro.go +++ b/record/avro.go @@ -3,6 +3,7 @@ package record import ( "bytes" "fmt" + "github.com/reproio/columnify/schema" "github.com/linkedin/goavro/v2" From 0ccee22fd33c2e221ed033f7a950c888efc3ba3e Mon Sep 17 00:00:00 2001 From: Ryo Okubo Date: Tue, 2 Jun 2020 12:37:25 +0900 Subject: [PATCH 6/6] Update columnifier/parquet_test.go Co-authored-by: Naoto Kaneko --- columnifier/parquet_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/columnifier/parquet_test.go b/columnifier/parquet_test.go index 4f6349f..daccab8 100644 --- a/columnifier/parquet_test.go +++ b/columnifier/parquet_test.go @@ -308,7 +308,7 @@ func TestWriteClose(t *testing.T) { input: "testdata/record/nullable_complex.jsonl", expected: "testdata/parquet/nullable_complex.parquet", }, - // nullable/complex; Avro schema, JSONL record + // nullable/complex; Avro schema, MessagePack record { st: schema.SchemaTypeAvro, sf: "testdata/schema/nullable_complex.avsc",