| OLD | NEW |
| 1 // Code generated by protoc-gen-go. | 1 // Code generated by protoc-gen-go. |
| 2 // source: github.com/luci/luci-go/common/eventlog/proto/goma_stats.proto | 2 // source: goma_stats.proto |
| 3 // DO NOT EDIT! | 3 // DO NOT EDIT! |
| 4 | 4 |
| 5 package eventlog | 5 package eventlog |
| 6 | 6 |
| 7 import proto "github.com/golang/protobuf/proto" | 7 import proto "github.com/golang/protobuf/proto" |
| 8 import fmt "fmt" | 8 import fmt "fmt" |
| 9 import math "math" | 9 import math "math" |
| 10 | 10 |
| 11 // Reference imports to suppress errors if they are not otherwise used. | 11 // Reference imports to suppress errors if they are not otherwise used. |
| 12 var _ = proto.Marshal | 12 var _ = proto.Marshal |
| (...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 44 return proto.EnumName(MachineInfo_OSType_name, int32(x)) | 44 return proto.EnumName(MachineInfo_OSType_name, int32(x)) |
| 45 } | 45 } |
| 46 func (x *MachineInfo_OSType) UnmarshalJSON(data []byte) error { | 46 func (x *MachineInfo_OSType) UnmarshalJSON(data []byte) error { |
| 47 value, err := proto.UnmarshalJSONEnum(MachineInfo_OSType_value, data, "M
achineInfo_OSType") | 47 value, err := proto.UnmarshalJSONEnum(MachineInfo_OSType_value, data, "M
achineInfo_OSType") |
| 48 if err != nil { | 48 if err != nil { |
| 49 return err | 49 return err |
| 50 } | 50 } |
| 51 *x = MachineInfo_OSType(value) | 51 *x = MachineInfo_OSType(value) |
| 52 return nil | 52 return nil |
| 53 } | 53 } |
| 54 func (MachineInfo_OSType) EnumDescriptor() ([]byte, []int) { return fileDescript
or1, []int{19, 0} } | 54 func (MachineInfo_OSType) EnumDescriptor() ([]byte, []int) { return fileDescript
or1, []int{20, 0} } |
| 55 | 55 |
| 56 // Statistics of all compile requests (including compiled locally). | 56 // Statistics of all compile requests (including compiled locally). |
| 57 // NEXT ID TO USE: 9 | 57 // NEXT ID TO USE: 9 |
| 58 type RequestStats struct { | 58 type RequestStats struct { |
| 59 // Total number of compile requests came from gomacc. | 59 // Total number of compile requests came from gomacc. |
| 60 Total *int64 `protobuf:"varint,1,opt,name=total" json:"total,omitempty"` | 60 Total *int64 `protobuf:"varint,1,opt,name=total" json:"total,omitempty"` |
| 61 // Number of succeeded compile requests. | 61 // Number of succeeded compile requests. |
| 62 Success *int64 `protobuf:"varint,2,opt,name=success" json:"success,omite
mpty"` | 62 Success *int64 `protobuf:"varint,2,opt,name=success" json:"success,omite
mpty"` |
| 63 // Number of failed compile requests. | 63 // Number of failed compile requests. |
| 64 » // The number includes backend errors that were recovered by local fallb
ack. | 64 » // The number includes not only compile failure, but also |
| 65 » // backend errors that were recovered by local fallback. |
| 65 Failure *int64 `protobuf:"varint,3,opt,name=failure" json:"failure,omite
mpty"` | 66 Failure *int64 `protobuf:"varint,3,opt,name=failure" json:"failure,omite
mpty"` |
| 66 // Below this line: different kind of stats. A single one should be prov
ided. | 67 // Below this line: different kind of stats. A single one should be prov
ided. |
| 67 // See the definition of each message type for a details description of | 68 // See the definition of each message type for a details description of |
| 68 // thier use. | 69 // thier use. |
| 69 CompilerProxy *CompilerProxyStats `protobuf:"bytes,4,opt,name=compi
ler_proxy,json=compilerProxy" json:"compiler_proxy,omitempty"` | 70 CompilerProxy *CompilerProxyStats `protobuf:"bytes,4,opt,name=compi
ler_proxy,json=compilerProxy" json:"compiler_proxy,omitempty"` |
| 70 CompilerInfo *CompilerInfoStats `protobuf:"bytes,5,opt,name=compi
ler_info,json=compilerInfo" json:"compiler_info,omitempty"` | 71 CompilerInfo *CompilerInfoStats `protobuf:"bytes,5,opt,name=compi
ler_info,json=compilerInfo" json:"compiler_info,omitempty"` |
| 71 Goma *GomaCompileStats `protobuf:"bytes,6,opt,name=goma"
json:"goma,omitempty"` | 72 Goma *GomaCompileStats `protobuf:"bytes,6,opt,name=goma"
json:"goma,omitempty"` |
| 72 Local *LocalCompileStats `protobuf:"bytes,7,opt,name=local
" json:"local,omitempty"` | 73 Local *LocalCompileStats `protobuf:"bytes,7,opt,name=local
" json:"local,omitempty"` |
| 73 FallbackInSetup *FallbackInSetupStats `protobuf:"bytes,8,opt,name=fallb
ack_in_setup,json=fallbackInSetup" json:"fallback_in_setup,omitempty"` | 74 FallbackInSetup *FallbackInSetupStats `protobuf:"bytes,8,opt,name=fallb
ack_in_setup,json=fallbackInSetup" json:"fallback_in_setup,omitempty"` |
| 74 XXX_unrecognized []byte `json:"-"` | 75 XXX_unrecognized []byte `json:"-"` |
| (...skipping 140 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 215 } | 216 } |
| 216 return 0 | 217 return 0 |
| 217 } | 218 } |
| 218 | 219 |
| 219 // Statistics of compiles done in goma backend. | 220 // Statistics of compiles done in goma backend. |
| 220 type GomaCompileStats struct { | 221 type GomaCompileStats struct { |
| 221 // Number of compiles requested to goma backend. | 222 // Number of compiles requested to goma backend. |
| 222 Finished *int64 `protobuf:"varint,1,opt,name=finished" json:"finished,om
itempty"` | 223 Finished *int64 `protobuf:"varint,1,opt,name=finished" json:"finished,om
itempty"` |
| 223 // The number of compiles returned from the cache in backend. | 224 // The number of compiles returned from the cache in backend. |
| 224 CacheHit *int64 `protobuf:"varint,2,opt,name=cache_hit,json=cacheHit" js
on:"cache_hit,omitempty"` | 225 CacheHit *int64 `protobuf:"varint,2,opt,name=cache_hit,json=cacheHit" js
on:"cache_hit,omitempty"` |
| 226 // The number of compiles returned from the cache in local output. |
| 227 LocalCacheHit *int64 `protobuf:"varint,6,opt,name=local_cache_hit,json=l
ocalCacheHit" json:"local_cache_hit,omitempty"` |
| 225 // Number of compiles aborted. | 228 // Number of compiles aborted. |
| 226 // compiler_proxy does competition between local and remote, and if loca
l | 229 // compiler_proxy does competition between local and remote, and if loca
l |
| 227 // wins, remote compile is aborted. | 230 // wins, remote compile is aborted. |
| 228 Aborted *int64 `protobuf:"varint,3,opt,name=aborted" json:"aborted,omite
mpty"` | 231 Aborted *int64 `protobuf:"varint,3,opt,name=aborted" json:"aborted,omite
mpty"` |
| 229 // Number of retries. | 232 // Number of retries. |
| 230 // In case of retriable error, compiler proxy retries remote compile. | 233 // In case of retriable error, compiler proxy retries remote compile. |
| 231 // e.g. if files required for compile is missing, compiler_proxy send | 234 // e.g. if files required for compile is missing, compiler_proxy send |
| 232 // missing files, and retries compile. | 235 // missing files, and retries compile. |
| 233 Retry *int64 `protobuf:"varint,4,opt,name=retry" json:"retry,omitempty"` | 236 Retry *int64 `protobuf:"varint,4,opt,name=retry" json:"retry,omitempty"` |
| 234 » // Number of compiles failed. | 237 » // Number of remote failures. This contains remote compile failure, back
end |
| 238 » // failure, etc. Note that local compile result does not matter. |
| 235 Fail *int64 `protobuf:"varint,5,opt,name=fail" json:"fail,om
itempty"` | 239 Fail *int64 `protobuf:"varint,5,opt,name=fail" json:"fail,om
itempty"` |
| 236 XXX_unrecognized []byte `json:"-"` | 240 XXX_unrecognized []byte `json:"-"` |
| 237 } | 241 } |
| 238 | 242 |
| 239 func (m *GomaCompileStats) Reset() { *m = GomaCompileStats{}
} | 243 func (m *GomaCompileStats) Reset() { *m = GomaCompileStats{}
} |
| 240 func (m *GomaCompileStats) String() string { return proto.CompactText
String(m) } | 244 func (m *GomaCompileStats) String() string { return proto.CompactText
String(m) } |
| 241 func (*GomaCompileStats) ProtoMessage() {} | 245 func (*GomaCompileStats) ProtoMessage() {} |
| 242 func (*GomaCompileStats) Descriptor() ([]byte, []int) { return fileDescriptor1,
[]int{3} } | 246 func (*GomaCompileStats) Descriptor() ([]byte, []int) { return fileDescriptor1,
[]int{3} } |
| 243 | 247 |
| 244 func (m *GomaCompileStats) GetFinished() int64 { | 248 func (m *GomaCompileStats) GetFinished() int64 { |
| 245 if m != nil && m.Finished != nil { | 249 if m != nil && m.Finished != nil { |
| 246 return *m.Finished | 250 return *m.Finished |
| 247 } | 251 } |
| 248 return 0 | 252 return 0 |
| 249 } | 253 } |
| 250 | 254 |
| 251 func (m *GomaCompileStats) GetCacheHit() int64 { | 255 func (m *GomaCompileStats) GetCacheHit() int64 { |
| 252 if m != nil && m.CacheHit != nil { | 256 if m != nil && m.CacheHit != nil { |
| 253 return *m.CacheHit | 257 return *m.CacheHit |
| 254 } | 258 } |
| 255 return 0 | 259 return 0 |
| 256 } | 260 } |
| 257 | 261 |
| 262 func (m *GomaCompileStats) GetLocalCacheHit() int64 { |
| 263 if m != nil && m.LocalCacheHit != nil { |
| 264 return *m.LocalCacheHit |
| 265 } |
| 266 return 0 |
| 267 } |
| 268 |
| 258 func (m *GomaCompileStats) GetAborted() int64 { | 269 func (m *GomaCompileStats) GetAborted() int64 { |
| 259 if m != nil && m.Aborted != nil { | 270 if m != nil && m.Aborted != nil { |
| 260 return *m.Aborted | 271 return *m.Aborted |
| 261 } | 272 } |
| 262 return 0 | 273 return 0 |
| 263 } | 274 } |
| 264 | 275 |
| 265 func (m *GomaCompileStats) GetRetry() int64 { | 276 func (m *GomaCompileStats) GetRetry() int64 { |
| 266 if m != nil && m.Retry != nil { | 277 if m != nil && m.Retry != nil { |
| 267 return *m.Retry | 278 return *m.Retry |
| (...skipping 111 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 379 } | 390 } |
| 380 return 0 | 391 return 0 |
| 381 } | 392 } |
| 382 | 393 |
| 383 // Statistics of files used for remote compile. | 394 // Statistics of files used for remote compile. |
| 384 type FileStats struct { | 395 type FileStats struct { |
| 385 // Number of files used for compile. | 396 // Number of files used for compile. |
| 386 Requested *int64 `protobuf:"varint,1,opt,name=requested" json:"requested
,omitempty"` | 397 Requested *int64 `protobuf:"varint,1,opt,name=requested" json:"requested
,omitempty"` |
| 387 // Number of files uploaded to goma backend. | 398 // Number of files uploaded to goma backend. |
| 388 Uploaded *int64 `protobuf:"varint,2,opt,name=uploaded" json:"uploaded,om
itempty"` | 399 Uploaded *int64 `protobuf:"varint,2,opt,name=uploaded" json:"uploaded,om
itempty"` |
| 389 » // Number of file hashes not registered in goma backend. | 400 » // Number of file hashes not found in goma backend. |
| 390 // A compile request to goma backend has a list of hashes of files | 401 // A compile request to goma backend has a list of hashes of files |
| 391 // instead of contents. If one of them are missing in goma backend, | 402 // instead of contents. If one of them are missing in goma backend, |
| 392 // the backend returns the list of missing hashes. This field represent
s | 403 // the backend returns the list of missing hashes. This field represent
s |
| 393 // number of hashes missed. | 404 // number of hashes missed. |
| 394 Missed *int64 `protobuf:"varint,3,opt,name=missed" json:"misse
d,omitempty"` | 405 Missed *int64 `protobuf:"varint,3,opt,name=missed" json:"misse
d,omitempty"` |
| 395 XXX_unrecognized []byte `json:"-"` | 406 XXX_unrecognized []byte `json:"-"` |
| 396 } | 407 } |
| 397 | 408 |
| 398 func (m *FileStats) Reset() { *m = FileStats{} } | 409 func (m *FileStats) Reset() { *m = FileStats{} } |
| 399 func (m *FileStats) String() string { return proto.CompactTextString(
m) } | 410 func (m *FileStats) String() string { return proto.CompactTextString(
m) } |
| (...skipping 390 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 790 return 0 | 801 return 0 |
| 791 } | 802 } |
| 792 | 803 |
| 793 func (m *IncludeDirCacheStats) GetReused() int64 { | 804 func (m *IncludeDirCacheStats) GetReused() int64 { |
| 794 if m != nil && m.Reused != nil { | 805 if m != nil && m.Reused != nil { |
| 795 return *m.Reused | 806 return *m.Reused |
| 796 } | 807 } |
| 797 return 0 | 808 return 0 |
| 798 } | 809 } |
| 799 | 810 |
| 811 // Statistics for LocalOutputCache. |
| 812 // |
| 813 // LocalOutputCache is a cache for build output files. |
| 814 // NEXT ID TO USE: 13 |
| 815 type LocalOutputCacheStats struct { |
| 816 // Number of new compile results successfully cached. |
| 817 SaveSuccess *int64 `protobuf:"varint,1,opt,name=save_success,json=saveSu
ccess" json:"save_success,omitempty"` |
| 818 // Total time to save all the files. |
| 819 SaveSuccessTimeMs *int64 `protobuf:"varint,2,opt,name=save_success_time_
ms,json=saveSuccessTimeMs" json:"save_success_time_ms,omitempty"` |
| 820 // Number of compile results failed to get cached. |
| 821 SaveFailure *int64 `protobuf:"varint,3,opt,name=save_failure,json=saveFa
ilure" json:"save_failure,omitempty"` |
| 822 // The number of cache hits |
| 823 LookupSuccess *int64 `protobuf:"varint,4,opt,name=lookup_success,json=lo
okupSuccess" json:"lookup_success,omitempty"` |
| 824 // The total time (in milliseconds) to find a cache (success case only). |
| 825 LookupSuccessTimeMs *int64 `protobuf:"varint,5,opt,name=lookup_success_t
ime_ms,json=lookupSuccessTimeMs" json:"lookup_success_time_ms,omitempty"` |
| 826 // The number of cache misses |
| 827 LookupMiss *int64 `protobuf:"varint,6,opt,name=lookup_miss,json=lookupMi
ss" json:"lookup_miss,omitempty"` |
| 828 // The number of failed lookups due to an error (other than misses) |
| 829 LookupFailure *int64 `protobuf:"varint,7,opt,name=lookup_failure,json=lo
okupFailure" json:"lookup_failure,omitempty"` |
| 830 // The number of times a cache is correctly copied. |
| 831 CommitSuccess *int64 `protobuf:"varint,8,opt,name=commit_success,json=co
mmitSuccess" json:"commit_success,omitempty"` |
| 832 // The total time to copy a cache (copy from cache dir to output dir). |
| 833 CommitSuccessTimeMs *int64 `protobuf:"varint,9,opt,name=commit_success_t
ime_ms,json=commitSuccessTimeMs" json:"commit_success_time_ms,omitempty"` |
| 834 // The number of times a cache copy failed. |
| 835 CommitFailure *int64 `protobuf:"varint,10,opt,name=commit_failure,json=c
ommitFailure" json:"commit_failure,omitempty"` |
| 836 // The number of times LocalOutputCache garbage collection was invoked. |
| 837 GcCount *int64 `protobuf:"varint,11,opt,name=gc_count,json=gcCount" json
:"gc_count,omitempty"` |
| 838 // The total time of garbage collection. |
| 839 GcTotalTimeMs *int64 `protobuf:"varint,12,opt,name=gc_total_time_ms,j
son=gcTotalTimeMs" json:"gc_total_time_ms,omitempty"` |
| 840 XXX_unrecognized []byte `json:"-"` |
| 841 } |
| 842 |
| 843 func (m *LocalOutputCacheStats) Reset() { *m = LocalOutputCac
heStats{} } |
| 844 func (m *LocalOutputCacheStats) String() string { return proto.Compac
tTextString(m) } |
| 845 func (*LocalOutputCacheStats) ProtoMessage() {} |
| 846 func (*LocalOutputCacheStats) Descriptor() ([]byte, []int) { return fileDescript
or1, []int{14} } |
| 847 |
| 848 func (m *LocalOutputCacheStats) GetSaveSuccess() int64 { |
| 849 if m != nil && m.SaveSuccess != nil { |
| 850 return *m.SaveSuccess |
| 851 } |
| 852 return 0 |
| 853 } |
| 854 |
| 855 func (m *LocalOutputCacheStats) GetSaveSuccessTimeMs() int64 { |
| 856 if m != nil && m.SaveSuccessTimeMs != nil { |
| 857 return *m.SaveSuccessTimeMs |
| 858 } |
| 859 return 0 |
| 860 } |
| 861 |
| 862 func (m *LocalOutputCacheStats) GetSaveFailure() int64 { |
| 863 if m != nil && m.SaveFailure != nil { |
| 864 return *m.SaveFailure |
| 865 } |
| 866 return 0 |
| 867 } |
| 868 |
| 869 func (m *LocalOutputCacheStats) GetLookupSuccess() int64 { |
| 870 if m != nil && m.LookupSuccess != nil { |
| 871 return *m.LookupSuccess |
| 872 } |
| 873 return 0 |
| 874 } |
| 875 |
| 876 func (m *LocalOutputCacheStats) GetLookupSuccessTimeMs() int64 { |
| 877 if m != nil && m.LookupSuccessTimeMs != nil { |
| 878 return *m.LookupSuccessTimeMs |
| 879 } |
| 880 return 0 |
| 881 } |
| 882 |
| 883 func (m *LocalOutputCacheStats) GetLookupMiss() int64 { |
| 884 if m != nil && m.LookupMiss != nil { |
| 885 return *m.LookupMiss |
| 886 } |
| 887 return 0 |
| 888 } |
| 889 |
| 890 func (m *LocalOutputCacheStats) GetLookupFailure() int64 { |
| 891 if m != nil && m.LookupFailure != nil { |
| 892 return *m.LookupFailure |
| 893 } |
| 894 return 0 |
| 895 } |
| 896 |
| 897 func (m *LocalOutputCacheStats) GetCommitSuccess() int64 { |
| 898 if m != nil && m.CommitSuccess != nil { |
| 899 return *m.CommitSuccess |
| 900 } |
| 901 return 0 |
| 902 } |
| 903 |
| 904 func (m *LocalOutputCacheStats) GetCommitSuccessTimeMs() int64 { |
| 905 if m != nil && m.CommitSuccessTimeMs != nil { |
| 906 return *m.CommitSuccessTimeMs |
| 907 } |
| 908 return 0 |
| 909 } |
| 910 |
| 911 func (m *LocalOutputCacheStats) GetCommitFailure() int64 { |
| 912 if m != nil && m.CommitFailure != nil { |
| 913 return *m.CommitFailure |
| 914 } |
| 915 return 0 |
| 916 } |
| 917 |
| 918 func (m *LocalOutputCacheStats) GetGcCount() int64 { |
| 919 if m != nil && m.GcCount != nil { |
| 920 return *m.GcCount |
| 921 } |
| 922 return 0 |
| 923 } |
| 924 |
| 925 func (m *LocalOutputCacheStats) GetGcTotalTimeMs() int64 { |
| 926 if m != nil && m.GcTotalTimeMs != nil { |
| 927 return *m.GcTotalTimeMs |
| 928 } |
| 929 return 0 |
| 930 } |
| 931 |
| 800 // Statistics of HttpRPC. | 932 // Statistics of HttpRPC. |
| 801 // | 933 // |
| 802 // compiler_proxy calls goma backend via HttpRPC. | 934 // compiler_proxy calls goma backend via HttpRPC. |
| 803 // NEXT ID TO USE: 11 | 935 // NEXT ID TO USE: 11 |
| 804 type HttpRPCStats struct { | 936 type HttpRPCStats struct { |
| 805 // Status code for initial /pingz. | 937 // Status code for initial /pingz. |
| 806 // compiler_proxy accessis /pingz to confirm backend live. | 938 // compiler_proxy accessis /pingz to confirm backend live. |
| 807 PingStatusCode *int32 `protobuf:"varint,1,opt,name=ping_status_code,json
=pingStatusCode" json:"ping_status_code,omitempty"` | 939 PingStatusCode *int32 `protobuf:"varint,1,opt,name=ping_status_code,json
=pingStatusCode" json:"ping_status_code,omitempty"` |
| 808 // round trip time of initial /pingz in milliseconds. | 940 // round trip time of initial /pingz in milliseconds. |
| 809 // negative value would be set if /pingz failed by network error. | 941 // negative value would be set if /pingz failed by network error. |
| (...skipping 16 matching lines...) Expand all Loading... |
| 826 // | 958 // |
| 827 // Since we may get several kinds of status code from backend, | 959 // Since we may get several kinds of status code from backend, |
| 828 // this is repeated field. | 960 // this is repeated field. |
| 829 StatusCode []*HttpRPCStats_HttpStatus `protobuf:"bytes,9,rep,name=
status_code,json=statusCode" json:"status_code,omitempty"` | 961 StatusCode []*HttpRPCStats_HttpStatus `protobuf:"bytes,9,rep,name=
status_code,json=statusCode" json:"status_code,omitempty"` |
| 830 XXX_unrecognized []byte `json:"-"` | 962 XXX_unrecognized []byte `json:"-"` |
| 831 } | 963 } |
| 832 | 964 |
| 833 func (m *HttpRPCStats) Reset() { *m = HttpRPCStats{} } | 965 func (m *HttpRPCStats) Reset() { *m = HttpRPCStats{} } |
| 834 func (m *HttpRPCStats) String() string { return proto.CompactTextStri
ng(m) } | 966 func (m *HttpRPCStats) String() string { return proto.CompactTextStri
ng(m) } |
| 835 func (*HttpRPCStats) ProtoMessage() {} | 967 func (*HttpRPCStats) ProtoMessage() {} |
| 836 func (*HttpRPCStats) Descriptor() ([]byte, []int) { return fileDescriptor1, []in
t{14} } | 968 func (*HttpRPCStats) Descriptor() ([]byte, []int) { return fileDescriptor1, []in
t{15} } |
| 837 | 969 |
| 838 func (m *HttpRPCStats) GetPingStatusCode() int32 { | 970 func (m *HttpRPCStats) GetPingStatusCode() int32 { |
| 839 if m != nil && m.PingStatusCode != nil { | 971 if m != nil && m.PingStatusCode != nil { |
| 840 return *m.PingStatusCode | 972 return *m.PingStatusCode |
| 841 } | 973 } |
| 842 return 0 | 974 return 0 |
| 843 } | 975 } |
| 844 | 976 |
| 845 func (m *HttpRPCStats) GetPingRoundTripTimeMs() int32 { | 977 func (m *HttpRPCStats) GetPingRoundTripTimeMs() int32 { |
| 846 if m != nil && m.PingRoundTripTimeMs != nil { | 978 if m != nil && m.PingRoundTripTimeMs != nil { |
| (...skipping 62 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 909 // HTTP status code e.g. 200, 302, 401, 503, etc. | 1041 // HTTP status code e.g. 200, 302, 401, 503, etc. |
| 910 StatusCode *int32 `protobuf:"varint,1,opt,name=status_code,json=statusCo
de" json:"status_code,omitempty"` | 1042 StatusCode *int32 `protobuf:"varint,1,opt,name=status_code,json=statusCo
de" json:"status_code,omitempty"` |
| 911 // Number of times the status code were returned from backend. | 1043 // Number of times the status code were returned from backend. |
| 912 Count *int64 `protobuf:"varint,2,opt,name=count" json:"count,
omitempty"` | 1044 Count *int64 `protobuf:"varint,2,opt,name=count" json:"count,
omitempty"` |
| 913 XXX_unrecognized []byte `json:"-"` | 1045 XXX_unrecognized []byte `json:"-"` |
| 914 } | 1046 } |
| 915 | 1047 |
| 916 func (m *HttpRPCStats_HttpStatus) Reset() { *m = HttpRPCStats
_HttpStatus{} } | 1048 func (m *HttpRPCStats_HttpStatus) Reset() { *m = HttpRPCStats
_HttpStatus{} } |
| 917 func (m *HttpRPCStats_HttpStatus) String() string { return proto.Comp
actTextString(m) } | 1049 func (m *HttpRPCStats_HttpStatus) String() string { return proto.Comp
actTextString(m) } |
| 918 func (*HttpRPCStats_HttpStatus) ProtoMessage() {} | 1050 func (*HttpRPCStats_HttpStatus) ProtoMessage() {} |
| 919 func (*HttpRPCStats_HttpStatus) Descriptor() ([]byte, []int) { return fileDescri
ptor1, []int{14, 0} } | 1051 func (*HttpRPCStats_HttpStatus) Descriptor() ([]byte, []int) { return fileDescri
ptor1, []int{15, 0} } |
| 920 | 1052 |
| 921 func (m *HttpRPCStats_HttpStatus) GetStatusCode() int32 { | 1053 func (m *HttpRPCStats_HttpStatus) GetStatusCode() int32 { |
| 922 if m != nil && m.StatusCode != nil { | 1054 if m != nil && m.StatusCode != nil { |
| 923 return *m.StatusCode | 1055 return *m.StatusCode |
| 924 } | 1056 } |
| 925 return 0 | 1057 return 0 |
| 926 } | 1058 } |
| 927 | 1059 |
| 928 func (m *HttpRPCStats_HttpStatus) GetCount() int64 { | 1060 func (m *HttpRPCStats_HttpStatus) GetCount() int64 { |
| 929 if m != nil && m.Count != nil { | 1061 if m != nil && m.Count != nil { |
| 930 return *m.Count | 1062 return *m.Count |
| 931 } | 1063 } |
| 932 return 0 | 1064 return 0 |
| 933 } | 1065 } |
| 934 | 1066 |
| 935 // Statistics for errors in compile_task. | 1067 // Statistics for errors in compile_task. |
| 936 type GomaErrorStats struct { | 1068 type GomaErrorStats struct { |
| 937 // The number of errors that were reported to the user. | 1069 // The number of errors that were reported to the user. |
| 938 UserError *int64 `protobuf:"varint,1,opt,name=user_error,json=userError"
json:"user_error,omitempty"` | 1070 UserError *int64 `protobuf:"varint,1,opt,name=user_error,json=userError"
json:"user_error,omitempty"` |
| 939 // Deprecated tikuta 7/2016. | 1071 // Deprecated tikuta 7/2016. |
| 940 » DEPRECATEDUserWarning *int64 `protobuf:"varint,2,opt,name=DEPRECATED_use
r_warning,json=dEPRECATEDUserWarning" json:"DEPRECATED_user_warning,omitempty"` | 1072 » DEPRECATEDUserWarning *int64 `protobuf:"varint,2,opt,name=DEPRECATED_use
r_warning,json=DEPRECATEDUserWarning" json:"DEPRECATED_user_warning,omitempty"` |
| 941 // The number of errors that were written to the log file. | 1073 // The number of errors that were written to the log file. |
| 942 LogError *int64 `protobuf:"varint,3,opt,name=log_error,json=logError" js
on:"log_error,omitempty"` | 1074 LogError *int64 `protobuf:"varint,3,opt,name=log_error,json=logError" js
on:"log_error,omitempty"` |
| 943 // The number of warnings that were written to the log file. | 1075 // The number of warnings that were written to the log file. |
| 944 LogWarning *int64 `protobuf:"varint,4,opt,name=log_warning,json=lo
gWarning" json:"log_warning,omitempty"` | 1076 LogWarning *int64 `protobuf:"varint,4,opt,name=log_warning,json=lo
gWarning" json:"log_warning,omitempty"` |
| 945 XXX_unrecognized []byte `json:"-"` | 1077 XXX_unrecognized []byte `json:"-"` |
| 946 } | 1078 } |
| 947 | 1079 |
| 948 func (m *GomaErrorStats) Reset() { *m = GomaErrorStats{} } | 1080 func (m *GomaErrorStats) Reset() { *m = GomaErrorStats{} } |
| 949 func (m *GomaErrorStats) String() string { return proto.CompactTextSt
ring(m) } | 1081 func (m *GomaErrorStats) String() string { return proto.CompactTextSt
ring(m) } |
| 950 func (*GomaErrorStats) ProtoMessage() {} | 1082 func (*GomaErrorStats) ProtoMessage() {} |
| 951 func (*GomaErrorStats) Descriptor() ([]byte, []int) { return fileDescriptor1, []
int{15} } | 1083 func (*GomaErrorStats) Descriptor() ([]byte, []int) { return fileDescriptor1, []
int{16} } |
| 952 | 1084 |
| 953 func (m *GomaErrorStats) GetUserError() int64 { | 1085 func (m *GomaErrorStats) GetUserError() int64 { |
| 954 if m != nil && m.UserError != nil { | 1086 if m != nil && m.UserError != nil { |
| 955 return *m.UserError | 1087 return *m.UserError |
| 956 } | 1088 } |
| 957 return 0 | 1089 return 0 |
| 958 } | 1090 } |
| 959 | 1091 |
| 960 func (m *GomaErrorStats) GetDEPRECATEDUserWarning() int64 { | 1092 func (m *GomaErrorStats) GetDEPRECATEDUserWarning() int64 { |
| 961 if m != nil && m.DEPRECATEDUserWarning != nil { | 1093 if m != nil && m.DEPRECATEDUserWarning != nil { |
| (...skipping 23 matching lines...) Expand all Loading... |
| 985 // The number of compiler binary hash mismatches. | 1117 // The number of compiler binary hash mismatches. |
| 986 BinaryHashMismatch *int64 `protobuf:"varint,2,opt,name=binary_hash_misma
tch,json=binaryHashMismatch" json:"binary_hash_mismatch,omitempty"` | 1118 BinaryHashMismatch *int64 `protobuf:"varint,2,opt,name=binary_hash_misma
tch,json=binaryHashMismatch" json:"binary_hash_mismatch,omitempty"` |
| 987 // The number of subprogram mismatches. | 1119 // The number of subprogram mismatches. |
| 988 SubprogramMismatch *int64 `protobuf:"varint,3,opt,name=subprogram_mismat
ch,json=subprogramMismatch" json:"subprogram_mismatch,omitempty"` | 1120 SubprogramMismatch *int64 `protobuf:"varint,3,opt,name=subprogram_mismat
ch,json=subprogramMismatch" json:"subprogram_mismatch,omitempty"` |
| 989 XXX_unrecognized []byte `json:"-"` | 1121 XXX_unrecognized []byte `json:"-"` |
| 990 } | 1122 } |
| 991 | 1123 |
| 992 func (m *GomaMismatchStats) Reset() { *m = GomaMismatchStats{
} } | 1124 func (m *GomaMismatchStats) Reset() { *m = GomaMismatchStats{
} } |
| 993 func (m *GomaMismatchStats) String() string { return proto.CompactTex
tString(m) } | 1125 func (m *GomaMismatchStats) String() string { return proto.CompactTex
tString(m) } |
| 994 func (*GomaMismatchStats) ProtoMessage() {} | 1126 func (*GomaMismatchStats) ProtoMessage() {} |
| 995 func (*GomaMismatchStats) Descriptor() ([]byte, []int) { return fileDescriptor1,
[]int{16} } | 1127 func (*GomaMismatchStats) Descriptor() ([]byte, []int) { return fileDescriptor1,
[]int{17} } |
| 996 | 1128 |
| 997 func (m *GomaMismatchStats) GetCommandVersionMismatch() int64 { | 1129 func (m *GomaMismatchStats) GetCommandVersionMismatch() int64 { |
| 998 if m != nil && m.CommandVersionMismatch != nil { | 1130 if m != nil && m.CommandVersionMismatch != nil { |
| 999 return *m.CommandVersionMismatch | 1131 return *m.CommandVersionMismatch |
| 1000 } | 1132 } |
| 1001 return 0 | 1133 return 0 |
| 1002 } | 1134 } |
| 1003 | 1135 |
| 1004 func (m *GomaMismatchStats) GetBinaryHashMismatch() int64 { | 1136 func (m *GomaMismatchStats) GetBinaryHashMismatch() int64 { |
| 1005 if m != nil && m.BinaryHashMismatch != nil { | 1137 if m != nil && m.BinaryHashMismatch != nil { |
| (...skipping 28 matching lines...) Expand all Loading... |
| 1034 Logbase *float64 `protobuf:"fixed64,6,opt,name=logbase" json:"logbase,om
itempty"` | 1166 Logbase *float64 `protobuf:"fixed64,6,opt,name=logbase" json:"logbase,om
itempty"` |
| 1035 // Values of each bucket. | 1167 // Values of each bucket. |
| 1036 // The bucket range is like [0,1), [1, logbase), [logbase, logbase^2), .
.. | 1168 // The bucket range is like [0,1), [1, logbase), [logbase, logbase^2), .
.. |
| 1037 BucketValue []int64 `protobuf:"varint,7,rep,name=bucket_value,json=
bucketValue" json:"bucket_value,omitempty"` | 1169 BucketValue []int64 `protobuf:"varint,7,rep,name=bucket_value,json=
bucketValue" json:"bucket_value,omitempty"` |
| 1038 XXX_unrecognized []byte `json:"-"` | 1170 XXX_unrecognized []byte `json:"-"` |
| 1039 } | 1171 } |
| 1040 | 1172 |
| 1041 func (m *DistributionProto) Reset() { *m = DistributionProto{
} } | 1173 func (m *DistributionProto) Reset() { *m = DistributionProto{
} } |
| 1042 func (m *DistributionProto) String() string { return proto.CompactTex
tString(m) } | 1174 func (m *DistributionProto) String() string { return proto.CompactTex
tString(m) } |
| 1043 func (*DistributionProto) ProtoMessage() {} | 1175 func (*DistributionProto) ProtoMessage() {} |
| 1044 func (*DistributionProto) Descriptor() ([]byte, []int) { return fileDescriptor1,
[]int{17} } | 1176 func (*DistributionProto) Descriptor() ([]byte, []int) { return fileDescriptor1,
[]int{18} } |
| 1045 | 1177 |
| 1046 func (m *DistributionProto) GetCount() int64 { | 1178 func (m *DistributionProto) GetCount() int64 { |
| 1047 if m != nil && m.Count != nil { | 1179 if m != nil && m.Count != nil { |
| 1048 return *m.Count | 1180 return *m.Count |
| 1049 } | 1181 } |
| 1050 return 0 | 1182 return 0 |
| 1051 } | 1183 } |
| 1052 | 1184 |
| 1053 func (m *DistributionProto) GetSum() int64 { | 1185 func (m *DistributionProto) GetSum() int64 { |
| 1054 if m != nil && m.Sum != nil { | 1186 if m != nil && m.Sum != nil { |
| (...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1097 // Histogram for HttpRPC call time in milliseconds. | 1229 // Histogram for HttpRPC call time in milliseconds. |
| 1098 RpcCallTime *DistributionProto `protobuf:"bytes,1,opt,name=rpc_call_time
,json=rpcCallTime" json:"rpc_call_time,omitempty"` | 1230 RpcCallTime *DistributionProto `protobuf:"bytes,1,opt,name=rpc_call_time
,json=rpcCallTime" json:"rpc_call_time,omitempty"` |
| 1099 // Histogram for goma executor run time in milliseconds. | 1231 // Histogram for goma executor run time in milliseconds. |
| 1100 ExecutorRunTime *DistributionProto `protobuf:"bytes,2,opt,name=executor
_run_time,json=executorRunTime" json:"executor_run_time,omitempty"` | 1232 ExecutorRunTime *DistributionProto `protobuf:"bytes,2,opt,name=executor
_run_time,json=executorRunTime" json:"executor_run_time,omitempty"` |
| 1101 XXX_unrecognized []byte `json:"-"` | 1233 XXX_unrecognized []byte `json:"-"` |
| 1102 } | 1234 } |
| 1103 | 1235 |
| 1104 func (m *GomaHistograms) Reset() { *m = GomaHistograms{} } | 1236 func (m *GomaHistograms) Reset() { *m = GomaHistograms{} } |
| 1105 func (m *GomaHistograms) String() string { return proto.CompactTextSt
ring(m) } | 1237 func (m *GomaHistograms) String() string { return proto.CompactTextSt
ring(m) } |
| 1106 func (*GomaHistograms) ProtoMessage() {} | 1238 func (*GomaHistograms) ProtoMessage() {} |
| 1107 func (*GomaHistograms) Descriptor() ([]byte, []int) { return fileDescriptor1, []
int{18} } | 1239 func (*GomaHistograms) Descriptor() ([]byte, []int) { return fileDescriptor1, []
int{19} } |
| 1108 | 1240 |
| 1109 func (m *GomaHistograms) GetRpcCallTime() *DistributionProto { | 1241 func (m *GomaHistograms) GetRpcCallTime() *DistributionProto { |
| 1110 if m != nil { | 1242 if m != nil { |
| 1111 return m.RpcCallTime | 1243 return m.RpcCallTime |
| 1112 } | 1244 } |
| 1113 return nil | 1245 return nil |
| 1114 } | 1246 } |
| 1115 | 1247 |
| 1116 func (m *GomaHistograms) GetExecutorRunTime() *DistributionProto { | 1248 func (m *GomaHistograms) GetExecutorRunTime() *DistributionProto { |
| 1117 if m != nil { | 1249 if m != nil { |
| 1118 return m.ExecutorRunTime | 1250 return m.ExecutorRunTime |
| 1119 } | 1251 } |
| 1120 return nil | 1252 return nil |
| 1121 } | 1253 } |
| 1122 | 1254 |
| 1123 type MachineInfo struct { | 1255 type MachineInfo struct { |
| 1124 // goma compiler_proxy's revision number. | 1256 // goma compiler_proxy's revision number. |
| 1125 // value: <git commit>@<timestamp in Unix time>. (51 chars) | 1257 // value: <git commit>@<timestamp in Unix time>. (51 chars) |
| 1126 GomaRevision *string `protobuf:"bytes,1,opt,name=goma_revision,json=goma
Revision" json:"goma_revision,omitempty"` | 1258 GomaRevision *string `protobuf:"bytes,1,opt,name=goma_revision,json=goma
Revision" json:"goma_revision,omitempty"` |
| 1127 // type of operating system. | 1259 // type of operating system. |
| 1128 Os *MachineInfo_OSType `protobuf:"varint,2,opt,name=os,enum=eventlog.Mac
hineInfo_OSType" json:"os,omitempty"` | 1260 Os *MachineInfo_OSType `protobuf:"varint,2,opt,name=os,enum=eventlog.Mac
hineInfo_OSType" json:"os,omitempty"` |
| 1129 // Number of CPUs (cores) of the machine. | 1261 // Number of CPUs (cores) of the machine. |
| 1130 Ncpus *int32 `protobuf:"varint,3,opt,name=ncpus" json:"ncpus,omitempty"` | 1262 Ncpus *int32 `protobuf:"varint,3,opt,name=ncpus" json:"ncpus,omitempty"` |
| 1131 // Memory size of the machine in bytes. | 1263 // Memory size of the machine in bytes. |
| 1132 MemorySize *int64 `protobuf:"varint,4,opt,name=memory_size,json=memorySi
ze" json:"memory_size,omitempty"` | 1264 MemorySize *int64 `protobuf:"varint,4,opt,name=memory_size,json=memorySi
ze" json:"memory_size,omitempty"` |
| 1133 // Deprecated tikuta 7/2016. | 1265 // Deprecated tikuta 7/2016. |
| 1134 » DEPRECATEDCpuCapability []uint32 `protobuf:"varint,5,rep,name=DEPRECATED
_cpu_capability,json=dEPRECATEDCpuCapability" json:"DEPRECATED_cpu_capability,om
itempty"` | 1266 » DEPRECATEDCpuCapability []uint32 `protobuf:"varint,5,rep,name=DEPRECATED
_cpu_capability,json=DEPRECATEDCpuCapability" json:"DEPRECATED_cpu_capability,om
itempty"` |
| 1135 XXX_unrecognized []byte `json:"-"` | 1267 XXX_unrecognized []byte `json:"-"` |
| 1136 } | 1268 } |
| 1137 | 1269 |
| 1138 func (m *MachineInfo) Reset() { *m = MachineInfo{} } | 1270 func (m *MachineInfo) Reset() { *m = MachineInfo{} } |
| 1139 func (m *MachineInfo) String() string { return proto.CompactTextStrin
g(m) } | 1271 func (m *MachineInfo) String() string { return proto.CompactTextStrin
g(m) } |
| 1140 func (*MachineInfo) ProtoMessage() {} | 1272 func (*MachineInfo) ProtoMessage() {} |
| 1141 func (*MachineInfo) Descriptor() ([]byte, []int) { return fileDescriptor1, []int
{19} } | 1273 func (*MachineInfo) Descriptor() ([]byte, []int) { return fileDescriptor1, []int
{20} } |
| 1142 | 1274 |
| 1143 func (m *MachineInfo) GetGomaRevision() string { | 1275 func (m *MachineInfo) GetGomaRevision() string { |
| 1144 if m != nil && m.GomaRevision != nil { | 1276 if m != nil && m.GomaRevision != nil { |
| 1145 return *m.GomaRevision | 1277 return *m.GomaRevision |
| 1146 } | 1278 } |
| 1147 return "" | 1279 return "" |
| 1148 } | 1280 } |
| 1149 | 1281 |
| 1150 func (m *MachineInfo) GetOs() MachineInfo_OSType { | 1282 func (m *MachineInfo) GetOs() MachineInfo_OSType { |
| 1151 if m != nil && m.Os != nil { | 1283 if m != nil && m.Os != nil { |
| (...skipping 16 matching lines...) Expand all Loading... |
| 1168 return 0 | 1300 return 0 |
| 1169 } | 1301 } |
| 1170 | 1302 |
| 1171 func (m *MachineInfo) GetDEPRECATEDCpuCapability() []uint32 { | 1303 func (m *MachineInfo) GetDEPRECATEDCpuCapability() []uint32 { |
| 1172 if m != nil { | 1304 if m != nil { |
| 1173 return m.DEPRECATEDCpuCapability | 1305 return m.DEPRECATEDCpuCapability |
| 1174 } | 1306 } |
| 1175 return nil | 1307 return nil |
| 1176 } | 1308 } |
| 1177 | 1309 |
| 1178 // NEXT ID TO USE: 15 | 1310 // NEXT ID TO USE: 16 |
| 1179 type GomaStats struct { | 1311 type GomaStats struct { |
| 1180 // different kind of stats. A single one should be provided. | 1312 // different kind of stats. A single one should be provided. |
| 1181 // See the definition of each message type for a details description of | 1313 // See the definition of each message type for a details description of |
| 1182 // thier use. | 1314 // thier use. |
| 1183 RequestStats *RequestStats `protobuf:"bytes,1,opt,name
=request_stats,json=requestStats" json:"request_stats,omitempty"` | 1315 RequestStats *RequestStats `protobuf:"bytes,1,opt,name
=request_stats,json=requestStats" json:"request_stats,omitempty"` |
| 1184 FileStats *FileStats `protobuf:"bytes,2,opt,name
=file_stats,json=fileStats" json:"file_stats,omitempty"` | 1316 FileStats *FileStats `protobuf:"bytes,2,opt,name
=file_stats,json=fileStats" json:"file_stats,omitempty"` |
| 1185 OutputStats *OutputStats `protobuf:"bytes,3,opt,name
=output_stats,json=outputStats" json:"output_stats,omitempty"` | 1317 OutputStats *OutputStats `protobuf:"bytes,3,opt,name
=output_stats,json=outputStats" json:"output_stats,omitempty"` |
| 1186 MemoryStats *MemoryStats `protobuf:"bytes,4,opt,name
=memory_stats,json=memoryStats" json:"memory_stats,omitempty"` | 1318 MemoryStats *MemoryStats `protobuf:"bytes,4,opt,name
=memory_stats,json=memoryStats" json:"memory_stats,omitempty"` |
| 1187 TimeStats *TimeStats `protobuf:"bytes,5,opt,name
=time_stats,json=timeStats" json:"time_stats,omitempty"` | 1319 TimeStats *TimeStats `protobuf:"bytes,5,opt,name
=time_stats,json=timeStats" json:"time_stats,omitempty"` |
| 1188 IncludeProcessorStats *IncludeProcessorStats `protobuf:"bytes,6,opt,name
=include_processor_stats,json=includeProcessorStats" json:"include_processor_sta
ts,omitempty"` | 1320 IncludeProcessorStats *IncludeProcessorStats `protobuf:"bytes,6,opt,name
=include_processor_stats,json=includeProcessorStats" json:"include_processor_sta
ts,omitempty"` |
| 1189 DepscacheStats *DepsCacheStats `protobuf:"bytes,7,opt,name
=depscache_stats,json=depscacheStats" json:"depscache_stats,omitempty"` | 1321 DepscacheStats *DepsCacheStats `protobuf:"bytes,7,opt,name
=depscache_stats,json=depscacheStats" json:"depscache_stats,omitempty"` |
| 1322 // Deprecated 04/2017. IncludeDirCache has been removed from goma. |
| 1190 IncdircacheStats *IncludeDirCacheStats `protobuf:"bytes,8,opt,name
=incdircache_stats,json=incdircacheStats" json:"incdircache_stats,omitempty"` | 1323 IncdircacheStats *IncludeDirCacheStats `protobuf:"bytes,8,opt,name
=incdircache_stats,json=incdircacheStats" json:"incdircache_stats,omitempty"` |
| 1191 HttpRpcStats *HttpRPCStats `protobuf:"bytes,9,opt,name
=http_rpc_stats,json=httpRpcStats" json:"http_rpc_stats,omitempty"` | 1324 HttpRpcStats *HttpRPCStats `protobuf:"bytes,9,opt,name
=http_rpc_stats,json=httpRpcStats" json:"http_rpc_stats,omitempty"` |
| 1192 ErrorStats *GomaErrorStats `protobuf:"bytes,12,opt,nam
e=error_stats,json=errorStats" json:"error_stats,omitempty"` | 1325 ErrorStats *GomaErrorStats `protobuf:"bytes,12,opt,nam
e=error_stats,json=errorStats" json:"error_stats,omitempty"` |
| 1193 MismatchStats *GomaMismatchStats `protobuf:"bytes,13,opt,nam
e=mismatch_stats,json=mismatchStats" json:"mismatch_stats,omitempty"` | 1326 MismatchStats *GomaMismatchStats `protobuf:"bytes,13,opt,nam
e=mismatch_stats,json=mismatchStats" json:"mismatch_stats,omitempty"` |
| 1194 IncludecacheStats *IncludeCacheStats `protobuf:"bytes,14,opt,nam
e=includecache_stats,json=includecacheStats" json:"includecache_stats,omitempty"
` | 1327 IncludecacheStats *IncludeCacheStats `protobuf:"bytes,14,opt,nam
e=includecache_stats,json=includecacheStats" json:"includecache_stats,omitempty"
` |
| 1328 LocalOutputCacheStats *LocalOutputCacheStats `protobuf:"bytes,15,opt,nam
e=local_output_cache_stats,json=localOutputCacheStats" json:"local_output_cache_
stats,omitempty"` |
| 1195 Histogram *GomaHistograms `protobuf:"bytes,10,opt,nam
e=histogram" json:"histogram,omitempty"` | 1329 Histogram *GomaHistograms `protobuf:"bytes,10,opt,nam
e=histogram" json:"histogram,omitempty"` |
| 1196 MachineInfo *MachineInfo `protobuf:"bytes,11,opt,nam
e=machine_info,json=machineInfo" json:"machine_info,omitempty"` | 1330 MachineInfo *MachineInfo `protobuf:"bytes,11,opt,nam
e=machine_info,json=machineInfo" json:"machine_info,omitempty"` |
| 1197 XXX_unrecognized []byte `json:"-"` | 1331 XXX_unrecognized []byte `json:"-"` |
| 1198 } | 1332 } |
| 1199 | 1333 |
| 1200 func (m *GomaStats) Reset() { *m = GomaStats{} } | 1334 func (m *GomaStats) Reset() { *m = GomaStats{} } |
| 1201 func (m *GomaStats) String() string { return proto.CompactTextString(
m) } | 1335 func (m *GomaStats) String() string { return proto.CompactTextString(
m) } |
| 1202 func (*GomaStats) ProtoMessage() {} | 1336 func (*GomaStats) ProtoMessage() {} |
| 1203 func (*GomaStats) Descriptor() ([]byte, []int) { return fileDescriptor1, []int{2
0} } | 1337 func (*GomaStats) Descriptor() ([]byte, []int) { return fileDescriptor1, []int{2
1} } |
| 1204 | 1338 |
| 1205 func (m *GomaStats) GetRequestStats() *RequestStats { | 1339 func (m *GomaStats) GetRequestStats() *RequestStats { |
| 1206 if m != nil { | 1340 if m != nil { |
| 1207 return m.RequestStats | 1341 return m.RequestStats |
| 1208 } | 1342 } |
| 1209 return nil | 1343 return nil |
| 1210 } | 1344 } |
| 1211 | 1345 |
| 1212 func (m *GomaStats) GetFileStats() *FileStats { | 1346 func (m *GomaStats) GetFileStats() *FileStats { |
| 1213 if m != nil { | 1347 if m != nil { |
| (...skipping 65 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1279 return nil | 1413 return nil |
| 1280 } | 1414 } |
| 1281 | 1415 |
| 1282 func (m *GomaStats) GetIncludecacheStats() *IncludeCacheStats { | 1416 func (m *GomaStats) GetIncludecacheStats() *IncludeCacheStats { |
| 1283 if m != nil { | 1417 if m != nil { |
| 1284 return m.IncludecacheStats | 1418 return m.IncludecacheStats |
| 1285 } | 1419 } |
| 1286 return nil | 1420 return nil |
| 1287 } | 1421 } |
| 1288 | 1422 |
| 1423 func (m *GomaStats) GetLocalOutputCacheStats() *LocalOutputCacheStats { |
| 1424 if m != nil { |
| 1425 return m.LocalOutputCacheStats |
| 1426 } |
| 1427 return nil |
| 1428 } |
| 1429 |
| 1289 func (m *GomaStats) GetHistogram() *GomaHistograms { | 1430 func (m *GomaStats) GetHistogram() *GomaHistograms { |
| 1290 if m != nil { | 1431 if m != nil { |
| 1291 return m.Histogram | 1432 return m.Histogram |
| 1292 } | 1433 } |
| 1293 return nil | 1434 return nil |
| 1294 } | 1435 } |
| 1295 | 1436 |
| 1296 func (m *GomaStats) GetMachineInfo() *MachineInfo { | 1437 func (m *GomaStats) GetMachineInfo() *MachineInfo { |
| 1297 if m != nil { | 1438 if m != nil { |
| 1298 return m.MachineInfo | 1439 return m.MachineInfo |
| 1299 } | 1440 } |
| 1300 return nil | 1441 return nil |
| 1301 } | 1442 } |
| 1302 | 1443 |
| 1303 func init() { | 1444 func init() { |
| 1304 proto.RegisterType((*RequestStats)(nil), "eventlog.RequestStats") | 1445 proto.RegisterType((*RequestStats)(nil), "eventlog.RequestStats") |
| 1305 proto.RegisterType((*CompilerProxyStats)(nil), "eventlog.CompilerProxySt
ats") | 1446 proto.RegisterType((*CompilerProxyStats)(nil), "eventlog.CompilerProxySt
ats") |
| 1306 proto.RegisterType((*CompilerInfoStats)(nil), "eventlog.CompilerInfoStat
s") | 1447 proto.RegisterType((*CompilerInfoStats)(nil), "eventlog.CompilerInfoStat
s") |
| 1307 proto.RegisterType((*GomaCompileStats)(nil), "eventlog.GomaCompileStats"
) | 1448 proto.RegisterType((*GomaCompileStats)(nil), "eventlog.GomaCompileStats"
) |
| 1308 proto.RegisterType((*LocalCompileStats)(nil), "eventlog.LocalCompileStat
s") | 1449 proto.RegisterType((*LocalCompileStats)(nil), "eventlog.LocalCompileStat
s") |
| 1309 proto.RegisterType((*FallbackInSetupStats)(nil), "eventlog.FallbackInSet
upStats") | 1450 proto.RegisterType((*FallbackInSetupStats)(nil), "eventlog.FallbackInSet
upStats") |
| 1310 proto.RegisterType((*FileStats)(nil), "eventlog.FileStats") | 1451 proto.RegisterType((*FileStats)(nil), "eventlog.FileStats") |
| 1311 proto.RegisterType((*OutputStats)(nil), "eventlog.OutputStats") | 1452 proto.RegisterType((*OutputStats)(nil), "eventlog.OutputStats") |
| 1312 proto.RegisterType((*MemoryStats)(nil), "eventlog.MemoryStats") | 1453 proto.RegisterType((*MemoryStats)(nil), "eventlog.MemoryStats") |
| 1313 proto.RegisterType((*TimeStats)(nil), "eventlog.TimeStats") | 1454 proto.RegisterType((*TimeStats)(nil), "eventlog.TimeStats") |
| 1314 proto.RegisterType((*IncludeProcessorStats)(nil), "eventlog.IncludeProce
ssorStats") | 1455 proto.RegisterType((*IncludeProcessorStats)(nil), "eventlog.IncludeProce
ssorStats") |
| 1315 proto.RegisterType((*IncludeCacheStats)(nil), "eventlog.IncludeCacheStat
s") | 1456 proto.RegisterType((*IncludeCacheStats)(nil), "eventlog.IncludeCacheStat
s") |
| 1316 proto.RegisterType((*DepsCacheStats)(nil), "eventlog.DepsCacheStats") | 1457 proto.RegisterType((*DepsCacheStats)(nil), "eventlog.DepsCacheStats") |
| 1317 proto.RegisterType((*IncludeDirCacheStats)(nil), "eventlog.IncludeDirCac
heStats") | 1458 proto.RegisterType((*IncludeDirCacheStats)(nil), "eventlog.IncludeDirCac
heStats") |
| 1459 proto.RegisterType((*LocalOutputCacheStats)(nil), "eventlog.LocalOutputC
acheStats") |
| 1318 proto.RegisterType((*HttpRPCStats)(nil), "eventlog.HttpRPCStats") | 1460 proto.RegisterType((*HttpRPCStats)(nil), "eventlog.HttpRPCStats") |
| 1319 proto.RegisterType((*HttpRPCStats_HttpStatus)(nil), "eventlog.HttpRPCSta
ts.HttpStatus") | 1461 proto.RegisterType((*HttpRPCStats_HttpStatus)(nil), "eventlog.HttpRPCSta
ts.HttpStatus") |
| 1320 proto.RegisterType((*GomaErrorStats)(nil), "eventlog.GomaErrorStats") | 1462 proto.RegisterType((*GomaErrorStats)(nil), "eventlog.GomaErrorStats") |
| 1321 proto.RegisterType((*GomaMismatchStats)(nil), "eventlog.GomaMismatchStat
s") | 1463 proto.RegisterType((*GomaMismatchStats)(nil), "eventlog.GomaMismatchStat
s") |
| 1322 proto.RegisterType((*DistributionProto)(nil), "eventlog.DistributionProt
o") | 1464 proto.RegisterType((*DistributionProto)(nil), "eventlog.DistributionProt
o") |
| 1323 proto.RegisterType((*GomaHistograms)(nil), "eventlog.GomaHistograms") | 1465 proto.RegisterType((*GomaHistograms)(nil), "eventlog.GomaHistograms") |
| 1324 proto.RegisterType((*MachineInfo)(nil), "eventlog.MachineInfo") | 1466 proto.RegisterType((*MachineInfo)(nil), "eventlog.MachineInfo") |
| 1325 proto.RegisterType((*GomaStats)(nil), "eventlog.GomaStats") | 1467 proto.RegisterType((*GomaStats)(nil), "eventlog.GomaStats") |
| 1326 proto.RegisterEnum("eventlog.MachineInfo_OSType", MachineInfo_OSType_nam
e, MachineInfo_OSType_value) | 1468 proto.RegisterEnum("eventlog.MachineInfo_OSType", MachineInfo_OSType_nam
e, MachineInfo_OSType_value) |
| 1327 } | 1469 } |
| 1328 | 1470 |
| 1329 func init() { | 1471 func init() { proto.RegisterFile("goma_stats.proto", fileDescriptor1) } |
| 1330 » proto.RegisterFile("github.com/luci/luci-go/common/eventlog/proto/goma_s
tats.proto", fileDescriptor1) | |
| 1331 } | |
| 1332 | 1472 |
| 1333 var fileDescriptor1 = []byte{ | 1473 var fileDescriptor1 = []byte{ |
| 1334 // 1987 bytes of a gzipped FileDescriptorProto | 1474 // 2183 bytes of a gzipped FileDescriptorProto |
| 1335 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x09, 0x6e, 0x88, 0x02, 0xff, 0x84, 0x17,
0x4d, 0x6f, 0x23, 0x49, | 1475 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x84, 0x38,
0xcb, 0x73, 0x1b, 0x49, |
| 1336 0x15, 0xdb, 0xf1, 0x24, 0x7e, 0x76, 0x32, 0x76, 0xcd, 0x97, 0x67, 0x66,
0x61, 0x67, 0x7b, 0x11, | 1476 0xf9, 0x3f, 0x49, 0x56, 0x64, 0x7d, 0x7a, 0x58, 0x1a, 0xdb, 0x59, 0x65,
0x93, 0xfd, 0x25, 0x51, |
| 1337 0x8a, 0x58, 0x48, 0x60, 0x84, 0xd0, 0xf0, 0xb5, 0x30, 0x71, 0x32, 0x33,
0xd9, 0xdd, 0x64, 0xa2, | 1477 0x60, 0x71, 0x25, 0x94, 0x97, 0x0d, 0x14, 0x15, 0xde, 0x24, 0x72, 0x5e,
0xcb, 0x3a, 0x71, 0x8d, |
| 1338 0x4e, 0x66, 0x03, 0x07, 0xd4, 0x6a, 0xb7, 0xcb, 0x71, 0x2b, 0xed, 0xee,
0x9e, 0xfe, 0xc8, 0xc6, | 1478 0x9d, 0xcd, 0x72, 0xa0, 0xa6, 0x5a, 0xa3, 0x96, 0xd4, 0xe5, 0x99, 0xe9,
0x49, 0x4f, 0x8f, 0x63, |
| 1339 0x1c, 0x38, 0x23, 0x21, 0xc1, 0x89, 0x0b, 0x07, 0xee, 0xdc, 0xf8, 0x03,
0x48, 0x88, 0xff, 0xc2, | 1479 0xe7, 0xc0, 0x3f, 0x40, 0x15, 0x37, 0x2e, 0x1c, 0xb8, 0x73, 0xe3, 0xc6,
0x89, 0x2a, 0x8a, 0xff, |
| 1340 0x7f, 0xe0, 0xc8, 0x7b, 0xf5, 0xaa, 0xaa, 0xdb, 0x71, 0xd0, 0x5e, 0xec,
0x7e, 0x9f, 0xf5, 0xbe, | 1480 0x05, 0xfe, 0x06, 0xb8, 0x51, 0xdd, 0x5f, 0x77, 0x4f, 0xcb, 0x32, 0xb5,
0xb7, 0xf9, 0xde, 0xef, |
| 1341 0xeb, 0x15, 0x7c, 0x7a, 0x11, 0x16, 0xb3, 0x72, 0xbc, 0x13, 0x24, 0xf3,
0xdd, 0xa8, 0x0c, 0x42, | 1481 0xee, 0xaf, 0x07, 0x06, 0x0b, 0x9e, 0x92, 0xa8, 0x90, 0x44, 0x16, 0xfb,
0xb9, 0xe0, 0x92, 0x07, |
| 1342 0xf5, 0xf3, 0xfd, 0x8b, 0x64, 0x17, 0x11, 0xf3, 0x24, 0xde, 0x95, 0x57,
0x32, 0x2e, 0xa2, 0xe4, | 1482 0x9b, 0xf4, 0x8c, 0x66, 0x32, 0xe1, 0x8b, 0xf1, 0xef, 0x1b, 0xd0, 0x0d,
0xe9, 0xbb, 0x92, 0x16, |
| 1343 0x62, 0x37, 0xcd, 0x92, 0x22, 0xd9, 0xbd, 0x48, 0xe6, 0xbe, 0x97, 0x17,
0x7e, 0x91, 0xef, 0x28, | 1483 0xf2, 0x58, 0x31, 0x04, 0x3b, 0xd0, 0x94, 0x5c, 0x92, 0x64, 0x54, 0xbb,
0x53, 0xdb, 0x6b, 0x84, |
| 1344 0x84, 0xd8, 0x30, 0x0c, 0xce, 0x9f, 0x5a, 0xd0, 0x73, 0xe5, 0xfb, 0x52,
0xe6, 0xc5, 0x29, 0x31, | 1484 0x08, 0x04, 0x23, 0x68, 0x15, 0x65, 0x1c, 0xd3, 0xa2, 0x18, 0xd5, 0x35,
0xde, 0x82, 0x8a, 0x32, |
| 1345 0x88, 0xfb, 0xd0, 0x2e, 0x92, 0xc2, 0x8f, 0x86, 0x8d, 0x67, 0x8d, 0xed,
0x96, 0xcb, 0x80, 0x18, | 1485 0x27, 0x2c, 0x29, 0x05, 0x1d, 0x35, 0x90, 0x62, 0xc0, 0x60, 0x02, 0xfd,
0x98, 0xa7, 0x39, 0x4b, |
| 1346 0xc2, 0x7a, 0x5e, 0x06, 0x81, 0xcc, 0xf3, 0x61, 0x53, 0xe1, 0x0d, 0x48,
0x94, 0xa9, 0x1f, 0x46, | 1486 0xa8, 0x88, 0x72, 0xc1, 0xcf, 0x2f, 0x46, 0x1b, 0x77, 0x6a, 0x7b, 0x9d,
0x87, 0xb7, 0xf6, 0xad, |
| 1347 0x65, 0x26, 0x87, 0x2d, 0xa6, 0x68, 0x50, 0x8c, 0x60, 0x0b, 0xcd, 0x49,
0xc3, 0x48, 0x66, 0x1e, | 1487 0xf5, 0xfd, 0x89, 0xa1, 0x1f, 0x29, 0xb2, 0xb6, 0x1f, 0xf6, 0x62, 0x1f,
0x17, 0xfc, 0x12, 0x1c, |
| 1348 0x1e, 0x7b, 0xbd, 0x18, 0xae, 0x21, 0x43, 0xf7, 0xf9, 0x07, 0x3b, 0xe6,
0xf4, 0x9d, 0x91, 0xa6, | 1488 0x22, 0x62, 0xd9, 0x9c, 0x8f, 0x9a, 0x5a, 0xc7, 0xcd, 0x75, 0x1d, 0x2f,
0xb3, 0x39, 0x47, 0x15, |
| 1349 0x9f, 0x10, 0x59, 0x9d, 0xef, 0x6e, 0x06, 0x75, 0x9c, 0xf8, 0x15, 0x58,
0x84, 0x17, 0xc6, 0xd3, | 1489 0xdd, 0xd8, 0x43, 0x05, 0xfb, 0xb0, 0xa1, 0xe2, 0x1f, 0x5d, 0xd3, 0x82,
0x1f, 0x57, 0x82, 0xcf, |
| 1350 0x64, 0xd8, 0x56, 0x3a, 0x9e, 0xae, 0xea, 0x38, 0x44, 0x2a, 0xab, 0xe8,
0x05, 0x35, 0x94, 0xd8, | 1490 0x79, 0x4a, 0x8c, 0x30, 0xca, 0x69, 0xbe, 0xe0, 0x73, 0x68, 0x26, 0x3c,
0x26, 0xc9, 0xa8, 0x75, |
| 1351 0x81, 0x35, 0xf2, 0x7f, 0x78, 0x47, 0x09, 0x3e, 0xa9, 0x04, 0x5f, 0x23,
0x56, 0x0b, 0xb3, 0x9c, | 1491 0xd9, 0xd2, 0x97, 0x0a, 0xbd, 0x22, 0x81, 0x9c, 0xc1, 0x17, 0x30, 0x9c,
0x93, 0x24, 0x99, 0x92, |
| 1352 0xe2, 0x13, 0x3f, 0x84, 0x76, 0x94, 0x04, 0x18, 0x80, 0xf5, 0x9b, 0x27,
0x7d, 0x41, 0xe8, 0x25, | 1492 0xf8, 0x34, 0x62, 0x59, 0x54, 0x50, 0x59, 0xe6, 0xa3, 0x4d, 0x2d, 0xfe,
0xff, 0x95, 0xf8, 0x33, |
| 1353 0x09, 0xe6, 0x14, 0x9f, 0xc1, 0x60, 0xea, 0x47, 0xd1, 0xd8, 0x0f, 0x2e,
0xd1, 0x48, 0x2f, 0x97, | 1493 0xc3, 0xf2, 0x32, 0x3b, 0x56, 0x0c, 0xa8, 0x61, 0x6b, 0xbe, 0x8a, 0x1d,
0xef, 0x41, 0xb0, 0x9e, |
| 1354 0x45, 0x99, 0x0e, 0x37, 0x94, 0xf8, 0xb7, 0x2a, 0xf1, 0x57, 0x9a, 0xe5,
0x30, 0x3e, 0x25, 0x06, | 1494 0x95, 0x20, 0x80, 0x0d, 0x95, 0x56, 0x53, 0x14, 0xfd, 0x3d, 0xfe, 0x53,
0x0d, 0x86, 0x6b, 0xc1, |
| 1355 0xd6, 0x70, 0x77, 0xba, 0x8c, 0x75, 0xb6, 0x41, 0xac, 0x46, 0x45, 0x08,
0x58, 0xa3, 0xb0, 0xea, | 1495 0x07, 0xd7, 0xe1, 0x5a, 0x21, 0xb9, 0xa0, 0x85, 0xe1, 0x35, 0x50, 0xf0,
0x09, 0x80, 0xfe, 0x8a, |
| 1356 0xa4, 0xa8, 0x6f, 0xe7, 0x6f, 0x0d, 0x18, 0xac, 0x38, 0x2f, 0x1e, 0xc2,
0x9d, 0xbc, 0x48, 0x32, | 1496 0x66, 0x65, 0x6e, 0x8b, 0xd8, 0xd6, 0x98, 0x83, 0x32, 0xd7, 0x06, 0x52,
0x56, 0x14, 0xa6, 0x86, |
| 1357 0x99, 0x6b, 0x5e, 0x0d, 0x89, 0x6f, 0x02, 0xa8, 0x2f, 0x6f, 0x52, 0xa6,
0x26, 0x89, 0x1d, 0x85, | 1497 0xfa, 0xdb, 0x19, 0xdd, 0xa8, 0x8c, 0x06, 0xf7, 0x61, 0x98, 0x70, 0x32,
0xa3, 0xb3, 0xa8, 0x60, |
| 1358 0xd9, 0x47, 0x04, 0x1d, 0x30, 0x0f, 0x31, 0xbb, 0x9c, 0x43, 0xf5, 0x6d,
0x0f, 0x5d, 0xab, 0x0e, | 1498 0x1f, 0x68, 0x34, 0xbd, 0x90, 0xb4, 0xd0, 0x35, 0x69, 0x84, 0x5b, 0x48,
0x38, 0x66, 0x1f, 0xe8, |
| 1359 0x15, 0xdf, 0x85, 0x41, 0x94, 0xf8, 0x13, 0x39, 0xf1, 0xf2, 0xf0, 0x77,
0xd2, 0x1b, 0x2f, 0x0a, | 1499 0x13, 0x85, 0x1e, 0xff, 0xb5, 0x06, 0x83, 0xcb, 0x49, 0x0e, 0x3e, 0x86,
0xcd, 0x39, 0xcb, 0x58, |
| 1360 0x3c, 0xa9, 0xad, 0x18, 0xee, 0x32, 0xe1, 0x14, 0xf1, 0x7b, 0x84, 0x76,
0xfe, 0xdc, 0x80, 0xfe, | 1500 0xb1, 0xa4, 0x33, 0xe3, 0xa1, 0x83, 0x83, 0x9b, 0xd0, 0x8e, 0x49, 0xbc,
0xa4, 0xd1, 0x92, 0x49, |
| 1361 0xcd, 0x20, 0x8b, 0x27, 0xb0, 0x31, 0x0d, 0xe3, 0x30, 0x9f, 0xc9, 0x89,
0xb6, 0xd0, 0xc2, 0xe2, | 1501 0xe3, 0xe2, 0xa6, 0x46, 0xbc, 0x60, 0x32, 0xf8, 0x14, 0xb6, 0x74, 0xb6,
0xa3, 0x8a, 0xe5, 0x9a, |
| 1362 0x29, 0x74, 0x02, 0x3f, 0x98, 0x49, 0x6f, 0x16, 0x16, 0xda, 0xc4, 0x0d,
0x85, 0x78, 0x13, 0x16, | 1502 0x66, 0xe9, 0x69, 0xf4, 0xc4, 0xf2, 0x8d, 0xa0, 0x45, 0xa6, 0x5c, 0x48,
0x3a, 0xb3, 0x0d, 0x69, |
| 1363 0x54, 0x68, 0xfe, 0x38, 0xc9, 0x0a, 0x94, 0xd3, 0x85, 0xa6, 0x41, 0x2a,
0xd9, 0x4c, 0x16, 0xd9, | 1503 0x40, 0xd5, 0xda, 0x82, 0x4a, 0x71, 0x61, 0x02, 0x42, 0xc0, 0x45, 0xd9,
0xf4, 0x52, 0xfb, 0x6b, |
| 1364 0x42, 0x1b, 0xca, 0x80, 0xb5, 0xbe, 0x5d, 0x0b, 0xd9, 0x6f, 0x60, 0xb0,
0x92, 0x44, 0xd1, 0x87, | 1504 0x18, 0xae, 0x15, 0x3b, 0x18, 0x40, 0x43, 0x94, 0x99, 0x71, 0x5a, 0x7d,
0xaa, 0x5c, 0x9f, 0xb2, |
| 1365 0x56, 0x56, 0xc6, 0xda, 0x18, 0xfa, 0xa4, 0x18, 0x5e, 0x86, 0x51, 0x84,
0x27, 0xb1, 0x11, 0x1a, | 1505 0x24, 0xa1, 0x33, 0xe3, 0xac, 0x81, 0x56, 0x62, 0x6c, 0xac, 0xc6, 0x38,
0xfe, 0x7b, 0x1d, 0x76, |
| 1366 0x5a, 0xb2, 0xbd, 0xb5, 0x6c, 0xbb, 0xf3, 0xaf, 0x26, 0xdc, 0xbf, 0x2d,
0xc3, 0x58, 0x4f, 0x0f, | 1506 0xae, 0xea, 0x84, 0xe0, 0x73, 0xd8, 0x55, 0xb6, 0xe9, 0x2c, 0x92, 0x3c,
0xca, 0x89, 0x28, 0x68, |
| 1367 0xe8, 0x6c, 0x8c, 0x58, 0x91, 0x78, 0xa9, 0x9f, 0xe5, 0xd2, 0x9b, 0x46,
0xfe, 0x85, 0xc9, 0x8f, | 1507 0x34, 0x4f, 0xc8, 0xc2, 0xd6, 0x31, 0x40, 0xe2, 0x09, 0x3f, 0x52, 0xa4,
0x67, 0x8a, 0x12, 0xfc, |
| 1368 0x60, 0xe2, 0x59, 0x72, 0x42, 0xa4, 0x57, 0x44, 0x11, 0xbf, 0x80, 0xa7,
0x71, 0xe2, 0x65, 0x72, | 1508 0x0c, 0x6e, 0x66, 0x3c, 0x12, 0x34, 0xe5, 0x92, 0x46, 0xa6, 0xe9, 0xa3,
0xa2, 0xcc, 0x73, 0x0c, |
| 1369 0x9e, 0x14, 0xd2, 0xd3, 0xc5, 0xec, 0xe5, 0x65, 0x9a, 0xb2, 0xfb, 0x6c,
0xd4, 0x30, 0x4e, 0x5c, | 1509 0x1f, 0x9d, 0x1a, 0x65, 0x3c, 0xd4, 0x1c, 0x36, 0x18, 0x4b, 0x0f, 0xee,
0x41, 0x6f, 0x29, 0x65, |
| 1370 0xc5, 0x61, 0x9c, 0x31, 0x74, 0xf1, 0x31, 0x6c, 0xce, 0x8a, 0x22, 0xf5,
0x26, 0x61, 0xee, 0x8f, | 1510 0x1e, 0xcd, 0x58, 0x41, 0xa6, 0x89, 0xf3, 0xb5, 0xab, 0x90, 0x07, 0x06,
0x17, 0x3c, 0x82, 0x1b, |
| 1371 0x23, 0x6b, 0x6b, 0x8f, 0x90, 0xfb, 0x1a, 0x27, 0x5e, 0xc0, 0x63, 0x3a,
0x99, 0x8c, 0xba, 0x90, | 1511 0xca, 0xb2, 0x72, 0x6a, 0x41, 0x65, 0xb4, 0x3a, 0x8c, 0x98, 0x48, 0xed,
0xf7, 0x09, 0x7f, 0x4e, |
| 1372 0x85, 0xb7, 0xdc, 0x64, 0x1c, 0x48, 0x65, 0xf7, 0x59, 0xf2, 0x5a, 0x16,
0xf5, 0x32, 0x13, 0x9f, | 1512 0xa5, 0xdf, 0x8e, 0xc1, 0x03, 0x18, 0x3a, 0x6e, 0x67, 0x02, 0xb3, 0x3c,
0xb0, 0x04, 0x67, 0xe6, |
| 1373 0xc0, 0xc0, 0x72, 0xdb, 0x23, 0x38, 0xca, 0x7d, 0x43, 0xb0, 0xc7, 0x60,
0xbd, 0x64, 0x3c, 0x5e, | 1513 0x3e, 0x0c, 0x05, 0x1e, 0x43, 0x74, 0x16, 0x4d, 0x2f, 0xa2, 0xb2, 0xa0,
0xc2, 0xd4, 0x77, 0xcb, |
| 1374 0x30, 0x00, 0xe3, 0x85, 0x57, 0xe6, 0x32, 0x53, 0xad, 0x88, 0xf5, 0x62,
0x09, 0x7b, 0x8b, 0x77, | 1514 0x11, 0x9e, 0x5c, 0xbc, 0x29, 0xa8, 0x18, 0xff, 0x06, 0xda, 0xcf, 0x5c,
0x55, 0x6e, 0x41, 0xdb, |
| 1375 0x88, 0x76, 0x7e, 0x0b, 0x9d, 0x57, 0x36, 0x2b, 0x1f, 0x40, 0xc7, 0xd2,
0x75, 0xa8, 0x2a, 0x04, | 1515 0xd1, 0x4d, 0xaa, 0x2a, 0x84, 0xaa, 0x44, 0x99, 0x63, 0x5f, 0xda, 0x86,
0xb2, 0xb0, 0xaa, 0x9e, |
| 1376 0x65, 0xa2, 0x4c, 0xb9, 0xde, 0x4c, 0xa1, 0x18, 0x98, 0xb2, 0x47, 0xe5,
0x6b, 0xfd, 0xd6, 0x90, | 1516 0x6a, 0x73, 0x17, 0xb7, 0x81, 0xc6, 0x4b, 0xe8, 0xbc, 0x2e, 0x65, 0x5e,
0x56, 0x07, 0xe2, 0x9c, |
| 1377 0x33, 0x83, 0xee, 0xdb, 0xb2, 0x48, 0xcb, 0x6a, 0xd0, 0x4d, 0xf1, 0x34,
0x93, 0x07, 0x06, 0x48, | 1517 0x25, 0x6e, 0x9e, 0x10, 0x50, 0xc2, 0x82, 0x66, 0x24, 0xa5, 0xb6, 0xf4,
0x08, 0xa9, 0x26, 0x99, |
| 1378 0x38, 0x93, 0xb1, 0x3f, 0x97, 0x26, 0xf5, 0x0c, 0x51, 0x91, 0x8c, 0xcb,
0xa9, 0xd6, 0x48, 0x9f, | 1518 0x96, 0x73, 0xa3, 0x51, 0x7d, 0x06, 0x37, 0x60, 0x33, 0xa7, 0xe4, 0x34,
0x12, 0xf4, 0x9d, 0xc9, |
| 1379 0xe2, 0x31, 0x6c, 0xa4, 0xd2, 0xbf, 0xc4, 0x34, 0xbd, 0xd7, 0xf1, 0x5a,
0x27, 0x18, 0x87, 0xa9, | 1519 0x57, 0x4b, 0xc1, 0x21, 0x7d, 0x37, 0x7e, 0x00, 0x9d, 0x43, 0x9a, 0x72,
0x71, 0xe1, 0x42, 0x89, |
| 1380 0xf3, 0x09, 0x74, 0x8f, 0x30, 0x35, 0xd9, 0xc2, 0xba, 0x12, 0x24, 0x71,
0x5e, 0xce, 0xc3, 0xf8, | 1520 0x79, 0x56, 0x94, 0x29, 0xcb, 0x16, 0x36, 0x14, 0x87, 0x18, 0xdf, 0x83,
0xf6, 0x09, 0x4b, 0xa9, |
| 1381 0xc2, 0xb8, 0x62, 0x11, 0xce, 0xc7, 0xd0, 0x39, 0x0b, 0xe7, 0xd2, 0x76,
0x6f, 0x99, 0x16, 0x08, | 1521 0x9b, 0xf2, 0x32, 0x97, 0x2c, 0xa5, 0x76, 0xca, 0x11, 0x1a, 0xff, 0xa1,
0x06, 0xbb, 0x2f, 0xb3, |
| 1382 0x9a, 0xee, 0x65, 0xc8, 0xf9, 0x4b, 0x03, 0x1e, 0x1c, 0xc6, 0x41, 0x54,
0x4e, 0x24, 0x4e, 0x05, | 1522 0x38, 0x29, 0x67, 0xf4, 0x48, 0x70, 0x75, 0x40, 0x73, 0xf1, 0x4d, 0xe7,
0xfa, 0x29, 0xcb, 0x73, |
| 1383 0x1a, 0xbc, 0x49, 0xf6, 0x75, 0xf3, 0xfa, 0x32, 0x4c, 0x53, 0x1b, 0x1e,
0x03, 0x8a, 0xef, 0xc0, | 1523 0x97, 0x1e, 0x0b, 0xaa, 0x71, 0xd3, 0x2c, 0xd1, 0x7b, 0xc2, 0x64, 0xa4,
0x4d, 0x61, 0x50, 0x3d, |
| 1384 0x5d, 0xc5, 0xe2, 0x7d, 0xe5, 0x87, 0x85, 0xa7, 0x8e, 0x62, 0xa7, 0x36,
0x15, 0xfa, 0x1c, 0xb1, | 1524 0x8d, 0x7e, 0x4b, 0x98, 0x54, 0xee, 0x04, 0xdf, 0x82, 0x3e, 0xf2, 0x89,
0x32, 0x43, 0x36, 0x0c, |
| 1385 0x64, 0x8e, 0xf8, 0x36, 0x6c, 0x31, 0x1f, 0x36, 0x04, 0xb3, 0xb1, 0x93,
0x3d, 0x85, 0x75, 0xcb, | 1525 0xb2, 0xab, 0xb1, 0x61, 0x99, 0x29, 0xae, 0xf1, 0xbf, 0xeb, 0x30, 0x34,
0x7e, 0xe9, 0x41, 0x45, |
| 1386 0x98, 0xb8, 0x9c, 0xff, 0x36, 0x61, 0xa0, 0xed, 0x1a, 0x51, 0xa3, 0xb2,
0x4d, 0x58, 0x80, 0x2c, | 1526 0x9f, 0xee, 0x01, 0x2a, 0x8b, 0x68, 0x26, 0x05, 0x73, 0x29, 0x46, 0xd1,
0xa7, 0x88, 0x0b, 0xf6, |
| 1387 0x8b, 0x93, 0x2f, 0x0b, 0x6d, 0x88, 0x59, 0xf4, 0x80, 0x71, 0x62, 0x1b,
0xfa, 0xcc, 0xc4, 0x2d, | 1527 0x60, 0x80, 0x4c, 0x38, 0xf7, 0xea, 0xd8, 0x31, 0xbe, 0xa2, 0x61, 0xd4,
0xc7, 0x3e, 0xe8, 0xdc, |
| 1388 0x4f, 0xe3, 0x44, 0xdb, 0xca, 0x07, 0xb3, 0x3e, 0xc4, 0x52, 0xec, 0x69,
0x20, 0xe8, 0xd8, 0xe3, | 1528 0xab, 0x53, 0xc1, 0xe4, 0x7e, 0xc9, 0xa4, 0x57, 0xe2, 0x0d, 0xbf, 0xc4,
0x2a, 0xec, 0x32, 0x9f, |
| 1389 0x67, 0x2d, 0xc5, 0x6b, 0xf5, 0x14, 0x93, 0xdb, 0x65, 0x3a, 0xf1, 0x0b,
0x5b, 0x90, 0x06, 0x24, | 1529 0x11, 0xe9, 0x1a, 0xd2, 0x82, 0x8a, 0x42, 0xcf, 0x58, 0xac, 0x28, 0xd8,
0x7d, 0x16, 0x0c, 0xf6, |
| 1390 0x8a, 0xbc, 0x0a, 0x03, 0xa2, 0x70, 0xf5, 0x19, 0x10, 0xef, 0x87, 0x7b,
0x49, 0x16, 0x5e, 0x84, | 1530 0x61, 0x9b, 0x0b, 0xb6, 0x60, 0x19, 0x51, 0xc3, 0xa0, 0x1c, 0xd2, 0xae,
0xb4, 0x34, 0xd7, 0xd0, |
| 1391 0xb1, 0x4f, 0xcd, 0x40, 0x06, 0x29, 0x53, 0xd6, 0x15, 0xd7, 0xc0, 0x90,
0xce, 0x88, 0xa2, 0xac, | 1531 0x92, 0x4e, 0x14, 0x45, 0x7b, 0x73, 0x1f, 0x1c, 0x32, 0x4a, 0xc9, 0x39,
0x72, 0x6f, 0x62, 0x47, |
| 1392 0xc1, 0x8a, 0xb6, 0xfc, 0x73, 0xff, 0x9a, 0xb9, 0x37, 0xb8, 0xa2, 0x0d,
0xe1, 0xc8, 0xbf, 0x56, | 1532 0x5b, 0xc2, 0x21, 0x39, 0xd7, 0xbc, 0xfb, 0xb0, 0x3d, 0x67, 0x89, 0xa4,
0x42, 0x4f, 0xbf, 0xd3, |
| 1393 0xbc, 0xa8, 0x1b, 0xcb, 0xaa, 0x90, 0x99, 0xea, 0x7e, 0xab, 0xbb, 0xc3,
0xba, 0x0d, 0x69, 0x49, | 1533 0xdd, 0x46, 0xdd, 0x96, 0xb4, 0xa2, 0xdb, 0xf1, 0x3b, 0xdd, 0x80, 0xba,
0x2d, 0xc1, 0xe8, 0x1e, |
| 1394 0xb7, 0xe5, 0xb7, 0xba, 0x81, 0x75, 0x1b, 0x82, 0xd6, 0xed, 0xfc, 0xa7,
0x01, 0x5b, 0xfb, 0x32, | 1534 0xff, 0xb3, 0x06, 0xfd, 0x03, 0x9a, 0x17, 0x5e, 0xde, 0x3f, 0x85, 0xad,
0x19, 0xcd, 0x8b, 0x48, |
| 1395 0xcd, 0x6b, 0x71, 0xc7, 0xdc, 0x4e, 0x10, 0xe3, 0x15, 0xd4, 0x7b, 0x2c,
0xcc, 0x91, 0xdf, 0x24, | 1535 0xaa, 0xd9, 0x43, 0x61, 0xcc, 0x7c, 0x4f, 0xa1, 0x4f, 0x14, 0x56, 0x9b,
0xb9, 0x0d, 0x1d, 0xa5, |
| 1396 0xf4, 0x19, 0x61, 0xd5, 0x31, 0x1f, 0x42, 0x97, 0xb4, 0x9b, 0xec, 0x70,
0xd4, 0x01, 0x51, 0x26, | 1536 0xdd, 0x56, 0x07, 0xb3, 0x0e, 0x29, 0x39, 0xb7, 0xb5, 0x59, 0x2b, 0x60,
0xe3, 0x8a, 0x02, 0xde, |
| 1397 0x37, 0x2b, 0x09, 0x6c, 0xdd, 0x92, 0xc0, 0x8f, 0xa0, 0x17, 0x4e, 0x6a,
0x47, 0x71, 0x2a, 0xba, | 1537 0x85, 0x2e, 0x9b, 0x79, 0xa6, 0xb0, 0x14, 0x1d, 0x83, 0xf3, 0x2b, 0xd7,
0xac, 0x2a, 0xe7, 0x55, |
| 1398 0x1a, 0x57, 0xcf, 0x5c, 0xbb, 0xca, 0x5c, 0x2d, 0x43, 0x77, 0x96, 0x33,
0x54, 0xe5, 0x74, 0x7d, | 1538 0xe8, 0xda, 0x6a, 0x85, 0xaa, 0x9a, 0xb6, 0x56, 0xc6, 0xf6, 0xb7, 0xb0,
0x63, 0x3a, 0xec, 0x80, |
| 1399 0xa9, 0x6d, 0x7f, 0x0f, 0xf7, 0x75, 0x85, 0xed, 0x87, 0x59, 0xcd, 0x59,
0xec, 0xaa, 0x30, 0xc6, | 1539 0x09, 0x2f, 0xd8, 0x5b, 0xd0, 0x66, 0x59, 0x21, 0x49, 0x16, 0xbb, 0x06,
0xab, 0x10, 0x5a, 0x9b, |
| 1400 0xa5, 0x26, 0x0e, 0x6c, 0x81, 0x55, 0x08, 0xa5, 0x4d, 0xb5, 0xa0, 0xe9,
0x63, 0x86, 0xe8, 0xfc, | 1540 0x1e, 0x41, 0x3b, 0xc7, 0x08, 0x29, 0xfb, 0xb1, 0xa0, 0xc4, 0xbb, 0x45,
0x0c, 0x88, 0x93, 0x5f, |
| 1401 0x20, 0x93, 0x7e, 0xed, 0x16, 0xd1, 0x20, 0x77, 0x7e, 0x59, 0xab, 0x29,
0x86, 0x9c, 0x7f, 0xe2, | 1541 0x7a, 0x3d, 0x85, 0xd0, 0xf8, 0x3f, 0x0d, 0xd8, 0xd5, 0x97, 0x06, 0x1e,
0x1e, 0x9e, 0x07, 0x77, |
| 1402 0x86, 0xf4, 0x06, 0x27, 0xa7, 0x7b, 0x32, 0xe2, 0x83, 0xb1, 0x70, 0x53,
0x6c, 0x5c, 0xb5, 0x50, | 1542 0xa1, 0x5b, 0x90, 0x33, 0x75, 0x32, 0xe3, 0x06, 0x85, 0x4e, 0x74, 0x14,
0xee, 0xd8, 0x6c, 0x51, |
| 1403 0x95, 0x39, 0x4e, 0xce, 0x09, 0x87, 0xb9, 0xed, 0x6e, 0x11, 0xfe, 0x54,
0xa1, 0x47, 0x88, 0x15, | 1543 0x9f, 0xc1, 0x8e, 0xcf, 0xa2, 0x07, 0x29, 0x4a, 0x6d, 0xca, 0x87, 0x1e,
0xab, 0x1a, 0xa7, 0xc3, |
| 1404 0x3f, 0x82, 0x47, 0x8a, 0x33, 0x4b, 0xca, 0x18, 0x0b, 0x20, 0x0b, 0x53,
0xd5, 0x49, 0xde, 0x3c, | 1544 0x4a, 0xe7, 0xea, 0xee, 0xa5, 0x75, 0x3e, 0x33, 0xfb, 0xd7, 0xb7, 0xa1,
0x9f, 0x70, 0x7e, 0x5a, |
| 1405 0x57, 0x49, 0x6d, 0xbb, 0xf7, 0x88, 0xec, 0x12, 0xf5, 0x0c, 0x89, 0xd4,
0x51, 0x47, 0xaa, 0xa3, | 1545 0xe6, 0xce, 0xf0, 0x86, 0xbd, 0x2f, 0x15, 0xd6, 0x9a, 0xfe, 0x3e, 0x5c,
0x5f, 0x65, 0x73, 0xc6, |
| 1406 0x71, 0xcc, 0x59, 0xcb, 0x19, 0x20, 0xf3, 0xfc, 0xa0, 0x08, 0xaf, 0x4c,
0xbb, 0x6a, 0xe8, 0xff, | 1546 0xb1, 0x1c, 0xdb, 0x2b, 0xec, 0xc6, 0xfc, 0x6d, 0xe8, 0x18, 0x21, 0xbd,
0x35, 0x60, 0x89, 0x00, |
| 1407 0x5c, 0x7e, 0xe8, 0x26, 0x9d, 0x94, 0x94, 0x26, 0xf8, 0x06, 0x24, 0x7e,
0x99, 0x65, 0x89, 0x19, | 1547 0x51, 0x87, 0x6a, 0x77, 0xa8, 0x8c, 0x5b, 0x0f, 0x5b, 0xbe, 0x71, 0xcf,
0xc7, 0x98, 0xa7, 0x29, |
| 1408 0xc2, 0x0c, 0x50, 0xc2, 0x63, 0x59, 0x7c, 0x95, 0x64, 0x97, 0x1e, 0x53,
0x39, 0x07, 0x3d, 0x8d, | 1548 0x93, 0xce, 0x47, 0x9c, 0x90, 0x1e, 0x62, 0x3d, 0x1f, 0x57, 0xd9, 0x9c,
0x8f, 0x38, 0x22, 0xdb, |
| 1409 0x3c, 0x50, 0x4c, 0x38, 0xf8, 0x0d, 0x53, 0x26, 0x83, 0xe4, 0x8a, 0xaa,
0x51, 0x57, 0x7e, 0x5f, | 1549 0x2b, 0xec, 0xc6, 0xc7, 0x4a, 0xb7, 0x75, 0x01, 0x7c, 0xdd, 0xd6, 0x85,
0x1b, 0xb0, 0xb9, 0x88, |
| 1410 0x13, 0x5c, 0x83, 0x17, 0x7b, 0xd0, 0xad, 0x07, 0xa8, 0xf3, 0xac, 0x85,
0xdb, 0xd0, 0x47, 0xd5, | 1550 0xa3, 0x98, 0x97, 0x99, 0x1c, 0x75, 0xb0, 0xd4, 0x8b, 0x78, 0xa2, 0xc0,
0xe0, 0x3b, 0x30, 0x58, |
| 1411 0x36, 0x54, 0x0f, 0xa9, 0x02, 0x38, 0x6e, 0x2e, 0xe4, 0x36, 0x7e, 0x4f,
0x46, 0x00, 0x15, 0x85, | 1551 0xc4, 0x66, 0x20, 0xad, 0xc1, 0x2e, 0xea, 0x58, 0xc4, 0x7a, 0x1a, 0xd1,
0xd4, 0xf8, 0x6f, 0x0d, |
| 1412 0xaa, 0x76, 0x35, 0xe4, 0x35, 0x76, 0x72, 0x2d, 0xc0, 0x58, 0x9a, 0xd5,
0x81, 0x01, 0xe7, 0xef, | 1552 0xe8, 0xbe, 0x90, 0x32, 0x0f, 0x8f, 0x26, 0x58, 0xf2, 0x3d, 0x18, 0xe4,
0x2c, 0x5b, 0xe8, 0xa5, |
| 1413 0xd8, 0x27, 0xb4, 0x85, 0x28, 0x1f, 0x38, 0x83, 0xb8, 0x0b, 0xd1, 0x3d,
0xa4, 0x5d, 0xd5, 0xb5, | 1553 0xbb, 0x2c, 0xa2, 0x98, 0xcf, 0x70, 0xc4, 0x9a, 0x61, 0x5f, 0xe1, 0x8f,
0x35, 0x7a, 0xc2, 0x67, |
| 1414 0x43, 0x18, 0xf6, 0xf3, 0xa7, 0xf0, 0x68, 0xff, 0xe0, 0xc4, 0x3d, 0x18,
0xbd, 0x3c, 0x3b, 0xd8, | 1554 0x34, 0xf8, 0x01, 0x7c, 0xa4, 0x39, 0x05, 0x2f, 0xb3, 0x59, 0x24, 0x05,
0xcb, 0x9d, 0x29, 0xd0, |
| 1415 0x57, 0x37, 0x16, 0x0e, 0xcb, 0x2c, 0xa6, 0xe9, 0xad, 0x34, 0xef, 0x35,
0x87, 0x0d, 0xf7, 0xc1, | 1555 0x02, 0xdb, 0x8a, 0x1c, 0x2a, 0xea, 0x89, 0x60, 0xb9, 0x89, 0x6d, 0x07,
0x9a, 0xef, 0x4a, 0xea, |
| 1416 0xc4, 0xb2, 0xd0, 0xe5, 0x75, 0xce, 0x0c, 0xb4, 0xc2, 0xa0, 0x77, 0x5a,
0xb3, 0xde, 0x11, 0x10, | 1556 0xba, 0x16, 0x01, 0xd5, 0x9a, 0x24, 0x96, 0xec, 0xcc, 0xb6, 0x83, 0x81,
0xfe, 0xc7, 0xe2, 0x33, |
| 1417 0xc1, 0x8a, 0xd1, 0x03, 0x22, 0x1a, 0x65, 0x9c, 0x31, 0x40, 0x94, 0x96,
0x76, 0xfe, 0x81, 0x2b, | 1557 0x82, 0x96, 0xb2, 0xc4, 0x4b, 0x3b, 0x78, 0x16, 0x54, 0xfc, 0x54, 0x08,
0x6e, 0x2f, 0x60, 0x04, |
| 1418 0x1d, 0xd9, 0x7a, 0x14, 0xe6, 0x73, 0xbf, 0x08, 0x66, 0x6c, 0xee, 0x0b,
0x18, 0xd2, 0x5e, 0xef, | 1558 0xd4, 0xb0, 0x67, 0x54, 0xbe, 0xe7, 0xe2, 0x34, 0x42, 0x2a, 0x56, 0xb4,
0x6b, 0x90, 0x4f, 0x35, |
| 1419 0x63, 0x0d, 0x61, 0x6c, 0xf3, 0x30, 0x89, 0xbd, 0xb9, 0x66, 0xd0, 0xc6,
0x3f, 0xd4, 0xf4, 0x2f, | 1559 0xd3, 0x03, 0x18, 0x5a, 0x26, 0x41, 0x63, 0x7e, 0xa6, 0x4e, 0x22, 0x53,
0xd3, 0x81, 0x21, 0x84, |
| 1420 0x99, 0x6c, 0xc4, 0xc5, 0x0f, 0xe0, 0xfe, 0x18, 0xe7, 0x51, 0xb6, 0xf0,
0x66, 0x7e, 0x3e, 0xab, | 1560 0x16, 0x1f, 0x3c, 0x81, 0x8e, 0x9f, 0xa0, 0xf6, 0x9d, 0xc6, 0x5e, 0xe7,
0xe1, 0xdd, 0x6a, 0x63, |
| 1421 0xa4, 0x38, 0x40, 0x82, 0x69, 0x6f, 0x90, 0x64, 0x25, 0x76, 0xe1, 0x5e,
0x5e, 0x8e, 0x71, 0x5d, | 1561 0xf6, 0x53, 0xaa, 0x01, 0xcc, 0x5b, 0x08, 0x85, 0xcb, 0xdf, 0xc7, 0x13,
0x80, 0x8a, 0xa2, 0xfa, |
| 1422 0xbf, 0xc8, 0xfc, 0x79, 0x25, 0xc0, 0x9e, 0x88, 0x8a, 0x64, 0x04, 0x9c,
0x7f, 0xa3, 0xc9, 0x78, | 1562 0x72, 0x3d, 0xe5, 0x1e, 0xbb, 0x0a, 0x0d, 0x4b, 0x6d, 0x12, 0xa7, 0x81,
0xf1, 0x9f, 0x6b, 0xd0, |
| 1423 0xdb, 0x63, 0x71, 0x8f, 0xcb, 0x02, 0xcf, 0x3e, 0x51, 0x0f, 0x0c, 0x9b,
0x8a, 0xc6, 0xb3, 0xa6, | 1563 0x57, 0x9b, 0xaa, 0x8e, 0x01, 0x2b, 0xf8, 0x09, 0x80, 0xda, 0x41, 0x4c,
0xa8, 0xe6, 0xdc, 0x50, |
| 1424 0x4d, 0x05, 0x8d, 0x03, 0xbc, 0xf4, 0xf0, 0x74, 0xc2, 0xd1, 0x27, 0xdd,
0x32, 0xf8, 0xe7, 0x25, | 1564 0x18, 0x8c, 0xf3, 0xc7, 0xf0, 0xd1, 0xc1, 0xd3, 0xa3, 0xf0, 0xe9, 0xe4,
0xf1, 0xc9, 0xd3, 0x03, |
| 1425 0x53, 0x2f, 0x7f, 0x5f, 0xfa, 0x99, 0x9a, 0x34, 0xcd, 0xed, 0x86, 0xdb,
0x43, 0xec, 0xdb, 0xe9, | 1565 0xbd, 0xad, 0x44, 0xef, 0x89, 0xc8, 0xd4, 0xcd, 0xad, 0x35, 0x3f, 0xa9,
0x8f, 0x6a, 0xe1, 0x6e, |
| 1426 0x29, 0xe3, 0x48, 0x0e, 0xaf, 0x4a, 0x1d, 0x2f, 0xfa, 0x54, 0x18, 0xff,
0xda, 0x0c, 0x16, 0xfc, | 1566 0xc5, 0xa2, 0x16, 0x97, 0xb7, 0xc8, 0xa0, 0xd6, 0xdc, 0x84, 0x2f, 0x8c,
0x66, 0xb3, 0x1f, 0x26, |
| 1427 0xa4, 0x8a, 0xc7, 0x40, 0x8e, 0xfd, 0x5c, 0xaa, 0xca, 0x6e, 0xb8, 0x06,
0xa4, 0x39, 0x35, 0x2e, | 1567 0x7c, 0x81, 0x8a, 0xf5, 0x64, 0x2d, 0x9c, 0xb2, 0x0d, 0x3b, 0x59, 0x0b,
0x23, 0x3d, 0xfe, 0x4b, |
| 1428 0x83, 0x4b, 0x5c, 0x72, 0xae, 0xfc, 0xa8, 0xa4, 0xc9, 0xde, 0xa2, 0x39,
0xc5, 0xb8, 0x2f, 0x09, | 1568 0x0d, 0x86, 0xca, 0xd7, 0x43, 0x56, 0xa4, 0x44, 0xc6, 0x4b, 0x74, 0xf7,
0x11, 0x8c, 0x54, 0x5b, |
| 1429 0xe5, 0xfc, 0x55, 0xd7, 0xc8, 0x1b, 0x74, 0x44, 0xb9, 0x97, 0x8b, 0x5f,
0xc2, 0x66, 0x96, 0x06, | 1569 0x93, 0x6c, 0x16, 0x9d, 0x51, 0x51, 0x30, 0x9e, 0xa9, 0xc9, 0xd4, 0x0c,
0xc6, 0xf9, 0xeb, 0x86, |
| 1430 0x78, 0x39, 0x45, 0x91, 0x67, 0x2f, 0xe4, 0xa5, 0xe7, 0xc0, 0x8a, 0xd7,
0x6e, 0x17, 0x25, 0x46, | 1570 0xfe, 0x15, 0x92, 0xad, 0x78, 0xf0, 0x3d, 0xd8, 0x99, 0xb2, 0x8c, 0x88,
0x8b, 0x68, 0x49, 0x8a, |
| 1431 0x28, 0xa0, 0x2e, 0xd0, 0xd7, 0x30, 0x90, 0xd7, 0x32, 0x28, 0x71, 0xc5,
0xae, 0xee, 0xd0, 0xe6, | 1571 0x65, 0x25, 0x85, 0x09, 0x0a, 0x90, 0xf6, 0x82, 0x14, 0x4b, 0x27, 0xf1,
0x19, 0x6c, 0x17, 0xe5, |
| 1432 0xd7, 0x2b, 0xb9, 0x6b, 0xa4, 0xcc, 0x1d, 0xfb, 0xc7, 0x26, 0xae, 0x13,
0x38, 0xf7, 0xc2, 0x58, | 1572 0x34, 0x17, 0x7c, 0x21, 0x48, 0x5a, 0x09, 0x60, 0x24, 0x41, 0x45, 0xb2,
0x02, 0xe3, 0x7f, 0xd4, |
| 1433 0xaa, 0xfd, 0x0b, 0x7b, 0x55, 0x3d, 0xe8, 0x32, 0xbc, 0xc1, 0x28, 0xdb,
0xca, 0xb2, 0x8e, 0xdb, | 1573 0x60, 0x78, 0xc0, 0x0a, 0x29, 0xd8, 0xb4, 0x94, 0x8c, 0x67, 0x47, 0xfa,
0x11, 0xea, 0x4a, 0x51, |
| 1434 0x23, 0xa4, 0xab, 0x71, 0xe2, 0x7b, 0xd0, 0x4c, 0x78, 0xb2, 0x6f, 0xd5,
0x1f, 0x5c, 0x35, 0x3d, | 1574 0xbb, 0x53, 0x77, 0xa5, 0x50, 0x57, 0x41, 0x51, 0xa6, 0xa3, 0xba, 0xc6,
0xa9, 0x4f, 0xb5, 0x61, |
| 1435 0x3b, 0x6f, 0x4f, 0xcf, 0x16, 0xa9, 0x74, 0x91, 0x8f, 0xd2, 0x15, 0x07,
0x69, 0xc9, 0x73, 0xbe, | 1575 0x14, 0x65, 0x1a, 0xf1, 0x79, 0x54, 0xbc, 0x2b, 0x89, 0xd0, 0xb7, 0x4c,
0x7d, 0xaf, 0x16, 0x76, |
| 1436 0xed, 0x32, 0xa0, 0xae, 0x09, 0x35, 0x35, 0xeb, 0xf3, 0x1d, 0x18, 0xa5,
0xc6, 0xfb, 0xa7, 0xf0, | 1576 0x8b, 0x32, 0x7d, 0x3d, 0x3f, 0x46, 0x9c, 0x92, 0x4b, 0x59, 0x66, 0xf2,
0xa5, 0x3e, 0x35, 0x86, |
| 1437 0xb8, 0xd6, 0x28, 0x28, 0x83, 0xe1, 0x4a, 0xfd, 0x71, 0x18, 0x85, 0xc5,
0x02, 0x73, 0xd3, 0xda, | 1577 0x9c, 0xdb, 0x4b, 0x25, 0x25, 0xe7, 0xaa, 0xe3, 0x13, 0xbe, 0x98, 0x92,
0x82, 0xea, 0xce, 0xae, |
| 1438 0xde, 0x54, 0xad, 0xf2, 0xa8, 0x6a, 0x95, 0x51, 0x5a, 0x8e, 0x2c, 0x8b,
0xf3, 0x1c, 0xee, 0xb0, | 1578 0x85, 0x16, 0x54, 0xc7, 0xe9, 0xb4, 0x8c, 0x4f, 0xa9, 0x8c, 0xce, 0x48,
0x52, 0xaa, 0xc3, 0xaa, |
| 1439 0x11, 0xa2, 0x0b, 0xeb, 0xef, 0x8e, 0x3f, 0x3f, 0x7e, 0x7b, 0x7e, 0xdc,
0xff, 0x86, 0xe8, 0x40, | 1579 0xa1, 0x8e, 0x53, 0xc4, 0x7d, 0xa5, 0x50, 0xe3, 0x3f, 0x9a, 0x1e, 0x79,
0xc1, 0x0a, 0xa9, 0xc3, |
| 1440 0xfb, 0x8b, 0xc3, 0xe3, 0x77, 0xbf, 0xee, 0x37, 0xc4, 0x3a, 0xb4, 0x8e,
0x5e, 0x8e, 0xfa, 0x4d, | 1580 0x2b, 0x82, 0x5f, 0x40, 0x4f, 0xe4, 0x71, 0x14, 0x93, 0x04, 0xcf, 0x07,
0x9d, 0xe9, 0x95, 0x27, |
| 1441 0xfa, 0x38, 0x3f, 0x3c, 0xee, 0xb7, 0x9c, 0x3f, 0xac, 0x43, 0x87, 0x52,
0xc5, 0xad, 0xf1, 0x33, | 1581 0xe3, 0x5a, 0xd4, 0x61, 0x47, 0xe4, 0xf1, 0x84, 0x24, 0xfa, 0xe4, 0x08,
0x9e, 0xc3, 0x90, 0x9e, |
| 1442 0xcc, 0x12, 0x2f, 0x85, 0xfc, 0xbe, 0xd5, 0x59, 0x7a, 0x58, 0x79, 0x5c,
0x7f, 0xdc, 0xba, 0xbd, | 1582 0xd3, 0xb8, 0x94, 0x5c, 0x54, 0xfb, 0x53, 0xfd, 0x9b, 0x95, 0x6c, 0x59,
0x29, 0xbb, 0x5f, 0xfd, |
| 1443 0xac, 0xfe, 0xd4, 0x7d, 0x0e, 0x30, 0x55, 0x9b, 0xb5, 0x92, 0xe4, 0xd4,
0xdc, 0xab, 0xbd, 0xd7, | 1583 0xae, 0x0e, 0x9d, 0x43, 0x12, 0x2f, 0x59, 0x46, 0xf5, 0xee, 0x7d, 0x0f,
0x7a, 0xfa, 0xd1, 0x2f, |
| 1444 0xec, 0x33, 0xaf, 0x33, 0xb5, 0x6b, 0xe9, 0x0b, 0xe8, 0x25, 0x6a, 0x89,
0xd4, 0x52, 0x2d, 0x25, | 1584 0xe8, 0x19, 0x53, 0xd5, 0xd6, 0x9e, 0xb5, 0xc3, 0xae, 0x42, 0x86, 0x06,
0x17, 0x7c, 0x17, 0xea, |
| 1445 0xf5, 0xa0, 0x92, 0xaa, 0xad, 0x98, 0x6e, 0x37, 0xa9, 0xed, 0x9b, 0x28,
0x69, 0xa2, 0xa9, 0x24, | 1585 0x1c, 0xaf, 0x98, 0xbe, 0xff, 0x28, 0xf7, 0xf4, 0xec, 0xbf, 0x3e, 0x3e,
0xb9, 0xc8, 0x69, 0x58, |
| 1446 0xd7, 0x6e, 0x4a, 0xd6, 0x56, 0x46, 0x57, 0x07, 0xde, 0xda, 0xa9, 0xae,
0x0d, 0x96, 0x6b, 0xdf, | 1586 0xe7, 0xfa, 0xc8, 0xc9, 0xe2, 0xbc, 0xc4, 0x3b, 0xbe, 0x19, 0x22, 0xa0,
0x57, 0x04, 0x7d, 0x63, |
| 1447 0xb4, 0xd3, 0x6e, 0x8f, 0x6e, 0xa7, 0xb0, 0x8b, 0xe4, 0x39, 0x3c, 0x0a,
0xf9, 0xd6, 0xa4, 0xb7, | 1587 0xfa, 0x77, 0x3b, 0x20, 0x4a, 0x5f, 0xed, 0x3f, 0x87, 0x1b, 0xde, 0xa0,
0xc4, 0x79, 0x19, 0xc5, |
| 1448 0x37, 0x2f, 0x8c, 0x5a, 0x01, 0x3f, 0x84, 0x3f, 0xac, 0x14, 0xdc, 0xba,
0x58, 0xba, 0x0f, 0xc2, | 1588 0x24, 0x27, 0x53, 0x96, 0x30, 0x79, 0x31, 0x6a, 0xde, 0x69, 0xec, 0xf5,
0xf4, 0xa8, 0x78, 0xd3, |
| 1449 0x5b, 0xf7, 0xcd, 0x97, 0xbc, 0x63, 0xe8, 0xa5, 0x4d, 0x29, 0xe4, 0x87,
0xf2, 0xb0, 0x56, 0xd4, | 1589 0x34, 0xc9, 0xcb, 0x89, 0x63, 0x19, 0x3f, 0x84, 0x6b, 0xe8, 0x44, 0xd0,
0x81, 0xd6, 0x9b, 0x57, |
| 1450 0x4b, 0x6b, 0x89, 0xbb, 0x65, 0x05, 0x58, 0xc5, 0xe7, 0x30, 0x40, 0xdd,
0x93, 0x30, 0xab, 0x2b, | 1590 0xbf, 0x7a, 0xf5, 0xfa, 0xed, 0xab, 0xc1, 0xff, 0x05, 0x6d, 0x68, 0x7e,
0xf9, 0xf2, 0xd5, 0x9b, |
| 1451 0x59, 0x79, 0x2e, 0xdf, 0x76, 0xe9, 0xbb, 0xfd, 0x9a, 0x20, 0x2b, 0xfb,
0x39, 0x6c, 0xa9, 0xc7, | 1591 0xaf, 0x07, 0xb5, 0xa0, 0x05, 0x8d, 0xc3, 0xc7, 0x93, 0x41, 0x5d, 0x7d,
0xbc, 0x7d, 0xf9, 0x6a, |
| 1452 0x0e, 0x35, 0x2b, 0x6b, 0xea, 0xdc, 0x2c, 0x81, 0xfa, 0x55, 0xc3, 0xaf,
0x20, 0x37, 0x0d, 0x58, | 1592 0xd0, 0x18, 0xff, 0xab, 0x05, 0x6d, 0x55, 0x2a, 0x1c, 0x8d, 0x9f, 0x40,
0xcf, 0x3c, 0x08, 0xf0, |
| 1453 0xfa, 0x27, 0xd0, 0x55, 0xa3, 0x5a, 0x8b, 0xf6, 0x6e, 0x7a, 0xb2, 0x7c,
0x71, 0xb8, 0x20, 0xab, | 1593 0x1f, 0x88, 0xa9, 0xd2, 0xf5, 0x2a, 0x62, 0xff, 0x07, 0x48, 0xd8, 0x15,
0xfe, 0xef, 0x90, 0x87, |
| 1454 0x4b, 0x64, 0x0f, 0xb6, 0xcc, 0x78, 0xd4, 0xd2, 0x9b, 0x37, 0x9b, 0x7b,
0x65, 0x94, 0xbb, 0x9b, | 1594 0x00, 0x73, 0xfd, 0xaa, 0xd2, 0x92, 0x58, 0x9a, 0x6d, 0xef, 0x4d, 0xef,
0x7e, 0x05, 0xb4, 0xe7, |
| 1455 0xf3, 0xa5, 0xc9, 0xfe, 0x19, 0x08, 0x1d, 0xe5, 0x7a, 0x28, 0xb6, 0x6e,
0xea, 0x59, 0xd9, 0xb0, | 1595 0xee, 0x49, 0xf2, 0x08, 0xba, 0x5c, 0xef, 0x00, 0x46, 0xaa, 0xa1, 0xa5,
0x76, 0x2b, 0x29, 0xef, |
| 1456 0xdd, 0x41, 0x5d, 0x8c, 0x75, 0xfd, 0x18, 0x3a, 0x33, 0x33, 0xbe, 0xd4,
0x7a, 0xb1, 0xe2, 0x48, | 1596 0x79, 0x11, 0x76, 0xb8, 0xf7, 0xd6, 0x78, 0x04, 0x5d, 0x9b, 0x4d, 0x2d,
0xb9, 0x71, 0x59, 0xd2, |
| 1457 0x35, 0xdd, 0xdc, 0x8a, 0x55, 0xd5, 0x25, 0x4f, 0x05, 0x7e, 0xfb, 0x75,
0x57, 0xea, 0xb2, 0x9a, | 1597 0x7b, 0x2e, 0x84, 0x26, 0xf1, 0xce, 0x4f, 0x7d, 0x6d, 0xa0, 0x5c, 0xf3,
0xb2, 0x9f, 0xee, 0xe5, |
| 1458 0x19, 0x58, 0x97, 0x15, 0xf0, 0xbf, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff,
0xbf, 0x49, 0x7d, 0x86, | 1598 0x10, 0xb6, 0xa5, 0x7b, 0x44, 0xbc, 0x85, 0x8f, 0x18, 0x6e, 0x4c, 0x51,
0x6e, 0x1f, 0x0b, 0x46, |
| 1459 0x12, 0x00, 0x00, | 1599 0x01, 0xfe, 0x2c, 0xb9, 0x5d, 0x29, 0xb8, 0xf2, 0x51, 0x11, 0xee, 0xb2,
0x2b, 0xdf, 0x1a, 0x8f, |
| 1600 0x71, 0xbf, 0x34, 0x0b, 0xbb, 0x56, 0x88, 0x3f, 0x53, 0x46, 0x5e, 0x53,
0xaf, 0xac, 0xa4, 0x61, |
| 1601 0xdf, 0x09, 0xa0, 0x8a, 0xd7, 0x30, 0x64, 0x59, 0x3c, 0x63, 0xc2, 0x57,
0xb2, 0xf6, 0x4b, 0xe5, |
| 1602 0xaa, 0x85, 0x4f, 0xb7, 0xd3, 0xc0, 0x13, 0x46, 0x85, 0x3f, 0x85, 0xbe,
0x7e, 0xec, 0xaa, 0x81, |
| 1603 0x45, 0x6d, 0xed, 0xcb, 0x6d, 0xe0, 0x5f, 0x37, 0xf8, 0x0a, 0x0e, 0xf3,
0x18, 0xa5, 0x7f, 0x04, |
| 1604 0x1d, 0x7d, 0x5c, 0x1b, 0xd1, 0xee, 0xe5, 0x68, 0x56, 0x2f, 0x8f, 0x10,
0x68, 0x75, 0x91, 0x3c, |
| 1605 0x81, 0xbe, 0x3d, 0x22, 0x8d, 0x74, 0xef, 0xf2, 0x80, 0xaf, 0x1d, 0xe7,
0x61, 0x2f, 0x5d, 0x39, |
| 1606 0xdd, 0xbf, 0x80, 0xc0, 0x64, 0xda, 0x4f, 0x47, 0xff, 0xb2, 0x9e, 0xb5,
0x17, 0x56, 0x38, 0xf4, |
| 1607 0xc5, 0x50, 0xd7, 0xd7, 0x30, 0xc2, 0xff, 0x28, 0xa6, 0x47, 0x7d, 0x8d,
0x5b, 0x97, 0xcb, 0x7e, |
| 1608 0xe5, 0x42, 0x1b, 0xee, 0x26, 0x57, 0xee, 0xb9, 0x3f, 0x84, 0xf6, 0xd2,
0x1e, 0x8e, 0x7a, 0x79, |
| 1609 0x59, 0x4b, 0x51, 0x75, 0x76, 0x86, 0x15, 0xab, 0xee, 0x7a, 0x3c, 0x73,
0xf0, 0xaf, 0x42, 0x67, |
| 1610 0xad, 0xeb, 0xab, 0x13, 0x29, 0xec, 0xa4, 0x15, 0xf0, 0xdf, 0x00, 0x00,
0x00, 0xff, 0xff, 0xee, |
| 1611 0xd2, 0x92, 0x2c, 0xda, 0x14, 0x00, 0x00, |
| 1460 } | 1612 } |
| OLD | NEW |