More Info
Private Name Tags
ContractCreator
View more zero value Internal Transactions in Advanced View mode
Advanced mode:
Loading...
Loading
Contract Source Code Verified (Exact Match)
Contract Name:
GasDaoTimelockController
Compiler Version
v0.8.4+commit.c7e474f2
Optimization Enabled:
No with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT pragma solidity ^0.8.2; import "@openzeppelin/contracts/governance/TimelockController.sol"; contract GasDaoTimelockController is TimelockController { constructor(uint256 minDelay, address[] memory proposers, address[] memory executors) TimelockController(minDelay, proposers, executors) {} }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (governance/TimelockController.sol) pragma solidity ^0.8.0; import "../access/AccessControl.sol"; /** * @dev Contract module which acts as a timelocked controller. When set as the * owner of an `Ownable` smart contract, it enforces a timelock on all * `onlyOwner` maintenance operations. This gives time for users of the * controlled contract to exit before a potentially dangerous maintenance * operation is applied. * * By default, this contract is self administered, meaning administration tasks * have to go through the timelock process. The proposer (resp executor) role * is in charge of proposing (resp executing) operations. A common use case is * to position this {TimelockController} as the owner of a smart contract, with * a multisig or a DAO as the sole proposer. * * _Available since v3.3._ */ contract TimelockController is AccessControl { bytes32 public constant TIMELOCK_ADMIN_ROLE = keccak256("TIMELOCK_ADMIN_ROLE"); bytes32 public constant PROPOSER_ROLE = keccak256("PROPOSER_ROLE"); bytes32 public constant EXECUTOR_ROLE = keccak256("EXECUTOR_ROLE"); uint256 internal constant _DONE_TIMESTAMP = uint256(1); mapping(bytes32 => uint256) private _timestamps; uint256 private _minDelay; /** * @dev Emitted when a call is scheduled as part of operation `id`. */ event CallScheduled( bytes32 indexed id, uint256 indexed index, address target, uint256 value, bytes data, bytes32 predecessor, uint256 delay ); /** * @dev Emitted when a call is performed as part of operation `id`. */ event CallExecuted(bytes32 indexed id, uint256 indexed index, address target, uint256 value, bytes data); /** * @dev Emitted when operation `id` is cancelled. */ event Cancelled(bytes32 indexed id); /** * @dev Emitted when the minimum delay for future operations is modified. */ event MinDelayChange(uint256 oldDuration, uint256 newDuration); /** * @dev Initializes the contract with a given `minDelay`. */ constructor( uint256 minDelay, address[] memory proposers, address[] memory executors ) { _setRoleAdmin(TIMELOCK_ADMIN_ROLE, TIMELOCK_ADMIN_ROLE); _setRoleAdmin(PROPOSER_ROLE, TIMELOCK_ADMIN_ROLE); _setRoleAdmin(EXECUTOR_ROLE, TIMELOCK_ADMIN_ROLE); // deployer + self administration _setupRole(TIMELOCK_ADMIN_ROLE, _msgSender()); _setupRole(TIMELOCK_ADMIN_ROLE, address(this)); // register proposers for (uint256 i = 0; i < proposers.length; ++i) { _setupRole(PROPOSER_ROLE, proposers[i]); } // register executors for (uint256 i = 0; i < executors.length; ++i) { _setupRole(EXECUTOR_ROLE, executors[i]); } _minDelay = minDelay; emit MinDelayChange(0, minDelay); } /** * @dev Modifier to make a function callable only by a certain role. In * addition to checking the sender's role, `address(0)` 's role is also * considered. Granting a role to `address(0)` is equivalent to enabling * this role for everyone. */ modifier onlyRoleOrOpenRole(bytes32 role) { if (!hasRole(role, address(0))) { _checkRole(role, _msgSender()); } _; } /** * @dev Contract might receive/hold ETH as part of the maintenance process. */ receive() external payable {} /** * @dev Returns whether an id correspond to a registered operation. This * includes both Pending, Ready and Done operations. */ function isOperation(bytes32 id) public view virtual returns (bool pending) { return getTimestamp(id) > 0; } /** * @dev Returns whether an operation is pending or not. */ function isOperationPending(bytes32 id) public view virtual returns (bool pending) { return getTimestamp(id) > _DONE_TIMESTAMP; } /** * @dev Returns whether an operation is ready or not. */ function isOperationReady(bytes32 id) public view virtual returns (bool ready) { uint256 timestamp = getTimestamp(id); return timestamp > _DONE_TIMESTAMP && timestamp <= block.timestamp; } /** * @dev Returns whether an operation is done or not. */ function isOperationDone(bytes32 id) public view virtual returns (bool done) { return getTimestamp(id) == _DONE_TIMESTAMP; } /** * @dev Returns the timestamp at with an operation becomes ready (0 for * unset operations, 1 for done operations). */ function getTimestamp(bytes32 id) public view virtual returns (uint256 timestamp) { return _timestamps[id]; } /** * @dev Returns the minimum delay for an operation to become valid. * * This value can be changed by executing an operation that calls `updateDelay`. */ function getMinDelay() public view virtual returns (uint256 duration) { return _minDelay; } /** * @dev Returns the identifier of an operation containing a single * transaction. */ function hashOperation( address target, uint256 value, bytes calldata data, bytes32 predecessor, bytes32 salt ) public pure virtual returns (bytes32 hash) { return keccak256(abi.encode(target, value, data, predecessor, salt)); } /** * @dev Returns the identifier of an operation containing a batch of * transactions. */ function hashOperationBatch( address[] calldata targets, uint256[] calldata values, bytes[] calldata datas, bytes32 predecessor, bytes32 salt ) public pure virtual returns (bytes32 hash) { return keccak256(abi.encode(targets, values, datas, predecessor, salt)); } /** * @dev Schedule an operation containing a single transaction. * * Emits a {CallScheduled} event. * * Requirements: * * - the caller must have the 'proposer' role. */ function schedule( address target, uint256 value, bytes calldata data, bytes32 predecessor, bytes32 salt, uint256 delay ) public virtual onlyRole(PROPOSER_ROLE) { bytes32 id = hashOperation(target, value, data, predecessor, salt); _schedule(id, delay); emit CallScheduled(id, 0, target, value, data, predecessor, delay); } /** * @dev Schedule an operation containing a batch of transactions. * * Emits one {CallScheduled} event per transaction in the batch. * * Requirements: * * - the caller must have the 'proposer' role. */ function scheduleBatch( address[] calldata targets, uint256[] calldata values, bytes[] calldata datas, bytes32 predecessor, bytes32 salt, uint256 delay ) public virtual onlyRole(PROPOSER_ROLE) { require(targets.length == values.length, "TimelockController: length mismatch"); require(targets.length == datas.length, "TimelockController: length mismatch"); bytes32 id = hashOperationBatch(targets, values, datas, predecessor, salt); _schedule(id, delay); for (uint256 i = 0; i < targets.length; ++i) { emit CallScheduled(id, i, targets[i], values[i], datas[i], predecessor, delay); } } /** * @dev Schedule an operation that is to becomes valid after a given delay. */ function _schedule(bytes32 id, uint256 delay) private { require(!isOperation(id), "TimelockController: operation already scheduled"); require(delay >= getMinDelay(), "TimelockController: insufficient delay"); _timestamps[id] = block.timestamp + delay; } /** * @dev Cancel an operation. * * Requirements: * * - the caller must have the 'proposer' role. */ function cancel(bytes32 id) public virtual onlyRole(PROPOSER_ROLE) { require(isOperationPending(id), "TimelockController: operation cannot be cancelled"); delete _timestamps[id]; emit Cancelled(id); } /** * @dev Execute an (ready) operation containing a single transaction. * * Emits a {CallExecuted} event. * * Requirements: * * - the caller must have the 'executor' role. */ function execute( address target, uint256 value, bytes calldata data, bytes32 predecessor, bytes32 salt ) public payable virtual onlyRoleOrOpenRole(EXECUTOR_ROLE) { bytes32 id = hashOperation(target, value, data, predecessor, salt); _beforeCall(id, predecessor); _call(id, 0, target, value, data); _afterCall(id); } /** * @dev Execute an (ready) operation containing a batch of transactions. * * Emits one {CallExecuted} event per transaction in the batch. * * Requirements: * * - the caller must have the 'executor' role. */ function executeBatch( address[] calldata targets, uint256[] calldata values, bytes[] calldata datas, bytes32 predecessor, bytes32 salt ) public payable virtual onlyRoleOrOpenRole(EXECUTOR_ROLE) { require(targets.length == values.length, "TimelockController: length mismatch"); require(targets.length == datas.length, "TimelockController: length mismatch"); bytes32 id = hashOperationBatch(targets, values, datas, predecessor, salt); _beforeCall(id, predecessor); for (uint256 i = 0; i < targets.length; ++i) { _call(id, i, targets[i], values[i], datas[i]); } _afterCall(id); } /** * @dev Checks before execution of an operation's calls. */ function _beforeCall(bytes32 id, bytes32 predecessor) private view { require(isOperationReady(id), "TimelockController: operation is not ready"); require(predecessor == bytes32(0) || isOperationDone(predecessor), "TimelockController: missing dependency"); } /** * @dev Checks after execution of an operation's calls. */ function _afterCall(bytes32 id) private { require(isOperationReady(id), "TimelockController: operation is not ready"); _timestamps[id] = _DONE_TIMESTAMP; } /** * @dev Execute an operation's call. * * Emits a {CallExecuted} event. */ function _call( bytes32 id, uint256 index, address target, uint256 value, bytes calldata data ) private { (bool success, ) = target.call{value: value}(data); require(success, "TimelockController: underlying transaction reverted"); emit CallExecuted(id, index, target, value, data); } /** * @dev Changes the minimum timelock duration for future operations. * * Emits a {MinDelayChange} event. * * Requirements: * * - the caller must be the timelock itself. This can only be achieved by scheduling and later executing * an operation where the timelock is the target and the data is the ABI-encoded call to this function. */ function updateDelay(uint256 newDelay) external virtual { require(msg.sender == address(this), "TimelockController: caller must be timelock"); emit MinDelayChange(_minDelay, newDelay); _minDelay = newDelay; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (access/AccessControl.sol) pragma solidity ^0.8.0; import "./IAccessControl.sol"; import "../utils/Context.sol"; import "../utils/Strings.sol"; import "../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: * * ``` * 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}: * * ``` * 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. */ abstract contract AccessControl is Context, IAccessControl, ERC165 { struct RoleData { mapping(address => bool) members; bytes32 adminRole; } mapping(bytes32 => RoleData) private _roles; bytes32 public constant DEFAULT_ADMIN_ROLE = 0x00; /** * @dev Modifier that checks that an account has a specific role. Reverts * with a standardized message including the required role. * * The format of the revert reason is given by the following regular expression: * * /^AccessControl: account (0x[0-9a-f]{40}) is missing role (0x[0-9a-f]{64})$/ * * _Available since v4.1._ */ modifier onlyRole(bytes32 role) { _checkRole(role, _msgSender()); _; } /** * @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 override returns (bool) { return _roles[role].members[account]; } /** * @dev Revert with a standard message if `account` is missing `role`. * * The format of the revert reason is given by the following regular expression: * * /^AccessControl: account (0x[0-9a-f]{40}) is missing role (0x[0-9a-f]{64})$/ */ function _checkRole(bytes32 role, address account) internal view { if (!hasRole(role, account)) { revert( string( abi.encodePacked( "AccessControl: account ", Strings.toHexString(uint160(account), 20), " is missing role ", Strings.toHexString(uint256(role), 32) ) ) ); } } /** * @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 override 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. */ function grantRole(bytes32 role, address account) public virtual override 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. */ function revokeRole(bytes32 role, address account) public virtual override 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 `account`. */ function renounceRole(bytes32 role, address account) public virtual override { require(account == _msgSender(), "AccessControl: can only renounce roles for self"); _revokeRole(role, account); } /** * @dev Grants `role` to `account`. * * If `account` had not been already granted `role`, emits a {RoleGranted} * event. Note that unlike {grantRole}, this function doesn't perform any * checks on the calling account. * * [WARNING] * ==== * This function should only be called from the constructor when setting * up the initial roles for the system. * * Using this function in any other way is effectively circumventing the admin * system imposed by {AccessControl}. * ==== * * NOTE: This function is deprecated in favor of {_grantRole}. */ function _setupRole(bytes32 role, address account) internal virtual { _grantRole(role, account); } /** * @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 Grants `role` to `account`. * * Internal function without access restriction. */ function _grantRole(bytes32 role, address account) internal virtual { if (!hasRole(role, account)) { _roles[role].members[account] = true; emit RoleGranted(role, account, _msgSender()); } } /** * @dev Revokes `role` from `account`. * * Internal function without access restriction. */ function _revokeRole(bytes32 role, address account) internal virtual { if (hasRole(role, account)) { _roles[role].members[account] = false; emit RoleRevoked(role, account, _msgSender()); } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (access/IAccessControl.sol) pragma solidity ^0.8.0; /** * @dev External interface of AccessControl declared to support ERC165 detection. */ interface IAccessControl { /** * @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. * * _Available since v3.1._ */ 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, an admin role * bearer except when using {AccessControl-_setupRole}. */ 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 `account`. */ function renounceRole(bytes32 role, address account) external; }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @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; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) pragma solidity ^0.8.0; import "./IERC165.sol"; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 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); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * 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[EIP 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); }
{ "optimizer": { "enabled": false, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } }, "libraries": {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"uint256","name":"minDelay","type":"uint256"},{"internalType":"address[]","name":"proposers","type":"address[]"},{"internalType":"address[]","name":"executors","type":"address[]"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"id","type":"bytes32"},{"indexed":true,"internalType":"uint256","name":"index","type":"uint256"},{"indexed":false,"internalType":"address","name":"target","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"},{"indexed":false,"internalType":"bytes","name":"data","type":"bytes"}],"name":"CallExecuted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"id","type":"bytes32"},{"indexed":true,"internalType":"uint256","name":"index","type":"uint256"},{"indexed":false,"internalType":"address","name":"target","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"},{"indexed":false,"internalType":"bytes","name":"data","type":"bytes"},{"indexed":false,"internalType":"bytes32","name":"predecessor","type":"bytes32"},{"indexed":false,"internalType":"uint256","name":"delay","type":"uint256"}],"name":"CallScheduled","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"id","type":"bytes32"}],"name":"Cancelled","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"oldDuration","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"newDuration","type":"uint256"}],"name":"MinDelayChange","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":"DEFAULT_ADMIN_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"EXECUTOR_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PROPOSER_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"TIMELOCK_ADMIN_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"id","type":"bytes32"}],"name":"cancel","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"target","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"},{"internalType":"bytes32","name":"predecessor","type":"bytes32"},{"internalType":"bytes32","name":"salt","type":"bytes32"}],"name":"execute","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address[]","name":"targets","type":"address[]"},{"internalType":"uint256[]","name":"values","type":"uint256[]"},{"internalType":"bytes[]","name":"datas","type":"bytes[]"},{"internalType":"bytes32","name":"predecessor","type":"bytes32"},{"internalType":"bytes32","name":"salt","type":"bytes32"}],"name":"executeBatch","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"getMinDelay","outputs":[{"internalType":"uint256","name":"duration","type":"uint256"}],"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":"id","type":"bytes32"}],"name":"getTimestamp","outputs":[{"internalType":"uint256","name":"timestamp","type":"uint256"}],"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":[{"internalType":"address","name":"target","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"},{"internalType":"bytes32","name":"predecessor","type":"bytes32"},{"internalType":"bytes32","name":"salt","type":"bytes32"}],"name":"hashOperation","outputs":[{"internalType":"bytes32","name":"hash","type":"bytes32"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"address[]","name":"targets","type":"address[]"},{"internalType":"uint256[]","name":"values","type":"uint256[]"},{"internalType":"bytes[]","name":"datas","type":"bytes[]"},{"internalType":"bytes32","name":"predecessor","type":"bytes32"},{"internalType":"bytes32","name":"salt","type":"bytes32"}],"name":"hashOperationBatch","outputs":[{"internalType":"bytes32","name":"hash","type":"bytes32"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"bytes32","name":"id","type":"bytes32"}],"name":"isOperation","outputs":[{"internalType":"bool","name":"pending","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"id","type":"bytes32"}],"name":"isOperationDone","outputs":[{"internalType":"bool","name":"done","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"id","type":"bytes32"}],"name":"isOperationPending","outputs":[{"internalType":"bool","name":"pending","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"id","type":"bytes32"}],"name":"isOperationReady","outputs":[{"internalType":"bool","name":"ready","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","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":"address","name":"target","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"},{"internalType":"bytes32","name":"predecessor","type":"bytes32"},{"internalType":"bytes32","name":"salt","type":"bytes32"},{"internalType":"uint256","name":"delay","type":"uint256"}],"name":"schedule","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"targets","type":"address[]"},{"internalType":"uint256[]","name":"values","type":"uint256[]"},{"internalType":"bytes[]","name":"datas","type":"bytes[]"},{"internalType":"bytes32","name":"predecessor","type":"bytes32"},{"internalType":"bytes32","name":"salt","type":"bytes32"},{"internalType":"uint256","name":"delay","type":"uint256"}],"name":"scheduleBatch","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":"uint256","name":"newDelay","type":"uint256"}],"name":"updateDelay","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
60806040523480156200001157600080fd5b506040516200357a3803806200357a8339818101604052810190620000379190620005c7565b8282826200006c7f5f58e3a2316349923ce3780f8d587db2d72378aed66a8261c916544fa6846ca580620002fc60201b60201c565b620000be7fb09aa5aeb3702cfd50b6b62bc4532604938f21248a27a1d5ca736082b6819cc17f5f58e3a2316349923ce3780f8d587db2d72378aed66a8261c916544fa6846ca5620002fc60201b60201c565b620001107fd8aa0f3194971a2a116679f7c2090f6939c8d4e01a2a8d7e41d55e5351469e637f5f58e3a2316349923ce3780f8d587db2d72378aed66a8261c916544fa6846ca5620002fc60201b60201c565b620001517f5f58e3a2316349923ce3780f8d587db2d72378aed66a8261c916544fa6846ca5620001456200035f60201b60201c565b6200036760201b60201c565b620001837f5f58e3a2316349923ce3780f8d587db2d72378aed66a8261c916544fa6846ca5306200036760201b60201c565b60005b82518110156200021757620002037fb09aa5aeb3702cfd50b6b62bc4532604938f21248a27a1d5ca736082b6819cc1848381518110620001ef577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101516200036760201b60201c565b806200020f906200077e565b905062000186565b5060005b8151811015620002ac57620002987fd8aa0f3194971a2a116679f7c2090f6939c8d4e01a2a8d7e41d55e5351469e6383838151811062000284577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101516200036760201b60201c565b80620002a4906200077e565b90506200021b565b50826002819055507f11c24f4ead16507c69ac467fbd5e4eed5fb5c699626d2cc6d66421df253886d5600084604051620002e892919062000671565b60405180910390a15050505050506200086f565b60006200030f836200037d60201b60201c565b905081600080858152602001908152602001600020600101819055508181847fbd79b86ffe0ab8e8776151514217cd7cacd52c909f66475c3af44e129f0b00ff60405160405180910390a4505050565b600033905090565b6200037982826200039c60201b60201c565b5050565b6000806000838152602001908152602001600020600101549050919050565b620003ae82826200048d60201b60201c565b6200048957600160008084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506200042e6200035f60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b600080600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b60006200050e6200050884620006c7565b6200069e565b905080838252602082019050828560208602820111156200052e57600080fd5b60005b858110156200056257816200054788826200056c565b84526020840193506020830192505060018101905062000531565b5050509392505050565b6000815190506200057d816200083b565b92915050565b600082601f8301126200059557600080fd5b8151620005a7848260208601620004f7565b91505092915050565b600081519050620005c18162000855565b92915050565b600080600060608486031215620005dd57600080fd5b6000620005ed86828701620005b0565b935050602084015167ffffffffffffffff8111156200060b57600080fd5b620006198682870162000583565b925050604084015167ffffffffffffffff8111156200063757600080fd5b620006458682870162000583565b9150509250925092565b6200065a8162000734565b82525050565b6200066b816200072a565b82525050565b60006040820190506200068860008301856200064f565b62000697602083018462000660565b9392505050565b6000620006aa620006bd565b9050620006b8828262000748565b919050565b6000604051905090565b600067ffffffffffffffff821115620006e557620006e4620007fb565b5b602082029050602081019050919050565b600062000703826200070a565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600062000741826200072a565b9050919050565b62000753826200082a565b810181811067ffffffffffffffff82111715620007755762000774620007fb565b5b80604052505050565b60006200078b826200072a565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415620007c157620007c0620007cc565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b6200084681620006f6565b81146200085257600080fd5b50565b62000860816200072a565b81146200086c57600080fd5b50565b612cfb806200087f6000396000f3fe60806040526004361061014f5760003560e01c806364d62353116100b6578063b1c5f4271161006f578063b1c5f427146104d8578063c4d252f514610515578063d45c44351461053e578063d547741f1461057b578063e38335e5146105a4578063f27a0c92146105c057610156565b806364d62353146103b65780638065657f146103df5780638f2a0bb01461041c5780638f61f4f51461044557806391d1485414610470578063a217fddf146104ad57610156565b8063248a9ca311610108578063248a9ca3146102705780632ab0f529146102ad5780632f2ff15d146102ea57806331d507501461031357806336568abe14610350578063584b153e1461037957610156565b806301d5062a1461015b57806301ffc9a71461018457806307bd0265146101c15780630d3cf6fc146101ec578063134008d31461021757806313bc9f201461023357610156565b3661015657005b600080fd5b34801561016757600080fd5b50610182600480360381019061017d9190611abb565b6105eb565b005b34801561019057600080fd5b506101ab60048036038101906101a69190611d72565b610688565b6040516101b891906123ae565b60405180910390f35b3480156101cd57600080fd5b506101d6610702565b6040516101e391906123c9565b60405180910390f35b3480156101f857600080fd5b50610201610726565b60405161020e91906123c9565b60405180910390f35b610231600480360381019061022c9190611a29565b61074a565b005b34801561023f57600080fd5b5061025a60048036038101906102559190611d0d565b6107ca565b60405161026791906123ae565b60405180910390f35b34801561027c57600080fd5b5061029760048036038101906102929190611d0d565b6107f0565b6040516102a491906123c9565b60405180910390f35b3480156102b957600080fd5b506102d460048036038101906102cf9190611d0d565b61080f565b6040516102e191906123ae565b60405180910390f35b3480156102f657600080fd5b50610311600480360381019061030c9190611d36565b610824565b005b34801561031f57600080fd5b5061033a60048036038101906103359190611d0d565b61084d565b60405161034791906123ae565b60405180910390f35b34801561035c57600080fd5b5061037760048036038101906103729190611d36565b610861565b005b34801561038557600080fd5b506103a0600480360381019061039b9190611d0d565b6108e4565b6040516103ad91906123ae565b60405180910390f35b3480156103c257600080fd5b506103dd60048036038101906103d89190611d9b565b6108f9565b005b3480156103eb57600080fd5b5061040660048036038101906104019190611a29565b6109ac565b60405161041391906123c9565b60405180910390f35b34801561042857600080fd5b50610443600480360381019061043e9190611c2e565b6109eb565b005b34801561045157600080fd5b5061045a610c10565b60405161046791906123c9565b60405180910390f35b34801561047c57600080fd5b5061049760048036038101906104929190611d36565b610c34565b6040516104a491906123ae565b60405180910390f35b3480156104b957600080fd5b506104c2610c9e565b6040516104cf91906123c9565b60405180910390f35b3480156104e457600080fd5b506104ff60048036038101906104fa9190611b62565b610ca5565b60405161050c91906123c9565b60405180910390f35b34801561052157600080fd5b5061053c60048036038101906105379190611d0d565b610cea565b005b34801561054a57600080fd5b5061056560048036038101906105609190611d0d565b610dac565b6040516105729190612546565b60405180910390f35b34801561058757600080fd5b506105a2600480360381019061059d9190611d36565b610dc9565b005b6105be60048036038101906105b99190611b62565b610df2565b005b3480156105cc57600080fd5b506105d5610ffa565b6040516105e29190612546565b60405180910390f35b7fb09aa5aeb3702cfd50b6b62bc4532604938f21248a27a1d5ca736082b6819cc161061d81610618611004565b61100c565b600061062d8989898989896109ac565b905061063981846110a9565b6000817f4cf4410cc57040e44862ef0f45f3dd5a5e02db8eb8add648d4b0e236f1d07dca8b8b8b8b8b8a604051610675969594939291906122e4565b60405180910390a3505050505050505050565b60007f7965db0b000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806106fb57506106fa82611163565b5b9050919050565b7fd8aa0f3194971a2a116679f7c2090f6939c8d4e01a2a8d7e41d55e5351469e6381565b7f5f58e3a2316349923ce3780f8d587db2d72378aed66a8261c916544fa6846ca581565b7fd8aa0f3194971a2a116679f7c2090f6939c8d4e01a2a8d7e41d55e5351469e63610776816000610c34565b61078c5761078b81610786611004565b61100c565b5b600061079c8888888888886109ac565b90506107a881856111cd565b6107b78160008a8a8a8a61126e565b6107c081611366565b5050505050505050565b6000806107d683610dac565b90506001811180156107e85750428111155b915050919050565b6000806000838152602001908152602001600020600101549050919050565b6000600161081c83610dac565b149050919050565b61082d826107f0565b61083e81610839611004565b61100c565b61084883836113c9565b505050565b60008061085983610dac565b119050919050565b610869611004565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146108d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108cd90612506565b60405180910390fd5b6108e082826114a9565b5050565b600060016108f183610dac565b119050919050565b3073ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610967576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161095e906124e6565b60405180910390fd5b7f11c24f4ead16507c69ac467fbd5e4eed5fb5c699626d2cc6d66421df253886d56002548260405161099a929190612561565b60405180910390a18060028190555050565b60008686868686866040516020016109c996959493929190612288565b6040516020818303038152906040528051906020012090509695505050505050565b7fb09aa5aeb3702cfd50b6b62bc4532604938f21248a27a1d5ca736082b6819cc1610a1d81610a18611004565b61100c565b878790508a8a905014610a65576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a5c90612446565b60405180910390fd5b858590508a8a905014610aad576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aa490612446565b60405180910390fd5b6000610abf8b8b8b8b8b8b8b8b610ca5565b9050610acb81846110a9565b60005b8b8b9050811015610c025780827f4cf4410cc57040e44862ef0f45f3dd5a5e02db8eb8add648d4b0e236f1d07dca8e8e85818110610b35577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9050602002016020810190610b4a9190611a00565b8d8d86818110610b83577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b905060200201358c8c87818110610bc3577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9050602002810190610bd5919061258a565b8c8b604051610be9969594939291906122e4565b60405180910390a380610bfb9061289e565b9050610ace565b505050505050505050505050565b7fb09aa5aeb3702cfd50b6b62bc4532604938f21248a27a1d5ca736082b6819cc181565b600080600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6000801b81565b60008888888888888888604051602001610cc6989796959493929190612340565b60405160208183030381529060405280519060200120905098975050505050505050565b7fb09aa5aeb3702cfd50b6b62bc4532604938f21248a27a1d5ca736082b6819cc1610d1c81610d17611004565b61100c565b610d25826108e4565b610d64576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d5b906124c6565b60405180910390fd5b6001600083815260200190815260200160002060009055817fbaa1eb22f2a492ba1a5fea61b8df4d27c6c8b5f3971e63bb58fa14ff72eedb7060405160405180910390a25050565b600060016000838152602001908152602001600020549050919050565b610dd2826107f0565b610de381610dde611004565b61100c565b610ded83836114a9565b505050565b7fd8aa0f3194971a2a116679f7c2090f6939c8d4e01a2a8d7e41d55e5351469e63610e1e816000610c34565b610e3457610e3381610e2e611004565b61100c565b5b868690508989905014610e7c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e7390612446565b60405180910390fd5b848490508989905014610ec4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ebb90612446565b60405180910390fd5b6000610ed68a8a8a8a8a8a8a8a610ca5565b9050610ee281856111cd565b60005b8a8a9050811015610fe457610fd382828d8d85818110610f2e577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9050602002016020810190610f439190611a00565b8c8c86818110610f7c577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b905060200201358b8b87818110610fbc577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9050602002810190610fce919061258a565b61126e565b80610fdd9061289e565b9050610ee5565b50610fee81611366565b50505050505050505050565b6000600254905090565b600033905090565b6110168282610c34565b6110a55761103b8173ffffffffffffffffffffffffffffffffffffffff16601461158a565b6110498360001c602061158a565b60405160200161105a92919061220e565b6040516020818303038152906040526040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161109c91906123e4565b60405180910390fd5b5050565b6110b28261084d565b156110f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110e990612486565b60405180910390fd5b6110fa610ffa565b81101561113c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161113390612466565b60405180910390fd5b80426111489190612704565b60016000848152602001908152602001600020819055505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6111d6826107ca565b611215576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161120c906124a6565b60405180910390fd5b6000801b81148061122b575061122a8161080f565b5b61126a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161126190612426565b60405180910390fd5b5050565b60008473ffffffffffffffffffffffffffffffffffffffff168484846040516112989291906121f5565b60006040518083038185875af1925050503d80600081146112d5576040519150601f19603f3d011682016040523d82523d6000602084013e6112da565b606091505b505090508061131e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161131590612526565b60405180910390fd5b85877fc2617efa69bab66782fa219543714338489c4e9e178271560a91b82c3f612b58878787876040516113559493929190612248565b60405180910390a350505050505050565b61136f816107ca565b6113ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113a5906124a6565b60405180910390fd5b60018060008381526020019081526020016000208190555050565b6113d38282610c34565b6114a557600160008084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555061144a611004565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b6114b38282610c34565b1561158657600080600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555061152b611004565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b60405160405180910390a45b5050565b60606000600283600261159d919061275a565b6115a79190612704565b67ffffffffffffffff8111156115e6577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156116185781602001600182028036833780820191505090505b5090507f300000000000000000000000000000000000000000000000000000000000000081600081518110611676577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053507f780000000000000000000000000000000000000000000000000000000000000081600181518110611700577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a90535060006001846002611740919061275a565b61174a9190612704565b90505b6001811115611836577f3031323334353637383961626364656600000000000000000000000000000000600f8616601081106117b2577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b1a60f81b8282815181106117ef577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600485901c94508061182f90612874565b905061174d565b506000841461187a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161187190612406565b60405180910390fd5b8091505092915050565b60008135905061189381612c69565b92915050565b60008083601f8401126118ab57600080fd5b8235905067ffffffffffffffff8111156118c457600080fd5b6020830191508360208202830111156118dc57600080fd5b9250929050565b60008083601f8401126118f557600080fd5b8235905067ffffffffffffffff81111561190e57600080fd5b60208301915083602082028301111561192657600080fd5b9250929050565b60008083601f84011261193f57600080fd5b8235905067ffffffffffffffff81111561195857600080fd5b60208301915083602082028301111561197057600080fd5b9250929050565b60008135905061198681612c80565b92915050565b60008135905061199b81612c97565b92915050565b60008083601f8401126119b357600080fd5b8235905067ffffffffffffffff8111156119cc57600080fd5b6020830191508360018202830111156119e457600080fd5b9250929050565b6000813590506119fa81612cae565b92915050565b600060208284031215611a1257600080fd5b6000611a2084828501611884565b91505092915050565b60008060008060008060a08789031215611a4257600080fd5b6000611a5089828a01611884565b9650506020611a6189828a016119eb565b955050604087013567ffffffffffffffff811115611a7e57600080fd5b611a8a89828a016119a1565b94509450506060611a9d89828a01611977565b9250506080611aae89828a01611977565b9150509295509295509295565b600080600080600080600060c0888a031215611ad657600080fd5b6000611ae48a828b01611884565b9750506020611af58a828b016119eb565b965050604088013567ffffffffffffffff811115611b1257600080fd5b611b1e8a828b016119a1565b95509550506060611b318a828b01611977565b9350506080611b428a828b01611977565b92505060a0611b538a828b016119eb565b91505092959891949750929550565b60008060008060008060008060a0898b031215611b7e57600080fd5b600089013567ffffffffffffffff811115611b9857600080fd5b611ba48b828c01611899565b9850985050602089013567ffffffffffffffff811115611bc357600080fd5b611bcf8b828c0161192d565b9650965050604089013567ffffffffffffffff811115611bee57600080fd5b611bfa8b828c016118e3565b94509450506060611c0d8b828c01611977565b9250506080611c1e8b828c01611977565b9150509295985092959890939650565b600080600080600080600080600060c08a8c031215611c4c57600080fd5b60008a013567ffffffffffffffff811115611c6657600080fd5b611c728c828d01611899565b995099505060208a013567ffffffffffffffff811115611c9157600080fd5b611c9d8c828d0161192d565b975097505060408a013567ffffffffffffffff811115611cbc57600080fd5b611cc88c828d016118e3565b95509550506060611cdb8c828d01611977565b9350506080611cec8c828d01611977565b92505060a0611cfd8c828d016119eb565b9150509295985092959850929598565b600060208284031215611d1f57600080fd5b6000611d2d84828501611977565b91505092915050565b60008060408385031215611d4957600080fd5b6000611d5785828601611977565b9250506020611d6885828601611884565b9150509250929050565b600060208284031215611d8457600080fd5b6000611d928482850161198c565b91505092915050565b600060208284031215611dad57600080fd5b6000611dbb848285016119eb565b91505092915050565b6000611dd08383611df2565b60208301905092915050565b6000611de9848484611f59565b90509392505050565b611dfb816127b4565b82525050565b611e0a816127b4565b82525050565b6000611e1c838561261a565b9350611e27826125e1565b8060005b85811015611e6057611e3d8284612696565b611e478882611dc4565b9750611e5283612600565b925050600181019050611e2b565b5085925050509392505050565b6000611e79838561262b565b935083602084028501611e8b846125eb565b8060005b87811015611ed1578484038952611ea682846126ad565b611eb1868284611ddc565b9550611ebc8461260d565b935060208b019a505050600181019050611e8f565b50829750879450505050509392505050565b6000611eef838561263c565b93507f07ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff831115611f1e57600080fd5b602083029250611f2f838584612832565b82840190509392505050565b611f44816127c6565b82525050565b611f53816127d2565b82525050565b6000611f65838561264d565b9350611f72838584612832565b611f7b83612916565b840190509392505050565b6000611f92838561265e565b9350611f9f838584612832565b611fa883612916565b840190509392505050565b6000611fbf838561266f565b9350611fcc838584612832565b82840190509392505050565b6000611fe3826125f5565b611fed818561267a565b9350611ffd818560208601612841565b61200681612916565b840191505092915050565b600061201c826125f5565b612026818561268b565b9350612036818560208601612841565b80840191505092915050565b600061204f60208361267a565b915061205a82612927565b602082019050919050565b600061207260268361267a565b915061207d82612950565b604082019050919050565b600061209560238361267a565b91506120a08261299f565b604082019050919050565b60006120b860268361267a565b91506120c3826129ee565b604082019050919050565b60006120db602f8361267a565b91506120e682612a3d565b604082019050919050565b60006120fe602a8361267a565b915061210982612a8c565b604082019050919050565b600061212160178361268b565b915061212c82612adb565b601782019050919050565b600061214460318361267a565b915061214f82612b04565b604082019050919050565b600061216760118361268b565b915061217282612b53565b601182019050919050565b600061218a602b8361267a565b915061219582612b7c565b604082019050919050565b60006121ad602f8361267a565b91506121b882612bcb565b604082019050919050565b60006121d060338361267a565b91506121db82612c1a565b604082019050919050565b6121ef81612828565b82525050565b6000612202828486611fb3565b91508190509392505050565b600061221982612114565b91506122258285612011565b91506122308261215a565b915061223c8284612011565b91508190509392505050565b600060608201905061225d6000830187611e01565b61226a60208301866121e6565b818103604083015261227d818486611f86565b905095945050505050565b600060a08201905061229d6000830189611e01565b6122aa60208301886121e6565b81810360408301526122bd818688611f86565b90506122cc6060830185611f4a565b6122d96080830184611f4a565b979650505050505050565b600060a0820190506122f96000830189611e01565b61230660208301886121e6565b8181036040830152612319818688611f86565b90506123286060830185611f4a565b61233560808301846121e6565b979650505050505050565b600060a082019050818103600083015261235b818a8c611e10565b9050818103602083015261237081888a611ee3565b90508181036040830152612385818688611e6d565b90506123946060830185611f4a565b6123a16080830184611f4a565b9998505050505050505050565b60006020820190506123c36000830184611f3b565b92915050565b60006020820190506123de6000830184611f4a565b92915050565b600060208201905081810360008301526123fe8184611fd8565b905092915050565b6000602082019050818103600083015261241f81612042565b9050919050565b6000602082019050818103600083015261243f81612065565b9050919050565b6000602082019050818103600083015261245f81612088565b9050919050565b6000602082019050818103600083015261247f816120ab565b9050919050565b6000602082019050818103600083015261249f816120ce565b9050919050565b600060208201905081810360008301526124bf816120f1565b9050919050565b600060208201905081810360008301526124df81612137565b9050919050565b600060208201905081810360008301526124ff8161217d565b9050919050565b6000602082019050818103600083015261251f816121a0565b9050919050565b6000602082019050818103600083015261253f816121c3565b9050919050565b600060208201905061255b60008301846121e6565b92915050565b600060408201905061257660008301856121e6565b61258360208301846121e6565b9392505050565b600080833560016020038436030381126125a357600080fd5b80840192508235915067ffffffffffffffff8211156125c157600080fd5b6020830192506001820236038313156125d957600080fd5b509250929050565b6000819050919050565b6000819050919050565b600081519050919050565b6000602082019050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b60006126a56020840184611884565b905092915050565b600080833560016020038436030381126126c657600080fd5b83810192508235915060208301925067ffffffffffffffff8211156126ea57600080fd5b6001820236038413156126fc57600080fd5b509250929050565b600061270f82612828565b915061271a83612828565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561274f5761274e6128e7565b5b828201905092915050565b600061276582612828565b915061277083612828565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156127a9576127a86128e7565b5b828202905092915050565b60006127bf82612808565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561285f578082015181840152602081019050612844565b8381111561286e576000848401525b50505050565b600061287f82612828565b91506000821415612893576128926128e7565b5b600182039050919050565b60006128a982612828565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156128dc576128db6128e7565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000601f19601f8301169050919050565b7f537472696e67733a20686578206c656e67746820696e73756666696369656e74600082015250565b7f54696d656c6f636b436f6e74726f6c6c65723a206d697373696e67206465706560008201527f6e64656e63790000000000000000000000000000000000000000000000000000602082015250565b7f54696d656c6f636b436f6e74726f6c6c65723a206c656e677468206d69736d6160008201527f7463680000000000000000000000000000000000000000000000000000000000602082015250565b7f54696d656c6f636b436f6e74726f6c6c65723a20696e73756666696369656e7460008201527f2064656c61790000000000000000000000000000000000000000000000000000602082015250565b7f54696d656c6f636b436f6e74726f6c6c65723a206f7065726174696f6e20616c60008201527f7265616479207363686564756c65640000000000000000000000000000000000602082015250565b7f54696d656c6f636b436f6e74726f6c6c65723a206f7065726174696f6e20697360008201527f206e6f7420726561647900000000000000000000000000000000000000000000602082015250565b7f416363657373436f6e74726f6c3a206163636f756e7420000000000000000000600082015250565b7f54696d656c6f636b436f6e74726f6c6c65723a206f7065726174696f6e20636160008201527f6e6e6f742062652063616e63656c6c6564000000000000000000000000000000602082015250565b7f206973206d697373696e6720726f6c6520000000000000000000000000000000600082015250565b7f54696d656c6f636b436f6e74726f6c6c65723a2063616c6c6572206d7573742060008201527f62652074696d656c6f636b000000000000000000000000000000000000000000602082015250565b7f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560008201527f20726f6c657320666f722073656c660000000000000000000000000000000000602082015250565b7f54696d656c6f636b436f6e74726f6c6c65723a20756e6465726c79696e67207460008201527f72616e73616374696f6e20726576657274656400000000000000000000000000602082015250565b612c72816127b4565b8114612c7d57600080fd5b50565b612c89816127d2565b8114612c9457600080fd5b50565b612ca0816127dc565b8114612cab57600080fd5b50565b612cb781612828565b8114612cc257600080fd5b5056fea26469706673582212205b0c6a67fd9a7ce84b0688f30d8a8875048db10323017f34d33f3b7128f0fdf564736f6c63430008040033000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x60806040526004361061014f5760003560e01c806364d62353116100b6578063b1c5f4271161006f578063b1c5f427146104d8578063c4d252f514610515578063d45c44351461053e578063d547741f1461057b578063e38335e5146105a4578063f27a0c92146105c057610156565b806364d62353146103b65780638065657f146103df5780638f2a0bb01461041c5780638f61f4f51461044557806391d1485414610470578063a217fddf146104ad57610156565b8063248a9ca311610108578063248a9ca3146102705780632ab0f529146102ad5780632f2ff15d146102ea57806331d507501461031357806336568abe14610350578063584b153e1461037957610156565b806301d5062a1461015b57806301ffc9a71461018457806307bd0265146101c15780630d3cf6fc146101ec578063134008d31461021757806313bc9f201461023357610156565b3661015657005b600080fd5b34801561016757600080fd5b50610182600480360381019061017d9190611abb565b6105eb565b005b34801561019057600080fd5b506101ab60048036038101906101a69190611d72565b610688565b6040516101b891906123ae565b60405180910390f35b3480156101cd57600080fd5b506101d6610702565b6040516101e391906123c9565b60405180910390f35b3480156101f857600080fd5b50610201610726565b60405161020e91906123c9565b60405180910390f35b610231600480360381019061022c9190611a29565b61074a565b005b34801561023f57600080fd5b5061025a60048036038101906102559190611d0d565b6107ca565b60405161026791906123ae565b60405180910390f35b34801561027c57600080fd5b5061029760048036038101906102929190611d0d565b6107f0565b6040516102a491906123c9565b60405180910390f35b3480156102b957600080fd5b506102d460048036038101906102cf9190611d0d565b61080f565b6040516102e191906123ae565b60405180910390f35b3480156102f657600080fd5b50610311600480360381019061030c9190611d36565b610824565b005b34801561031f57600080fd5b5061033a60048036038101906103359190611d0d565b61084d565b60405161034791906123ae565b60405180910390f35b34801561035c57600080fd5b5061037760048036038101906103729190611d36565b610861565b005b34801561038557600080fd5b506103a0600480360381019061039b9190611d0d565b6108e4565b6040516103ad91906123ae565b60405180910390f35b3480156103c257600080fd5b506103dd60048036038101906103d89190611d9b565b6108f9565b005b3480156103eb57600080fd5b5061040660048036038101906104019190611a29565b6109ac565b60405161041391906123c9565b60405180910390f35b34801561042857600080fd5b50610443600480360381019061043e9190611c2e565b6109eb565b005b34801561045157600080fd5b5061045a610c10565b60405161046791906123c9565b60405180910390f35b34801561047c57600080fd5b5061049760048036038101906104929190611d36565b610c34565b6040516104a491906123ae565b60405180910390f35b3480156104b957600080fd5b506104c2610c9e565b6040516104cf91906123c9565b60405180910390f35b3480156104e457600080fd5b506104ff60048036038101906104fa9190611b62565b610ca5565b60405161050c91906123c9565b60405180910390f35b34801561052157600080fd5b5061053c60048036038101906105379190611d0d565b610cea565b005b34801561054a57600080fd5b5061056560048036038101906105609190611d0d565b610dac565b6040516105729190612546565b60405180910390f35b34801561058757600080fd5b506105a2600480360381019061059d9190611d36565b610dc9565b005b6105be60048036038101906105b99190611b62565b610df2565b005b3480156105cc57600080fd5b506105d5610ffa565b6040516105e29190612546565b60405180910390f35b7fb09aa5aeb3702cfd50b6b62bc4532604938f21248a27a1d5ca736082b6819cc161061d81610618611004565b61100c565b600061062d8989898989896109ac565b905061063981846110a9565b6000817f4cf4410cc57040e44862ef0f45f3dd5a5e02db8eb8add648d4b0e236f1d07dca8b8b8b8b8b8a604051610675969594939291906122e4565b60405180910390a3505050505050505050565b60007f7965db0b000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806106fb57506106fa82611163565b5b9050919050565b7fd8aa0f3194971a2a116679f7c2090f6939c8d4e01a2a8d7e41d55e5351469e6381565b7f5f58e3a2316349923ce3780f8d587db2d72378aed66a8261c916544fa6846ca581565b7fd8aa0f3194971a2a116679f7c2090f6939c8d4e01a2a8d7e41d55e5351469e63610776816000610c34565b61078c5761078b81610786611004565b61100c565b5b600061079c8888888888886109ac565b90506107a881856111cd565b6107b78160008a8a8a8a61126e565b6107c081611366565b5050505050505050565b6000806107d683610dac565b90506001811180156107e85750428111155b915050919050565b6000806000838152602001908152602001600020600101549050919050565b6000600161081c83610dac565b149050919050565b61082d826107f0565b61083e81610839611004565b61100c565b61084883836113c9565b505050565b60008061085983610dac565b119050919050565b610869611004565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146108d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108cd90612506565b60405180910390fd5b6108e082826114a9565b5050565b600060016108f183610dac565b119050919050565b3073ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610967576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161095e906124e6565b60405180910390fd5b7f11c24f4ead16507c69ac467fbd5e4eed5fb5c699626d2cc6d66421df253886d56002548260405161099a929190612561565b60405180910390a18060028190555050565b60008686868686866040516020016109c996959493929190612288565b6040516020818303038152906040528051906020012090509695505050505050565b7fb09aa5aeb3702cfd50b6b62bc4532604938f21248a27a1d5ca736082b6819cc1610a1d81610a18611004565b61100c565b878790508a8a905014610a65576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a5c90612446565b60405180910390fd5b858590508a8a905014610aad576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aa490612446565b60405180910390fd5b6000610abf8b8b8b8b8b8b8b8b610ca5565b9050610acb81846110a9565b60005b8b8b9050811015610c025780827f4cf4410cc57040e44862ef0f45f3dd5a5e02db8eb8add648d4b0e236f1d07dca8e8e85818110610b35577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9050602002016020810190610b4a9190611a00565b8d8d86818110610b83577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b905060200201358c8c87818110610bc3577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9050602002810190610bd5919061258a565b8c8b604051610be9969594939291906122e4565b60405180910390a380610bfb9061289e565b9050610ace565b505050505050505050505050565b7fb09aa5aeb3702cfd50b6b62bc4532604938f21248a27a1d5ca736082b6819cc181565b600080600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6000801b81565b60008888888888888888604051602001610cc6989796959493929190612340565b60405160208183030381529060405280519060200120905098975050505050505050565b7fb09aa5aeb3702cfd50b6b62bc4532604938f21248a27a1d5ca736082b6819cc1610d1c81610d17611004565b61100c565b610d25826108e4565b610d64576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d5b906124c6565b60405180910390fd5b6001600083815260200190815260200160002060009055817fbaa1eb22f2a492ba1a5fea61b8df4d27c6c8b5f3971e63bb58fa14ff72eedb7060405160405180910390a25050565b600060016000838152602001908152602001600020549050919050565b610dd2826107f0565b610de381610dde611004565b61100c565b610ded83836114a9565b505050565b7fd8aa0f3194971a2a116679f7c2090f6939c8d4e01a2a8d7e41d55e5351469e63610e1e816000610c34565b610e3457610e3381610e2e611004565b61100c565b5b868690508989905014610e7c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e7390612446565b60405180910390fd5b848490508989905014610ec4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ebb90612446565b60405180910390fd5b6000610ed68a8a8a8a8a8a8a8a610ca5565b9050610ee281856111cd565b60005b8a8a9050811015610fe457610fd382828d8d85818110610f2e577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9050602002016020810190610f439190611a00565b8c8c86818110610f7c577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b905060200201358b8b87818110610fbc577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9050602002810190610fce919061258a565b61126e565b80610fdd9061289e565b9050610ee5565b50610fee81611366565b50505050505050505050565b6000600254905090565b600033905090565b6110168282610c34565b6110a55761103b8173ffffffffffffffffffffffffffffffffffffffff16601461158a565b6110498360001c602061158a565b60405160200161105a92919061220e565b6040516020818303038152906040526040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161109c91906123e4565b60405180910390fd5b5050565b6110b28261084d565b156110f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110e990612486565b60405180910390fd5b6110fa610ffa565b81101561113c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161113390612466565b60405180910390fd5b80426111489190612704565b60016000848152602001908152602001600020819055505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6111d6826107ca565b611215576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161120c906124a6565b60405180910390fd5b6000801b81148061122b575061122a8161080f565b5b61126a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161126190612426565b60405180910390fd5b5050565b60008473ffffffffffffffffffffffffffffffffffffffff168484846040516112989291906121f5565b60006040518083038185875af1925050503d80600081146112d5576040519150601f19603f3d011682016040523d82523d6000602084013e6112da565b606091505b505090508061131e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161131590612526565b60405180910390fd5b85877fc2617efa69bab66782fa219543714338489c4e9e178271560a91b82c3f612b58878787876040516113559493929190612248565b60405180910390a350505050505050565b61136f816107ca565b6113ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113a5906124a6565b60405180910390fd5b60018060008381526020019081526020016000208190555050565b6113d38282610c34565b6114a557600160008084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555061144a611004565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b6114b38282610c34565b1561158657600080600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555061152b611004565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b60405160405180910390a45b5050565b60606000600283600261159d919061275a565b6115a79190612704565b67ffffffffffffffff8111156115e6577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156116185781602001600182028036833780820191505090505b5090507f300000000000000000000000000000000000000000000000000000000000000081600081518110611676577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053507f780000000000000000000000000000000000000000000000000000000000000081600181518110611700577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a90535060006001846002611740919061275a565b61174a9190612704565b90505b6001811115611836577f3031323334353637383961626364656600000000000000000000000000000000600f8616601081106117b2577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b1a60f81b8282815181106117ef577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600485901c94508061182f90612874565b905061174d565b506000841461187a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161187190612406565b60405180910390fd5b8091505092915050565b60008135905061189381612c69565b92915050565b60008083601f8401126118ab57600080fd5b8235905067ffffffffffffffff8111156118c457600080fd5b6020830191508360208202830111156118dc57600080fd5b9250929050565b60008083601f8401126118f557600080fd5b8235905067ffffffffffffffff81111561190e57600080fd5b60208301915083602082028301111561192657600080fd5b9250929050565b60008083601f84011261193f57600080fd5b8235905067ffffffffffffffff81111561195857600080fd5b60208301915083602082028301111561197057600080fd5b9250929050565b60008135905061198681612c80565b92915050565b60008135905061199b81612c97565b92915050565b60008083601f8401126119b357600080fd5b8235905067ffffffffffffffff8111156119cc57600080fd5b6020830191508360018202830111156119e457600080fd5b9250929050565b6000813590506119fa81612cae565b92915050565b600060208284031215611a1257600080fd5b6000611a2084828501611884565b91505092915050565b60008060008060008060a08789031215611a4257600080fd5b6000611a5089828a01611884565b9650506020611a6189828a016119eb565b955050604087013567ffffffffffffffff811115611a7e57600080fd5b611a8a89828a016119a1565b94509450506060611a9d89828a01611977565b9250506080611aae89828a01611977565b9150509295509295509295565b600080600080600080600060c0888a031215611ad657600080fd5b6000611ae48a828b01611884565b9750506020611af58a828b016119eb565b965050604088013567ffffffffffffffff811115611b1257600080fd5b611b1e8a828b016119a1565b95509550506060611b318a828b01611977565b9350506080611b428a828b01611977565b92505060a0611b538a828b016119eb565b91505092959891949750929550565b60008060008060008060008060a0898b031215611b7e57600080fd5b600089013567ffffffffffffffff811115611b9857600080fd5b611ba48b828c01611899565b9850985050602089013567ffffffffffffffff811115611bc357600080fd5b611bcf8b828c0161192d565b9650965050604089013567ffffffffffffffff811115611bee57600080fd5b611bfa8b828c016118e3565b94509450506060611c0d8b828c01611977565b9250506080611c1e8b828c01611977565b9150509295985092959890939650565b600080600080600080600080600060c08a8c031215611c4c57600080fd5b60008a013567ffffffffffffffff811115611c6657600080fd5b611c728c828d01611899565b995099505060208a013567ffffffffffffffff811115611c9157600080fd5b611c9d8c828d0161192d565b975097505060408a013567ffffffffffffffff811115611cbc57600080fd5b611cc88c828d016118e3565b95509550506060611cdb8c828d01611977565b9350506080611cec8c828d01611977565b92505060a0611cfd8c828d016119eb565b9150509295985092959850929598565b600060208284031215611d1f57600080fd5b6000611d2d84828501611977565b91505092915050565b60008060408385031215611d4957600080fd5b6000611d5785828601611977565b9250506020611d6885828601611884565b9150509250929050565b600060208284031215611d8457600080fd5b6000611d928482850161198c565b91505092915050565b600060208284031215611dad57600080fd5b6000611dbb848285016119eb565b91505092915050565b6000611dd08383611df2565b60208301905092915050565b6000611de9848484611f59565b90509392505050565b611dfb816127b4565b82525050565b611e0a816127b4565b82525050565b6000611e1c838561261a565b9350611e27826125e1565b8060005b85811015611e6057611e3d8284612696565b611e478882611dc4565b9750611e5283612600565b925050600181019050611e2b565b5085925050509392505050565b6000611e79838561262b565b935083602084028501611e8b846125eb565b8060005b87811015611ed1578484038952611ea682846126ad565b611eb1868284611ddc565b9550611ebc8461260d565b935060208b019a505050600181019050611e8f565b50829750879450505050509392505050565b6000611eef838561263c565b93507f07ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff831115611f1e57600080fd5b602083029250611f2f838584612832565b82840190509392505050565b611f44816127c6565b82525050565b611f53816127d2565b82525050565b6000611f65838561264d565b9350611f72838584612832565b611f7b83612916565b840190509392505050565b6000611f92838561265e565b9350611f9f838584612832565b611fa883612916565b840190509392505050565b6000611fbf838561266f565b9350611fcc838584612832565b82840190509392505050565b6000611fe3826125f5565b611fed818561267a565b9350611ffd818560208601612841565b61200681612916565b840191505092915050565b600061201c826125f5565b612026818561268b565b9350612036818560208601612841565b80840191505092915050565b600061204f60208361267a565b915061205a82612927565b602082019050919050565b600061207260268361267a565b915061207d82612950565b604082019050919050565b600061209560238361267a565b91506120a08261299f565b604082019050919050565b60006120b860268361267a565b91506120c3826129ee565b604082019050919050565b60006120db602f8361267a565b91506120e682612a3d565b604082019050919050565b60006120fe602a8361267a565b915061210982612a8c565b604082019050919050565b600061212160178361268b565b915061212c82612adb565b601782019050919050565b600061214460318361267a565b915061214f82612b04565b604082019050919050565b600061216760118361268b565b915061217282612b53565b601182019050919050565b600061218a602b8361267a565b915061219582612b7c565b604082019050919050565b60006121ad602f8361267a565b91506121b882612bcb565b604082019050919050565b60006121d060338361267a565b91506121db82612c1a565b604082019050919050565b6121ef81612828565b82525050565b6000612202828486611fb3565b91508190509392505050565b600061221982612114565b91506122258285612011565b91506122308261215a565b915061223c8284612011565b91508190509392505050565b600060608201905061225d6000830187611e01565b61226a60208301866121e6565b818103604083015261227d818486611f86565b905095945050505050565b600060a08201905061229d6000830189611e01565b6122aa60208301886121e6565b81810360408301526122bd818688611f86565b90506122cc6060830185611f4a565b6122d96080830184611f4a565b979650505050505050565b600060a0820190506122f96000830189611e01565b61230660208301886121e6565b8181036040830152612319818688611f86565b90506123286060830185611f4a565b61233560808301846121e6565b979650505050505050565b600060a082019050818103600083015261235b818a8c611e10565b9050818103602083015261237081888a611ee3565b90508181036040830152612385818688611e6d565b90506123946060830185611f4a565b6123a16080830184611f4a565b9998505050505050505050565b60006020820190506123c36000830184611f3b565b92915050565b60006020820190506123de6000830184611f4a565b92915050565b600060208201905081810360008301526123fe8184611fd8565b905092915050565b6000602082019050818103600083015261241f81612042565b9050919050565b6000602082019050818103600083015261243f81612065565b9050919050565b6000602082019050818103600083015261245f81612088565b9050919050565b6000602082019050818103600083015261247f816120ab565b9050919050565b6000602082019050818103600083015261249f816120ce565b9050919050565b600060208201905081810360008301526124bf816120f1565b9050919050565b600060208201905081810360008301526124df81612137565b9050919050565b600060208201905081810360008301526124ff8161217d565b9050919050565b6000602082019050818103600083015261251f816121a0565b9050919050565b6000602082019050818103600083015261253f816121c3565b9050919050565b600060208201905061255b60008301846121e6565b92915050565b600060408201905061257660008301856121e6565b61258360208301846121e6565b9392505050565b600080833560016020038436030381126125a357600080fd5b80840192508235915067ffffffffffffffff8211156125c157600080fd5b6020830192506001820236038313156125d957600080fd5b509250929050565b6000819050919050565b6000819050919050565b600081519050919050565b6000602082019050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b60006126a56020840184611884565b905092915050565b600080833560016020038436030381126126c657600080fd5b83810192508235915060208301925067ffffffffffffffff8211156126ea57600080fd5b6001820236038413156126fc57600080fd5b509250929050565b600061270f82612828565b915061271a83612828565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561274f5761274e6128e7565b5b828201905092915050565b600061276582612828565b915061277083612828565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156127a9576127a86128e7565b5b828202905092915050565b60006127bf82612808565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561285f578082015181840152602081019050612844565b8381111561286e576000848401525b50505050565b600061287f82612828565b91506000821415612893576128926128e7565b5b600182039050919050565b60006128a982612828565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156128dc576128db6128e7565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000601f19601f8301169050919050565b7f537472696e67733a20686578206c656e67746820696e73756666696369656e74600082015250565b7f54696d656c6f636b436f6e74726f6c6c65723a206d697373696e67206465706560008201527f6e64656e63790000000000000000000000000000000000000000000000000000602082015250565b7f54696d656c6f636b436f6e74726f6c6c65723a206c656e677468206d69736d6160008201527f7463680000000000000000000000000000000000000000000000000000000000602082015250565b7f54696d656c6f636b436f6e74726f6c6c65723a20696e73756666696369656e7460008201527f2064656c61790000000000000000000000000000000000000000000000000000602082015250565b7f54696d656c6f636b436f6e74726f6c6c65723a206f7065726174696f6e20616c60008201527f7265616479207363686564756c65640000000000000000000000000000000000602082015250565b7f54696d656c6f636b436f6e74726f6c6c65723a206f7065726174696f6e20697360008201527f206e6f7420726561647900000000000000000000000000000000000000000000602082015250565b7f416363657373436f6e74726f6c3a206163636f756e7420000000000000000000600082015250565b7f54696d656c6f636b436f6e74726f6c6c65723a206f7065726174696f6e20636160008201527f6e6e6f742062652063616e63656c6c6564000000000000000000000000000000602082015250565b7f206973206d697373696e6720726f6c6520000000000000000000000000000000600082015250565b7f54696d656c6f636b436f6e74726f6c6c65723a2063616c6c6572206d7573742060008201527f62652074696d656c6f636b000000000000000000000000000000000000000000602082015250565b7f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560008201527f20726f6c657320666f722073656c660000000000000000000000000000000000602082015250565b7f54696d656c6f636b436f6e74726f6c6c65723a20756e6465726c79696e67207460008201527f72616e73616374696f6e20726576657274656400000000000000000000000000602082015250565b612c72816127b4565b8114612c7d57600080fd5b50565b612c89816127d2565b8114612c9457600080fd5b50565b612ca0816127dc565b8114612cab57600080fd5b50565b612cb781612828565b8114612cc257600080fd5b5056fea26469706673582212205b0c6a67fd9a7ce84b0688f30d8a8875048db10323017f34d33f3b7128f0fdf564736f6c63430008040033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : minDelay (uint256): 0
-----Encoded View---------------
6 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000001
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000000
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 30 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|---|---|---|---|---|
ETH | 100.00% | <$0.000001 | 252,904,014,213.3277 | $121,463.48 |
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.