mirror of
https://github.com/etcd-io/etcd.git
synced 2024-09-27 06:25:44 +00:00
*: regenerate proto
This commit is contained in:
parent
3d9b1d1635
commit
8eab756d3f
@ -427,7 +427,6 @@ Empty field.
|
||||
| ----- | ----------- | ---- |
|
||||
| key | key is the first key to delete in the range. | bytes |
|
||||
| range_end | range_end is the key following the last key to delete for the range [key, range_end). If range_end is not given, the range is defined to contain only the key argument. If range_end is '\0', the range is all keys greater than or equal to the key argument. | bytes |
|
||||
| prev_kv | If prev_kv is set, etcd gets the previous key-value pairs before deleting it. The previous key-value pairs will be returned in the delte response. | bool |
|
||||
|
||||
|
||||
|
||||
@ -437,7 +436,6 @@ Empty field.
|
||||
| ----- | ----------- | ---- |
|
||||
| header | | ResponseHeader |
|
||||
| deleted | deleted is the number of keys deleted by the delete range request. | int64 |
|
||||
| prev_kvs | if prev_kv is set in the request, the previous key-value pairs will be returned. | (slice of) mvccpb.KeyValue |
|
||||
|
||||
|
||||
|
||||
@ -593,7 +591,6 @@ Empty field.
|
||||
| key | key is the key, in bytes, to put into the key-value store. | bytes |
|
||||
| value | value is the value, in bytes, to associate with the key in the key-value store. | bytes |
|
||||
| lease | lease is the lease ID to associate with the key in the key-value store. A lease value of 0 indicates no lease. | int64 |
|
||||
| prev_kv | If prev_kv is set, etcd gets the previous key-value pair before changing it. The previous key-value pair will be returned in the put response. | bool |
|
||||
|
||||
|
||||
|
||||
@ -602,7 +599,6 @@ Empty field.
|
||||
| Field | Description | Type |
|
||||
| ----- | ----------- | ---- |
|
||||
| header | | ResponseHeader |
|
||||
| prev_kv | if prev_kv is set in the request, the previous key-value pair will be returned. | mvccpb.KeyValue |
|
||||
|
||||
|
||||
|
||||
@ -739,8 +735,6 @@ From google paxosdb paper: Our implementation hinges around a powerful primitive
|
||||
| range_end | range_end is the end of the range [key, range_end) to watch. If range_end is not given, only the key argument is watched. If range_end is equal to '\0', all keys greater than or equal to the key argument are watched. | bytes |
|
||||
| start_revision | start_revision is an optional revision to watch from (inclusive). No start_revision is "now". | int64 |
|
||||
| progress_notify | progress_notify is set so that the etcd server will periodically send a WatchResponse with no events to the new watcher if there are no recent events. It is useful when clients wish to recover a disconnected watcher starting from a recent known revision. The etcd server may decide how often it will send notifications based on current load. | bool |
|
||||
| filters | filter out put event. filter out delete event. filters filter the events at server side before it sends back to the watcher. | (slice of) FilterType |
|
||||
| prev_kv | If prev_kv is set, created watcher gets the previous KV before the event happens. If the previous KV is already compacted, nothing will be returned. | bool |
|
||||
|
||||
|
||||
|
||||
@ -773,7 +767,6 @@ From google paxosdb paper: Our implementation hinges around a powerful primitive
|
||||
| ----- | ----------- | ---- |
|
||||
| type | type is the kind of event. If type is a PUT, it indicates new data has been stored to the key. If type is a DELETE, it indicates the key was deleted. | EventType |
|
||||
| kv | kv holds the KeyValue for the event. A PUT event contains current kv pair. A PUT event with kv.Version=1 indicates the creation of a key. A DELETE/EXPIRE event contains the deleted key with its modification revision set to the revision of deletion. | KeyValue |
|
||||
| prev_kv | prev_kv holds the key-value pair before the event happens. | KeyValue |
|
||||
|
||||
|
||||
|
||||
|
@ -557,7 +557,7 @@
|
||||
},
|
||||
"/v3alpha/kv/compaction": {
|
||||
"post": {
|
||||
"summary": "Txn processes multiple requests in a single transaction.\nA txn request increments the revision of the key-value store\nand generates events with the same revision for every completed request.\nIt is not allowed to modify the same key several times within one txn.",
|
||||
"summary": "Compact compacts the event history in the etcd key-value store. The key-value\nstore should be periodically compacted or the event history will continue to grow\nindefinitely.",
|
||||
"operationId": "Compact",
|
||||
"responses": {
|
||||
"200": {
|
||||
@ -582,6 +582,33 @@
|
||||
]
|
||||
}
|
||||
},
|
||||
"/v3alpha/kv/deleterange": {
|
||||
"post": {
|
||||
"summary": "DeleteRange deletes the given range from the key-value store.\nA delete request increments the revision of the key-value store\nand generates a delete event in the event history for every deleted key.",
|
||||
"operationId": "DeleteRange",
|
||||
"responses": {
|
||||
"200": {
|
||||
"description": "",
|
||||
"schema": {
|
||||
"$ref": "#/definitions/etcdserverpbDeleteRangeResponse"
|
||||
}
|
||||
}
|
||||
},
|
||||
"parameters": [
|
||||
{
|
||||
"name": "body",
|
||||
"in": "body",
|
||||
"required": true,
|
||||
"schema": {
|
||||
"$ref": "#/definitions/etcdserverpbDeleteRangeRequest"
|
||||
}
|
||||
}
|
||||
],
|
||||
"tags": [
|
||||
"KV"
|
||||
]
|
||||
}
|
||||
},
|
||||
"/v3alpha/kv/lease/revoke": {
|
||||
"post": {
|
||||
"summary": "LeaseRevoke revokes a lease. All keys attached to the lease will expire and be deleted.",
|
||||
@ -665,7 +692,7 @@
|
||||
},
|
||||
"/v3alpha/kv/txn": {
|
||||
"post": {
|
||||
"summary": "DeleteRange deletes the given range from the key-value store.\nA delete request increments the revision of the key-value store\nand generates a delete event in the event history for every deleted key.",
|
||||
"summary": "Txn processes multiple requests in a single transaction.\nA txn request increments the revision of the key-value store\nand generates events with the same revision for every completed request.\nIt is not allowed to modify the same key several times within one txn.",
|
||||
"operationId": "Txn",
|
||||
"responses": {
|
||||
"200": {
|
||||
|
@ -15125,202 +15125,203 @@ var (
|
||||
)
|
||||
|
||||
var fileDescriptorRpc = []byte{
|
||||
// 3149 bytes of a gzipped FileDescriptorProto
|
||||
0x1f, 0x8b, 0x08, 0x00, 0x00, 0x09, 0x6e, 0x88, 0x02, 0xff, 0xb4, 0x5a, 0x4b, 0x73, 0xe3, 0xc6,
|
||||
// 3154 bytes of a gzipped FileDescriptorProto
|
||||
0x1f, 0x8b, 0x08, 0x00, 0x00, 0x09, 0x6e, 0x88, 0x02, 0xff, 0xb4, 0x5a, 0xcd, 0x72, 0xe3, 0xc6,
|
||||
0xf1, 0x17, 0x48, 0x4a, 0x14, 0x9b, 0x14, 0xc5, 0x1d, 0x69, 0xd7, 0x14, 0x56, 0xab, 0xd5, 0xce,
|
||||
0xbe, 0xe4, 0xb5, 0x2d, 0xda, 0xb2, 0xff, 0xff, 0xc3, 0x26, 0xe5, 0x2a, 0x49, 0x64, 0x56, 0xb2,
|
||||
0x64, 0x69, 0x0d, 0x71, 0x65, 0xa7, 0x2a, 0x15, 0x15, 0x44, 0xce, 0x92, 0x2c, 0x91, 0x00, 0x0d,
|
||||
0x80, 0xda, 0x95, 0x93, 0x54, 0xa5, 0x5c, 0xf1, 0x21, 0xb9, 0xfa, 0x90, 0xd7, 0x31, 0x9f, 0x21,
|
||||
0xb7, 0x7c, 0x80, 0x54, 0x2e, 0x71, 0x55, 0x8e, 0xb9, 0xa4, 0x36, 0x39, 0xe4, 0x90, 0x7b, 0x2a,
|
||||
0xa7, 0xa4, 0xe6, 0x05, 0x0c, 0x40, 0x80, 0x92, 0x83, 0xf8, 0x22, 0x61, 0x7a, 0x7a, 0xfa, 0xd7,
|
||||
0xd3, 0x33, 0xdd, 0xe8, 0x6e, 0x10, 0x0a, 0xce, 0xb0, 0xb5, 0x3e, 0x74, 0x6c, 0xcf, 0x46, 0x25,
|
||||
0xe2, 0xb5, 0xda, 0x2e, 0x71, 0xce, 0x89, 0x33, 0x3c, 0xd5, 0x17, 0x3b, 0x76, 0xc7, 0x66, 0x13,
|
||||
0x35, 0xfa, 0xc4, 0x79, 0xf4, 0x25, 0xca, 0x53, 0x1b, 0x9c, 0xb7, 0x5a, 0xec, 0xcf, 0xf0, 0xb4,
|
||||
0x76, 0x76, 0x2e, 0xa6, 0x6e, 0xb2, 0x29, 0x73, 0xe4, 0x75, 0xd9, 0x9f, 0xe1, 0x29, 0xfb, 0x27,
|
||||
0x26, 0x97, 0x3b, 0xb6, 0xdd, 0xe9, 0x93, 0x9a, 0x39, 0xec, 0xd5, 0x4c, 0xcb, 0xb2, 0x3d, 0xd3,
|
||||
0xeb, 0xd9, 0x96, 0xcb, 0x67, 0xf1, 0x17, 0x1a, 0x94, 0x0d, 0xe2, 0x0e, 0x6d, 0xcb, 0x25, 0x3b,
|
||||
0xc4, 0x6c, 0x13, 0x07, 0xdd, 0x02, 0x68, 0xf5, 0x47, 0xae, 0x47, 0x9c, 0x93, 0x5e, 0xbb, 0xaa,
|
||||
0xad, 0x6a, 0x6b, 0x39, 0xa3, 0x20, 0x28, 0xbb, 0x6d, 0x74, 0x13, 0x0a, 0x03, 0x32, 0x38, 0xe5,
|
||||
0xb3, 0x19, 0x36, 0x3b, 0xcb, 0x09, 0xbb, 0x6d, 0xa4, 0xc3, 0xac, 0x43, 0xce, 0x7b, 0x6e, 0xcf,
|
||||
0xb6, 0xaa, 0xd9, 0x55, 0x6d, 0x2d, 0x6b, 0xf8, 0x63, 0xba, 0xd0, 0x31, 0x9f, 0x7b, 0x27, 0x1e,
|
||||
0x71, 0x06, 0xd5, 0x1c, 0x5f, 0x48, 0x09, 0x4d, 0xe2, 0x0c, 0xf0, 0x57, 0x59, 0x28, 0x19, 0xa6,
|
||||
0xd5, 0x21, 0x06, 0xf9, 0x74, 0x44, 0x5c, 0x0f, 0x55, 0x20, 0x7b, 0x46, 0x2e, 0x18, 0x7c, 0xc9,
|
||||
0xa0, 0x8f, 0x7c, 0xbd, 0xd5, 0x21, 0x27, 0xc4, 0xe2, 0xc0, 0x25, 0xba, 0xde, 0xea, 0x90, 0x86,
|
||||
0xd5, 0x46, 0x8b, 0x30, 0xdd, 0xef, 0x0d, 0x7a, 0x9e, 0x40, 0xe5, 0x83, 0x90, 0x3a, 0xb9, 0x88,
|
||||
0x3a, 0xdb, 0x00, 0xae, 0xed, 0x78, 0x27, 0xb6, 0xd3, 0x26, 0x4e, 0x75, 0x7a, 0x55, 0x5b, 0x2b,
|
||||
0x7e, 0xc9, 0x6b, 0x5b, 0xb4, 0x65, 0xff, 0xff, 0x87, 0x4d, 0xca, 0x55, 0x92, 0xc8, 0xac, 0x64,
|
||||
0xc9, 0xd2, 0x1a, 0xd2, 0xca, 0x4e, 0x55, 0x2a, 0x2a, 0x88, 0x9c, 0x25, 0x59, 0x22, 0x01, 0x1a,
|
||||
0x00, 0xb9, 0x2b, 0x27, 0xa9, 0x4a, 0xb9, 0xe2, 0x43, 0x72, 0xf5, 0x21, 0x5f, 0xc7, 0x3c, 0x43,
|
||||
0x6e, 0x79, 0x80, 0x54, 0x2e, 0x71, 0x55, 0x5e, 0x20, 0xb5, 0xc9, 0x21, 0x87, 0xdc, 0x53, 0x39,
|
||||
0xa4, 0x92, 0x9a, 0x2f, 0x60, 0x00, 0x02, 0x94, 0x1c, 0xc4, 0x17, 0x09, 0xd3, 0xd3, 0xd3, 0xbf,
|
||||
0x9e, 0x9e, 0xe9, 0x46, 0x77, 0x83, 0x50, 0x70, 0x06, 0xcd, 0xf5, 0x81, 0x63, 0x7b, 0x36, 0x2a,
|
||||
0x11, 0xaf, 0xd9, 0x72, 0x89, 0x33, 0x22, 0xce, 0xe0, 0x4c, 0x5f, 0x6c, 0xdb, 0x6d, 0x9b, 0x4d,
|
||||
0xd4, 0xe8, 0x13, 0xe7, 0xd1, 0x97, 0x28, 0x4f, 0xad, 0x3f, 0x6a, 0x36, 0xd9, 0x9f, 0xc1, 0x59,
|
||||
0xed, 0x7c, 0x24, 0xa6, 0x6e, 0xb2, 0x29, 0x73, 0xe8, 0x75, 0xd8, 0x9f, 0xc1, 0x19, 0xfb, 0x27,
|
||||
0x26, 0x97, 0xdb, 0xb6, 0xdd, 0xee, 0x91, 0x9a, 0x39, 0xe8, 0xd6, 0x4c, 0xcb, 0xb2, 0x3d, 0xd3,
|
||||
0xeb, 0xda, 0x96, 0xcb, 0x67, 0xf1, 0x17, 0x1a, 0x94, 0x0d, 0xe2, 0x0e, 0x6c, 0xcb, 0x25, 0x3b,
|
||||
0xc4, 0x6c, 0x11, 0x07, 0xdd, 0x02, 0x68, 0xf6, 0x86, 0xae, 0x47, 0x9c, 0xd3, 0x6e, 0xab, 0xaa,
|
||||
0xad, 0x6a, 0x6b, 0x39, 0xa3, 0x20, 0x28, 0xbb, 0x2d, 0x74, 0x13, 0x0a, 0x7d, 0xd2, 0x3f, 0xe3,
|
||||
0xb3, 0x19, 0x36, 0x3b, 0xcb, 0x09, 0xbb, 0x2d, 0xa4, 0xc3, 0xac, 0x43, 0x46, 0x5d, 0xb7, 0x6b,
|
||||
0x5b, 0xd5, 0xec, 0xaa, 0xb6, 0x96, 0x35, 0xfc, 0x31, 0x5d, 0xe8, 0x98, 0xcf, 0xbd, 0x53, 0x8f,
|
||||
0x38, 0xfd, 0x6a, 0x8e, 0x2f, 0xa4, 0x84, 0x63, 0xe2, 0xf4, 0xf1, 0x57, 0x59, 0x28, 0x19, 0xa6,
|
||||
0xd5, 0x26, 0x06, 0xf9, 0x74, 0x48, 0x5c, 0x0f, 0x55, 0x20, 0x7b, 0x4e, 0x2e, 0x18, 0x7c, 0xc9,
|
||||
0xa0, 0x8f, 0x7c, 0xbd, 0xd5, 0x26, 0xa7, 0xc4, 0xe2, 0xc0, 0x25, 0xba, 0xde, 0x6a, 0x93, 0x86,
|
||||
0xd5, 0x42, 0x8b, 0x30, 0xdd, 0xeb, 0xf6, 0xbb, 0x9e, 0x40, 0xe5, 0x83, 0x90, 0x3a, 0xb9, 0x88,
|
||||
0x3a, 0xdb, 0x00, 0xae, 0xed, 0x78, 0xa7, 0xb6, 0xd3, 0x22, 0x4e, 0x75, 0x7a, 0x55, 0x5b, 0x2b,
|
||||
0x6f, 0xdc, 0x5b, 0x57, 0x0f, 0x62, 0x5d, 0x55, 0x68, 0xfd, 0xc8, 0x76, 0xbc, 0x43, 0xca, 0x6b,
|
||||
0x14, 0x5c, 0xf9, 0x88, 0xbe, 0x03, 0x45, 0x26, 0xc4, 0x33, 0x9d, 0x0e, 0xf1, 0xaa, 0x33, 0x4c,
|
||||
0xca, 0xfd, 0x4b, 0xa4, 0x34, 0x19, 0xb3, 0xc1, 0xe0, 0xf9, 0x33, 0xc2, 0x50, 0x72, 0x89, 0xd3,
|
||||
0x33, 0xfb, 0xbd, 0xcf, 0xcc, 0xd3, 0x3e, 0xa9, 0xe6, 0x57, 0xb5, 0xb5, 0x59, 0x23, 0x44, 0xa3,
|
||||
0xfb, 0x3f, 0x23, 0x17, 0xee, 0x89, 0x6d, 0xf5, 0x2f, 0xaa, 0xb3, 0x8c, 0x61, 0x96, 0x12, 0x0e,
|
||||
0xad, 0xfe, 0x05, 0x3b, 0x34, 0x7b, 0x64, 0x79, 0x7c, 0xb6, 0xc0, 0x66, 0x0b, 0x8c, 0x42, 0xa7,
|
||||
0xf1, 0x3a, 0x14, 0x7c, 0xfd, 0xd1, 0x2c, 0xe4, 0x0e, 0x0e, 0x0f, 0x1a, 0x95, 0x29, 0x04, 0x30,
|
||||
0xb3, 0x79, 0xb4, 0xdd, 0x38, 0xa8, 0x57, 0x34, 0x54, 0x84, 0x7c, 0xbd, 0xc1, 0x07, 0x19, 0xbc,
|
||||
0x05, 0x10, 0x68, 0x8a, 0xf2, 0x90, 0xdd, 0x6b, 0x7c, 0xb7, 0x32, 0x45, 0x79, 0x8e, 0x1b, 0xc6,
|
||||
0xd1, 0xee, 0xe1, 0x41, 0x45, 0xa3, 0x8b, 0xb7, 0x8d, 0xc6, 0x66, 0xb3, 0x51, 0xc9, 0x50, 0x8e,
|
||||
0x0f, 0x0f, 0xeb, 0x95, 0x2c, 0x2a, 0xc0, 0xf4, 0xf1, 0xe6, 0xfe, 0xb3, 0x46, 0x25, 0x87, 0xbf,
|
||||
0xd4, 0x60, 0x4e, 0xec, 0x9d, 0xdf, 0x2f, 0xf4, 0x1e, 0xcc, 0x74, 0xd9, 0x1d, 0x63, 0xc7, 0x5a,
|
||||
0xdc, 0x58, 0x8e, 0x18, 0x2a, 0x74, 0x0f, 0x0d, 0xc1, 0x8b, 0x30, 0x64, 0xcf, 0xce, 0xdd, 0x6a,
|
||||
0x66, 0x35, 0xbb, 0x56, 0xdc, 0xa8, 0xac, 0xf3, 0xcb, 0xbf, 0xbe, 0x47, 0x2e, 0x8e, 0xcd, 0xfe,
|
||||
0x88, 0x18, 0x74, 0x12, 0x21, 0xc8, 0x0d, 0x6c, 0x87, 0xb0, 0xd3, 0x9f, 0x35, 0xd8, 0x33, 0xbd,
|
||||
0x12, 0xcc, 0x00, 0xe2, 0xe4, 0xf9, 0x00, 0x7f, 0x00, 0xf0, 0x74, 0xe4, 0x25, 0xdf, 0xb2, 0x45,
|
||||
0x98, 0x3e, 0xa7, 0x72, 0xc5, 0x0d, 0xe3, 0x03, 0x76, 0xbd, 0x88, 0xe9, 0x12, 0xff, 0x7a, 0xd1,
|
||||
0x01, 0xde, 0x86, 0x22, 0x93, 0x95, 0x66, 0x7b, 0x78, 0x1b, 0x50, 0x9d, 0xf4, 0x89, 0x47, 0x52,
|
||||
0x5c, 0x7f, 0x4c, 0x60, 0x21, 0x24, 0x24, 0x95, 0xc1, 0xab, 0x90, 0x6f, 0x33, 0x61, 0x1c, 0x27,
|
||||
0x6b, 0xc8, 0x21, 0xfe, 0x87, 0x06, 0x05, 0xa1, 0xe1, 0xe1, 0x10, 0x6d, 0xc2, 0x9c, 0xc3, 0x07,
|
||||
0x27, 0x4c, 0x11, 0x01, 0xa2, 0x27, 0x5f, 0xff, 0x9d, 0x29, 0xa3, 0x24, 0x96, 0x30, 0x32, 0xfa,
|
||||
0x16, 0x14, 0xa5, 0x88, 0xe1, 0xc8, 0x63, 0x70, 0xc5, 0x8d, 0x6a, 0x58, 0x40, 0x70, 0x5c, 0x3b,
|
||||
0x53, 0x06, 0x08, 0xf6, 0xa7, 0x23, 0x0f, 0x35, 0x61, 0x51, 0x2e, 0xe6, 0x0a, 0x0a, 0x35, 0xb2,
|
||||
0x4c, 0xca, 0x6a, 0x58, 0xca, 0xb8, 0x8d, 0x77, 0xa6, 0x0c, 0x24, 0xd6, 0x2b, 0x93, 0x5b, 0x05,
|
||||
0xc8, 0x0b, 0x2a, 0xfe, 0xa7, 0x06, 0x20, 0x6d, 0x74, 0x38, 0x44, 0x75, 0x28, 0x3b, 0x62, 0x14,
|
||||
0xda, 0xf0, 0xcd, 0xd8, 0x0d, 0x0b, 0xd3, 0x4e, 0x19, 0x73, 0x72, 0x11, 0xdf, 0xf2, 0xfb, 0x50,
|
||||
0xf2, 0xa5, 0x04, 0x7b, 0x5e, 0x8a, 0xd9, 0xb3, 0x2f, 0xa1, 0x28, 0x17, 0xd0, 0x5d, 0x7f, 0x0c,
|
||||
0xd7, 0xfd, 0xf5, 0x31, 0xdb, 0xbe, 0x33, 0x61, 0xdb, 0xbe, 0xc0, 0x05, 0x29, 0x41, 0xdd, 0x38,
|
||||
0xd0, 0x60, 0xc9, 0xc9, 0xf8, 0x57, 0x59, 0xc8, 0x6f, 0xdb, 0x83, 0xa1, 0xe9, 0xd0, 0x33, 0x9a,
|
||||
0x71, 0x88, 0x3b, 0xea, 0x7b, 0x6c, 0xbb, 0xe5, 0x8d, 0xbb, 0x61, 0x04, 0xc1, 0x26, 0xff, 0x1b,
|
||||
0x8c, 0xd5, 0x10, 0x4b, 0xe8, 0x62, 0x11, 0x1b, 0x33, 0x57, 0x58, 0x2c, 0x22, 0xa3, 0x58, 0x22,
|
||||
0x9d, 0x20, 0x1b, 0x38, 0x81, 0x0e, 0xf9, 0x73, 0xe2, 0x04, 0xf1, 0x7c, 0x67, 0xca, 0x90, 0x04,
|
||||
0xf4, 0x3a, 0xcc, 0xb7, 0x1c, 0x62, 0x52, 0x7b, 0xc8, 0x98, 0x3f, 0x2d, 0x78, 0xca, 0x7c, 0xc2,
|
||||
0x90, 0xb1, 0xff, 0x2e, 0x94, 0x06, 0x76, 0x3b, 0xe0, 0x9b, 0x11, 0x7c, 0xc5, 0x81, 0xdd, 0xf6,
|
||||
0x14, 0x5c, 0xf9, 0x88, 0xbe, 0x03, 0x45, 0x26, 0xc4, 0x33, 0x9d, 0x36, 0xf1, 0xaa, 0x33, 0x4c,
|
||||
0xca, 0xfd, 0x4b, 0xa4, 0x1c, 0x33, 0x66, 0x83, 0xc1, 0xf3, 0x67, 0x84, 0xa1, 0xe4, 0x12, 0xa7,
|
||||
0x6b, 0xf6, 0xba, 0x9f, 0x99, 0x67, 0x3d, 0x52, 0xcd, 0xaf, 0x6a, 0x6b, 0xb3, 0x46, 0x88, 0x46,
|
||||
0xf7, 0x7f, 0x4e, 0x2e, 0xdc, 0x53, 0xdb, 0xea, 0x5d, 0x54, 0x67, 0x19, 0xc3, 0x2c, 0x25, 0x1c,
|
||||
0x5a, 0xbd, 0x0b, 0x76, 0x68, 0xf6, 0xd0, 0xf2, 0xf8, 0x6c, 0x81, 0xcd, 0x16, 0x18, 0x85, 0x4e,
|
||||
0xe3, 0x75, 0x28, 0xf8, 0xfa, 0xa3, 0x59, 0xc8, 0x1d, 0x1c, 0x1e, 0x34, 0x2a, 0x53, 0x08, 0x60,
|
||||
0x66, 0xf3, 0x68, 0xbb, 0x71, 0x50, 0xaf, 0x68, 0xa8, 0x08, 0xf9, 0x7a, 0x83, 0x0f, 0x32, 0x78,
|
||||
0x0b, 0x20, 0xd0, 0x14, 0xe5, 0x21, 0xbb, 0xd7, 0xf8, 0x6e, 0x65, 0x8a, 0xf2, 0x9c, 0x34, 0x8c,
|
||||
0xa3, 0xdd, 0xc3, 0x83, 0x8a, 0x46, 0x17, 0x6f, 0x1b, 0x8d, 0xcd, 0xe3, 0x46, 0x25, 0x43, 0x39,
|
||||
0x3e, 0x3c, 0xac, 0x57, 0xb2, 0xa8, 0x00, 0xd3, 0x27, 0x9b, 0xfb, 0xcf, 0x1a, 0x95, 0x1c, 0xfe,
|
||||
0x52, 0x83, 0x39, 0xb1, 0x77, 0x7e, 0xbf, 0xd0, 0x7b, 0x30, 0xd3, 0x61, 0x77, 0x8c, 0x1d, 0x6b,
|
||||
0x71, 0x63, 0x39, 0x62, 0xa8, 0xd0, 0x3d, 0x34, 0x04, 0x2f, 0xc2, 0x90, 0x3d, 0x1f, 0xb9, 0xd5,
|
||||
0xcc, 0x6a, 0x76, 0xad, 0xb8, 0x51, 0x59, 0xe7, 0x97, 0x7f, 0x7d, 0x8f, 0x5c, 0x9c, 0x98, 0xbd,
|
||||
0x21, 0x31, 0xe8, 0x24, 0x42, 0x90, 0xeb, 0xdb, 0x0e, 0x61, 0xa7, 0x3f, 0x6b, 0xb0, 0x67, 0x7a,
|
||||
0x25, 0x98, 0x01, 0xc4, 0xc9, 0xf3, 0x01, 0xfe, 0x00, 0xe0, 0xe9, 0xd0, 0x4b, 0xbe, 0x65, 0x8b,
|
||||
0x30, 0x3d, 0xa2, 0x72, 0xc5, 0x0d, 0xe3, 0x03, 0x76, 0xbd, 0x88, 0xe9, 0x12, 0xff, 0x7a, 0xd1,
|
||||
0x01, 0xde, 0x86, 0x22, 0x93, 0x95, 0x66, 0x7b, 0x78, 0x1b, 0x50, 0x9d, 0xf4, 0x88, 0x47, 0x52,
|
||||
0x5c, 0x7f, 0x4c, 0x60, 0x21, 0x24, 0x24, 0x95, 0xc1, 0xab, 0x90, 0x6f, 0x31, 0x61, 0x1c, 0x27,
|
||||
0x6b, 0xc8, 0x21, 0xfe, 0xbb, 0x06, 0x05, 0xa1, 0xe1, 0xe1, 0x00, 0x6d, 0xc2, 0x9c, 0xc3, 0x07,
|
||||
0xa7, 0x4c, 0x11, 0x01, 0xa2, 0x27, 0x5f, 0xff, 0x9d, 0x29, 0xa3, 0x24, 0x96, 0x30, 0x32, 0xfa,
|
||||
0x16, 0x14, 0xa5, 0x88, 0xc1, 0xd0, 0x63, 0x70, 0xc5, 0x8d, 0x6a, 0x58, 0x40, 0x70, 0x5c, 0x3b,
|
||||
0x53, 0x06, 0x08, 0xf6, 0xa7, 0x43, 0x0f, 0x1d, 0xc3, 0xa2, 0x5c, 0xcc, 0x15, 0x14, 0x6a, 0x64,
|
||||
0x99, 0x94, 0xd5, 0xb0, 0x94, 0x71, 0x1b, 0xef, 0x4c, 0x19, 0x48, 0xac, 0x57, 0x26, 0xb7, 0x0a,
|
||||
0x90, 0x17, 0x54, 0xfc, 0x0f, 0x0d, 0x40, 0xda, 0xe8, 0x70, 0x80, 0xea, 0x50, 0x76, 0xc4, 0x28,
|
||||
0xb4, 0xe1, 0x9b, 0xb1, 0x1b, 0x16, 0xa6, 0x9d, 0x32, 0xe6, 0xe4, 0x22, 0xbe, 0xe5, 0xf7, 0xa1,
|
||||
0xe4, 0x4b, 0x09, 0xf6, 0xbc, 0x14, 0xb3, 0x67, 0x5f, 0x42, 0x51, 0x2e, 0xa0, 0xbb, 0xfe, 0x18,
|
||||
0xae, 0xfb, 0xeb, 0x63, 0xb6, 0x7d, 0x67, 0xc2, 0xb6, 0x7d, 0x81, 0x0b, 0x52, 0x82, 0xba, 0x71,
|
||||
0xa0, 0xc1, 0x92, 0x93, 0xf1, 0xaf, 0xb2, 0x90, 0xdf, 0xb6, 0xfb, 0x03, 0xd3, 0xa1, 0x67, 0x34,
|
||||
0xe3, 0x10, 0x77, 0xd8, 0xf3, 0xd8, 0x76, 0xcb, 0x1b, 0x77, 0xc3, 0x08, 0x82, 0x4d, 0xfe, 0x37,
|
||||
0x18, 0xab, 0x21, 0x96, 0xd0, 0xc5, 0x22, 0x36, 0x66, 0xae, 0xb0, 0x58, 0x44, 0x46, 0xb1, 0x44,
|
||||
0x3a, 0x41, 0x36, 0x70, 0x02, 0x1d, 0xf2, 0x23, 0xe2, 0x04, 0xf1, 0x7c, 0x67, 0xca, 0x90, 0x04,
|
||||
0xf4, 0x3a, 0xcc, 0x37, 0x1d, 0x62, 0x52, 0x7b, 0xc8, 0x98, 0x3f, 0x2d, 0x78, 0xca, 0x7c, 0xc2,
|
||||
0x90, 0xb1, 0xff, 0x2e, 0x94, 0xfa, 0x76, 0x2b, 0xe0, 0x9b, 0x11, 0x7c, 0xc5, 0xbe, 0xdd, 0xf2,
|
||||
0x99, 0x6e, 0xc8, 0x48, 0x40, 0x83, 0x71, 0x69, 0x67, 0x4a, 0xc4, 0x02, 0xfc, 0x0e, 0xcc, 0x85,
|
||||
0xf6, 0x4a, 0x63, 0x5e, 0xe3, 0xa3, 0x67, 0x9b, 0xfb, 0x3c, 0x40, 0x3e, 0x61, 0x31, 0xd1, 0xa8,
|
||||
0x68, 0x34, 0xce, 0xee, 0x37, 0x8e, 0x8e, 0x2a, 0x19, 0xfc, 0x6d, 0x7f, 0x89, 0x88, 0xa8, 0x4a,
|
||||
0x20, 0x9d, 0x52, 0x02, 0xa9, 0x26, 0x03, 0x69, 0x26, 0x08, 0xa4, 0xd9, 0xad, 0x32, 0x94, 0xb8,
|
||||
0x41, 0x4e, 0x46, 0x56, 0xcf, 0xb6, 0xf0, 0x6f, 0x34, 0x80, 0xe6, 0x4b, 0x4b, 0x86, 0x8a, 0x1a,
|
||||
0xe4, 0x5b, 0x5c, 0x78, 0x55, 0x63, 0x31, 0xf2, 0x7a, 0xac, 0x8d, 0x0d, 0xc9, 0x85, 0xde, 0x81,
|
||||
0xbc, 0x3b, 0x6a, 0xb5, 0x88, 0x2b, 0x83, 0xea, 0x6b, 0xd1, 0xb0, 0x20, 0x3c, 0xdc, 0x90, 0x7c,
|
||||
0x74, 0xc9, 0x73, 0xb3, 0xd7, 0x1f, 0xb1, 0x10, 0x3b, 0x79, 0x89, 0xe0, 0xc3, 0xbf, 0xd4, 0xa0,
|
||||
0xc8, 0xb4, 0x4c, 0x15, 0x8b, 0x96, 0xa1, 0xc0, 0x74, 0x20, 0x6d, 0x11, 0x8d, 0x66, 0x8d, 0x80,
|
||||
0x80, 0xfe, 0x1f, 0x0a, 0xf2, 0xca, 0xba, 0x42, 0xb1, 0x6a, 0xbc, 0xd8, 0xc3, 0xa1, 0x11, 0xb0,
|
||||
0xe2, 0x3d, 0xb8, 0xc6, 0xac, 0xd2, 0xa2, 0xa9, 0x90, 0xb4, 0xa3, 0x9a, 0x2c, 0x68, 0x91, 0x64,
|
||||
0x41, 0x87, 0xd9, 0x61, 0xf7, 0xc2, 0xed, 0xb5, 0xcc, 0xbe, 0xd0, 0xc2, 0x1f, 0xe3, 0x0f, 0x00,
|
||||
0xa9, 0xc2, 0x52, 0xbd, 0x0c, 0xe6, 0xa0, 0xb8, 0x63, 0xba, 0x5d, 0xa1, 0x12, 0xfe, 0x04, 0x4a,
|
||||
0x7c, 0x98, 0xca, 0x86, 0x08, 0x72, 0x5d, 0xd3, 0xed, 0x32, 0xc5, 0xe7, 0x0c, 0xf6, 0x8c, 0xaf,
|
||||
0xc1, 0xfc, 0x91, 0x65, 0x0e, 0xdd, 0xae, 0x2d, 0x83, 0x2b, 0x4d, 0x05, 0x2b, 0x01, 0x2d, 0x15,
|
||||
0xe2, 0x43, 0x98, 0x77, 0xc8, 0xc0, 0xec, 0x59, 0x3d, 0xab, 0x73, 0x72, 0x7a, 0xe1, 0x11, 0x57,
|
||||
0x64, 0x8a, 0x65, 0x9f, 0xbc, 0x45, 0xa9, 0x54, 0xb5, 0xd3, 0xbe, 0x7d, 0x2a, 0x5c, 0x9c, 0x3d,
|
||||
0xe3, 0xdf, 0x6a, 0x50, 0xfa, 0xd8, 0xf4, 0x5a, 0xd2, 0x0a, 0x68, 0x17, 0xca, 0xbe, 0x63, 0x33,
|
||||
0x8a, 0xd0, 0x25, 0x12, 0xe1, 0xd9, 0x9a, 0x6d, 0xe1, 0xe8, 0x32, 0xc2, 0xcf, 0xb5, 0x54, 0x02,
|
||||
0x13, 0x65, 0x5a, 0x2d, 0xd2, 0xf7, 0x45, 0x65, 0x92, 0x45, 0x31, 0x46, 0x55, 0x94, 0x4a, 0xd8,
|
||||
0x9a, 0x0f, 0xde, 0x7e, 0xdc, 0x2d, 0xbf, 0xd4, 0x00, 0x8d, 0xeb, 0xf0, 0x75, 0x13, 0xd9, 0xfb,
|
||||
0x50, 0x76, 0x3d, 0xd3, 0xf1, 0x4e, 0x22, 0x79, 0xf4, 0x1c, 0xa3, 0xfa, 0xc1, 0xe9, 0x21, 0xcc,
|
||||
0x0f, 0x1d, 0xbb, 0xe3, 0x10, 0xd7, 0x3d, 0xb1, 0x6c, 0xaf, 0xf7, 0xfc, 0x82, 0x05, 0xc4, 0x59,
|
||||
0xa3, 0x2c, 0xc9, 0x07, 0x8c, 0x8a, 0x6b, 0x52, 0x29, 0x55, 0x79, 0xb4, 0x04, 0xb3, 0x2f, 0x28,
|
||||
0x55, 0x66, 0xf8, 0x59, 0x23, 0xcf, 0xc6, 0xbb, 0x6d, 0xfc, 0x77, 0x0d, 0xe6, 0x84, 0xf9, 0x53,
|
||||
0xdd, 0x01, 0x15, 0x22, 0x13, 0x82, 0xa0, 0x09, 0x06, 0x3f, 0x96, 0xb6, 0x48, 0xd8, 0xe4, 0x90,
|
||||
0xfa, 0x19, 0xb7, 0x32, 0x69, 0x8b, 0xfd, 0xf8, 0x63, 0xf4, 0x3a, 0x54, 0x5a, 0xdc, 0xcf, 0x22,
|
||||
0x01, 0xde, 0x98, 0x17, 0x74, 0xdf, 0x3a, 0xf7, 0x61, 0x86, 0x9c, 0x13, 0xcb, 0x73, 0xab, 0x45,
|
||||
0x41, 0x4e, 0x87, 0x56, 0xd7, 0xb6, 0xf0, 0x6f, 0x34, 0x80, 0xe3, 0x97, 0x96, 0x0c, 0x15, 0x35,
|
||||
0xc8, 0x37, 0xb9, 0xf0, 0xaa, 0xc6, 0x62, 0xe4, 0xf5, 0x58, 0x1b, 0x1b, 0x92, 0x0b, 0xbd, 0x03,
|
||||
0x79, 0x77, 0xd8, 0x6c, 0x12, 0x57, 0x06, 0xd5, 0xd7, 0xa2, 0x61, 0x41, 0x78, 0xb8, 0x21, 0xf9,
|
||||
0xe8, 0x92, 0xe7, 0x66, 0xb7, 0x37, 0x64, 0x21, 0x76, 0xf2, 0x12, 0xc1, 0x87, 0x7f, 0xa9, 0x41,
|
||||
0x91, 0x69, 0x99, 0x2a, 0x16, 0x2d, 0x43, 0x81, 0xe9, 0x40, 0x5a, 0x22, 0x1a, 0xcd, 0x1a, 0x01,
|
||||
0x01, 0xfd, 0x3f, 0x14, 0xe4, 0x95, 0x75, 0x85, 0x62, 0xd5, 0x78, 0xb1, 0x87, 0x03, 0x23, 0x60,
|
||||
0xc5, 0x7b, 0x70, 0x8d, 0x59, 0xa5, 0x49, 0x53, 0x21, 0x69, 0x47, 0x35, 0x59, 0xd0, 0x22, 0xc9,
|
||||
0x82, 0x0e, 0xb3, 0x83, 0xce, 0x85, 0xdb, 0x6d, 0x9a, 0x3d, 0xa1, 0x85, 0x3f, 0xc6, 0x1f, 0x00,
|
||||
0x52, 0x85, 0xa5, 0x7a, 0x19, 0xcc, 0x41, 0x71, 0xc7, 0x74, 0x3b, 0x42, 0x25, 0xfc, 0x09, 0x94,
|
||||
0xf8, 0x30, 0x95, 0x0d, 0x11, 0xe4, 0x3a, 0xa6, 0xdb, 0x61, 0x8a, 0xcf, 0x19, 0xec, 0x19, 0x5f,
|
||||
0x83, 0xf9, 0x23, 0xcb, 0x1c, 0xb8, 0x1d, 0x5b, 0x06, 0x57, 0x9a, 0x0a, 0x56, 0x02, 0x5a, 0x2a,
|
||||
0xc4, 0x87, 0x30, 0xef, 0x90, 0xbe, 0xd9, 0xb5, 0xba, 0x56, 0xfb, 0xf4, 0xec, 0xc2, 0x23, 0xae,
|
||||
0xc8, 0x14, 0xcb, 0x3e, 0x79, 0x8b, 0x52, 0xa9, 0x6a, 0x67, 0x3d, 0xfb, 0x4c, 0xb8, 0x38, 0x7b,
|
||||
0xc6, 0xbf, 0xd5, 0xa0, 0xf4, 0xb1, 0xe9, 0x35, 0xa5, 0x15, 0xd0, 0x2e, 0x94, 0x7d, 0xc7, 0x66,
|
||||
0x14, 0xa1, 0x4b, 0x24, 0xc2, 0xb3, 0x35, 0xdb, 0xc2, 0xd1, 0x65, 0x84, 0x9f, 0x6b, 0xaa, 0x04,
|
||||
0x26, 0xca, 0xb4, 0x9a, 0xa4, 0xe7, 0x8b, 0xca, 0x24, 0x8b, 0x62, 0x8c, 0xaa, 0x28, 0x95, 0xb0,
|
||||
0x35, 0x1f, 0xbc, 0xfd, 0xb8, 0x5b, 0x7e, 0xa9, 0x01, 0x1a, 0xd7, 0xe1, 0xeb, 0x26, 0xb2, 0xf7,
|
||||
0xa1, 0xec, 0x7a, 0xa6, 0xe3, 0x9d, 0x46, 0xf2, 0xe8, 0x39, 0x46, 0xf5, 0x83, 0xd3, 0x43, 0x98,
|
||||
0x1f, 0x38, 0x76, 0xdb, 0x21, 0xae, 0x7b, 0x6a, 0xd9, 0x5e, 0xf7, 0xf9, 0x05, 0x0b, 0x88, 0xb3,
|
||||
0x46, 0x59, 0x92, 0x0f, 0x18, 0x15, 0xd7, 0xa4, 0x52, 0xaa, 0xf2, 0x68, 0x09, 0x66, 0x5f, 0x50,
|
||||
0xaa, 0xcc, 0xf0, 0xb3, 0x46, 0x9e, 0x8d, 0x77, 0x5b, 0xf8, 0x6f, 0x1a, 0xcc, 0x09, 0xf3, 0xa7,
|
||||
0xba, 0x03, 0x2a, 0x44, 0x26, 0x04, 0x41, 0x13, 0x0c, 0x7e, 0x2c, 0x2d, 0x91, 0xb0, 0xc9, 0x21,
|
||||
0xf5, 0x33, 0x6e, 0x65, 0xd2, 0x12, 0xfb, 0xf1, 0xc7, 0xe8, 0x75, 0xa8, 0x34, 0xb9, 0x9f, 0x45,
|
||||
0x02, 0xbc, 0x31, 0x2f, 0xe8, 0xbe, 0x75, 0xee, 0xc3, 0x0c, 0x19, 0x11, 0xcb, 0x73, 0xab, 0x45,
|
||||
0x16, 0x14, 0xe6, 0x64, 0xd6, 0xd8, 0xa0, 0x54, 0x43, 0x4c, 0xe2, 0xff, 0x83, 0x6b, 0xfb, 0x34,
|
||||
0x91, 0x7b, 0xe2, 0x98, 0x96, 0x9a, 0x12, 0x36, 0x9b, 0xfb, 0xc2, 0x2a, 0x59, 0xaf, 0xb9, 0x8f,
|
||||
0xca, 0x90, 0xd9, 0xad, 0x8b, 0x3d, 0x64, 0x7a, 0x75, 0xfc, 0xb9, 0x06, 0x48, 0x5d, 0x97, 0xca,
|
||||
0x4c, 0x11, 0xe1, 0x12, 0x3e, 0x1b, 0xc0, 0x2f, 0xc2, 0x34, 0x71, 0x1c, 0xdb, 0x61, 0x06, 0x29,
|
||||
0x18, 0x7c, 0x80, 0xef, 0x09, 0x1d, 0x0c, 0x72, 0x6e, 0x9f, 0xf9, 0x97, 0x8d, 0x4b, 0xd3, 0x7c,
|
||||
0x55, 0xf7, 0x60, 0x21, 0xc4, 0x95, 0x2a, 0x38, 0x3d, 0x84, 0xeb, 0x4c, 0xd8, 0x1e, 0x21, 0xc3,
|
||||
0xcd, 0x7e, 0xef, 0x3c, 0x11, 0x75, 0x08, 0x37, 0xa2, 0x8c, 0xdf, 0xac, 0x8d, 0x70, 0x17, 0x66,
|
||||
0x3e, 0x64, 0x35, 0xa8, 0xa2, 0x4b, 0x8e, 0xf1, 0x22, 0xc8, 0x59, 0xe6, 0x80, 0xa7, 0xf3, 0x05,
|
||||
0x83, 0x3d, 0xb3, 0x68, 0x4e, 0x88, 0xf3, 0xcc, 0xd8, 0xe7, 0x6f, 0x8d, 0x82, 0xe1, 0x8f, 0xd1,
|
||||
0x0a, 0xad, 0x7e, 0x7b, 0xc4, 0xf2, 0xd8, 0x6c, 0x8e, 0xcd, 0x2a, 0x14, 0xbc, 0x0e, 0x15, 0x8e,
|
||||
0xb4, 0xd9, 0x6e, 0x2b, 0x6f, 0x0e, 0x5f, 0x9e, 0x16, 0x96, 0x87, 0x5f, 0xc0, 0x35, 0x85, 0x3f,
|
||||
0x95, 0x19, 0xde, 0x84, 0x19, 0x5e, 0x68, 0x8b, 0xa0, 0xb5, 0x18, 0x5e, 0xc5, 0x61, 0x0c, 0xc1,
|
||||
0x83, 0xef, 0xc3, 0x82, 0xa0, 0x90, 0x81, 0x1d, 0x77, 0x56, 0xcc, 0x3e, 0x78, 0x1f, 0x16, 0xc3,
|
||||
0x6c, 0xa9, 0xae, 0xc8, 0xa6, 0x04, 0x7d, 0x36, 0x6c, 0x2b, 0x31, 0x30, 0x7a, 0x28, 0xaa, 0xc1,
|
||||
0x32, 0x11, 0x83, 0xf9, 0x0a, 0x49, 0x11, 0xa9, 0x14, 0x5a, 0x90, 0xe6, 0xdf, 0xef, 0xb9, 0xfe,
|
||||
0x9b, 0xee, 0x33, 0x40, 0x2a, 0x31, 0xd5, 0xa1, 0xac, 0x43, 0x9e, 0x1b, 0x5c, 0x26, 0x53, 0xf1,
|
||||
0xa7, 0x22, 0x99, 0xa8, 0x42, 0x75, 0xf2, 0xdc, 0x31, 0x3b, 0x03, 0xe2, 0xc7, 0x1c, 0x9a, 0x42,
|
||||
0xa8, 0xc4, 0x54, 0x3b, 0xfe, 0xa3, 0x06, 0xa5, 0xcd, 0xbe, 0xe9, 0x0c, 0xa4, 0xf1, 0xdf, 0x87,
|
||||
0x19, 0x9e, 0x9b, 0x88, 0xfc, 0xfd, 0x41, 0x58, 0x8c, 0xca, 0xcb, 0x07, 0x9b, 0x3c, 0x93, 0x11,
|
||||
0xab, 0xe8, 0x61, 0x89, 0xfe, 0x4e, 0x3d, 0xd2, 0xef, 0xa9, 0xa3, 0xb7, 0x60, 0xda, 0xa4, 0x4b,
|
||||
0x98, 0x2f, 0x96, 0xa3, 0x59, 0x21, 0x93, 0xd6, 0xbc, 0x18, 0x12, 0x83, 0x73, 0xe1, 0xf7, 0xa0,
|
||||
0xa8, 0x20, 0xd0, 0x64, 0xf7, 0x49, 0xa3, 0x59, 0x99, 0x42, 0x25, 0x98, 0xdd, 0xdc, 0x6e, 0xee,
|
||||
0x1e, 0xf3, 0x1c, 0xb8, 0x0c, 0x50, 0x6f, 0xf8, 0xe3, 0x0c, 0xfe, 0x44, 0xac, 0x12, 0x1e, 0xae,
|
||||
0xea, 0xa3, 0x25, 0xe9, 0x93, 0xb9, 0x92, 0x3e, 0x2f, 0x61, 0x4e, 0x6c, 0x3f, 0xd5, 0x1d, 0x78,
|
||||
0x07, 0x66, 0x98, 0x3c, 0x79, 0x05, 0x96, 0x62, 0x60, 0xa5, 0x77, 0x72, 0x46, 0x3c, 0x0f, 0x73,
|
||||
0x47, 0x9e, 0xe9, 0x8d, 0x5c, 0x79, 0x05, 0xfe, 0xa0, 0x41, 0x59, 0x52, 0xd2, 0x56, 0xef, 0xb2,
|
||||
0x44, 0xe2, 0x31, 0xcf, 0x2f, 0x90, 0x6e, 0xc0, 0x4c, 0xfb, 0xf4, 0xa8, 0xf7, 0x99, 0xec, 0x62,
|
||||
0x88, 0x11, 0xa5, 0xf7, 0x39, 0x0e, 0xef, 0xca, 0x89, 0x11, 0xcd, 0xbd, 0x1d, 0xf3, 0xb9, 0xb7,
|
||||
0x6b, 0xb5, 0xc9, 0x4b, 0xf6, 0xa6, 0xcd, 0x19, 0x01, 0x81, 0xa5, 0xcb, 0xa2, 0x7b, 0xc7, 0xea,
|
||||
0x27, 0xb5, 0x9b, 0xb7, 0x00, 0xd7, 0x36, 0x47, 0x5e, 0xb7, 0x61, 0x99, 0xa7, 0x7d, 0x19, 0x04,
|
||||
0xf0, 0x22, 0x20, 0x4a, 0xac, 0xf7, 0x5c, 0x95, 0xda, 0x80, 0x05, 0x4a, 0x25, 0x96, 0xd7, 0x6b,
|
||||
0x29, 0x11, 0x43, 0x86, 0x6d, 0x2d, 0x12, 0xb6, 0x4d, 0xd7, 0x7d, 0x61, 0x3b, 0x6d, 0xb1, 0x35,
|
||||
0x7f, 0x8c, 0xeb, 0x5c, 0xf8, 0x33, 0x37, 0x14, 0x98, 0xbf, 0xae, 0x94, 0xb5, 0x40, 0xca, 0x13,
|
||||
0xe2, 0x4d, 0x90, 0x82, 0xdf, 0x80, 0xeb, 0x92, 0x53, 0xd4, 0xd0, 0x13, 0x98, 0x0f, 0xe1, 0x96,
|
||||
0x64, 0xde, 0xee, 0xd2, 0x44, 0xef, 0xa9, 0x00, 0xfc, 0x6f, 0xf5, 0xdc, 0x82, 0xaa, 0xaf, 0x27,
|
||||
0xcb, 0x41, 0xec, 0xbe, 0xaa, 0xc0, 0xc8, 0x15, 0x77, 0xa6, 0x60, 0xb0, 0x67, 0x4a, 0x73, 0xec,
|
||||
0xbe, 0xff, 0x12, 0xa4, 0xcf, 0x78, 0x1b, 0x96, 0xa4, 0x0c, 0x91, 0x1d, 0x84, 0x85, 0x8c, 0x29,
|
||||
0x14, 0x27, 0x44, 0x18, 0x8c, 0x2e, 0x9d, 0x6c, 0x76, 0x95, 0x33, 0x6c, 0x5a, 0x26, 0x53, 0x53,
|
||||
0x64, 0x5e, 0xe7, 0x37, 0x82, 0x2a, 0xa6, 0x06, 0x6d, 0x41, 0xa6, 0x02, 0x54, 0xb2, 0x38, 0x08,
|
||||
0x4a, 0x1e, 0x3b, 0x88, 0x31, 0xd1, 0xdf, 0x83, 0x15, 0x5f, 0x09, 0x6a, 0xb7, 0xa7, 0xc4, 0x19,
|
||||
0xf4, 0x5c, 0x57, 0x29, 0x02, 0xe3, 0x36, 0xfe, 0x00, 0x72, 0x43, 0x22, 0x62, 0x4a, 0x71, 0x03,
|
||||
0xad, 0xf3, 0x1e, 0xfb, 0xba, 0xb2, 0x98, 0xcd, 0xe3, 0x36, 0xdc, 0x96, 0xd2, 0xb9, 0x45, 0x63,
|
||||
0xc5, 0x47, 0x95, 0x92, 0x05, 0x02, 0x37, 0xeb, 0x78, 0x81, 0x90, 0xe5, 0x67, 0xef, 0xb7, 0xfa,
|
||||
0x3e, 0xe0, 0x86, 0x94, 0xbe, 0x95, 0xea, 0x5d, 0xb1, 0xc7, 0x6d, 0xea, 0xbb, 0x64, 0x2a, 0x61,
|
||||
0xa7, 0xb0, 0x18, 0xf6, 0xe4, 0x54, 0x61, 0x6c, 0x11, 0xa6, 0x3d, 0xfb, 0x8c, 0xc8, 0x20, 0xc6,
|
||||
0x07, 0x52, 0x61, 0xdf, 0xcd, 0x53, 0x29, 0x6c, 0x06, 0xc2, 0xd8, 0x95, 0x4c, 0xab, 0x2f, 0x3d,
|
||||
0x4d, 0x99, 0xcf, 0xf0, 0x01, 0x3e, 0x80, 0x1b, 0xd1, 0x30, 0x91, 0x4a, 0xe5, 0x63, 0x7e, 0x81,
|
||||
0xe3, 0x22, 0x49, 0x2a, 0xb9, 0x1f, 0x05, 0xc1, 0x40, 0x09, 0x28, 0xa9, 0x44, 0x1a, 0xa0, 0xc7,
|
||||
0xc5, 0x97, 0xff, 0xc5, 0x7d, 0xf5, 0xc3, 0x4d, 0x2a, 0x61, 0x6e, 0x20, 0x2c, 0xfd, 0xf1, 0x07,
|
||||
0x31, 0x22, 0x3b, 0x31, 0x46, 0x08, 0x27, 0x09, 0xa2, 0xd8, 0x37, 0x70, 0xe9, 0x04, 0x46, 0x10,
|
||||
0x40, 0xd3, 0x62, 0xd0, 0x77, 0x88, 0x8f, 0xc1, 0x06, 0xf2, 0x62, 0xab, 0x61, 0x37, 0xd5, 0x61,
|
||||
0x7c, 0x1c, 0xc4, 0xce, 0xb1, 0xc8, 0x9c, 0x4a, 0xf0, 0x27, 0xb0, 0x9a, 0x1c, 0x94, 0xd3, 0x48,
|
||||
0x7e, 0x84, 0xa1, 0xe0, 0x27, 0x94, 0xca, 0x37, 0xb5, 0x22, 0xe4, 0x0f, 0x0e, 0x8f, 0x9e, 0x6e,
|
||||
0x6e, 0x37, 0x2a, 0xda, 0xc6, 0x9f, 0xb3, 0x90, 0xd9, 0x3b, 0x46, 0xdf, 0x87, 0x69, 0xde, 0xfc,
|
||||
0x9f, 0xf0, 0x6d, 0x44, 0x9f, 0xf4, 0x19, 0x01, 0x2f, 0x7f, 0xfe, 0xa7, 0xbf, 0x7d, 0x99, 0xb9,
|
||||
0x81, 0xaf, 0xd5, 0xce, 0xdf, 0x35, 0xfb, 0xc3, 0xae, 0x59, 0x3b, 0x3b, 0xaf, 0xb1, 0x77, 0xc2,
|
||||
0x63, 0xed, 0x11, 0x3a, 0x86, 0xec, 0xd3, 0x91, 0x87, 0x12, 0x3f, 0x9c, 0xe8, 0xc9, 0x9f, 0x17,
|
||||
0xb0, 0xce, 0x24, 0x2f, 0xe2, 0x79, 0x55, 0xf2, 0x70, 0xe4, 0x51, 0xb9, 0x4d, 0x28, 0x2a, 0x5f,
|
||||
0x08, 0xd0, 0xa5, 0x9f, 0x54, 0xf4, 0xcb, 0xbf, 0x3e, 0xe0, 0x29, 0xaa, 0x6d, 0xf3, 0xa5, 0x15,
|
||||
0xd5, 0x36, 0xe8, 0x68, 0x47, 0xb5, 0x55, 0xba, 0xc8, 0xf1, 0xda, 0x7a, 0x2f, 0x2d, 0xaa, 0xad,
|
||||
0x2d, 0xbe, 0x59, 0xb4, 0x3c, 0x74, 0x3b, 0xa6, 0x05, 0xae, 0x36, 0x7b, 0xf5, 0xd5, 0x64, 0x06,
|
||||
0x81, 0x74, 0x87, 0x21, 0xdd, 0xc4, 0x37, 0x54, 0xa4, 0x96, 0xcf, 0xf7, 0x58, 0x7b, 0xb4, 0xd1,
|
||||
0x85, 0x69, 0xd6, 0x29, 0x43, 0x27, 0xf2, 0x41, 0x8f, 0xe9, 0x23, 0x26, 0x9c, 0x6f, 0xa8, 0xc7,
|
||||
0x86, 0x97, 0x18, 0xda, 0x02, 0x2e, 0xfb, 0x68, 0xac, 0x59, 0xf6, 0x58, 0x7b, 0xb4, 0xa6, 0xbd,
|
||||
0xad, 0x6d, 0xfc, 0x2b, 0x03, 0xd3, 0xac, 0xa5, 0x82, 0x86, 0x00, 0x41, 0xef, 0x29, 0xba, 0xcf,
|
||||
0xb1, 0x6e, 0x56, 0x74, 0x9f, 0xe3, 0x6d, 0x2b, 0x7c, 0x9b, 0x21, 0x2f, 0xe1, 0x45, 0x1f, 0x99,
|
||||
0x7d, 0xdc, 0xac, 0x75, 0x28, 0x17, 0x35, 0xeb, 0x0b, 0x28, 0x2a, 0x3d, 0x24, 0x14, 0x27, 0x31,
|
||||
0xd4, 0x84, 0x8a, 0x5e, 0x82, 0x98, 0x06, 0x14, 0xbe, 0xcb, 0x40, 0x6f, 0xe1, 0xaa, 0x6a, 0x5c,
|
||||
0x8e, 0xeb, 0x30, 0x4e, 0x0a, 0xfc, 0x13, 0x0d, 0xca, 0xe1, 0x3e, 0x12, 0xba, 0x1b, 0x23, 0x3a,
|
||||
0xda, 0x8e, 0xd2, 0xef, 0x4d, 0x66, 0x4a, 0x54, 0x81, 0xe3, 0x9f, 0x11, 0x32, 0x34, 0x29, 0xa7,
|
||||
0xb4, 0xfd, 0xbf, 0xb3, 0x90, 0xdf, 0xe6, 0x3f, 0x7f, 0x40, 0x1e, 0x14, 0xfc, 0x6e, 0x0e, 0x5a,
|
||||
0x89, 0xab, 0xf4, 0x83, 0x34, 0x58, 0xbf, 0x9d, 0x38, 0x2f, 0x54, 0x78, 0xc0, 0x54, 0x58, 0xc5,
|
||||
0x37, 0x7d, 0x15, 0xc4, 0xcf, 0x2c, 0x6a, 0xbc, 0xa0, 0xad, 0x99, 0xed, 0x36, 0x35, 0xc4, 0x8f,
|
||||
0x35, 0x28, 0xa9, 0x4d, 0x1a, 0x74, 0x27, 0xb6, 0xc7, 0xa0, 0xf6, 0x79, 0x74, 0x3c, 0x89, 0x45,
|
||||
0xe0, 0xbf, 0xce, 0xf0, 0xef, 0xe2, 0x95, 0x24, 0x7c, 0x87, 0xf1, 0x87, 0x55, 0xe0, 0x6d, 0x99,
|
||||
0x78, 0x15, 0x42, 0x5d, 0x9f, 0x78, 0x15, 0xc2, 0x5d, 0x9d, 0xcb, 0x55, 0x18, 0x31, 0x7e, 0xaa,
|
||||
0xc2, 0x4b, 0x80, 0xa0, 0x6b, 0x83, 0x62, 0x8d, 0xab, 0x14, 0x06, 0xd1, 0x9b, 0x3f, 0xde, 0xf0,
|
||||
0xc1, 0x0f, 0x19, 0xf6, 0x1d, 0xbc, 0x9c, 0x84, 0xdd, 0xef, 0xb9, 0xd4, 0x03, 0x36, 0x7e, 0x97,
|
||||
0x83, 0xe2, 0x87, 0x66, 0xcf, 0xf2, 0x88, 0x65, 0x5a, 0x2d, 0x82, 0x3a, 0x30, 0xcd, 0x22, 0x7f,
|
||||
0xd4, 0xdd, 0xd5, 0x56, 0x4a, 0xd4, 0xdd, 0x43, 0x7d, 0x06, 0x7c, 0x9f, 0x41, 0xdf, 0xc6, 0xba,
|
||||
0x0f, 0x3d, 0x08, 0xe4, 0xd7, 0x58, 0x8f, 0x80, 0x6e, 0xf9, 0x0c, 0x66, 0x78, 0x4f, 0x00, 0x45,
|
||||
0xa4, 0x85, 0x7a, 0x07, 0xfa, 0x72, 0xfc, 0x64, 0xe2, 0x2d, 0x53, 0xb1, 0x5c, 0xc6, 0x4c, 0xc1,
|
||||
0x7e, 0x00, 0x10, 0x34, 0xa1, 0xa2, 0xf6, 0x1d, 0xeb, 0x59, 0xe9, 0xab, 0xc9, 0x0c, 0x02, 0xf8,
|
||||
0x11, 0x03, 0xbe, 0x87, 0x6f, 0xc7, 0x02, 0xb7, 0xfd, 0x05, 0x14, 0xbc, 0x05, 0xb9, 0x1d, 0xd3,
|
||||
0xed, 0xa2, 0x48, 0xe8, 0x57, 0x3e, 0x86, 0xe9, 0x7a, 0xdc, 0x94, 0x80, 0xba, 0xc7, 0xa0, 0x56,
|
||||
0xf0, 0x52, 0x2c, 0x54, 0xd7, 0x74, 0x69, 0x24, 0x45, 0x23, 0x98, 0x95, 0x1f, 0xb8, 0xd0, 0xad,
|
||||
0x88, 0xcd, 0xc2, 0x1f, 0xc3, 0xf4, 0x95, 0xa4, 0x69, 0x01, 0xb8, 0xc6, 0x00, 0x31, 0xbe, 0x15,
|
||||
0x6f, 0x54, 0xc1, 0xfe, 0x58, 0x7b, 0xf4, 0xb6, 0xb6, 0xf1, 0xb3, 0x0a, 0xe4, 0x68, 0x0e, 0x42,
|
||||
0x63, 0x77, 0x50, 0xba, 0x45, 0x2d, 0x3c, 0xd6, 0x30, 0x89, 0x5a, 0x78, 0xbc, 0xea, 0x8b, 0x89,
|
||||
0xdd, 0xec, 0x47, 0x60, 0x84, 0x71, 0xd1, 0x1d, 0x7b, 0x50, 0x54, 0x0a, 0x3c, 0x14, 0x23, 0x31,
|
||||
0xdc, 0x8e, 0x89, 0xc6, 0xee, 0x98, 0xea, 0x10, 0xaf, 0x32, 0x50, 0x1d, 0x5f, 0x0f, 0x83, 0xb6,
|
||||
0x39, 0x1b, 0x45, 0xfd, 0x21, 0x94, 0xd4, 0x4a, 0x10, 0xc5, 0x08, 0x8d, 0xf4, 0x7b, 0xa2, 0xb1,
|
||||
0x22, 0xae, 0x90, 0x8c, 0x71, 0x1a, 0xff, 0x27, 0x6f, 0x92, 0x97, 0xa2, 0x7f, 0x0a, 0x79, 0x51,
|
||||
0x1f, 0xc6, 0xed, 0x37, 0xdc, 0x21, 0x8a, 0xdb, 0x6f, 0xa4, 0xb8, 0x8c, 0x49, 0x04, 0x18, 0x2c,
|
||||
0xcd, 0x83, 0x65, 0x80, 0x16, 0x90, 0x4f, 0x88, 0x97, 0x04, 0x19, 0xf4, 0x3c, 0x92, 0x20, 0x95,
|
||||
0x1a, 0x64, 0x22, 0x64, 0x87, 0x78, 0xe2, 0x2e, 0xcb, 0x04, 0x1f, 0x25, 0x48, 0x54, 0xa3, 0x21,
|
||||
0x9e, 0xc4, 0x22, 0x50, 0x31, 0x43, 0x5d, 0xc6, 0xaf, 0xc5, 0xa0, 0x8a, 0x50, 0x88, 0x7e, 0x04,
|
||||
0x10, 0x14, 0xb3, 0xd1, 0xd7, 0x71, 0x6c, 0x47, 0x2c, 0xfa, 0x3a, 0x8e, 0xaf, 0x87, 0x63, 0x3c,
|
||||
0x38, 0x00, 0xe7, 0x3f, 0x73, 0xa1, 0xf0, 0x3f, 0xd7, 0x00, 0x8d, 0x17, 0xbf, 0xe8, 0x8d, 0x78,
|
||||
0x88, 0xd8, 0x66, 0x9b, 0xfe, 0xe6, 0xd5, 0x98, 0x13, 0xa3, 0x67, 0xa0, 0x57, 0x8b, 0x2d, 0x19,
|
||||
0xbe, 0xa0, 0x9a, 0x7d, 0xa1, 0xc1, 0x5c, 0xa8, 0x7c, 0x46, 0x0f, 0x12, 0xce, 0x39, 0xd2, 0xb0,
|
||||
0xd3, 0x1f, 0x5e, 0xca, 0x97, 0x98, 0xb1, 0x28, 0xb7, 0x42, 0x66, 0x6b, 0x3f, 0xd5, 0xa0, 0x1c,
|
||||
0xae, 0xb9, 0x51, 0x02, 0xc0, 0x58, 0xd7, 0x4f, 0x5f, 0xbb, 0x9c, 0xf1, 0x0a, 0xa7, 0x15, 0x24,
|
||||
0x70, 0x9f, 0x42, 0x5e, 0x94, 0xea, 0x71, 0x6e, 0x11, 0x6e, 0x1a, 0xc6, 0xb9, 0x45, 0xa4, 0xce,
|
||||
0x4f, 0x72, 0x0b, 0x5a, 0xf5, 0x2a, 0x9e, 0x28, 0x0a, 0xfa, 0x24, 0xc8, 0xc9, 0x9e, 0x18, 0xe9,
|
||||
0x06, 0x4c, 0x84, 0x0c, 0x3c, 0x51, 0x96, 0xf3, 0x28, 0x41, 0xe2, 0x25, 0x9e, 0x18, 0xed, 0x06,
|
||||
0x24, 0x79, 0x22, 0x43, 0x55, 0x3c, 0x31, 0xa8, 0xbe, 0xe3, 0x3c, 0x71, 0xac, 0x25, 0x1a, 0xe7,
|
||||
0x89, 0xe3, 0x05, 0x7c, 0xd2, 0xd9, 0x32, 0xf0, 0x90, 0x27, 0x2e, 0xc4, 0x54, 0xeb, 0xe8, 0xcd,
|
||||
0x04, 0x9b, 0xc6, 0xb6, 0x5b, 0xf5, 0xb7, 0xae, 0xc8, 0x3d, 0xd9, 0x03, 0xf8, 0x69, 0x48, 0x0f,
|
||||
0xf8, 0xb5, 0x06, 0x8b, 0x71, 0xe5, 0x3e, 0x4a, 0x00, 0x4b, 0xe8, 0xd5, 0xea, 0xeb, 0x57, 0x65,
|
||||
0xbf, 0x82, 0xdd, 0x7c, 0x9f, 0xd8, 0xaa, 0xfc, 0xfe, 0xd5, 0x8a, 0xf6, 0xd5, 0xab, 0x15, 0xed,
|
||||
0x2f, 0xaf, 0x56, 0xb4, 0x5f, 0xfc, 0x75, 0x65, 0xea, 0x74, 0x86, 0xfd, 0x12, 0xfb, 0xdd, 0xff,
|
||||
0x04, 0x00, 0x00, 0xff, 0xff, 0xd2, 0xe6, 0x20, 0x1a, 0x10, 0x2e, 0x00, 0x00,
|
||||
0x91, 0x7b, 0xe2, 0x98, 0x96, 0x9a, 0x12, 0x1e, 0x1f, 0xef, 0x0b, 0xab, 0x64, 0xbd, 0xe3, 0x7d,
|
||||
0x54, 0x86, 0xcc, 0x6e, 0x5d, 0xec, 0x21, 0xd3, 0xad, 0xe3, 0xcf, 0x35, 0x40, 0xea, 0xba, 0x54,
|
||||
0x66, 0x8a, 0x08, 0x97, 0xf0, 0xd9, 0x00, 0x7e, 0x11, 0xa6, 0x89, 0xe3, 0xd8, 0x0e, 0x33, 0x48,
|
||||
0xc1, 0xe0, 0x03, 0x7c, 0x4f, 0xe8, 0x60, 0x90, 0x91, 0x7d, 0xee, 0x5f, 0x36, 0x2e, 0x4d, 0xf3,
|
||||
0x55, 0xdd, 0x83, 0x85, 0x10, 0x57, 0xaa, 0xe0, 0xf4, 0x10, 0xae, 0x33, 0x61, 0x7b, 0x84, 0x0c,
|
||||
0x36, 0x7b, 0xdd, 0x51, 0x22, 0xea, 0x00, 0x6e, 0x44, 0x19, 0xbf, 0x59, 0x1b, 0xe1, 0x0e, 0xcc,
|
||||
0x7c, 0xc8, 0x6a, 0x50, 0x45, 0x97, 0x1c, 0xe3, 0x45, 0x90, 0xb3, 0xcc, 0x3e, 0x4f, 0xe7, 0x0b,
|
||||
0x06, 0x7b, 0x66, 0xd1, 0x9c, 0x10, 0xe7, 0x99, 0xb1, 0xcf, 0xdf, 0x1a, 0x05, 0xc3, 0x1f, 0xa3,
|
||||
0x15, 0x5a, 0xfd, 0x76, 0x89, 0xe5, 0xb1, 0xd9, 0x1c, 0x9b, 0x55, 0x28, 0x78, 0x1d, 0x2a, 0x1c,
|
||||
0x69, 0xb3, 0xd5, 0x52, 0xde, 0x1c, 0xbe, 0x3c, 0x2d, 0x2c, 0x0f, 0xbf, 0x80, 0x6b, 0x0a, 0x7f,
|
||||
0x2a, 0x33, 0xbc, 0x09, 0x33, 0xbc, 0xd0, 0x16, 0x41, 0x6b, 0x31, 0xbc, 0x8a, 0xc3, 0x18, 0x82,
|
||||
0x07, 0xdf, 0x87, 0x05, 0x41, 0x21, 0x7d, 0x3b, 0xee, 0xac, 0x98, 0x7d, 0xf0, 0x3e, 0x2c, 0x86,
|
||||
0xd9, 0x52, 0x5d, 0x91, 0x4d, 0x09, 0xfa, 0x6c, 0xd0, 0x52, 0x62, 0x60, 0xf4, 0x50, 0x54, 0x83,
|
||||
0x65, 0x22, 0x06, 0xf3, 0x15, 0x92, 0x22, 0x52, 0x29, 0xb4, 0x20, 0xcd, 0xbf, 0xdf, 0x75, 0xfd,
|
||||
0x37, 0xdd, 0x67, 0x80, 0x54, 0x62, 0xaa, 0x43, 0x59, 0x87, 0x3c, 0x37, 0xb8, 0x4c, 0xa6, 0xe2,
|
||||
0x4f, 0x45, 0x32, 0x51, 0x85, 0xea, 0xe4, 0xb9, 0x63, 0xb6, 0xfb, 0xc4, 0x8f, 0x39, 0x34, 0x85,
|
||||
0x50, 0x89, 0xa9, 0x76, 0xfc, 0x47, 0x0d, 0x4a, 0x9b, 0x3d, 0xd3, 0xe9, 0x4b, 0xe3, 0xbf, 0x0f,
|
||||
0x33, 0x3c, 0x37, 0x11, 0xf9, 0xfb, 0x83, 0xb0, 0x18, 0x95, 0x97, 0x0f, 0x36, 0x79, 0x26, 0x23,
|
||||
0x56, 0xd1, 0xc3, 0x12, 0xfd, 0x9d, 0x7a, 0xa4, 0xdf, 0x53, 0x47, 0x6f, 0xc1, 0xb4, 0x49, 0x97,
|
||||
0x30, 0x5f, 0x2c, 0x47, 0xb3, 0x42, 0x26, 0xed, 0xf8, 0x62, 0x40, 0x0c, 0xce, 0x85, 0xdf, 0x83,
|
||||
0xa2, 0x82, 0x40, 0x93, 0xdd, 0x27, 0x8d, 0xe3, 0xca, 0x14, 0x2a, 0xc1, 0xec, 0xe6, 0xf6, 0xf1,
|
||||
0xee, 0x09, 0xcf, 0x81, 0xcb, 0x00, 0xf5, 0x86, 0x3f, 0xce, 0xe0, 0x4f, 0xc4, 0x2a, 0xe1, 0xe1,
|
||||
0xaa, 0x3e, 0x5a, 0x92, 0x3e, 0x99, 0x2b, 0xe9, 0xf3, 0x12, 0xe6, 0xc4, 0xf6, 0x53, 0xdd, 0x81,
|
||||
0x77, 0x60, 0x86, 0xc9, 0x93, 0x57, 0x60, 0x29, 0x06, 0x56, 0x7a, 0x27, 0x67, 0xc4, 0xf3, 0x30,
|
||||
0x77, 0xe4, 0x99, 0xde, 0xd0, 0x95, 0x57, 0xe0, 0x0f, 0x1a, 0x94, 0x25, 0x25, 0x6d, 0xf5, 0x2e,
|
||||
0x4b, 0x24, 0x1e, 0xf3, 0xfc, 0x02, 0xe9, 0x06, 0xcc, 0xb4, 0xce, 0x8e, 0xba, 0x9f, 0xc9, 0x2e,
|
||||
0x86, 0x18, 0x51, 0x7a, 0x8f, 0xe3, 0xf0, 0xae, 0x9c, 0x18, 0xd1, 0xdc, 0xdb, 0x31, 0x9f, 0x7b,
|
||||
0xbb, 0x56, 0x8b, 0xbc, 0x64, 0x6f, 0xda, 0x9c, 0x11, 0x10, 0x58, 0xba, 0x2c, 0xba, 0x77, 0xac,
|
||||
0x7e, 0x52, 0xbb, 0x79, 0x0b, 0x70, 0x6d, 0x73, 0xe8, 0x75, 0x1a, 0x96, 0x79, 0xd6, 0x93, 0x41,
|
||||
0x00, 0x2f, 0x02, 0xa2, 0xc4, 0x7a, 0xd7, 0x55, 0xa9, 0x0d, 0x58, 0xa0, 0x54, 0x62, 0x79, 0xdd,
|
||||
0xa6, 0x12, 0x31, 0x64, 0xd8, 0xd6, 0x22, 0x61, 0xdb, 0x74, 0xdd, 0x17, 0xb6, 0xd3, 0x12, 0x5b,
|
||||
0xf3, 0xc7, 0xb8, 0xce, 0x85, 0x3f, 0x73, 0x43, 0x81, 0xf9, 0xeb, 0x4a, 0x59, 0x0b, 0xa4, 0x3c,
|
||||
0x21, 0xde, 0x04, 0x29, 0xf8, 0x0d, 0xb8, 0x2e, 0x39, 0x45, 0x0d, 0x3d, 0x81, 0xf9, 0x10, 0x6e,
|
||||
0x49, 0xe6, 0xed, 0x0e, 0x4d, 0xf4, 0x9e, 0x0a, 0xc0, 0xff, 0x56, 0xcf, 0x2d, 0xa8, 0xfa, 0x7a,
|
||||
0xb2, 0x1c, 0xc4, 0xee, 0xa9, 0x0a, 0x0c, 0x5d, 0x71, 0x67, 0x0a, 0x06, 0x7b, 0xa6, 0x34, 0xc7,
|
||||
0xee, 0xf9, 0x2f, 0x41, 0xfa, 0x8c, 0xb7, 0x61, 0x49, 0xca, 0x10, 0xd9, 0x41, 0x58, 0xc8, 0x98,
|
||||
0x42, 0x71, 0x42, 0x84, 0xc1, 0xe8, 0xd2, 0xc9, 0x66, 0x57, 0x39, 0xc3, 0xa6, 0x65, 0x32, 0x35,
|
||||
0x45, 0xe6, 0x75, 0x7e, 0x23, 0xa8, 0x62, 0x6a, 0xd0, 0x16, 0x64, 0x2a, 0x40, 0x25, 0x8b, 0x83,
|
||||
0xa0, 0xe4, 0xb1, 0x83, 0x18, 0x13, 0xfd, 0x3d, 0x58, 0xf1, 0x95, 0xa0, 0x76, 0x7b, 0x4a, 0x9c,
|
||||
0x7e, 0xd7, 0x75, 0x95, 0x22, 0x30, 0x6e, 0xe3, 0x0f, 0x20, 0x37, 0x20, 0x22, 0xa6, 0x14, 0x37,
|
||||
0xd0, 0x3a, 0xef, 0xb1, 0xaf, 0x2b, 0x8b, 0xd9, 0x3c, 0x6e, 0xc1, 0x6d, 0x29, 0x9d, 0x5b, 0x34,
|
||||
0x56, 0x7c, 0x54, 0x29, 0x59, 0x20, 0x70, 0xb3, 0x8e, 0x17, 0x08, 0x59, 0x7e, 0xf6, 0x7e, 0xab,
|
||||
0xef, 0x03, 0x6e, 0x48, 0xe9, 0x5b, 0xa9, 0xde, 0x15, 0x7b, 0xdc, 0xa6, 0xbe, 0x4b, 0xa6, 0x12,
|
||||
0x76, 0x06, 0x8b, 0x61, 0x4f, 0x4e, 0x15, 0xc6, 0x16, 0x61, 0xda, 0xb3, 0xcf, 0x89, 0x0c, 0x62,
|
||||
0x7c, 0x20, 0x15, 0xf6, 0xdd, 0x3c, 0x95, 0xc2, 0x66, 0x20, 0x8c, 0x5d, 0xc9, 0xb4, 0xfa, 0xd2,
|
||||
0xd3, 0x94, 0xf9, 0x0c, 0x1f, 0xe0, 0x03, 0xb8, 0x11, 0x0d, 0x13, 0xa9, 0x54, 0x3e, 0xe1, 0x17,
|
||||
0x38, 0x2e, 0x92, 0xa4, 0x92, 0xfb, 0x51, 0x10, 0x0c, 0x94, 0x80, 0x92, 0x4a, 0xa4, 0x01, 0x7a,
|
||||
0x5c, 0x7c, 0xf9, 0x5f, 0xdc, 0x57, 0x3f, 0xdc, 0xa4, 0x12, 0xe6, 0x06, 0xc2, 0xd2, 0x1f, 0x7f,
|
||||
0x10, 0x23, 0xb2, 0x13, 0x63, 0x84, 0x70, 0x92, 0x20, 0x8a, 0x7d, 0x03, 0x97, 0x4e, 0x60, 0x04,
|
||||
0x01, 0x34, 0x2d, 0x06, 0x7d, 0x87, 0xf8, 0x18, 0x6c, 0x20, 0x2f, 0xb6, 0x1a, 0x76, 0x53, 0x1d,
|
||||
0xc6, 0xc7, 0x41, 0xec, 0x1c, 0x8b, 0xcc, 0xa9, 0x04, 0x7f, 0x02, 0xab, 0xc9, 0x41, 0x39, 0x8d,
|
||||
0xe4, 0x47, 0x18, 0x0a, 0x7e, 0x42, 0xa9, 0x7c, 0x53, 0x2b, 0x42, 0xfe, 0xe0, 0xf0, 0xe8, 0xe9,
|
||||
0xe6, 0x76, 0xa3, 0xa2, 0x6d, 0xfc, 0x2b, 0x0b, 0x99, 0xbd, 0x13, 0xf4, 0x7d, 0x98, 0xe6, 0xcd,
|
||||
0xff, 0x09, 0xdf, 0x46, 0xf4, 0x49, 0x9f, 0x11, 0xf0, 0xf2, 0xe7, 0x7f, 0xfa, 0xeb, 0x97, 0x99,
|
||||
0x1b, 0xf8, 0x5a, 0x6d, 0xf4, 0xae, 0xd9, 0x1b, 0x74, 0xcc, 0xda, 0xf9, 0xa8, 0xc6, 0xde, 0x09,
|
||||
0x8f, 0xb5, 0x47, 0xe8, 0x04, 0xb2, 0x4f, 0x87, 0x1e, 0x4a, 0xfc, 0x70, 0xa2, 0x27, 0x7f, 0x5e,
|
||||
0xc0, 0x3a, 0x93, 0xbc, 0x88, 0xe7, 0x55, 0xc9, 0x83, 0xa1, 0x47, 0xe5, 0x8e, 0xa0, 0xa8, 0x7c,
|
||||
0x21, 0x40, 0x97, 0x7e, 0x52, 0xd1, 0x2f, 0xff, 0xfa, 0x80, 0x31, 0xc3, 0x5b, 0xc6, 0xaf, 0xa9,
|
||||
0x78, 0xfc, 0x43, 0x86, 0xba, 0x9f, 0xe3, 0x97, 0x56, 0x74, 0x3f, 0x41, 0xcf, 0x3b, 0xba, 0x1f,
|
||||
0xa5, 0xcf, 0x1c, 0xbf, 0x1f, 0xef, 0xa5, 0x45, 0xe5, 0xda, 0xe2, 0xab, 0x46, 0xd3, 0x43, 0xb7,
|
||||
0x63, 0x9a, 0xe4, 0x6a, 0x3b, 0x58, 0x5f, 0x4d, 0x66, 0x10, 0x48, 0x77, 0x18, 0xd2, 0x4d, 0x7c,
|
||||
0x43, 0x45, 0x6a, 0xfa, 0x7c, 0x8f, 0xb5, 0x47, 0x1b, 0x1d, 0x98, 0x66, 0xbd, 0x34, 0x74, 0x2a,
|
||||
0x1f, 0xf4, 0x98, 0x4e, 0x63, 0xc2, 0x0d, 0x08, 0x75, 0xe1, 0xf0, 0x12, 0x43, 0x5b, 0xc0, 0x65,
|
||||
0x1f, 0x8d, 0xb5, 0xd3, 0x1e, 0x6b, 0x8f, 0xd6, 0xb4, 0xb7, 0xb5, 0x8d, 0x7f, 0x66, 0x60, 0x9a,
|
||||
0x35, 0x5d, 0xd0, 0x00, 0x20, 0xe8, 0x4e, 0x45, 0xf7, 0x39, 0xd6, 0xef, 0x8a, 0xee, 0x73, 0xbc,
|
||||
0xb1, 0x85, 0x6f, 0x33, 0xe4, 0x25, 0xbc, 0xe8, 0x23, 0xb3, 0xcf, 0x9f, 0xb5, 0x36, 0xe5, 0xa2,
|
||||
0x66, 0x7d, 0x01, 0x45, 0xa5, 0xcb, 0x84, 0xe2, 0x24, 0x86, 0xda, 0x54, 0xd1, 0x6b, 0x12, 0xd3,
|
||||
0xa2, 0xc2, 0x77, 0x19, 0xe8, 0x2d, 0x5c, 0x55, 0x8d, 0xcb, 0x71, 0x1d, 0xc6, 0x49, 0x81, 0x7f,
|
||||
0xa2, 0x41, 0x39, 0xdc, 0x69, 0x42, 0x77, 0x63, 0x44, 0x47, 0x1b, 0x56, 0xfa, 0xbd, 0xc9, 0x4c,
|
||||
0x89, 0x2a, 0x70, 0xfc, 0x73, 0x42, 0x06, 0x26, 0xe5, 0x94, 0xb6, 0xff, 0x77, 0x16, 0xf2, 0xdb,
|
||||
0xfc, 0x07, 0x12, 0xc8, 0x83, 0x82, 0xdf, 0xef, 0x41, 0x2b, 0x71, 0xbd, 0x80, 0x20, 0x51, 0xd6,
|
||||
0x6f, 0x27, 0xce, 0x0b, 0x15, 0x1e, 0x30, 0x15, 0x56, 0xf1, 0x4d, 0x5f, 0x05, 0xf1, 0x43, 0x8c,
|
||||
0x1a, 0x2f, 0x79, 0x6b, 0x66, 0xab, 0x45, 0x0d, 0xf1, 0x63, 0x0d, 0x4a, 0x6a, 0x1b, 0x07, 0xdd,
|
||||
0x89, 0xed, 0x42, 0xa8, 0x9d, 0x20, 0x1d, 0x4f, 0x62, 0x11, 0xf8, 0xaf, 0x33, 0xfc, 0xbb, 0x78,
|
||||
0x25, 0x09, 0xdf, 0x61, 0xfc, 0x61, 0x15, 0x78, 0xe3, 0x26, 0x5e, 0x85, 0x50, 0x5f, 0x28, 0x5e,
|
||||
0x85, 0x70, 0xdf, 0xe7, 0x72, 0x15, 0x86, 0x8c, 0x9f, 0xaa, 0xf0, 0x12, 0x20, 0xe8, 0xeb, 0xa0,
|
||||
0x58, 0xe3, 0x2a, 0xa5, 0x43, 0xf4, 0xe6, 0x8f, 0xb7, 0x84, 0xf0, 0x43, 0x86, 0x7d, 0x07, 0x2f,
|
||||
0x27, 0x61, 0xf7, 0xba, 0x2e, 0xf5, 0x80, 0x8d, 0xdf, 0xe5, 0xa0, 0xf8, 0xa1, 0xd9, 0xb5, 0x3c,
|
||||
0x62, 0x99, 0x56, 0x93, 0xa0, 0x36, 0x4c, 0xb3, 0x77, 0x43, 0xd4, 0xdd, 0xd5, 0x66, 0x4b, 0xd4,
|
||||
0xdd, 0x43, 0x9d, 0x08, 0x7c, 0x9f, 0x41, 0xdf, 0xc6, 0xba, 0x0f, 0xdd, 0x0f, 0xe4, 0xd7, 0x58,
|
||||
0x17, 0x81, 0x6e, 0xf9, 0x1c, 0x66, 0x78, 0xd7, 0x00, 0x45, 0xa4, 0x85, 0xba, 0x0b, 0xfa, 0x72,
|
||||
0xfc, 0x64, 0xe2, 0x2d, 0x53, 0xb1, 0x5c, 0xc6, 0x4c, 0xc1, 0x7e, 0x00, 0x10, 0xb4, 0xa9, 0xa2,
|
||||
0xf6, 0x1d, 0xeb, 0x6a, 0xe9, 0xab, 0xc9, 0x0c, 0x02, 0xf8, 0x11, 0x03, 0xbe, 0x87, 0x6f, 0xc7,
|
||||
0x02, 0xb7, 0xfc, 0x05, 0x14, 0xbc, 0x09, 0xb9, 0x1d, 0xd3, 0xed, 0xa0, 0x48, 0xe8, 0x57, 0x3e,
|
||||
0x97, 0xe9, 0x7a, 0xdc, 0x94, 0x80, 0xba, 0xc7, 0xa0, 0x56, 0xf0, 0x52, 0x2c, 0x54, 0xc7, 0x74,
|
||||
0x69, 0x24, 0x45, 0x43, 0x98, 0x95, 0x9f, 0xc0, 0xd0, 0xad, 0x88, 0xcd, 0xc2, 0x9f, 0xcb, 0xf4,
|
||||
0x95, 0xa4, 0x69, 0x01, 0xb8, 0xc6, 0x00, 0x31, 0xbe, 0x15, 0x6f, 0x54, 0xc1, 0xfe, 0x58, 0x7b,
|
||||
0xf4, 0xb6, 0xb6, 0xf1, 0xb3, 0x0a, 0xe4, 0x68, 0x96, 0x42, 0x63, 0x77, 0x50, 0xdc, 0x45, 0x2d,
|
||||
0x3c, 0xd6, 0x52, 0x89, 0x5a, 0x78, 0xbc, 0x2e, 0x8c, 0x89, 0xdd, 0xec, 0x67, 0x62, 0x84, 0x71,
|
||||
0xd1, 0x1d, 0x7b, 0x50, 0x54, 0x4a, 0x40, 0x14, 0x23, 0x31, 0xdc, 0xb0, 0x89, 0xc6, 0xee, 0x98,
|
||||
0xfa, 0x11, 0xaf, 0x32, 0x50, 0x1d, 0x5f, 0x0f, 0x83, 0xb6, 0x38, 0x1b, 0x45, 0xfd, 0x21, 0x94,
|
||||
0xd4, 0x5a, 0x11, 0xc5, 0x08, 0x8d, 0x74, 0x84, 0xa2, 0xb1, 0x22, 0xae, 0xd4, 0x8c, 0x71, 0x1a,
|
||||
0xff, 0x47, 0x71, 0x92, 0x97, 0xa2, 0x7f, 0x0a, 0x79, 0x51, 0x41, 0xc6, 0xed, 0x37, 0xdc, 0x43,
|
||||
0x8a, 0xdb, 0x6f, 0xa4, 0xfc, 0x8c, 0x49, 0x04, 0x18, 0x2c, 0xcd, 0x94, 0x65, 0x80, 0x16, 0x90,
|
||||
0x4f, 0x88, 0x97, 0x04, 0x19, 0x74, 0x45, 0x92, 0x20, 0x95, 0x2a, 0x65, 0x22, 0x64, 0x9b, 0x78,
|
||||
0xe2, 0x2e, 0xcb, 0x12, 0x00, 0x25, 0x48, 0x54, 0xa3, 0x21, 0x9e, 0xc4, 0x92, 0x98, 0xbb, 0x05,
|
||||
0xa8, 0x22, 0x14, 0xa2, 0x1f, 0x01, 0x04, 0xe5, 0x6e, 0xf4, 0x75, 0x1c, 0xdb, 0x33, 0x8b, 0xbe,
|
||||
0x8e, 0xe3, 0x2b, 0xe6, 0x18, 0x0f, 0x0e, 0xc0, 0x79, 0xfe, 0x48, 0xe1, 0x7f, 0xae, 0x01, 0x1a,
|
||||
0x2f, 0x8f, 0xd1, 0x1b, 0xf1, 0x10, 0xb1, 0xed, 0x38, 0xfd, 0xcd, 0xab, 0x31, 0x27, 0x46, 0xcf,
|
||||
0x40, 0xaf, 0x26, 0x5b, 0x32, 0x78, 0x41, 0x35, 0xfb, 0x42, 0x83, 0xb9, 0x50, 0x81, 0x8d, 0x1e,
|
||||
0x24, 0x9c, 0x73, 0xa4, 0xa5, 0xa7, 0x3f, 0xbc, 0x94, 0x2f, 0x31, 0x63, 0x51, 0x6e, 0x85, 0xcc,
|
||||
0xd6, 0x7e, 0xaa, 0x41, 0x39, 0x5c, 0x95, 0xa3, 0x04, 0x80, 0xb1, 0xbe, 0xa0, 0xbe, 0x76, 0x39,
|
||||
0xe3, 0x15, 0x4e, 0x2b, 0x48, 0xe0, 0x3e, 0x85, 0xbc, 0x28, 0xe6, 0xe3, 0xdc, 0x22, 0xdc, 0x56,
|
||||
0x8c, 0x73, 0x8b, 0x48, 0x27, 0x20, 0xc9, 0x2d, 0x68, 0x5d, 0xac, 0x78, 0xa2, 0x28, 0xf9, 0x93,
|
||||
0x20, 0x27, 0x7b, 0x62, 0xa4, 0x5f, 0x30, 0x11, 0x32, 0xf0, 0x44, 0x59, 0xf0, 0xa3, 0x04, 0x89,
|
||||
0x97, 0x78, 0x62, 0xb4, 0x5f, 0x90, 0xe4, 0x89, 0x0c, 0x55, 0xf1, 0xc4, 0xa0, 0x3e, 0x8f, 0xf3,
|
||||
0xc4, 0xb1, 0xa6, 0x69, 0x9c, 0x27, 0x8e, 0x97, 0xf8, 0x49, 0x67, 0xcb, 0xc0, 0x43, 0x9e, 0xb8,
|
||||
0x10, 0x53, 0xcf, 0xa3, 0x37, 0x13, 0x6c, 0x1a, 0xdb, 0x90, 0xd5, 0xdf, 0xba, 0x22, 0xf7, 0x64,
|
||||
0x0f, 0xe0, 0xa7, 0x21, 0x3d, 0xe0, 0xd7, 0x1a, 0x2c, 0xc6, 0x35, 0x04, 0x50, 0x02, 0x58, 0x42,
|
||||
0x37, 0x57, 0x5f, 0xbf, 0x2a, 0xfb, 0x15, 0xec, 0xe6, 0xfb, 0xc4, 0x56, 0xe5, 0xf7, 0xaf, 0x56,
|
||||
0xb4, 0xaf, 0x5e, 0xad, 0x68, 0x7f, 0x7e, 0xb5, 0xa2, 0xfd, 0xe2, 0x2f, 0x2b, 0x53, 0x67, 0x33,
|
||||
0xec, 0xb7, 0xda, 0xef, 0xfe, 0x27, 0x00, 0x00, 0xff, 0xff, 0x45, 0x26, 0x54, 0x69, 0x32, 0x2e,
|
||||
0x00, 0x00,
|
||||
}
|
||||
|
@ -53,6 +53,19 @@ func request_KV_Put_0(ctx context.Context, marshaler runtime.Marshaler, client K
|
||||
|
||||
}
|
||||
|
||||
func request_KV_DeleteRange_0(ctx context.Context, marshaler runtime.Marshaler, client KVClient, req *http.Request, pathParams map[string]string) (proto.Message, runtime.ServerMetadata, error) {
|
||||
var protoReq DeleteRangeRequest
|
||||
var metadata runtime.ServerMetadata
|
||||
|
||||
if err := marshaler.NewDecoder(req.Body).Decode(&protoReq); err != nil {
|
||||
return nil, metadata, grpc.Errorf(codes.InvalidArgument, "%v", err)
|
||||
}
|
||||
|
||||
msg, err := client.DeleteRange(ctx, &protoReq, grpc.Header(&metadata.HeaderMD), grpc.Trailer(&metadata.TrailerMD))
|
||||
return msg, metadata, err
|
||||
|
||||
}
|
||||
|
||||
func request_KV_Txn_0(ctx context.Context, marshaler runtime.Marshaler, client KVClient, req *http.Request, pathParams map[string]string) (proto.Message, runtime.ServerMetadata, error) {
|
||||
var protoReq TxnRequest
|
||||
var metadata runtime.ServerMetadata
|
||||
@ -90,6 +103,9 @@ func request_Watch_Watch_0(ctx context.Context, marshaler runtime.Marshaler, cli
|
||||
handleSend := func() error {
|
||||
var protoReq WatchRequest
|
||||
err = dec.Decode(&protoReq)
|
||||
if err == io.EOF {
|
||||
return err
|
||||
}
|
||||
if err != nil {
|
||||
grpclog.Printf("Failed to decode request: %v", err)
|
||||
return err
|
||||
@ -162,6 +178,9 @@ func request_Lease_LeaseKeepAlive_0(ctx context.Context, marshaler runtime.Marsh
|
||||
handleSend := func() error {
|
||||
var protoReq LeaseKeepAliveRequest
|
||||
err = dec.Decode(&protoReq)
|
||||
if err == io.EOF {
|
||||
return err
|
||||
}
|
||||
if err != nil {
|
||||
grpclog.Printf("Failed to decode request: %v", err)
|
||||
return err
|
||||
@ -616,6 +635,34 @@ func RegisterKVHandler(ctx context.Context, mux *runtime.ServeMux, conn *grpc.Cl
|
||||
|
||||
})
|
||||
|
||||
mux.Handle("POST", pattern_KV_DeleteRange_0, func(w http.ResponseWriter, req *http.Request, pathParams map[string]string) {
|
||||
ctx, cancel := context.WithCancel(ctx)
|
||||
defer cancel()
|
||||
if cn, ok := w.(http.CloseNotifier); ok {
|
||||
go func(done <-chan struct{}, closed <-chan bool) {
|
||||
select {
|
||||
case <-done:
|
||||
case <-closed:
|
||||
cancel()
|
||||
}
|
||||
}(ctx.Done(), cn.CloseNotify())
|
||||
}
|
||||
inboundMarshaler, outboundMarshaler := runtime.MarshalerForRequest(mux, req)
|
||||
rctx, err := runtime.AnnotateContext(ctx, req)
|
||||
if err != nil {
|
||||
runtime.HTTPError(ctx, outboundMarshaler, w, req, err)
|
||||
}
|
||||
resp, md, err := request_KV_DeleteRange_0(rctx, inboundMarshaler, client, req, pathParams)
|
||||
ctx = runtime.NewServerMetadataContext(ctx, md)
|
||||
if err != nil {
|
||||
runtime.HTTPError(ctx, outboundMarshaler, w, req, err)
|
||||
return
|
||||
}
|
||||
|
||||
forward_KV_DeleteRange_0(ctx, outboundMarshaler, w, req, resp, mux.GetForwardResponseOptions()...)
|
||||
|
||||
})
|
||||
|
||||
mux.Handle("POST", pattern_KV_Txn_0, func(w http.ResponseWriter, req *http.Request, pathParams map[string]string) {
|
||||
ctx, cancel := context.WithCancel(ctx)
|
||||
defer cancel()
|
||||
@ -680,6 +727,8 @@ var (
|
||||
|
||||
pattern_KV_Put_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1, 2, 2}, []string{"v3alpha", "kv", "put"}, ""))
|
||||
|
||||
pattern_KV_DeleteRange_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1, 2, 2}, []string{"v3alpha", "kv", "deleterange"}, ""))
|
||||
|
||||
pattern_KV_Txn_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1, 2, 2}, []string{"v3alpha", "kv", "txn"}, ""))
|
||||
|
||||
pattern_KV_Compact_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1, 2, 2}, []string{"v3alpha", "kv", "compaction"}, ""))
|
||||
@ -690,6 +739,8 @@ var (
|
||||
|
||||
forward_KV_Put_0 = runtime.ForwardResponseMessage
|
||||
|
||||
forward_KV_DeleteRange_0 = runtime.ForwardResponseMessage
|
||||
|
||||
forward_KV_Txn_0 = runtime.ForwardResponseMessage
|
||||
|
||||
forward_KV_Compact_0 = runtime.ForwardResponseMessage
|
||||
|
Loading…
x
Reference in New Issue
Block a user