feat: owner and token master permissions (#3912)

This commit is contained in:
Mykhailo Prakhov 2023-08-18 17:29:44 +02:00 committed by GitHub
parent ae17ad57c3
commit d1db60918d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
7 changed files with 235 additions and 130 deletions

View File

@ -821,6 +821,35 @@ func (m *Manager) DeleteCommunityTokenPermission(request *requests.DeleteCommuni
return community, changes, nil
}
func (m *Manager) ReevaluateCommunityMembersPermissions(request *requests.ReevaluateCommunityMembersPermissions) (*Community, error) {
community, err := m.GetByID(request.CommunityID)
if err != nil {
return nil, err
}
if community == nil {
return nil, ErrOrgNotFound
}
// TODO: Control node needs to be notified to do a permission check if TokenMasters did airdrop
// of the token which is using in a community permissions
if !community.IsControlNode() {
return nil, ErrNotEnoughPermissions
}
err = m.ReevaluateMembers(community)
if err != nil {
return nil, err
}
err = m.saveAndPublish(community)
if err != nil {
return nil, err
}
return community, nil
}
func (m *Manager) DeleteCommunity(id types.HexBytes) error {
err := m.persistence.DeleteCommunity(id)
if err != nil {

View File

@ -1980,6 +1980,22 @@ func (m *Messenger) DeleteCommunityTokenPermission(request *requests.DeleteCommu
return response, nil
}
func (m *Messenger) ReevaluateCommunityMembersPermissions(request *requests.ReevaluateCommunityMembersPermissions) (*MessengerResponse, error) {
if err := request.Validate(); err != nil {
return nil, err
}
community, err := m.communitiesManager.ReevaluateCommunityMembersPermissions(request)
if err != nil {
return nil, err
}
response := &MessengerResponse{}
response.AddCommunity(community)
return response, nil
}
func (m *Messenger) EditCommunity(request *requests.EditCommunity) (*MessengerResponse, error) {
if err := request.Validate(); err != nil {
return nil, err
@ -4244,6 +4260,38 @@ func (m *Messenger) AddCommunityToken(communityID string, chainID int, address s
return err
}
if community.IsControlNode() && (communityToken.PrivilegesLevel == token.MasterLevel || communityToken.PrivilegesLevel == token.OwnerLevel) {
permissionType := protobuf.CommunityTokenPermission_BECOME_TOKEN_OWNER
if communityToken.PrivilegesLevel == token.MasterLevel {
permissionType = protobuf.CommunityTokenPermission_BECOME_TOKEN_MASTER
}
contractAddresses := make(map[uint64]string)
contractAddresses[uint64(communityToken.ChainID)] = communityToken.Address
tokenCriteria := &protobuf.TokenCriteria{
ContractAddresses: contractAddresses,
Type: protobuf.CommunityTokenType_ERC721,
Symbol: communityToken.Symbol,
Name: communityToken.Name,
Amount: "1",
Decimals: uint64(communityToken.Decimals),
}
request := &requests.CreateCommunityTokenPermission{
CommunityID: community.ID(),
Type: permissionType,
TokenCriteria: []*protobuf.TokenCriteria{tokenCriteria},
IsPrivate: true,
ChatIds: []string{},
}
_, _, err := m.communitiesManager.CreateCommunityTokenPermission(request)
if err != nil {
return err
}
}
syncMsg := &protobuf.CommunityPrivilegedUserSyncMessage{
Type: protobuf.CommunityPrivilegedUserSyncMessage_ADD_COMMUNITY_TOKENS,
CommunityId: community.ID(),

View File

@ -2165,7 +2165,7 @@ func _1689931300_add_community_tokens_deployer_and_priv_levelUpSql() (*asset, er
return nil, err
}
info := bindataFileInfo{name: "1689931300_add_community_tokens_deployer_and_priv_level.up.sql", size: 156, mode: os.FileMode(0644), modTime: time.Unix(1692045698, 0)}
info := bindataFileInfo{name: "1689931300_add_community_tokens_deployer_and_priv_level.up.sql", size: 156, mode: os.FileMode(0644), modTime: time.Unix(1692220039, 0)}
a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x3f, 0x24, 0xd9, 0x4d, 0xe, 0x4b, 0xe3, 0x4c, 0xd1, 0xc, 0x72, 0xd4, 0x99, 0xe4, 0xb9, 0xb8, 0xe9, 0x38, 0x9e, 0x11, 0x48, 0xea, 0xe3, 0x5d, 0xd9, 0xd0, 0xef, 0x96, 0x38, 0x5a, 0xd4, 0xa5}}
return a, nil
}

View File

@ -91,6 +91,7 @@ const (
CommunityTokenPermission_CAN_VIEW_CHANNEL CommunityTokenPermission_Type = 3
CommunityTokenPermission_CAN_VIEW_AND_POST_CHANNEL CommunityTokenPermission_Type = 4
CommunityTokenPermission_BECOME_TOKEN_MASTER CommunityTokenPermission_Type = 5
CommunityTokenPermission_BECOME_TOKEN_OWNER CommunityTokenPermission_Type = 6
)
var CommunityTokenPermission_Type_name = map[int32]string{
@ -100,6 +101,7 @@ var CommunityTokenPermission_Type_name = map[int32]string{
3: "CAN_VIEW_CHANNEL",
4: "CAN_VIEW_AND_POST_CHANNEL",
5: "BECOME_TOKEN_MASTER",
6: "BECOME_TOKEN_OWNER",
}
var CommunityTokenPermission_Type_value = map[string]int32{
@ -109,6 +111,7 @@ var CommunityTokenPermission_Type_value = map[string]int32{
"CAN_VIEW_CHANNEL": 3,
"CAN_VIEW_AND_POST_CHANNEL": 4,
"BECOME_TOKEN_MASTER": 5,
"BECOME_TOKEN_OWNER": 6,
}
func (x CommunityTokenPermission_Type) String() string {
@ -1668,134 +1671,134 @@ func init() {
}
var fileDescriptor_f937943d74c1cd8b = []byte{
// 2052 bytes of a gzipped FileDescriptorProto
// 2059 bytes of a gzipped FileDescriptorProto
0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xcc, 0x58, 0xcf, 0x73, 0x1b, 0x49,
0xf5, 0xcf, 0xe8, 0x87, 0x2d, 0x3d, 0x49, 0xb6, 0xdc, 0x49, 0xec, 0x89, 0x93, 0x6c, 0x94, 0xf9,
0x7e, 0x29, 0xbc, 0xa1, 0x50, 0x76, 0x0d, 0x14, 0xa9, 0x5d, 0xd8, 0x5d, 0x45, 0x1e, 0xb2, 0xda,
0x44, 0x23, 0x6f, 0x4b, 0xde, 0xc0, 0x16, 0x30, 0x35, 0x9e, 0x69, 0xdb, 0x5d, 0x91, 0x66, 0xc4,
0x74, 0xcb, 0x85, 0x38, 0x70, 0x00, 0xfe, 0x02, 0x2e, 0x5c, 0xa9, 0xe2, 0xce, 0xbf, 0xc0, 0x81,
0x2a, 0x8e, 0xdc, 0xb9, 0x71, 0xe4, 0xc8, 0x89, 0x0b, 0x17, 0xaa, 0x7f, 0xcc, 0x68, 0x46, 0x92,
0xe3, 0x2c, 0x0b, 0x55, 0x9c, 0x34, 0xef, 0xf5, 0xeb, 0xd7, 0xef, 0xbd, 0xfe, 0xf4, 0xfb, 0x21,
0xd8, 0xf1, 0xa3, 0xc9, 0x64, 0x16, 0x52, 0x4e, 0x09, 0x6b, 0x4f, 0xe3, 0x88, 0x47, 0xa8, 0x22,
0x7f, 0x4e, 0x67, 0x67, 0xfb, 0x37, 0xfd, 0x0b, 0x8f, 0xbb, 0x34, 0x20, 0x21, 0xa7, 0x7c, 0xae,
0x96, 0xf7, 0x6b, 0x24, 0x9c, 0x4d, 0xb4, 0xac, 0x75, 0x09, 0xe5, 0x67, 0xb1, 0x17, 0x72, 0xf4,
0x10, 0xea, 0x89, 0xa6, 0xb9, 0x4b, 0x03, 0xd3, 0x68, 0x19, 0x07, 0x75, 0x5c, 0x4b, 0x79, 0xbd,
0x00, 0xdd, 0x85, 0xea, 0x84, 0x4c, 0x4e, 0x49, 0x2c, 0xd6, 0x0b, 0x72, 0xbd, 0xa2, 0x18, 0xbd,
0x00, 0xed, 0xc1, 0xa6, 0x3e, 0xcc, 0x2c, 0xb6, 0x8c, 0x83, 0x2a, 0xde, 0x10, 0x64, 0x2f, 0x40,
0xb7, 0xa0, 0xec, 0x8f, 0x23, 0xff, 0x95, 0x59, 0x6a, 0x19, 0x07, 0x25, 0xac, 0x08, 0xeb, 0x4f,
0x05, 0xd8, 0xee, 0x26, 0xba, 0xfb, 0x52, 0x09, 0xfa, 0x16, 0x94, 0xe3, 0x68, 0x4c, 0x98, 0x69,
0xb4, 0x8a, 0x07, 0x5b, 0x87, 0x0f, 0xda, 0x89, 0x1f, 0xed, 0x25, 0xc9, 0x36, 0x16, 0x62, 0x58,
0x49, 0xa3, 0x4f, 0x60, 0x27, 0x26, 0x97, 0xc4, 0x1b, 0x93, 0xc0, 0xf5, 0x7c, 0x3f, 0x9a, 0x85,
0x9c, 0x99, 0x85, 0x56, 0xf1, 0xa0, 0x76, 0x78, 0x67, 0xa1, 0x02, 0x6b, 0x91, 0x8e, 0x92, 0x78,
0x5a, 0x30, 0x0d, 0xdc, 0x8c, 0xf3, 0x4c, 0x86, 0x1e, 0xc1, 0xce, 0xd8, 0x63, 0xdc, 0x9d, 0x4d,
0x03, 0x8f, 0x13, 0x57, 0x19, 0x5e, 0x94, 0x86, 0x6f, 0x8b, 0x85, 0x13, 0xc9, 0xef, 0x4a, 0x17,
0x7e, 0x69, 0x40, 0x59, 0x1a, 0x82, 0x1a, 0x50, 0xc5, 0x83, 0x17, 0xb6, 0xeb, 0x0c, 0x1c, 0xbb,
0x79, 0x03, 0x6d, 0x01, 0x48, 0x72, 0xf0, 0xd2, 0xb1, 0x71, 0xd3, 0x48, 0xe9, 0xce, 0x51, 0xbf,
0xe7, 0x34, 0x4b, 0xe8, 0x36, 0xec, 0x48, 0x7a, 0x34, 0x78, 0x6e, 0x3b, 0x6e, 0xbf, 0x33, 0x1c,
0xd9, 0xb8, 0x59, 0xb6, 0x4a, 0x95, 0x42, 0xb3, 0x60, 0x95, 0x2a, 0xc5, 0x66, 0xf1, 0x91, 0x12,
0xe8, 0x77, 0x9c, 0xce, 0x33, 0xdb, 0x3d, 0x19, 0xda, 0x78, 0xf8, 0xe8, 0xb6, 0x62, 0x0d, 0x8e,
0x6c, 0xdc, 0x19, 0xd9, 0x6e, 0x77, 0xe0, 0x8c, 0x6c, 0x67, 0x64, 0xfd, 0xa2, 0x08, 0xbb, 0x69,
0x78, 0x46, 0xd1, 0x2b, 0x12, 0xf6, 0x09, 0xf7, 0x02, 0x8f, 0x7b, 0xe8, 0x0c, 0x90, 0x1f, 0x85,
0x3c, 0xf6, 0x7c, 0xee, 0x7a, 0x41, 0x10, 0x13, 0xc6, 0x74, 0x70, 0x6b, 0x87, 0xdf, 0x5e, 0x13,
0xdc, 0xdc, 0xee, 0x76, 0x57, 0x6f, 0xed, 0x24, 0x3b, 0xed, 0x90, 0xc7, 0x73, 0xbc, 0xe3, 0x2f,
0xf3, 0x51, 0x0b, 0x6a, 0x01, 0x61, 0x7e, 0x4c, 0xa7, 0x9c, 0x46, 0xa1, 0x44, 0x46, 0x15, 0x67,
0x59, 0x02, 0x03, 0x74, 0xe2, 0x9d, 0x13, 0x0d, 0x0d, 0x45, 0xa0, 0xf7, 0xa0, 0xca, 0xc5, 0x91,
0xa3, 0xf9, 0x94, 0x48, 0x74, 0x6c, 0x1d, 0xde, 0xbb, 0xca, 0x2c, 0x21, 0x83, 0x17, 0xe2, 0x68,
0x17, 0x36, 0xd8, 0x7c, 0x72, 0x1a, 0x8d, 0xcd, 0xb2, 0x42, 0x9b, 0xa2, 0x10, 0x82, 0x52, 0xe8,
0x4d, 0x88, 0xb9, 0x21, 0xb9, 0xf2, 0x1b, 0xed, 0x43, 0x25, 0x20, 0x3e, 0x9d, 0x78, 0x63, 0x66,
0x6e, 0xb6, 0x8c, 0x83, 0x06, 0x4e, 0xe9, 0xfd, 0x23, 0x11, 0xbd, 0x75, 0x8e, 0xa2, 0x26, 0x14,
0x5f, 0x91, 0xb9, 0x7c, 0x07, 0x25, 0x2c, 0x3e, 0x85, 0x17, 0x97, 0xde, 0x78, 0x46, 0xb4, 0x87,
0x8a, 0x78, 0xaf, 0xf0, 0xc4, 0xb0, 0xfe, 0x6a, 0xc0, 0xad, 0xd4, 0xde, 0x63, 0x12, 0x4f, 0x28,
0x63, 0x34, 0x0a, 0x19, 0xba, 0x03, 0x15, 0x12, 0x32, 0x37, 0x0a, 0xc7, 0x4a, 0x53, 0x05, 0x6f,
0x92, 0x90, 0x0d, 0xc2, 0xf1, 0x1c, 0x99, 0xb0, 0x39, 0x8d, 0xe9, 0xa5, 0xc7, 0x95, 0xbe, 0x0a,
0x4e, 0x48, 0xf4, 0x5d, 0xd8, 0xf0, 0x7c, 0x9f, 0x30, 0x26, 0xc3, 0xb5, 0x75, 0xf8, 0x95, 0x35,
0x41, 0xc9, 0x1c, 0xd2, 0xee, 0x48, 0x61, 0xac, 0x37, 0x59, 0x23, 0xd8, 0x50, 0x1c, 0x84, 0x60,
0xeb, 0xc4, 0x79, 0xee, 0x0c, 0x5e, 0x3a, 0x6e, 0xa7, 0xdb, 0xb5, 0x87, 0xc3, 0xe6, 0x0d, 0xb4,
0x03, 0x0d, 0x67, 0xe0, 0xf6, 0xed, 0xfe, 0x53, 0x1b, 0x0f, 0x3f, 0xee, 0x1d, 0x37, 0x0d, 0x74,
0x13, 0xb6, 0x7b, 0xce, 0x67, 0xbd, 0x51, 0x67, 0xd4, 0x1b, 0x38, 0xee, 0xc0, 0x79, 0xf1, 0x83,
0x66, 0x41, 0x80, 0x76, 0xe0, 0xb8, 0xd8, 0xfe, 0xf4, 0xc4, 0x1e, 0x8e, 0x9a, 0x45, 0xeb, 0x57,
0x45, 0x68, 0xc8, 0x9b, 0xe8, 0xc6, 0x94, 0x93, 0x98, 0x7a, 0xe8, 0x47, 0xaf, 0x81, 0x57, 0x7b,
0x61, 0x72, 0x6e, 0xd3, 0x17, 0x40, 0xd5, 0x3b, 0x50, 0xe2, 0x02, 0x18, 0x85, 0x37, 0x00, 0x86,
0x94, 0xcc, 0x60, 0xa2, 0xb8, 0x16, 0x13, 0xa5, 0x0c, 0x26, 0x76, 0x61, 0xc3, 0x9b, 0x88, 0x37,
0x9f, 0xe0, 0x47, 0x51, 0x22, 0xc7, 0x49, 0x90, 0xb9, 0x34, 0x60, 0xe6, 0x46, 0xab, 0x78, 0x50,
0xc2, 0x15, 0xc9, 0xe8, 0x05, 0x0c, 0x3d, 0x80, 0x9a, 0xb8, 0xcd, 0xa9, 0xc7, 0x39, 0x89, 0x43,
0x89, 0xa5, 0x2a, 0x06, 0x12, 0xb2, 0x63, 0xc5, 0xc9, 0x21, 0xad, 0x22, 0x81, 0xf3, 0x9f, 0x46,
0xda, 0x3f, 0x0b, 0x60, 0xe6, 0x03, 0xb0, 0x40, 0x02, 0xda, 0x82, 0x82, 0xce, 0xdc, 0x55, 0x5c,
0xa0, 0x01, 0x7a, 0x3f, 0x17, 0xc2, 0xaf, 0x5e, 0x15, 0xc2, 0x85, 0x86, 0x76, 0x26, 0x9a, 0x1f,
0xc0, 0x96, 0x8a, 0x84, 0xaf, 0xef, 0xce, 0x2c, 0xca, 0xab, 0xdd, 0xbb, 0xe2, 0x6a, 0x71, 0x83,
0xe7, 0xe0, 0x71, 0x07, 0x2a, 0xba, 0x20, 0x30, 0xb3, 0xd4, 0x2a, 0x1e, 0x54, 0xf1, 0xa6, 0xaa,
0x08, 0x0c, 0xdd, 0x07, 0xa0, 0xcc, 0x4d, 0xd0, 0x5f, 0x96, 0xe8, 0xaf, 0x52, 0x76, 0xac, 0x18,
0xd6, 0x6f, 0x0c, 0x28, 0xc9, 0x47, 0x7e, 0x0f, 0xcc, 0x04, 0xbf, 0x2a, 0x57, 0x1e, 0xdb, 0xb8,
0xdf, 0x1b, 0x0e, 0x7b, 0x03, 0xa7, 0x79, 0x03, 0x35, 0xa1, 0xfe, 0xd4, 0xee, 0x0e, 0xfa, 0x49,
0x62, 0x35, 0x04, 0xb6, 0x35, 0x47, 0xe1, 0xbb, 0x59, 0x40, 0xb7, 0xa0, 0xd9, 0xed, 0x38, 0xee,
0x67, 0x3d, 0xfb, 0xa5, 0xdb, 0xfd, 0xb8, 0xe3, 0x38, 0xf6, 0x8b, 0x66, 0x11, 0xdd, 0x87, 0x3b,
0x29, 0xb7, 0xe3, 0x1c, 0xb9, 0xc7, 0x83, 0xe1, 0x28, 0x5d, 0x2e, 0xa1, 0x3d, 0xb8, 0xa9, 0xf5,
0x2c, 0xa5, 0xe8, 0x7f, 0x54, 0x33, 0xef, 0xfc, 0x28, 0x9f, 0xe0, 0x54, 0xad, 0x30, 0x32, 0x45,
0x0e, 0xd9, 0xb0, 0xa9, 0xea, 0x63, 0x52, 0x8f, 0xbe, 0xb6, 0xe6, 0x0a, 0x32, 0x6a, 0xda, 0xaa,
0xbc, 0xe9, 0x37, 0x91, 0xec, 0x45, 0x1f, 0x41, 0x6d, 0xba, 0x78, 0xee, 0x12, 0xdc, 0xb5, 0xc3,
0xb7, 0x5e, 0x9f, 0x14, 0x70, 0x76, 0x0b, 0x3a, 0x84, 0x4a, 0xd2, 0x04, 0xc8, 0x70, 0xd7, 0x0e,
0x77, 0x33, 0xdb, 0xe5, 0xad, 0xa8, 0x55, 0x9c, 0xca, 0xa1, 0x0f, 0xa1, 0x2c, 0xee, 0x4b, 0xbd,
0x82, 0xda, 0xe1, 0xdb, 0xd7, 0x98, 0x2e, 0xb4, 0x68, 0xc3, 0xd5, 0x3e, 0x01, 0x80, 0x53, 0x2f,
0x74, 0xc7, 0x94, 0x71, 0x73, 0x53, 0x01, 0xe0, 0xd4, 0x0b, 0x5f, 0x50, 0xc6, 0x91, 0x03, 0xe0,
0x7b, 0x9c, 0x9c, 0x47, 0x31, 0x25, 0xe2, 0xa5, 0x2c, 0xa5, 0x8c, 0xf5, 0x07, 0xa4, 0x1b, 0xd4,
0x29, 0x19, 0x0d, 0xe8, 0x09, 0x98, 0x5e, 0xec, 0x5f, 0xd0, 0x4b, 0xe2, 0x4e, 0xbc, 0xf3, 0x90,
0xf0, 0x31, 0x0d, 0x5f, 0xe9, 0xea, 0x5d, 0x95, 0x37, 0xb2, 0xab, 0xd7, 0xfb, 0xe9, 0xb2, 0x2c,
0xe2, 0xe8, 0x19, 0x6c, 0x79, 0xc1, 0x84, 0x86, 0x2e, 0x23, 0x9c, 0xd3, 0xf0, 0x9c, 0x99, 0x20,
0xe3, 0xd3, 0x5a, 0x63, 0x4d, 0x47, 0x08, 0x0e, 0xb5, 0x1c, 0x6e, 0x78, 0x59, 0x12, 0xfd, 0x1f,
0x34, 0x68, 0xc8, 0xe3, 0xc8, 0x9d, 0x10, 0xc6, 0x44, 0xa9, 0xab, 0xc9, 0x67, 0x58, 0x97, 0xcc,
0xbe, 0xe2, 0x09, 0xa1, 0x68, 0x96, 0x15, 0xaa, 0x2b, 0x21, 0xc9, 0x4c, 0x84, 0xee, 0x41, 0x95,
0x84, 0x7e, 0x3c, 0x9f, 0x72, 0x12, 0x98, 0x0d, 0xf5, 0x38, 0x52, 0x86, 0x48, 0x66, 0xdc, 0x3b,
0x67, 0xe6, 0x96, 0x8c, 0xa8, 0xfc, 0x46, 0x1e, 0xec, 0xa8, 0xa7, 0x9a, 0x85, 0xc9, 0xb6, 0x8c,
0xea, 0x37, 0xaf, 0x89, 0xea, 0x52, 0x02, 0xd0, 0xb1, 0x6d, 0xf2, 0x25, 0x36, 0xfa, 0x21, 0xdc,
0x59, 0xb4, 0x87, 0x72, 0x95, 0xb9, 0x13, 0xdd, 0x2a, 0x98, 0x4d, 0x79, 0x54, 0xeb, 0xba, 0x96,
0x02, 0xef, 0xf9, 0x39, 0x3e, 0x4b, 0x3b, 0x95, 0x77, 0xe0, 0x96, 0xe7, 0x73, 0x79, 0x7d, 0x0a,
0xf3, 0xae, 0xec, 0xc7, 0xcc, 0x1d, 0x79, 0x77, 0x48, 0xad, 0xe9, 0xc7, 0xd1, 0x15, 0x2b, 0xfb,
0x27, 0x50, 0xcf, 0x3e, 0x96, 0x6c, 0x0e, 0xad, 0xaa, 0x1c, 0xfa, 0x38, 0x9b, 0x43, 0x73, 0xad,
0xe0, 0x52, 0x37, 0x99, 0x49, 0xaf, 0xfb, 0x9f, 0x02, 0x2c, 0x80, 0xbc, 0x46, 0xe9, 0xd7, 0xf3,
0x4a, 0xf7, 0xd6, 0x28, 0x15, 0xfb, 0xb3, 0x2a, 0x3f, 0x87, 0xed, 0x25, 0xe8, 0xae, 0xd1, 0xfb,
0x6e, 0x5e, 0xef, 0xdd, 0x75, 0x7a, 0x95, 0x92, 0x79, 0x56, 0xf7, 0x39, 0xdc, 0x5e, 0x7b, 0x81,
0x6b, 0x4e, 0x78, 0x92, 0x3f, 0xc1, 0xba, 0xbe, 0x18, 0x64, 0xcb, 0xce, 0x8f, 0x33, 0x4d, 0x66,
0xee, 0x19, 0xa0, 0x23, 0x78, 0x30, 0xa5, 0x61, 0x02, 0x68, 0xd7, 0x1b, 0x8f, 0xd3, 0x3b, 0x24,
0xa1, 0x77, 0x3a, 0x26, 0x81, 0x6e, 0x7c, 0xee, 0x4e, 0x69, 0xa8, 0x21, 0xde, 0x19, 0x8f, 0xd3,
0xcb, 0x93, 0x22, 0xd6, 0x5f, 0x0a, 0xd0, 0xc8, 0x45, 0x10, 0x7d, 0xb0, 0xc8, 0x9d, 0xaa, 0xa5,
0xf8, 0xff, 0x2b, 0x62, 0xfd, 0x66, 0x49, 0xb3, 0xf0, 0xe5, 0x92, 0x66, 0xf1, 0x0d, 0x93, 0xe6,
0x03, 0xa8, 0xe9, 0xb4, 0x24, 0x87, 0x28, 0xd5, 0x71, 0x24, 0x99, 0x4a, 0xcc, 0x50, 0xfb, 0x50,
0x99, 0x46, 0x8c, 0xca, 0x46, 0x59, 0x64, 0xe2, 0x32, 0x4e, 0xe9, 0xff, 0x12, 0xa6, 0xad, 0x00,
0x76, 0x56, 0x40, 0xb4, 0x6c, 0xa8, 0xb1, 0x62, 0x68, 0xd2, 0x34, 0x15, 0xf2, 0x8d, 0x74, 0x6a,
0x7c, 0x31, 0x6f, 0xbc, 0xf5, 0x6b, 0x03, 0xb6, 0x97, 0x66, 0x2c, 0xd1, 0xe2, 0xea, 0xc6, 0x50,
0x1f, 0x90, 0x90, 0x22, 0xc7, 0x31, 0x7a, 0x1e, 0x7a, 0x7c, 0x16, 0x13, 0x3d, 0x4a, 0x2e, 0x18,
0xa2, 0x09, 0xf3, 0x2f, 0x3c, 0xaa, 0x9a, 0xb0, 0xa2, 0x6a, 0xc2, 0x24, 0x43, 0x34, 0x0f, 0x8f,
0xa0, 0x49, 0x59, 0x87, 0xc6, 0x41, 0x1c, 0x4d, 0x75, 0x23, 0x25, 0xe3, 0x5c, 0xc1, 0x2b, 0x7c,
0xeb, 0xef, 0x46, 0x06, 0xb7, 0x98, 0xfc, 0x64, 0x46, 0x18, 0x1f, 0x45, 0x9f, 0x44, 0xf4, 0xaa,
0x8a, 0xad, 0xfb, 0xf5, 0x8c, 0xe7, 0xa2, 0x5f, 0x77, 0x84, 0xf3, 0x57, 0x0e, 0xb8, 0xcb, 0x93,
0x73, 0x69, 0x75, 0x72, 0x7e, 0x08, 0xf5, 0x80, 0xb2, 0xe9, 0xd8, 0x9b, 0x2b, 0xd5, 0x65, 0x3d,
0x22, 0x29, 0x9e, 0x54, 0xff, 0xbd, 0x75, 0x53, 0xec, 0xc6, 0x35, 0x53, 0xec, 0xea, 0x04, 0x6b,
0xfd, 0xd6, 0x80, 0xfb, 0xa9, 0xcb, 0x76, 0x40, 0x39, 0x5e, 0x9e, 0x71, 0xd7, 0x7b, 0xbe, 0xec,
0x45, 0x61, 0xd5, 0x8b, 0xb5, 0x26, 0x16, 0xbf, 0xb8, 0x89, 0xbf, 0x37, 0xe0, 0x5e, 0x06, 0x91,
0xa1, 0x4f, 0xc6, 0xff, 0xd3, 0x77, 0x63, 0xfd, 0xcd, 0x80, 0xb7, 0xd6, 0xc3, 0x08, 0x13, 0x36,
0x8d, 0x42, 0x46, 0xae, 0x30, 0xf9, 0x3b, 0x50, 0x4d, 0x8f, 0x7a, 0x4d, 0x0a, 0xca, 0x14, 0x64,
0xbc, 0xd8, 0x20, 0x9e, 0x9b, 0x18, 0xe9, 0x64, 0x1f, 0x50, 0x94, 0x08, 0x4f, 0x69, 0x71, 0xde,
0x79, 0xec, 0x85, 0x5c, 0x7b, 0xa4, 0x88, 0x15, 0x77, 0xcb, 0xab, 0xee, 0xde, 0x07, 0x50, 0x2d,
0x92, 0x3b, 0x8b, 0xa9, 0x1e, 0x93, 0xab, 0x8a, 0x73, 0x12, 0x53, 0x0b, 0xc3, 0xde, 0xaa, 0xa7,
0x2f, 0x88, 0x77, 0x49, 0xfe, 0x6d, 0xdc, 0x58, 0xdf, 0x87, 0x87, 0x99, 0xf4, 0xa4, 0x2a, 0xc0,
0x72, 0x37, 0x76, 0x85, 0xf6, 0xbc, 0xb5, 0x85, 0x65, 0x6b, 0xff, 0x60, 0x40, 0xed, 0xa5, 0xf7,
0x6a, 0x96, 0xb4, 0x4e, 0x4d, 0x28, 0x32, 0x7a, 0xae, 0xff, 0xbb, 0x12, 0x9f, 0x22, 0xd1, 0x70,
0x3a, 0x21, 0x8c, 0x7b, 0x93, 0xa9, 0xdc, 0x5f, 0xc2, 0x0b, 0x86, 0x38, 0x94, 0x47, 0x53, 0xea,
0xcb, 0xf0, 0xd6, 0xb1, 0x22, 0xe4, 0x64, 0xee, 0xcd, 0xc7, 0x91, 0x97, 0xe0, 0x25, 0x21, 0xd5,
0x4a, 0x10, 0xd0, 0xf0, 0x5c, 0x87, 0x36, 0x21, 0x45, 0xba, 0xbc, 0xf0, 0xd8, 0x85, 0x0c, 0x68,
0x1d, 0xcb, 0x6f, 0x64, 0x41, 0x9d, 0x5f, 0xd0, 0x38, 0x38, 0xf6, 0x62, 0x11, 0x07, 0x3d, 0x2f,
0xe6, 0x78, 0xd6, 0xcf, 0x61, 0x3f, 0xe3, 0x40, 0x12, 0x96, 0xa4, 0x2f, 0x32, 0x61, 0xf3, 0x92,
0xc4, 0xa2, 0x1c, 0x49, 0x9f, 0x1a, 0x38, 0x21, 0xc5, 0x79, 0x67, 0x71, 0x34, 0xd1, 0x2e, 0xc9,
0x6f, 0x31, 0xfe, 0xf1, 0x48, 0xff, 0x5b, 0x55, 0xe0, 0x91, 0x38, 0x5f, 0x8c, 0xd5, 0x24, 0xe4,
0x23, 0xe9, 0xa4, 0x98, 0xc2, 0xea, 0x38, 0xc7, 0xb3, 0x7e, 0x67, 0x00, 0x5a, 0x35, 0xe0, 0x35,
0x07, 0x7f, 0x04, 0x95, 0xb4, 0xef, 0x53, 0x88, 0xce, 0x14, 0xe6, 0xab, 0x5d, 0xc1, 0xe9, 0x2e,
0xf4, 0xae, 0xd0, 0x20, 0x65, 0x92, 0xec, 0x71, 0x7b, 0xad, 0x06, 0x9c, 0x8a, 0x59, 0x7f, 0x34,
0xe0, 0xc1, 0xaa, 0xee, 0x5e, 0x18, 0x90, 0x9f, 0xbe, 0x41, 0xac, 0xbe, 0xbc, 0xc9, 0xbb, 0xb0,
0x11, 0x9d, 0x9d, 0x31, 0xc2, 0x75, 0x74, 0x35, 0x25, 0x6e, 0x81, 0xd1, 0x9f, 0x11, 0xfd, 0xd7,
0xa6, 0xfc, 0x5e, 0xc6, 0x48, 0x29, 0xc5, 0x88, 0xf5, 0x67, 0x03, 0xf6, 0xae, 0xf0, 0x02, 0x3d,
0x87, 0x8a, 0x9e, 0x50, 0x92, 0x7e, 0xe7, 0xf1, 0xeb, 0x6c, 0x94, 0x9b, 0xda, 0x9a, 0xd0, 0xad,
0x4f, 0xaa, 0x60, 0xff, 0x0c, 0x1a, 0xb9, 0xa5, 0x35, 0x9d, 0xc4, 0x87, 0xf9, 0x4e, 0xe2, 0xed,
0x6b, 0x0f, 0x4b, 0xa3, 0xb2, 0xe8, 0x2c, 0x9e, 0x36, 0x3e, 0xaf, 0xb5, 0x1f, 0xbf, 0x9f, 0xec,
0x3c, 0xdd, 0x90, 0x5f, 0xdf, 0xf8, 0x57, 0x00, 0x00, 0x00, 0xff, 0xff, 0x3c, 0x4d, 0xe1, 0xbc,
0x93, 0x16, 0x00, 0x00,
0xf5, 0xcf, 0x68, 0x64, 0x5b, 0x7a, 0xb2, 0x6c, 0xb9, 0x93, 0xd8, 0x13, 0x27, 0xd9, 0x28, 0xf3,
0xfd, 0x52, 0x78, 0x43, 0xa1, 0xec, 0x1a, 0x28, 0x52, 0xbb, 0xb0, 0xbb, 0x8a, 0x3c, 0x64, 0xb5,
0x89, 0x46, 0xde, 0x96, 0xbc, 0x81, 0x2d, 0x60, 0x6a, 0x3c, 0xd3, 0xb6, 0xbb, 0x22, 0xcd, 0x88,
0xe9, 0x96, 0x0b, 0x71, 0xe0, 0x00, 0xfc, 0x05, 0xf0, 0x0f, 0x50, 0xc5, 0x1d, 0xfe, 0x04, 0x0e,
0x54, 0x71, 0xe4, 0xce, 0x8d, 0x23, 0x47, 0x4e, 0x9c, 0xa9, 0xfe, 0x31, 0xa3, 0x19, 0x49, 0x8e,
0xb3, 0x2c, 0x54, 0x71, 0xd2, 0xbc, 0xd7, 0xaf, 0x5f, 0xbf, 0xf7, 0xfa, 0xd3, 0xef, 0x87, 0x60,
0x27, 0x88, 0xc7, 0xe3, 0x69, 0x44, 0x39, 0x25, 0xac, 0x35, 0x49, 0x62, 0x1e, 0xa3, 0x8a, 0xfc,
0x39, 0x9d, 0x9e, 0xed, 0xdf, 0x0c, 0x2e, 0x7c, 0xee, 0xd1, 0x90, 0x44, 0x9c, 0xf2, 0x99, 0x5a,
0xde, 0xaf, 0x91, 0x68, 0x3a, 0xd6, 0xb2, 0xf6, 0x25, 0xac, 0x3d, 0x4b, 0xfc, 0x88, 0xa3, 0x87,
0xb0, 0x99, 0x6a, 0x9a, 0x79, 0x34, 0xb4, 0x8c, 0xa6, 0x71, 0xb0, 0x89, 0x6b, 0x19, 0xaf, 0x1b,
0xa2, 0xbb, 0x50, 0x1d, 0x93, 0xf1, 0x29, 0x49, 0xc4, 0x7a, 0x49, 0xae, 0x57, 0x14, 0xa3, 0x1b,
0xa2, 0x3d, 0xd8, 0xd0, 0x87, 0x59, 0x66, 0xd3, 0x38, 0xa8, 0xe2, 0x75, 0x41, 0x76, 0x43, 0x74,
0x0b, 0xd6, 0x82, 0x51, 0x1c, 0xbc, 0xb2, 0xca, 0x4d, 0xe3, 0xa0, 0x8c, 0x15, 0x61, 0xff, 0xb9,
0x04, 0xdb, 0x9d, 0x54, 0x77, 0x4f, 0x2a, 0x41, 0xdf, 0x82, 0xb5, 0x24, 0x1e, 0x11, 0x66, 0x19,
0x4d, 0xf3, 0x60, 0xeb, 0xf0, 0x41, 0x2b, 0xf5, 0xa3, 0xb5, 0x20, 0xd9, 0xc2, 0x42, 0x0c, 0x2b,
0x69, 0xf4, 0x09, 0xec, 0x24, 0xe4, 0x92, 0xf8, 0x23, 0x12, 0x7a, 0x7e, 0x10, 0xc4, 0xd3, 0x88,
0x33, 0xab, 0xd4, 0x34, 0x0f, 0x6a, 0x87, 0x77, 0xe6, 0x2a, 0xb0, 0x16, 0x69, 0x2b, 0x89, 0xa7,
0x25, 0xcb, 0xc0, 0x8d, 0xa4, 0xc8, 0x64, 0xe8, 0x11, 0xec, 0x8c, 0x7c, 0xc6, 0xbd, 0xe9, 0x24,
0xf4, 0x39, 0xf1, 0x94, 0xe1, 0xa6, 0x34, 0x7c, 0x5b, 0x2c, 0x9c, 0x48, 0x7e, 0x47, 0xba, 0xf0,
0x4b, 0x03, 0xd6, 0xa4, 0x21, 0xa8, 0x0e, 0x55, 0xdc, 0x7f, 0xe1, 0x78, 0x6e, 0xdf, 0x75, 0x1a,
0x37, 0xd0, 0x16, 0x80, 0x24, 0xfb, 0x2f, 0x5d, 0x07, 0x37, 0x8c, 0x8c, 0x6e, 0x1f, 0xf5, 0xba,
0x6e, 0xa3, 0x8c, 0x6e, 0xc3, 0x8e, 0xa4, 0x87, 0xfd, 0xe7, 0x8e, 0xeb, 0xf5, 0xda, 0x83, 0xa1,
0x83, 0x1b, 0x6b, 0x76, 0xb9, 0x52, 0x6a, 0x94, 0xec, 0x72, 0xc5, 0x6c, 0x98, 0x8f, 0x94, 0x40,
0xaf, 0xed, 0xb6, 0x9f, 0x39, 0xde, 0xc9, 0xc0, 0xc1, 0x83, 0x47, 0xb7, 0x15, 0xab, 0x7f, 0xe4,
0xe0, 0xf6, 0xd0, 0xf1, 0x3a, 0x7d, 0x77, 0xe8, 0xb8, 0x43, 0xfb, 0x17, 0x26, 0xec, 0x66, 0xe1,
0x19, 0xc6, 0xaf, 0x48, 0xd4, 0x23, 0xdc, 0x0f, 0x7d, 0xee, 0xa3, 0x33, 0x40, 0x41, 0x1c, 0xf1,
0xc4, 0x0f, 0xb8, 0xe7, 0x87, 0x61, 0x42, 0x18, 0xd3, 0xc1, 0xad, 0x1d, 0x7e, 0x7b, 0x45, 0x70,
0x0b, 0xbb, 0x5b, 0x1d, 0xbd, 0xb5, 0x9d, 0xee, 0x74, 0x22, 0x9e, 0xcc, 0xf0, 0x4e, 0xb0, 0xc8,
0x47, 0x4d, 0xa8, 0x85, 0x84, 0x05, 0x09, 0x9d, 0x70, 0x1a, 0x47, 0x12, 0x19, 0x55, 0x9c, 0x67,
0x09, 0x0c, 0xd0, 0xb1, 0x7f, 0x4e, 0x34, 0x34, 0x14, 0x81, 0xde, 0x83, 0x2a, 0x17, 0x47, 0x0e,
0x67, 0x13, 0x22, 0xd1, 0xb1, 0x75, 0x78, 0xef, 0x2a, 0xb3, 0x84, 0x0c, 0x9e, 0x8b, 0xa3, 0x5d,
0x58, 0x67, 0xb3, 0xf1, 0x69, 0x3c, 0xb2, 0xd6, 0x14, 0xda, 0x14, 0x85, 0x10, 0x94, 0x23, 0x7f,
0x4c, 0xac, 0x75, 0xc9, 0x95, 0xdf, 0x68, 0x1f, 0x2a, 0x21, 0x09, 0xe8, 0xd8, 0x1f, 0x31, 0x6b,
0xa3, 0x69, 0x1c, 0xd4, 0x71, 0x46, 0xef, 0x1f, 0x89, 0xe8, 0xad, 0x72, 0x14, 0x35, 0xc0, 0x7c,
0x45, 0x66, 0xf2, 0x1d, 0x94, 0xb1, 0xf8, 0x14, 0x5e, 0x5c, 0xfa, 0xa3, 0x29, 0xd1, 0x1e, 0x2a,
0xe2, 0xbd, 0xd2, 0x13, 0xc3, 0xfe, 0x9b, 0x01, 0xb7, 0x32, 0x7b, 0x8f, 0x49, 0x32, 0xa6, 0x8c,
0xd1, 0x38, 0x62, 0xe8, 0x0e, 0x54, 0x48, 0xc4, 0xbc, 0x38, 0x1a, 0x29, 0x4d, 0x15, 0xbc, 0x41,
0x22, 0xd6, 0x8f, 0x46, 0x33, 0x64, 0xc1, 0xc6, 0x24, 0xa1, 0x97, 0x3e, 0x57, 0xfa, 0x2a, 0x38,
0x25, 0xd1, 0x77, 0x61, 0xdd, 0x0f, 0x02, 0xc2, 0x98, 0x0c, 0xd7, 0xd6, 0xe1, 0x57, 0x56, 0x04,
0x25, 0x77, 0x48, 0xab, 0x2d, 0x85, 0xb1, 0xde, 0x64, 0x0f, 0x61, 0x5d, 0x71, 0x10, 0x82, 0xad,
0x13, 0xf7, 0xb9, 0xdb, 0x7f, 0xe9, 0x7a, 0xed, 0x4e, 0xc7, 0x19, 0x0c, 0x1a, 0x37, 0xd0, 0x0e,
0xd4, 0xdd, 0xbe, 0xd7, 0x73, 0x7a, 0x4f, 0x1d, 0x3c, 0xf8, 0xb8, 0x7b, 0xdc, 0x30, 0xd0, 0x4d,
0xd8, 0xee, 0xba, 0x9f, 0x75, 0x87, 0xed, 0x61, 0xb7, 0xef, 0x7a, 0x7d, 0xf7, 0xc5, 0x0f, 0x1a,
0x25, 0x01, 0xda, 0xbe, 0xeb, 0x61, 0xe7, 0xd3, 0x13, 0x67, 0x30, 0x6c, 0x98, 0xf6, 0xaf, 0x4c,
0xa8, 0xcb, 0x9b, 0xe8, 0x24, 0x94, 0x93, 0x84, 0xfa, 0xe8, 0x47, 0xaf, 0x81, 0x57, 0x6b, 0x6e,
0x72, 0x61, 0xd3, 0x17, 0x40, 0xd5, 0x3b, 0x50, 0xe6, 0x02, 0x18, 0xa5, 0x37, 0x00, 0x86, 0x94,
0xcc, 0x61, 0xc2, 0x5c, 0x89, 0x89, 0x72, 0x0e, 0x13, 0xbb, 0xb0, 0xee, 0x8f, 0xc5, 0x9b, 0x4f,
0xf1, 0xa3, 0x28, 0x91, 0xe3, 0x24, 0xc8, 0x3c, 0x1a, 0x32, 0x6b, 0xbd, 0x69, 0x1e, 0x94, 0x71,
0x45, 0x32, 0xba, 0x21, 0x43, 0x0f, 0xa0, 0x26, 0x6e, 0x73, 0xe2, 0x73, 0x4e, 0x92, 0x48, 0x62,
0xa9, 0x8a, 0x81, 0x44, 0xec, 0x58, 0x71, 0x0a, 0x48, 0xab, 0x48, 0xe0, 0xfc, 0xa7, 0x91, 0xf6,
0x1b, 0x13, 0xac, 0x62, 0x00, 0xe6, 0x48, 0x40, 0x5b, 0x50, 0xd2, 0x99, 0xbb, 0x8a, 0x4b, 0x34,
0x44, 0xef, 0x17, 0x42, 0xf8, 0xd5, 0xab, 0x42, 0x38, 0xd7, 0xd0, 0xca, 0x45, 0xf3, 0x03, 0xd8,
0x52, 0x91, 0x08, 0xf4, 0xdd, 0x59, 0xa6, 0xbc, 0xda, 0xbd, 0x2b, 0xae, 0x16, 0xd7, 0x79, 0x01,
0x1e, 0x77, 0xa0, 0xa2, 0x0b, 0x02, 0xb3, 0xca, 0x4d, 0xf3, 0xa0, 0x8a, 0x37, 0x54, 0x45, 0x60,
0xe8, 0x3e, 0x00, 0x65, 0x5e, 0x8a, 0xfe, 0x35, 0x89, 0xfe, 0x2a, 0x65, 0xc7, 0x8a, 0x61, 0xff,
0xc1, 0x80, 0xb2, 0x7c, 0xe4, 0xf7, 0xc0, 0x4a, 0xf1, 0xab, 0x72, 0xe5, 0xb1, 0x83, 0x7b, 0xdd,
0xc1, 0xa0, 0xdb, 0x77, 0x1b, 0x37, 0x50, 0x03, 0x36, 0x9f, 0x3a, 0x9d, 0x7e, 0x2f, 0x4d, 0xac,
0x86, 0xc0, 0xb6, 0xe6, 0x28, 0x7c, 0x37, 0x4a, 0xe8, 0x16, 0x34, 0x3a, 0x6d, 0xd7, 0xfb, 0xac,
0xeb, 0xbc, 0xf4, 0x3a, 0x1f, 0xb7, 0x5d, 0xd7, 0x79, 0xd1, 0x30, 0xd1, 0x7d, 0xb8, 0x93, 0x71,
0xdb, 0xee, 0x91, 0x77, 0xdc, 0x1f, 0x0c, 0xb3, 0xe5, 0x32, 0xda, 0x83, 0x9b, 0x5a, 0x4f, 0x31,
0x45, 0xa3, 0x5d, 0x40, 0x85, 0x05, 0x95, 0xe1, 0xd7, 0xed, 0x7f, 0x56, 0x73, 0xef, 0xff, 0xa8,
0x98, 0xf8, 0x54, 0x0d, 0x31, 0x72, 0xc5, 0x0f, 0x39, 0xb0, 0xa1, 0xea, 0x66, 0x5a, 0xa7, 0xbe,
0xb6, 0xe2, 0x6a, 0x72, 0x6a, 0x5a, 0xaa, 0xec, 0xe9, 0xb7, 0x92, 0xee, 0x45, 0x1f, 0x41, 0x6d,
0x32, 0x4f, 0x03, 0x12, 0xf4, 0xb5, 0xc3, 0xb7, 0x5e, 0x9f, 0x2c, 0x70, 0x7e, 0x0b, 0x3a, 0x84,
0x4a, 0xda, 0x1c, 0xc8, 0x6b, 0xa8, 0x1d, 0xee, 0xe6, 0xb6, 0xcb, 0xdb, 0x52, 0xab, 0x38, 0x93,
0x43, 0x1f, 0xc2, 0x9a, 0xb8, 0x47, 0xf5, 0x3a, 0x6a, 0x87, 0x6f, 0x5f, 0x63, 0xba, 0xd0, 0xa2,
0x0d, 0x57, 0xfb, 0x04, 0x30, 0x4e, 0xfd, 0xc8, 0x1b, 0x51, 0xc6, 0xad, 0x0d, 0x05, 0x8c, 0x53,
0x3f, 0x7a, 0x41, 0x19, 0x47, 0x2e, 0x40, 0xe0, 0x73, 0x72, 0x1e, 0x27, 0x94, 0x88, 0x17, 0xb4,
0x90, 0x4a, 0x56, 0x1f, 0x90, 0x6d, 0x50, 0xa7, 0xe4, 0x34, 0xa0, 0x27, 0x60, 0xf9, 0x49, 0x70,
0x41, 0x2f, 0x89, 0x37, 0xf6, 0xcf, 0x23, 0xc2, 0x47, 0x34, 0x7a, 0xa5, 0xab, 0x7a, 0x55, 0xde,
0xc8, 0xae, 0x5e, 0xef, 0x65, 0xcb, 0xb2, 0xb8, 0xa3, 0x67, 0xb0, 0xe5, 0x87, 0x63, 0x1a, 0x79,
0x8c, 0x70, 0x4e, 0xa3, 0x73, 0x66, 0x81, 0x8c, 0x4f, 0x73, 0x85, 0x35, 0x6d, 0x21, 0x38, 0xd0,
0x72, 0xb8, 0xee, 0xe7, 0x49, 0xf4, 0x7f, 0x50, 0xa7, 0x11, 0x4f, 0x62, 0x6f, 0x4c, 0x18, 0x13,
0x25, 0xb0, 0x26, 0x9f, 0xe7, 0xa6, 0x64, 0xf6, 0x14, 0x4f, 0x08, 0xc5, 0xd3, 0xbc, 0xd0, 0xa6,
0x12, 0x92, 0xcc, 0x54, 0xe8, 0x1e, 0x54, 0x49, 0x14, 0x24, 0xb3, 0x09, 0x27, 0xa1, 0x55, 0x57,
0x8f, 0x26, 0x63, 0x88, 0x24, 0xc7, 0xfd, 0x73, 0x66, 0x6d, 0xc9, 0x88, 0xca, 0x6f, 0xe4, 0xc3,
0x8e, 0x7a, 0xc2, 0x79, 0x98, 0x6c, 0xcb, 0xa8, 0x7e, 0xf3, 0x9a, 0xa8, 0x2e, 0x24, 0x06, 0x1d,
0xdb, 0x06, 0x5f, 0x60, 0xa3, 0x1f, 0xc2, 0x9d, 0x79, 0xdb, 0x28, 0x57, 0x99, 0x37, 0xd6, 0x2d,
0x84, 0xd5, 0x90, 0x47, 0x35, 0xaf, 0x6b, 0x35, 0xf0, 0x5e, 0x50, 0xe0, 0xb3, 0xac, 0x83, 0x79,
0x07, 0x6e, 0xf9, 0x01, 0x97, 0xd7, 0xa7, 0x30, 0xef, 0xc9, 0x3e, 0xcd, 0xda, 0x91, 0x77, 0x87,
0xd4, 0x9a, 0x7e, 0x1c, 0x1d, 0xb1, 0xb2, 0x7f, 0x02, 0x9b, 0xf9, 0xc7, 0x92, 0xcf, 0xad, 0x55,
0x95, 0x5b, 0x1f, 0xe7, 0x73, 0x6b, 0xa1, 0x45, 0x5c, 0xe8, 0x32, 0x73, 0x69, 0x77, 0xff, 0x53,
0x80, 0x39, 0x90, 0x57, 0x28, 0xfd, 0x7a, 0x51, 0xe9, 0xde, 0x0a, 0xa5, 0x62, 0x7f, 0x5e, 0xe5,
0xe7, 0xb0, 0xbd, 0x00, 0xdd, 0x15, 0x7a, 0xdf, 0x2d, 0xea, 0xbd, 0xbb, 0x4a, 0xaf, 0x52, 0x32,
0xcb, 0xeb, 0x3e, 0x87, 0xdb, 0x2b, 0x2f, 0x70, 0xc5, 0x09, 0x4f, 0x8a, 0x27, 0xd8, 0xd7, 0x17,
0x89, 0x7c, 0x39, 0xfa, 0x71, 0xae, 0xf9, 0x2c, 0x3c, 0x03, 0x74, 0x04, 0x0f, 0x26, 0x34, 0x4a,
0x01, 0xed, 0xf9, 0xa3, 0x51, 0x76, 0x87, 0x24, 0xf2, 0x4f, 0x47, 0x24, 0xd4, 0x0d, 0xd1, 0xdd,
0x09, 0x8d, 0x34, 0xc4, 0xdb, 0xa3, 0x51, 0x76, 0x79, 0x52, 0xc4, 0xfe, 0x6b, 0x09, 0xea, 0x85,
0x08, 0xa2, 0x0f, 0xe6, 0xb9, 0x53, 0xb5, 0x1a, 0xff, 0x7f, 0x45, 0xac, 0xdf, 0x2c, 0x69, 0x96,
0xbe, 0x5c, 0xd2, 0x34, 0xdf, 0x30, 0x69, 0x3e, 0x80, 0x9a, 0x4e, 0x4b, 0x72, 0xb8, 0x52, 0x9d,
0x48, 0x9a, 0xa9, 0xc4, 0x6c, 0xb5, 0x0f, 0x95, 0x49, 0xcc, 0xa8, 0x6c, 0xa0, 0x45, 0x26, 0x5e,
0xc3, 0x19, 0xfd, 0x5f, 0xc2, 0xb4, 0x1d, 0xc2, 0xce, 0x12, 0x88, 0x16, 0x0d, 0x35, 0x96, 0x0c,
0x4d, 0x9b, 0xa9, 0x52, 0xb1, 0xc1, 0xce, 0x8c, 0x37, 0x8b, 0xc6, 0xdb, 0xbf, 0x36, 0x60, 0x7b,
0x61, 0xf6, 0x12, 0xad, 0xaf, 0x6e, 0x18, 0xf5, 0x01, 0x29, 0x29, 0x72, 0x1c, 0xa3, 0xe7, 0x91,
0xcf, 0xa7, 0x09, 0xd1, 0x23, 0xe6, 0x9c, 0x21, 0x9a, 0xb3, 0xe0, 0xc2, 0xa7, 0xaa, 0x39, 0x33,
0x55, 0x73, 0x26, 0x19, 0xa2, 0xa9, 0x78, 0x04, 0x0d, 0xca, 0xda, 0x34, 0x09, 0x93, 0x78, 0xa2,
0x1b, 0x2c, 0x19, 0xe7, 0x0a, 0x5e, 0xe2, 0xdb, 0xff, 0x30, 0x72, 0xb8, 0xc5, 0xe4, 0x27, 0x53,
0xc2, 0xf8, 0x30, 0xfe, 0x24, 0xa6, 0x57, 0x55, 0x6c, 0xdd, 0xc7, 0xe7, 0x3c, 0x17, 0x7d, 0xbc,
0x2b, 0x9c, 0xbf, 0x72, 0xf0, 0x5d, 0x9c, 0xa8, 0xcb, 0xcb, 0x13, 0xf5, 0x43, 0xd8, 0x0c, 0x29,
0x9b, 0x8c, 0xfc, 0x99, 0x52, 0xbd, 0xa6, 0x47, 0x27, 0xc5, 0x93, 0xea, 0xbf, 0xb7, 0x6a, 0xba,
0x5d, 0xbf, 0x66, 0xba, 0x5d, 0x9e, 0x6c, 0xed, 0xdf, 0x1a, 0x70, 0x3f, 0x73, 0xd9, 0x09, 0x29,
0xc7, 0x8b, 0xb3, 0xef, 0x6a, 0xcf, 0x17, 0xbd, 0x28, 0x2d, 0x7b, 0xb1, 0xd2, 0x44, 0xf3, 0x8b,
0x9b, 0xf8, 0x7b, 0x03, 0xee, 0xe5, 0x10, 0x19, 0x05, 0x64, 0xf4, 0x3f, 0x7d, 0x37, 0xf6, 0xdf,
0x0d, 0x78, 0x6b, 0x35, 0x8c, 0x30, 0x61, 0x93, 0x38, 0x62, 0xe4, 0x0a, 0x93, 0xbf, 0x03, 0xd5,
0xec, 0xa8, 0xd7, 0xa4, 0xa0, 0x5c, 0x41, 0xc6, 0xf3, 0x0d, 0xe2, 0xb9, 0x89, 0x51, 0x4f, 0xf6,
0x01, 0xa6, 0x44, 0x78, 0x46, 0x8b, 0xf3, 0xce, 0x13, 0x3f, 0xe2, 0xda, 0x23, 0x45, 0x2c, 0xb9,
0xbb, 0xb6, 0xec, 0xee, 0x7d, 0x00, 0xd5, 0x22, 0x79, 0xd3, 0x84, 0xea, 0xf1, 0xb9, 0xaa, 0x38,
0x27, 0x09, 0xb5, 0x31, 0xec, 0x2d, 0x7b, 0xfa, 0x82, 0xf8, 0x97, 0xe4, 0xdf, 0xc6, 0x8d, 0xfd,
0x7d, 0x78, 0x98, 0x4b, 0x4f, 0xaa, 0x02, 0x2c, 0x76, 0x63, 0x57, 0x68, 0x2f, 0x5a, 0x5b, 0x5a,
0xb4, 0xf6, 0x8f, 0x06, 0xd4, 0x5e, 0xfa, 0xaf, 0xa6, 0x69, 0xeb, 0xd4, 0x00, 0x93, 0xd1, 0x73,
0xfd, 0x9f, 0x96, 0xf8, 0x14, 0x89, 0x86, 0xd3, 0x31, 0x61, 0xdc, 0x1f, 0x4f, 0xe4, 0xfe, 0x32,
0x9e, 0x33, 0xc4, 0xa1, 0x3c, 0x9e, 0xd0, 0x40, 0x86, 0x77, 0x13, 0x2b, 0x42, 0x4e, 0xec, 0xfe,
0x6c, 0x14, 0xfb, 0x29, 0x5e, 0x52, 0x52, 0xad, 0x84, 0x21, 0x8d, 0xce, 0x75, 0x68, 0x53, 0x52,
0xa4, 0xcb, 0x0b, 0x9f, 0x5d, 0xc8, 0x80, 0x6e, 0x62, 0xf9, 0x8d, 0x6c, 0xd8, 0xe4, 0x17, 0x34,
0x09, 0x8f, 0xfd, 0x44, 0xc4, 0x41, 0xcf, 0x91, 0x05, 0x9e, 0xfd, 0x73, 0xd8, 0xcf, 0x39, 0x90,
0x86, 0x25, 0xed, 0x8b, 0x2c, 0xd8, 0xb8, 0x24, 0x89, 0x28, 0x47, 0xd2, 0xa7, 0x3a, 0x4e, 0x49,
0x71, 0xde, 0x59, 0x12, 0x8f, 0xb5, 0x4b, 0xf2, 0x5b, 0x8c, 0x85, 0x3c, 0xd6, 0xff, 0x62, 0x95,
0x78, 0x2c, 0xce, 0x17, 0xe3, 0x36, 0x89, 0xf8, 0x50, 0x3a, 0x29, 0xa6, 0xb3, 0x4d, 0x5c, 0xe0,
0xd9, 0xbf, 0x33, 0x00, 0x2d, 0x1b, 0xf0, 0x9a, 0x83, 0x3f, 0x82, 0x4a, 0xd6, 0xf7, 0x29, 0x44,
0xe7, 0x0a, 0xf3, 0xd5, 0xae, 0xe0, 0x6c, 0x17, 0x7a, 0x57, 0x68, 0x90, 0x32, 0x69, 0xf6, 0xb8,
0xbd, 0x52, 0x03, 0xce, 0xc4, 0xec, 0x3f, 0x19, 0xf0, 0x60, 0x59, 0x77, 0x37, 0x0a, 0xc9, 0x4f,
0xdf, 0x20, 0x56, 0x5f, 0xde, 0xe4, 0x5d, 0x58, 0x8f, 0xcf, 0xce, 0x18, 0xe1, 0x3a, 0xba, 0x9a,
0x12, 0xb7, 0xc0, 0xe8, 0xcf, 0x88, 0xfe, 0xcb, 0x53, 0x7e, 0x2f, 0x62, 0xa4, 0x9c, 0x61, 0xc4,
0xfe, 0x8b, 0x01, 0x7b, 0x57, 0x78, 0x81, 0x9e, 0x43, 0x45, 0x4f, 0x28, 0x69, 0xbf, 0xf3, 0xf8,
0x75, 0x36, 0xca, 0x4d, 0x2d, 0x4d, 0xe8, 0xd6, 0x27, 0x53, 0xb0, 0x7f, 0x06, 0xf5, 0xc2, 0xd2,
0x8a, 0x4e, 0xe2, 0xc3, 0x62, 0x27, 0xf1, 0xf6, 0xb5, 0x87, 0x65, 0x51, 0x99, 0x77, 0x16, 0x4f,
0xeb, 0x9f, 0xd7, 0x5a, 0x8f, 0xdf, 0x4f, 0x77, 0x9e, 0xae, 0xcb, 0xaf, 0x6f, 0xfc, 0x2b, 0x00,
0x00, 0xff, 0xff, 0x8c, 0xdd, 0xe9, 0x0c, 0xab, 0x16, 0x00, 0x00,
}

View File

@ -71,6 +71,7 @@ message CommunityTokenPermission {
CAN_VIEW_CHANNEL = 3;
CAN_VIEW_AND_POST_CHANNEL = 4;
BECOME_TOKEN_MASTER = 5;
BECOME_TOKEN_OWNER = 6;
}
string id = 1;

View File

@ -0,0 +1,19 @@
package requests
import (
"errors"
"github.com/status-im/status-go/eth-node/types"
)
type ReevaluateCommunityMembersPermissions struct {
CommunityID types.HexBytes `json:"communityId"`
}
func (r *ReevaluateCommunityMembersPermissions) Validate() error {
if r.CommunityID == nil || len(r.CommunityID) == 0 {
return errors.New("reevaluate community members permissions does not contain communityID")
}
return nil
}

View File

@ -533,6 +533,11 @@ func (api *PublicAPI) CreateCommunityTokenPermission(request *requests.CreateCom
return api.service.messenger.CreateCommunityTokenPermission(request)
}
// ReevaluateCommunityMembersPermissions reevaluates community members permissions
func (api *PublicAPI) ReevaluateCommunityMembersPermissions(request *requests.ReevaluateCommunityMembersPermissions) (*protocol.MessengerResponse, error) {
return api.service.messenger.ReevaluateCommunityMembersPermissions(request)
}
func (api *PublicAPI) DeleteCommunityTokenPermission(request *requests.DeleteCommunityTokenPermission) (*protocol.MessengerResponse, error) {
return api.service.messenger.DeleteCommunityTokenPermission(request)
}