2017-10-11 17:21:20 +00:00
|
|
|
// Code generated by protoc-gen-go. DO NOT EDIT.
|
|
|
|
// source: types.proto
|
|
|
|
|
|
|
|
/*
|
|
|
|
Package identity is a generated protocol buffer package.
|
|
|
|
|
|
|
|
It is generated from these files:
|
|
|
|
types.proto
|
|
|
|
|
|
|
|
It has these top-level messages:
|
|
|
|
Group
|
|
|
|
Entity
|
|
|
|
Alias
|
|
|
|
*/
|
|
|
|
package identity
|
|
|
|
|
|
|
|
import proto "github.com/golang/protobuf/proto"
|
|
|
|
import fmt "fmt"
|
|
|
|
import math "math"
|
|
|
|
import google_protobuf "github.com/golang/protobuf/ptypes/timestamp"
|
|
|
|
|
|
|
|
// Reference imports to suppress errors if they are not otherwise used.
|
|
|
|
var _ = proto.Marshal
|
|
|
|
var _ = fmt.Errorf
|
|
|
|
var _ = math.Inf
|
|
|
|
|
|
|
|
// This is a compile-time assertion to ensure that this generated file
|
|
|
|
// is compatible with the proto package it is being compiled against.
|
|
|
|
// A compilation error at this line likely means your copy of the
|
|
|
|
// proto package needs to be updated.
|
|
|
|
const _ = proto.ProtoPackageIsVersion2 // please upgrade the proto package
|
|
|
|
|
|
|
|
// Group represents an identity group.
|
|
|
|
type Group struct {
|
|
|
|
// ID is the unique identifier for this group
|
2017-10-23 21:45:05 +00:00
|
|
|
ID string `sentinel:"" protobuf:"bytes,1,opt,name=id" json:"id,omitempty"`
|
2017-10-11 17:21:20 +00:00
|
|
|
// Name is the unique name for this group
|
2017-10-23 21:45:05 +00:00
|
|
|
Name string `sentinel:"" protobuf:"bytes,2,opt,name=name" json:"name,omitempty"`
|
2017-10-11 17:21:20 +00:00
|
|
|
// Policies are the vault policies to be granted to members of this group
|
2017-10-23 21:45:05 +00:00
|
|
|
Policies []string `sentinel:"" protobuf:"bytes,3,rep,name=policies" json:"policies,omitempty"`
|
2017-10-11 17:21:20 +00:00
|
|
|
// ParentGroupIDs are the identifiers of those groups to which this group is a
|
|
|
|
// member of. These will serve as references to the parent group in the
|
|
|
|
// hierarchy.
|
2017-10-23 21:45:05 +00:00
|
|
|
ParentGroupIDs []string `sentinel:"" protobuf:"bytes,4,rep,name=parent_group_ids,json=parentGroupIds" json:"parent_group_ids,omitempty"`
|
2017-10-11 17:21:20 +00:00
|
|
|
// MemberEntityIDs are the identifiers of entities which are members of this
|
|
|
|
// group
|
2017-10-23 21:45:05 +00:00
|
|
|
MemberEntityIDs []string `sentinel:"" protobuf:"bytes,5,rep,name=member_entity_ids,json=memberEntityIDs" json:"member_entity_ids,omitempty"`
|
2017-10-11 17:21:20 +00:00
|
|
|
// Metadata represents the custom data tied with this group
|
2017-10-23 21:45:05 +00:00
|
|
|
Metadata map[string]string `sentinel:"" protobuf:"bytes,6,rep,name=metadata" json:"metadata,omitempty" protobuf_key:"bytes,1,opt,name=key" protobuf_val:"bytes,2,opt,name=value"`
|
2017-10-11 17:21:20 +00:00
|
|
|
// CreationTime is the time at which this group was created
|
2017-10-23 21:45:05 +00:00
|
|
|
CreationTime *google_protobuf.Timestamp `sentinel:"" protobuf:"bytes,7,opt,name=creation_time,json=creationTime" json:"creation_time,omitempty"`
|
2017-10-11 17:21:20 +00:00
|
|
|
// LastUpdateTime is the time at which this group was last modified
|
2017-10-23 21:45:05 +00:00
|
|
|
LastUpdateTime *google_protobuf.Timestamp `sentinel:"" protobuf:"bytes,8,opt,name=last_update_time,json=lastUpdateTime" json:"last_update_time,omitempty"`
|
2017-10-11 17:21:20 +00:00
|
|
|
// ModifyIndex tracks the number of updates to the group. It is useful to detect
|
|
|
|
// updates to the groups.
|
2017-10-23 21:45:05 +00:00
|
|
|
ModifyIndex uint64 `sentinel:"" protobuf:"varint,9,opt,name=modify_index,json=modifyIndex" json:"modify_index,omitempty"`
|
2017-10-11 17:21:20 +00:00
|
|
|
// BucketKeyHash is the MD5 hash of the storage bucket key into which this
|
|
|
|
// group is stored in the underlying storage. This is useful to find all
|
|
|
|
// the groups belonging to a particular bucket during invalidation of the
|
|
|
|
// storage key.
|
2017-10-23 21:45:05 +00:00
|
|
|
BucketKeyHash string `sentinel:"" protobuf:"bytes,10,opt,name=bucket_key_hash,json=bucketKeyHash" json:"bucket_key_hash,omitempty"`
|
2017-11-02 20:05:48 +00:00
|
|
|
// Alias is used to mark this group as an internal mapping of a group that
|
|
|
|
// is external to the identity store. Alias can only be set if the 'type'
|
|
|
|
// is set to 'external'.
|
|
|
|
Alias *Alias `sentinel:"" protobuf:"bytes,11,opt,name=alias" json:"alias,omitempty"`
|
|
|
|
// Type indicates if this group is an internal group or an external group.
|
|
|
|
// Memberships of the internal groups can be managed over the API whereas
|
|
|
|
// the memberships on the external group --for which a corresponding alias
|
|
|
|
// will be set-- will be managed automatically.
|
|
|
|
Type string `sentinel:"" protobuf:"bytes,12,opt,name=type" json:"type,omitempty"`
|
2017-10-11 17:21:20 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func (m *Group) Reset() { *m = Group{} }
|
|
|
|
func (m *Group) String() string { return proto.CompactTextString(m) }
|
|
|
|
func (*Group) ProtoMessage() {}
|
|
|
|
func (*Group) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{0} }
|
|
|
|
|
|
|
|
func (m *Group) GetID() string {
|
|
|
|
if m != nil {
|
|
|
|
return m.ID
|
|
|
|
}
|
|
|
|
return ""
|
|
|
|
}
|
|
|
|
|
|
|
|
func (m *Group) GetName() string {
|
|
|
|
if m != nil {
|
|
|
|
return m.Name
|
|
|
|
}
|
|
|
|
return ""
|
|
|
|
}
|
|
|
|
|
|
|
|
func (m *Group) GetPolicies() []string {
|
|
|
|
if m != nil {
|
|
|
|
return m.Policies
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (m *Group) GetParentGroupIDs() []string {
|
|
|
|
if m != nil {
|
|
|
|
return m.ParentGroupIDs
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (m *Group) GetMemberEntityIDs() []string {
|
|
|
|
if m != nil {
|
|
|
|
return m.MemberEntityIDs
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (m *Group) GetMetadata() map[string]string {
|
|
|
|
if m != nil {
|
|
|
|
return m.Metadata
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (m *Group) GetCreationTime() *google_protobuf.Timestamp {
|
|
|
|
if m != nil {
|
|
|
|
return m.CreationTime
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (m *Group) GetLastUpdateTime() *google_protobuf.Timestamp {
|
|
|
|
if m != nil {
|
|
|
|
return m.LastUpdateTime
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (m *Group) GetModifyIndex() uint64 {
|
|
|
|
if m != nil {
|
|
|
|
return m.ModifyIndex
|
|
|
|
}
|
|
|
|
return 0
|
|
|
|
}
|
|
|
|
|
|
|
|
func (m *Group) GetBucketKeyHash() string {
|
|
|
|
if m != nil {
|
|
|
|
return m.BucketKeyHash
|
|
|
|
}
|
|
|
|
return ""
|
|
|
|
}
|
|
|
|
|
2017-11-02 20:05:48 +00:00
|
|
|
func (m *Group) GetAlias() *Alias {
|
|
|
|
if m != nil {
|
|
|
|
return m.Alias
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (m *Group) GetType() string {
|
|
|
|
if m != nil {
|
|
|
|
return m.Type
|
|
|
|
}
|
|
|
|
return ""
|
|
|
|
}
|
|
|
|
|
2017-10-11 17:21:20 +00:00
|
|
|
// Entity represents an entity that gets persisted and indexed.
|
|
|
|
// Entity is fundamentally composed of zero or many aliases.
|
|
|
|
type Entity struct {
|
|
|
|
// Aliases are the identities that this entity is made of. This can be
|
|
|
|
// empty as well to favor being able to create the entity first and then
|
|
|
|
// incrementally adding aliases.
|
2017-10-23 21:45:05 +00:00
|
|
|
Aliases []*Alias `sentinel:"" protobuf:"bytes,1,rep,name=aliases" json:"aliases,omitempty"`
|
2017-10-11 17:21:20 +00:00
|
|
|
// ID is the unique identifier of the entity which always be a UUID. This
|
|
|
|
// should never be allowed to be updated.
|
2017-10-23 21:45:05 +00:00
|
|
|
ID string `sentinel:"" protobuf:"bytes,2,opt,name=id" json:"id,omitempty"`
|
2017-10-11 17:21:20 +00:00
|
|
|
// Name is a unique identifier of the entity which is intended to be
|
|
|
|
// human-friendly. The default name might not be human friendly since it
|
|
|
|
// gets suffixed by a UUID, but it can optionally be updated, unlike the ID
|
|
|
|
// field.
|
2017-10-23 21:45:05 +00:00
|
|
|
Name string `sentinel:"" protobuf:"bytes,3,opt,name=name" json:"name,omitempty"`
|
2017-10-11 17:21:20 +00:00
|
|
|
// Metadata represents the explicit metadata which is set by the
|
|
|
|
// clients. This is useful to tie any information pertaining to the
|
|
|
|
// aliases. This is a non-unique field of entity, meaning multiple
|
|
|
|
// entities can have the same metadata set. Entities will be indexed based
|
|
|
|
// on this explicit metadata. This enables virtual groupings of entities
|
|
|
|
// based on its metadata.
|
2017-10-23 21:45:05 +00:00
|
|
|
Metadata map[string]string `sentinel:"" protobuf:"bytes,4,rep,name=metadata" json:"metadata,omitempty" protobuf_key:"bytes,1,opt,name=key" protobuf_val:"bytes,2,opt,name=value"`
|
2017-10-11 17:21:20 +00:00
|
|
|
// CreationTime is the time at which this entity is first created.
|
2017-10-23 21:45:05 +00:00
|
|
|
CreationTime *google_protobuf.Timestamp `sentinel:"" protobuf:"bytes,5,opt,name=creation_time,json=creationTime" json:"creation_time,omitempty"`
|
2017-10-11 17:21:20 +00:00
|
|
|
// LastUpdateTime is the most recent time at which the properties of this
|
|
|
|
// entity got modified. This is helpful in filtering out entities based on
|
|
|
|
// its age and to take action on them, if desired.
|
2017-10-23 21:45:05 +00:00
|
|
|
LastUpdateTime *google_protobuf.Timestamp `sentinel:"" protobuf:"bytes,6,opt,name=last_update_time,json=lastUpdateTime" json:"last_update_time,omitempty"`
|
2017-10-11 17:21:20 +00:00
|
|
|
// MergedEntityIDs are the entities which got merged to this one. Entities
|
|
|
|
// will be indexed based on all the entities that got merged into it. This
|
|
|
|
// helps to apply the actions on this entity on the tokens that are merged
|
|
|
|
// to the merged entities. Merged entities will be deleted entirely and
|
|
|
|
// this is the only trackable trail of its earlier presence.
|
2017-10-23 21:45:05 +00:00
|
|
|
MergedEntityIDs []string `sentinel:"" protobuf:"bytes,7,rep,name=merged_entity_ids,json=mergedEntityIDs" json:"merged_entity_ids,omitempty"`
|
2017-10-11 17:21:20 +00:00
|
|
|
// Policies the entity is entitled to
|
2017-10-23 21:45:05 +00:00
|
|
|
Policies []string `sentinel:"" protobuf:"bytes,8,rep,name=policies" json:"policies,omitempty"`
|
2017-10-11 17:21:20 +00:00
|
|
|
// BucketKeyHash is the MD5 hash of the storage bucket key into which this
|
|
|
|
// entity is stored in the underlying storage. This is useful to find all
|
|
|
|
// the entities belonging to a particular bucket during invalidation of the
|
|
|
|
// storage key.
|
2017-10-23 21:45:05 +00:00
|
|
|
BucketKeyHash string `sentinel:"" protobuf:"bytes,9,opt,name=bucket_key_hash,json=bucketKeyHash" json:"bucket_key_hash,omitempty"`
|
2017-10-11 17:21:20 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func (m *Entity) Reset() { *m = Entity{} }
|
|
|
|
func (m *Entity) String() string { return proto.CompactTextString(m) }
|
|
|
|
func (*Entity) ProtoMessage() {}
|
|
|
|
func (*Entity) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{1} }
|
|
|
|
|
|
|
|
func (m *Entity) GetAliases() []*Alias {
|
|
|
|
if m != nil {
|
|
|
|
return m.Aliases
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (m *Entity) GetID() string {
|
|
|
|
if m != nil {
|
|
|
|
return m.ID
|
|
|
|
}
|
|
|
|
return ""
|
|
|
|
}
|
|
|
|
|
|
|
|
func (m *Entity) GetName() string {
|
|
|
|
if m != nil {
|
|
|
|
return m.Name
|
|
|
|
}
|
|
|
|
return ""
|
|
|
|
}
|
|
|
|
|
|
|
|
func (m *Entity) GetMetadata() map[string]string {
|
|
|
|
if m != nil {
|
|
|
|
return m.Metadata
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (m *Entity) GetCreationTime() *google_protobuf.Timestamp {
|
|
|
|
if m != nil {
|
|
|
|
return m.CreationTime
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (m *Entity) GetLastUpdateTime() *google_protobuf.Timestamp {
|
|
|
|
if m != nil {
|
|
|
|
return m.LastUpdateTime
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (m *Entity) GetMergedEntityIDs() []string {
|
|
|
|
if m != nil {
|
|
|
|
return m.MergedEntityIDs
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (m *Entity) GetPolicies() []string {
|
|
|
|
if m != nil {
|
|
|
|
return m.Policies
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (m *Entity) GetBucketKeyHash() string {
|
|
|
|
if m != nil {
|
|
|
|
return m.BucketKeyHash
|
|
|
|
}
|
|
|
|
return ""
|
|
|
|
}
|
|
|
|
|
|
|
|
// Alias represents the alias that gets stored inside of the
|
|
|
|
// entity object in storage and also represents in an in-memory index of an
|
|
|
|
// alias object.
|
|
|
|
type Alias struct {
|
|
|
|
// ID is the unique identifier that represents this alias
|
2017-10-23 21:45:05 +00:00
|
|
|
ID string `sentinel:"" protobuf:"bytes,1,opt,name=id" json:"id,omitempty"`
|
2017-11-02 20:05:48 +00:00
|
|
|
// CanonicalID is the entity identifier to which this alias belongs to
|
|
|
|
CanonicalID string `sentinel:"" protobuf:"bytes,2,opt,name=canonical_id,json=canonicalId" json:"canonical_id,omitempty"`
|
2017-10-11 17:21:20 +00:00
|
|
|
// MountType is the backend mount's type to which this alias belongs to.
|
|
|
|
// This enables categorically querying aliases of specific backend types.
|
2017-10-23 21:45:05 +00:00
|
|
|
MountType string `sentinel:"" protobuf:"bytes,3,opt,name=mount_type,json=mountType" json:"mount_type,omitempty"`
|
2017-10-11 17:21:20 +00:00
|
|
|
// MountAccessor is the backend mount's accessor to which this alias
|
|
|
|
// belongs to.
|
2017-10-23 21:45:05 +00:00
|
|
|
MountAccessor string `sentinel:"" protobuf:"bytes,4,opt,name=mount_accessor,json=mountAccessor" json:"mount_accessor,omitempty"`
|
2017-10-11 17:21:20 +00:00
|
|
|
// MountPath is the backend mount's path to which the Maccessor belongs to. This
|
|
|
|
// field is not used for any operational purposes. This is only returned when
|
|
|
|
// alias is read, only as a nicety.
|
2017-10-23 21:45:05 +00:00
|
|
|
MountPath string `sentinel:"" protobuf:"bytes,5,opt,name=mount_path,json=mountPath" json:"mount_path,omitempty"`
|
2017-10-11 17:21:20 +00:00
|
|
|
// Metadata is the explicit metadata that clients set against an entity
|
|
|
|
// which enables virtual grouping of aliases. Aliases will be indexed
|
|
|
|
// against their metadata.
|
2017-10-23 21:45:05 +00:00
|
|
|
Metadata map[string]string `sentinel:"" protobuf:"bytes,6,rep,name=metadata" json:"metadata,omitempty" protobuf_key:"bytes,1,opt,name=key" protobuf_val:"bytes,2,opt,name=value"`
|
2017-10-11 17:21:20 +00:00
|
|
|
// Name is the identifier of this alias in its authentication source.
|
2017-11-02 20:05:48 +00:00
|
|
|
// This does not uniquely identify an alias in Vault. This in conjunction
|
|
|
|
// with MountAccessor form to be the factors that represent an alias in a
|
2017-10-11 17:21:20 +00:00
|
|
|
// unique way. Aliases will be indexed based on this combined uniqueness
|
|
|
|
// factor.
|
2017-10-23 21:45:05 +00:00
|
|
|
Name string `sentinel:"" protobuf:"bytes,7,opt,name=name" json:"name,omitempty"`
|
2017-10-11 17:21:20 +00:00
|
|
|
// CreationTime is the time at which this alias was first created
|
2017-10-23 21:45:05 +00:00
|
|
|
CreationTime *google_protobuf.Timestamp `sentinel:"" protobuf:"bytes,8,opt,name=creation_time,json=creationTime" json:"creation_time,omitempty"`
|
2017-10-11 17:21:20 +00:00
|
|
|
// LastUpdateTime is the most recent time at which the properties of this
|
|
|
|
// alias got modified. This is helpful in filtering out aliases based
|
|
|
|
// on its age and to take action on them, if desired.
|
2017-10-23 21:45:05 +00:00
|
|
|
LastUpdateTime *google_protobuf.Timestamp `sentinel:"" protobuf:"bytes,9,opt,name=last_update_time,json=lastUpdateTime" json:"last_update_time,omitempty"`
|
2017-11-02 20:05:48 +00:00
|
|
|
// MergedFromCanonicalIDs is the FIFO history of merging activity
|
|
|
|
MergedFromCanonicalIDs []string `sentinel:"" protobuf:"bytes,10,rep,name=merged_from_canonical_ids,json=mergedFromCanonicalIds" json:"merged_from_canonical_ids,omitempty"`
|
2017-10-11 17:21:20 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func (m *Alias) Reset() { *m = Alias{} }
|
|
|
|
func (m *Alias) String() string { return proto.CompactTextString(m) }
|
|
|
|
func (*Alias) ProtoMessage() {}
|
|
|
|
func (*Alias) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{2} }
|
|
|
|
|
|
|
|
func (m *Alias) GetID() string {
|
|
|
|
if m != nil {
|
|
|
|
return m.ID
|
|
|
|
}
|
|
|
|
return ""
|
|
|
|
}
|
|
|
|
|
2017-11-02 20:05:48 +00:00
|
|
|
func (m *Alias) GetCanonicalID() string {
|
2017-10-11 17:21:20 +00:00
|
|
|
if m != nil {
|
2017-11-02 20:05:48 +00:00
|
|
|
return m.CanonicalID
|
2017-10-11 17:21:20 +00:00
|
|
|
}
|
|
|
|
return ""
|
|
|
|
}
|
|
|
|
|
|
|
|
func (m *Alias) GetMountType() string {
|
|
|
|
if m != nil {
|
|
|
|
return m.MountType
|
|
|
|
}
|
|
|
|
return ""
|
|
|
|
}
|
|
|
|
|
|
|
|
func (m *Alias) GetMountAccessor() string {
|
|
|
|
if m != nil {
|
|
|
|
return m.MountAccessor
|
|
|
|
}
|
|
|
|
return ""
|
|
|
|
}
|
|
|
|
|
|
|
|
func (m *Alias) GetMountPath() string {
|
|
|
|
if m != nil {
|
|
|
|
return m.MountPath
|
|
|
|
}
|
|
|
|
return ""
|
|
|
|
}
|
|
|
|
|
|
|
|
func (m *Alias) GetMetadata() map[string]string {
|
|
|
|
if m != nil {
|
|
|
|
return m.Metadata
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (m *Alias) GetName() string {
|
|
|
|
if m != nil {
|
|
|
|
return m.Name
|
|
|
|
}
|
|
|
|
return ""
|
|
|
|
}
|
|
|
|
|
|
|
|
func (m *Alias) GetCreationTime() *google_protobuf.Timestamp {
|
|
|
|
if m != nil {
|
|
|
|
return m.CreationTime
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (m *Alias) GetLastUpdateTime() *google_protobuf.Timestamp {
|
|
|
|
if m != nil {
|
|
|
|
return m.LastUpdateTime
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2017-11-02 20:05:48 +00:00
|
|
|
func (m *Alias) GetMergedFromCanonicalIDs() []string {
|
2017-10-11 17:21:20 +00:00
|
|
|
if m != nil {
|
2017-11-02 20:05:48 +00:00
|
|
|
return m.MergedFromCanonicalIDs
|
2017-10-11 17:21:20 +00:00
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func init() {
|
|
|
|
proto.RegisterType((*Group)(nil), "identity.Group")
|
|
|
|
proto.RegisterType((*Entity)(nil), "identity.Entity")
|
|
|
|
proto.RegisterType((*Alias)(nil), "identity.Alias")
|
|
|
|
}
|
|
|
|
|
|
|
|
func init() { proto.RegisterFile("types.proto", fileDescriptor0) }
|
|
|
|
|
|
|
|
var fileDescriptor0 = []byte{
|
2017-11-02 20:05:48 +00:00
|
|
|
// 603 bytes of a gzipped FileDescriptorProto
|
|
|
|
0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xac, 0x93, 0xdd, 0x6e, 0xd3, 0x30,
|
|
|
|
0x14, 0xc7, 0xd5, 0xa6, 0x9f, 0x27, 0x5d, 0x37, 0x2c, 0x84, 0x4c, 0xa5, 0x41, 0x37, 0x69, 0x28,
|
|
|
|
0x70, 0x91, 0x49, 0xe3, 0x86, 0x8d, 0x0b, 0x34, 0xc1, 0x80, 0x09, 0x21, 0xa1, 0x68, 0x5c, 0x47,
|
|
|
|
0x6e, 0xe2, 0xb5, 0xd6, 0x92, 0x38, 0x8a, 0x1d, 0x44, 0x5e, 0x87, 0x97, 0xe1, 0x69, 0x78, 0x07,
|
|
|
|
0xe4, 0xe3, 0xa6, 0x0d, 0x74, 0x7c, 0x4c, 0xdb, 0x9d, 0xf3, 0x3f, 0xc7, 0xc7, 0x27, 0xe7, 0xff,
|
|
|
|
0x3b, 0xe0, 0xea, 0x2a, 0xe7, 0xca, 0xcf, 0x0b, 0xa9, 0x25, 0x19, 0x88, 0x98, 0x67, 0x5a, 0xe8,
|
|
|
|
0x6a, 0xf2, 0x78, 0x2e, 0xe5, 0x3c, 0xe1, 0x87, 0xa8, 0xcf, 0xca, 0xcb, 0x43, 0x2d, 0x52, 0xae,
|
|
|
|
0x34, 0x4b, 0x73, 0x9b, 0xba, 0xff, 0xad, 0x03, 0xdd, 0x77, 0x85, 0x2c, 0x73, 0x32, 0x86, 0xb6,
|
|
|
|
0x88, 0x69, 0x6b, 0xda, 0xf2, 0x86, 0x41, 0x5b, 0xc4, 0x84, 0x40, 0x27, 0x63, 0x29, 0xa7, 0x6d,
|
|
|
|
0x54, 0xf0, 0x4c, 0x26, 0x30, 0xc8, 0x65, 0x22, 0x22, 0xc1, 0x15, 0x75, 0xa6, 0x8e, 0x37, 0x0c,
|
|
|
|
0x56, 0xdf, 0xc4, 0x83, 0x9d, 0x9c, 0x15, 0x3c, 0xd3, 0xe1, 0xdc, 0xd4, 0x0b, 0x45, 0xac, 0x68,
|
|
|
|
0x07, 0x73, 0xc6, 0x56, 0xc7, 0x67, 0xce, 0x63, 0x45, 0x9e, 0xc1, 0xbd, 0x94, 0xa7, 0x33, 0x5e,
|
|
|
|
0x84, 0xb6, 0x4b, 0x4c, 0xed, 0x62, 0xea, 0xb6, 0x0d, 0x9c, 0xa1, 0x6e, 0x72, 0x8f, 0x61, 0x90,
|
|
|
|
0x72, 0xcd, 0x62, 0xa6, 0x19, 0xed, 0x4d, 0x1d, 0xcf, 0x3d, 0xda, 0xf5, 0xeb, 0xbf, 0xf3, 0xb1,
|
|
|
|
0xa2, 0xff, 0x71, 0x19, 0x3f, 0xcb, 0x74, 0x51, 0x05, 0xab, 0x74, 0xf2, 0x0a, 0xb6, 0xa2, 0x82,
|
|
|
|
0x33, 0x2d, 0x64, 0x16, 0x9a, 0xdf, 0xa6, 0xfd, 0x69, 0xcb, 0x73, 0x8f, 0x26, 0xbe, 0x9d, 0x89,
|
|
|
|
0x5f, 0xcf, 0xc4, 0xbf, 0xa8, 0x67, 0x12, 0x8c, 0xea, 0x0b, 0x46, 0x22, 0x6f, 0x60, 0x27, 0x61,
|
|
|
|
0x4a, 0x87, 0x65, 0x1e, 0x33, 0xcd, 0x6d, 0x8d, 0xc1, 0x3f, 0x6b, 0x8c, 0xcd, 0x9d, 0xcf, 0x78,
|
|
|
|
0x05, 0xab, 0xec, 0xc1, 0x28, 0x95, 0xb1, 0xb8, 0xac, 0x42, 0x91, 0xc5, 0xfc, 0x2b, 0x1d, 0x4e,
|
|
|
|
0x5b, 0x5e, 0x27, 0x70, 0xad, 0x76, 0x6e, 0x24, 0xf2, 0x04, 0xb6, 0x67, 0x65, 0x74, 0xc5, 0x75,
|
|
|
|
0x78, 0xc5, 0xab, 0x70, 0xc1, 0xd4, 0x82, 0x02, 0x4e, 0x7d, 0xcb, 0xca, 0x1f, 0x78, 0xf5, 0x9e,
|
|
|
|
0xa9, 0x05, 0x39, 0x80, 0x2e, 0x4b, 0x04, 0x53, 0xd4, 0xc5, 0x2e, 0xb6, 0xd7, 0x93, 0x38, 0x35,
|
|
|
|
0x72, 0x60, 0xa3, 0xc6, 0x39, 0x43, 0x03, 0x1d, 0x59, 0xe7, 0xcc, 0x79, 0xf2, 0x12, 0xb6, 0x7e,
|
|
|
|
0x99, 0x13, 0xd9, 0x01, 0xe7, 0x8a, 0x57, 0x4b, 0xbf, 0xcd, 0x91, 0xdc, 0x87, 0xee, 0x17, 0x96,
|
|
|
|
0x94, 0xb5, 0xe3, 0xf6, 0xe3, 0xa4, 0xfd, 0xa2, 0xb5, 0xff, 0xdd, 0x81, 0x9e, 0xb5, 0x84, 0x3c,
|
|
|
|
0x85, 0x3e, 0x3e, 0xc2, 0x15, 0x6d, 0xa1, 0x1d, 0x1b, 0x4d, 0xd4, 0xf1, 0x25, 0x50, 0xed, 0x0d,
|
|
|
|
0xa0, 0x9c, 0x06, 0x50, 0x27, 0x0d, 0x7b, 0x3b, 0x58, 0xef, 0xd1, 0xba, 0x9e, 0x7d, 0xf2, 0xff,
|
|
|
|
0xfd, 0xed, 0xde, 0x81, 0xbf, 0xbd, 0x1b, 0xfb, 0x8b, 0x34, 0x17, 0x73, 0x1e, 0x37, 0x69, 0xee,
|
|
|
|
0xd7, 0x34, 0x9b, 0xc0, 0x9a, 0xe6, 0xe6, 0xfe, 0x0c, 0x7e, 0xdb, 0x9f, 0x6b, 0x20, 0x18, 0x5e,
|
|
|
|
0x03, 0xc1, 0xed, 0x9c, 0xfc, 0xe1, 0x40, 0x17, 0x6d, 0xda, 0x58, 0xf7, 0x3d, 0x18, 0x45, 0x2c,
|
|
|
|
0x93, 0x99, 0x88, 0x58, 0x12, 0xae, 0x7c, 0x73, 0x57, 0xda, 0x79, 0x4c, 0x76, 0x01, 0x52, 0x59,
|
|
|
|
0x66, 0x3a, 0x44, 0xba, 0xac, 0x8d, 0x43, 0x54, 0x2e, 0xaa, 0x9c, 0x93, 0x03, 0x18, 0xdb, 0x30,
|
|
|
|
0x8b, 0x22, 0xae, 0x94, 0x2c, 0x68, 0xc7, 0xf6, 0x8f, 0xea, 0xe9, 0x52, 0x5c, 0x57, 0xc9, 0x99,
|
|
|
|
0x5e, 0xa0, 0x67, 0x75, 0x95, 0x4f, 0x4c, 0x2f, 0xfe, 0xbe, 0xf0, 0xd8, 0xfa, 0x1f, 0x81, 0xa8,
|
|
|
|
0x01, 0xeb, 0x37, 0x00, 0xdb, 0x80, 0x64, 0x70, 0x07, 0x90, 0x0c, 0x6f, 0x0c, 0xc9, 0x31, 0x3c,
|
|
|
|
0x5c, 0x42, 0x72, 0x59, 0xc8, 0x34, 0x6c, 0x4e, 0x5a, 0x51, 0x40, 0x12, 0x1e, 0xd8, 0x84, 0xb7,
|
|
|
|
0x85, 0x4c, 0x5f, 0xaf, 0x87, 0xae, 0x6e, 0xe5, 0xf7, 0xac, 0x87, 0xbd, 0x3d, 0xff, 0x19, 0x00,
|
|
|
|
0x00, 0xff, 0xff, 0x8e, 0x4a, 0xc5, 0xdb, 0x1f, 0x06, 0x00, 0x00,
|
2017-10-11 17:21:20 +00:00
|
|
|
}
|