Overview
ETH Balance
0 ETH
ETH Value
$0.00More Info
Private Name Tags
ContractCreator
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Latest 1 internal transaction
Parent Transaction Hash | Block | From | To | |||
---|---|---|---|---|---|---|
4973065 | 12 days ago | Contract Creation | 0 ETH |
Loading...
Loading
This contract may be a proxy contract. Click on More Options and select Is this a proxy? to confirm and enable the "Read as Proxy" & "Write as Proxy" tabs.
Contract Source Code Verified (Exact Match)
Contract Name:
MichelleGomez
Compiler Version
v0.8.25+commit.b61c2a91
ZkSolc Version
v1.5.12
Optimization Enabled:
Yes with Mode 3
Other Settings:
paris EvmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: UNLICENSED pragma solidity 0.8.25; import "@openzeppelin/contracts/access/extensions/AccessControlEnumerable.sol"; import "@openzeppelin/contracts/token/ERC721/IERC721.sol"; import "./UsesGalaxisRegistry.sol"; import "./CommunityList.sol"; import "./Versionable/IVersionable.sol"; interface IChainImplementer { function createCommunity( uint32 community_id, address community_admin, string memory community_name ) external; } contract IMasterRegistry { mapping (uint32 => MasterListEntry) public communityListByID; mapping (uint256 => uint32) public communitiesAsAdded; uint256 public nextCommunity; uint32 public lastCommunity; mapping (address => mapping(uint256 => uint32)) userCommunityLists; function userCommunities(address user) external view returns (MasterListEntry[] memory mle) { } } interface INewMasterRegistry { function communityListByID(uint32 id) external view returns (MasterListEntry memory m); } struct MasterListEntry { uint32 community_id; uint32 chain_id; address creator; string community_name; } // Note : Michelle Gomez played Missy during Peter Capaldi's run as Doctor Who. // Missy was a female regeneration of The Master as originally played by Roger Delgado contract MichelleGomez is AccessControlEnumerable, UsesGalaxisRegistry, IVersionable { function version() virtual external pure returns(uint256) { return 2025031101; } bytes32 public constant CONTRACT_ADMIN = keccak256("CONTRACT_ADMIN"); mapping (uint32 => MasterListEntry) public _communityListByID; mapping (uint256 => uint32) _communitiesAsAdded; uint256 public nextCommunity; // pointer into _communitiesAsAdded uint32 public lastCommunity = 1001; // determines next community_ID address public oldRegistry; mapping (address => mapping(uint256 => uint32)) userCommunityLists; // entry zero is the count IChainImplementer public chainImplementer; event ChainImplementerUpdated(address updater, address oldImplementer, address newImplementer); event ChainValueUpdated(address updater,uint256 oldChainValue,uint256 newChainValue); event LastCommunityUpdated(address updater, uint32 oldNextCommunity, uint32 newNextCommunity); event LastCommunityNotUpdated(); event LastCommunityDidNotHaveNext(); constructor( address _galaxisRegistry, address _chainImplementer ) UsesGalaxisRegistry(_galaxisRegistry){ oldRegistry = galaxisRegistry.getRegistryAddress("MASTER_REGISTRY"); if (oldRegistry != address(0)) { nextCommunity = IMasterRegistry(oldRegistry).nextCommunity(); try IMasterRegistry(oldRegistry).lastCommunity() returns (uint32 lc) { if (lc > lastCommunity) { emit LastCommunityUpdated(msg.sender,lastCommunity,lc); lastCommunity = lc; } else { emit LastCommunityNotUpdated(); } } catch { emit LastCommunityDidNotHaveNext(); } } _grantRole(DEFAULT_ADMIN_ROLE, msg.sender); _grantRole(CONTRACT_ADMIN,msg.sender); _setChainImplementer(IChainImplementer(_chainImplementer)); } function setChainImplementer( IChainImplementer _imp) external onlyRole(CONTRACT_ADMIN) { _setChainImplementer(_imp); } function _setChainImplementer( IChainImplementer _imp) internal { require(address(_imp) != address(0),"New Master Registry : implementer address = 0"); emit ChainImplementerUpdated(msg.sender, address(chainImplementer), address(_imp)); chainImplementer = _imp; } // @dev set the ID of the last community created - implying that the next community resumes at one higher // @param _lastCommunity - next community will be 1 + this value function setLastCommunityID(uint32 _lastCommunity) external onlyRole(CONTRACT_ADMIN) { emit LastCommunityUpdated(msg.sender, lastCommunity, _lastCommunity); lastCommunity = _lastCommunity; } function communityList() internal view returns (CommunityList) { return CommunityList( galaxisRegistry.getRegistryAddress("COMMUNITY_LIST") ); } function createCommunity( //address community_admin, string calldata community_name ) external { require( address(this) == galaxisRegistry.getRegistryAddress("MASTER_REGISTRY"), "New Master Registry : not current Master Registry" ); address community_admin = msg.sender; uint32 community_id = lastCommunity++; uint256 position = nextCommunity++; _communityListByID[community_id] = MasterListEntry( community_id, uint32(block.chainid), community_admin, community_name ); _communitiesAsAdded[position] = community_id; chainImplementer.createCommunity(community_id,community_admin,community_name); uint256 count = uint256(userCommunityLists[community_admin][0] += 1); userCommunityLists[community_admin][count] = community_id; } function userCommunities(address user) external view returns (MasterListEntry[] memory) { MasterListEntry[] memory omla; if (oldRegistry != address(0)) { omla = IMasterRegistry(oldRegistry).userCommunities(user); } uint256 count = uint256(userCommunityLists[user][0]) ; MasterListEntry[] memory mla = new MasterListEntry[](count + omla.length); for (uint old = 0; old < omla.length; old++) { mla[old] = omla[old]; } for (uint pos = 0; pos < count; pos++) { mla[pos] = _communityListByID[userCommunityLists[user][omla.length + pos + 1] ]; } return mla; } function communitiesAsAdded(uint256 position) external view returns(uint32 community) { community = _communitiesAsAdded[position]; if (community != 0) return community; if (oldRegistry == address(0)) return 0; return IMasterRegistry(oldRegistry).communitiesAsAdded(position); } function communityListByID(uint32 id) external view returns (MasterListEntry memory m) { m = _communityListByID[id]; if (m.creator != address(0)) return m; if (oldRegistry == address(0)) return m; // test oldRegistry which was not present in old Master Registry because solidity has screwed us // // If an error happens during the decoding of the return data inside a try/catch-statement, // this causes an exception in the currently executing contract and because of that, it is not caught in the catch clause. // try MichelleGomez(oldRegistry).oldRegistry() returns (address addr) { return INewMasterRegistry(oldRegistry).communityListByID(id); } catch { (m.community_id, m.chain_id, m.creator, m.community_name) = IMasterRegistry(oldRegistry).communityListByID(id); } } }
//SPDX-License-Identifier: Unlicensed pragma solidity 0.8.25; /** * @title IVersionable * @dev Interface for versionable contracts. */ interface IVersionable { /** * @notice Get the current version of the contract. * @return The current version. */ function version() external pure returns (uint256); }
// SPDX-License-Identifier: UNLICENSED pragma solidity 0.8.25; import "./IRegistry.sol"; contract UsesGalaxisRegistry { IRegistry immutable public galaxisRegistry; constructor(address _galaxisRegistry) { galaxisRegistry = IRegistry(_galaxisRegistry); } }
// SPDX-License-Identifier: UNLICENSED pragma solidity 0.8.25; import "@openzeppelin/contracts/access/extensions/AccessControlEnumerable.sol"; import "./Versionable/IVersionable.sol"; contract CommunityList is AccessControlEnumerable, IVersionable { function version() external pure returns (uint256) { return 2024040301; } bytes32 public constant CONTRACT_ADMIN = keccak256("CONTRACT_ADMIN"); uint256 public numberOfEntries; struct community_entry { string name; address registry; uint32 id; } mapping(uint32 => community_entry) public communities; // community_id => record mapping(uint256 => uint32) public index; // entryNumber => community_id for enumeration event CommunityAdded(uint256 pos, string community_name, address community_registry, uint32 community_id); constructor() { _grantRole(DEFAULT_ADMIN_ROLE, msg.sender); _grantRole(CONTRACT_ADMIN,msg.sender); } function addCommunity(uint32 community_id, string memory community_name, address community_registry) external onlyRole(CONTRACT_ADMIN) { uint256 pos = numberOfEntries++; index[pos] = community_id; communities[community_id] = community_entry(community_name, community_registry, community_id); emit CommunityAdded(pos, community_name, community_registry, community_id); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.1.0) (access/extensions/AccessControlEnumerable.sol) pragma solidity ^0.8.20; import {IAccessControlEnumerable} from "./IAccessControlEnumerable.sol"; import {AccessControl} from "../AccessControl.sol"; import {EnumerableSet} from "../../utils/structs/EnumerableSet.sol"; /** * @dev Extension of {AccessControl} that allows enumerating the members of each role. */ abstract contract AccessControlEnumerable is IAccessControlEnumerable, AccessControl { using EnumerableSet for EnumerableSet.AddressSet; mapping(bytes32 role => EnumerableSet.AddressSet) private _roleMembers; /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IAccessControlEnumerable).interfaceId || super.supportsInterface(interfaceId); } /** * @dev Returns one of the accounts that have `role`. `index` must be a * value between 0 and {getRoleMemberCount}, non-inclusive. * * Role bearers are not sorted in any particular way, and their ordering may * change at any point. * * WARNING: When using {getRoleMember} and {getRoleMemberCount}, make sure * you perform all queries on the same block. See the following * https://forum.openzeppelin.com/t/iterating-over-elements-on-enumerableset-in-openzeppelin-contracts/2296[forum post] * for more information. */ function getRoleMember(bytes32 role, uint256 index) public view virtual returns (address) { return _roleMembers[role].at(index); } /** * @dev Returns the number of accounts that have `role`. Can be used * together with {getRoleMember} to enumerate all bearers of a role. */ function getRoleMemberCount(bytes32 role) public view virtual returns (uint256) { return _roleMembers[role].length(); } /** * @dev Return all accounts that have `role` * * WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed * to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that * this function has an unbounded cost, and using it as part of a state-changing function may render the function * uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block. */ function getRoleMembers(bytes32 role) public view virtual returns (address[] memory) { return _roleMembers[role].values(); } /** * @dev Overload {AccessControl-_grantRole} to track enumerable memberships */ function _grantRole(bytes32 role, address account) internal virtual override returns (bool) { bool granted = super._grantRole(role, account); if (granted) { _roleMembers[role].add(account); } return granted; } /** * @dev Overload {AccessControl-_revokeRole} to track enumerable memberships */ function _revokeRole(bytes32 role, address account) internal virtual override returns (bool) { bool revoked = super._revokeRole(role, account); if (revoked) { _roleMembers[role].remove(account); } return revoked; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.1.0) (token/ERC721/IERC721.sol) pragma solidity ^0.8.20; import {IERC165} from "../../utils/introspection/IERC165.sol"; /** * @dev Required interface of an ERC-721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon * a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom(address from, address to, uint256 tokenId, bytes calldata data) external; /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC-721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must have been allowed to move this token by either {approve} or * {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon * a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom(address from, address to, uint256 tokenId) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Note that the caller is responsible to confirm that the recipient is capable of receiving ERC-721 * or else they may be permanently lost. Usage of {safeTransferFrom} prevents loss, though the caller must * understand this adds an external call which potentially creates a reentrancy vulnerability. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom(address from, address to, uint256 tokenId) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the address zero. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool approved) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); }
// SPDX-License-Identifier: UNLICENSED pragma solidity 0.8.25; interface IRegistry { function setRegistryAddress(string memory fn, address value) external ; function setRegistryBool(string memory fn, bool value) external ; function setRegistryUINT(string memory key) external returns (uint256) ; function setRegistryString(string memory fn, string memory value) external ; function setAdmin(address user,bool status ) external; function setAppAdmin(address app, address user, bool state) external; function getRegistryAddress(string memory key) external view returns (address) ; function getRegistryBool(string memory key) external view returns (bool); function getRegistryUINT(string memory key) external view returns (uint256) ; function getRegistryString(string memory key) external view returns (string memory) ; function isAdmin(address user) external view returns (bool) ; function isAppAdmin(address app, address user) external view returns (bool); function numberOfAddresses() external view returns(uint256); function addressEntries(uint256) external view returns(string memory); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.1.0) (access/extensions/IAccessControlEnumerable.sol) pragma solidity ^0.8.20; import {IAccessControl} from "../IAccessControl.sol"; /** * @dev External interface of AccessControlEnumerable declared to support ERC-165 detection. */ interface IAccessControlEnumerable is IAccessControl { /** * @dev Returns one of the accounts that have `role`. `index` must be a * value between 0 and {getRoleMemberCount}, non-inclusive. * * Role bearers are not sorted in any particular way, and their ordering may * change at any point. * * WARNING: When using {getRoleMember} and {getRoleMemberCount}, make sure * you perform all queries on the same block. See the following * https://forum.openzeppelin.com/t/iterating-over-elements-on-enumerableset-in-openzeppelin-contracts/2296[forum post] * for more information. */ function getRoleMember(bytes32 role, uint256 index) external view returns (address); /** * @dev Returns the number of accounts that have `role`. Can be used * together with {getRoleMember} to enumerate all bearers of a role. */ function getRoleMemberCount(bytes32 role) external view returns (uint256); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (access/AccessControl.sol) pragma solidity ^0.8.20; import {IAccessControl} from "./IAccessControl.sol"; import {Context} from "../utils/Context.sol"; import {ERC165} from "../utils/introspection/ERC165.sol"; /** * @dev Contract module that allows children to implement role-based access * control mechanisms. This is a lightweight version that doesn't allow enumerating role * members except through off-chain means by accessing the contract event logs. Some * applications may benefit from on-chain enumerability, for those cases see * {AccessControlEnumerable}. * * Roles are referred to by their `bytes32` identifier. These should be exposed * in the external API and be unique. The best way to achieve this is by * using `public constant` hash digests: * * ```solidity * bytes32 public constant MY_ROLE = keccak256("MY_ROLE"); * ``` * * Roles can be used to represent a set of permissions. To restrict access to a * function call, use {hasRole}: * * ```solidity * function foo() public { * require(hasRole(MY_ROLE, msg.sender)); * ... * } * ``` * * Roles can be granted and revoked dynamically via the {grantRole} and * {revokeRole} functions. Each role has an associated admin role, and only * accounts that have a role's admin role can call {grantRole} and {revokeRole}. * * By default, the admin role for all roles is `DEFAULT_ADMIN_ROLE`, which means * that only accounts with this role will be able to grant or revoke other * roles. More complex role relationships can be created by using * {_setRoleAdmin}. * * WARNING: The `DEFAULT_ADMIN_ROLE` is also its own admin: it has permission to * grant and revoke this role. Extra precautions should be taken to secure * accounts that have been granted it. We recommend using {AccessControlDefaultAdminRules} * to enforce additional security measures for this role. */ abstract contract AccessControl is Context, IAccessControl, ERC165 { struct RoleData { mapping(address account => bool) hasRole; bytes32 adminRole; } mapping(bytes32 role => RoleData) private _roles; bytes32 public constant DEFAULT_ADMIN_ROLE = 0x00; /** * @dev Modifier that checks that an account has a specific role. Reverts * with an {AccessControlUnauthorizedAccount} error including the required role. */ modifier onlyRole(bytes32 role) { _checkRole(role); _; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IAccessControl).interfaceId || super.supportsInterface(interfaceId); } /** * @dev Returns `true` if `account` has been granted `role`. */ function hasRole(bytes32 role, address account) public view virtual returns (bool) { return _roles[role].hasRole[account]; } /** * @dev Reverts with an {AccessControlUnauthorizedAccount} error if `_msgSender()` * is missing `role`. Overriding this function changes the behavior of the {onlyRole} modifier. */ function _checkRole(bytes32 role) internal view virtual { _checkRole(role, _msgSender()); } /** * @dev Reverts with an {AccessControlUnauthorizedAccount} error if `account` * is missing `role`. */ function _checkRole(bytes32 role, address account) internal view virtual { if (!hasRole(role, account)) { revert AccessControlUnauthorizedAccount(account, role); } } /** * @dev Returns the admin role that controls `role`. See {grantRole} and * {revokeRole}. * * To change a role's admin, use {_setRoleAdmin}. */ function getRoleAdmin(bytes32 role) public view virtual returns (bytes32) { return _roles[role].adminRole; } /** * @dev Grants `role` to `account`. * * If `account` had not been already granted `role`, emits a {RoleGranted} * event. * * Requirements: * * - the caller must have ``role``'s admin role. * * May emit a {RoleGranted} event. */ function grantRole(bytes32 role, address account) public virtual onlyRole(getRoleAdmin(role)) { _grantRole(role, account); } /** * @dev Revokes `role` from `account`. * * If `account` had been granted `role`, emits a {RoleRevoked} event. * * Requirements: * * - the caller must have ``role``'s admin role. * * May emit a {RoleRevoked} event. */ function revokeRole(bytes32 role, address account) public virtual onlyRole(getRoleAdmin(role)) { _revokeRole(role, account); } /** * @dev Revokes `role` from the calling account. * * Roles are often managed via {grantRole} and {revokeRole}: this function's * purpose is to provide a mechanism for accounts to lose their privileges * if they are compromised (such as when a trusted device is misplaced). * * If the calling account had been revoked `role`, emits a {RoleRevoked} * event. * * Requirements: * * - the caller must be `callerConfirmation`. * * May emit a {RoleRevoked} event. */ function renounceRole(bytes32 role, address callerConfirmation) public virtual { if (callerConfirmation != _msgSender()) { revert AccessControlBadConfirmation(); } _revokeRole(role, callerConfirmation); } /** * @dev Sets `adminRole` as ``role``'s admin role. * * Emits a {RoleAdminChanged} event. */ function _setRoleAdmin(bytes32 role, bytes32 adminRole) internal virtual { bytes32 previousAdminRole = getRoleAdmin(role); _roles[role].adminRole = adminRole; emit RoleAdminChanged(role, previousAdminRole, adminRole); } /** * @dev Attempts to grant `role` to `account` and returns a boolean indicating if `role` was granted. * * Internal function without access restriction. * * May emit a {RoleGranted} event. */ function _grantRole(bytes32 role, address account) internal virtual returns (bool) { if (!hasRole(role, account)) { _roles[role].hasRole[account] = true; emit RoleGranted(role, account, _msgSender()); return true; } else { return false; } } /** * @dev Attempts to revoke `role` to `account` and returns a boolean indicating if `role` was revoked. * * Internal function without access restriction. * * May emit a {RoleRevoked} event. */ function _revokeRole(bytes32 role, address account) internal virtual returns (bool) { if (hasRole(role, account)) { _roles[role].hasRole[account] = false; emit RoleRevoked(role, account, _msgSender()); return true; } else { return false; } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.1.0) (utils/structs/EnumerableSet.sol) // This file was procedurally generated from scripts/generate/templates/EnumerableSet.js. pragma solidity ^0.8.20; /** * @dev Library for managing * https://en.wikipedia.org/wiki/Set_(abstract_data_type)[sets] of primitive * types. * * Sets have the following properties: * * - Elements are added, removed, and checked for existence in constant time * (O(1)). * - Elements are enumerated in O(n). No guarantees are made on the ordering. * * ```solidity * contract Example { * // Add the library methods * using EnumerableSet for EnumerableSet.AddressSet; * * // Declare a set state variable * EnumerableSet.AddressSet private mySet; * } * ``` * * As of v3.3.0, sets of type `bytes32` (`Bytes32Set`), `address` (`AddressSet`) * and `uint256` (`UintSet`) are supported. * * [WARNING] * ==== * Trying to delete such a structure from storage will likely result in data corruption, rendering the structure * unusable. * See https://github.com/ethereum/solidity/pull/11843[ethereum/solidity#11843] for more info. * * In order to clean an EnumerableSet, you can either remove all elements one by one or create a fresh instance using an * array of EnumerableSet. * ==== */ library EnumerableSet { // To implement this library for multiple types with as little code // repetition as possible, we write it in terms of a generic Set type with // bytes32 values. // The Set implementation uses private functions, and user-facing // implementations (such as AddressSet) are just wrappers around the // underlying Set. // This means that we can only create new EnumerableSets for types that fit // in bytes32. struct Set { // Storage of set values bytes32[] _values; // Position is the index of the value in the `values` array plus 1. // Position 0 is used to mean a value is not in the set. mapping(bytes32 value => uint256) _positions; } /** * @dev Add a value to a set. O(1). * * Returns true if the value was added to the set, that is if it was not * already present. */ function _add(Set storage set, bytes32 value) private returns (bool) { if (!_contains(set, value)) { set._values.push(value); // The value is stored at length-1, but we add 1 to all indexes // and use 0 as a sentinel value set._positions[value] = set._values.length; return true; } else { return false; } } /** * @dev Removes a value from a set. O(1). * * Returns true if the value was removed from the set, that is if it was * present. */ function _remove(Set storage set, bytes32 value) private returns (bool) { // We cache the value's position to prevent multiple reads from the same storage slot uint256 position = set._positions[value]; if (position != 0) { // Equivalent to contains(set, value) // To delete an element from the _values array in O(1), we swap the element to delete with the last one in // the array, and then remove the last element (sometimes called as 'swap and pop'). // This modifies the order of the array, as noted in {at}. uint256 valueIndex = position - 1; uint256 lastIndex = set._values.length - 1; if (valueIndex != lastIndex) { bytes32 lastValue = set._values[lastIndex]; // Move the lastValue to the index where the value to delete is set._values[valueIndex] = lastValue; // Update the tracked position of the lastValue (that was just moved) set._positions[lastValue] = position; } // Delete the slot where the moved value was stored set._values.pop(); // Delete the tracked position for the deleted slot delete set._positions[value]; return true; } else { return false; } } /** * @dev Returns true if the value is in the set. O(1). */ function _contains(Set storage set, bytes32 value) private view returns (bool) { return set._positions[value] != 0; } /** * @dev Returns the number of values on the set. O(1). */ function _length(Set storage set) private view returns (uint256) { return set._values.length; } /** * @dev Returns the value stored at position `index` in the set. O(1). * * Note that there are no guarantees on the ordering of values inside the * array, and it may change when more values are added or removed. * * Requirements: * * - `index` must be strictly less than {length}. */ function _at(Set storage set, uint256 index) private view returns (bytes32) { return set._values[index]; } /** * @dev Return the entire set in an array * * WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed * to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that * this function has an unbounded cost, and using it as part of a state-changing function may render the function * uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block. */ function _values(Set storage set) private view returns (bytes32[] memory) { return set._values; } // Bytes32Set struct Bytes32Set { Set _inner; } /** * @dev Add a value to a set. O(1). * * Returns true if the value was added to the set, that is if it was not * already present. */ function add(Bytes32Set storage set, bytes32 value) internal returns (bool) { return _add(set._inner, value); } /** * @dev Removes a value from a set. O(1). * * Returns true if the value was removed from the set, that is if it was * present. */ function remove(Bytes32Set storage set, bytes32 value) internal returns (bool) { return _remove(set._inner, value); } /** * @dev Returns true if the value is in the set. O(1). */ function contains(Bytes32Set storage set, bytes32 value) internal view returns (bool) { return _contains(set._inner, value); } /** * @dev Returns the number of values in the set. O(1). */ function length(Bytes32Set storage set) internal view returns (uint256) { return _length(set._inner); } /** * @dev Returns the value stored at position `index` in the set. O(1). * * Note that there are no guarantees on the ordering of values inside the * array, and it may change when more values are added or removed. * * Requirements: * * - `index` must be strictly less than {length}. */ function at(Bytes32Set storage set, uint256 index) internal view returns (bytes32) { return _at(set._inner, index); } /** * @dev Return the entire set in an array * * WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed * to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that * this function has an unbounded cost, and using it as part of a state-changing function may render the function * uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block. */ function values(Bytes32Set storage set) internal view returns (bytes32[] memory) { bytes32[] memory store = _values(set._inner); bytes32[] memory result; assembly ("memory-safe") { result := store } return result; } // AddressSet struct AddressSet { Set _inner; } /** * @dev Add a value to a set. O(1). * * Returns true if the value was added to the set, that is if it was not * already present. */ function add(AddressSet storage set, address value) internal returns (bool) { return _add(set._inner, bytes32(uint256(uint160(value)))); } /** * @dev Removes a value from a set. O(1). * * Returns true if the value was removed from the set, that is if it was * present. */ function remove(AddressSet storage set, address value) internal returns (bool) { return _remove(set._inner, bytes32(uint256(uint160(value)))); } /** * @dev Returns true if the value is in the set. O(1). */ function contains(AddressSet storage set, address value) internal view returns (bool) { return _contains(set._inner, bytes32(uint256(uint160(value)))); } /** * @dev Returns the number of values in the set. O(1). */ function length(AddressSet storage set) internal view returns (uint256) { return _length(set._inner); } /** * @dev Returns the value stored at position `index` in the set. O(1). * * Note that there are no guarantees on the ordering of values inside the * array, and it may change when more values are added or removed. * * Requirements: * * - `index` must be strictly less than {length}. */ function at(AddressSet storage set, uint256 index) internal view returns (address) { return address(uint160(uint256(_at(set._inner, index)))); } /** * @dev Return the entire set in an array * * WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed * to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that * this function has an unbounded cost, and using it as part of a state-changing function may render the function * uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block. */ function values(AddressSet storage set) internal view returns (address[] memory) { bytes32[] memory store = _values(set._inner); address[] memory result; assembly ("memory-safe") { result := store } return result; } // UintSet struct UintSet { Set _inner; } /** * @dev Add a value to a set. O(1). * * Returns true if the value was added to the set, that is if it was not * already present. */ function add(UintSet storage set, uint256 value) internal returns (bool) { return _add(set._inner, bytes32(value)); } /** * @dev Removes a value from a set. O(1). * * Returns true if the value was removed from the set, that is if it was * present. */ function remove(UintSet storage set, uint256 value) internal returns (bool) { return _remove(set._inner, bytes32(value)); } /** * @dev Returns true if the value is in the set. O(1). */ function contains(UintSet storage set, uint256 value) internal view returns (bool) { return _contains(set._inner, bytes32(value)); } /** * @dev Returns the number of values in the set. O(1). */ function length(UintSet storage set) internal view returns (uint256) { return _length(set._inner); } /** * @dev Returns the value stored at position `index` in the set. O(1). * * Note that there are no guarantees on the ordering of values inside the * array, and it may change when more values are added or removed. * * Requirements: * * - `index` must be strictly less than {length}. */ function at(UintSet storage set, uint256 index) internal view returns (uint256) { return uint256(_at(set._inner, index)); } /** * @dev Return the entire set in an array * * WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed * to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that * this function has an unbounded cost, and using it as part of a state-changing function may render the function * uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block. */ function values(UintSet storage set) internal view returns (uint256[] memory) { bytes32[] memory store = _values(set._inner); uint256[] memory result; assembly ("memory-safe") { result := store } return result; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.1.0) (utils/introspection/IERC165.sol) pragma solidity ^0.8.20; /** * @dev Interface of the ERC-165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[ERC]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[ERC section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.1.0) (access/IAccessControl.sol) pragma solidity ^0.8.20; /** * @dev External interface of AccessControl declared to support ERC-165 detection. */ interface IAccessControl { /** * @dev The `account` is missing a role. */ error AccessControlUnauthorizedAccount(address account, bytes32 neededRole); /** * @dev The caller of a function is not the expected one. * * NOTE: Don't confuse with {AccessControlUnauthorizedAccount}. */ error AccessControlBadConfirmation(); /** * @dev Emitted when `newAdminRole` is set as ``role``'s admin role, replacing `previousAdminRole` * * `DEFAULT_ADMIN_ROLE` is the starting admin for all roles, despite * {RoleAdminChanged} not being emitted signaling this. */ event RoleAdminChanged(bytes32 indexed role, bytes32 indexed previousAdminRole, bytes32 indexed newAdminRole); /** * @dev Emitted when `account` is granted `role`. * * `sender` is the account that originated the contract call. This account bears the admin role (for the granted role). * Expected in cases where the role was granted using the internal {AccessControl-_grantRole}. */ event RoleGranted(bytes32 indexed role, address indexed account, address indexed sender); /** * @dev Emitted when `account` is revoked `role`. * * `sender` is the account that originated the contract call: * - if using `revokeRole`, it is the admin role bearer * - if using `renounceRole`, it is the role bearer (i.e. `account`) */ event RoleRevoked(bytes32 indexed role, address indexed account, address indexed sender); /** * @dev Returns `true` if `account` has been granted `role`. */ function hasRole(bytes32 role, address account) external view returns (bool); /** * @dev Returns the admin role that controls `role`. See {grantRole} and * {revokeRole}. * * To change a role's admin, use {AccessControl-_setRoleAdmin}. */ function getRoleAdmin(bytes32 role) external view returns (bytes32); /** * @dev Grants `role` to `account`. * * If `account` had not been already granted `role`, emits a {RoleGranted} * event. * * Requirements: * * - the caller must have ``role``'s admin role. */ function grantRole(bytes32 role, address account) external; /** * @dev Revokes `role` from `account`. * * If `account` had been granted `role`, emits a {RoleRevoked} event. * * Requirements: * * - the caller must have ``role``'s admin role. */ function revokeRole(bytes32 role, address account) external; /** * @dev Revokes `role` from the calling account. * * Roles are often managed via {grantRole} and {revokeRole}: this function's * purpose is to provide a mechanism for accounts to lose their privileges * if they are compromised (such as when a trusted device is misplaced). * * If the calling account had been granted `role`, emits a {RoleRevoked} * event. * * Requirements: * * - the caller must be `callerConfirmation`. */ function renounceRole(bytes32 role, address callerConfirmation) external; }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.1) (utils/Context.sol) pragma solidity ^0.8.20; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } function _contextSuffixLength() internal view virtual returns (uint256) { return 0; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.1.0) (utils/introspection/ERC165.sol) pragma solidity ^0.8.20; import {IERC165} from "./IERC165.sol"; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC-165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual returns (bool) { return interfaceId == type(IERC165).interfaceId; } }
{ "evmVersion": "paris", "optimizer": { "enabled": true, "mode": "3" }, "outputSelection": { "*": { "*": [ "abi" ] } }, "detectMissingLibraries": false, "forceEVMLA": false, "enableEraVMExtensions": false, "libraries": {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[{"internalType":"address","name":"_galaxisRegistry","type":"address"},{"internalType":"address","name":"_chainImplementer","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"AccessControlBadConfirmation","type":"error"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bytes32","name":"neededRole","type":"bytes32"}],"name":"AccessControlUnauthorizedAccount","type":"error"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"updater","type":"address"},{"indexed":false,"internalType":"address","name":"oldImplementer","type":"address"},{"indexed":false,"internalType":"address","name":"newImplementer","type":"address"}],"name":"ChainImplementerUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"updater","type":"address"},{"indexed":false,"internalType":"uint256","name":"oldChainValue","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"newChainValue","type":"uint256"}],"name":"ChainValueUpdated","type":"event"},{"anonymous":false,"inputs":[],"name":"LastCommunityDidNotHaveNext","type":"event"},{"anonymous":false,"inputs":[],"name":"LastCommunityNotUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"updater","type":"address"},{"indexed":false,"internalType":"uint32","name":"oldNextCommunity","type":"uint32"},{"indexed":false,"internalType":"uint32","name":"newNextCommunity","type":"uint32"}],"name":"LastCommunityUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"previousAdminRole","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"newAdminRole","type":"bytes32"}],"name":"RoleAdminChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleGranted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleRevoked","type":"event"},{"inputs":[],"name":"CONTRACT_ADMIN","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"DEFAULT_ADMIN_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint32","name":"","type":"uint32"}],"name":"_communityListByID","outputs":[{"internalType":"uint32","name":"community_id","type":"uint32"},{"internalType":"uint32","name":"chain_id","type":"uint32"},{"internalType":"address","name":"creator","type":"address"},{"internalType":"string","name":"community_name","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"chainImplementer","outputs":[{"internalType":"contract IChainImplementer","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"position","type":"uint256"}],"name":"communitiesAsAdded","outputs":[{"internalType":"uint32","name":"community","type":"uint32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint32","name":"id","type":"uint32"}],"name":"communityListByID","outputs":[{"components":[{"internalType":"uint32","name":"community_id","type":"uint32"},{"internalType":"uint32","name":"chain_id","type":"uint32"},{"internalType":"address","name":"creator","type":"address"},{"internalType":"string","name":"community_name","type":"string"}],"internalType":"struct MasterListEntry","name":"m","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"string","name":"community_name","type":"string"}],"name":"createCommunity","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"galaxisRegistry","outputs":[{"internalType":"contract IRegistry","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"}],"name":"getRoleAdmin","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"getRoleMember","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"}],"name":"getRoleMemberCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"}],"name":"getRoleMembers","outputs":[{"internalType":"address[]","name":"","type":"address[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"grantRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"hasRole","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lastCommunity","outputs":[{"internalType":"uint32","name":"","type":"uint32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nextCommunity","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"oldRegistry","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"callerConfirmation","type":"address"}],"name":"renounceRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"revokeRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"contract IChainImplementer","name":"_imp","type":"address"}],"name":"setChainImplementer","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint32","name":"_lastCommunity","type":"uint32"}],"name":"setLastCommunityID","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"user","type":"address"}],"name":"userCommunities","outputs":[{"components":[{"internalType":"uint32","name":"community_id","type":"uint32"},{"internalType":"uint32","name":"chain_id","type":"uint32"},{"internalType":"address","name":"creator","type":"address"},{"internalType":"string","name":"community_name","type":"string"}],"internalType":"struct MasterListEntry[]","name":"","type":"tuple[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"version","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"pure","type":"function"}]
Contract Creation Code
9c4d535b0000000000000000000000000000000000000000000000000000000000000000010003f94d8d8614804c8b2baebe9edf1be7d72d2b3665bbad20c2dcb1f3ef4a00000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000040000000000000000000000000f8274c5e5149a6e0fc5190483323a1b399896a8a0000000000000000000000004050ad6badddb9f591685a4d65a29f0d56d48195
Deployed Bytecode
0x0001000000000002000c0000000000020000000000010355000000600310027000000390033001970000000100200190000000270000c13d0000008002000039000000400020043f000000040030008c0000004f0000413d000000000201043b000000e002200270000003ac0020009c000000510000213d000003bc0020009c000000b10000213d000003c40020009c000000e20000213d000003c80020009c000004480000613d000003c90020009c000003960000613d000003ca0020009c0000004f0000c13d000000240030008c0000004f0000413d0000000002000416000000000002004b0000004f0000c13d0000000401100370000000000101043b000000000010043f000000200000043f000000400200003900000000010000190e3a0dfd0000040f0000000101100039000005040000013d000000a004000039000000400040043f0000000002000416000000000002004b0000004f0000c13d0000001f023000390000039102200197000000a002200039000000400020043f0000001f0530018f0000039206300198000000a002600039000000390000613d000000000701034f000000007807043c0000000004840436000000000024004b000000350000c13d000000000005004b000000460000613d000000000161034f0000000304500210000000000502043300000000054501cf000000000545022f000000000101043b0000010004400089000000000141022f00000000014101cf000000000151019f0000000000120435000000400030008c0000004f0000413d000000a00200043d000003930020009c0000004f0000213d000000c00100043d000a00000001001d000003930010009c000000f10000a13d000000000100001900000e3c00010430000003ad0020009c000000c00000213d000003b50020009c0000026f0000213d000003b90020009c000004550000613d000003ba0020009c000003bf0000613d000003bb0020009c0000004f0000c13d000000240030008c0000004f0000413d0000000002000416000000000002004b0000004f0000c13d0000000401100370000000000101043b000000000010043f0000000101000039000000200010043f0000000001000414000003900010009c0000039001008041000000c001100210000003a4011001c700008010020000390e3a0e350000040f00000001002001900000004f0000613d000000000101043b000000000301041a000000400200043d000900000002001d000800000003001d0000000002320436000a00000002001d000000000010043f0000000001000414000003900010009c0000039001008041000000c001100210000003a6011001c700008010020000390e3a0e350000040f00000001002001900000004f0000613d0000000805000029000000000005004b0000000a0600002900000000020600190000008d0000613d000000000101043b00000000030000190000000002060019000000000401041a000000000242043600000001011000390000000103300039000000000053004b000000870000413d000000090300002900000000013200490000001f01100039000003f2021001970000000001320019000000000021004b00000000020000390000000102004039000003980010009c00000a5c0000213d000000010020019000000a5c0000c13d000000400010043f00000020020000390000000002210436000000000303043300000000003204350000004002100039000000000003004b000000a80000613d00000000040000190000000065060434000003930550019700000000025204360000000104400039000000000034004b000000a20000413d0000000002120049000003900020009c00000390020080410000006002200210000003900010009c00000390010080410000004001100210000000000112019f00000e3b0001042e000003bd0020009c000002f00000213d000003c10020009c000004930000613d000003c20020009c000003c50000613d000003c30020009c0000004f0000c13d0000000001000416000000000001004b0000004f0000c13d000003a801000041000000800010043f000003da0100004100000e3b0001042e000003ae0020009c000002fd0000213d000003b20020009c0000049a0000613d000003b30020009c000003d30000613d000003b40020009c0000004f0000c13d000000440030008c0000004f0000413d0000000002000416000000000002004b0000004f0000c13d0000002402100370000000000202043b000a00000002001d000003930020009c0000004f0000213d0000000401100370000000000101043b000900000001001d000000000010043f000000200000043f000000400200003900000000010000190e3a0dfd0000040f0000000101100039000000000101041a0e3a0cd00000040f00000009010000290000000a020000290e3a0cff0000040f000000000100001900000e3b0001042e000003c50020009c000004c30000613d000003c60020009c000003e10000613d000003c70020009c0000004f0000c13d0000000001000416000000000001004b0000004f0000c13d0000000501000039000000000101041a0000039001100197000000800010043f000003da0100004100000e3b0001042e000000800020043f0000000503000039000000000103041a000800000001001d0000039401100197000003e9011001bf000000000013041b0000039501000041000000400400043d000900000004001d000000440340003900000000001304350000000f010000390000002403400039000000000013043500000396010000410000000000140435000000200300003900000004014000390000000000310435000003900040009c0000039001000041000000000104401900000040011002100000000003000414000003900030009c0000039003008041000000c003300210000000000113019f00000397011001c70e3a0e350000040f000000090b00002900000060031002700000039003300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b0019000001200000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b0000011c0000c13d000000000006004b0000012d0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f00000000006504350000000100200190000003780000613d0000001f01400039000000600110018f0000000002b10019000000000012004b00000000010000390000000101004039000003980020009c00000a5c0000213d000000010010019000000a5c0000c13d000700000002001d000000400020043f000000200030008c0000004f0000413d00000000010b0433000900000001001d000003930010009c0000004f0000213d00000008010000290000039901100197000000090300002900000020023002100000039a02200197000000000112019f000800000001001d000003e9011001bf0000000502000039000000000012041b000000000003004b000005a40000c13d00000000010004110000039301100197000900000001001d000000000010043f000003a301000041000000200010043f0000000001000414000003900010009c0000039001008041000000c001100210000003a4011001c700008010020000390e3a0e350000040f00000001002001900000004f0000613d000000000101043b000000000101041a000000ff00100190000001c90000c13d0000000901000029000000000010043f000003a301000041000000200010043f0000000001000414000003900010009c0000039001008041000000c001100210000003a4011001c700008010020000390e3a0e350000040f00000001002001900000004f0000613d000000000101043b000000000201041a000003f30220019700000001022001bf000000000021041b0000000001000414000003900010009c0000039001008041000000c0011002100000039e011001c70000800d020000390000000403000039000003a5040000410000000005000019000000090600002900000000070004110e3a0e300000040f00000001002001900000004f0000613d000000000000043f0000000101000039000000200010043f0000000001000414000003900010009c0000039001008041000000c001100210000003a4011001c700008010020000390e3a0e350000040f00000001002001900000004f0000613d000000000201043b0000000001000411000000000010043f000800000002001d0000000101200039000700000001001d000000200010043f0000000001000414000003900010009c0000039001008041000000c001100210000003a4011001c700008010020000390e3a0e350000040f00000001002001900000004f0000613d000000000101043b000000000101041a000000000001004b000001c90000c13d0000000801000029000000000101041a000600000001001d000003980010009c00000a5c0000213d000000060100002900000001011000390000000802000029000000000012041b000000000020043f0000000001000414000003900010009c0000039001008041000000c001100210000003a6011001c700008010020000390e3a0e350000040f00000001002001900000004f0000613d000000000101043b00000006011000290000000002000411000000000021041b0000000801000029000000000101041a000800000001001d000000000020043f0000000701000029000000200010043f0000000001000414000003900010009c0000039001008041000000c001100210000003a4011001c700008010020000390e3a0e350000040f00000001002001900000004f0000613d000000000101043b0000000802000029000000000021041b0000000901000029000000000010043f000003a701000041000000200010043f0000000001000414000003900010009c0000039001008041000000c001100210000003a4011001c700008010020000390e3a0e350000040f00000001002001900000004f0000613d000000000101043b000000000101041a000000ff00100190000002440000c13d0000000901000029000000000010043f000003a701000041000000200010043f0000000001000414000003900010009c0000039001008041000000c001100210000003a4011001c700008010020000390e3a0e350000040f00000001002001900000004f0000613d000000000101043b000000000201041a000003f30220019700000001022001bf000000000021041b0000000001000414000003900010009c0000039001008041000000c0011002100000039e011001c70000800d020000390000000403000039000003a504000041000003a805000041000000090600002900000000070004110e3a0e300000040f00000001002001900000004f0000613d000003a801000041000000000010043f0000000101000039000000200010043f0000000001000414000003900010009c0000039001008041000000c001100210000003a4011001c700008010020000390e3a0e350000040f00000001002001900000004f0000613d000000000201043b0000000001000411000000000010043f000900000002001d0000000101200039000800000001001d000000200010043f0000000001000414000003900010009c0000039001008041000000c001100210000003a4011001c700008010020000390e3a0e350000040f00000001002001900000004f0000613d000000000101043b000000000101041a000000000001004b000002440000c13d0000000901000029000000000101041a000700000001001d000003980010009c00000a5c0000213d000000070100002900000001011000390000000902000029000000000012041b000000000020043f0000000001000414000003900010009c0000039001008041000000c001100210000003a6011001c700008010020000390e3a0e350000040f00000001002001900000004f0000613d000000000101043b00000007011000290000000002000411000000000021041b0000000901000029000000000101041a000900000001001d000000000020043f0000000801000029000000200010043f0000000001000414000003900010009c0000039001008041000000c001100210000003a4011001c700008010020000390e3a0e350000040f00000001002001900000004f0000613d000000000101043b0000000902000029000000000021041b0000000a0000006b0000063b0000613d0000000701000039000000000401041a000000400100043d00000040021000390000000a0300002900000000003204350000002002100039000900000004001d0000039303400197000000000032043500000000020004110000000000210435000003900010009c000003900100804100000040011002100000000002000414000003900020009c0000039002008041000000c002200210000000000112019f000003a1011001c70000800d020000390000000103000039000003a9040000410e3a0e300000040f00000001002001900000004f0000613d0000000901000029000003aa011001970000000a011001af0000000702000039000000000012041b000000800100043d000001400000044300000160001004430000002001000039000001000010044300000001010000390000012000100443000003ab0100004100000e3b0001042e000003b60020009c000005000000613d000003b70020009c000003f20000613d000003b80020009c0000004f0000c13d000000240030008c0000004f0000413d0000000002000416000000000002004b0000004f0000c13d0000000401100370000000000101043b000003930010009c0000004f0000213d00000393031001970000000501000039000000000101041a00000020011002700000039302100198000700000003001d000005480000c13d000600600000003d000000000030043f0000000601000039000000200010043f0000000001000414000003900010009c0000039001008041000000c001100210000003a4011001c700008010020000390e3a0e350000040f00000001002001900000004f0000613d000000000101043b000000000000043f000000200010043f0000000001000414000003900010009c0000039001008041000000c001100210000003a4011001c700008010020000390e3a0e350000040f00000001002001900000004f0000613d00000006020000290000000023020434000000000101043b000000000101041a000503900010019b000000050030002a000003720000413d0000000503300029000003980030009c00000a5c0000213d00000005013002100000003f04100039000003e204400197000000400700043d0000000004470019000000000074004b00000000050000390000000105004039000003980040009c00000a5c0000213d000000010050019000000a5c0000c13d000000400040043f0000000008370436000000000003004b000002cb0000613d00000060030000390000000004000019000000400500043d000003e40050009c00000a5c0000213d0000008006500039000000400060043f0000006006500039000000000036043500000040065000390000000000060435000000200650003900000000000604350000000000050435000000000648001900000000005604350000002004400039000000000014004b000002ba0000413d00000006050000290000000001050433000000000001004b000002df0000613d00000000030704330000000001000019000000000013004b000009610000a13d000000050310021000000000043800190000000003320019000000000303043300000000003404350000000003070433000000000013004b000009610000a13d00000001011000390000000004050433000000000041004b000002d10000413d000800000008001d000900000007001d000000050000006b000008c70000c13d000000400100043d00000020020000390000000003210436000000090200002900000000020204330000000000230435000000400310003900000005042002100000000007340019000000000002004b00000a010000c13d0000000002170049000000a90000013d000003be0020009c000005080000613d000003bf0020009c000004210000613d000003c00020009c0000004f0000c13d0000000001000416000000000001004b0000004f0000c13d0000000501000039000000000101041a0000002001100270000004440000013d000003af0020009c000005270000613d000003b00020009c0000043f0000613d000003b10020009c0000004f0000c13d000000240030008c0000004f0000413d0000000002000416000000000002004b0000004f0000c13d0000000402100370000000000202043b000003980020009c0000004f0000213d0000002304200039000000000034004b0000004f0000813d000a00040020003d0000000a01100360000000000101043b000003980010009c0000004f0000213d00000000011200190000002401100039000000000031004b0000004f0000213d0000039601000041000000800010043f0000002001000039000000840010043f0000000f01000039000000a40010043f0000039501000041000000c40010043f000003cb0100004100000000001004430000000001000412000000040010044300000024000004430000000001000414000003900010009c0000039001008041000000c001100210000003cc011001c700008005020000390e3a0e350000040f000000010020019000000c300000613d000000000101043b00000000030004140000039302100197000003900030009c0000039003008041000000c001300210000003cd011001c70e3a0e350000040f00000060031002700000039003300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000080057001bf000000800a000039000003450000613d000000000801034f000000008908043c000000000a9a043600000000005a004b000003410000c13d000000000006004b000003520000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f000000000065043500000001002001900000072c0000613d0000001f01400039000000600110018f000900000001001d00000080011001bf000800000001001d000000400010043f000000200030008c0000004f0000413d000000800100043d000003930010009c0000004f0000213d0000000002000410000000000012004b000009670000c13d0000000501000039000000000201041a0000039003200197000700000003001d000003900030009c000003720000613d000003940320019700000001022000390000039002200197000000000232019f000000000021041b0000000401000039000000000201041a000600000002001d000000010220003a00000a3b0000c13d000003e601000041000000000010043f0000001101000039000000040010043f000003dc0100004100000e3c000104300000001f0530018f0000039206300198000000400200043d0000000004620019000003830000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b0000037f0000c13d000000000005004b000003900000613d000000000161034f0000000305500210000000000604043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f00000000001404350000006001300210000003900020009c00000390020080410000004002200210000000000112019f00000e3c00010430000000240030008c0000004f0000413d0000000002000416000000000002004b0000004f0000c13d0000000401100370000000000101043b000a00000001001d000003930010009c0000004f0000213d0000000001000411000000000010043f000003a701000041000000200010043f0000000001000414000003900010009c0000039001008041000000c001100210000003a4011001c700008010020000390e3a0e350000040f00000001002001900000004f0000613d000000000101043b000000000101041a000000ff00100190000006380000c13d000000400100043d0000002402100039000003a8030000410000000000320435000003de020000410000000000210435000000040210003900000000030004110000000000320435000003900010009c00000390010080410000004001100210000003df011001c700000e3c000104300000000001000416000000000001004b0000004f0000c13d000000800000043f000003da0100004100000e3b0001042e0000000001000416000000000001004b0000004f0000c13d0000000001000412000c00000001001d000b00000000003d0000800501000039000000440300003900000000040004150000000c0440008a0000000504400210000003cb020000410e3a0e120000040f000004440000013d000000240030008c0000004f0000413d0000000002000416000000000002004b0000004f0000c13d0000000401100370000000000101043b000000000010043f0000000101000039000000200010043f000000400200003900000000010000190e3a0dfd0000040f000005040000013d000000440030008c0000004f0000413d0000000002000416000000000002004b0000004f0000c13d0000002402100370000000000302043b000003930030009c0000004f0000213d0000000002000411000000000023004b000005900000c13d0000000401100370000000000101043b0e3a0cff0000040f000000000100001900000e3b0001042e000000240030008c0000004f0000413d0000000002000416000000000002004b0000004f0000c13d0000000401100370000000000101043b000003900010009c0000004f0000213d000000000010043f0000000201000039000000200010043f000000400200003900000000010000190e3a0dfd0000040f000000000201041a000a00000002001d00000001011000390e3a0c830000040f0000000a0500002900000020025002700000039002200197000000400400043d000900000004001d0000002003400039000000000023043500000040025002700000039302200197000000400340003900000000002304350000008002000039000000600340003900000000002304350000039002500197000000000024043500000080024000390e3a0c4d0000040f00000009020000290000000001210049000003900010009c0000039001008041000003900020009c000003900200804100000060011002100000004002200210000000000121019f00000e3b0001042e000000440030008c0000004f0000413d0000000002000416000000000002004b0000004f0000c13d0000002402100370000000000202043b000a00000002001d000003930020009c0000004f0000213d0000000401100370000000000101043b000000000010043f000000200000043f000000400200003900000000010000190e3a0dfd0000040f0000000a02000029000000000020043f000000200010043f000000000100001900000040020000390e3a0dfd0000040f000000000101041a000000ff001001900000000001000039000000010100c039000000800010043f000003da0100004100000e3b0001042e0000000001000416000000000001004b0000004f0000c13d0000000701000039000000000101041a0000039301100197000000800010043f000003da0100004100000e3b0001042e000000240030008c0000004f0000413d0000000002000416000000000002004b0000004f0000c13d0000000401100370000000000101043b000003ee001001980000004f0000c13d000003ef0010009c000005940000c13d0000000102000039000005990000013d000000240030008c0000004f0000413d0000000002000416000000000002004b0000004f0000c13d0000000401100370000000000101043b000a00000001001d000003900010009c0000004f0000213d0000010001000039000000400010043f000000800000043f000000a00000043f000000c00000043f0000006001000039000000e00010043f0000000a01000029000000000010043f0000000201000039000000200010043f0000000001000414000003900010009c0000039001008041000000c001100210000003a4011001c700008010020000390e3a0e350000040f00000001002001900000004f0000613d000000400500043d000003e40050009c00000a5c0000213d000000000101043b0000008002500039000000400020043f000000000201041a0000039003200197000000000635043600000040032002700000039303300197000000400750003900000000003704350000002002200270000003900220019700000000002604350000000101100039000000000201041a000000010320019000000001082002700000007f0880618f0000001f0080008c00000000040000390000000104002039000000000043004b000006d80000613d000003e601000041000000000010043f0000002201000039000000040010043f000003dc0100004100000e3c000104300000000001000416000000000001004b0000004f0000c13d000003e901000041000000800010043f000003da0100004100000e3b0001042e000000240030008c0000004f0000413d0000000002000416000000000002004b0000004f0000c13d0000000401100370000000000101043b000a00000001001d000003900010009c0000004f0000213d0000000001000411000000000010043f000003a701000041000000200010043f0000000001000414000003900010009c0000039001008041000000c001100210000003a4011001c700008010020000390e3a0e350000040f00000001002001900000004f0000613d000000400200043d000000000101043b000000000101041a000000ff001001900000064f0000c13d0000002401200039000003a8030000410000000000310435000003de010000410000000000120435000000040120003900000000030004110000000000310435000003900020009c00000390020080410000004001200210000003df011001c700000e3c00010430000000440030008c0000004f0000413d0000000002000416000000000002004b0000004f0000c13d0000000402100370000000000202043b000a00000002001d0000002401100370000000000101043b000900000001001d000003930010009c0000004f0000213d0000000a01000029000000000010043f000000200000043f0000000001000414000003900010009c0000039001008041000000c001100210000003a4011001c700008010020000390e3a0e350000040f00000001002001900000004f0000613d000000000101043b0000000101100039000000000101041a000800000001001d000000000010043f000000200000043f0000000001000414000003900010009c0000039001008041000000c001100210000003a4011001c700008010020000390e3a0e350000040f00000001002001900000004f0000613d000000000101043b0000000002000411000000000020043f000000200010043f0000000001000414000003900010009c0000039001008041000000c001100210000003a4011001c700008010020000390e3a0e350000040f00000001002001900000004f0000613d000000000101043b000000000101041a000000ff00100190000007380000c13d000000400100043d00000024021000390000000803000029000003b40000013d0000000001000416000000000001004b0000004f0000c13d0000000401000039000000000101041a000000800010043f000003da0100004100000e3b0001042e000000440030008c0000004f0000413d0000000002000416000000000002004b0000004f0000c13d0000000402100370000000000202043b000000000020043f0000000102000039000000200020043f0000002401100370000000000101043b000a00000001001d000000400200003900000000010000190e3a0dfd0000040f0000000a020000290e3a0de10000040f0000000302200210000000000101041a000000000121022f0000039301100197000000ff0020008c0000000001002019000000400200043d0000000000120435000003900020009c00000390020080410000004001200210000003dd011001c700000e3b0001042e000000240030008c0000004f0000413d0000000002000416000000000002004b0000004f0000c13d0000000401100370000000000101043b000a00000001001d000000000010043f0000000301000039000000200010043f0000000001000414000003900010009c0000039001008041000000c001100210000003a4011001c700008010020000390e3a0e350000040f00000001002001900000004f0000613d000000400400043d000000000101043b000000000101041a00000390021001980000059d0000c13d0000000501000039000000000101041a00000020011002700000039302100198000006720000c13d000000000104001900000000020000190000059e0000013d000003e001000041000000800010043f000000840030043f0000000001000414000003900010009c0000039001008041000000c001100210000003e1011001c70e3a0e350000040f00000060031002700000001f0430018f000003920530019700000390033001970000000100200190000006b40000613d0000008002500039000000000005004b000005600000613d0000008006000039000000000701034f000000007807043c0000000006860436000000000026004b0000055c0000c13d000000000004004b0000056d0000613d000000000151034f0000000304400210000000000502043300000000054501cf000000000545022f000000000101043b0000010004400089000000000141022f00000000014101cf000000000151019f00000000001204350000001f0130003900000391051001970000008001500039000600000001001d000000400010043f000000200030008c0000004f0000413d000000800400043d000003980040009c0000004f0000213d00000080013000390000009f02400039000000000012004b0000004f0000813d00000080024000390000000006020433000003980060009c00000a5c0000213d00000005076002100000003f03700039000003e2033001970000000603300029000003980030009c00000a5c0000213d000000400030043f00000006030000290000000000630435000000a0034000390000000004370019000000000014004b0000004f0000213d000000000006004b00000a620000c13d0000000703000029000002860000013d000003ea01000041000000800010043f000003eb0100004100000e3c00010430000003f00010009c00000000020000390000000102006039000003f10010009c00000001022061bf000000010120018f000000800010043f000003da0100004100000e3b0001042e00000000010400190000000000210435000003900010009c00000390010080410000004001100210000003dd011001c700000e3b0001042e0000039b0100004100000007020000290000000000120435000003900020009c0000039001000041000000000102401900000040011002100000000002000414000003900020009c0000039002008041000000c002200210000000000112019f0000039c011001c700000009020000290e3a0e350000040f000000070b00002900000060031002700000039003300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b0019000005c30000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b000005bf0000c13d000000000006004b000005d00000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f00000000006504350000000100200190000006cc0000613d0000001f01400039000000600110018f0000000001b10019000003980010009c00000a5c0000213d000600000001001d000000400010043f000000200030008c0000004f0000413d000000070100002900000000010104330000000402000039000000000012041b0000039d0100004100000006020000290000000000120435000003900020009c0000039001000041000000000102401900000040011002100000000002000414000003900020009c0000039002008041000000c002200210000000000112019f0000039c011001c700000009020000290e3a0e350000040f00000060031002700000039003300197000000200030008c000000200400003900000000040340190000001f0640018f00000020074001900000000605700029000005fd0000613d000000000801034f0000000609000029000000008a08043c0000000009a90436000000000059004b000005f90000c13d000000000006004b0000060a0000613d000000000171034f0000000306600210000000000705043300000000076701cf000000000767022f000000000101043b0000010006600089000000000161022f00000000016101cf000000000171019f00000000001504350000000100200190000007ec0000613d0000001f01400039000000600110018f0000000601100029000003980010009c00000a5c0000213d000000400010043f000000200030008c0000004f0000413d00000006020000290000000002020433000900000002001d000003900020009c0000004f0000213d0000000902000029000003e90020008c00000aba0000a13d0000004002100039000000090300002900000000003204350000002002100039000003e903000039000000000032043500000000020004110000000000210435000003900010009c000003900100804100000040011002100000000002000414000003900020009c0000039002008041000000c002200210000000000112019f000003a1011001c70000800d020000390000000103000039000003a2040000410e3a0e300000040f00000001002001900000004f0000613d000000090200002900000008012001af0000000502000039000000000012041b0000014d0000013d0000000a010000290000039303100198000006fe0000c13d000000400100043d0000006402100039000003ec0300004100000000003204350000004402100039000003ed03000041000000000032043500000024021000390000002d030000390000000000320435000003ce020000410000000000210435000000040210003900000020030000390000000000320435000003900010009c00000390010080410000004001100210000003d1011001c700000e3c000104300000000a0100002900000390031001970000000501000039000000000401041a0000004001200039000a00000003001d00000000003104350000002001200039000900000004001d0000039003400197000000000031043500000000010004110000000000120435000003900020009c000003900200804100000040012002100000000002000414000003900020009c0000039002008041000000c002200210000000000112019f000003a1011001c70000800d020000390000000103000039000003a2040000410e3a0e300000040f00000001002001900000004f0000613d000000090100002900000394011001970000000a011001af0000000502000039000000000012041b000000000100001900000e3b0001042e000003db01000041000000000014043500000004014000390000000a030000290000000000310435000003900040009c0000039001000041000000000104401900000040011002100000000003000414000003900030009c0000039003008041000000c003300210000000000113019f000003dc011001c7000a00000004001d0e3a0e350000040f0000000a0b00002900000060031002700000039003300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b0019000006930000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b0000068f0000c13d000000000006004b000006a00000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f00000000006504350000000100200190000007200000613d0000001f01400039000000600210018f0000000001b20019000000000021004b00000000020000390000000102004039000003980010009c00000a5c0000213d000000010020019000000a5c0000c13d000000400010043f000000200030008c0000004f0000413d0000000a020000290000000002020433000003900020009c0000004f0000213d0000059e0000013d000000400200043d0000000006520019000000000005004b000006be0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000068004b000006ba0000c13d000000000004004b000003900000613d000000000151034f0000000304400210000000000506043300000000054501cf000000000545022f000000000101043b0000010004400089000000000141022f00000000014101cf000000000151019f0000000000160435000003900000013d0000001f0530018f0000039206300198000000400200043d0000000004620019000003830000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000006d30000c13d000003830000013d000700000006001d000000400600043d0000000004860436000000000003004b000007cd0000613d000400000004001d000500000008001d000600000006001d000900000007001d000800000005001d000000000010043f0000000001000414000003900010009c0000039001008041000000c001100210000003a6011001c700008010020000390e3a0e350000040f00000001002001900000004f0000613d0000000508000029000000000008004b00000000020000190000000805000029000000090700002900000006060000290000000409000029000007d20000613d000000000101043b00000000020000190000000003290019000000000401041a000000000043043500000001011000390000002002200039000000000082004b000006f60000413d000007d20000013d0000000701000039000000000401041a000000400100043d0000004002100039000a00000003001d00000000003204350000002002100039000900000004001d0000039303400197000000000032043500000000020004110000000000210435000003900010009c000003900100804100000040011002100000000002000414000003900020009c0000039002008041000000c002200210000000000112019f000003a1011001c70000800d020000390000000103000039000003a9040000410e3a0e300000040f00000001002001900000004f0000613d0000000901000029000003aa011001970000000a011001af0000000702000039000000000012041b000000000100001900000e3b0001042e0000001f0530018f0000039206300198000000400200043d0000000004620019000003830000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000007270000c13d000003830000013d0000001f0530018f0000039206300198000000400200043d0000000004620019000003830000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000007330000c13d000003830000013d0000000a01000029000000000010043f000000200000043f0000000001000414000003900010009c0000039001008041000000c001100210000003a4011001c700008010020000390e3a0e350000040f00000001002001900000004f0000613d000000000101043b0000000902000029000000000020043f000000200010043f0000000001000414000003900010009c0000039001008041000000c001100210000003a4011001c700008010020000390e3a0e350000040f00000001002001900000004f0000613d000000000101043b000000000101041a000000ff00100190000007cb0000c13d0000000a01000029000000000010043f000000200000043f0000000001000414000003900010009c0000039001008041000000c001100210000003a4011001c700008010020000390e3a0e350000040f00000001002001900000004f0000613d000000000101043b0000000902000029000000000020043f000000200010043f0000000001000414000003900010009c0000039001008041000000c001100210000003a4011001c700008010020000390e3a0e350000040f00000001002001900000004f0000613d000000000101043b000000000201041a000003f30220019700000001022001bf000000000021041b0000000001000414000003900010009c0000039001008041000000c0011002100000039e011001c70000800d020000390000000403000039000003a5040000410000000a05000029000000090600002900000000070004110e3a0e300000040f00000001002001900000004f0000613d0000000a01000029000000000010043f0000000101000039000000200010043f0000000001000414000003900010009c0000039001008041000000c001100210000003a4011001c700008010020000390e3a0e350000040f00000001002001900000004f0000613d000000000201043b0000000901000029000000000010043f000a00000002001d0000000101200039000800000001001d000000200010043f0000000001000414000003900010009c0000039001008041000000c001100210000003a4011001c700008010020000390e3a0e350000040f00000001002001900000004f0000613d000000000101043b000000000101041a000000000001004b000007cb0000c13d0000000a01000029000000000101041a000700000001001d000003980010009c00000a5c0000213d000000070100002900000001011000390000000a02000029000000000012041b000000000020043f0000000001000414000003900010009c0000039001008041000000c001100210000003a6011001c700008010020000390e3a0e350000040f00000001002001900000004f0000613d000000000101043b00000007011000290000000902000029000000000021041b0000000a01000029000000000101041a000a00000001001d000000000020043f0000000801000029000000200010043f0000000001000414000003900010009c0000039001008041000000c001100210000003a4011001c700008010020000390e3a0e350000040f00000001002001900000004f0000613d000000000101043b0000000a02000029000000000021041b000000000100001900000e3b0001042e000003f3012001970000000000140435000000000008004b000000200200003900000000020060390000003f01200039000003f2021001970000000001620019000000000021004b00000000020000390000000102004039000003980010009c00000a5c0000213d000000010020019000000a5c0000c13d000000400010043f0000006001500039000600000001001d0000000000610435000900000007001d00000000010704330000039300100198000007f80000c13d000800000005001d0000000501000039000000000101041a0000002001100270000503930010019c000008080000c13d0000000801000029000007f90000013d0000000001000414000003900010009c0000039001008041000000c0011002100000039e011001c70000800d0200003900000001030000390000039f040000410e3a0e300000040f00000001002001900000004f0000613d0000014d0000013d0000000001050019000000400300043d000a00000003001d000000200200003900000000022304360e3a0c5f0000040f0000000a020000290000000001210049000003900010009c00000390010080410000006001100210000003900020009c00000390020080410000004002200210000000000121019f00000e3b0001042e000000400200043d000400000002001d000003e7010000410000000000120435000003900020009c0000039001000041000000000102401900000040011002100000000002000414000003900020009c0000039002008041000000c002200210000000000112019f0000039c011001c700000005020000290e3a0e350000040f00000060031002700000039003300197000000200030008c000000200400003900000000040340190000001f0640018f0000002007400190000000040b0000290000000405700029000008280000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b000008240000c13d000000000006004b000008350000613d000000000171034f0000000306600210000000000705043300000000076701cf000000000767022f000000000101043b0000010006600089000000000161022f00000000016101cf000000000171019f000000000015043500000001002001900000097a0000613d0000001f01400039000000600110018f0000000002b10019000000000012004b00000000010000390000000101004039000900000002001d000003980020009c00000a5c0000213d000000010010019000000a5c0000c13d0000000901000029000000400010043f000000200030008c0000004f0000413d00000000010b0433000003930010009c0000004f0000213d000003e8010000410000000903000029000000000013043500000004013000390000000a020000290000000000210435000003900030009c0000039001000041000000000103401900000040011002100000000002000414000003900020009c0000039002008041000000c002200210000000000112019f000003dc011001c700000005020000290e3a0e350000040f00000060031002700000001f0430018f00000392053001970000039003300197000000010020019000000b590000613d0000000902500029000000000005004b0000086a0000613d000000000601034f0000000907000029000000006806043c0000000007870436000000000027004b000008660000c13d000000000004004b000008770000613d000000000151034f0000000304400210000000000502043300000000054501cf000000000545022f000000000101043b0000010004400089000000000141022f00000000014101cf000000000151019f00000000001204350000001f0130003900000391011001970000000901100029000003980010009c00000a5c0000213d000000400010043f000000200030008c0000004f0000413d00000009020000290000000004020433000003980040009c0000004f0000213d000000090230002900000009034000290000000004320049000003e30040009c0000004f0000213d000000800040008c0000004f0000413d000003e40010009c00000a5c0000213d0000008004100039000000400040043f0000000045030434000003900050009c0000004f0000213d00000000055104360000000004040433000003900040009c0000004f0000213d000000000045043500000040043000390000000004040433000003930040009c0000004f0000213d0000004005100039000000000045043500000060043000390000000004040433000003980040009c0000004f0000213d00000000033400190000001f04300039000000000024004b0000004f0000813d0000000054030434000003980040009c00000a5c0000213d0000001f03400039000003f2033001970000003f03300039000003f206300197000000400300043d0000000006630019000000000036004b00000000070000390000000107004039000003980060009c00000a5c0000213d000000010070019000000a5c0000c13d000000400060043f00000000064304360000000007540019000000000027004b0000004f0000213d000000000004004b000008c30000613d000000000200001900000000076200190000000008520019000000000808043300000000008704350000002002200039000000000042004b000008bc0000413d00000000024600190000000000020435000800600010003d000009fe0000013d000a00000000001d0000000701000029000000000010043f0000000601000039000000200010043f0000000001000414000003900010009c0000039001008041000000c001100210000003a4011001c700008010020000390e3a0e350000040f00000001002001900000004f0000613d000000060200002900000000020204330000000a03000029000000000032001a000003720000413d0000000002320019000003f40020009c000003720000613d000000000101043b0000000102200039000000000020043f000000200010043f0000000001000414000003900010009c0000039001008041000000c001100210000003a4011001c700008010020000390e3a0e350000040f00000001002001900000004f0000613d000000000101043b000000000101041a0000039001100197000000000010043f0000000201000039000000200010043f0000000001000414000003900010009c0000039001008041000000c001100210000003a4011001c700008010020000390e3a0e350000040f00000001002001900000004f0000613d000000400700043d000003e40070009c0000000905000029000000080600002900000a5c0000213d000000000101043b0000008002700039000000400020043f000000000201041a0000004003200270000003930330019700000040047000390000000000340435000003900320019700000000033704360000002002200270000003900220019700000000002304350000000101100039000000000201041a000000010320019000000001092002700000007f0990618f0000001f0090008c00000000040000390000000104002039000000000442013f00000001004001900000048d0000c13d000000400800043d0000000004980436000000000003004b0000093a0000613d000100000004001d000400000009001d000200000008001d000300000007001d000000000010043f0000000001000414000003900010009c0000039001008041000000c001100210000003a6011001c700008010020000390e3a0e350000040f00000001002001900000004f0000613d0000000409000029000000000009004b000009400000613d000000000201043b00000000010000190000000905000029000000080600002900000003070000290000000208000029000000010a00002900000000031a0019000000000402041a000000000043043500000001022000390000002001100039000000000091004b000009320000413d000009450000013d000003f3012001970000000000140435000000000009004b00000020010000390000000001006039000009450000013d000000000100001900000009050000290000000806000029000000030700002900000002080000290000003f01100039000003f2021001970000000001820019000000000021004b00000000020000390000000102004039000003980010009c00000a5c0000213d000000010020019000000a5c0000c13d000000400010043f0000006001700039000000000081043500000000010504330000000a02000029000000000021004b000009610000a13d0000000501200210000000000116001900000000007104350000000001050433000000000021004b000009610000a13d0000000102200039000a00000002001d000000050020006c000008c80000413d000002e30000013d000003e601000041000000000010043f0000003201000039000000040010043f000003dc0100004100000e3c00010430000003ce0100004100000008030000290000000000130435000000090400002900000084014001bf00000020020000390000000000210435000000e401400039000003cf020000410000000000210435000000c401400039000003d0020000410000000000210435000000a401400039000000310200003900000000002104350000004001300210000003d1011001c700000e3c00010430000000400300043d000003e8010000410000000001130436000400000001001d00000004013000390000000a020000290000000000210435000003900030009c000a00000003001d0000039001000041000000000103401900000040011002100000000002000414000003900020009c0000039002008041000000c002200210000000000112019f000003dc011001c700000005020000290e3a0e350000040f00000060031002700000001f0430018f00000392053001970000039003300197000000010020019000000a300000613d0000000a02500029000000000005004b0000099d0000613d000000000601034f0000000a07000029000000006806043c0000000007870436000000000027004b000009990000c13d000000000004004b000009aa0000613d000000000151034f0000000304400210000000000502043300000000054501cf000000000545022f000000000101043b0000010004400089000000000141022f00000000014101cf000000000151019f00000000001204350000001f0130003900000391021001970000000a01200029000000000021004b00000000020000390000000102004039000003980010009c00000a5c0000213d000000010020019000000a5c0000c13d000000400010043f000000800030008c0000004f0000413d0000000a020000290000000002020433000003900020009c0000004f0000213d00000004040000290000000004040433000003900040009c0000004f0000213d0000000a0500002900000040055000390000000005050433000003930050009c0000004f0000213d0000000a0600002900000060066000390000000006060433000003980060009c0000004f0000213d0000000a073000290000000a036000290000001f06300039000000000076004b0000000008000019000003e508008041000003e506600197000003e509700197000000000a96013f000000000096004b0000000006000019000003e506004041000003e500a0009c000000000608c019000000000006004b0000004f0000c13d0000000063030434000003980030009c00000a5c0000213d0000001f08300039000003f2088001970000003f08800039000003f2088001970000000008180019000003980080009c00000a5c0000213d000000400080043f00000000083104360000000009630019000000000079004b0000004f0000213d000000000003004b000009f20000613d00000000070000190000000009870019000000000a670019000000000a0a04330000000000a904350000002007700039000000000037004b000009eb0000413d00000000038300190000000000030435000000060300002900000000001304350000039301500197000000090300002900000000001304350000039001400197000000070300002900000000001304350000039003200197000000080100002900000008020000290000000000320435000007f90000013d00000080040000390000000006000019000000090d00002900000a0d0000013d0000001f09800039000003f2099001970000000008780019000000000008043500000000077900190000000106600039000000000026004b000002ee0000813d0000000008170049000000400880008a0000000003830436000000200dd0003900000000080d043300000000a908043400000390099001970000000009970436000000000a0a0433000003900aa001970000000000a90435000000400980003900000000090904330000039309900197000000400a70003900000000009a04350000006008800039000000000808043300000060097000390000000000490435000000800a700039000000009808043400000000008a0435000000a007700039000000000008004b00000a050000613d000000000a000019000000000b7a0019000000000ca90019000000000c0c04330000000000cb0435000000200aa0003900000000008a004b00000a280000413d00000a050000013d000000400200043d0000000006520019000000000005004b000006be0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000068004b00000a360000c13d000006be0000013d000000000021041b000000090100002900000100011001bf000000400010043f000000070100002900000008020000290000000000120435000003d20100004100000000001004430000000001000414000003900010009c0000039001008041000000c001100210000003d3011001c70000800b020000390e3a0e350000040f000000010020019000000c300000613d000000000101043b00000390011001970000000902000029000000a003200039000400000003001d0000000000130435000000c0022000390000000001000411000500000002001d000000000012043500000000040003670000000a01400360000000000101043b000003980010009c00000ac30000a13d000003e601000041000000000010043f0000004101000039000000040010043f000003dc0100004100000e3c00010430000000a00550003900000a6b0000013d00000000088b0019000000000008043500000060087000390000000000a804350000000005750436000000000043004b0000058e0000813d0000000037030434000003980070009c0000004f0000213d000000000927001900000020089000390000000007810049000003e30070009c0000004f0000213d000000800070008c0000004f0000413d000000400700043d000003e40070009c00000a5c0000213d000000800a7000390000004000a0043f000000000a0804330000039000a0009c0000004f0000213d000000000aa70436000000400b900039000000000b0b04330000039000b0009c0000004f0000213d0000000000ba0435000000600a900039000000000a0a04330000039300a0009c0000004f0000213d000000400b7000390000000000ab043500000080099000390000000009090433000003980090009c0000004f0000213d00000000088900190000001f09800039000000000019004b000000000a000019000003e50a008041000003e509900197000000000009004b000000000b000019000003e50b004041000003e50090009c000000000b0ac01900000000000b004b0000004f0000c13d0000000098080434000003980080009c00000a5c0000213d0000001f0a800039000003f20aa001970000003f0aa00039000003f20ba00197000000400a00043d000000000bba00190000000000ab004b000000000c000039000000010c0040390000039800b0009c00000a5c0000213d0000000100c0019000000a5c0000c13d0000004000b0043f000000000b8a0436000000000c98001900000000001c004b0000004f0000213d000000000008004b00000a640000613d000000000c000019000000000dbc0019000000000e9c0019000000000e0e04330000000000ed0435000000200cc0003900000000008c004b00000ab20000413d00000a640000013d0000000001000414000003900010009c0000039001008041000000c0011002100000039e011001c70000800d020000390000000103000039000003a004000041000007f40000013d0000001f02100039000003f2022001970000003f02200039000003f203200197000000400200043d0000000003320019000000000023004b00000000050000390000000105004039000003980030009c00000a5c0000213d000000010050019000000a5c0000c13d000000400030043f0000000003120436000003f2051001980000001f0610018f0000000a07000029000300200070003d0000000307400360000000000453001900000adf0000613d000000000807034f0000000009030019000000008a08043c0000000009a90436000000000049004b00000adb0000c13d000000000006004b00000aec0000613d000000000557034f0000000306600210000000000704043300000000076701cf000000000767022f000000000505043b0000010006600089000000000565022f00000000056501cf000000000575019f0000000000540435000000000113001900000000000104350000000901000029000000e001100039000900000001001d00000000002104350000000701000029000000000010043f0000000201000039000000200010043f0000000001000414000003900010009c0000039001008041000000c001100210000003a4011001c700008010020000390e3a0e350000040f00000001002001900000004f0000613d000000080200002900000000020204330000039002200197000000000101043b000000000301041a000003d403300197000000000223019f000000040300002900000000030304330000002003300210000003d503300197000000000232019f000000050300002900000000030304330000004003300210000003d603300197000000000232019f000000000021041b00000009020000290000000002020433000500000002001d0000000032020434000800000003001d000900000002001d000003980020009c00000a5c0000213d0000000101100039000400000001001d000000000101041a000000010010019000000001021002700000007f0220618f000200000002001d0000001f0020008c00000000020000390000000102002039000000000121013f00000001001001900000048d0000c13d0000000201000029000000200010008c00000b450000413d0000000401000029000000000010043f0000000001000414000003900010009c0000039001008041000000c001100210000003a6011001c700008010020000390e3a0e350000040f00000001002001900000004f0000613d00000009030000290000001f023000390000000502200270000000200030008c0000000002004019000000000301043b00000002010000290000001f01100039000000050110027000000000011300190000000002230019000000000012004b00000b450000813d000000000002041b0000000102200039000000000012004b00000b410000413d00000009010000290000001f0010008c00000b640000a13d0000000401000029000000000010043f0000000001000414000003900010009c0000039001008041000000c001100210000003a6011001c700008010020000390e3a0e350000040f00000001002001900000004f0000613d000000200200008a0000000902200180000000000101043b00000b710000c13d000000200500003900000b7e0000013d000000400200043d0000000006520019000000000005004b000006be0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000068004b00000b5f0000c13d000006be0000013d000000090000006b000000000100001900000b690000613d0000000801000029000000000101043300000009040000290000000302400210000003f40220027f000003f402200167000000000121016f0000000102400210000000000121019f00000b8c0000013d000000010320008a0000000503300270000000000331001900000020050000390000000103300039000000050600002900000000046500190000000004040433000000000041041b00000020055000390000000101100039000000000031004b00000b770000c13d000000090020006c00000b890000813d00000009020000290000000302200210000000f80220018f000003f40220027f000003f40220016700000005035000290000000003030433000000000223016f000000000021041b0000000901000029000000010110021000000001011001bf0000000402000029000000000012041b0000000601000029000000000010043f0000000301000039000000200010043f0000000001000414000003900010009c0000039001008041000000c001100210000003a4011001c700008010020000390e3a0e350000040f00000001002001900000004f0000613d000000000101043b000000000201041a000003940220019700000007022001af000000000021041b0000000701000039000000000101041a000003d70200004100000000002004430000039301100197000900000001001d00000004001004430000000001000414000003900010009c0000039001008041000000c001100210000003d8011001c700008002020000390e3a0e350000040f000000010020019000000c300000613d000000000101043b000000000001004b0000004f0000613d000000400300043d000000440130003900000060020000390000000000210435000000240130003900000000020004110000000000210435000003d9010000410000000000130435000000040130003900000007020000290000000000210435000000030200002900000000042003670000000a020000290000000001200367000000000101043b00000064023000390000000000120435000003f2051001980000001f0610018f000a00000003001d0000008402300039000000000352001900000bd20000613d000000000704034f0000000008020019000000007907043c0000000008980436000000000038004b00000bce0000c13d000000000006004b00000bdf0000613d000000000454034f0000000305600210000000000603043300000000065601cf000000000656022f000000000404043b0000010005500089000000000454022f00000000045401cf000000000464019f00000000004304350000001f03100039000003f203300197000000000121001900000000000104350000008401300039000003900010009c000003900100804100000060011002100000000a02000029000003900020009c00000390020080410000004002200210000000000121019f0000000002000414000003900020009c0000039002008041000000c002200210000000000121019f00000009020000290e3a0e300000040f000000010020019000000c310000613d0000000a01000029000003980010009c00000a5c0000213d0000000a01000029000000400010043f0000000001000411000000000010043f0000000601000039000000200010043f0000000001000414000003900010009c0000039001008041000000c001100210000003a4011001c700008010020000390e3a0e350000040f00000001002001900000004f0000613d000000000101043b000000000000043f000000200010043f0000000001000414000003900010009c0000039001008041000000c001100210000003a4011001c700008010020000390e3a0e350000040f00000001002001900000004f0000613d000000000101043b000000000201041a0000039003200197000003900030009c000003720000613d00000394032001970000000102200039000a03900020019b0000000a023001af000000000021041b0000000001000411000000000010043f0000000601000039000000200010043f000000400200003900000000010000190e3a0dfd0000040f0000000a02000029000000000020043f000000200010043f000000000100001900000040020000390e3a0dfd0000040f000000000201041a000003940220019700000007022001af000000000021041b000000000100001900000e3b0001042e000000000001042f00000060061002700000001f0460018f0000039205600198000000400200043d000000000352001900000c3d0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000038004b00000c390000c13d0000039006600197000000000004004b00000c4b0000613d000000000151034f0000000304400210000000000503043300000000054501cf000000000545022f000000000101043b0000010004400089000000000141022f00000000014101cf000000000151019f00000000001304350000006001600210000003910000013d00000000430104340000000001320436000000000003004b00000c590000613d000000000200001900000000051200190000000006240019000000000606043300000000006504350000002002200039000000000032004b00000c520000413d000000000213001900000000000204350000001f02300039000003f2022001970000000001210019000000000001042d0000000043010434000003900330019700000000033204360000000004040433000003900440019700000000004304350000004003100039000000000303043300000393033001970000004004200039000000000034043500000060011000390000000001010433000000600320003900000080040000390000000000430435000000800520003900000000430104340000000000350435000000a001200039000000000003004b00000c7d0000613d000000000200001900000000051200190000000006240019000000000606043300000000006504350000002002200039000000000032004b00000c760000413d000000000213001900000000000204350000001f02300039000003f2022001970000000001120019000000000001042d0003000000000002000000000201041a000000010320019000000001062002700000007f0660618f0000001f0060008c00000000040000390000000104002039000000000043004b00000cc20000c13d000000400500043d0000000004650436000000000003004b00000cad0000613d000100000004001d000300000006001d000200000005001d000000000010043f0000000001000414000003900010009c0000039001008041000000c001100210000003a6011001c700008010020000390e3a0e350000040f000000010020019000000cce0000613d0000000306000029000000000006004b00000cb30000613d000000000201043b0000000001000019000000020500002900000001070000290000000003170019000000000402041a000000000043043500000001022000390000002001100039000000000061004b00000ca50000413d00000cb50000013d000003f3012001970000000000140435000000000006004b0000002001000039000000000100603900000cb50000013d000000000100001900000002050000290000003f01100039000003f2021001970000000001520019000000000021004b00000000020000390000000102004039000003980010009c00000cc80000213d000000010020019000000cc80000c13d000000400010043f0000000001050019000000000001042d000003e601000041000000000010043f0000002201000039000000040010043f000003dc0100004100000e3c00010430000003e601000041000000000010043f0000004101000039000000040010043f000003dc0100004100000e3c00010430000000000100001900000e3c000104300001000000000002000100000001001d000000000010043f000000200000043f0000000001000414000003900010009c0000039001008041000000c001100210000003a4011001c700008010020000390e3a0e350000040f000000010020019000000cef0000613d000000000101043b0000000002000411000000000020043f000000200010043f0000000001000414000003900010009c0000039001008041000000c001100210000003a4011001c700008010020000390e3a0e350000040f000000010020019000000cef0000613d000000000101043b000000000101041a000000ff0010019000000cf10000613d000000000001042d000000000100001900000e3c00010430000000400100043d000000240210003900000001030000290000000000320435000003de020000410000000000210435000000040210003900000000030004110000000000320435000003900010009c00000390010080410000004001100210000003df011001c700000e3c000104300006000000000002000600000002001d000500000001001d000000000010043f000000200000043f0000000001000414000003900010009c0000039001008041000000c001100210000003a4011001c700008010020000390e3a0e350000040f000000010020019000000dcd0000613d000000000101043b00000006020000290000039302200197000600000002001d000000000020043f000000200010043f0000000001000414000003900010009c0000039001008041000000c001100210000003a4011001c700008010020000390e3a0e350000040f000000010020019000000dcd0000613d000000000101043b000000000101041a000000ff0010019000000dcc0000613d0000000501000029000000000010043f000000200000043f0000000001000414000003900010009c0000039001008041000000c001100210000003a4011001c700008010020000390e3a0e350000040f000000010020019000000dcd0000613d000000000101043b0000000602000029000000000020043f000000200010043f0000000001000414000003900010009c0000039001008041000000c001100210000003a4011001c700008010020000390e3a0e350000040f000000010020019000000dcd0000613d000000000101043b000000000201041a000003f302200197000000000021041b0000000001000414000003900010009c0000039001008041000000c0011002100000039e011001c70000800d0200003900000004030000390000000007000411000003f504000041000000050500002900000006060000290e3a0e300000040f000000010020019000000dcd0000613d0000000501000029000000000010043f0000000101000039000000200010043f0000000001000414000003900010009c0000039001008041000000c001100210000003a4011001c700008010020000390e3a0e350000040f000000010020019000000dcd0000613d000000000201043b0000000601000029000000000010043f000500000002001d0000000101200039000300000001001d000000200010043f0000000001000414000003900010009c0000039001008041000000c001100210000003a4011001c700008010020000390e3a0e350000040f000000010020019000000dcd0000613d0000000503000029000000000101043b000000000101041a000000000001004b00000dcc0000613d000000000203041a000000000002004b00000dcf0000613d000000000021004b000400000001001d00000dac0000613d000200000002001d000000000030043f0000000001000414000003900010009c0000039001008041000000c001100210000003a6011001c700008010020000390e3a0e350000040f000000010020019000000dcd0000613d00000004020000290001000100200092000000000101043b0000000504000029000000000204041a000000010020006c00000dd50000a13d0000000202000029000000010220008a0000000001120019000000000101041a000200000001001d000000000040043f0000000001000414000003900010009c0000039001008041000000c001100210000003a6011001c700008010020000390e3a0e350000040f000000010020019000000dcd0000613d000000000101043b00000001011000290000000202000029000000000021041b000000000020043f0000000301000029000000200010043f0000000001000414000003900010009c0000039001008041000000c001100210000003a4011001c700008010020000390e3a0e350000040f000000010020019000000dcd0000613d000000000101043b0000000402000029000000000021041b0000000503000029000000000103041a000400000001001d000000000001004b00000ddb0000613d000000000030043f0000000001000414000003900010009c0000039001008041000000c001100210000003a6011001c700008010020000390e3a0e350000040f000000010020019000000dcd0000613d0000000402000029000000010220008a000000000101043b0000000001210019000000000001041b0000000501000029000000000021041b0000000601000029000000000010043f0000000301000029000000200010043f0000000001000414000003900010009c0000039001008041000000c001100210000003a4011001c700008010020000390e3a0e350000040f000000010020019000000dcd0000613d000000000101043b000000000001041b000000000001042d000000000100001900000e3c00010430000003e601000041000000000010043f0000001101000039000000040010043f000003dc0100004100000e3c00010430000003e601000041000000000010043f0000003201000039000000040010043f000003dc0100004100000e3c00010430000003e601000041000000000010043f0000003101000039000000040010043f000003dc0100004100000e3c000104300001000000000002000000000301041a000100000002001d000000000023004b00000df40000a13d000000000010043f0000000001000414000003900010009c0000039001008041000000c001100210000003a6011001c700008010020000390e3a0e350000040f000000010020019000000dfa0000613d000000000101043b00000001011000290000000002000019000000000001042d000003e601000041000000000010043f0000003201000039000000040010043f000003dc0100004100000e3c00010430000000000100001900000e3c00010430000000000001042f000003900010009c00000390010080410000004001100210000003900020009c00000390020080410000006002200210000000000112019f0000000002000414000003900020009c0000039002008041000000c002200210000000000112019f0000039e011001c700008010020000390e3a0e350000040f000000010020019000000e100000613d000000000101043b000000000001042d000000000100001900000e3c0001043000000000050100190000000000200443000000050030008c00000e200000413d000000040100003900000000020000190000000506200210000000000664001900000005066002700000000006060031000000000161043a0000000102200039000000000031004b00000e180000413d000003900030009c000003900300804100000060013002100000000002000414000003900020009c0000039002008041000000c002200210000000000112019f000003f6011001c700000000020500190e3a0e350000040f000000010020019000000e2f0000613d000000000101043b000000000001042d000000000001042f00000e33002104210000000102000039000000000001042d0000000002000019000000000001042d00000e38002104230000000102000039000000000001042d0000000002000019000000000001042d00000e3a0000043200000e3b0001042e00000e3c0001043000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffff00000000000000000000000000000000000000000000000000000001ffffffe000000000000000000000000000000000000000000000000000000000ffffffe0000000000000000000000000ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff000000004d41535445525f5245474953545259000000000000000000000000000000000074b9982c000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000064000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffffffffffffffffffff0000000000000000000000000000000000000000000000000000000000000000ffffffffffffffffffffffffffffffffffffffff00000000a623066800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000400000000000000000000000053ce67920000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000002c90ce17472550529cfd7bfcfbfbba5ed3054824d15b68273462e4d7fbc48e04b427a0273eedf0295a7dd10be098c45b3b20cec29110badb2821acff1e25e4d102000000000000000000000000000000000000600000000000000000000000001ee871039ca5f31f9b9e7e677600389a92350a44b71e8e7e622538a52e5bcc2cad3228b676f7d3cd4284a5443f17f1962b36e491b30a40b2405849e597ba5fb502000000000000000000000000000000000000400000000000000000000000002f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d0200000000000000000000000000000000000020000000000000000000000000e663f9f05d99e12791b1587bde83a76c27cabb61ea2416ee50452d6ddfa505f9cc3e15b6937a2f69a6f5452031b5fbab5ab7de91ec2efae0db33241e870e6121dafba627781bfd267d063a56a1c32452f279e0e294e814e1078c211bc09bd3b4ffffffffffffffffffffffff0000000000000000000000000000000000000000000000020000000000000000000000000000008000000100000000000000000000000000000000000000000000000000000000000000000000000000982d07d100000000000000000000000000000000000000000000000000000000be31d08100000000000000000000000000000000000000000000000000000000e06304be00000000000000000000000000000000000000000000000000000000e06304bf00000000000000000000000000000000000000000000000000000000e2440c5100000000000000000000000000000000000000000000000000000000e679292200000000000000000000000000000000000000000000000000000000be31d08200000000000000000000000000000000000000000000000000000000ca15c87300000000000000000000000000000000000000000000000000000000d547741f00000000000000000000000000000000000000000000000000000000a623066700000000000000000000000000000000000000000000000000000000a623066800000000000000000000000000000000000000000000000000000000b2d2bcee00000000000000000000000000000000000000000000000000000000bbcdbeff00000000000000000000000000000000000000000000000000000000982d07d200000000000000000000000000000000000000000000000000000000a217fddf00000000000000000000000000000000000000000000000000000000a3246ad30000000000000000000000000000000000000000000000000000000054fd4d4f000000000000000000000000000000000000000000000000000000009010d07b000000000000000000000000000000000000000000000000000000009010d07c0000000000000000000000000000000000000000000000000000000091d148540000000000000000000000000000000000000000000000000000000097b67d4a0000000000000000000000000000000000000000000000000000000054fd4d50000000000000000000000000000000000000000000000000000000007671114d000000000000000000000000000000000000000000000000000000008fc59014000000000000000000000000000000000000000000000000000000002f2ff15c000000000000000000000000000000000000000000000000000000002f2ff15d0000000000000000000000000000000000000000000000000000000036568abe0000000000000000000000000000000000000000000000000000000053ce67920000000000000000000000000000000000000000000000000000000001ffc9a700000000000000000000000000000000000000000000000000000000090bdef200000000000000000000000000000000000000000000000000000000248a9ca3310ab089e4439a4c15d089f94afb7896ff553aecb10793d0ab882de59d99a32e0200000200000000000000000000000000000044000000000000000000000000000000000000000000000000000000000000006400000080000000000000000008c379a00000000000000000000000000000000000000000000000000000000074204d61737465722052656769737472790000000000000000000000000000004e6577204d6173746572205265676973747279203a206e6f742063757272656e00000000000000000000000000000000000000840000000000000000000000009a8a0592ac89c5ad3bc6df8224c17b485976f597df104ee20d0df415241f670b0200000200000000000000000000000000000004000000000000000000000000ffffffff00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffff0000000000000000ffffffffffffffffffffffffffffffffffffffff00000000000000001806aa1896bbf26568e884a7374b41e002500962caba6a15023a8d90e8508b830200000200000000000000000000000000000024000000000000000000000000b4fff965000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000000800000000000000000e06304bf0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000240000000000000000000000000000000000000000000000000000000000000020000000000000000000000000e2517d3f000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000044000000000000000000000000bbcdbeff0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000240000008000000000000000007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe07fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff000000000000000000000000000000000000000000000000ffffffffffffff7f80000000000000000000000000000000000000000000000000000000000000004e487b710000000000000000000000000000000000000000000000000000000097b67d4a00000000000000000000000000000000000000000000000000000000982d07d2000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000078b385bd6697b232000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004000000800000000000000000722061646472657373203d2030000000000000000000000000000000000000004e6577204d6173746572205265676973747279203a20696d706c656d656e746500000000ffffffffffffffffffffffffffffffffffffffffffffffffffffffff5a05180f0000000000000000000000000000000000000000000000000000000001ffc9a7000000000000000000000000000000000000000000000000000000007965db0b00000000000000000000000000000000000000000000000000000000ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b020000020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000008b76981624139eaf8b0a5ce938d9d22d417d73cb602e66f0454a58ebd29f8143
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000f8274c5e5149a6e0fc5190483323a1b399896a8a0000000000000000000000004050ad6badddb9f591685a4d65a29f0d56d48195
-----Decoded View---------------
Arg [0] : _galaxisRegistry (address): 0xF8274c5E5149a6e0FC5190483323a1B399896a8A
Arg [1] : _chainImplementer (address): 0x4050Ad6BADDDb9F591685A4D65A29f0d56d48195
-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 000000000000000000000000f8274c5e5149a6e0fc5190483323a1b399896a8a
Arg [1] : 0000000000000000000000004050ad6badddb9f591685a4d65a29f0d56d48195
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 34 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.