This is an automated email from the ASF dual-hosted git repository.

rxl pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/pulsar-client-go.git


The following commit(s) were added to refs/heads/master by this push:
     new 6385727  Add subscription properties for ConsumerOptions (#671)
6385727 is described below

commit 6385727f1a5e40e144f3239794135b5399a5a49e
Author: xiaolong ran <[email protected]>
AuthorDate: Mon Nov 29 12:39:49 2021 +0800

    Add subscription properties for ConsumerOptions (#671)
    
    Signed-off-by: xiaolongran <[email protected]>
    
    ### Motivation
    
    In https://github.com/apache/pulsar/pull/12869, we introduce pluggable 
entry filter in Dispatcher, the pull request is the Go SDK implementation of 
this PIP
    
    
    ### Modifications
    
    *Describe the modifications you've done.*
    
    - Add subscription properties for ConsumerOptions
    - Update `pulsarApi.proto` file
---
 pulsar/consumer.go                           |    6 +
 pulsar/consumer_impl.go                      |    2 +
 pulsar/consumer_partition.go                 |    6 +
 pulsar/internal/pulsar_proto/PulsarApi.pb.go | 1609 +++++++++++++++++++-------
 pulsar/internal/pulsar_proto/PulsarApi.proto |  112 +-
 5 files changed, 1274 insertions(+), 461 deletions(-)

diff --git a/pulsar/consumer.go b/pulsar/consumer.go
index cdb6887..a71a2d4 100644
--- a/pulsar/consumer.go
+++ b/pulsar/consumer.go
@@ -101,6 +101,12 @@ type ConsumerOptions struct {
        // Those properties will be visible in the topic stats
        Properties map[string]string
 
+       // SubscriptionProperties specify the subscription properties for this 
subscription.
+       //
+       // > Notice: SubscriptionProperties are immutable, and consumers under 
the same subscription will fail to create a
+       // > subscription if they use different properties.
+       SubscriptionProperties map[string]string
+
        // Type specifies the subscription type to be used when subscribing to 
a topic.
        // Default is `Exclusive`
        Type SubscriptionType
diff --git a/pulsar/consumer_impl.go b/pulsar/consumer_impl.go
index 1bf75b5..00e0b76 100644
--- a/pulsar/consumer_impl.go
+++ b/pulsar/consumer_impl.go
@@ -297,6 +297,7 @@ func (c *consumer) internalTopicSubscribeToPartitions() 
error {
 
        receiverQueueSize := c.options.ReceiverQueueSize
        metadata := c.options.Properties
+       subProperties := c.options.SubscriptionProperties
 
        startPartition := oldNumPartitions
        partitionsToAdd := newNumPartitions - oldNumPartitions
@@ -333,6 +334,7 @@ func (c *consumer) internalTopicSubscribeToPartitions() 
error {
                                nackRedeliveryDelay:        nackRedeliveryDelay,
                                nackBackoffPolicy:          
c.options.NackBackoffPolicy,
                                metadata:                   metadata,
+                               subProperties:              subProperties,
                                replicateSubscriptionState: 
c.options.ReplicateSubscriptionState,
                                startMessageID:             trackingMessageID{},
                                subscriptionMode:           durable,
diff --git a/pulsar/consumer_partition.go b/pulsar/consumer_partition.go
index c8e5d9f..0b4e9fe 100644
--- a/pulsar/consumer_partition.go
+++ b/pulsar/consumer_partition.go
@@ -91,6 +91,7 @@ type partitionConsumerOpts struct {
        nackRedeliveryDelay        time.Duration
        nackBackoffPolicy          NackBackoffPolicy
        metadata                   map[string]string
+       subProperties              map[string]string
        replicateSubscriptionState bool
        startMessageID             trackingMessageID
        startMessageIDInclusive    bool
@@ -1058,6 +1059,7 @@ func (pc *partitionConsumer) grabConn() error {
                PriorityLevel:              nil,
                Durable:                    
proto.Bool(pc.options.subscriptionMode == durable),
                Metadata:                   
internal.ConvertFromStringMap(pc.options.metadata),
+               SubscriptionProperties:     
internal.ConvertFromStringMap(pc.options.subProperties),
                ReadCompacted:              
proto.Bool(pc.options.readCompacted),
                Schema:                     pbSchema,
                InitialPosition:            initialPosition.Enum(),
@@ -1075,6 +1077,10 @@ func (pc *partitionConsumer) grabConn() error {
                cmdSubscribe.Metadata = toKeyValues(pc.options.metadata)
        }
 
+       if len(pc.options.subProperties) > 0 {
+               cmdSubscribe.SubscriptionProperties = 
toKeyValues(pc.options.subProperties)
+       }
+
        // force topic creation is enabled by default so
        // we only need to set the flag when disabling it
        if pc.options.disableForceTopicCreation {
diff --git a/pulsar/internal/pulsar_proto/PulsarApi.pb.go 
b/pulsar/internal/pulsar_proto/PulsarApi.pb.go
index c5cefe7..ea37b13 100644
--- a/pulsar/internal/pulsar_proto/PulsarApi.pb.go
+++ b/pulsar/internal/pulsar_proto/PulsarApi.pb.go
@@ -298,6 +298,8 @@ const (
        ProtocolVersion_v15 ProtocolVersion = 15
        ProtocolVersion_v16 ProtocolVersion = 16
        ProtocolVersion_v17 ProtocolVersion = 17
+       ProtocolVersion_v18 ProtocolVersion = 18
+       ProtocolVersion_v19 ProtocolVersion = 19
 )
 
 var ProtocolVersion_name = map[int32]string{
@@ -319,6 +321,8 @@ var ProtocolVersion_name = map[int32]string{
        15: "v15",
        16: "v16",
        17: "v17",
+       18: "v18",
+       19: "v19",
 }
 
 var ProtocolVersion_value = map[string]int32{
@@ -340,6 +344,8 @@ var ProtocolVersion_value = map[string]int32{
        "v15": 15,
        "v16": 16,
        "v17": 17,
+       "v18": 18,
+       "v19": 19,
 }
 
 func (x ProtocolVersion) Enum() *ProtocolVersion {
@@ -901,6 +907,8 @@ const (
        BaseCommand_END_TXN_ON_PARTITION_RESPONSE    BaseCommand_Type = 59
        BaseCommand_END_TXN_ON_SUBSCRIPTION          BaseCommand_Type = 60
        BaseCommand_END_TXN_ON_SUBSCRIPTION_RESPONSE BaseCommand_Type = 61
+       BaseCommand_TC_CLIENT_CONNECT_REQUEST        BaseCommand_Type = 62
+       BaseCommand_TC_CLIENT_CONNECT_RESPONSE       BaseCommand_Type = 63
 )
 
 var BaseCommand_Type_name = map[int32]string{
@@ -955,6 +963,8 @@ var BaseCommand_Type_name = map[int32]string{
        59: "END_TXN_ON_PARTITION_RESPONSE",
        60: "END_TXN_ON_SUBSCRIPTION",
        61: "END_TXN_ON_SUBSCRIPTION_RESPONSE",
+       62: "TC_CLIENT_CONNECT_REQUEST",
+       63: "TC_CLIENT_CONNECT_RESPONSE",
 }
 
 var BaseCommand_Type_value = map[string]int32{
@@ -1009,6 +1019,8 @@ var BaseCommand_Type_value = map[string]int32{
        "END_TXN_ON_PARTITION_RESPONSE":     59,
        "END_TXN_ON_SUBSCRIPTION":           60,
        "END_TXN_ON_SUBSCRIPTION_RESPONSE":  61,
+       "TC_CLIENT_CONNECT_REQUEST":         62,
+       "TC_CLIENT_CONNECT_RESPONSE":        63,
 }
 
 func (x BaseCommand_Type) Enum() *BaseCommand_Type {
@@ -1031,7 +1043,7 @@ func (x *BaseCommand_Type) UnmarshalJSON(data []byte) 
error {
 }
 
 func (BaseCommand_Type) EnumDescriptor() ([]byte, []int) {
-       return fileDescriptor_39529ba7ad9caeb8, []int{64, 0}
+       return fileDescriptor_39529ba7ad9caeb8, []int{66, 0}
 }
 
 type Schema struct {
@@ -2444,6 +2456,7 @@ type CommandSubscribe struct {
        // to specified seconds and  will send messages from that point
        StartMessageRollbackDurationSec *uint64        
`protobuf:"varint,16,opt,name=start_message_rollback_duration_sec,json=startMessageRollbackDurationSec,def=0"
 json:"start_message_rollback_duration_sec,omitempty"`
        KeySharedMeta                   *KeySharedMeta 
`protobuf:"bytes,17,opt,name=keySharedMeta" json:"keySharedMeta,omitempty"`
+       SubscriptionProperties          []*KeyValue    
`protobuf:"bytes,18,rep,name=subscription_properties,json=subscriptionProperties"
 json:"subscription_properties,omitempty"`
        XXX_NoUnkeyedLiteral            struct{}       `json:"-"`
        XXX_unrecognized                []byte         `json:"-"`
        XXX_sizecache                   int32          `json:"-"`
@@ -2606,6 +2619,13 @@ func (m *CommandSubscribe) GetKeySharedMeta() 
*KeySharedMeta {
        return nil
 }
 
+func (m *CommandSubscribe) GetSubscriptionProperties() []*KeyValue {
+       if m != nil {
+               return m.SubscriptionProperties
+       }
+       return nil
+}
+
 type CommandPartitionedTopicMetadata struct {
        Topic     *string `protobuf:"bytes,1,req,name=topic" 
json:"topic,omitempty"`
        RequestId *uint64 
`protobuf:"varint,2,req,name=request_id,json=requestId" 
json:"request_id,omitempty"`
@@ -3009,6 +3029,7 @@ type CommandProducer struct {
        // leave it empty and then it will always carry the same epoch number on
        // the subsequent reconnections.
        TopicEpoch           *uint64  
`protobuf:"varint,11,opt,name=topic_epoch,json=topicEpoch" 
json:"topic_epoch,omitempty"`
+       TxnEnabled           *bool    
`protobuf:"varint,12,opt,name=txn_enabled,json=txnEnabled,def=0" 
json:"txn_enabled,omitempty"`
        XXX_NoUnkeyedLiteral struct{} `json:"-"`
        XXX_unrecognized     []byte   `json:"-"`
        XXX_sizecache        int32    `json:"-"`
@@ -3051,6 +3072,7 @@ const Default_CommandProducer_Encrypted bool = false
 const Default_CommandProducer_Epoch uint64 = 0
 const Default_CommandProducer_UserProvidedProducerName bool = true
 const Default_CommandProducer_ProducerAccessMode ProducerAccessMode = 
ProducerAccessMode_Shared
+const Default_CommandProducer_TxnEnabled bool = false
 
 func (m *CommandProducer) GetTopic() string {
        if m != nil && m.Topic != nil {
@@ -3129,6 +3151,13 @@ func (m *CommandProducer) GetTopicEpoch() uint64 {
        return 0
 }
 
+func (m *CommandProducer) GetTxnEnabled() bool {
+       if m != nil && m.TxnEnabled != nil {
+               return *m.TxnEnabled
+       }
+       return Default_CommandProducer_TxnEnabled
+}
+
 type CommandSend struct {
        ProducerId     *uint64 
`protobuf:"varint,1,req,name=producer_id,json=producerId" 
json:"producer_id,omitempty"`
        SequenceId     *uint64 
`protobuf:"varint,2,req,name=sequence_id,json=sequenceId" 
json:"sequence_id,omitempty"`
@@ -3136,8 +3165,10 @@ type CommandSend struct {
        TxnidLeastBits *uint64 
`protobuf:"varint,4,opt,name=txnid_least_bits,json=txnidLeastBits,def=0" 
json:"txnid_least_bits,omitempty"`
        TxnidMostBits  *uint64 
`protobuf:"varint,5,opt,name=txnid_most_bits,json=txnidMostBits,def=0" 
json:"txnid_most_bits,omitempty"`
        /// Add highest sequence id to support batch message with external 
sequence id
-       HighestSequenceId    *uint64  
`protobuf:"varint,6,opt,name=highest_sequence_id,json=highestSequenceId,def=0" 
json:"highest_sequence_id,omitempty"`
-       IsChunk              *bool    
`protobuf:"varint,7,opt,name=is_chunk,json=isChunk,def=0" 
json:"is_chunk,omitempty"`
+       HighestSequenceId *uint64 
`protobuf:"varint,6,opt,name=highest_sequence_id,json=highestSequenceId,def=0" 
json:"highest_sequence_id,omitempty"`
+       IsChunk           *bool   
`protobuf:"varint,7,opt,name=is_chunk,json=isChunk,def=0" 
json:"is_chunk,omitempty"`
+       // Specify if the message being published is a Pulsar marker or not
+       Marker               *bool    
`protobuf:"varint,8,opt,name=marker,def=0" json:"marker,omitempty"`
        XXX_NoUnkeyedLiteral struct{} `json:"-"`
        XXX_unrecognized     []byte   `json:"-"`
        XXX_sizecache        int32    `json:"-"`
@@ -3181,6 +3212,7 @@ const Default_CommandSend_TxnidLeastBits uint64 = 0
 const Default_CommandSend_TxnidMostBits uint64 = 0
 const Default_CommandSend_HighestSequenceId uint64 = 0
 const Default_CommandSend_IsChunk bool = false
+const Default_CommandSend_Marker bool = false
 
 func (m *CommandSend) GetProducerId() uint64 {
        if m != nil && m.ProducerId != nil {
@@ -3231,6 +3263,13 @@ func (m *CommandSend) GetIsChunk() bool {
        return Default_CommandSend_IsChunk
 }
 
+func (m *CommandSend) GetMarker() bool {
+       if m != nil && m.Marker != nil {
+               return *m.Marker
+       }
+       return Default_CommandSend_Marker
+}
+
 type CommandSendReceipt struct {
        ProducerId           *uint64        
`protobuf:"varint,1,req,name=producer_id,json=producerId" 
json:"producer_id,omitempty"`
        SequenceId           *uint64        
`protobuf:"varint,2,req,name=sequence_id,json=sequenceId" 
json:"sequence_id,omitempty"`
@@ -5143,6 +5182,126 @@ func (m *CommandGetOrCreateSchemaResponse) 
GetSchemaVersion() []byte {
        return nil
 }
 
+type CommandTcClientConnectRequest struct {
+       RequestId            *uint64  
`protobuf:"varint,1,req,name=request_id,json=requestId" 
json:"request_id,omitempty"`
+       TcId                 *uint64  
`protobuf:"varint,2,req,name=tc_id,json=tcId,def=0" json:"tc_id,omitempty"`
+       XXX_NoUnkeyedLiteral struct{} `json:"-"`
+       XXX_unrecognized     []byte   `json:"-"`
+       XXX_sizecache        int32    `json:"-"`
+}
+
+func (m *CommandTcClientConnectRequest) Reset()         { *m = 
CommandTcClientConnectRequest{} }
+func (m *CommandTcClientConnectRequest) String() string { return 
proto.CompactTextString(m) }
+func (*CommandTcClientConnectRequest) ProtoMessage()    {}
+func (*CommandTcClientConnectRequest) Descriptor() ([]byte, []int) {
+       return fileDescriptor_39529ba7ad9caeb8, []int{51}
+}
+func (m *CommandTcClientConnectRequest) XXX_Unmarshal(b []byte) error {
+       return m.Unmarshal(b)
+}
+func (m *CommandTcClientConnectRequest) XXX_Marshal(b []byte, deterministic 
bool) ([]byte, error) {
+       if deterministic {
+               return xxx_messageInfo_CommandTcClientConnectRequest.Marshal(b, 
m, deterministic)
+       } else {
+               b = b[:cap(b)]
+               n, err := m.MarshalToSizedBuffer(b)
+               if err != nil {
+                       return nil, err
+               }
+               return b[:n], nil
+       }
+}
+func (m *CommandTcClientConnectRequest) XXX_Merge(src proto.Message) {
+       xxx_messageInfo_CommandTcClientConnectRequest.Merge(m, src)
+}
+func (m *CommandTcClientConnectRequest) XXX_Size() int {
+       return m.Size()
+}
+func (m *CommandTcClientConnectRequest) XXX_DiscardUnknown() {
+       xxx_messageInfo_CommandTcClientConnectRequest.DiscardUnknown(m)
+}
+
+var xxx_messageInfo_CommandTcClientConnectRequest proto.InternalMessageInfo
+
+const Default_CommandTcClientConnectRequest_TcId uint64 = 0
+
+func (m *CommandTcClientConnectRequest) GetRequestId() uint64 {
+       if m != nil && m.RequestId != nil {
+               return *m.RequestId
+       }
+       return 0
+}
+
+func (m *CommandTcClientConnectRequest) GetTcId() uint64 {
+       if m != nil && m.TcId != nil {
+               return *m.TcId
+       }
+       return Default_CommandTcClientConnectRequest_TcId
+}
+
+type CommandTcClientConnectResponse struct {
+       RequestId            *uint64      
`protobuf:"varint,1,req,name=request_id,json=requestId" 
json:"request_id,omitempty"`
+       Error                *ServerError 
`protobuf:"varint,2,opt,name=error,enum=pulsar.proto.ServerError" 
json:"error,omitempty"`
+       Message              *string      `protobuf:"bytes,3,opt,name=message" 
json:"message,omitempty"`
+       XXX_NoUnkeyedLiteral struct{}     `json:"-"`
+       XXX_unrecognized     []byte       `json:"-"`
+       XXX_sizecache        int32        `json:"-"`
+}
+
+func (m *CommandTcClientConnectResponse) Reset()         { *m = 
CommandTcClientConnectResponse{} }
+func (m *CommandTcClientConnectResponse) String() string { return 
proto.CompactTextString(m) }
+func (*CommandTcClientConnectResponse) ProtoMessage()    {}
+func (*CommandTcClientConnectResponse) Descriptor() ([]byte, []int) {
+       return fileDescriptor_39529ba7ad9caeb8, []int{52}
+}
+func (m *CommandTcClientConnectResponse) XXX_Unmarshal(b []byte) error {
+       return m.Unmarshal(b)
+}
+func (m *CommandTcClientConnectResponse) XXX_Marshal(b []byte, deterministic 
bool) ([]byte, error) {
+       if deterministic {
+               return 
xxx_messageInfo_CommandTcClientConnectResponse.Marshal(b, m, deterministic)
+       } else {
+               b = b[:cap(b)]
+               n, err := m.MarshalToSizedBuffer(b)
+               if err != nil {
+                       return nil, err
+               }
+               return b[:n], nil
+       }
+}
+func (m *CommandTcClientConnectResponse) XXX_Merge(src proto.Message) {
+       xxx_messageInfo_CommandTcClientConnectResponse.Merge(m, src)
+}
+func (m *CommandTcClientConnectResponse) XXX_Size() int {
+       return m.Size()
+}
+func (m *CommandTcClientConnectResponse) XXX_DiscardUnknown() {
+       xxx_messageInfo_CommandTcClientConnectResponse.DiscardUnknown(m)
+}
+
+var xxx_messageInfo_CommandTcClientConnectResponse proto.InternalMessageInfo
+
+func (m *CommandTcClientConnectResponse) GetRequestId() uint64 {
+       if m != nil && m.RequestId != nil {
+               return *m.RequestId
+       }
+       return 0
+}
+
+func (m *CommandTcClientConnectResponse) GetError() ServerError {
+       if m != nil && m.Error != nil {
+               return *m.Error
+       }
+       return ServerError_UnknownError
+}
+
+func (m *CommandTcClientConnectResponse) GetMessage() string {
+       if m != nil && m.Message != nil {
+               return *m.Message
+       }
+       return ""
+}
+
 type CommandNewTxn struct {
        RequestId            *uint64  
`protobuf:"varint,1,req,name=request_id,json=requestId" 
json:"request_id,omitempty"`
        TxnTtlSeconds        *uint64  
`protobuf:"varint,2,opt,name=txn_ttl_seconds,json=txnTtlSeconds,def=0" 
json:"txn_ttl_seconds,omitempty"`
@@ -5156,7 +5315,7 @@ func (m *CommandNewTxn) Reset()         { *m = 
CommandNewTxn{} }
 func (m *CommandNewTxn) String() string { return proto.CompactTextString(m) }
 func (*CommandNewTxn) ProtoMessage()    {}
 func (*CommandNewTxn) Descriptor() ([]byte, []int) {
-       return fileDescriptor_39529ba7ad9caeb8, []int{51}
+       return fileDescriptor_39529ba7ad9caeb8, []int{53}
 }
 func (m *CommandNewTxn) XXX_Unmarshal(b []byte) error {
        return m.Unmarshal(b)
@@ -5224,7 +5383,7 @@ func (m *CommandNewTxnResponse) Reset()         { *m = 
CommandNewTxnResponse{} }
 func (m *CommandNewTxnResponse) String() string { return 
proto.CompactTextString(m) }
 func (*CommandNewTxnResponse) ProtoMessage()    {}
 func (*CommandNewTxnResponse) Descriptor() ([]byte, []int) {
-       return fileDescriptor_39529ba7ad9caeb8, []int{52}
+       return fileDescriptor_39529ba7ad9caeb8, []int{54}
 }
 func (m *CommandNewTxnResponse) XXX_Unmarshal(b []byte) error {
        return m.Unmarshal(b)
@@ -5305,7 +5464,7 @@ func (m *CommandAddPartitionToTxn) Reset()         { *m = 
CommandAddPartitionToT
 func (m *CommandAddPartitionToTxn) String() string { return 
proto.CompactTextString(m) }
 func (*CommandAddPartitionToTxn) ProtoMessage()    {}
 func (*CommandAddPartitionToTxn) Descriptor() ([]byte, []int) {
-       return fileDescriptor_39529ba7ad9caeb8, []int{53}
+       return fileDescriptor_39529ba7ad9caeb8, []int{55}
 }
 func (m *CommandAddPartitionToTxn) XXX_Unmarshal(b []byte) error {
        return m.Unmarshal(b)
@@ -5380,7 +5539,7 @@ func (m *CommandAddPartitionToTxnResponse) Reset()        
 { *m = CommandAddPart
 func (m *CommandAddPartitionToTxnResponse) String() string { return 
proto.CompactTextString(m) }
 func (*CommandAddPartitionToTxnResponse) ProtoMessage()    {}
 func (*CommandAddPartitionToTxnResponse) Descriptor() ([]byte, []int) {
-       return fileDescriptor_39529ba7ad9caeb8, []int{54}
+       return fileDescriptor_39529ba7ad9caeb8, []int{56}
 }
 func (m *CommandAddPartitionToTxnResponse) XXX_Unmarshal(b []byte) error {
        return m.Unmarshal(b)
@@ -5459,7 +5618,7 @@ func (m *Subscription) Reset()         { *m = 
Subscription{} }
 func (m *Subscription) String() string { return proto.CompactTextString(m) }
 func (*Subscription) ProtoMessage()    {}
 func (*Subscription) Descriptor() ([]byte, []int) {
-       return fileDescriptor_39529ba7ad9caeb8, []int{55}
+       return fileDescriptor_39529ba7ad9caeb8, []int{57}
 }
 func (m *Subscription) XXX_Unmarshal(b []byte) error {
        return m.Unmarshal(b)
@@ -5516,7 +5675,7 @@ func (m *CommandAddSubscriptionToTxn) Reset()         { 
*m = CommandAddSubscript
 func (m *CommandAddSubscriptionToTxn) String() string { return 
proto.CompactTextString(m) }
 func (*CommandAddSubscriptionToTxn) ProtoMessage()    {}
 func (*CommandAddSubscriptionToTxn) Descriptor() ([]byte, []int) {
-       return fileDescriptor_39529ba7ad9caeb8, []int{56}
+       return fileDescriptor_39529ba7ad9caeb8, []int{58}
 }
 func (m *CommandAddSubscriptionToTxn) XXX_Unmarshal(b []byte) error {
        return m.Unmarshal(b)
@@ -5591,7 +5750,7 @@ func (m *CommandAddSubscriptionToTxnResponse) Reset()     
    { *m = CommandAddS
 func (m *CommandAddSubscriptionToTxnResponse) String() string { return 
proto.CompactTextString(m) }
 func (*CommandAddSubscriptionToTxnResponse) ProtoMessage()    {}
 func (*CommandAddSubscriptionToTxnResponse) Descriptor() ([]byte, []int) {
-       return fileDescriptor_39529ba7ad9caeb8, []int{57}
+       return fileDescriptor_39529ba7ad9caeb8, []int{59}
 }
 func (m *CommandAddSubscriptionToTxnResponse) XXX_Unmarshal(b []byte) error {
        return m.Unmarshal(b)
@@ -5672,7 +5831,7 @@ func (m *CommandEndTxn) Reset()         { *m = 
CommandEndTxn{} }
 func (m *CommandEndTxn) String() string { return proto.CompactTextString(m) }
 func (*CommandEndTxn) ProtoMessage()    {}
 func (*CommandEndTxn) Descriptor() ([]byte, []int) {
-       return fileDescriptor_39529ba7ad9caeb8, []int{58}
+       return fileDescriptor_39529ba7ad9caeb8, []int{60}
 }
 func (m *CommandEndTxn) XXX_Unmarshal(b []byte) error {
        return m.Unmarshal(b)
@@ -5747,7 +5906,7 @@ func (m *CommandEndTxnResponse) Reset()         { *m = 
CommandEndTxnResponse{} }
 func (m *CommandEndTxnResponse) String() string { return 
proto.CompactTextString(m) }
 func (*CommandEndTxnResponse) ProtoMessage()    {}
 func (*CommandEndTxnResponse) Descriptor() ([]byte, []int) {
-       return fileDescriptor_39529ba7ad9caeb8, []int{59}
+       return fileDescriptor_39529ba7ad9caeb8, []int{61}
 }
 func (m *CommandEndTxnResponse) XXX_Unmarshal(b []byte) error {
        return m.Unmarshal(b)
@@ -5830,7 +5989,7 @@ func (m *CommandEndTxnOnPartition) Reset()         { *m = 
CommandEndTxnOnPartiti
 func (m *CommandEndTxnOnPartition) String() string { return 
proto.CompactTextString(m) }
 func (*CommandEndTxnOnPartition) ProtoMessage()    {}
 func (*CommandEndTxnOnPartition) Descriptor() ([]byte, []int) {
-       return fileDescriptor_39529ba7ad9caeb8, []int{60}
+       return fileDescriptor_39529ba7ad9caeb8, []int{62}
 }
 func (m *CommandEndTxnOnPartition) XXX_Unmarshal(b []byte) error {
        return m.Unmarshal(b)
@@ -5919,7 +6078,7 @@ func (m *CommandEndTxnOnPartitionResponse) Reset()        
 { *m = CommandEndTxnO
 func (m *CommandEndTxnOnPartitionResponse) String() string { return 
proto.CompactTextString(m) }
 func (*CommandEndTxnOnPartitionResponse) ProtoMessage()    {}
 func (*CommandEndTxnOnPartitionResponse) Descriptor() ([]byte, []int) {
-       return fileDescriptor_39529ba7ad9caeb8, []int{61}
+       return fileDescriptor_39529ba7ad9caeb8, []int{63}
 }
 func (m *CommandEndTxnOnPartitionResponse) XXX_Unmarshal(b []byte) error {
        return m.Unmarshal(b)
@@ -6002,7 +6161,7 @@ func (m *CommandEndTxnOnSubscription) Reset()         { 
*m = CommandEndTxnOnSubs
 func (m *CommandEndTxnOnSubscription) String() string { return 
proto.CompactTextString(m) }
 func (*CommandEndTxnOnSubscription) ProtoMessage()    {}
 func (*CommandEndTxnOnSubscription) Descriptor() ([]byte, []int) {
-       return fileDescriptor_39529ba7ad9caeb8, []int{62}
+       return fileDescriptor_39529ba7ad9caeb8, []int{64}
 }
 func (m *CommandEndTxnOnSubscription) XXX_Unmarshal(b []byte) error {
        return m.Unmarshal(b)
@@ -6091,7 +6250,7 @@ func (m *CommandEndTxnOnSubscriptionResponse) Reset()     
    { *m = CommandEndT
 func (m *CommandEndTxnOnSubscriptionResponse) String() string { return 
proto.CompactTextString(m) }
 func (*CommandEndTxnOnSubscriptionResponse) ProtoMessage()    {}
 func (*CommandEndTxnOnSubscriptionResponse) Descriptor() ([]byte, []int) {
-       return fileDescriptor_39529ba7ad9caeb8, []int{63}
+       return fileDescriptor_39529ba7ad9caeb8, []int{65}
 }
 func (m *CommandEndTxnOnSubscriptionResponse) XXX_Unmarshal(b []byte) error {
        return m.Unmarshal(b)
@@ -6212,6 +6371,8 @@ type BaseCommand struct {
        EndTxnOnPartitionResponse    *CommandEndTxnOnPartitionResponse    
`protobuf:"bytes,59,opt,name=endTxnOnPartitionResponse" 
json:"endTxnOnPartitionResponse,omitempty"`
        EndTxnOnSubscription         *CommandEndTxnOnSubscription         
`protobuf:"bytes,60,opt,name=endTxnOnSubscription" 
json:"endTxnOnSubscription,omitempty"`
        EndTxnOnSubscriptionResponse *CommandEndTxnOnSubscriptionResponse 
`protobuf:"bytes,61,opt,name=endTxnOnSubscriptionResponse" 
json:"endTxnOnSubscriptionResponse,omitempty"`
+       TcClientConnectRequest       *CommandTcClientConnectRequest       
`protobuf:"bytes,62,opt,name=tcClientConnectRequest" 
json:"tcClientConnectRequest,omitempty"`
+       TcClientConnectResponse      *CommandTcClientConnectResponse      
`protobuf:"bytes,63,opt,name=tcClientConnectResponse" 
json:"tcClientConnectResponse,omitempty"`
        XXX_NoUnkeyedLiteral         struct{}                             
`json:"-"`
        XXX_unrecognized             []byte                               
`json:"-"`
        XXX_sizecache                int32                                
`json:"-"`
@@ -6221,7 +6382,7 @@ func (m *BaseCommand) Reset()         { *m = 
BaseCommand{} }
 func (m *BaseCommand) String() string { return proto.CompactTextString(m) }
 func (*BaseCommand) ProtoMessage()    {}
 func (*BaseCommand) Descriptor() ([]byte, []int) {
-       return fileDescriptor_39529ba7ad9caeb8, []int{64}
+       return fileDescriptor_39529ba7ad9caeb8, []int{66}
 }
 func (m *BaseCommand) XXX_Unmarshal(b []byte) error {
        return m.Unmarshal(b)
@@ -6614,6 +6775,20 @@ func (m *BaseCommand) GetEndTxnOnSubscriptionResponse() 
*CommandEndTxnOnSubscrip
        return nil
 }
 
+func (m *BaseCommand) GetTcClientConnectRequest() 
*CommandTcClientConnectRequest {
+       if m != nil {
+               return m.TcClientConnectRequest
+       }
+       return nil
+}
+
+func (m *BaseCommand) GetTcClientConnectResponse() 
*CommandTcClientConnectResponse {
+       if m != nil {
+               return m.TcClientConnectResponse
+       }
+       return nil
+}
+
 func init() {
        proto.RegisterEnum("pulsar.proto.CompressionType", 
CompressionType_name, CompressionType_value)
        proto.RegisterEnum("pulsar.proto.ProducerAccessMode", 
ProducerAccessMode_name, ProducerAccessMode_value)
@@ -6682,6 +6857,8 @@ func init() {
        proto.RegisterType((*CommandGetSchemaResponse)(nil), 
"pulsar.proto.CommandGetSchemaResponse")
        proto.RegisterType((*CommandGetOrCreateSchema)(nil), 
"pulsar.proto.CommandGetOrCreateSchema")
        proto.RegisterType((*CommandGetOrCreateSchemaResponse)(nil), 
"pulsar.proto.CommandGetOrCreateSchemaResponse")
+       proto.RegisterType((*CommandTcClientConnectRequest)(nil), 
"pulsar.proto.CommandTcClientConnectRequest")
+       proto.RegisterType((*CommandTcClientConnectResponse)(nil), 
"pulsar.proto.CommandTcClientConnectResponse")
        proto.RegisterType((*CommandNewTxn)(nil), "pulsar.proto.CommandNewTxn")
        proto.RegisterType((*CommandNewTxnResponse)(nil), 
"pulsar.proto.CommandNewTxnResponse")
        proto.RegisterType((*CommandAddPartitionToTxn)(nil), 
"pulsar.proto.CommandAddPartitionToTxn")
@@ -6701,393 +6878,403 @@ func init() {
 func init() { proto.RegisterFile("PulsarApi.proto", 
fileDescriptor_39529ba7ad9caeb8) }
 
 var fileDescriptor_39529ba7ad9caeb8 = []byte{
-       // 6163 bytes of a gzipped FileDescriptorProto
-       0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xdc, 0x3c, 
0x4b, 0x70, 0x1b, 0x47,
-       0x76, 0x1a, 0x00, 0x24, 0x81, 0x07, 0x02, 0x6c, 0x35, 0x29, 0x69, 0xf4, 
0x31, 0x45, 0x8d, 0x2c,
-       0x9b, 0x96, 0x2d, 0xad, 0x44, 0xc9, 0xb2, 0x2d, 0x7b, 0xb3, 0x06, 0x41, 
0x48, 0xc2, 0x92, 0x04,
-       0xb8, 0x03, 0x50, 0x8e, 0x9d, 0xdd, 0xcc, 0x0e, 0x67, 0x9a, 0xe0, 0x14, 
0x07, 0x33, 0xd8, 0x99,
-       0x01, 0x25, 0xba, 0x2a, 0x39, 0xe4, 0x92, 0x53, 0x2a, 0x95, 0x43, 0xae, 
0x49, 0x25, 0xa7, 0xe4,
-       0x98, 0xaa, 0x3d, 0xa4, 0x2a, 0x55, 0xc9, 0x25, 0x9f, 0xad, 0xca, 0x25, 
0xa9, 0x4a, 0x0e, 0x7b,
-       0xda, 0xd4, 0x56, 0x3e, 0x87, 0xad, 0xa4, 0x72, 0xcb, 0x31, 0xa9, 0xfe, 
0xcc, 0x0f, 0x18, 0x00,
-       0x94, 0xbd, 0x29, 0xbb, 0x7c, 0xc2, 0xcc, 0xeb, 0xd7, 0x6f, 0x5e, 0xbf, 
0xf7, 0xfa, 0xbd, 0xd7,
-       0xaf, 0xbb, 0x01, 0x4b, 0x7b, 0x43, 0xdb, 0xd7, 0xbd, 0xda, 0xc0, 0xba, 
0x3b, 0xf0, 0xdc, 0xc0,
-       0xc5, 0x8b, 0x03, 0x06, 0xe0, 0x6f, 0xca, 0x8f, 0xf3, 0x30, 0xdf, 0x31, 
0x8e, 0x48, 0x5f, 0xc7,
-       0x18, 0x0a, 0x8e, 0xde, 0x27, 0xb2, 0xb4, 0x96, 0x5b, 0x2f, 0xa9, 0xec, 
0x19, 0x5f, 0x87, 0xb2,
-       0xcf, 0x5a, 0x35, 0x53, 0x0f, 0x74, 0x39, 0xbf, 0x96, 0x5b, 0x5f, 0x54, 
0x81, 0x83, 0xb6, 0xf4,
-       0x40, 0xc7, 0x77, 0xa0, 0x10, 0x9c, 0x0e, 0x88, 0x5c, 0x58, 0xcb, 0xad, 
0x57, 0x37, 0x2e, 0xdf,
-       0x4d, 0x12, 0xbf, 0xcb, 0x09, 0xdf, 0xed, 0x9e, 0x0e, 0x88, 0xca, 0xd0, 
0xf0, 0x23, 0x80, 0x81,
-       0xe7, 0x0e, 0x88, 0x17, 0x58, 0xc4, 0x97, 0xe7, 0xd6, 0xf2, 0xeb, 0xe5, 
0x8d, 0x8b, 0xe9, 0x4e,
-       0xdb, 0xe4, 0xf4, 0xb9, 0x6e, 0x0f, 0x89, 0x9a, 0xc0, 0x54, 0x7e, 0x27, 
0x07, 0x05, 0x4a, 0x06,
-       0x17, 0xa1, 0xd0, 0x72, 0x1d, 0x82, 0xce, 0x61, 0x80, 0xf9, 0x4e, 0xe0, 
0x59, 0x4e, 0x0f, 0x49,
-       0x14, 0xfa, 0x5d, 0xdf, 0x75, 0x50, 0x0e, 0x2f, 0x42, 0x71, 0x8f, 0x92, 
0x39, 0x18, 0x1e, 0xa2,
-       0x3c, 0x85, 0xd7, 0x4e, 0x3c, 0x17, 0x15, 0xe8, 0xd3, 0xa6, 0xeb, 0xda, 
0x68, 0x8e, 0x3e, 0x35,
-       0x9d, 0xe0, 0x7d, 0x34, 0x8f, 0x4b, 0x30, 0xd7, 0x74, 0x82, 0xfb, 0x8f, 
0xd0, 0x82, 0x78, 0x7c,
-       0xb0, 0x81, 0x8a, 0xe2, 0xf1, 0xd1, 0x43, 0x54, 0xa2, 0x8f, 0x4f, 0x6c, 
0x57, 0x0f, 0x10, 0xd0,
-       0xaf, 0x6d, 0xb9, 0xc3, 0x03, 0x9b, 0xa0, 0x32, 0xa5, 0xb0, 0xa5, 0x07, 
0x04, 0x2d, 0xd2, 0xa7,
-       0xae, 0xd5, 0x27, 0xa8, 0x82, 0x2b, 0x50, 0xa2, 0x4f, 0x7e, 0xa0, 0xf7, 
0x07, 0xa8, 0x4a, 0xd9,
-       0x08, 0xc7, 0x81, 0x96, 0x70, 0x19, 0x16, 0x9a, 0x8e, 0x1f, 0xe8, 0x4e, 
0x80, 0x10, 0xc5, 0xdc,
-       0x71, 0x0d, 0xdd, 0x66, 0x24, 0xce, 0x47, 0xaf, 0x8c, 0x0e, 0xc6, 0xe7, 
0xa1, 0x12, 0xb5, 0x32,
-       0xd0, 0x32, 0xc6, 0x50, 0x0d, 0x87, 0xd4, 0xd2, 0x03, 0xeb, 0x84, 0xa0, 
0x15, 0xe5, 0xaf, 0x25,
-       0xa8, 0xec, 0x12, 0xdf, 0xd7, 0x7b, 0xa4, 0x69, 0x32, 0x45, 0x5c, 0x81, 
0xa2, 0x4d, 0xcc, 0x1e,
-       0xf1, 0x9a, 0x26, 0xd3, 0x60, 0x41, 0x8d, 0xde, 0xb1, 0x0c, 0x0b, 0xc4, 
0x09, 0xbc, 0xd3, 0xa6,
-       0x29, 0xe7, 0x58, 0x53, 0xf8, 0x8a, 0xd7, 0xa0, 0x34, 0xd0, 0xbd, 0xc0, 
0x0a, 0x2c, 0xd7, 0x91,
-       0xf3, 0x6b, 0xd2, 0xfa, 0xdc, 0xe3, 0xdc, 0x9d, 0xfb, 0x6a, 0x0c, 0xc4, 
0x37, 0xa1, 0x7c, 0xa0,
-       0x07, 0xc6, 0x91, 0x66, 0x39, 0x26, 0x79, 0x29, 0x17, 0x22, 0x1c, 0x60, 
0xe0, 0x26, 0x85, 0xe2,
-       0x4b, 0xb0, 0xa0, 0x1b, 0xc7, 0x9a, 0x4f, 0x02, 0xa6, 0xd3, 0xbc, 0x3a, 
0xaf, 0x1b, 0xc7, 0x1d,
-       0x12, 0xe0, 0xd7, 0x80, 0xa3, 0x69, 0xbe, 0xf5, 0x39, 0x91, 0xe7, 0x69, 
0x67, 0xb5, 0xc4, 0x20,
-       0x1d, 0xeb, 0x73, 0xa2, 0x6c, 0xc4, 0x62, 0xc2, 0x08, 0xf2, 0xc7, 0xe4, 
0x54, 0x58, 0x1f, 0x7d,
-       0xc4, 0x2b, 0x30, 0x77, 0x42, 0x9b, 0x18, 0xd3, 0x25, 0x95, 0xbf, 0x28, 
0x8f, 0x60, 0x71, 0x9b,
-       0x9c, 0xee, 0xb8, 0x4e, 0xef, 0x4c, 0xfd, 0x0a, 0x61, 0xbf, 0x0d, 0x28, 
0x36, 0x9d, 0x40, 0xd5,
-       0x9d, 0x1e, 0xa1, 0x18, 0x7e, 0xa0, 0x7b, 0x01, 0xeb, 0x35, 0xa7, 0xf2, 
0x17, 0x4a, 0x89, 0x38,
-       0x5c, 0x44, 0x73, 0x2a, 0x7d, 0x54, 0x6c, 0xa8, 0x36, 0x1c, 0xc3, 0x3b, 
0x1d, 0x50, 0x51, 0x6c,
-       0x93, 0x53, 0x7f, 0xd6, 0xd7, 0x16, 0xc5, 0xd7, 0xf0, 0x06, 0x14, 0xfb, 
0x24, 0xd0, 0xc5, 0xac,
-       0x99, 0x66, 0xe6, 0x11, 0x9e, 0xf2, 0x8f, 0x25, 0x58, 0x12, 0x4a, 0xdd, 
0x15, 0x30, 0x7c, 0x13,
-       0x2a, 0x03, 0xcf, 0x35, 0x87, 0x06, 0xf1, 0xb4, 0xc4, 0xec, 0x5c, 0x0c, 
0x81, 0xad, 0x70, 0x96,
-       0x92, 0x1f, 0x0d, 0x89, 0x63, 0x10, 0xcd, 0x0a, 0x75, 0x0c, 0x21, 0xa8, 
0x69, 0xe2, 0x1b, 0xb0,
-       0x38, 0x18, 0x1e, 0xd8, 0x96, 0x7f, 0xa4, 0x05, 0x56, 0x9f, 0xb0, 0x79, 
0x5c, 0x50, 0xcb, 0x02,
-       0x46, 0xed, 0x6c, 0x64, 0x66, 0x16, 0xce, 0x3a, 0x33, 0xf1, 0x9b, 0xb0, 
0xe4, 0x91, 0x81, 0x6d,
-       0x19, 0x7a, 0x40, 0x4c, 0xed, 0xd0, 0x73, 0xfb, 0xf2, 0xdc, 0x9a, 0xb4, 
0x5e, 0x52, 0xab, 0x31,
-       0xf8, 0x89, 0xe7, 0xf6, 0xd9, 0x48, 0x42, 0xab, 0xd2, 0xa8, 0x0c, 0xe7, 
0x19, 0xda, 0x62, 0x04,
-       0xdc, 0x26, 0xa7, 0x94, 0xd1, 0xa8, 0x9b, 0x16, 0xb8, 0xf2, 0xc2, 0x5a, 
0x7e, 0xbd, 0xa4, 0x96,
-       0x23, 0x58, 0xd7, 0xc5, 0x0d, 0x28, 0x1b, 0x6e, 0x7f, 0xe0, 0x11, 0xdf, 
0xa7, 0x46, 0x5b, 0x5c,
-       0x93, 0xd6, 0xab, 0x1b, 0xaf, 0xa5, 0x39, 0xad, 0xc7, 0x08, 0xd4, 0x6b, 
0x3c, 0x2e, 0xb4, 0xda,
-       0xad, 0x86, 0x9a, 0xec, 0x87, 0xef, 0xc2, 0xf9, 0xa1, 0x13, 0x02, 0x88, 
0xc9, 0x0d, 0xb4, 0xb4,
-       0x26, 0xad, 0x57, 0x1e, 0x4b, 0xf7, 0x54, 0x94, 0x6c, 0xa3, 0xa6, 0x8a, 
0x1f, 0xc2, 0x05, 0x67,
-       0xd8, 0xd7, 0xfa, 0x5c, 0x3f, 0xbe, 0x66, 0x39, 0x1a, 0xb3, 0x63, 0xb9, 
0xcc, 0x66, 0x84, 0x74,
-       0x5f, 0xc5, 0xce, 0xb0, 0x2f, 0xd4, 0xe7, 0x37, 0x9d, 0x4d, 0xda, 0x88, 
0xd7, 0x00, 0xc8, 0x09,
-       0x71, 0x02, 0x2e, 0xf6, 0xc5, 0x35, 0x69, 0xbd, 0x40, 0xc9, 0x97, 0x18, 
0x90, 0xc9, 0xbd, 0x01,
-       0x4b, 0x24, 0x32, 0x31, 0x2a, 0x17, 0x5f, 0xae, 0x30, 0xe1, 0x5f, 0x4b, 
0x0f, 0x29, 0x6d, 0x87,
-       0x6a, 0x95, 0xa4, 0xed, 0xf2, 0xcd, 0x14, 0x19, 0xdd, 0xee, 0xb9, 0x72, 
0x95, 0xab, 0x21, 0x06,
-       0xd7, 0xec, 0x9e, 0x8b, 0xdf, 0x02, 0x94, 0x40, 0x1c, 0xe8, 0x9e, 0xde, 
0x97, 0x97, 0xd6, 0xa4,
-       0xf5, 0x45, 0x35, 0x41, 0x60, 0x8f, 0x82, 0xf1, 0x2d, 0xa8, 0x0a, 0xe7, 
0x7f, 0x42, 0x3c, 0x26,
-       0x6c, 0xc4, 0x10, 0x2b, 0x1c, 0xfa, 0x9c, 0x03, 0xf1, 0xc7, 0x70, 0x39, 
0xa5, 0x58, 0xed, 0xe0,
-       0xd1, 0x43, 0x8d, 0x38, 0x86, 0x6b, 0x12, 0x53, 0x3e, 0xbf, 0x26, 0xad, 
0x17, 0x1f, 0xcf, 0x1d,
-       0xea, 0xb6, 0x4f, 0xd4, 0x8b, 0x49, 0x5d, 0x6f, 0x3e, 0x7a, 0xd8, 0xe0, 
0x48, 0x54, 0xeb, 0xae,
-       0x67, 0x12, 0xea, 0xcc, 0x99, 0x65, 0x60, 0xf6, 0x99, 0x72, 0x08, 0xa3, 
0x86, 0xf1, 0x06, 0x2c,
-       0x99, 0xc4, 0xb6, 0x4e, 0x88, 0xa7, 0xe9, 0x42, 0x9a, 0xcb, 0x6b, 0xd2, 
0x7a, 0x5e, 0xad, 0x08,
-       0x70, 0x8d, 0x8b, 0xf3, 0x3a, 0x94, 0xfb, 0xba, 0x77, 0x4c, 0x3c, 0x8d, 
0x85, 0xa5, 0x15, 0xe6,
-       0x71, 0x80, 0x83, 0x58, 0x00, 0x59, 0x07, 0x14, 0xbc, 0x74, 0x2c, 0x53, 
0xb3, 0x89, 0xee, 0x07,
-       0xda, 0x81, 0x15, 0xf8, 0xf2, 0x45, 0xaa, 0x17, 0xb5, 0xca, 0xe0, 0x3b, 
0x14, 0xbc, 0x69, 0x05,
-       0x3e, 0xfd, 0x24, 0xc7, 0xec, 0xbb, 0x21, 0xe2, 0x25, 0x86, 0x58, 0x61, 
0xe0, 0x5d, 0x57, 0xe0,
-       0xdd, 0x87, 0xe5, 0x23, 0xab, 0x77, 0x44, 0xfc, 0x40, 0x4b, 0xce, 0x42, 
0x39, 0x54, 0xf6, 0x79,
-       0xd1, 0xda, 0x89, 0xe7, 0xe3, 0xeb, 0x00, 0xce, 0xd0, 0xb6, 0x35, 0xee, 
0x38, 0x2e, 0x27, 0x65,
-       0x54, 0xa2, 0x0d, 0xdc, 0xb3, 0x61, 0x28, 0x0c, 0x87, 0x96, 0x29, 0x5f, 
0x61, 0x8a, 0x64, 0xcf,
-       0xf8, 0x0e, 0x2c, 0x53, 0x33, 0x34, 0x8e, 0x86, 0xce, 0xb1, 0xcf, 0xa6, 
0x9b, 0xd6, 0xf7, 0x7b,
-       0xf2, 0x55, 0x36, 0x4e, 0xe4, 0x0c, 0xfb, 0x75, 0xd6, 0x42, 0x67, 0xdc, 
0xae, 0xdf, 0xc3, 0xdf,
-       0x82, 0x95, 0xc0, 0x0d, 0x74, 0x9b, 0x77, 0xa0, 0xa8, 0xdc, 0xd0, 0xaf, 
0x31, 0xfc, 0xf3, 0xac,
-       0x8d, 0xf5, 0xd8, 0xf5, 0x7b, 0xcc, 0xcc, 0x2f, 0x43, 0x91, 0xa3, 0x5a, 
0xa6, 0xfc, 0x1a, 0x43,
-       0x5a, 0x60, 0xef, 0x4d, 0x13, 0x3f, 0x00, 0xcc, 0x98, 0x4e, 0xcf, 0xe2, 
0xd5, 0x24, 0xf3, 0x88,
-       0x22, 0xec, 0x25, 0x94, 0xac, 0xfc, 0x6d, 0x1e, 0x2e, 0x74, 0x2c, 0xa7, 
0x67, 0x93, 0x51, 0xcf,
-       0x96, 0x76, 0x38, 0xd2, 0x99, 0x1d, 0xce, 0x98, 0x1f, 0xc9, 0x65, 0xfb, 
0x91, 0x81, 0x7e, 0x6a,
-       0xbb, 0xba, 0x98, 0xd8, 0x79, 0xe6, 0xd3, 0xcb, 0x02, 0xc6, 0x46, 0x7a, 
0x1b, 0x2a, 0x74, 0x8a,
-       0xeb, 0x06, 0xf5, 0x5b, 0xee, 0x30, 0x60, 0xa1, 0x2d, 0x1a, 0xc9, 0x62, 
0xd4, 0xd6, 0x1e, 0x06,
-       0x23, 0xd3, 0x78, 0x2e, 0x63, 0x1a, 0x4f, 0x9d, 0x04, 0xf3, 0x5f, 0x64, 
0x12, 0x2c, 0x8c, 0x4f,
-       0x82, 0x11, 0x3f, 0x5f, 0x64, 0xd6, 0x98, 0xf4, 0xf3, 0x69, 0xbb, 0x2a, 
0x4d, 0xb0, 0xab, 0x6c,
-       0x45, 0xc2, 0x74, 0x45, 0x3e, 0x87, 0xe5, 0x4d, 0xcf, 0x3d, 0x26, 0x5e, 
0x83, 0xa6, 0x0e, 0x91,
-       0x16, 0xdf, 0x02, 0x74, 0xc0, 0xc0, 0x4c, 0x34, 0x2c, 0xfd, 0x91, 0x25, 
0xc6, 0xd7, 0x12, 0x87,
-       0x47, 0x59, 0x11, 0x0d, 0x94, 0x3c, 0x87, 0xc8, 0xb1, 0x76, 0xfe, 0xa2, 
0xfc, 0x7b, 0x1e, 0xaa,
-       0x75, 0xb7, 0xdf, 0xd7, 0x1d, 0xb3, 0xee, 0x3a, 0x0e, 0x31, 0x02, 0xea, 
0x77, 0x0c, 0xdb, 0xa2,
-       0xe2, 0x0e, 0xfd, 0x0e, 0x0f, 0x7a, 0x15, 0x0e, 0x0d, 0xfd, 0xce, 0x07, 
0x50, 0xd6, 0x87, 0xc1,
-       0x91, 0xd6, 0x27, 0xc1, 0x91, 0x6b, 0x32, 0xaa, 0xd5, 0x0d, 0x39, 0x6d, 
0x41, 0xb5, 0x61, 0x70,
-       0xb4, 0xcb, 0xda, 0x55, 0xd0, 0xa3, 0x67, 0xea, 0x04, 0x12, 0x5d, 0x79, 
0x60, 0x15, 0x51, 0x2b,
-       0xc6, 0x62, 0xa1, 0xf5, 0x2a, 0x94, 0x18, 0xa6, 0x08, 0xe4, 0x54, 0x25, 
0x45, 0x0a, 0x60, 0x39,
-       0xd7, 0x3b, 0x80, 0xd8, 0x67, 0x0c, 0xd7, 0x8e, 0x58, 0xe5, 0x09, 0x92, 
0x74, 0x4f, 0x5d, 0x0a,
-       0x9b, 0x42, 0x7e, 0xef, 0xc0, 0xf2, 0xc0, 0x73, 0x5f, 0x9e, 0x6a, 0x81, 
0xab, 0x09, 0x99, 0x0d,
-       0x3d, 0x5b, 0x84, 0x41, 0xc4, 0x9a, 0xba, 0x2e, 0x97, 0xf1, 0xbe, 0x67, 
0xe3, 0x3b, 0x80, 0x5d,
-       0xcf, 0xea, 0x59, 0x8e, 0x6e, 0x6b, 0x03, 0xcf, 0x72, 0x0c, 0x6b, 0xa0, 
0xdb, 0xcc, 0x2a, 0x4a,
-       0xea, 0xf9, 0xb0, 0x65, 0x2f, 0x6c, 0xc0, 0xef, 0x24, 0xd0, 0x63, 0x8e, 
0x8b, 0x9c, 0x78, 0xd8,
-       0x52, 0x0b, 0x39, 0xbf, 0x07, 0x2b, 0x69, 0x6c, 0x21, 0xc4, 0x12, 0xc3, 
0xc7, 0x49, 0x7c, 0x21,
-       0xb2, 0xef, 0x40, 0xe5, 0x90, 0xe8, 0xc1, 0xd0, 0x23, 0xda, 0xa1, 0xad, 
0xf7, 0x7c, 0x66, 0x2f,
-       0xe5, 0x8d, 0x2b, 0x69, 0x79, 0x3f, 0xe1, 0x28, 0x4f, 0x28, 0x86, 0xba, 
0x78, 0x98, 0x78, 0x53,
-       0x7e, 0x5f, 0x82, 0xc5, 0x64, 0x33, 0xfe, 0x00, 0x2e, 0xf8, 0xc3, 0xc1, 
0xc0, 0xf5, 0x02, 0x9f,
-       0xf3, 0xe0, 0x91, 0x43, 0x8f, 0xf8, 0x47, 0xcc, 0x7e, 0x22, 0x4b, 0x5c, 
0x0e, 0x71, 0x28, 0x2f,
-       0x2a, 0xc7, 0xc0, 0xdf, 0x85, 0xd5, 0xa8, 0xab, 0x10, 0x25, 0xcb, 0x68, 
0xb5, 0x28, 0xe7, 0xca,
-       0x25, 0x69, 0x5c, 0x0d, 0x91, 0x33, 0x2c, 0x58, 0xf9, 0x3d, 0x09, 0x50, 
0xda, 0x00, 0x89, 0xc9,
-       0x42, 0x1f, 0xf1, 0x68, 0xb4, 0x19, 0x31, 0x41, 0x0e, 0x0d, 0x55, 0x9a, 
0x65, 0x00, 0xb9, 0x89,
-       0x06, 0xb0, 0x0e, 0xa8, 0xaf, 0xbf, 0x0c, 0x53, 0x88, 0xd0, 0x31, 0x51, 
0x1f, 0x5b, 0xed, 0xeb,
-       0x2f, 0x85, 0x7f, 0x64, 0x79, 0xf1, 0x1f, 0x48, 0xb0, 0x2c, 0x78, 0xe2, 
0xc3, 0xf6, 0x07, 0xae,
-       0xe3, 0x93, 0xcc, 0x99, 0x21, 0x8d, 0xcf, 0x8c, 0x0d, 0x28, 0x7a, 0xa2, 
0x0b, 0x63, 0x67, 0xcc,
-       0xb1, 0x86, 0x76, 0xa0, 0x46, 0x78, 0x99, 0x43, 0xc9, 0x4f, 0x1a, 0x8a, 
0xf2, 0x47, 0x12, 0xac,
-       0x24, 0x18, 0xac, 0x1f, 0xe9, 0xb6, 0x4d, 0x68, 0x66, 0x9d, 0x25, 0x38, 
0x69, 0x5c, 0x70, 0x0f,
-       0xa1, 0x64, 0x84, 0x7d, 0x66, 0xb0, 0x18, 0x23, 0xbe, 0x22, 0x8f, 0xdf, 
0x83, 0x62, 0x64, 0xef,
-       0x59, 0x13, 0x5e, 0x9a, 0x3d, 0xe1, 0x73, 0xe9, 0x09, 0xaf, 0xfc, 0xbd, 
0x04, 0x95, 0x6d, 0x72,
-       0xda, 0x39, 0xd2, 0x3d, 0x62, 0x52, 0x0b, 0xc2, 0x35, 0xa8, 0x1c, 0x47, 
0x00, 0xd7, 0xe4, 0xf9,
-       0x79, 0x75, 0xe3, 0xea, 0x58, 0x20, 0x8b, 0x51, 0xd4, 0x74, 0x0f, 0x1a, 
0x08, 0x8f, 0x74, 0xff,
-       0x88, 0xad, 0x4c, 0xfc, 0xec, 0xc5, 0x42, 0xb8, 0x70, 0x51, 0x13, 0x98, 
0xf8, 0x3b, 0x70, 0x49,
-       0xb7, 0x6d, 0xf7, 0x45, 0x7b, 0x18, 0xb4, 0x0f, 0xdb, 0x34, 0x4c, 0x6c, 
0xf1, 0x54, 0xe8, 0x34,
-       0x1d, 0xca, 0x26, 0x61, 0x29, 0xbf, 0x58, 0x88, 0x2c, 0xbf, 0x33, 0x3c, 
0xf0, 0x0d, 0xcf, 0x3a,
-       0x60, 0x4b, 0xa3, 0xc0, 0x1d, 0x58, 0x86, 0x30, 0x78, 0xfe, 0x82, 0x15, 
0x58, 0xf4, 0x39, 0x0a,
-       0xcb, 0x0f, 0xc5, 0x8a, 0x2c, 0x05, 0xc3, 0x1f, 0xc3, 0x82, 0x3f, 0x3c, 
0xa0, 0x49, 0x16, 0x0b,
-       0xb7, 0xd5, 0x8d, 0x37, 0xc6, 0x92, 0xf2, 0xd4, 0xa7, 0xee, 0x76, 0x38, 
0xb6, 0x1a, 0x76, 0xa3,
-       0xf1, 0xcd, 0x70, 0x1d, 0x7f, 0xd8, 0x27, 0x1e, 0x8d, 0x6f, 0x05, 0xbe, 
0x8e, 0x09, 0x41, 0x4d,
-       0x93, 0x2e, 0x27, 0x3d, 0x1a, 0xed, 0xfc, 0x80, 0xb6, 0xcf, 0xb1, 0xf6, 
0x92, 0x80, 0x34, 0x4d,
-       0x9a, 0x1a, 0x44, 0xfd, 0x99, 0x8a, 0xc5, 0x12, 0x23, 0x04, 0x32, 0x05, 
0xdf, 0x82, 0xea, 0xc0,
-       0xb3, 0x5c, 0xcf, 0x0a, 0x4e, 0x35, 0x9b, 0x9c, 0x10, 0xee, 0x53, 0xe7, 
0xd4, 0x4a, 0x08, 0xdd,
-       0xa1, 0x40, 0xbc, 0x0a, 0x0b, 0xe6, 0xd0, 0xd3, 0x0f, 0x6c, 0xc2, 0x9c, 
0x68, 0xf1, 0x71, 0x21,
-       0xf0, 0x86, 0x44, 0x0d, 0x81, 0xb8, 0x01, 0x88, 0xad, 0x1a, 0xa3, 0xe9, 
0x6c, 0x71, 0xef, 0x59,
-       0x1e, 0xd5, 0x7d, 0x6a, 0x99, 0xae, 0x56, 0x59, 0xa7, 0x08, 0x96, 0x5a, 
0x27, 0xc2, 0xd9, 0xd6,
-       0x89, 0x74, 0x04, 0x1e, 0xd1, 0x4d, 0x2d, 0x4a, 0x51, 0xd8, 0x1a, 0xa4, 
0xa8, 0x56, 0x28, 0xb4,
-       0x1e, 0x02, 0xf1, 0x3b, 0x30, 0xcf, 0x13, 0x75, 0xb6, 0xee, 0x28, 0x6f, 
0xac, 0x64, 0x15, 0x67,
-       0x54, 0x81, 0x83, 0x7f, 0x08, 0x4b, 0x96, 0x63, 0x05, 0x96, 0x6e, 0xef, 
0xb9, 0x3e, 0xaf, 0x07,
-       0x54, 0x58, 0x44, 0xbd, 0x3b, 0x43, 0x8b, 0xcd, 0x74, 0xaf, 0xc7, 0xf3, 
0x3b, 0x7a, 0x40, 0xfc,
-       0x40, 0x1d, 0x25, 0x87, 0x3f, 0x86, 0x6b, 0xf1, 0xda, 0x2e, 0x69, 0x39, 
0x9a, 0x1f, 0xe8, 0x01,
-       0x61, 0xeb, 0x95, 0xa2, 0x7a, 0x25, 0xc2, 0xe9, 0x24, 0x50, 0x3a, 0x14, 
0x03, 0x3f, 0x82, 0x95,
-       0x43, 0xd7, 0x33, 0xe8, 0xca, 0x70, 0x60, 0x19, 0x9a, 0xe1, 0x11, 0x9d, 
0x31, 0xba, 0x94, 0x50,
-       0x10, 0x66, 0x18, 0x5d, 0x8a, 0x50, 0x17, 0xed, 0xb8, 0x0d, 0x37, 0xd3, 
0xba, 0xf2, 0x5c, 0xdb,
-       0x3e, 0xd0, 0x8d, 0x63, 0x8d, 0x6a, 0x93, 0xb3, 0x40, 0x0c, 0xb6, 0xba, 
0x61, 0x79, 0xdd, 0xf5,
-       0xa4, 0x92, 0x54, 0x81, 0xbb, 0x25, 0x50, 0x3b, 0xc4, 0x48, 0xcf, 0x7a, 
0x12, 0xe8, 0x6c, 0x99,
-       0x53, 0x9e, 0x3c, 0xeb, 0x49, 0xa0, 0xab, 0xe9, 0x1e, 0xca, 0x26, 0x2c, 
0x08, 0xfb, 0xc7, 0x15,
-       0x28, 0x35, 0x5e, 0x1a, 0xf6, 0xd0, 0xb7, 0x4e, 0xc2, 0xc2, 0x16, 0xc3, 
0x43, 0x12, 0x5e, 0x84,
-       0xe2, 0x13, 0xdd, 0xb2, 0xdd, 0x13, 0xe2, 0xa1, 0x1c, 0xae, 0x02, 0x6c, 
0x93, 0x53, 0x4d, 0xb4,
-       0xe6, 0x95, 0xb7, 0x61, 0x69, 0x44, 0xfa, 0xb4, 0x33, 0x97, 0x3f, 0x3a, 
0x47, 0x3b, 0x37, 0x74,
-       0xcf, 0xb6, 0xe8, 0x9b, 0xa4, 0xfc, 0x9b, 0x04, 0xd7, 0x85, 0xf2, 0xa2, 
0xc4, 0x8e, 0x98, 0x4c,
-       0x50, 0x51, 0x36, 0x97, 0x3d, 0xf9, 0xd3, 0xb3, 0x2e, 0x37, 0x3a, 0xeb, 
0xb2, 0x13, 0x95, 0xfc,
-       0xab, 0x25, 0x2a, 0x85, 0x57, 0x4c, 0x54, 0xe6, 0x26, 0x25, 0x2a, 0xca, 
0x9f, 0xe7, 0xe0, 0xcd,
-       0x19, 0xe3, 0x8c, 0xe2, 0xe9, 0x2a, 0x40, 0x94, 0x04, 0xfb, 0x2c, 0x20, 
0x54, 0xd4, 0x04, 0x64,
-       0xd6, 0xc8, 0xbf, 0x9f, 0x88, 0xb3, 0x79, 0x36, 0x59, 0x3e, 0xce, 0x9c, 
0x2c, 0xb3, 0xf8, 0xb8,
-       0xbb, 0xe3, 0xba, 0xc7, 0xc3, 0x01, 0x73, 0x86, 0x71, 0x44, 0xfe, 0x16, 
0xcc, 0x11, 0xcf, 0x73,
-       0x3d, 0x26, 0x9b, 0xf1, 0xda, 0x2a, 0x8b, 0xa7, 0x0d, 0x8a, 0xa0, 0x72, 
0x3c, 0x2c, 0xc3, 0x82,
-       0x30, 0x70, 0x21, 0x9e, 0xf0, 0x55, 0xb9, 0x05, 0x10, 0x7f, 0x02, 0x97, 
0xa9, 0xe9, 0x19, 0x06,
-       0xf1, 0x7d, 0x6e, 0x6d, 0xd4, 0xc2, 0xa8, 0xb5, 0x29, 0x7f, 0x95, 0x03, 
0x2c, 0x58, 0x16, 0xe8,
-       0x4c, 0xff, 0x5f, 0xc8, 0x2a, 0xde, 0x86, 0x0a, 0xd5, 0x17, 0xf5, 0xa8, 
0xac, 0x68, 0xc9, 0x04,
-       0x14, 0xc5, 0xa4, 0x74, 0xdb, 0x04, 0x13, 0x2a, 0xbc, 0x9a, 0x09, 0xcd, 
0xbd, 0xa2, 0x09, 0xcd,
-       0x4f, 0xcc, 0x75, 0xdf, 0x07, 0x59, 0x37, 0x4f, 0xe8, 0x7a, 0xd3, 0x27, 
0xa6, 0x66, 0x5b, 0x7e,
-       0x40, 0x9c, 0x30, 0xa4, 0xf0, 0x04, 0xfc, 0x62, 0xdc, 0xbe, 0x23, 0x9a, 
0x69, 0x70, 0x51, 0x7e,
-       0x9a, 0x87, 0x2b, 0xe3, 0x12, 0x8c, 0xec, 0xed, 0x76, 0xb8, 0x5a, 0xa2, 
0xda, 0xb3, 0x0c, 0xb2,
-       0xef, 0xd9, 0x22, 0x0d, 0x19, 0x83, 0xe3, 0x7b, 0xb0, 0x3c, 0x0a, 0xeb, 
0xda, 0xbe, 0x58, 0xed,
-       0x66, 0x35, 0xe1, 0xf6, 0x98, 0x39, 0x3e, 0xc8, 0x34, 0xc7, 0x0c, 0xce, 
0xb2, 0x2d, 0x30, 0xad,
-       0xe2, 0xc2, 0x4c, 0x15, 0xcf, 0x4d, 0x51, 0x71, 0x64, 0xcd, 0xf3, 0xaf, 
0x6e, 0xcd, 0x0b, 0x29,
-       0x6b, 0x66, 0x6b, 0x6d, 0xbe, 0x90, 0x3a, 0xf2, 0xdc, 0x61, 0xef, 0x48, 
0xf3, 0xb9, 0x18, 0xd8,
-       0x72, 0xaa, 0x98, 0x5e, 0x6b, 0xb3, 0x55, 0x15, 0x47, 0x8b, 0x85, 0xa5, 
0x3c, 0x48, 0xcd, 0x87,
-       0x45, 0x28, 0xaa, 0xc4, 0xb4, 0x3c, 0x62, 0x50, 0xaf, 0x59, 0x86, 0x05, 
0xb1, 0x0e, 0x40, 0x52,
-       0x62, 0x76, 0xe4, 0x94, 0xff, 0xca, 0xc3, 0x52, 0x38, 0xa1, 0x45, 0xf5, 
0x75, 0xc2, 0xd4, 0xb8,
-       0x0e, 0xe5, 0xa8, 0x68, 0x1b, 0xd7, 0x63, 0x43, 0xd0, 0x58, 0x1e, 0x93, 
0xcf, 0xc8, 0x63, 0xd2,
-       0x45, 0xdf, 0x82, 0x28, 0x71, 0x24, 0x8b, 0xbe, 0x37, 0xa1, 0x24, 0x0a, 
0x76, 0xc4, 0x4c, 0x4b,
-       0x3e, 0x86, 0xa7, 0xd2, 0x8b, 0xf9, 0x33, 0xa6, 0x17, 0x71, 0xde, 0xb0, 
0x70, 0x86, 0xbc, 0xe1,
-       0x12, 0xcc, 0x91, 0x81, 0x6b, 0x1c, 0xf1, 0x6a, 0x04, 0x8d, 0x9e, 0xfc, 
0x1d, 0xd7, 0xe1, 0xea,
-       0xd0, 0x27, 0x9e, 0x36, 0xf0, 0xdc, 0x13, 0xcb, 0x24, 0xa6, 0x96, 0x1e, 
0x52, 0x29, 0x11, 0xb3,
-       0x65, 0x8a, 0xb8, 0x27, 0xf0, 0xf6, 0x92, 0x83, 0xfc, 0x0c, 0x56, 0xa2, 
0x6e, 0x3a, 0x73, 0x59,
-       0x5a, 0x9f, 0x66, 0xd9, 0xc0, 0x8c, 0x68, 0x2d, 0xcd, 0x59, 0xd8, 0xb3, 
0xc6, 0x10, 0x69, 0x6e,
-       0xfd, 0x58, 0x44, 0x52, 0x15, 0x0f, 0xc6, 0xda, 0xa8, 0x96, 0x78, 0x1e, 
0xc1, 0xf9, 0x2f, 0xf3,
-       0x6a, 0x0a, 0x03, 0x35, 0x28, 0x44, 0xf9, 0xe3, 0x1c, 0x94, 0xc3, 0x74, 
0x87, 0x38, 0xe6, 0xa8,
-       0x5a, 0xa5, 0x31, 0xb5, 0xce, 0xac, 0xc3, 0xbf, 0x0e, 0x8b, 0xc9, 0x22, 
0x72, 0xb8, 0x78, 0xb9,
-       0xaf, 0x96, 0x13, 0xb5, 0x63, 0xfc, 0x76, 0x46, 0x89, 0xb2, 0x10, 0x4a, 
0x77, 0xb4, 0x4a, 0xf9,
-       0xd6, 0x78, 0x95, 0x32, 0xaa, 0x4f, 0x9d, 0xad, 0x50, 0x39, 0x3f, 0xa5, 
0x50, 0xb9, 0x06, 0x45,
-       0xcb, 0xe7, 0xc5, 0x43, 0x66, 0x0d, 0x91, 0x8d, 0x2d, 0x58, 0x3e, 0xab, 
0x1b, 0x2a, 0x7f, 0x23,
-       0x45, 0x31, 0x83, 0x0a, 0x49, 0x25, 0x06, 0xb1, 0x06, 0xc1, 0x2f, 0x41, 
0x56, 0x8f, 0x01, 0x12,
-       0xa9, 0x75, 0x7e, 0x76, 0x6a, 0x5d, 0xea, 0x47, 0x59, 0xf5, 0x84, 0x91, 
0x16, 0x26, 0x8f, 0x54,
-       0xf9, 0xc3, 0xb8, 0x0c, 0x40, 0xc7, 0xc1, 0x5c, 0xd1, 0x2f, 0x61, 0x14, 
0x91, 0xdb, 0xcb, 0x67,
-       0x6e, 0x90, 0x4e, 0x75, 0x7b, 0x05, 0xe6, 0x53, 0xa2, 0x20, 0xfe, 0x63, 
0x29, 0xaa, 0x94, 0x89,
-       0x81, 0x8f, 0x2e, 0x98, 0xa4, 0xb1, 0x05, 0x53, 0x5a, 0x88, 0x94, 0xbd, 
0xb3, 0x0b, 0xf1, 0x1d,
-       0x40, 0x1e, 0x11, 0xd5, 0xf5, 0x53, 0xcd, 0x70, 0x87, 0x4e, 0xc0, 0xd4, 
0xc0, 0x36, 0x48, 0x96,
-       0xe2, 0xa6, 0x3a, 0x6d, 0x49, 0x6e, 0x01, 0x16, 0x92, 0x5b, 0x80, 0xca, 
0x2f, 0x0a, 0x00, 0x61,
-       0xa9, 0xc0, 0x38, 0x9e, 0xcd, 0xf2, 0x87, 0x50, 0xa4, 0x84, 0x58, 0xf9, 
0x3e, 0xc7, 0x84, 0xb6,
-       0x96, 0x19, 0xc5, 0x6a, 0xc6, 0xf1, 0xdd, 0x9a, 0x71, 0xcc, 0x57, 0x90, 
0x3a, 0x7f, 0x18, 0x33,
-       0x9a, 0xfc, 0x2b, 0x8c, 0xb7, 0x03, 0xe8, 0x44, 0xb7, 0x2d, 0x93, 0x2f, 
0x08, 0x92, 0xa9, 0xd7,
-       0xfa, 0x44, 0x06, 0x9e, 0x47, 0x1d, 0xb8, 0x12, 0x97, 0x4e, 0xd2, 0x00, 
0xca, 0xd0, 0xd8, 0x86,
-       0xf7, 0x95, 0x31, 0x17, 0x1c, 0xed, 0x66, 0xa6, 0x2a, 0xdd, 0x59, 0x7e, 
0x60, 0xfe, 0x15, 0xfc,
-       0xc0, 0xc2, 0x04, 0x3f, 0x90, 0x8e, 0x3e, 0xbc, 0x8a, 0x1c, 0x47, 0x1f, 
0xe5, 0x2d, 0x58, 0x10,
-       0x72, 0xa5, 0x0b, 0x8e, 0xa6, 0x63, 0x5a, 0x27, 0x96, 0x39, 0xd4, 0x6d, 
0x74, 0x8e, 0xbe, 0xd7,
-       0x87, 0xfd, 0xa1, 0xcd, 0xb7, 0xa1, 0x25, 0xe5, 0x77, 0x25, 0x58, 0x1a, 
0x11, 0x01, 0x5e, 0x85,
-       0x2b, 0xfb, 0x23, 0x9b, 0x67, 0x75, 0xd7, 0xf3, 0x86, 0x6c, 0x1d, 0x87, 
0xce, 0xe1, 0x8b, 0x80,
-       0xb7, 0x48, 0x62, 0x27, 0x8e, 0xf5, 0x42, 0x12, 0x5e, 0x01, 0x54, 0x3f, 
0x22, 0xc6, 0xb1, 0x3f,
-       0xec, 0xef, 0x5a, 0x7e, 0x5f, 0x0f, 0x8c, 0x23, 0x94, 0xc3, 0x97, 0xe1, 
0x02, 0xdb, 0x49, 0xdb,
-       0x22, 0x1d, 0xe2, 0x59, 0xba, 0x6d, 0x7d, 0x4e, 0x78, 0x87, 0x3c, 0x5e, 
0x86, 0xa5, 0x2d, 0x12,
-       0xee, 0x58, 0x71, 0x60, 0x41, 0xf9, 0x9f, 0xd8, 0x1d, 0xd5, 0x8c, 0xe3, 
0x28, 0xf1, 0x9a, 0x69,
-       0x75, 0x59, 0xb2, 0xce, 0xbd, 0x82, 0xac, 0xf3, 0x13, 0x64, 0xfd, 0xcb, 
0x4b, 0xe2, 0x47, 0xd4,
-       0x36, 0x3f, 0xaa, 0xb6, 0x03, 0xb8, 0x1a, 0x0d, 0x9c, 0xaa, 0xa7, 0x2e, 
0x06, 0x57, 0x3f, 0x62,
-       0x5b, 0xde, 0x33, 0x25, 0xa0, 0x40, 0xc9, 0xf2, 0x35, 0x9d, 0xf5, 0x4d, 
0x97, 0x4f, 0x8b, 0x96,
-       0xcf, 0x49, 0x2a, 0xcf, 0xa3, 0x80, 0xf8, 0xc4, 0x76, 0x5f, 0xcc, 0xa6, 
0xf9, 0x06, 0x54, 0x05,
-       0xf7, 0x7b, 0xc4, 0xeb, 0x73, 0x99, 0xe6, 0xd6, 0x2b, 0xea, 0x08, 0x54, 
0xe9, 0x46, 0x4a, 0xdb,
-       0x77, 0xfc, 0xa8, 0x14, 0x35, 0x93, 0xfc, 0xf4, 0x25, 0x88, 0xf2, 0x17, 
0x52, 0x22, 0x7e, 0x93,
-       0xe3, 0x2f, 0x4b, 0xef, 0x4b, 0x45, 0xa4, 0x7b, 0xb0, 0x12, 0xf6, 0x4d, 
0xed, 0xc4, 0xb3, 0x90,
-       0xa4, 0xe2, 0x50, 0x1e, 0xf1, 0x86, 0xbc, 0xf2, 0x21, 0xc8, 0x82, 0x79, 
0x95, 0xe8, 0xc6, 0x11,
-       0x31, 0x1b, 0x8e, 0xd9, 0x3e, 0xec, 0x86, 0x09, 0xe6, 0xd4, 0x91, 0x28, 
0xcf, 0xa3, 0xf2, 0x6c,
-       0xdd, 0x76, 0x7d, 0x12, 0xe5, 0xab, 0x33, 0x03, 0xda, 0x0c, 0x91, 0x8e, 
0xd0, 0x0d, 0x6d, 0xec,
-       0x4b, 0xab, 0xea, 0xb7, 0x25, 0x78, 0x23, 0x1a, 0xad, 0x08, 0x2c, 0xfb, 
0x8e, 0x6e, 0x1c, 0x3b,
-       0xee, 0x0b, 0x76, 0x8c, 0xc5, 0x8c, 0xb2, 0xa3, 0x99, 0x9f, 0xfa, 0x08, 
0xca, 0xb1, 0x9a, 0xa8,
-       0xc5, 0xcd, 0x0c, 0x02, 0x10, 0xe9, 0xc9, 0x57, 0x7e, 0x10, 0x05, 0x59, 
0xb1, 0x46, 0x1e, 0x61,
-       0x5d, 0x1a, 0xb5, 0x8a, 0x38, 0x5d, 0xce, 0xcd, 0x4e, 0x97, 0x95, 0xff, 
0x95, 0xe0, 0xe2, 0xc8,
-       0x22, 0xe2, 0x8c, 0xdf, 0x19, 0x5b, 0x14, 0xe4, 0x32, 0x4e, 0x82, 0xbc, 
0x03, 0xc8, 0xd6, 0x47,
-       0xb2, 0x1e, 0x6a, 0xa8, 0x79, 0x76, 0x64, 0xa7, 0x4a, 0xdb, 0x12, 0xd9, 
0xdd, 0xf8, 0x06, 0x7f,
-       0x21, 0x6b, 0x83, 0x7f, 0x24, 0x51, 0x9e, 0x1b, 0x4d, 0x94, 0xf1, 0xdb, 
0x50, 0x8d, 0x58, 0xf3,
-       0x88, 0x6e, 0x9e, 0x8a, 0x1d, 0x4f, 0x9e, 0xdd, 0x47, 0x6c, 0xab, 0xb4, 
0x49, 0x79, 0x09, 0x8b,
-       0x42, 0x00, 0x3c, 0x5e, 0xcc, 0x18, 0x76, 0xe4, 0x40, 0x73, 0xaf, 0x9e, 
0x40, 0xe5, 0xd3, 0x09,
-       0x54, 0x25, 0x72, 0x07, 0x7b, 0x96, 0xd3, 0x4b, 0xbe, 0xba, 0x4e, 0x2f, 
0x69, 0xda, 0xc2, 0x96,
-       0x3a, 0x81, 0x1e, 0xcc, 0x54, 0xcb, 0xac, 0x9a, 0xb5, 0xf2, 0xdf, 0x05, 
0xb8, 0x96, 0x45, 0x58,
-       0xcd, 0x5e, 0x65, 0x8f, 0x7d, 0xe0, 0x7d, 0x00, 0x36, 0x30, 0xcd, 0xa0, 
0x0b, 0x9f, 0xdc, 0xac,
-       0x30, 0x52, 0x62, 0xc8, 0x75, 0xba, 0xc0, 0xb9, 0x09, 0x15, 0xde, 0x33, 
0x96, 0x07, 0x5b, 0x46,
-       0x32, 0x60, 0x98, 0x42, 0xae, 0x02, 0xf4, 0xfd, 0x9e, 0xaa, 0x07, 0xa4, 
0x2d, 0xf6, 0xc0, 0x25,
-       0x35, 0x01, 0xc1, 0xb7, 0x01, 0xf5, 0xfd, 0x9e, 0x58, 0x42, 0x0f, 0x86, 
0x01, 0xc5, 0x9a, 0x63,
-       0x58, 0x63, 0x70, 0x81, 0x4b, 0x7b, 0x46, 0x93, 0x98, 0x59, 0x02, 0xc7, 
0x4d, 0xc1, 0xb1, 0x02,
-       0xa9, 0xb2, 0xbc, 0x58, 0xe3, 0xa7, 0x4b, 0xf5, 0xb7, 0x01, 0xe9, 0x27, 
0xba, 0x65, 0xeb, 0x07,
-       0x76, 0x14, 0x40, 0x78, 0xba, 0x32, 0x06, 0xc7, 0xeb, 0xb0, 0x34, 0xa4, 
0x0e, 0x23, 0xf6, 0x14,
-       0x6c, 0x89, 0x59, 0x50, 0x47, 0xc1, 0x78, 0x13, 0xae, 0x1d, 0xd8, 0x2e, 
0x05, 0x85, 0xfa, 0x68,
-       0x3b, 0xfb, 0x02, 0xc7, 0x17, 0x1b, 0x9b, 0x45, 0x75, 0x2a, 0x0e, 0x35, 
0x32, 0xdd, 0x34, 0x69,
-       0x06, 0xc3, 0xd6, 0x8d, 0x25, 0x35, 0x7c, 0xa5, 0x21, 0xcf, 0x08, 0xb7, 
0x11, 0x3b, 0x96, 0x63,
-       0xf0, 0x53, 0x3f, 0x25, 0x75, 0x04, 0x8a, 0xb1, 0x38, 0x38, 0x59, 0xe1, 
0x87, 0x3b, 0xd8, 0xe9,
-       0x48, 0x1a, 0x2e, 0xb9, 0x9c, 0x1a, 0x2f, 0x07, 0x96, 0x47, 0x4c, 0x56, 
0x13, 0x97, 0xd4, 0x11,
-       0xa8, 0xd0, 0xd9, 0xa6, 0x6e, 0x1c, 0xdb, 0x6e, 0x8f, 0x55, 0xbf, 0x0b, 
0x6a, 0x02, 0xa2, 0x7c,
-       0x0a, 0x97, 0x84, 0xc5, 0x3d, 0x25, 0xc1, 0x8e, 0xee, 0x27, 0xf6, 0x1b, 
0xbe, 0xac, 0xa3, 0x4e,
-       0x54, 0x91, 0x47, 0x69, 0x47, 0x06, 0x5d, 0x87, 0x25, 0xe6, 0x84, 0x12, 
0xc1, 0x52, 0x9a, 0xbd,
-       0xf2, 0xa8, 0xd8, 0x29, 0x46, 0x67, 0xc4, 0xe2, 0x5f, 0x87, 0xd7, 0xa2, 
0x71, 0xf4, 0x75, 0xef,
-       0x58, 0x33, 0x89, 0x4d, 0x02, 0xa2, 0x0d, 0xc2, 0xcd, 0x8b, 0x33, 0x84, 
0xe7, 0x2b, 0x21, 0x85,
-       0x5d, 0xdd, 0x3b, 0xde, 0x62, 0xfd, 0xc3, 0x3a, 0xba, 0xf2, 0x33, 0x29, 
0x4a, 0xa7, 0x9e, 0x92,
-       0x80, 0x45, 0x5d, 0xbf, 0x7d, 0x48, 0xad, 0xd2, 0x1f, 0xe8, 0xc6, 0xcc, 
0x49, 0x7b, 0x0d, 0x4a,
-       0x4e, 0x88, 0x2b, 0x1c, 0x75, 0x0c, 0xc0, 0x2d, 0x28, 0xb0, 0x2a, 0x46, 
0x7e, 0xca, 0x06, 0x4b,
-       0xd6, 0x57, 0xef, 0xb2, 0x9a, 0x06, 0xec, 0x35, 0xd4, 0x4e, 0xb3, 0xd3, 
0x6d, 0xb4, 0xba, 0x2a,
-       0xa3, 0xa3, 0x3c, 0x80, 0x02, 0xab, 0x68, 0x54, 0x21, 0xd1, 0x86, 0xce, 
0x61, 0x0c, 0xd5, 0x56,
-       0xbb, 0xa5, 0x25, 0x60, 0x12, 0x5e, 0x80, 0x7c, 0x6d, 0x67, 0x07, 0xe5, 
0x94, 0xef, 0xc3, 0xcd,
-       0x29, 0x9f, 0x3a, 0xab, 0x77, 0xba, 0x08, 0xf3, 0x2c, 0x10, 0xf0, 0x38, 
0x5b, 0x52, 0xc5, 0x9b,
-       0xe2, 0x44, 0xab, 0xe9, 0xa7, 0x24, 0x10, 0x07, 0x8c, 0x67, 0x90, 0x8a, 
0x6a, 0x69, 0xb9, 0x64,
-       0x2d, 0x6d, 0x3c, 0x46, 0xe5, 0x33, 0x62, 0x94, 0xf2, 0x9f, 0x52, 0x94, 
0x2e, 0x45, 0x1f, 0xfc,
-       0x9a, 0x78, 0xd8, 0x38, 0x41, 0x28, 0x9c, 0xa1, 0x9e, 0x36, 0x3e, 0xde, 
0xb9, 0xac, 0xf1, 0xfe,
-       0x46, 0x72, 0xb8, 0x6d, 0x8f, 0x6d, 0x75, 0x91, 0x2f, 0x23, 0xe7, 0x98, 
0xcb, 0x3c, 0x9b, 0xab,
-       0xd3, 0xd3, 0x98, 0xbf, 0x93, 0x60, 0x6d, 0xd2, 0xf7, 0xbf, 0x26, 0x62, 
0x3f, 0x5b, 0x72, 0xa3,
-       0xfc, 0x08, 0x2a, 0x62, 0x20, 0x2d, 0xf2, 0xa2, 0xfb, 0xd2, 0x99, 0xc5, 
0x35, 0x5f, 0xfb, 0x69,
-       0x41, 0x60, 0x6b, 0x3e, 0x31, 0x5c, 0xc7, 0x4c, 0xac, 0x13, 0xe9, 0xda, 
0xaf, 0x1b, 0xd8, 0x1d,
-       0x0e, 0xc7, 0x17, 0x61, 0x2e, 0x30, 0xc2, 0x0c, 0x8c, 0x21, 0x14, 0x02, 
0xa3, 0x69, 0x2a, 0x3f,
-       0x95, 0xe0, 0x42, 0xea, 0x9b, 0x67, 0x95, 0xd8, 0xd7, 0x7f, 0x91, 0xaa, 
0xfc, 0x59, 0x3c, 0x0f,
-       0x6b, 0x66, 0xbc, 0xf1, 0xd5, 0x75, 0xcf, 0x20, 0xda, 0xff, 0xaf, 0xe1, 
0xa5, 0x77, 0xf9, 0x0a,
-       0xcc, 0x4f, 0x25, 0x20, 0xca, 0xbf, 0xc6, 0xc6, 0x3c, 0xc6, 0xf3, 0x37, 
0x48, 0x35, 0xcf, 0x60,
-       0x31, 0xb9, 0xa5, 0xfe, 0xc5, 0x4f, 0x7a, 0x28, 0xff, 0x14, 0x07, 0xc7, 
0x9a, 0x69, 0x26, 0x89,
-       0x7e, 0xa5, 0x7a, 0xfe, 0x95, 0x11, 0xd6, 0x0b, 0x59, 0xd5, 0xb6, 0x24, 
0xb7, 0x23, 0xc3, 0xfa,
-       0x0f, 0x29, 0x0a, 0x89, 0x59, 0xc3, 0xfa, 0x06, 0x99, 0xc2, 0x5f, 0x4a, 
0x91, 0xd7, 0x6b, 0x38,
-       0xe6, 0x57, 0xa8, 0xb2, 0x47, 0x00, 0xd4, 0x9b, 0xea, 0x46, 0x10, 0x3a, 
0xe8, 0xea, 0xc6, 0xa5,
-       0xf4, 0xc0, 0xba, 0x2f, 0x9d, 0x1a, 0x6b, 0x56, 0x4b, 0x41, 0xf8, 0x98, 
0x74, 0xa1, 0x7c, 0x00,
-       0xdf, 0x20, 0xe5, 0xfc, 0x49, 0x2e, 0x72, 0xa1, 0x7c, 0x6c, 0x6d, 0x27, 
0xf2, 0x49, 0x5f, 0xd5,
-       0xf0, 0x22, 0x5f, 0xc1, 0x77, 0x22, 0x85, 0xaf, 0x48, 0x6b, 0x6f, 0xee, 
0xac, 0xda, 0xc3, 0x4f,
-       0xe1, 0xc6, 0x28, 0x97, 0x9a, 0x7b, 0xa8, 0xd9, 0xee, 0x0b, 0xed, 0x85, 
0x1e, 0x10, 0x8f, 0x26,
-       0xf4, 0xa2, 0xc0, 0x79, 0x2d, 0xcd, 0x73, 0xfb, 0x70, 0xc7, 0x7d, 0xf1, 
0x49, 0x88, 0x93, 0xf4,
-       0xdc, 0x63, 0xa2, 0xfa, 0x06, 0x59, 0xc4, 0x3f, 0xe7, 0x22, 0x7f, 0x1b, 
0x0e, 0x33, 0xe5, 0xc9,
-       0xbf, 0x36, 0xfe, 0x56, 0x7a, 0x15, 0x7f, 0xfb, 0xd5, 0x9b, 0x4f, 0xc2, 
0xe1, 0x67, 0xc9, 0xf5,
-       0x1b, 0x64, 0x41, 0x3f, 0x59, 0x87, 0xf2, 0xa6, 0xee, 0x13, 0x31, 0x5a, 
0xbc, 0x21, 0xaa, 0x0f,
-       0xfc, 0xb4, 0xea, 0x6a, 0x9a, 0x72, 0x02, 0x31, 0x7d, 0x77, 0x73, 0x41, 
0xd4, 0x30, 0x44, 0xa5,
-       0xf3, 0x5a, 0xe6, 0xc2, 0x55, 0x1c, 0x9e, 0x50, 0x43, 0x64, 0xfc, 0x11, 
0x94, 0xa2, 0xda, 0x87,
-       0x58, 0x96, 0xaf, 0x4e, 0xeb, 0x49, 0x4c, 0x35, 0xee, 0x40, 0x7b, 0x47, 
0x3b, 0x02, 0xc2, 0xc2,
-       0x56, 0xa7, 0x9f, 0x48, 0x54, 0xe3, 0x0e, 0xf8, 0x03, 0x28, 0x86, 0xd5, 
0x47, 0x26, 0x92, 0x72,
-       0xc6, 0x4d, 0xb1, 0x64, 0x2d, 0x56, 0x8d, 0xd0, 0xf1, 0x1d, 0x28, 0xf8, 
0xc4, 0xe1, 0x1b, 0x2d,
-       0xe5, 0x51, 0xe1, 0x27, 0x77, 0xbc, 0x19, 0x1a, 0xae, 0xc3, 0x22, 0xfd, 
0xd5, 0x3c, 0xbe, 0x01,
-       0x2e, 0xce, 0x4e, 0xac, 0x4d, 0xee, 0xc6, 0xf1, 0xd4, 0xb2, 0x9f, 0xd8, 
0x35, 0xff, 0x36, 0x00,
-       0x23, 0xc2, 0xd5, 0x5e, 0x9c, 0x36, 0xda, 0x70, 0x8f, 0x5a, 0x2d, 0xf9, 
0xd1, 0x76, 0xf5, 0xa3,
-       0x58, 0xff, 0xa5, 0x29, 0x1a, 0x0a, 0x0f, 0x36, 0x46, 0x3b, 0x4b, 0xb7, 
0x21, 0xaf, 0x1b, 0xc7,
-       0xe2, 0x44, 0xbf, 0x3c, 0x69, 0xb3, 0x53, 0xa5, 0x48, 0x54, 0x2c, 0x87, 
0xb6, 0xfb, 0x82, 0x95,
-       0xbd, 0x26, 0x89, 0xe5, 0x89, 0xed, 0xbe, 0x50, 0x19, 0x1a, 0xde, 0x84, 
0xf2, 0x30, 0xde, 0xd2,
-       0x11, 0x27, 0x51, 0xb3, 0xa5, 0x92, 0xd8, 0xfa, 0x51, 0x93, 0x9d, 0xe8, 
0xb0, 0x7c, 0x5e, 0x23,
-       0x67, 0xd5, 0xb2, 0x49, 0xc3, 0x12, 0x75, 0x74, 0x35, 0x44, 0xc6, 0xf7, 
0xc2, 0xf9, 0x53, 0xcd,
-       0x72, 0x4c, 0xc9, 0x22, 0x74, 0x38, 0x81, 0x9a, 0x50, 0x35, 0x6c, 0xd7, 
0x27, 0xd1, 0x59, 0x15,
-       0x56, 0x5c, 0x2b, 0x6f, 0x28, 0xd9, 0xf6, 0x9a, 0xdc, 0x5a, 0x51, 0x2b, 
0x46, 0x6a, 0xa7, 0x25,
-       0x22, 0x15, 0x16, 0x99, 0xd8, 0xf1, 0xd2, 0xa9, 0xa4, 0xc2, 0x52, 0xa3, 
0x20, 0x15, 0x6d, 0xae,
-       0xb4, 0xd9, 0xb1, 0x77, 0x5e, 0x5e, 0x0f, 0x05, 0xc1, 0x0f, 0x9c, 0xbe, 
0x3e, 0xd5, 0x98, 0x43,
-       0x81, 0x2c, 0x0d, 0x46, 0x76, 0x1a, 0xee, 0x40, 0x61, 0x60, 0x39, 0x3d, 
0x76, 0xcf, 0x6e, 0x92,
-       0x0e, 0xf7, 0x2c, 0xa7, 0xa7, 0x32, 0x34, 0x86, 0xee, 0x3a, 0x3d, 0x76, 
0xe1, 0x6e, 0x22, 0xba,
-       0xcb, 0xd0, 0x5d, 0xa7, 0x87, 0x7f, 0x13, 0xae, 0x7b, 0xd3, 0xf7, 0x70, 
0xd8, 0xb5, 0xbc, 0xf2,
-       0xc6, 0xc3, 0x4c, 0x4a, 0x33, 0xf6, 0x7f, 0xd4, 0x59, 0xc4, 0xf1, 0xaf, 
0xc1, 0xf9, 0x68, 0x71,
-       0x17, 0x9e, 0xb4, 0x94, 0x2f, 0xb0, 0x2f, 0xde, 0x79, 0xb5, 0xe3, 0x99, 
0xe3, 0x74, 0xb0, 0x9f,
-       0xb8, 0xe7, 0x35, 0x7a, 0x8c, 0x93, 0xdd, 0x23, 0x2c, 0x6f, 0xbc, 0xfb, 
0x85, 0xce, 0x80, 0xaa,
-       0x93, 0xe9, 0xd2, 0x49, 0x64, 0xc7, 0x67, 0xf6, 0xd8, 0x2d, 0xc4, 0x49, 
0x93, 0x28, 0x79, 0xb6,
-       0x2f, 0xd9, 0x09, 0x7f, 0x06, 0xcb, 0xf6, 0xf8, 0xb9, 0x3f, 0x76, 0x4b, 
0xb1, 0x3c, 0xe1, 0x80,
-       0x43, 0xc6, 0x39, 0x41, 0x35, 0x8b, 0x08, 0x7e, 0x16, 0x9f, 0xbb, 0x67, 
0x5b, 0x1b, 0xec, 0x46,
-       0xe3, 0x44, 0x53, 0x4f, 0x6d, 0x82, 0xa4, 0x3b, 0xe2, 0x1f, 0xc2, 0x05, 
0x23, 0x6b, 0x93, 0x84,
-       0xdd, 0x81, 0x2c, 0x6f, 0xdc, 0x3e, 0x03, 0xc5, 0x90, 0xd3, 0x6c, 0x42, 
0xb8, 0x0b, 0xe7, 0xbd,
-       0xd1, 0xfd, 0x54, 0x76, 0x7d, 0xb2, 0x3c, 0xe1, 0xbe, 0xc2, 0xd8, 0xee, 
0xab, 0x3a, 0x4e, 0x80,
-       0x07, 0x0b, 0x72, 0xcc, 0xee, 0x55, 0x4e, 0x0e, 0x16, 0xe4, 0x58, 0x65, 
0x68, 0xf8, 0x7b, 0x80,
-       0x7a, 0x23, 0xd5, 0x73, 0x76, 0xdb, 0xb2, 0xbc, 0x71, 0x6b, 0x52, 0x31, 
0x38, 0x5d, 0x6a, 0x1f,
-       0xeb, 0x8e, 0x2d, 0x90, 0x7b, 0x13, 0x0a, 0xf2, 0xec, 0x8e, 0xe6, 0x24, 
0xe3, 0x9f, 0x54, 0xc5,
-       0x57, 0x27, 0x92, 0xc3, 0x1a, 0x5c, 0xe4, 0xc7, 0x04, 0x22, 0xdf, 0xa6, 
0x19, 0xec, 0x90, 0x81,
-       0x7c, 0x9d, 0x7d, 0xe8, 0xad, 0x09, 0x11, 0x64, 0xfc, 0x54, 0x82, 0xba, 
0xa2, 0x67, 0x9d, 0x55,
-       0xf8, 0x01, 0xac, 0xf4, 0x32, 0x6a, 0xd2, 0xf2, 0xda, 0x14, 0xf2, 0x99, 
0x45, 0xec, 0x4c, 0x32,
-       0x78, 0x08, 0xd7, 0x7a, 0x53, 0x4a, 0xde, 0xf2, 0x0d, 0xf6, 0x99, 0xfb, 
0x67, 0xff, 0x4c, 0x28,
-       0xb2, 0xa9, 0x64, 0x69, 0x26, 0xd3, 0x0b, 0x4b, 0xd3, 0xb2, 0x32, 0x25, 
0xb6, 0xc7, 0x05, 0xec,
-       0xb8, 0x03, 0xb5, 0xdb, 0xde, 0x68, 0x61, 0x5b, 0xbe, 0x39, 0xc5, 0x6e, 
0xc7, 0xca, 0xe0, 0xea,
-       0x38, 0x01, 0x3a, 0x73, 0xf5, 0xe4, 0xfd, 0x2d, 0xf9, 0xf5, 0x29, 0x33, 
0x37, 0x75, 0xd3, 0x4b,
-       0x4d, 0x77, 0xc4, 0x0d, 0x58, 0xd4, 0x13, 0x57, 0xd5, 0xe4, 0x5b, 0x8c, 
0xd0, 0x8d, 0x89, 0x84,
-       0x22, 0xae, 0x52, 0xdd, 0xa8, 0xab, 0xd3, 0xe3, 0x73, 0x3b, 0xf2, 0x1b, 
0x53, 0x5c, 0x5d, 0xe2,
-       0x7c, 0x8f, 0x9a, 0xec, 0x24, 0x44, 0x95, 0x2e, 0x4a, 0xcb, 0x6f, 0x4e, 
0x17, 0xd5, 0x48, 0x09,
-       0x7b, 0x9c, 0x00, 0xb6, 0xe1, 0x72, 0x6f, 0x52, 0xa9, 0x5b, 0x5e, 0x67, 
0xd4, 0xef, 0x9e, 0x91,
-       0x7a, 0xe4, 0xf2, 0x27, 0x12, 0xc4, 0x0f, 0x60, 0xde, 0x61, 0xb5, 0x61, 
0x79, 0x23, 0x6b, 0x23,
-       0x2b, 0x5d, 0x3e, 0x16, 0xa8, 0x78, 0x1b, 0xaa, 0x4e, 0xaa, 0xa0, 0x2c, 
0x3f, 0x60, 0x9d, 0x6f,
-       0x4e, 0xeb, 0x1c, 0x32, 0x33, 0xd2, 0x95, 0x4a, 0x51, 0x1f, 0xad, 0x86, 
0xca, 0x0f, 0xa7, 0x48,
-       0x71, 0xbc, 0x76, 0x3a, 0x4e, 0x80, 0x4a, 0x51, 0x9f, 0x54, 0x63, 0x95, 
0xdf, 0x9d, 0x22, 0xc5,
-       0x89, 0x95, 0x59, 0x75, 0x32, 0x41, 0xea, 0x48, 0xf4, 0x8c, 0x4a, 0x9e, 
0xfc, 0x68, 0x9a, 0x9f,
-       0xca, 0x2a, 0xfd, 0x65, 0x92, 0xa1, 0x8e, 0x44, 0x9f, 0x52, 0x28, 0x94, 
0xdf, 0x9b, 0xe2, 0x48,
-       0xa6, 0x55, 0x18, 0xd5, 0xa9, 0x64, 0xa9, 0x6d, 0x10, 0xb6, 0x5c, 0x95, 
0xdf, 0x9f, 0x62, 0x1b,
-       0xa2, 0x2e, 0x26, 0x50, 0xa9, 0x6d, 0x90, 0x54, 0xa5, 0x4c, 0xfe, 0x60, 
0x8a, 0x6d, 0xa4, 0x8b,
-       0x6a, 0xea, 0x48, 0x57, 0x6a, 0x1b, 0x64, 0xb4, 0xde, 0x22, 0x3f, 0x9e, 
0x62, 0x1b, 0xe3, 0xd5,
-       0x99, 0x71, 0x02, 0xd4, 0x36, 0xc8, 0xa4, 0x2a, 0x8e, 0xfc, 0xe1, 0x14, 
0xdb, 0x98, 0x58, 0xfb,
-       0x51, 0x27, 0x13, 0xa4, 0xb6, 0x41, 0x32, 0x16, 0xfd, 0xf2, 0x47, 0x53, 
0x6c, 0x23, 0xb3, 0x4a,
-       0x90, 0x49, 0x86, 0xda, 0x06, 0x99, 0x52, 0x53, 0x90, 0xbf, 0x3d, 0xc5, 
0x36, 0xa6, 0x15, 0x23,
-       0xd4, 0xa9, 0x64, 0x95, 0x9f, 0x15, 0xc5, 0x1f, 0x25, 0x95, 0x61, 0xa1, 
0xde, 0x6e, 0xb5, 0x1a,
-       0xf5, 0x2e, 0xca, 0xe1, 0x0a, 0x94, 0xc4, 0x4b, 0x63, 0x0b, 0xe5, 0xe9, 
0x6b, 0x67, 0x7f, 0xb3,
-       0x53, 0x57, 0x9b, 0x9b, 0x0d, 0x54, 0x60, 0xff, 0x99, 0xa4, 0xb6, 0xb7, 
0xf6, 0xeb, 0x0d, 0x95,
-       0xff, 0x3f, 0x52, 0xa7, 0xd1, 0xda, 0x42, 0xf3, 0x18, 0xc1, 0x22, 0x7d, 
0xd2, 0xd4, 0x46, 0xbd,
-       0xd1, 0xdc, 0xeb, 0xa2, 0x05, 0x5c, 0x05, 0x60, 0x90, 0x86, 0xaa, 0xb6, 
0x55, 0x54, 0xa4, 0x1f,
-       0xd9, 0x6d, 0x74, 0x3a, 0xb5, 0xa7, 0x0d, 0x54, 0x62, 0x3b, 0xcb, 0xf5, 
0x6d, 0x04, 0x94, 0xc2,
-       0x93, 0x9d, 0xf6, 0x27, 0xa8, 0x8c, 0x97, 0xa0, 0xbc, 0xdf, 0x8a, 0x3f, 
0xb5, 0xc8, 0xae, 0x1e,
-       0xed, 0xd7, 0xeb, 0x8d, 0x4e, 0x07, 0x55, 0x70, 0x09, 0xe6, 0x38, 0xa1, 
0x2a, 0xc6, 0x50, 0xad,
-       0xef, 0xb4, 0x3b, 0x0d, 0x2d, 0x62, 0x64, 0x29, 0x86, 0xd5, 0xdb, 0xad, 
0xce, 0xfe, 0x6e, 0x43,
-       0x45, 0x08, 0xaf, 0x00, 0x0a, 0x31, 0xb4, 0x90, 0xd0, 0x79, 0xfa, 0xc1, 
0xbd, 0x66, 0xeb, 0x29,
-       0xc2, 0xec, 0xa9, 0xdd, 0x7a, 0x8a, 0x96, 0xf1, 0x2d, 0xb8, 0xa1, 0x36, 
0xb6, 0x1a, 0x3b, 0xcd,
-       0xe7, 0x0d, 0x55, 0xdb, 0x6f, 0xd5, 0xea, 0xdb, 0xad, 0xf6, 0x27, 0x3b, 
0x8d, 0xad, 0xa7, 0x8d,
-       0x2d, 0x4d, 0xf0, 0xdc, 0x41, 0x2b, 0x58, 0x86, 0x95, 0xbd, 0x9a, 0xda, 
0x6d, 0x76, 0x9b, 0xed,
-       0x16, 0x6b, 0xe9, 0xd6, 0xb6, 0x6a, 0xdd, 0x1a, 0xba, 0x80, 0x6f, 0xc0, 
0x6b, 0x59, 0x2d, 0x9a,
-       0xda, 0xe8, 0xec, 0xb5, 0x5b, 0x9d, 0x06, 0xba, 0xc8, 0x2e, 0xdb, 0xb5, 
0xdb, 0xdb, 0xfb, 0x7b,
-       0xe8, 0x12, 0x5e, 0x86, 0x25, 0xfe, 0x1c, 0x23, 0xc8, 0x6c, 0x08, 0x82, 
0x79, 0xad, 0xd3, 0xad,
-       0x75, 0x3b, 0xe8, 0x32, 0xbe, 0x0a, 0x97, 0xd2, 0xb0, 0xb8, 0xc3, 0x15, 
0xca, 0x8e, 0xda, 0xa8,
-       0xd5, 0x9f, 0x35, 0xb6, 0x34, 0x2a, 0xe7, 0xf6, 0x13, 0xad, 0xdb, 0xde, 
0x6b, 0xd6, 0xd1, 0x55,
-       0xae, 0x96, 0xc6, 0x36, 0xba, 0x86, 0x2f, 0xc1, 0xf2, 0xd3, 0x46, 0x57, 
0xdb, 0xa9, 0x75, 0xba,
-       0xe1, 0x48, 0xb4, 0xe6, 0x16, 0x7a, 0x0d, 0xaf, 0xc1, 0xb5, 0x8c, 0x86, 
0x98, 0xfc, 0x2a, 0xbe,
-       0x02, 0x17, 0x6b, 0xf5, 0x6e, 0xf3, 0x79, 0x2c, 0x53, 0xad, 0xfe, 0xac, 
0xd6, 0x7a, 0xda, 0x40,
-       0xd7, 0x29, 0x5f, 0xb4, 0x37, 0xfb, 0x5e, 0x87, 0x7e, 0xb9, 0x55, 0xdb, 
0x6d, 0x74, 0xf6, 0x6a,
-       0xf5, 0x06, 0x5a, 0xc3, 0xaf, 0xc3, 0xda, 0x84, 0xc6, 0x98, 0xfc, 0x0d, 
0x6a, 0x1e, 0x14, 0xab,
-       0x53, 0x7f, 0xd6, 0xd8, 0xad, 0x21, 0x25, 0xe4, 0x94, 0xbf, 0xc7, 0x88, 
0x37, 0xa9, 0x5c, 0x6a,
-       0xfb, 0xdd, 0x67, 0xf4, 0xe3, 0x3b, 0x3b, 0x0d, 0xfa, 0xfd, 0xd7, 0xf1, 
0x79, 0xa8, 0x30, 0x58,
-       0x84, 0x76, 0x8b, 0x1a, 0x60, 0xad, 0xbe, 0x1d, 0x43, 0xde, 0xa0, 0xf2, 
0xa1, 0x14, 0xdb, 0xaa,
-       0x56, 0x57, 0x1b, 0xb5, 0x6e, 0x23, 0xfc, 0xd6, 0x9b, 0x54, 0x5d, 0x59, 
0x2d, 0x71, 0xe7, 0x75,
-       0x6a, 0x7c, 0xad, 0xc6, 0x27, 0x5a, 0xf7, 0x57, 0x5b, 0x68, 0x83, 0x5a, 
0x92, 0x78, 0x89, 0x51,
-       0x1e, 0x50, 0xfa, 0xb5, 0xad, 0x2d, 0x2d, 0x52, 0xbc, 0xd6, 0x6d, 0x33, 
0xfc, 0x87, 0x94, 0x7e,
-       0x56, 0x4b, 0xdc, 0xf9, 0x5d, 0x2a, 0x41, 0x8a, 0x22, 0xec, 0x7d, 0x2f, 
0xd9, 0xff, 0x11, 0x95,
-       0xe0, 0x84, 0xc6, 0x98, 0xc4, 0x7b, 0x94, 0x45, 0xaa, 0x77, 0xda, 0xe5, 
0x7d, 0xca, 0xa2, 0x78,
-       0x89, 0x51, 0x3e, 0xa0, 0x2c, 0x86, 0xd0, 0x76, 0x2b, 0xe6, 0x07, 0x3d, 
0xa6, 0x2c, 0x66, 0xb5,
-       0xc4, 0x9d, 0x3f, 0xa4, 0x2c, 0x26, 0x50, 0x92, 0xcc, 0xa0, 0x8f, 0x28, 
0x8b, 0x13, 0x1a, 0x63,
-       0x12, 0xdf, 0xbe, 0xbd, 0xc5, 0x6e, 0x41, 0x25, 0xff, 0x5e, 0x89, 0xfd, 
0x29, 0x5b, 0xbb, 0xd5,
-       0x40, 0xe7, 0xa8, 0x0f, 0xd8, 0xf9, 0xec, 0x21, 0xff, 0x47, 0xb6, 0xcf, 
0x76, 0x9a, 0x9b, 0x28,
-       0xc7, 0x9e, 0x3a, 0x5d, 0xea, 0x76, 0x00, 0xe6, 0x3b, 0xad, 0xda, 0xde, 
0xde, 0xa7, 0xa8, 0x70,
-       0xbb, 0x01, 0x78, 0xfc, 0xba, 0x4e, 0xe2, 0xea, 0xeb, 0xb9, 0xf4, 0xad, 
0x58, 0x76, 0x3c, 0xfc,
-       0x13, 0xdd, 0x0a, 0x9e, 0xb8, 0x5e, 0x0c, 0xcd, 0xdd, 0xfe, 0xad, 0x39, 
0x28, 0x27, 0x0a, 0xa1,
-       0xd4, 0x62, 0xf6, 0x9d, 0x63, 0xc7, 0x7d, 0x21, 0x0e, 0x84, 0x9f, 0xa3, 
0x66, 0x15, 0xae, 0xa7,
-       0x13, 0x27, 0xcd, 0xf7, 0x88, 0xe7, 0xb3, 0x7b, 0x7b, 0x86, 0x38, 0x4e, 
0x9e, 0xa3, 0xc6, 0x4a,
-       0xf3, 0x52, 0xe2, 0x04, 0x96, 0x11, 0x1f, 0x67, 0x47, 0x79, 0x7c, 0x11, 
0x70, 0x8d, 0x5f, 0x65,
-       0xfb, 0x3c, 0x01, 0x2f, 0xd0, 0x6f, 0x85, 0xeb, 0x96, 0xcd, 0xa1, 0x7f, 
0x8a, 0xe6, 0xa8, 0x0f,
-       0x10, 0x97, 0xcc, 0x5a, 0x6e, 0xc0, 0x4e, 0x3b, 0xa2, 0x79, 0xea, 0x88, 
0xc2, 0x91, 0x6e, 0xf2,
-       0x23, 0x65, 0xdf, 0x1b, 0xba, 0x81, 0xde, 0x78, 0x69, 0x10, 0x62, 0x12, 
0x5e, 0x7f, 0x42, 0x0b,
-       0xf8, 0x2d, 0xb8, 0x35, 0x15, 0xed, 0xa5, 0x41, 0xf8, 0x09, 0xfa, 0x22, 
0x1d, 0x52, 0x78, 0x52,
-       0x9e, 0xf7, 0x2e, 0x51, 0xbd, 0xee, 0x3b, 0xe2, 0x5f, 0x2e, 0x88, 0x29, 
0xce, 0x36, 0xf0, 0x46,
-       0xa0, 0xf8, 0x6c, 0x55, 0xd2, 0x72, 0x83, 0x27, 0xee, 0xd0, 0x31, 0x51, 
0x99, 0x1a, 0x51, 0x32,
-       0x7c, 0x44, 0x2d, 0x8b, 0xec, 0x18, 0x7e, 0x78, 0x06, 0x2f, 0x84, 0x56, 
0xe8, 0xc8, 0xba, 0xae,
-       0xbb, 0xab, 0x3b, 0xa7, 0x2a, 0x2f, 0x7b, 0xfb, 0xa8, 0x4a, 0x89, 0x30, 
0xba, 0x5d, 0xe2, 0xf5,
-       0x2d, 0x47, 0x0f, 0xc2, 0xc1, 0x2c, 0x51, 0xd1, 0x44, 0x83, 0xa1, 0xa2, 
0x61, 0x8e, 0xbb, 0xe9,
-       0xb0, 0xcb, 0x11, 0x9c, 0x15, 0xbd, 0x4f, 0xd0, 0x79, 0x2a, 0xda, 0x26, 
0xbb, 0x2b, 0xa0, 0x07,
-       0xd6, 0x81, 0x2d, 0x72, 0x60, 0x84, 0xa9, 0x2e, 0x42, 0x26, 0x6a, 0xbe, 
0x6f, 0xf5, 0xc4, 0x50,
-       0x96, 0xb1, 0x02, 0xab, 0x5d, 0x4f, 0x77, 0x7c, 0xbe, 0x67, 0x50, 0x77, 
0x5d, 0xcf, 0xa4, 0x5f,
-       0x76, 0x63, 0x5e, 0x57, 0x92, 0x9f, 0x7a, 0xc9, 0x2e, 0x8e, 0x0f, 0x7d, 
0x74, 0x81, 0x8e, 0xa0,
-       0xe5, 0x06, 0x35, 0xdb, 0x76, 0x5f, 0x84, 0x7c, 0x5e, 0xa4, 0xdf, 0x49, 
0x91, 0x73, 0x0e, 0x6d,
-       0xcb, 0x08, 0xd0, 0xa5, 0x91, 0x86, 0x88, 0xb8, 0x2c, 0xfe, 0x8c, 0x8f, 
0x8d, 0xec, 0x09, 0xb5,
-       0x1e, 0x13, 0x5d, 0xbe, 0xbd, 0x0d, 0x90, 0xb8, 0x3c, 0x4a, 0x7d, 0x5b, 
0xfc, 0x97, 0x12, 0xfc,
-       0xbf, 0x0a, 0x97, 0x61, 0x29, 0x86, 0x7d, 0x6a, 0xe8, 0xcf, 0xef, 0x73, 
0x33, 0x8c, 0x81, 0x35,
-       0x6a, 0x79, 0x3e, 0xca, 0xdd, 0xfe, 0x53, 0x09, 0x96, 0xf6, 0x46, 0xfe, 
0x38, 0x64, 0x1e, 0x72,
-       0x27, 0xf7, 0xd0, 0x39, 0xf6, 0x4b, 0x7b, 0xd2, 0xdf, 0x0d, 0x94, 0x63, 
0xbf, 0x0f, 0x50, 0x9e,
-       0xfd, 0x3e, 0x44, 0x05, 0xf6, 0xfb, 0x2e, 0x9a, 0x63, 0xbf, 0x8f, 0xd0, 
0x3c, 0xfb, 0x7d, 0x0f,
-       0x2d, 0xb0, 0xdf, 0xf7, 0x51, 0x91, 0xfd, 0x7e, 0xc0, 0x23, 0xf5, 0xc9, 
0xfd, 0x7b, 0x08, 0xf8,
-       0xc3, 0x7d, 0x54, 0xe6, 0x0f, 0x1b, 0x68, 0x91, 0x3f, 0x3c, 0x40, 0x15, 
0xfe, 0xf0, 0x10, 0x55,
-       0xf9, 0xc3, 0xbb, 0x68, 0x89, 0x3f, 0x3c, 0x42, 0x88, 0x3f, 0xbc, 0x87, 
0xce, 0xdf, 0x7e, 0x3b,
-       0xf9, 0x6f, 0x18, 0xe2, 0x00, 0x5a, 0x6d, 0xbf, 0xdb, 0xd6, 0x3a, 0x7b, 
0x3b, 0xcd, 0xae, 0xb8,
-       0xca, 0xde, 0x6d, 0xd6, 0xb7, 0x3f, 0x45, 0xd2, 0x6d, 0x05, 0x4a, 0xd1, 
0x6e, 0x0e, 0x6d, 0xa8,
-       0xb7, 0x77, 0x77, 0x19, 0x52, 0x09, 0xe6, 0x6a, 0x9b, 0x6d, 0xb5, 0x8b, 
0xa4, 0xcd, 0x8d, 0x9f,
-       0xfc, 0x7c, 0x55, 0xfa, 0x87, 0x9f, 0xaf, 0x4a, 0xff, 0xf2, 0xf3, 0x55, 
0x09, 0x14, 0xd7, 0xeb,
-       0xdd, 0xd5, 0x07, 0xba, 0x71, 0x44, 0xc2, 0x34, 0xc9, 0x70, 0xfb, 0x7d, 
0xd7, 0xb9, 0xab, 0x87,
-       0xff, 0x66, 0xf9, 0x2c, 0xff, 0x7f, 0x01, 0x00, 0x00, 0xff, 0xff, 0xe0, 
0x3f, 0x51, 0x56, 0xe1,
-       0x52, 0x00, 0x00,
+       // 6335 bytes of a gzipped FileDescriptorProto
+       0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xdc, 0x7c, 
0x4d, 0x6c, 0x23, 0x47,
+       0x76, 0xf0, 0x34, 0x49, 0x49, 0xe4, 0xa3, 0x48, 0xd5, 0x94, 0x34, 0x33, 
0x3d, 0x7f, 0x1a, 0xb9,
+       0xc7, 0x63, 0xcb, 0x63, 0xcf, 0xec, 0x8c, 0x66, 0x3c, 0xb6, 0xc7, 0xde, 
0xb5, 0x29, 0x8a, 0x33,
+       0xe6, 0x8e, 0x44, 0xca, 0x4d, 0x6a, 0xfc, 0xd9, 0xdf, 0xee, 0xd7, 0xdb, 
0xea, 0x2e, 0x51, 0x0d,
+       0x35, 0xbb, 0xb9, 0xdd, 0x4d, 0x8d, 0x64, 0xe0, 0xcb, 0x21, 0x97, 0x00, 
0x01, 0x82, 0x20, 0x87,
+       0xe4, 0xb8, 0x41, 0x6e, 0xb9, 0x06, 0xd8, 0x43, 0x80, 0x0d, 0x12, 0x04, 
0xc8, 0x1f, 0x90, 0x4b,
+       0x02, 0x6c, 0x0e, 0x7b, 0x4a, 0xb0, 0xc8, 0xcf, 0x21, 0x08, 0x90, 0x5b, 
0x8e, 0x09, 0xea, 0xa7,
+       0xff, 0xc8, 0x26, 0xa9, 0xb1, 0x37, 0xb0, 0xe1, 0x13, 0xbb, 0x5f, 0xbd, 
0x7a, 0x5d, 0xf5, 0xde,
+       0xab, 0xf7, 0x57, 0x55, 0x84, 0xa5, 0xdd, 0xa1, 0xed, 0xeb, 0x5e, 0x6d, 
0x60, 0xdd, 0x1d, 0x78,
+       0x6e, 0xe0, 0xe2, 0xc5, 0x01, 0x03, 0xf0, 0x37, 0xe5, 0xa7, 0x79, 0x98, 
0xef, 0x18, 0x87, 0xa4,
+       0xaf, 0x63, 0x0c, 0x05, 0x47, 0xef, 0x13, 0x59, 0x5a, 0xcb, 0xad, 0x97, 
0x54, 0xf6, 0x8c, 0x6f,
+       0x40, 0xd9, 0x67, 0xad, 0x9a, 0xa9, 0x07, 0xba, 0x9c, 0x5f, 0xcb, 0xad, 
0x2f, 0xaa, 0xc0, 0x41,
+       0x5b, 0x7a, 0xa0, 0xe3, 0x3b, 0x50, 0x08, 0x4e, 0x07, 0x44, 0x2e, 0xac, 
0xe5, 0xd6, 0xab, 0x1b,
+       0x97, 0xef, 0x26, 0x89, 0xdf, 0xe5, 0x84, 0xef, 0x76, 0x4f, 0x07, 0x44, 
0x65, 0x68, 0xf8, 0x11,
+       0xc0, 0xc0, 0x73, 0x07, 0xc4, 0x0b, 0x2c, 0xe2, 0xcb, 0x73, 0x6b, 0xf9, 
0xf5, 0xf2, 0xc6, 0xc5,
+       0x74, 0xa7, 0x67, 0xe4, 0xf4, 0xb9, 0x6e, 0x0f, 0x89, 0x9a, 0xc0, 0x54, 
0x7e, 0x2b, 0x07, 0x05,
+       0x4a, 0x06, 0x17, 0xa1, 0xd0, 0x72, 0x1d, 0x82, 0xce, 0x61, 0x80, 0xf9, 
0x4e, 0xe0, 0x59, 0x4e,
+       0x0f, 0x49, 0x14, 0xfa, 0x7d, 0xdf, 0x75, 0x50, 0x0e, 0x2f, 0x42, 0x71, 
0x97, 0x92, 0xd9, 0x1f,
+       0x1e, 0xa0, 0x3c, 0x85, 0xd7, 0x8e, 0x3d, 0x17, 0x15, 0xe8, 0xd3, 0xa6, 
0xeb, 0xda, 0x68, 0x8e,
+       0x3e, 0x35, 0x9d, 0xe0, 0x5d, 0x34, 0x8f, 0x4b, 0x30, 0xd7, 0x74, 0x82, 
0xfb, 0x8f, 0xd0, 0x82,
+       0x78, 0x7c, 0xb0, 0x81, 0x8a, 0xe2, 0xf1, 0xd1, 0x43, 0x54, 0xa2, 0x8f, 
0x4f, 0x6c, 0x57, 0x0f,
+       0x10, 0xd0, 0xaf, 0x6d, 0xb9, 0xc3, 0x7d, 0x9b, 0xa0, 0x32, 0xa5, 0xb0, 
0xa5, 0x07, 0x04, 0x2d,
+       0xd2, 0xa7, 0xae, 0xd5, 0x27, 0xa8, 0x82, 0x2b, 0x50, 0xa2, 0x4f, 0x7e, 
0xa0, 0xf7, 0x07, 0xa8,
+       0x4a, 0x87, 0x11, 0xce, 0x03, 0x2d, 0xe1, 0x32, 0x2c, 0x34, 0x1d, 0x3f, 
0xd0, 0x9d, 0x00, 0x21,
+       0x8a, 0xb9, 0xed, 0x1a, 0xba, 0xcd, 0x48, 0x9c, 0x8f, 0x5e, 0x19, 0x1d, 
0x8c, 0xcf, 0x43, 0x25,
+       0x6a, 0x65, 0xa0, 0x65, 0x8c, 0xa1, 0x1a, 0x4e, 0xa9, 0xa5, 0x07, 0xd6, 
0x31, 0x41, 0x2b, 0xca,
+       0x5f, 0x48, 0x50, 0xd9, 0x21, 0xbe, 0xaf, 0xf7, 0x48, 0xd3, 0x64, 0x82, 
0xb8, 0x02, 0x45, 0x9b,
+       0x98, 0x3d, 0xe2, 0x35, 0x4d, 0x26, 0xc1, 0x82, 0x1a, 0xbd, 0x63, 0x19, 
0x16, 0x88, 0x13, 0x78,
+       0xa7, 0x4d, 0x53, 0xce, 0xb1, 0xa6, 0xf0, 0x15, 0xaf, 0x41, 0x69, 0xa0, 
0x7b, 0x81, 0x15, 0x58,
+       0xae, 0x23, 0xe7, 0xd7, 0xa4, 0xf5, 0xb9, 0xc7, 0xb9, 0x3b, 0xf7, 0xd5, 
0x18, 0x88, 0x6f, 0x42,
+       0x79, 0x5f, 0x0f, 0x8c, 0x43, 0xcd, 0x72, 0x4c, 0x72, 0x22, 0x17, 0x22, 
0x1c, 0x60, 0xe0, 0x26,
+       0x85, 0xe2, 0x4b, 0xb0, 0xa0, 0x1b, 0x47, 0x9a, 0x4f, 0x02, 0x26, 0xd3, 
0xbc, 0x3a, 0xaf, 0x1b,
+       0x47, 0x1d, 0x12, 0xe0, 0xeb, 0xc0, 0xd1, 0x34, 0xdf, 0xfa, 0x82, 0xc8, 
0xf3, 0xb4, 0xb3, 0x5a,
+       0x62, 0x90, 0x8e, 0xf5, 0x05, 0x51, 0x36, 0x62, 0x36, 0x61, 0x04, 0xf9, 
0x23, 0x72, 0x2a, 0xb4,
+       0x8f, 0x3e, 0xe2, 0x15, 0x98, 0x3b, 0xa6, 0x4d, 0x6c, 0xd0, 0x25, 0x95, 
0xbf, 0x28, 0x8f, 0x60,
+       0xf1, 0x19, 0x39, 0xdd, 0x76, 0x9d, 0xde, 0x99, 0xfa, 0x15, 0xc2, 0x7e, 
0x1b, 0x50, 0x6c, 0x3a,
+       0x81, 0xaa, 0x3b, 0x3d, 0x42, 0x31, 0xfc, 0x40, 0xf7, 0x02, 0xd6, 0x6b, 
0x4e, 0xe5, 0x2f, 0x94,
+       0x12, 0x71, 0x38, 0x8b, 0xe6, 0x54, 0xfa, 0xa8, 0xd8, 0x50, 0x6d, 0x38, 
0x86, 0x77, 0x3a, 0xa0,
+       0xac, 0x78, 0x46, 0x4e, 0xfd, 0x59, 0x5f, 0x5b, 0x14, 0x5f, 0xc3, 0x1b, 
0x50, 0xec, 0x93, 0x40,
+       0x17, 0xab, 0x66, 0x9a, 0x9a, 0x47, 0x78, 0xca, 0xdf, 0x97, 0x60, 0x49, 
0x08, 0x75, 0x47, 0xc0,
+       0xf0, 0x4d, 0xa8, 0x0c, 0x3c, 0xd7, 0x1c, 0x1a, 0xc4, 0xd3, 0x12, 0xab, 
0x73, 0x31, 0x04, 0xb6,
+       0xc2, 0x55, 0x4a, 0x7e, 0x3c, 0x24, 0x8e, 0x41, 0x34, 0x2b, 0x94, 0x31, 
0x84, 0xa0, 0xa6, 0x89,
+       0x5f, 0x81, 0xc5, 0xc1, 0x70, 0xdf, 0xb6, 0xfc, 0x43, 0x2d, 0xb0, 0xfa, 
0x84, 0xad, 0xe3, 0x82,
+       0x5a, 0x16, 0x30, 0xaa, 0x67, 0x23, 0x2b, 0xb3, 0x70, 0xd6, 0x95, 0x89, 
0x5f, 0x87, 0x25, 0x8f,
+       0x0c, 0x6c, 0xcb, 0xd0, 0x03, 0x62, 0x6a, 0x07, 0x9e, 0xdb, 0x97, 0xe7, 
0xd6, 0xa4, 0xf5, 0x92,
+       0x5a, 0x8d, 0xc1, 0x4f, 0x3c, 0xb7, 0xcf, 0x66, 0x12, 0x6a, 0x95, 0x46, 
0x79, 0x38, 0xcf, 0xd0,
+       0x16, 0x23, 0xe0, 0x33, 0x72, 0x4a, 0x07, 0x1a, 0x75, 0xd3, 0x02, 0x57, 
0x5e, 0x58, 0xcb, 0xaf,
+       0x97, 0xd4, 0x72, 0x04, 0xeb, 0xba, 0xb8, 0x01, 0x65, 0xc3, 0xed, 0x0f, 
0x3c, 0xe2, 0xfb, 0x54,
+       0x69, 0x8b, 0x6b, 0xd2, 0x7a, 0x75, 0xe3, 0x7a, 0x7a, 0xa4, 0xf5, 0x18, 
0x81, 0x5a, 0x8d, 0xc7,
+       0x85, 0x56, 0xbb, 0xd5, 0x50, 0x93, 0xfd, 0xf0, 0x5d, 0x38, 0x3f, 0x74, 
0x42, 0x00, 0x31, 0xb9,
+       0x82, 0x96, 0xd6, 0xa4, 0xf5, 0xca, 0x63, 0xe9, 0x9e, 0x8a, 0x92, 0x6d, 
0x54, 0x55, 0xf1, 0x43,
+       0xb8, 0xe0, 0x0c, 0xfb, 0x5a, 0x9f, 0xcb, 0xc7, 0xd7, 0x2c, 0x47, 0x63, 
0x7a, 0x2c, 0x97, 0xd9,
+       0x8a, 0x90, 0xee, 0xab, 0xd8, 0x19, 0xf6, 0x85, 0xf8, 0xfc, 0xa6, 0xb3, 
0x49, 0x1b, 0xf1, 0x1a,
+       0x00, 0x39, 0x26, 0x4e, 0xc0, 0xd9, 0xbe, 0xb8, 0x26, 0xad, 0x17, 0x28, 
0xf9, 0x12, 0x03, 0x32,
+       0xbe, 0x37, 0x60, 0x89, 0x44, 0x2a, 0x46, 0xf9, 0xe2, 0xcb, 0x15, 0xc6, 
0xfc, 0x6b, 0xe9, 0x29,
+       0xa5, 0xf5, 0x50, 0xad, 0x92, 0xb4, 0x5e, 0xbe, 0x9e, 0x22, 0xa3, 0xdb, 
0x3d, 0x57, 0xae, 0x72,
+       0x31, 0xc4, 0xe0, 0x9a, 0xdd, 0x73, 0xf1, 0x1b, 0x80, 0x12, 0x88, 0x03, 
0xdd, 0xd3, 0xfb, 0xf2,
+       0xd2, 0x9a, 0xb4, 0xbe, 0xa8, 0x26, 0x08, 0xec, 0x52, 0x30, 0xbe, 0x05, 
0x55, 0x61, 0xfc, 0x8f,
+       0x89, 0xc7, 0x98, 0x8d, 0x18, 0x62, 0x85, 0x43, 0x9f, 0x73, 0x20, 0xfe, 
0x08, 0x2e, 0xa7, 0x04,
+       0xab, 0xed, 0x3f, 0x7a, 0xa8, 0x11, 0xc7, 0x70, 0x4d, 0x62, 0xca, 0xe7, 
0xd7, 0xa4, 0xf5, 0xe2,
+       0xe3, 0xb9, 0x03, 0xdd, 0xf6, 0x89, 0x7a, 0x31, 0x29, 0xeb, 0xcd, 0x47, 
0x0f, 0x1b, 0x1c, 0x89,
+       0x4a, 0xdd, 0xf5, 0x4c, 0x42, 0x8d, 0x39, 0xd3, 0x0c, 0xcc, 0x3e, 0x53, 
0x0e, 0x61, 0x54, 0x31,
+       0x5e, 0x83, 0x25, 0x93, 0xd8, 0xd6, 0x31, 0xf1, 0x34, 0x5d, 0x70, 0x73, 
0x79, 0x4d, 0x5a, 0xcf,
+       0xab, 0x15, 0x01, 0xae, 0x71, 0x76, 0xde, 0x80, 0x72, 0x5f, 0xf7, 0x8e, 
0x88, 0xa7, 0x31, 0xb7,
+       0xb4, 0xc2, 0x2c, 0x0e, 0x70, 0x10, 0x73, 0x20, 0xeb, 0x80, 0x82, 0x13, 
0xc7, 0x32, 0x35, 0x9b,
+       0xe8, 0x7e, 0xa0, 0xed, 0x5b, 0x81, 0x2f, 0x5f, 0xa4, 0x72, 0x51, 0xab, 
0x0c, 0xbe, 0x4d, 0xc1,
+       0x9b, 0x56, 0xe0, 0xd3, 0x4f, 0x72, 0xcc, 0xbe, 0x1b, 0x22, 0x5e, 0x62, 
0x88, 0x15, 0x06, 0xde,
+       0x71, 0x05, 0xde, 0x7d, 0x58, 0x3e, 0xb4, 0x7a, 0x87, 0xc4, 0x0f, 0xb4, 
0xe4, 0x2a, 0x94, 0x43,
+       0x61, 0x9f, 0x17, 0xad, 0x9d, 0x78, 0x3d, 0xbe, 0x0a, 0xe0, 0x0c, 0x6d, 
0x5b, 0xe3, 0x86, 0xe3,
+       0x72, 0x92, 0x47, 0x25, 0xda, 0xc0, 0x2d, 0x1b, 0x86, 0xc2, 0x70, 0x68, 
0x99, 0xf2, 0x15, 0x26,
+       0x48, 0xf6, 0x8c, 0xef, 0xc0, 0x32, 0x55, 0x43, 0xe3, 0x70, 0xe8, 0x1c, 
0xf9, 0x6c, 0xb9, 0x69,
+       0x7d, 0xbf, 0x27, 0x5f, 0x65, 0xf3, 0x44, 0xce, 0xb0, 0x5f, 0x67, 0x2d, 
0x74, 0xc5, 0xed, 0xf8,
+       0x3d, 0xfc, 0x1d, 0x58, 0x09, 0xdc, 0x40, 0xb7, 0x79, 0x07, 0x8a, 0xca, 
0x15, 0xfd, 0x1a, 0xc3,
+       0x3f, 0xcf, 0xda, 0x58, 0x8f, 0x1d, 0xbf, 0xc7, 0xd4, 0xfc, 0x32, 0x14, 
0x39, 0xaa, 0x65, 0xca,
+       0xd7, 0x19, 0xd2, 0x02, 0x7b, 0x6f, 0x9a, 0xf8, 0x01, 0x60, 0x36, 0xe8, 
0xf4, 0x2a, 0x5e, 0x4d,
+       0x0e, 0x1e, 0x51, 0x84, 0xdd, 0x84, 0x90, 0x95, 0xbf, 0xca, 0xc3, 0x85, 
0x8e, 0xe5, 0xf4, 0x6c,
+       0x32, 0x6a, 0xd9, 0xd2, 0x06, 0x47, 0x3a, 0xb3, 0xc1, 0x19, 0xb3, 0x23, 
0xb9, 0x6c, 0x3b, 0x32,
+       0xd0, 0x4f, 0x6d, 0x57, 0x17, 0x0b, 0x3b, 0xcf, 0x6c, 0x7a, 0x59, 0xc0, 
0xd8, 0x4c, 0x6f, 0x43,
+       0x85, 0x2e, 0x71, 0xdd, 0xa0, 0x76, 0xcb, 0x1d, 0x06, 0xcc, 0xb5, 0x45, 
0x33, 0x59, 0x8c, 0xda,
+       0xda, 0xc3, 0x60, 0x64, 0x19, 0xcf, 0x65, 0x2c, 0xe3, 0xa9, 0x8b, 0x60, 
0xfe, 0xcb, 0x2c, 0x82,
+       0x85, 0xf1, 0x45, 0x30, 0x62, 0xe7, 0x8b, 0x4c, 0x1b, 0x93, 0x76, 0x3e, 
0xad, 0x57, 0xa5, 0x09,
+       0x7a, 0x95, 0x2d, 0x48, 0x98, 0x2e, 0xc8, 0xe7, 0xb0, 0xbc, 0xe9, 0xb9, 
0x47, 0xc4, 0x6b, 0xd0,
+       0xd0, 0x21, 0x92, 0xe2, 0x1b, 0x80, 0xf6, 0x19, 0x98, 0xb1, 0x86, 0x85, 
0x3f, 0xb2, 0xc4, 0xc6,
+       0xb5, 0xc4, 0xe1, 0x51, 0x54, 0x44, 0x1d, 0x25, 0x8f, 0x21, 0x72, 0xac, 
0x9d, 0xbf, 0x28, 0xff,
+       0x9a, 0x87, 0x6a, 0xdd, 0xed, 0xf7, 0x75, 0xc7, 0xac, 0xbb, 0x8e, 0x43, 
0x8c, 0x80, 0xda, 0x1d,
+       0xc3, 0xb6, 0x28, 0xbb, 0x43, 0xbb, 0xc3, 0x9d, 0x5e, 0x85, 0x43, 0x43, 
0xbb, 0xf3, 0x1e, 0x94,
+       0xf5, 0x61, 0x70, 0xa8, 0xf5, 0x49, 0x70, 0xe8, 0x9a, 0x8c, 0x6a, 0x75, 
0x43, 0x4e, 0x6b, 0x50,
+       0x6d, 0x18, 0x1c, 0xee, 0xb0, 0x76, 0x15, 0xf4, 0xe8, 0x99, 0x1a, 0x81, 
0x44, 0x57, 0xee, 0x58,
+       0x85, 0xd7, 0x8a, 0xb1, 0x98, 0x6b, 0xbd, 0x0a, 0x25, 0x86, 0x29, 0x1c, 
0x39, 0x15, 0x49, 0x91,
+       0x02, 0x58, 0xcc, 0xf5, 0x16, 0x20, 0xf6, 0x19, 0xc3, 0xb5, 0xa3, 0xa1, 
0xf2, 0x00, 0x49, 0xba,
+       0xa7, 0x2e, 0x85, 0x4d, 0xe1, 0x78, 0xef, 0xc0, 0xf2, 0xc0, 0x73, 0x4f, 
0x4e, 0xb5, 0xc0, 0xd5,
+       0x04, 0xcf, 0x86, 0x9e, 0x2d, 0xdc, 0x20, 0x62, 0x4d, 0x5d, 0x97, 0xf3, 
0x78, 0xcf, 0xb3, 0xf1,
+       0x1d, 0xc0, 0xae, 0x67, 0xf5, 0x2c, 0x47, 0xb7, 0xb5, 0x81, 0x67, 0x39, 
0x86, 0x35, 0xd0, 0x6d,
+       0xa6, 0x15, 0x25, 0xf5, 0x7c, 0xd8, 0xb2, 0x1b, 0x36, 0xe0, 0xb7, 0x12, 
0xe8, 0xf1, 0x88, 0x8b,
+       0x9c, 0x78, 0xd8, 0x52, 0x0b, 0x47, 0x7e, 0x0f, 0x56, 0xd2, 0xd8, 0x82, 
0x89, 0x25, 0x86, 0x8f,
+       0x93, 0xf8, 0x82, 0x65, 0x1f, 0x42, 0xe5, 0x80, 0xe8, 0xc1, 0xd0, 0x23, 
0xda, 0x81, 0xad, 0xf7,
+       0x7c, 0xa6, 0x2f, 0xe5, 0x8d, 0x2b, 0x69, 0x7e, 0x3f, 0xe1, 0x28, 0x4f, 
0x28, 0x86, 0xba, 0x78,
+       0x90, 0x78, 0x53, 0x7e, 0x57, 0x82, 0xc5, 0x64, 0x33, 0x7e, 0x0f, 0x2e, 
0xf8, 0xc3, 0xc1, 0xc0,
+       0xf5, 0x02, 0x9f, 0x8f, 0xc1, 0x23, 0x07, 0x1e, 0xf1, 0x0f, 0x99, 0xfe, 
0x44, 0x9a, 0xb8, 0x1c,
+       0xe2, 0xd0, 0xb1, 0xa8, 0x1c, 0x03, 0x7f, 0x1f, 0x56, 0xa3, 0xae, 0x82, 
0x95, 0x2c, 0xa2, 0xd5,
+       0xa2, 0x98, 0x2b, 0x97, 0xa4, 0x71, 0x35, 0x44, 0xce, 0xd0, 0x60, 0xe5, 
0x77, 0x24, 0x40, 0x69,
+       0x05, 0x24, 0x26, 0x73, 0x7d, 0xc4, 0xa3, 0xde, 0x66, 0x44, 0x05, 0x39, 
0x34, 0x14, 0x69, 0x96,
+       0x02, 0xe4, 0x26, 0x2a, 0xc0, 0x3a, 0xa0, 0xbe, 0x7e, 0x12, 0x86, 0x10, 
0xa1, 0x61, 0xa2, 0x36,
+       0xb6, 0xda, 0xd7, 0x4f, 0x84, 0x7d, 0x64, 0x71, 0xf1, 0x4f, 0x24, 0x58, 
0x16, 0x63, 0xe2, 0xd3,
+       0xf6, 0x07, 0xae, 0xe3, 0x93, 0xcc, 0x95, 0x21, 0x8d, 0xaf, 0x8c, 0x0d, 
0x28, 0x7a, 0xa2, 0x0b,
+       0x1b, 0xce, 0x98, 0x61, 0x0d, 0xf5, 0x40, 0x8d, 0xf0, 0x32, 0xa7, 0x92, 
0x9f, 0x34, 0x15, 0xe5,
+       0x0f, 0x24, 0x58, 0x49, 0x0c, 0xb0, 0x7e, 0xa8, 0xdb, 0x36, 0xa1, 0x91, 
0x75, 0x16, 0xe3, 0xa4,
+       0x71, 0xc6, 0x3d, 0x84, 0x92, 0x11, 0xf6, 0x99, 0x31, 0xc4, 0x18, 0xf1, 
0x25, 0xc7, 0xf8, 0x09,
+       0x14, 0x23, 0x7d, 0xcf, 0x5a, 0xf0, 0xd2, 0xec, 0x05, 0x9f, 0x4b, 0x2f, 
0x78, 0xe5, 0x6f, 0x25,
+       0xa8, 0x3c, 0x23, 0xa7, 0x9d, 0x43, 0xdd, 0x23, 0x26, 0xd5, 0x20, 0x5c, 
0x83, 0xca, 0x51, 0x04,
+       0x70, 0x4d, 0x1e, 0x9f, 0x57, 0x37, 0xae, 0x8e, 0x39, 0xb2, 0x18, 0x45, 
0x4d, 0xf7, 0xa0, 0x8e,
+       0xf0, 0x50, 0xf7, 0x0f, 0x59, 0x66, 0xe2, 0x67, 0x27, 0x0b, 0x61, 0xe2, 
0xa2, 0x26, 0x30, 0xf1,
+       0x87, 0x70, 0x49, 0xb7, 0x6d, 0xf7, 0x45, 0x7b, 0x18, 0xb4, 0x0f, 0xda, 
0xd4, 0x4d, 0x6c, 0xf1,
+       0x50, 0xe8, 0x34, 0xed, 0xca, 0x26, 0x61, 0x29, 0x7f, 0x52, 0x8c, 0x34, 
0xbf, 0x33, 0xdc, 0xf7,
+       0x0d, 0xcf, 0xda, 0x67, 0xa9, 0x51, 0xe0, 0x0e, 0x2c, 0x43, 0x28, 0x3c, 
0x7f, 0xc1, 0x0a, 0x2c,
+       0xfa, 0x1c, 0x85, 0xc5, 0x87, 0x22, 0x23, 0x4b, 0xc1, 0xf0, 0x47, 0xb0, 
0xe0, 0x0f, 0xf7, 0x69,
+       0x90, 0xc5, 0xdc, 0x6d, 0x75, 0xe3, 0xb5, 0xb1, 0xa0, 0x3c, 0xf5, 0xa9, 
0xbb, 0x1d, 0x8e, 0xad,
+       0x86, 0xdd, 0xa8, 0x7f, 0x33, 0x5c, 0xc7, 0x1f, 0xf6, 0x89, 0x47, 0xfd, 
0x5b, 0x81, 0xe7, 0x31,
+       0x21, 0xa8, 0x69, 0xd2, 0x74, 0xd2, 0xa3, 0xde, 0xce, 0x0f, 0x68, 0xfb, 
0x1c, 0x6b, 0x2f, 0x09,
+       0x48, 0xd3, 0xa4, 0xa1, 0x41, 0xd4, 0x9f, 0x89, 0x58, 0xa4, 0x18, 0x21, 
0x90, 0x09, 0xf8, 0x16,
+       0x54, 0x07, 0x9e, 0xe5, 0x7a, 0x56, 0x70, 0xaa, 0xd9, 0xe4, 0x98, 0x70, 
0x9b, 0x3a, 0xa7, 0x56,
+       0x42, 0xe8, 0x36, 0x05, 0xe2, 0x55, 0x58, 0x30, 0x87, 0x9e, 0xbe, 0x6f, 
0x13, 0x66, 0x44, 0x8b,
+       0x8f, 0x0b, 0x81, 0x37, 0x24, 0x6a, 0x08, 0xc4, 0x0d, 0x40, 0x2c, 0x6b, 
0x8c, 0x96, 0xb3, 0xc5,
+       0xad, 0x67, 0x79, 0x54, 0xf6, 0xa9, 0x34, 0x5d, 0xad, 0xb2, 0x4e, 0x11, 
0x2c, 0x95, 0x27, 0xc2,
+       0xd9, 0xf2, 0x44, 0x3a, 0x03, 0x8f, 0xe8, 0xa6, 0x16, 0x85, 0x28, 0x2c, 
0x07, 0x29, 0xaa, 0x15,
+       0x0a, 0xad, 0x87, 0x40, 0xfc, 0x16, 0xcc, 0xf3, 0x40, 0x9d, 0xe5, 0x1d, 
0xe5, 0x8d, 0x95, 0xac,
+       0xe2, 0x8c, 0x2a, 0x70, 0xf0, 0x8f, 0x60, 0xc9, 0x72, 0xac, 0xc0, 0xd2, 
0xed, 0x5d, 0xd7, 0xe7,
+       0xf5, 0x80, 0x0a, 0xf3, 0xa8, 0x77, 0x67, 0x48, 0xb1, 0x99, 0xee, 0xf5, 
0x78, 0x7e, 0x5b, 0x0f,
+       0x88, 0x1f, 0xa8, 0xa3, 0xe4, 0xf0, 0x47, 0x70, 0x2d, 0xce, 0xed, 0x92, 
0x9a, 0xa3, 0xf9, 0x81,
+       0x1e, 0x10, 0x96, 0xaf, 0x14, 0xd5, 0x2b, 0x11, 0x4e, 0x27, 0x81, 0xd2, 
0xa1, 0x18, 0xf8, 0x11,
+       0xac, 0x1c, 0xb8, 0x9e, 0x41, 0x33, 0xc3, 0x81, 0x65, 0x68, 0x86, 0x47, 
0x74, 0x36, 0xd0, 0xa5,
+       0x84, 0x80, 0x30, 0xc3, 0xe8, 0x52, 0x84, 0xba, 0x68, 0xc7, 0x6d, 0xb8, 
0x99, 0x96, 0x95, 0xe7,
+       0xda, 0xf6, 0xbe, 0x6e, 0x1c, 0x69, 0x54, 0x9a, 0x7c, 0x08, 0xc4, 0x60, 
0xd9, 0x0d, 0x8b, 0xeb,
+       0x6e, 0x24, 0x85, 0xa4, 0x0a, 0xdc, 0x2d, 0x81, 0xda, 0x21, 0x46, 0x7a, 
0xd5, 0x93, 0x40, 0x67,
+       0x69, 0x4e, 0x79, 0xf2, 0xaa, 0x27, 0x81, 0xae, 0xa6, 0x7b, 0xe0, 0x36, 
0x5c, 0x4a, 0xf1, 0x20,
+       0x11, 0x0b, 0xe3, 0xa9, 0x7a, 0x70, 0x31, 0xd9, 0x6d, 0x37, 0x2e, 0x91, 
0x6d, 0xc2, 0x82, 0x58,
+       0x50, 0xb8, 0x02, 0xa5, 0xc6, 0x89, 0x61, 0x0f, 0x7d, 0xeb, 0x38, 0xac, 
0x94, 0xb1, 0x0f, 0x23,
+       0x09, 0x2f, 0x42, 0xf1, 0x89, 0x6e, 0xd9, 0xee, 0x31, 0xf1, 0x50, 0x0e, 
0x57, 0x01, 0x9e, 0x91,
+       0x53, 0x4d, 0xb4, 0xe6, 0x95, 0x37, 0x61, 0x69, 0x44, 0x9c, 0xb4, 0x33, 
0x17, 0x28, 0x3a, 0x47,
+       0x3b, 0x37, 0x74, 0xcf, 0xb6, 0xe8, 0x9b, 0xa4, 0xfc, 0x8b, 0x04, 0x37, 
0x84, 0x36, 0x44, 0x91,
+       0x22, 0x31, 0x19, 0xe7, 0xa3, 0xf0, 0x30, 0xdb, 0x9a, 0xa4, 0x97, 0x71, 
0x6e, 0x74, 0x19, 0x67,
+       0x47, 0x3e, 0xf9, 0x97, 0x8b, 0x7c, 0x0a, 0x2f, 0x19, 0xf9, 0xcc, 0x4d, 
0x8a, 0x7c, 0x94, 0x3f,
+       0xce, 0xc1, 0xeb, 0x33, 0xe6, 0x19, 0x39, 0xe8, 0x55, 0x80, 0x28, 0xaa, 
0xf6, 0x99, 0x87, 0xa9,
+       0xa8, 0x09, 0xc8, 0xac, 0x99, 0xff, 0x20, 0xe1, 0xb8, 0xf3, 0x6c, 0xf5, 
0x7d, 0x94, 0xb9, 0xfa,
+       0x66, 0x8d, 0xe3, 0xee, 0xb6, 0xeb, 0x1e, 0x0d, 0x07, 0xcc, 0xba, 0xc6, 
0x2e, 0xfe, 0x3b, 0x30,
+       0x47, 0x3c, 0xcf, 0xf5, 0x18, 0x6f, 0xc6, 0x8b, 0xb5, 0xcc, 0x41, 0x37, 
0x28, 0x82, 0xca, 0xf1,
+       0xb0, 0x0c, 0x0b, 0x62, 0xc5, 0x08, 0xf6, 0x84, 0xaf, 0xca, 0x2d, 0x80, 
0xf8, 0x13, 0xb8, 0x4c,
+       0x55, 0xcf, 0x30, 0x88, 0xef, 0x73, 0x6d, 0xa3, 0x1a, 0x46, 0xb5, 0x4d, 
0xf9, 0xb3, 0x1c, 0x60,
+       0x31, 0x64, 0x81, 0xce, 0xe4, 0xff, 0xa5, 0xb4, 0xe2, 0x4d, 0xa8, 0x50, 
0x79, 0x51, 0x13, 0xcd,
+       0xaa, 0xa0, 0x8c, 0x41, 0x91, 0x93, 0x4b, 0xb7, 0x4d, 0x50, 0xa1, 0xc2, 
0xcb, 0xa9, 0xd0, 0xdc,
+       0x4b, 0xaa, 0xd0, 0xfc, 0xc4, 0xe0, 0xf9, 0x5d, 0x90, 0x75, 0xf3, 0x98, 
0x2e, 0x54, 0x9f, 0x98,
+       0x9a, 0x6d, 0xf9, 0x01, 0x71, 0x42, 0x1f, 0xc5, 0x23, 0xfa, 0x8b, 0x71, 
0xfb, 0xb6, 0x68, 0xa6,
+       0xde, 0x4a, 0xf9, 0x45, 0x1e, 0xae, 0x8c, 0x73, 0x30, 0xd2, 0xb7, 0xdb, 
0x61, 0xfa, 0x45, 0xa5,
+       0x67, 0x19, 0x64, 0xcf, 0xb3, 0x45, 0x5c, 0x33, 0x06, 0xc7, 0xf7, 0x60, 
0x79, 0x14, 0xd6, 0xb5,
+       0x7d, 0x91, 0x3e, 0x67, 0x35, 0xe1, 0xf6, 0x98, 0x3a, 0x3e, 0xc8, 0x54, 
0xc7, 0x8c, 0x91, 0x65,
+       0x6b, 0x60, 0x5a, 0xc4, 0x85, 0x99, 0x22, 0x9e, 0x9b, 0x22, 0xe2, 0x48, 
0x9b, 0xe7, 0x5f, 0x5e,
+       0x9b, 0x17, 0x52, 0xda, 0xcc, 0x92, 0x77, 0x9e, 0x99, 0x1d, 0x7a, 0xee, 
0xb0, 0x77, 0xa8, 0xf9,
+       0x9c, 0x0d, 0x2c, 0x3f, 0x2b, 0xa6, 0x93, 0x77, 0x96, 0xa6, 0x71, 0xb4, 
0x98, 0x59, 0xca, 0x83,
+       0xd4, 0x7a, 0x58, 0x84, 0xa2, 0x4a, 0x4c, 0xcb, 0x23, 0x06, 0xb5, 0x9a, 
0x65, 0x58, 0x10, 0x89,
+       0x05, 0x92, 0x12, 0xab, 0x23, 0xa7, 0xfc, 0x5e, 0x01, 0x96, 0xc2, 0x05, 
0x2d, 0xca, 0xb9, 0x13,
+       0x96, 0xc6, 0x0d, 0x28, 0x47, 0x55, 0xe0, 0xb8, 0xc0, 0x1b, 0x82, 0xc6, 
0x02, 0xa3, 0x7c, 0x46,
+       0x60, 0x94, 0xae, 0x22, 0x17, 0x44, 0xcd, 0x24, 0x59, 0x45, 0xbe, 0x09, 
0x25, 0x51, 0x01, 0x24,
+       0x66, 0x9a, 0xf3, 0x31, 0x3c, 0x15, 0xaf, 0xcc, 0x9f, 0x31, 0x5e, 0x89, 
0x03, 0x91, 0x85, 0x33,
+       0x04, 0x22, 0x97, 0x60, 0x8e, 0x0c, 0x5c, 0xe3, 0x90, 0x97, 0x37, 0xa8, 
0x3b, 0xe6, 0xef, 0xb8,
+       0x0e, 0x57, 0x87, 0x3e, 0xf1, 0xa8, 0xa7, 0x3c, 0xb6, 0x4c, 0x62, 0x6a, 
0xe9, 0x29, 0x95, 0x12,
+       0x41, 0x80, 0x4c, 0x11, 0x77, 0x05, 0xde, 0x6e, 0x72, 0x92, 0x9f, 0xc3, 
0x4a, 0xd4, 0x4d, 0x67,
+       0x26, 0x4b, 0xeb, 0xd3, 0xb0, 0x1d, 0x98, 0x12, 0xad, 0xa5, 0x47, 0x16, 
0xf6, 0xac, 0x31, 0x44,
+       0x1a, 0xac, 0x3f, 0x16, 0x9e, 0x54, 0xc5, 0x83, 0xb1, 0x36, 0x2a, 0x25, 
0x1e, 0x98, 0xf0, 0xf1,
+       0x97, 0x79, 0x79, 0x86, 0x81, 0x1a, 0x6c, 0x06, 0xaf, 0x41, 0x39, 0x38, 
0x71, 0x34, 0xe2, 0xd0,
+       0x08, 0xd2, 0x64, 0x61, 0x59, 0xc4, 0x63, 0x08, 0x4e, 0x9c, 0x06, 0x6f, 
0x50, 0xfe, 0x3c, 0x07,
+       0xe5, 0x30, 0xce, 0x22, 0x8e, 0x39, 0x2a, 0x7e, 0x69, 0x4c, 0xfc, 0x33, 
0x37, 0x00, 0x5e, 0x85,
+       0xc5, 0x64, 0xf5, 0x3a, 0xcc, 0x9a, 0xee, 0xab, 0xe5, 0x44, 0xd1, 0x1a, 
0xbf, 0x99, 0x51, 0x1b,
+       0x2d, 0x84, 0x52, 0x18, 0x2d, 0x8f, 0xbe, 0x31, 0x5e, 0x1e, 0x8d, 0x0a, 
0x63, 0x67, 0xab, 0x90,
+       0xce, 0x4f, 0xa9, 0x90, 0xae, 0x41, 0xd1, 0xf2, 0x79, 0xd5, 0x92, 0x69, 
0x4d, 0xc4, 0xa7, 0x05,
+       0xcb, 0x67, 0x05, 0x4b, 0x7c, 0x1d, 0xe6, 0x79, 0x59, 0x37, 0xbd, 0x42, 
0x05, 0x50, 0xf9, 0x4b,
+       0x29, 0x72, 0x3d, 0x94, 0x87, 0x2a, 0x31, 0x88, 0x35, 0x08, 0x7e, 0x05, 
0xac, 0x7c, 0x0c, 0x90,
+       0x08, 0xf9, 0xf3, 0xb3, 0x43, 0xfe, 0x52, 0x3f, 0x8a, 0xf6, 0x27, 0x30, 
0xa2, 0x30, 0x99, 0x11,
+       0xca, 0xef, 0xc7, 0xe5, 0x09, 0x3a, 0x0f, 0x66, 0xd1, 0x7e, 0x05, 0xb3, 
0x88, 0xac, 0x67, 0x3e,
+       0x73, 0xe3, 0x76, 0xaa, 0xf5, 0x2c, 0x30, 0xd3, 0x14, 0xc5, 0x02, 0x3f, 
0x95, 0xa2, 0x0a, 0x9e,
+       0x98, 0xf8, 0x68, 0x22, 0x27, 0x8d, 0x25, 0x72, 0x69, 0x26, 0xd2, 0xe1, 
0x9d, 0x9d, 0x89, 0x6f,
+       0x01, 0xf2, 0x88, 0xa8, 0xfa, 0x9f, 0x6a, 0x86, 0x3b, 0x74, 0x02, 0x26, 
0x06, 0xb6, 0x71, 0xb3,
+       0x14, 0x37, 0xd5, 0x69, 0x4b, 0x72, 0x6b, 0xb2, 0x90, 0xdc, 0x9a, 0x54, 
0xfe, 0xbd, 0x00, 0x10,
+       0x96, 0x30, 0x8c, 0xa3, 0xd9, 0x43, 0x7e, 0x1f, 0x8a, 0x94, 0x10, 0xdb, 
0x56, 0xc8, 0x31, 0xa6,
+       0xad, 0x65, 0x3a, 0xc3, 0x9a, 0x71, 0x74, 0xb7, 0x66, 0x1c, 0xf1, 0xcc, 
0x56, 0xe7, 0x0f, 0x63,
+       0x4a, 0x93, 0x7f, 0x89, 0xf9, 0x76, 0x00, 0x1d, 0xeb, 0xb6, 0x65, 0xf2, 
0x44, 0x25, 0x19, 0xc1,
+       0xad, 0x4f, 0x1c, 0xc0, 0xf3, 0xa8, 0x03, 0x17, 0xe2, 0xd2, 0x71, 0x1a, 
0x40, 0x07, 0x34, 0xb6,
+       0x11, 0x7f, 0x65, 0xcc, 0x92, 0x47, 0xbb, 0xac, 0xa9, 0x0a, 0x7c, 0x96, 
0x99, 0x98, 0x7f, 0x09,
+       0x33, 0xb1, 0x30, 0xc1, 0x4c, 0xa4, 0x9d, 0x18, 0xaf, 0x6e, 0xc7, 0x4e, 
0x4c, 0x79, 0x03, 0x16,
+       0x04, 0x5f, 0x69, 0xde, 0xd2, 0x74, 0x4c, 0xeb, 0xd8, 0x32, 0x87, 0xba, 
0x8d, 0xce, 0xd1, 0xf7,
+       0xfa, 0xb0, 0x3f, 0xb4, 0xf9, 0xf6, 0xb8, 0xa4, 0xfc, 0xb6, 0x04, 0x4b, 
0x23, 0x2c, 0xc0, 0xab,
+       0x70, 0x65, 0x6f, 0x64, 0x53, 0xaf, 0xee, 0x7a, 0xde, 0x90, 0xe5, 0x51, 
0xe8, 0x1c, 0xbe, 0x08,
+       0x78, 0x8b, 0x24, 0x76, 0x08, 0x59, 0x2f, 0x24, 0xe1, 0x15, 0x40, 0xf5, 
0x43, 0x62, 0x1c, 0xf9,
+       0xc3, 0xfe, 0x8e, 0xe5, 0xf7, 0xf5, 0xc0, 0x38, 0x44, 0x39, 0x7c, 0x19, 
0x2e, 0xb0, 0x1d, 0xbe,
+       0x2d, 0xd2, 0x21, 0x9e, 0xa5, 0xdb, 0xd6, 0x17, 0x84, 0x77, 0xc8, 0xe3, 
0x65, 0x58, 0xda, 0x22,
+       0xe1, 0x4e, 0x1a, 0x07, 0x16, 0x94, 0xff, 0x8a, 0xcd, 0x51, 0xcd, 0x38, 
0x8a, 0xe2, 0xb7, 0x99,
+       0x5a, 0x97, 0xc5, 0xeb, 0xdc, 0x4b, 0xf0, 0x3a, 0x3f, 0x81, 0xd7, 0xbf, 
0xba, 0x5c, 0x60, 0x44,
+       0x6c, 0xf3, 0xa3, 0x62, 0xdb, 0x87, 0xab, 0xd1, 0xc4, 0xa9, 0x78, 0xea, 
0x62, 0x72, 0xf5, 0x43,
+       0xb6, 0x15, 0x3f, 0x93, 0x03, 0x0a, 0x94, 0x2c, 0x5f, 0xd3, 0x59, 0xdf, 
0x74, 0x59, 0xb7, 0x68,
+       0xf9, 0x9c, 0xa4, 0xf2, 0x3c, 0xf2, 0x97, 0x4f, 0x6c, 0xf7, 0xc5, 0x6c, 
0x9a, 0xaf, 0x41, 0x55,
+       0x8c, 0x7e, 0x97, 0x78, 0x7d, 0xce, 0xd3, 0xdc, 0x7a, 0x45, 0x1d, 0x81, 
0x2a, 0xdd, 0x48, 0x68,
+       0x7b, 0x8e, 0x1f, 0x95, 0xc8, 0x66, 0x92, 0x9f, 0x9e, 0xc9, 0x28, 0x3f, 
0x93, 0x12, 0xee, 0x9d,
+       0x1c, 0x7d, 0x55, 0x7a, 0x5f, 0xc9, 0x23, 0xdd, 0x83, 0x95, 0xb0, 0x6f, 
0xea, 0x84, 0x00, 0x73,
+       0x49, 0x2a, 0x0e, 0xf9, 0x11, 0x1f, 0x14, 0x50, 0xde, 0x07, 0x59, 0x0c, 
0x5e, 0x25, 0xba, 0x71,
+       0x48, 0xcc, 0x86, 0x63, 0xb6, 0x0f, 0xba, 0x61, 0x9c, 0x3a, 0x75, 0x26, 
0xca, 0xf3, 0xa8, 0x6c,
+       0x5c, 0xb7, 0x5d, 0x9f, 0x44, 0x61, 0xef, 0x4c, 0x87, 0x36, 0x83, 0xa5, 
0x23, 0x74, 0x43, 0x1d,
+       0xfb, 0xca, 0xa2, 0xfa, 0x0d, 0x09, 0x5e, 0x8b, 0x66, 0x2b, 0x1c, 0xcb, 
0x9e, 0xa3, 0x1b, 0x47,
+       0x8e, 0xfb, 0x82, 0x1d, 0xaf, 0x31, 0xa3, 0xe0, 0x69, 0xe6, 0xa7, 0x3e, 
0x80, 0x72, 0x2c, 0x26,
+       0xaa, 0x71, 0x33, 0x9d, 0x00, 0x44, 0x72, 0xf2, 0x95, 0x1f, 0x46, 0x4e, 
0x56, 0xa4, 0xda, 0x23,
+       0x43, 0x97, 0x46, 0xb5, 0x22, 0x8e, 0xba, 0x73, 0xb3, 0xa3, 0x6e, 0xe5, 
0xbf, 0x25, 0xb8, 0x38,
+       0x92, 0x8b, 0x9c, 0xf1, 0x3b, 0x63, 0xb9, 0x45, 0x2e, 0xe3, 0x84, 0xca, 
0x5b, 0x80, 0x6c, 0x7d,
+       0x24, 0xea, 0xa1, 0x8a, 0x9a, 0x67, 0x47, 0x89, 0xaa, 0xb4, 0x2d, 0x11, 
0xfc, 0x8d, 0x1f, 0x3c,
+       0x28, 0x64, 0x1d, 0x3c, 0x18, 0x89, 0xb7, 0xe7, 0xc6, 0xe2, 0xed, 0x37, 
0xa1, 0x1a, 0x0d, 0xcd,
+       0x23, 0xba, 0x79, 0x2a, 0x76, 0x62, 0x79, 0x92, 0x10, 0x0d, 0x5b, 0xa5, 
0x4d, 0xca, 0x09, 0x2c,
+       0x0a, 0x06, 0x70, 0x7f, 0x31, 0x63, 0xda, 0x91, 0x01, 0xcd, 0xbd, 0x7c, 
0x00, 0x95, 0x4f, 0x07,
+       0x50, 0x95, 0xc8, 0x1c, 0xec, 0x5a, 0x4e, 0x2f, 0xf9, 0xea, 0x3a, 0xbd, 
0xa4, 0x6a, 0x0b, 0x5d,
+       0xea, 0x04, 0x7a, 0x30, 0x53, 0x2c, 0xb3, 0x6a, 0xe9, 0xca, 0x7f, 0x16, 
0xe0, 0x5a, 0x16, 0x61,
+       0x35, 0x3b, 0x59, 0x1f, 0xfb, 0xc0, 0xbb, 0x00, 0x6c, 0x62, 0x9a, 0x41, 
0xf3, 0xa7, 0xdc, 0x2c,
+       0x37, 0x52, 0x62, 0xc8, 0x75, 0x9a, 0x27, 0xdd, 0x84, 0x0a, 0xef, 0x19, 
0xf3, 0x83, 0x65, 0xa3,
+       0x0c, 0x18, 0x86, 0x90, 0xab, 0x00, 0x7d, 0xbf, 0xa7, 0xea, 0x01, 0x69, 
0x8b, 0xbd, 0x79, 0x49,
+       0x4d, 0x40, 0xf0, 0x6d, 0x40, 0x7d, 0xbf, 0x27, 0x32, 0xf1, 0xc1, 0x30, 
0xa0, 0x58, 0x73, 0x0c,
+       0x6b, 0x0c, 0x2e, 0x70, 0x69, 0xcf, 0x68, 0x11, 0x33, 0x4d, 0xe0, 0xb8, 
0x29, 0x38, 0x56, 0x20,
+       0xb5, 0x5d, 0x20, 0x4a, 0x05, 0xe9, 0x2d, 0x84, 0xdb, 0x80, 0xf4, 0x63, 
0xdd, 0xb2, 0x69, 0xb6,
+       0x16, 0x3a, 0x10, 0x1e, 0xae, 0x8c, 0xc1, 0xf1, 0x3a, 0x2c, 0x0d, 0xa9, 
0xc1, 0x88, 0x2d, 0x05,
+       0xcb, 0x54, 0x0b, 0xea, 0x28, 0x18, 0x6f, 0xc2, 0xb5, 0x7d, 0xdb, 0xa5, 
0xa0, 0x50, 0x1e, 0x6d,
+       0x67, 0x4f, 0xe0, 0xf8, 0x62, 0xc3, 0xb5, 0xa8, 0x4e, 0xc5, 0xa1, 0x4a, 
0xa6, 0x9b, 0x26, 0x8d,
+       0x60, 0x58, 0xfa, 0x59, 0x52, 0xc3, 0x57, 0xea, 0xf2, 0x8c, 0x70, 0x7b, 
0xb3, 0x63, 0x39, 0x06,
+       0x3f, 0x8d, 0x54, 0x52, 0x47, 0xa0, 0x18, 0x8b, 0x03, 0x9d, 0x15, 0x7e, 
0xe8, 0x84, 0x9d, 0xda,
+       0xa4, 0xee, 0x92, 0xf3, 0xa9, 0x71, 0x32, 0xb0, 0x3c, 0x62, 0xb2, 0x5a, 
0xbd, 0xa4, 0x8e, 0x40,
+       0x85, 0xcc, 0x36, 0x75, 0xe3, 0xc8, 0x76, 0x7b, 0xac, 0x2a, 0x5f, 0x50, 
0x13, 0x10, 0xe5, 0x33,
+       0xb8, 0x24, 0x34, 0xee, 0x29, 0x09, 0xb6, 0x75, 0x3f, 0xb1, 0x0f, 0xf2, 
0x55, 0x0d, 0x75, 0xa2,
+       0x18, 0x3d, 0x4a, 0x3b, 0x52, 0xe8, 0x3a, 0x2c, 0x31, 0x23, 0x94, 0x70, 
0x96, 0xd2, 0xec, 0xcc,
+       0xa3, 0x62, 0xa7, 0x06, 0x3a, 0xc3, 0x17, 0xff, 0x3f, 0xb8, 0x1e, 0xcd, 
0x83, 0x66, 0xa2, 0x9a,
+       0x49, 0x6c, 0x12, 0x10, 0x6d, 0x10, 0x6e, 0xaa, 0x9c, 0xc1, 0x3d, 0x5f, 
0x09, 0x29, 0xec, 0xe8,
+       0xde, 0xd1, 0x16, 0xeb, 0x1f, 0x96, 0xe3, 0x95, 0x7f, 0x94, 0xa2, 0x70, 
0xea, 0x29, 0x09, 0x98,
+       0xd7, 0xf5, 0xdb, 0x07, 0x54, 0x2b, 0xfd, 0x81, 0x6e, 0xcc, 0x5c, 0xb4, 
0xd7, 0xa0, 0xe4, 0x84,
+       0xb8, 0xc2, 0x50, 0xc7, 0x00, 0xdc, 0x82, 0x02, 0x2b, 0x86, 0xe4, 0xa7, 
0x6c, 0xfc, 0x64, 0x7d,
+       0xf5, 0x2e, 0x2b, 0x8d, 0xc0, 0x6e, 0x43, 0xed, 0x34, 0x3b, 0xdd, 0x46, 
0xab, 0xab, 0x32, 0x3a,
+       0xca, 0x03, 0x28, 0xb0, 0xc2, 0x48, 0x15, 0x12, 0x6d, 0xe8, 0x1c, 0xc6, 
0x50, 0x6d, 0xb5, 0x5b,
+       0x5a, 0x02, 0x26, 0xe1, 0x05, 0xc8, 0xd7, 0xb6, 0xb7, 0x51, 0x4e, 0xf9, 
0x01, 0xdc, 0x9c, 0xf2,
+       0xa9, 0xb3, 0x5a, 0xa7, 0x8b, 0x30, 0xcf, 0x1c, 0x01, 0xf7, 0xb3, 0x25, 
0x55, 0xbc, 0x29, 0x4e,
+       0x94, 0x4d, 0x3f, 0x25, 0x81, 0x38, 0xf8, 0x3c, 0x83, 0x54, 0x54, 0x92, 
0xcb, 0x25, 0x4b, 0x72,
+       0xe3, 0x3e, 0x2a, 0x9f, 0xe1, 0xa3, 0x94, 0xff, 0x90, 0xa2, 0x70, 0x29, 
0xfa, 0xe0, 0x37, 0xc4,
+       0xc2, 0xc6, 0x01, 0x42, 0xe1, 0x0c, 0x65, 0xb9, 0xf1, 0xf9, 0xce, 0x65, 
0xcd, 0xf7, 0xff, 0x27,
+       0xa7, 0xdb, 0xf6, 0xd8, 0x16, 0x1c, 0xf9, 0x2a, 0x7c, 0x8e, 0x47, 0x99, 
0x67, 0x6b, 0x75, 0x7a,
+       0x18, 0xf3, 0xd7, 0x12, 0xac, 0x4d, 0xfa, 0xfe, 0x37, 0x84, 0xed, 0x67, 
0x0b, 0x6e, 0x94, 0xe7,
+       0x70, 0x5d, 0x4c, 0xa4, 0x6b, 0xd4, 0xd9, 0xe9, 0x0e, 0x51, 0x44, 0x56, 
0xf9, 0x40, 0x67, 0x2f,
+       0x80, 0xb9, 0xc0, 0x88, 0x4c, 0x14, 0xcd, 0x00, 0x0b, 0x81, 0xd1, 0x34, 
0x95, 0xdf, 0x94, 0x60,
+       0x75, 0x12, 0xe1, 0xb3, 0xf1, 0x27, 0x11, 0xf9, 0x48, 0x2f, 0x1f, 0xf9, 
0xa4, 0xb6, 0x91, 0x7e,
+       0x0c, 0x15, 0x31, 0x96, 0x16, 0x79, 0xd1, 0x3d, 0x71, 0x66, 0x7d, 0x9a, 
0x27, 0xb8, 0x5a, 0x10,
+       0xd8, 0x9a, 0x4f, 0x0c, 0xd7, 0x31, 0x13, 0xc9, 0x30, 0x4d, 0x70, 0xbb, 
0x81, 0xdd, 0xe1, 0xf0,
+       0x78, 0xfe, 0x51, 0x06, 0xcc, 0xe7, 0xff, 0x0b, 0x09, 0x2e, 0xa4, 0xbe, 
0x79, 0xd6, 0x69, 0x7f,
+       0xf3, 0x33, 0x71, 0xe5, 0x8f, 0x62, 0x63, 0x53, 0x33, 0xe3, 0x4d, 0xc2, 
0xae, 0x7b, 0x06, 0xd6,
+       0xfe, 0x6f, 0x4d, 0x2f, 0xbd, 0x23, 0x5a, 0x60, 0xc6, 0x38, 0x01, 0x51, 
0xfe, 0x39, 0x5e, 0xb1,
+       0x63, 0x63, 0xfe, 0x16, 0x89, 0xe6, 0x63, 0x58, 0x4c, 0x9e, 0x67, 0xf8, 
0xf2, 0xc7, 0x6c, 0x94,
+       0x9f, 0xc7, 0x11, 0x40, 0xcd, 0x34, 0x93, 0x44, 0xbf, 0x56, 0x39, 0x7f, 
0x6f, 0x64, 0xe8, 0x85,
+       0xac, 0x92, 0x62, 0x72, 0xb4, 0x23, 0xd3, 0xfa, 0x37, 0x29, 0xf2, 0xfb, 
0x59, 0xd3, 0xfa, 0x16,
+       0xa9, 0xc2, 0x9f, 0x4a, 0x91, 0xd5, 0x6b, 0x38, 0xe6, 0xd7, 0x28, 0xb2, 
0x47, 0x00, 0xd4, 0x9a,
+       0xea, 0x46, 0x10, 0x7a, 0xa1, 0xea, 0xc6, 0xa5, 0xf4, 0xc4, 0xba, 0x27, 
0x4e, 0x8d, 0x35, 0xab,
+       0xa5, 0x20, 0x7c, 0x4c, 0x9a, 0x50, 0x3e, 0x81, 0x6f, 0x91, 0x70, 0xfe, 
0x30, 0x17, 0x99, 0x50,
+       0x3e, 0xb7, 0xb6, 0x13, 0xd9, 0xa4, 0xaf, 0x6b, 0x7a, 0x91, 0xad, 0xe0, 
0xbb, 0xb6, 0xc2, 0x56,
+       0xa4, 0xa5, 0x37, 0x77, 0x56, 0xe9, 0xe1, 0xa7, 0xf0, 0xca, 0xe8, 0x28, 
0x35, 0xf7, 0x40, 0xb3,
+       0xdd, 0x17, 0xda, 0x0b, 0x3d, 0x20, 0x1e, 0xcd, 0x5a, 0x44, 0x15, 0xf7, 
0x5a, 0x7a, 0xcc, 0xed,
+       0x83, 0x6d, 0xf7, 0xc5, 0xa7, 0x21, 0x4e, 0xd2, 0x72, 0x8f, 0xb1, 0xea, 
0x5b, 0xa4, 0x11, 0xff,
+       0x90, 0x8b, 0xec, 0x6d, 0x38, 0xcd, 0x94, 0x25, 0xff, 0xc6, 0xd8, 0x5b, 
0xe9, 0x65, 0xec, 0xed,
+       0xd7, 0xaf, 0x3e, 0x09, 0x83, 0x9f, 0xc5, 0xd7, 0x6f, 0x91, 0x06, 0xfd, 
0xfc, 0x36, 0x94, 0x37,
+       0x75, 0x9f, 0x88, 0xd9, 0xe2, 0x0d, 0x51, 0x62, 0xe1, 0x47, 0x85, 0x57, 
0xd3, 0x94, 0x13, 0x88,
+       0xe9, 0x8b, 0xb3, 0x0b, 0xa2, 0x50, 0x23, 0xca, 0xb9, 0xd7, 0x32, 0xb3, 
0xf3, 0x30, 0x94, 0x0f,
+       0x91, 0xf1, 0x07, 0x50, 0x8a, 0x0a, 0x3c, 0xa2, 0xf6, 0xb0, 0x3a, 0xad, 
0x27, 0x31, 0xd5, 0xb8,
+       0x03, 0xed, 0x1d, 0x6d, 0x7b, 0x08, 0x0d, 0x5b, 0x9d, 0x7e, 0x1c, 0x54, 
0x8d, 0x3b, 0xe0, 0xf7,
+       0xa0, 0x18, 0x96, 0x58, 0x19, 0x4b, 0xca, 0x19, 0xd7, 0xf4, 0x92, 0x05, 
0x67, 0x35, 0x42, 0xc7,
+       0x77, 0xa0, 0xe0, 0x13, 0x87, 0xef, 0x26, 0x95, 0x47, 0x99, 0x9f, 0xdc, 
0xd6, 0x67, 0x68, 0xb8,
+       0x0e, 0x8b, 0xf4, 0x57, 0xf3, 0xf8, 0x2e, 0xbf, 0x38, 0x67, 0xb2, 0x36, 
0xb9, 0x1b, 0xc7, 0x53,
+       0xcb, 0x7e, 0xe2, 0x68, 0xc0, 0x77, 0x01, 0x18, 0x11, 0x2e, 0xf6, 0xe2, 
0xb4, 0xd9, 0x86, 0x1b,
+       0xf1, 0x6a, 0xc9, 0x8f, 0xf6, 0xe4, 0x1f, 0xc5, 0xf2, 0x2f, 0x4d, 0x91, 
0x50, 0x78, 0xaa, 0x34,
+       0xda, 0x3e, 0xbb, 0x0d, 0x79, 0xdd, 0x38, 0x12, 0xd7, 0x29, 0xe4, 0x49, 
0x3b, 0xba, 0x2a, 0x45,
+       0xa2, 0x6c, 0x39, 0xb0, 0xdd, 0x17, 0xac, 0xb6, 0x37, 0x89, 0x2d, 0x4f, 
0x6c, 0xf7, 0x85, 0xca,
+       0xd0, 0xf0, 0x26, 0x94, 0x87, 0xf1, 0xbe, 0x95, 0x38, 0x06, 0x9c, 0xcd, 
0x95, 0xc4, 0xfe, 0x96,
+       0x9a, 0xec, 0x44, 0xa7, 0xe5, 0xf3, 0x8d, 0x00, 0x56, 0x12, 0x9c, 0x34, 
0x2d, 0xb1, 0x59, 0xa0,
+       0x86, 0xc8, 0xf8, 0x5e, 0xb8, 0x7e, 0xaa, 0x59, 0x86, 0x29, 0x59, 0x69, 
0x0f, 0x17, 0x50, 0x13,
+       0xaa, 0x86, 0xed, 0xfa, 0x24, 0x3a, 0xd7, 0xc3, 0x2a, 0x88, 0xe5, 0x0d, 
0x25, 0x5b, 0x5f, 0x93,
+       0xfb, 0x47, 0x6a, 0xc5, 0x48, 0x6d, 0x27, 0x45, 0xa4, 0xc2, 0x4a, 0x1a, 
0x3b, 0xdb, 0x3b, 0x95,
+       0x54, 0x58, 0x4f, 0x15, 0xa4, 0xa2, 0x1d, 0xa4, 0x36, 0xbb, 0x73, 0xc0, 
0xf7, 0x10, 0x42, 0x46,
+       0xf0, 0xd3, 0xbe, 0xaf, 0x4e, 0x55, 0xe6, 0x90, 0x21, 0x4b, 0x83, 0x91, 
0xed, 0x94, 0x3b, 0x50,
+       0x18, 0x58, 0x4e, 0x8f, 0x5d, 0x72, 0x9c, 0x24, 0xc3, 0x5d, 0xcb, 0xe9, 
0xa9, 0x0c, 0x8d, 0xa1,
+       0xbb, 0x4e, 0x8f, 0xdd, 0x76, 0x9c, 0x88, 0xee, 0x32, 0x74, 0xd7, 0xe9, 
0xe1, 0x5f, 0x83, 0x1b,
+       0xde, 0xf4, 0x8d, 0x2a, 0x76, 0x27, 0xb2, 0xbc, 0xf1, 0x30, 0x93, 0xd2, 
0x8c, 0x4d, 0x2e, 0x75,
+       0x16, 0x71, 0xfc, 0x7f, 0xe1, 0x7c, 0x94, 0xdc, 0x85, 0xa7, 0x52, 0xe5, 
0x0b, 0xec, 0x8b, 0x77,
+       0x5e, 0xee, 0x28, 0xeb, 0x38, 0x1d, 0xec, 0x27, 0x2e, 0xd9, 0x8d, 0x1e, 
0x79, 0x65, 0x97, 0x38,
+       0xcb, 0x1b, 0x6f, 0x7f, 0xa9, 0xf3, 0xb2, 0xea, 0x64, 0xba, 0x74, 0x11, 
0xd9, 0xf1, 0xf9, 0x46,
+       0x76, 0x05, 0x74, 0xd2, 0x22, 0x4a, 0x9e, 0x83, 0x4c, 0x76, 0xc2, 0x9f, 
0xc3, 0xb2, 0x3d, 0x7e,
+       0x46, 0x92, 0x5d, 0x11, 0x2d, 0x4f, 0x38, 0xc5, 0x91, 0x71, 0xa6, 0x52, 
0xcd, 0x22, 0x82, 0x3f,
+       0x8e, 0x2f, 0x3d, 0xb0, 0xfd, 0x1b, 0x76, 0x9d, 0x74, 0xa2, 0xaa, 0xa7, 
0x76, 0x7a, 0xd2, 0x1d,
+       0xf1, 0x8f, 0xe0, 0x82, 0x91, 0xb5, 0x13, 0xc4, 0x2e, 0xa0, 0x96, 0x37, 
0x6e, 0x9f, 0x81, 0x62,
+       0x38, 0xd2, 0x6c, 0x42, 0xb8, 0x0b, 0xe7, 0xbd, 0xd1, 0x4d, 0x63, 0x76, 
0x77, 0xb5, 0x3c, 0xe1,
+       0xb2, 0xc8, 0xd8, 0x16, 0xb3, 0x3a, 0x4e, 0x80, 0x3b, 0x0b, 0x72, 0xc4, 
0x2e, 0xb5, 0x4e, 0x76,
+       0x16, 0xe4, 0x48, 0x65, 0x68, 0xf8, 0x13, 0x40, 0xbd, 0x91, 0x2d, 0x02, 
0x76, 0xd5, 0xb5, 0xbc,
+       0x71, 0x6b, 0x52, 0xc5, 0x3b, 0xbd, 0x9f, 0x30, 0xd6, 0x1d, 0x5b, 0x20, 
0xf7, 0x26, 0xec, 0x3a,
+       0xb0, 0x0b, 0xb2, 0x93, 0x94, 0x7f, 0xd2, 0x56, 0x85, 0x3a, 0x91, 0x1c, 
0xd6, 0xe0, 0x22, 0x3f,
+       0x0b, 0x11, 0xd9, 0x36, 0xcd, 0x60, 0x27, 0x29, 0xe4, 0x1b, 0xec, 0x43, 
0x6f, 0x4c, 0xf0, 0x20,
+       0xe3, 0x47, 0x2f, 0xd4, 0x15, 0x3d, 0xeb, 0x40, 0xc6, 0x0f, 0x61, 0xa5, 
0x97, 0x51, 0x78, 0x97,
+       0xd7, 0xa6, 0x90, 0xcf, 0xac, 0xd4, 0x67, 0x92, 0xc1, 0x43, 0xb8, 0xd6, 
0x9b, 0x52, 0xd7, 0x97,
+       0x5f, 0x61, 0x9f, 0xb9, 0x7f, 0xf6, 0xcf, 0x84, 0x2c, 0x9b, 0x4a, 0x96, 
0x46, 0x32, 0xbd, 0xb0,
+       0xfe, 0x2e, 0x2b, 0x53, 0x7c, 0x7b, 0x5c, 0xa5, 0x8f, 0x3b, 0x50, 0xbd, 
0xed, 0x8d, 0x56, 0xef,
+       0xe5, 0x9b, 0x53, 0xf4, 0x76, 0xac, 0xd6, 0xaf, 0x8e, 0x13, 0xa0, 0x2b, 
0x57, 0x4f, 0x5e, 0x9e,
+       0x93, 0x5f, 0x9d, 0xb2, 0x72, 0x53, 0xd7, 0xec, 0xd4, 0x74, 0x47, 0xdc, 
0x80, 0x45, 0x3d, 0x71,
+       0x4f, 0x50, 0xbe, 0xc5, 0x08, 0xbd, 0x32, 0x91, 0x50, 0x34, 0xaa, 0x54, 
0x37, 0x6a, 0xea, 0xf4,
+       0xf8, 0x70, 0x92, 0xfc, 0xda, 0x14, 0x53, 0x97, 0x38, 0xc4, 0xa4, 0x26, 
0x3b, 0x09, 0x56, 0xa5,
+       0x2b, 0xef, 0xf2, 0xeb, 0xd3, 0x59, 0x35, 0x52, 0xa7, 0x1f, 0x27, 0x80, 
0x6d, 0xb8, 0xdc, 0x9b,
+       0x54, 0xcf, 0x97, 0xd7, 0x19, 0xf5, 0xbb, 0x67, 0xa4, 0x1e, 0x99, 0xfc, 
0x89, 0x04, 0xf1, 0x03,
+       0x98, 0x77, 0x58, 0x6d, 0x58, 0xde, 0xc8, 0xda, 0xad, 0x4b, 0x97, 0x8f, 
0x05, 0x2a, 0x7e, 0x06,
+       0x55, 0x27, 0x55, 0x50, 0x96, 0x1f, 0xb0, 0xce, 0x37, 0xa7, 0x75, 0x0e, 
0x07, 0x33, 0xd2, 0x95,
+       0x72, 0x51, 0x1f, 0xad, 0x86, 0xca, 0x0f, 0xa7, 0x70, 0x71, 0xbc, 0x76, 
0x3a, 0x4e, 0x80, 0x72,
+       0x51, 0x9f, 0x54, 0x63, 0x95, 0xdf, 0x9e, 0xc2, 0xc5, 0x89, 0x95, 0x59, 
0x75, 0x32, 0x41, 0x6a,
+       0x48, 0xf4, 0x8c, 0x4a, 0x9e, 0xfc, 0x68, 0x9a, 0x9d, 0xca, 0x2a, 0xfd, 
0x65, 0x92, 0xa1, 0x86,
+       0x44, 0x9f, 0x52, 0x28, 0x94, 0xdf, 0x99, 0x62, 0x48, 0xa6, 0x55, 0x18, 
0xd5, 0xa9, 0x64, 0xa9,
+       0x6e, 0x10, 0x96, 0xae, 0xca, 0xef, 0x4e, 0xd1, 0x0d, 0x51, 0x17, 0x13, 
0xa8, 0x54, 0x37, 0x48,
+       0xaa, 0x52, 0x26, 0xbf, 0x37, 0x45, 0x37, 0xd2, 0x45, 0x35, 0x75, 0xa4, 
0x2b, 0xd5, 0x0d, 0x32,
+       0x5a, 0x6f, 0x91, 0x1f, 0x4f, 0xd1, 0x8d, 0xf1, 0xea, 0xcc, 0x38, 0x01, 
0xaa, 0x1b, 0x64, 0x52,
+       0x15, 0x47, 0x7e, 0x7f, 0x8a, 0x6e, 0x4c, 0xac, 0xfd, 0xa8, 0x93, 0x09, 
0x52, 0xdd, 0x20, 0x19,
+       0x49, 0xbf, 0xfc, 0xc1, 0x14, 0xdd, 0xc8, 0xac, 0x12, 0x64, 0x92, 0xa1, 
0xba, 0x41, 0xa6, 0xd4,
+       0x14, 0xe4, 0xef, 0x4e, 0xd1, 0x8d, 0x69, 0xc5, 0x08, 0x75, 0x2a, 0x59, 
0x6c, 0xc0, 0xc5, 0x20,
+       0x73, 0xb3, 0x4e, 0xfe, 0x1e, 0xfb, 0xe0, 0x9b, 0x99, 0x1f, 0xcc, 0xde, 
0xdf, 0x53, 0x27, 0x90,
+       0xc2, 0x07, 0x70, 0x29, 0xc8, 0xde, 0xb8, 0x93, 0x3f, 0x64, 0x5f, 0x79, 
0xeb, 0x6c, 0x5f, 0x11,
+       0x33, 0x9a, 0x44, 0x4c, 0xf9, 0x49, 0x49, 0xfc, 0xe5, 0x56, 0x19, 0x16, 
0xea, 0xed, 0x56, 0xab,
+       0x51, 0xef, 0xa2, 0x1c, 0xae, 0x40, 0x49, 0xbc, 0x34, 0xb6, 0x50, 0x9e, 
0xbe, 0x76, 0xf6, 0x36,
+       0x3b, 0x75, 0xb5, 0xb9, 0xd9, 0x40, 0x05, 0xf6, 0xef, 0x5b, 0x6a, 0x7b, 
0x6b, 0xaf, 0xde, 0x50,
+       0xf9, 0x3f, 0x6d, 0x75, 0x1a, 0xad, 0x2d, 0x34, 0x8f, 0x11, 0x2c, 0xd2, 
0x27, 0x4d, 0x6d, 0xd4,
+       0x1b, 0xcd, 0xdd, 0x2e, 0x5a, 0xc0, 0x55, 0x00, 0x06, 0x69, 0xa8, 0x6a, 
0x5b, 0x45, 0x45, 0xfa,
+       0x91, 0x9d, 0x46, 0xa7, 0x53, 0x7b, 0xda, 0x40, 0x25, 0x76, 0x16, 0xa0, 
0xfe, 0x0c, 0x01, 0xa5,
+       0xf0, 0x64, 0xbb, 0xfd, 0x29, 0x2a, 0xe3, 0x25, 0x28, 0xef, 0xb5, 0xe2, 
0x4f, 0x2d, 0xb2, 0x3b,
+       0x67, 0x7b, 0xf5, 0x7a, 0xa3, 0xd3, 0x41, 0x15, 0x5c, 0x82, 0x39, 0x4e, 
0xa8, 0x8a, 0x31, 0x54,
+       0xeb, 0xdb, 0xed, 0x4e, 0x43, 0x8b, 0x06, 0xb2, 0x14, 0xc3, 0xea, 0xed, 
0x56, 0x67, 0x6f, 0xa7,
+       0xa1, 0x22, 0x84, 0x57, 0x00, 0x85, 0x18, 0x5a, 0x48, 0xe8, 0x3c, 0xfd, 
0xe0, 0x6e, 0xb3, 0xf5,
+       0x14, 0x61, 0xf6, 0xd4, 0x6e, 0x3d, 0x45, 0xcb, 0xf8, 0x16, 0xbc, 0xa2, 
0x36, 0xb6, 0x1a, 0xdb,
+       0xcd, 0xe7, 0x0d, 0x55, 0xdb, 0x6b, 0xd5, 0xea, 0xcf, 0x5a, 0xed, 0x4f, 
0xb7, 0x1b, 0x5b, 0x4f,
+       0x1b, 0x5b, 0x9a, 0x18, 0x73, 0x07, 0xad, 0x60, 0x19, 0x56, 0x76, 0x6b, 
0x6a, 0xb7, 0xd9, 0x6d,
+       0xb6, 0x5b, 0xac, 0xa5, 0x5b, 0xdb, 0xaa, 0x75, 0x6b, 0xe8, 0x02, 0x7e, 
0x05, 0xae, 0x67, 0xb5,
+       0x68, 0x6a, 0xa3, 0xb3, 0xdb, 0x6e, 0x75, 0x1a, 0xe8, 0x22, 0xbb, 0x65, 
0xd9, 0x6e, 0x3f, 0xdb,
+       0xdb, 0x45, 0x97, 0xf0, 0x32, 0x2c, 0xf1, 0xe7, 0x18, 0x41, 0x66, 0x53, 
0x10, 0x83, 0xd7, 0x3a,
+       0xdd, 0x5a, 0xb7, 0x83, 0x2e, 0xe3, 0xab, 0x70, 0x29, 0x0d, 0x8b, 0x3b, 
0x5c, 0xa1, 0xc3, 0x51,
+       0x1b, 0xb5, 0xfa, 0xc7, 0x8d, 0x2d, 0x8d, 0xf2, 0xb9, 0xfd, 0x44, 0xeb, 
0xb6, 0x77, 0x9b, 0x75,
+       0x74, 0x95, 0x8b, 0xa5, 0xf1, 0x0c, 0x5d, 0xc3, 0x97, 0x60, 0xf9, 0x69, 
0xa3, 0xab, 0x6d, 0xd7,
+       0x3a, 0xdd, 0x70, 0x26, 0x5a, 0x73, 0x0b, 0x5d, 0xc7, 0x6b, 0x70, 0x2d, 
0xa3, 0x21, 0x26, 0xbf,
+       0x8a, 0xaf, 0xc0, 0xc5, 0x5a, 0xbd, 0xdb, 0x7c, 0x1e, 0xf3, 0x54, 0xab, 
0x7f, 0x5c, 0x6b, 0x3d,
+       0x6d, 0xa0, 0x1b, 0x74, 0x5c, 0xb4, 0x37, 0xfb, 0x5e, 0x87, 0x7e, 0xb9, 
0x55, 0xdb, 0x69, 0x74,
+       0x76, 0x6b, 0xf5, 0x06, 0x5a, 0xc3, 0xaf, 0xc2, 0xda, 0x84, 0xc6, 0x98, 
0xfc, 0x2b, 0x54, 0x3d,
+       0x28, 0x56, 0xa7, 0xfe, 0x71, 0x63, 0xa7, 0x86, 0x94, 0x70, 0xa4, 0xfc, 
0x3d, 0x46, 0xbc, 0x49,
+       0xf9, 0x52, 0xdb, 0xeb, 0x7e, 0x4c, 0x3f, 0xbe, 0xbd, 0xdd, 0xa0, 0xdf, 
0x7f, 0x15, 0x9f, 0x87,
+       0x0a, 0x83, 0x45, 0x68, 0xb7, 0xa8, 0x02, 0xd6, 0xea, 0xcf, 0x62, 0xc8, 
0x6b, 0x94, 0x3f, 0x94,
+       0x62, 0x5b, 0xd5, 0xea, 0x6a, 0xa3, 0xd6, 0x6d, 0x84, 0xdf, 0x7a, 0x9d, 
0x8a, 0x2b, 0xab, 0x25,
+       0xee, 0xbc, 0x4e, 0x95, 0xaf, 0xd5, 0xf8, 0x54, 0xeb, 0xfe, 0x9f, 0x16, 
0xda, 0xa0, 0x9a, 0x24,
+       0x5e, 0x62, 0x94, 0x07, 0x94, 0x7e, 0x6d, 0x6b, 0x4b, 0x8b, 0x04, 0xaf, 
0x75, 0xdb, 0x0c, 0xff,
+       0x21, 0xa5, 0x9f, 0xd5, 0x12, 0x77, 0x7e, 0x9b, 0x72, 0x90, 0xa2, 0x08, 
0x7d, 0xdf, 0x4d, 0xf6,
+       0x7f, 0x44, 0x39, 0x38, 0xa1, 0x31, 0x26, 0xf1, 0x0e, 0x1d, 0x22, 0x95, 
0x3b, 0xed, 0xf2, 0x2e,
+       0x1d, 0xa2, 0x78, 0x89, 0x51, 0xde, 0xa3, 0x43, 0x0c, 0xa1, 0xed, 0x56, 
0x3c, 0x1e, 0xf4, 0x98,
+       0x0e, 0x31, 0xab, 0x25, 0xee, 0xfc, 0x3e, 0x1d, 0x62, 0x02, 0x25, 0x39, 
0x18, 0xf4, 0x01, 0x1d,
+       0xe2, 0x84, 0xc6, 0x98, 0xc4, 0x77, 0xf1, 0x75, 0xb8, 0xdc, 0xad, 0x6b, 
0xf5, 0xed, 0x66, 0xa3,
+       0xd5, 0xd5, 0x84, 0x55, 0xd1, 0xd4, 0xc6, 0x27, 0x7b, 0x8d, 0x4e, 0x17, 
0x7d, 0x0f, 0xaf, 0xc2,
+       0x95, 0xac, 0x66, 0xd1, 0xfd, 0xc3, 0xdb, 0x5b, 0xec, 0xf6, 0x5c, 0xf2, 
0x7f, 0xbe, 0xd8, 0xbf,
+       0x03, 0xb6, 0x5b, 0x0d, 0x74, 0x8e, 0x9a, 0x90, 0xed, 0xcf, 0x1f, 0xf2, 
0xbf, 0x06, 0xfc, 0x7c,
+       0xbb, 0xb9, 0x89, 0x72, 0xec, 0xa9, 0xd3, 0xa5, 0x56, 0x0b, 0x60, 0xbe, 
0xd3, 0xaa, 0xed, 0xee,
+       0x7e, 0x86, 0x0a, 0xb7, 0x1b, 0x80, 0xc7, 0xaf, 0x79, 0x25, 0xae, 0x4c, 
0x9f, 0x4b, 0xdf, 0xa6,
+       0x66, 0xf7, 0x01, 0x3e, 0xd5, 0xad, 0xe0, 0x89, 0xeb, 0xc5, 0xd0, 0xdc, 
0xed, 0x5f, 0x9f, 0x83,
+       0x72, 0xa2, 0x28, 0x4c, 0x15, 0x6e, 0xcf, 0x39, 0x72, 0xdc, 0x17, 0xe2, 
0x06, 0xc0, 0x39, 0xaa,
+       0x95, 0x61, 0x6d, 0x21, 0x71, 0xb5, 0x60, 0x97, 0x78, 0x3e, 0xbb, 0xef, 
0x69, 0x88, 0xfb, 0x03,
+       0x39, 0xaa, 0xeb, 0x34, 0x46, 0x27, 0x4e, 0x60, 0x19, 0xf1, 0xfd, 0x05, 
0x94, 0xc7, 0x17, 0x01,
+       0xd7, 0xf8, 0x15, 0xc8, 0x2f, 0x12, 0xf0, 0x02, 0xfd, 0x56, 0x98, 0xc3, 
0x6d, 0x0e, 0xfd, 0x53,
+       0x34, 0x47, 0x4d, 0x88, 0xb8, 0x9c, 0xd8, 0x72, 0x03, 0x76, 0xbc, 0x15, 
0xcd, 0x53, 0x3b, 0x16,
+       0xce, 0x74, 0x93, 0x9f, 0x21, 0xfc, 0x64, 0xe8, 0x06, 0x7a, 0xe3, 0xc4, 
0x20, 0xc4, 0x24, 0xbc,
+       0x16, 0x87, 0x16, 0xf0, 0x1b, 0x70, 0x6b, 0x2a, 0xda, 0x89, 0x41, 0xf8, 
0x95, 0x89, 0x22, 0x9d,
+       0x52, 0x78, 0x35, 0x82, 0xf7, 0x2e, 0x51, 0xb5, 0xd8, 0x73, 0xc4, 0xdf, 
0xad, 0x10, 0x53, 0x1c,
+       0x66, 0xe1, 0x8d, 0x40, 0xf1, 0x59, 0x86, 0xd6, 0x72, 0x83, 0x27, 0xee, 
0xd0, 0x31, 0x51, 0x99,
+       0xea, 0x60, 0xd2, 0x95, 0x46, 0x2d, 0x8b, 0xec, 0xde, 0x45, 0x78, 0xe8, 
0x32, 0x84, 0x56, 0xe8,
+       0xcc, 0xba, 0xae, 0xbb, 0xa3, 0x3b, 0xa7, 0xc2, 0x1f, 0xfa, 0xa8, 0x4a, 
0x89, 0x30, 0xba, 0x5d,
+       0xe2, 0xf5, 0x2d, 0x47, 0x0f, 0xc2, 0xc9, 0x2c, 0x51, 0xd6, 0x44, 0x93, 
0xa1, 0xac, 0x61, 0x76,
+       0xbf, 0xe9, 0xb0, 0xdb, 0x30, 0x7c, 0x28, 0x7a, 0x9f, 0xa0, 0xf3, 0x94, 
0xb5, 0x4d, 0x76, 0x39,
+       0x44, 0x0f, 0xac, 0x7d, 0x5b, 0xe4, 0x03, 0x08, 0x53, 0x59, 0x84, 0x83, 
0xa8, 0xf9, 0xbe, 0xd5,
+       0x13, 0x53, 0x59, 0xc6, 0x0a, 0xac, 0x76, 0x3d, 0xdd, 0xf1, 0xf9, 0xfe, 
0x49, 0xdd, 0x75, 0x3d,
+       0x93, 0x7e, 0xd9, 0x8d, 0xc7, 0xba, 0x92, 0xfc, 0xd4, 0x09, 0xfb, 0x07, 
0x83, 0xa1, 0x8f, 0x2e,
+       0xd0, 0x19, 0xb4, 0xdc, 0xa0, 0x66, 0xdb, 0xee, 0x8b, 0x70, 0x9c, 0x17, 
0xe9, 0x77, 0x52, 0xe4,
+       0x9c, 0x03, 0xdb, 0x32, 0x02, 0x74, 0x69, 0xa4, 0x21, 0x22, 0x2e, 0x8b, 
0x7f, 0x85, 0x64, 0x33,
+       0x7b, 0x42, 0xb5, 0xc7, 0x44, 0x97, 0x6f, 0x3f, 0x03, 0x48, 0x5c, 0x3a, 
0xa6, 0xa6, 0x31, 0xfe,
+       0x6f, 0x13, 0xfe, 0xa7, 0x99, 0xcb, 0xb0, 0x14, 0xc3, 0x3e, 0x33, 0xf4, 
0xe7, 0xf7, 0xb9, 0x1a,
+       0xc6, 0xc0, 0x1a, 0xd5, 0x3c, 0x1f, 0xe5, 0x6e, 0xff, 0x4c, 0x82, 0xa5, 
0xdd, 0x91, 0x7f, 0xb0,
+       0x99, 0x87, 0xdc, 0xf1, 0x3d, 0x74, 0x8e, 0xfd, 0xd2, 0x9e, 0xf4, 0x77, 
0x03, 0xe5, 0xd8, 0xef,
+       0x03, 0x94, 0x67, 0xbf, 0x0f, 0x51, 0x81, 0xfd, 0xbe, 0x8d, 0xe6, 0xd8, 
0xef, 0x23, 0x34, 0xcf,
+       0x7e, 0xdf, 0x41, 0x0b, 0xec, 0xf7, 0x5d, 0x54, 0x64, 0xbf, 0xef, 0x71, 
0x47, 0x7f, 0x7c, 0xff,
+       0x1e, 0x02, 0xfe, 0x70, 0x1f, 0x95, 0xf9, 0xc3, 0x06, 0x5a, 0xe4, 0x0f, 
0x0f, 0x50, 0x85, 0x3f,
+       0x3c, 0x44, 0x55, 0xfe, 0xf0, 0x36, 0x5a, 0xe2, 0x0f, 0x8f, 0x10, 0xe2, 
0x0f, 0xef, 0xa0, 0xf3,
+       0xfc, 0xe1, 0x5d, 0x84, 0xf9, 0xc3, 0x7b, 0x68, 0xf9, 0xf6, 0x9b, 0xc9, 
0x3f, 0x6a, 0x11, 0x67,
+       0x10, 0x6b, 0x7b, 0xdd, 0xb6, 0xd6, 0xd9, 0xdd, 0x6e, 0x76, 0xc5, 0x9f, 
0x22, 0x74, 0x9b, 0xf5,
+       0x67, 0x9f, 0x21, 0xe9, 0xb6, 0x02, 0xa5, 0x68, 0xaf, 0x8b, 0x36, 0xd4, 
0xdb, 0x3b, 0x3b, 0x0c,
+       0xa9, 0x04, 0x73, 0xb5, 0xcd, 0xb6, 0xda, 0x45, 0xd2, 0xe6, 0xc6, 0xdf, 
0xfc, 0x72, 0x55, 0xfa,
+       0xbb, 0x5f, 0xae, 0x4a, 0xff, 0xf4, 0xcb, 0x55, 0x09, 0x14, 0xd7, 0xeb, 
0xdd, 0xd5, 0x07, 0xba,
+       0x71, 0x48, 0xc2, 0x68, 0xcb, 0x70, 0xfb, 0x7d, 0xd7, 0xb9, 0xab, 0x87, 
0x7f, 0xb4, 0xfa, 0x71,
+       0xfe, 0x7f, 0x02, 0x00, 0x00, 0xff, 0xff, 0x04, 0x04, 0x06, 0xb1, 0x7c, 
0x55, 0x00, 0x00,
 }
 
 func (m *Schema) Marshal() (dAtA []byte, err error) {
@@ -8228,6 +8415,22 @@ func (m *CommandSubscribe) MarshalToSizedBuffer(dAtA 
[]byte) (int, error) {
                i -= len(m.XXX_unrecognized)
                copy(dAtA[i:], m.XXX_unrecognized)
        }
+       if len(m.SubscriptionProperties) > 0 {
+               for iNdEx := len(m.SubscriptionProperties) - 1; iNdEx >= 0; 
iNdEx-- {
+                       {
+                               size, err := 
m.SubscriptionProperties[iNdEx].MarshalToSizedBuffer(dAtA[:i])
+                               if err != nil {
+                                       return 0, err
+                               }
+                               i -= size
+                               i = encodeVarintPulsarApi(dAtA, i, uint64(size))
+                       }
+                       i--
+                       dAtA[i] = 0x1
+                       i--
+                       dAtA[i] = 0x92
+               }
+       }
        if m.KeySharedMeta != nil {
                {
                        size, err := 
m.KeySharedMeta.MarshalToSizedBuffer(dAtA[:i])
@@ -8696,6 +8899,16 @@ func (m *CommandProducer) MarshalToSizedBuffer(dAtA 
[]byte) (int, error) {
                i -= len(m.XXX_unrecognized)
                copy(dAtA[i:], m.XXX_unrecognized)
        }
+       if m.TxnEnabled != nil {
+               i--
+               if *m.TxnEnabled {
+                       dAtA[i] = 1
+               } else {
+                       dAtA[i] = 0
+               }
+               i--
+               dAtA[i] = 0x60
+       }
        if m.TopicEpoch != nil {
                i = encodeVarintPulsarApi(dAtA, i, uint64(*m.TopicEpoch))
                i--
@@ -8814,6 +9027,16 @@ func (m *CommandSend) MarshalToSizedBuffer(dAtA []byte) 
(int, error) {
                i -= len(m.XXX_unrecognized)
                copy(dAtA[i:], m.XXX_unrecognized)
        }
+       if m.Marker != nil {
+               i--
+               if *m.Marker {
+                       dAtA[i] = 1
+               } else {
+                       dAtA[i] = 0
+               }
+               i--
+               dAtA[i] = 0x40
+       }
        if m.IsChunk != nil {
                i--
                if *m.IsChunk {
@@ -10335,6 +10558,93 @@ func (m *CommandGetOrCreateSchemaResponse) 
MarshalToSizedBuffer(dAtA []byte) (in
        return len(dAtA) - i, nil
 }
 
+func (m *CommandTcClientConnectRequest) Marshal() (dAtA []byte, err error) {
+       size := m.Size()
+       dAtA = make([]byte, size)
+       n, err := m.MarshalToSizedBuffer(dAtA[:size])
+       if err != nil {
+               return nil, err
+       }
+       return dAtA[:n], nil
+}
+
+func (m *CommandTcClientConnectRequest) MarshalTo(dAtA []byte) (int, error) {
+       size := m.Size()
+       return m.MarshalToSizedBuffer(dAtA[:size])
+}
+
+func (m *CommandTcClientConnectRequest) MarshalToSizedBuffer(dAtA []byte) 
(int, error) {
+       i := len(dAtA)
+       _ = i
+       var l int
+       _ = l
+       if m.XXX_unrecognized != nil {
+               i -= len(m.XXX_unrecognized)
+               copy(dAtA[i:], m.XXX_unrecognized)
+       }
+       if m.TcId == nil {
+               return 0, 
github_com_gogo_protobuf_proto.NewRequiredNotSetError("tc_id")
+       } else {
+               i = encodeVarintPulsarApi(dAtA, i, uint64(*m.TcId))
+               i--
+               dAtA[i] = 0x10
+       }
+       if m.RequestId == nil {
+               return 0, 
github_com_gogo_protobuf_proto.NewRequiredNotSetError("request_id")
+       } else {
+               i = encodeVarintPulsarApi(dAtA, i, uint64(*m.RequestId))
+               i--
+               dAtA[i] = 0x8
+       }
+       return len(dAtA) - i, nil
+}
+
+func (m *CommandTcClientConnectResponse) Marshal() (dAtA []byte, err error) {
+       size := m.Size()
+       dAtA = make([]byte, size)
+       n, err := m.MarshalToSizedBuffer(dAtA[:size])
+       if err != nil {
+               return nil, err
+       }
+       return dAtA[:n], nil
+}
+
+func (m *CommandTcClientConnectResponse) MarshalTo(dAtA []byte) (int, error) {
+       size := m.Size()
+       return m.MarshalToSizedBuffer(dAtA[:size])
+}
+
+func (m *CommandTcClientConnectResponse) MarshalToSizedBuffer(dAtA []byte) 
(int, error) {
+       i := len(dAtA)
+       _ = i
+       var l int
+       _ = l
+       if m.XXX_unrecognized != nil {
+               i -= len(m.XXX_unrecognized)
+               copy(dAtA[i:], m.XXX_unrecognized)
+       }
+       if m.Message != nil {
+               i -= len(*m.Message)
+               copy(dAtA[i:], *m.Message)
+               i = encodeVarintPulsarApi(dAtA, i, uint64(len(*m.Message)))
+               i--
+               dAtA[i] = 0x1a
+       }
+       if m.Error != nil {
+               i = encodeVarintPulsarApi(dAtA, i, uint64(*m.Error))
+               i--
+               dAtA[i] = 0x10
+       }
+       if m.RequestId == nil {
+               return 0, 
github_com_gogo_protobuf_proto.NewRequiredNotSetError("request_id")
+       } else {
+               i = encodeVarintPulsarApi(dAtA, i, uint64(*m.RequestId))
+               i--
+               dAtA[i] = 0x8
+       }
+       return len(dAtA) - i, nil
+}
+
 func (m *CommandNewTxn) Marshal() (dAtA []byte, err error) {
        size := m.Size()
        dAtA = make([]byte, size)
@@ -11071,9 +11381,9 @@ func (m *BaseCommand) MarshalToSizedBuffer(dAtA []byte) 
(int, error) {
                i -= len(m.XXX_unrecognized)
                copy(dAtA[i:], m.XXX_unrecognized)
        }
-       if m.EndTxnOnSubscriptionResponse != nil {
+       if m.TcClientConnectResponse != nil {
                {
-                       size, err := 
m.EndTxnOnSubscriptionResponse.MarshalToSizedBuffer(dAtA[:i])
+                       size, err := 
m.TcClientConnectResponse.MarshalToSizedBuffer(dAtA[:i])
                        if err != nil {
                                return 0, err
                        }
@@ -11083,11 +11393,11 @@ func (m *BaseCommand) MarshalToSizedBuffer(dAtA 
[]byte) (int, error) {
                i--
                dAtA[i] = 0x3
                i--
-               dAtA[i] = 0xea
+               dAtA[i] = 0xfa
        }
-       if m.EndTxnOnSubscription != nil {
+       if m.TcClientConnectRequest != nil {
                {
-                       size, err := 
m.EndTxnOnSubscription.MarshalToSizedBuffer(dAtA[:i])
+                       size, err := 
m.TcClientConnectRequest.MarshalToSizedBuffer(dAtA[:i])
                        if err != nil {
                                return 0, err
                        }
@@ -11097,11 +11407,11 @@ func (m *BaseCommand) MarshalToSizedBuffer(dAtA 
[]byte) (int, error) {
                i--
                dAtA[i] = 0x3
                i--
-               dAtA[i] = 0xe2
+               dAtA[i] = 0xf2
        }
-       if m.EndTxnOnPartitionResponse != nil {
+       if m.EndTxnOnSubscriptionResponse != nil {
                {
-                       size, err := 
m.EndTxnOnPartitionResponse.MarshalToSizedBuffer(dAtA[:i])
+                       size, err := 
m.EndTxnOnSubscriptionResponse.MarshalToSizedBuffer(dAtA[:i])
                        if err != nil {
                                return 0, err
                        }
@@ -11111,11 +11421,11 @@ func (m *BaseCommand) MarshalToSizedBuffer(dAtA 
[]byte) (int, error) {
                i--
                dAtA[i] = 0x3
                i--
-               dAtA[i] = 0xda
+               dAtA[i] = 0xea
        }
-       if m.EndTxnOnPartition != nil {
+       if m.EndTxnOnSubscription != nil {
                {
-                       size, err := 
m.EndTxnOnPartition.MarshalToSizedBuffer(dAtA[:i])
+                       size, err := 
m.EndTxnOnSubscription.MarshalToSizedBuffer(dAtA[:i])
                        if err != nil {
                                return 0, err
                        }
@@ -11125,9 +11435,37 @@ func (m *BaseCommand) MarshalToSizedBuffer(dAtA 
[]byte) (int, error) {
                i--
                dAtA[i] = 0x3
                i--
-               dAtA[i] = 0xd2
+               dAtA[i] = 0xe2
        }
-       if m.EndTxnResponse != nil {
+       if m.EndTxnOnPartitionResponse != nil {
+               {
+                       size, err := 
m.EndTxnOnPartitionResponse.MarshalToSizedBuffer(dAtA[:i])
+                       if err != nil {
+                               return 0, err
+                       }
+                       i -= size
+                       i = encodeVarintPulsarApi(dAtA, i, uint64(size))
+               }
+               i--
+               dAtA[i] = 0x3
+               i--
+               dAtA[i] = 0xda
+       }
+       if m.EndTxnOnPartition != nil {
+               {
+                       size, err := 
m.EndTxnOnPartition.MarshalToSizedBuffer(dAtA[:i])
+                       if err != nil {
+                               return 0, err
+                       }
+                       i -= size
+                       i = encodeVarintPulsarApi(dAtA, i, uint64(size))
+               }
+               i--
+               dAtA[i] = 0x3
+               i--
+               dAtA[i] = 0xd2
+       }
+       if m.EndTxnResponse != nil {
                {
                        size, err := 
m.EndTxnResponse.MarshalToSizedBuffer(dAtA[:i])
                        if err != nil {
@@ -12346,6 +12684,12 @@ func (m *CommandSubscribe) Size() (n int) {
                l = m.KeySharedMeta.Size()
                n += 2 + l + sovPulsarApi(uint64(l))
        }
+       if len(m.SubscriptionProperties) > 0 {
+               for _, e := range m.SubscriptionProperties {
+                       l = e.Size()
+                       n += 2 + l + sovPulsarApi(uint64(l))
+               }
+       }
        if m.XXX_unrecognized != nil {
                n += len(m.XXX_unrecognized)
        }
@@ -12533,6 +12877,9 @@ func (m *CommandProducer) Size() (n int) {
        if m.TopicEpoch != nil {
                n += 1 + sovPulsarApi(uint64(*m.TopicEpoch))
        }
+       if m.TxnEnabled != nil {
+               n += 2
+       }
        if m.XXX_unrecognized != nil {
                n += len(m.XXX_unrecognized)
        }
@@ -12566,6 +12913,9 @@ func (m *CommandSend) Size() (n int) {
        if m.IsChunk != nil {
                n += 2
        }
+       if m.Marker != nil {
+               n += 2
+       }
        if m.XXX_unrecognized != nil {
                n += len(m.XXX_unrecognized)
        }
@@ -13236,6 +13586,46 @@ func (m *CommandGetOrCreateSchemaResponse) Size() (n 
int) {
        return n
 }
 
+func (m *CommandTcClientConnectRequest) Size() (n int) {
+       if m == nil {
+               return 0
+       }
+       var l int
+       _ = l
+       if m.RequestId != nil {
+               n += 1 + sovPulsarApi(uint64(*m.RequestId))
+       }
+       if m.TcId != nil {
+               n += 1 + sovPulsarApi(uint64(*m.TcId))
+       }
+       if m.XXX_unrecognized != nil {
+               n += len(m.XXX_unrecognized)
+       }
+       return n
+}
+
+func (m *CommandTcClientConnectResponse) Size() (n int) {
+       if m == nil {
+               return 0
+       }
+       var l int
+       _ = l
+       if m.RequestId != nil {
+               n += 1 + sovPulsarApi(uint64(*m.RequestId))
+       }
+       if m.Error != nil {
+               n += 1 + sovPulsarApi(uint64(*m.Error))
+       }
+       if m.Message != nil {
+               l = len(*m.Message)
+               n += 1 + l + sovPulsarApi(uint64(l))
+       }
+       if m.XXX_unrecognized != nil {
+               n += len(m.XXX_unrecognized)
+       }
+       return n
+}
+
 func (m *CommandNewTxn) Size() (n int) {
        if m == nil {
                return 0
@@ -13798,6 +14188,14 @@ func (m *BaseCommand) Size() (n int) {
                l = m.EndTxnOnSubscriptionResponse.Size()
                n += 2 + l + sovPulsarApi(uint64(l))
        }
+       if m.TcClientConnectRequest != nil {
+               l = m.TcClientConnectRequest.Size()
+               n += 2 + l + sovPulsarApi(uint64(l))
+       }
+       if m.TcClientConnectResponse != nil {
+               l = m.TcClientConnectResponse.Size()
+               n += 2 + l + sovPulsarApi(uint64(l))
+       }
        if m.XXX_unrecognized != nil {
                n += len(m.XXX_unrecognized)
        }
@@ -17492,6 +17890,40 @@ func (m *CommandSubscribe) Unmarshal(dAtA []byte) 
error {
                                return err
                        }
                        iNdEx = postIndex
+               case 18:
+                       if wireType != 2 {
+                               return fmt.Errorf("proto: wrong wireType = %d 
for field SubscriptionProperties", wireType)
+                       }
+                       var msglen int
+                       for shift := uint(0); ; shift += 7 {
+                               if shift >= 64 {
+                                       return ErrIntOverflowPulsarApi
+                               }
+                               if iNdEx >= l {
+                                       return io.ErrUnexpectedEOF
+                               }
+                               b := dAtA[iNdEx]
+                               iNdEx++
+                               msglen |= int(b&0x7F) << shift
+                               if b < 0x80 {
+                                       break
+                               }
+                       }
+                       if msglen < 0 {
+                               return ErrInvalidLengthPulsarApi
+                       }
+                       postIndex := iNdEx + msglen
+                       if postIndex < 0 {
+                               return ErrInvalidLengthPulsarApi
+                       }
+                       if postIndex > l {
+                               return io.ErrUnexpectedEOF
+                       }
+                       m.SubscriptionProperties = 
append(m.SubscriptionProperties, &KeyValue{})
+                       if err := 
m.SubscriptionProperties[len(m.SubscriptionProperties)-1].Unmarshal(dAtA[iNdEx:postIndex]);
 err != nil {
+                               return err
+                       }
+                       iNdEx = postIndex
                default:
                        iNdEx = preIndex
                        skippy, err := skipPulsarApi(dAtA[iNdEx:])
@@ -18744,6 +19176,27 @@ func (m *CommandProducer) Unmarshal(dAtA []byte) error 
{
                                }
                        }
                        m.TopicEpoch = &v
+               case 12:
+                       if wireType != 0 {
+                               return fmt.Errorf("proto: wrong wireType = %d 
for field TxnEnabled", wireType)
+                       }
+                       var v int
+                       for shift := uint(0); ; shift += 7 {
+                               if shift >= 64 {
+                                       return ErrIntOverflowPulsarApi
+                               }
+                               if iNdEx >= l {
+                                       return io.ErrUnexpectedEOF
+                               }
+                               b := dAtA[iNdEx]
+                               iNdEx++
+                               v |= int(b&0x7F) << shift
+                               if b < 0x80 {
+                                       break
+                               }
+                       }
+                       b := bool(v != 0)
+                       m.TxnEnabled = &b
                default:
                        iNdEx = preIndex
                        skippy, err := skipPulsarApi(dAtA[iNdEx:])
@@ -18948,6 +19401,27 @@ func (m *CommandSend) Unmarshal(dAtA []byte) error {
                        }
                        b := bool(v != 0)
                        m.IsChunk = &b
+               case 8:
+                       if wireType != 0 {
+                               return fmt.Errorf("proto: wrong wireType = %d 
for field Marker", wireType)
+                       }
+                       var v int
+                       for shift := uint(0); ; shift += 7 {
+                               if shift >= 64 {
+                                       return ErrIntOverflowPulsarApi
+                               }
+                               if iNdEx >= l {
+                                       return io.ErrUnexpectedEOF
+                               }
+                               b := dAtA[iNdEx]
+                               iNdEx++
+                               v |= int(b&0x7F) << shift
+                               if b < 0x80 {
+                                       break
+                               }
+                       }
+                       b := bool(v != 0)
+                       m.Marker = &b
                default:
                        iNdEx = preIndex
                        skippy, err := skipPulsarApi(dAtA[iNdEx:])
@@ -22985,6 +23459,235 @@ func (m *CommandGetOrCreateSchemaResponse) 
Unmarshal(dAtA []byte) error {
        }
        return nil
 }
+func (m *CommandTcClientConnectRequest) Unmarshal(dAtA []byte) error {
+       var hasFields [1]uint64
+       l := len(dAtA)
+       iNdEx := 0
+       for iNdEx < l {
+               preIndex := iNdEx
+               var wire uint64
+               for shift := uint(0); ; shift += 7 {
+                       if shift >= 64 {
+                               return ErrIntOverflowPulsarApi
+                       }
+                       if iNdEx >= l {
+                               return io.ErrUnexpectedEOF
+                       }
+                       b := dAtA[iNdEx]
+                       iNdEx++
+                       wire |= uint64(b&0x7F) << shift
+                       if b < 0x80 {
+                               break
+                       }
+               }
+               fieldNum := int32(wire >> 3)
+               wireType := int(wire & 0x7)
+               if wireType == 4 {
+                       return fmt.Errorf("proto: 
CommandTcClientConnectRequest: wiretype end group for non-group")
+               }
+               if fieldNum <= 0 {
+                       return fmt.Errorf("proto: 
CommandTcClientConnectRequest: illegal tag %d (wire type %d)", fieldNum, wire)
+               }
+               switch fieldNum {
+               case 1:
+                       if wireType != 0 {
+                               return fmt.Errorf("proto: wrong wireType = %d 
for field RequestId", wireType)
+                       }
+                       var v uint64
+                       for shift := uint(0); ; shift += 7 {
+                               if shift >= 64 {
+                                       return ErrIntOverflowPulsarApi
+                               }
+                               if iNdEx >= l {
+                                       return io.ErrUnexpectedEOF
+                               }
+                               b := dAtA[iNdEx]
+                               iNdEx++
+                               v |= uint64(b&0x7F) << shift
+                               if b < 0x80 {
+                                       break
+                               }
+                       }
+                       m.RequestId = &v
+                       hasFields[0] |= uint64(0x00000001)
+               case 2:
+                       if wireType != 0 {
+                               return fmt.Errorf("proto: wrong wireType = %d 
for field TcId", wireType)
+                       }
+                       var v uint64
+                       for shift := uint(0); ; shift += 7 {
+                               if shift >= 64 {
+                                       return ErrIntOverflowPulsarApi
+                               }
+                               if iNdEx >= l {
+                                       return io.ErrUnexpectedEOF
+                               }
+                               b := dAtA[iNdEx]
+                               iNdEx++
+                               v |= uint64(b&0x7F) << shift
+                               if b < 0x80 {
+                                       break
+                               }
+                       }
+                       m.TcId = &v
+                       hasFields[0] |= uint64(0x00000002)
+               default:
+                       iNdEx = preIndex
+                       skippy, err := skipPulsarApi(dAtA[iNdEx:])
+                       if err != nil {
+                               return err
+                       }
+                       if (skippy < 0) || (iNdEx+skippy) < 0 {
+                               return ErrInvalidLengthPulsarApi
+                       }
+                       if (iNdEx + skippy) > l {
+                               return io.ErrUnexpectedEOF
+                       }
+                       m.XXX_unrecognized = append(m.XXX_unrecognized, 
dAtA[iNdEx:iNdEx+skippy]...)
+                       iNdEx += skippy
+               }
+       }
+       if hasFields[0]&uint64(0x00000001) == 0 {
+               return 
github_com_gogo_protobuf_proto.NewRequiredNotSetError("request_id")
+       }
+       if hasFields[0]&uint64(0x00000002) == 0 {
+               return 
github_com_gogo_protobuf_proto.NewRequiredNotSetError("tc_id")
+       }
+
+       if iNdEx > l {
+               return io.ErrUnexpectedEOF
+       }
+       return nil
+}
+func (m *CommandTcClientConnectResponse) Unmarshal(dAtA []byte) error {
+       var hasFields [1]uint64
+       l := len(dAtA)
+       iNdEx := 0
+       for iNdEx < l {
+               preIndex := iNdEx
+               var wire uint64
+               for shift := uint(0); ; shift += 7 {
+                       if shift >= 64 {
+                               return ErrIntOverflowPulsarApi
+                       }
+                       if iNdEx >= l {
+                               return io.ErrUnexpectedEOF
+                       }
+                       b := dAtA[iNdEx]
+                       iNdEx++
+                       wire |= uint64(b&0x7F) << shift
+                       if b < 0x80 {
+                               break
+                       }
+               }
+               fieldNum := int32(wire >> 3)
+               wireType := int(wire & 0x7)
+               if wireType == 4 {
+                       return fmt.Errorf("proto: 
CommandTcClientConnectResponse: wiretype end group for non-group")
+               }
+               if fieldNum <= 0 {
+                       return fmt.Errorf("proto: 
CommandTcClientConnectResponse: illegal tag %d (wire type %d)", fieldNum, wire)
+               }
+               switch fieldNum {
+               case 1:
+                       if wireType != 0 {
+                               return fmt.Errorf("proto: wrong wireType = %d 
for field RequestId", wireType)
+                       }
+                       var v uint64
+                       for shift := uint(0); ; shift += 7 {
+                               if shift >= 64 {
+                                       return ErrIntOverflowPulsarApi
+                               }
+                               if iNdEx >= l {
+                                       return io.ErrUnexpectedEOF
+                               }
+                               b := dAtA[iNdEx]
+                               iNdEx++
+                               v |= uint64(b&0x7F) << shift
+                               if b < 0x80 {
+                                       break
+                               }
+                       }
+                       m.RequestId = &v
+                       hasFields[0] |= uint64(0x00000001)
+               case 2:
+                       if wireType != 0 {
+                               return fmt.Errorf("proto: wrong wireType = %d 
for field Error", wireType)
+                       }
+                       var v ServerError
+                       for shift := uint(0); ; shift += 7 {
+                               if shift >= 64 {
+                                       return ErrIntOverflowPulsarApi
+                               }
+                               if iNdEx >= l {
+                                       return io.ErrUnexpectedEOF
+                               }
+                               b := dAtA[iNdEx]
+                               iNdEx++
+                               v |= ServerError(b&0x7F) << shift
+                               if b < 0x80 {
+                                       break
+                               }
+                       }
+                       m.Error = &v
+               case 3:
+                       if wireType != 2 {
+                               return fmt.Errorf("proto: wrong wireType = %d 
for field Message", wireType)
+                       }
+                       var stringLen uint64
+                       for shift := uint(0); ; shift += 7 {
+                               if shift >= 64 {
+                                       return ErrIntOverflowPulsarApi
+                               }
+                               if iNdEx >= l {
+                                       return io.ErrUnexpectedEOF
+                               }
+                               b := dAtA[iNdEx]
+                               iNdEx++
+                               stringLen |= uint64(b&0x7F) << shift
+                               if b < 0x80 {
+                                       break
+                               }
+                       }
+                       intStringLen := int(stringLen)
+                       if intStringLen < 0 {
+                               return ErrInvalidLengthPulsarApi
+                       }
+                       postIndex := iNdEx + intStringLen
+                       if postIndex < 0 {
+                               return ErrInvalidLengthPulsarApi
+                       }
+                       if postIndex > l {
+                               return io.ErrUnexpectedEOF
+                       }
+                       s := string(dAtA[iNdEx:postIndex])
+                       m.Message = &s
+                       iNdEx = postIndex
+               default:
+                       iNdEx = preIndex
+                       skippy, err := skipPulsarApi(dAtA[iNdEx:])
+                       if err != nil {
+                               return err
+                       }
+                       if (skippy < 0) || (iNdEx+skippy) < 0 {
+                               return ErrInvalidLengthPulsarApi
+                       }
+                       if (iNdEx + skippy) > l {
+                               return io.ErrUnexpectedEOF
+                       }
+                       m.XXX_unrecognized = append(m.XXX_unrecognized, 
dAtA[iNdEx:iNdEx+skippy]...)
+                       iNdEx += skippy
+               }
+       }
+       if hasFields[0]&uint64(0x00000001) == 0 {
+               return 
github_com_gogo_protobuf_proto.NewRequiredNotSetError("request_id")
+       }
+
+       if iNdEx > l {
+               return io.ErrUnexpectedEOF
+       }
+       return nil
+}
 func (m *CommandNewTxn) Unmarshal(dAtA []byte) error {
        var hasFields [1]uint64
        l := len(dAtA)
@@ -26943,6 +27646,78 @@ func (m *BaseCommand) Unmarshal(dAtA []byte) error {
                                return err
                        }
                        iNdEx = postIndex
+               case 62:
+                       if wireType != 2 {
+                               return fmt.Errorf("proto: wrong wireType = %d 
for field TcClientConnectRequest", wireType)
+                       }
+                       var msglen int
+                       for shift := uint(0); ; shift += 7 {
+                               if shift >= 64 {
+                                       return ErrIntOverflowPulsarApi
+                               }
+                               if iNdEx >= l {
+                                       return io.ErrUnexpectedEOF
+                               }
+                               b := dAtA[iNdEx]
+                               iNdEx++
+                               msglen |= int(b&0x7F) << shift
+                               if b < 0x80 {
+                                       break
+                               }
+                       }
+                       if msglen < 0 {
+                               return ErrInvalidLengthPulsarApi
+                       }
+                       postIndex := iNdEx + msglen
+                       if postIndex < 0 {
+                               return ErrInvalidLengthPulsarApi
+                       }
+                       if postIndex > l {
+                               return io.ErrUnexpectedEOF
+                       }
+                       if m.TcClientConnectRequest == nil {
+                               m.TcClientConnectRequest = 
&CommandTcClientConnectRequest{}
+                       }
+                       if err := 
m.TcClientConnectRequest.Unmarshal(dAtA[iNdEx:postIndex]); err != nil {
+                               return err
+                       }
+                       iNdEx = postIndex
+               case 63:
+                       if wireType != 2 {
+                               return fmt.Errorf("proto: wrong wireType = %d 
for field TcClientConnectResponse", wireType)
+                       }
+                       var msglen int
+                       for shift := uint(0); ; shift += 7 {
+                               if shift >= 64 {
+                                       return ErrIntOverflowPulsarApi
+                               }
+                               if iNdEx >= l {
+                                       return io.ErrUnexpectedEOF
+                               }
+                               b := dAtA[iNdEx]
+                               iNdEx++
+                               msglen |= int(b&0x7F) << shift
+                               if b < 0x80 {
+                                       break
+                               }
+                       }
+                       if msglen < 0 {
+                               return ErrInvalidLengthPulsarApi
+                       }
+                       postIndex := iNdEx + msglen
+                       if postIndex < 0 {
+                               return ErrInvalidLengthPulsarApi
+                       }
+                       if postIndex > l {
+                               return io.ErrUnexpectedEOF
+                       }
+                       if m.TcClientConnectResponse == nil {
+                               m.TcClientConnectResponse = 
&CommandTcClientConnectResponse{}
+                       }
+                       if err := 
m.TcClientConnectResponse.Unmarshal(dAtA[iNdEx:postIndex]); err != nil {
+                               return err
+                       }
+                       iNdEx = postIndex
                default:
                        iNdEx = preIndex
                        skippy, err := skipPulsarApi(dAtA[iNdEx:])
diff --git a/pulsar/internal/pulsar_proto/PulsarApi.proto 
b/pulsar/internal/pulsar_proto/PulsarApi.proto
index b26024f..9f84347 100644
--- a/pulsar/internal/pulsar_proto/PulsarApi.proto
+++ b/pulsar/internal/pulsar_proto/PulsarApi.proto
@@ -194,7 +194,7 @@ enum ServerError {
     AuthorizationError  = 4; // Not authorized to use resource
 
     ConsumerBusy        = 5; // Unable to subscribe/unsubscribe because
-                             // other consumers are connected
+    // other consumers are connected
     ServiceNotReady     = 6; // Any error that requires client retry operation 
with a fresh lookup
     ProducerBlockedQuotaExceededError = 7; // Unable to create producer 
because backlog quota exceeded
     ProducerBlockedQuotaExceededException = 8; // Exception while creating 
producer because quota exceeded
@@ -220,10 +220,10 @@ enum ServerError {
     TransactionNotFound = 24; // Transaction not found
 
     ProducerFenced = 25; // When a producer asks and fail to get exclusive 
producer access,
-                         // or loses the eclusive status after a reconnection, 
the broker will
-                         // use this error to indicate that this producer is 
now permanently
-                         // fenced. Applications are now supposed to close it 
and create a
-                         // new producer
+    // or loses the eclusive status after a reconnection, the broker will
+    // use this error to indicate that this producer is now permanently
+    // fenced. Applications are now supposed to close it and create a
+    // new producer
 }
 
 enum AuthMethod {
@@ -248,14 +248,16 @@ enum ProtocolVersion {
     v10 = 10;// Added proxy to broker
     v11 = 11;// C++ consumers before this version are not correctly handling 
the checksum field
     v12 = 12;// Added get topic's last messageId from broker
-             // Added CommandActiveConsumerChange
-             // Added CommandGetTopicsOfNamespace
+    // Added CommandActiveConsumerChange
+    // Added CommandGetTopicsOfNamespace
     v13 = 13; // Schema-registry : added avro schema format for json
     v14 = 14; // Add CommandAuthChallenge and CommandAuthResponse for mutual 
auth
-              // Added Key_Shared subscription
+    // Added Key_Shared subscription
     v15 = 15; // Add CommandGetOrCreateSchema and 
CommandGetOrCreateSchemaResponse
-    v16 = 16; // Add support for raw message metadata
+    v16 = 16; // Add support for broker entry metadata
     v17 = 17; // Added support ack receipt
+    v18 = 18; // Add client support for broker entry metadata
+    v19 = 19; // Add CommandTcClientConnectRequest and 
CommandTcClientConnectResponse
 }
 
 message CommandConnect {
@@ -285,8 +287,8 @@ message CommandConnect {
 }
 
 message FeatureFlags {
-  optional bool supports_auth_refresh = 1 [default = false];
-  optional bool supports_broker_entry_metadata = 2 [default = false];
+    optional bool supports_auth_refresh = 1 [default = false];
+    optional bool supports_broker_entry_metadata = 2 [default = false];
 }
 
 message CommandConnected {
@@ -380,6 +382,8 @@ message CommandSubscribe {
     optional uint64 start_message_rollback_duration_sec = 16 [default = 0];
 
     optional KeySharedMeta keySharedMeta = 17;
+
+    repeated KeyValue subscription_properties = 18;
 }
 
 message CommandPartitionedTopicMetadata {
@@ -481,6 +485,8 @@ message CommandProducer {
     // leave it empty and then it will always carry the same epoch number on
     // the subsequent reconnections.
     optional uint64 topic_epoch = 11;
+
+    optional bool txn_enabled = 12 [default = false];
 }
 
 message CommandSend {
@@ -493,6 +499,9 @@ message CommandSend {
     /// Add highest sequence id to support batch message with external 
sequence id
     optional uint64 highest_sequence_id = 6 [default = 0];
     optional bool is_chunk     =7 [default = false];
+
+    // Specify if the message being published is a Pulsar marker or not
+    optional bool marker = 8 [default = false];
 }
 
 message CommandSendReceipt {
@@ -558,8 +567,8 @@ message CommandAckResponse {
 
 // changes on active consumer
 message CommandActiveConsumerChange {
-        required uint64 consumer_id    = 1;
-        optional bool is_active     = 2 [default = false];
+    required uint64 consumer_id    = 1;
+    optional bool is_active     = 2 [default = false];
 }
 
 message CommandFlow {
@@ -646,52 +655,52 @@ message CommandPong {
 }
 
 message CommandConsumerStats {
-        required uint64 request_id         = 1;
-        // required string topic_name         = 2;
-        // required string subscription_name  = 3;
-        required uint64 consumer_id        = 4;
+    required uint64 request_id         = 1;
+    // required string topic_name         = 2;
+    // required string subscription_name  = 3;
+    required uint64 consumer_id        = 4;
 }
 
 message CommandConsumerStatsResponse {
-        required uint64 request_id              = 1;
-        optional ServerError error_code         = 2;
-        optional string error_message           = 3;
+    required uint64 request_id              = 1;
+    optional ServerError error_code         = 2;
+    optional string error_message           = 3;
 
-        /// Total rate of messages delivered to the consumer. msg/s
-        optional double msgRateOut                  = 4;
+    /// Total rate of messages delivered to the consumer. msg/s
+    optional double msgRateOut                  = 4;
 
-        /// Total throughput delivered to the consumer. bytes/s
-        optional double msgThroughputOut            = 5;
+    /// Total throughput delivered to the consumer. bytes/s
+    optional double msgThroughputOut            = 5;
 
-        /// Total rate of messages redelivered by this consumer. msg/s
-        optional double msgRateRedeliver            = 6;
+    /// Total rate of messages redelivered by this consumer. msg/s
+    optional double msgRateRedeliver            = 6;
 
-        /// Name of the consumer
-        optional string consumerName                = 7;
+    /// Name of the consumer
+    optional string consumerName                = 7;
 
-        /// Number of available message permits for the consumer
-        optional uint64 availablePermits            = 8;
+    /// Number of available message permits for the consumer
+    optional uint64 availablePermits            = 8;
 
-        /// Number of unacknowledged messages for the consumer
-        optional uint64 unackedMessages             = 9;
+    /// Number of unacknowledged messages for the consumer
+    optional uint64 unackedMessages             = 9;
 
-        /// Flag to verify if consumer is blocked due to reaching threshold of 
unacked messages
-        optional bool blockedConsumerOnUnackedMsgs  = 10;
+    /// Flag to verify if consumer is blocked due to reaching threshold of 
unacked messages
+    optional bool blockedConsumerOnUnackedMsgs  = 10;
 
-        /// Address of this consumer
-        optional string address                     = 11;
+    /// Address of this consumer
+    optional string address                     = 11;
 
-        /// Timestamp of connection
-        optional string connectedSince              = 12;
+    /// Timestamp of connection
+    optional string connectedSince              = 12;
 
-        /// Whether this subscription is Exclusive or Shared or Failover
-        optional string type                        = 13;
+    /// Whether this subscription is Exclusive or Shared or Failover
+    optional string type                        = 13;
 
-        /// Total rate of messages expired on this subscription. msg/s
-        optional double msgRateExpired              = 14;
+    /// Total rate of messages expired on this subscription. msg/s
+    optional double msgRateExpired              = 14;
 
-        /// Number of messages in the subscription backlog
-        optional uint64 msgBacklog                  = 15;
+    /// Number of messages in the subscription backlog
+    optional uint64 msgBacklog                  = 15;
 }
 
 message CommandGetLastMessageId {
@@ -758,6 +767,17 @@ enum TxnAction {
     ABORT = 1;
 }
 
+message CommandTcClientConnectRequest {
+    required uint64 request_id = 1;
+    required uint64 tc_id = 2 [default = 0];
+}
+
+message CommandTcClientConnectResponse {
+    required uint64 request_id = 1;
+    optional ServerError error  = 2;
+    optional string message     = 3;
+}
+
 message CommandNewTxn {
     required uint64 request_id = 1;
     optional uint64 txn_ttl_seconds = 2 [default = 0];
@@ -937,6 +957,8 @@ message BaseCommand {
 
         END_TXN_ON_SUBSCRIPTION = 60;
         END_TXN_ON_SUBSCRIPTION_RESPONSE = 61;
+        TC_CLIENT_CONNECT_REQUEST = 62;
+        TC_CLIENT_CONNECT_RESPONSE = 63;
 
     }
 
@@ -1012,4 +1034,6 @@ message BaseCommand {
     optional CommandEndTxnOnPartitionResponse endTxnOnPartitionResponse = 59;
     optional CommandEndTxnOnSubscription endTxnOnSubscription = 60;
     optional CommandEndTxnOnSubscriptionResponse endTxnOnSubscriptionResponse 
= 61;
+    optional CommandTcClientConnectRequest tcClientConnectRequest = 62;
+    optional CommandTcClientConnectResponse tcClientConnectResponse = 63;
 }

Reply via email to