Contract
0xc8BD4Ae3d3A69f0d75e3788d2ee557E66EBC98D8
3
My Name Tag:
Not Available, login to update
[ Download CSV Export ]
Contract Name:
TimelockController
Compiler Version
v0.8.4+commit.c7e474f2
Contract Source Code (Solidity)
/** *Submitted for verification at moonriver.moonscan.io on 2021-11-02 */ // SPDX-License-Identifier: MIT // File: @openzeppelin-4/contracts/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; } // File: @openzeppelin-4/contracts/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; } } // File: @openzeppelin-4/contracts/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); } } // File: @openzeppelin-4/contracts/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); } // File: @openzeppelin-4/contracts/utils/introspection/ERC165.sol pragma solidity ^0.8.0; /** * @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; } } // File: @openzeppelin-4/contracts/access/AccessControl.sol pragma solidity ^0.8.0; /** * @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 granted `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}. * ==== */ 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); } function _grantRole(bytes32 role, address account) private { if (!hasRole(role, account)) { _roles[role].members[account] = true; emit RoleGranted(role, account, _msgSender()); } } function _revokeRole(bytes32 role, address account) private { if (hasRole(role, account)) { _roles[role].members[account] = false; emit RoleRevoked(role, account, _msgSender()); } } } // File: @openzeppelin-4/contracts/governance/TimelockController.sol pragma solidity ^0.8.0; /** * @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; } }
[{"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
60806040523480156200001157600080fd5b5060405162001e6638038062001e668339810160408190526200003491620003a9565b6200004f60008051602062001e0683398151915280620001e1565b6200007960008051602062001e2683398151915260008051602062001e06833981519152620001e1565b620000a360008051602062001e4683398151915260008051602062001e06833981519152620001e1565b620000be60008051602062001e06833981519152336200022c565b620000d960008051602062001e06833981519152306200022c565b60005b825181101562000142576200012f60008051602062001e268339815191528483815181106200011b57634e487b7160e01b600052603260045260246000fd5b60200260200101516200022c60201b60201c565b6200013a816200041a565b9050620000dc565b5060005b815181101562000198576200018560008051602062001e468339815191528383815181106200011b57634e487b7160e01b600052603260045260246000fd5b62000190816200041a565b905062000146565b5060028390556040805160008152602081018590527f11c24f4ead16507c69ac467fbd5e4eed5fb5c699626d2cc6d66421df253886d5910160405180910390a150505062000458565b600082815260208190526040808220600101805490849055905190918391839186917fbd79b86ffe0ab8e8776151514217cd7cacd52c909f66475c3af44e129f0b00ff9190a4505050565b6200023882826200023c565b5050565b6000828152602081815260408083206001600160a01b038516845290915290205460ff1662000238576000828152602081815260408083206001600160a01b03851684529091529020805460ff19166001179055620002983390565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b80516001600160a01b0381168114620002f457600080fd5b919050565b600082601f8301126200030a578081fd5b815160206001600160401b038083111562000329576200032962000442565b8260051b604051601f19603f8301168101818110848211171562000351576200035162000442565b6040528481528381019250868401828801850189101562000370578687fd5b8692505b858310156200039d576200038881620002dc565b84529284019260019290920191840162000374565b50979650505050505050565b600080600060608486031215620003be578283fd5b835160208501519093506001600160401b0380821115620003dd578384fd5b620003eb87838801620002f9565b9350604086015191508082111562000401578283fd5b506200041086828701620002f9565b9150509250925092565b60006000198214156200043b57634e487b7160e01b81526011600452602481fd5b5060010190565b634e487b7160e01b600052604160045260246000fd5b61199e80620004686000396000f3fe60806040526004361061014f5760003560e01c806364d62353116100b6578063b1c5f4271161006f578063b1c5f427146103f3578063c4d252f514610413578063d45c443514610433578063d547741f14610460578063e38335e514610480578063f27a0c921461049357600080fd5b806364d623531461033c5780638065657f1461035c5780638f2a0bb01461037c5780638f61f4f51461039c57806391d14854146103be578063a217fddf146103de57600080fd5b8063248a9ca311610108578063248a9ca31461025b5780632ab0f5291461028b5780632f2ff15d146102bc57806331d50750146102dc57806336568abe146102fc578063584b153e1461031c57600080fd5b806301d5062a1461015b57806301ffc9a71461017d57806307bd0265146101b25780630d3cf6fc146101f4578063134008d31461022857806313bc9f201461023b57600080fd5b3661015657005b600080fd5b34801561016757600080fd5b5061017b610176366004611314565b6104a8565b005b34801561018957600080fd5b5061019d61019836600461151d565b61052c565b60405190151581526020015b60405180910390f35b3480156101be57600080fd5b506101e67fd8aa0f3194971a2a116679f7c2090f6939c8d4e01a2a8d7e41d55e5351469e6381565b6040519081526020016101a9565b34801561020057600080fd5b506101e67f5f58e3a2316349923ce3780f8d587db2d72378aed66a8261c916544fa6846ca581565b61017b6102363660046112aa565b610563565b34801561024757600080fd5b5061019d6102563660046114da565b6105db565b34801561026757600080fd5b506101e66102763660046114da565b60009081526020819052604090206001015490565b34801561029757600080fd5b5061019d6102a63660046114da565b6000908152600160208190526040909120541490565b3480156102c857600080fd5b5061017b6102d73660046114f2565b610601565b3480156102e857600080fd5b5061019d6102f73660046114da565b61062c565b34801561030857600080fd5b5061017b6103173660046114f2565b610645565b34801561032857600080fd5b5061019d6103373660046114da565b6106c8565b34801561034857600080fd5b5061017b6103573660046114da565b6106de565b34801561036857600080fd5b506101e66103773660046112aa565b610782565b34801561038857600080fd5b5061017b61039736600461142c565b6107c1565b3480156103a857600080fd5b506101e660008051602061194983398151915281565b3480156103ca57600080fd5b5061019d6103d93660046114f2565b61092c565b3480156103ea57600080fd5b506101e6600081565b3480156103ff57600080fd5b506101e661040e366004611387565b610955565b34801561041f57600080fd5b5061017b61042e3660046114da565b61099a565b34801561043f57600080fd5b506101e661044e3660046114da565b60009081526001602052604090205490565b34801561046c57600080fd5b5061017b61047b3660046114f2565b610a5e565b61017b61048e366004611387565b610a84565b34801561049f57600080fd5b506002546101e6565b6000805160206119498339815191526104c18133610be3565b60006104d1898989898989610782565b90506104dd8184610c47565b6000817f4cf4410cc57040e44862ef0f45f3dd5a5e02db8eb8add648d4b0e236f1d07dca8b8b8b8b8b8a604051610519969594939291906116b2565b60405180910390a3505050505050505050565b60006001600160e01b03198216637965db0b60e01b148061055d57506301ffc9a760e01b6001600160e01b03198316145b92915050565b7fd8aa0f3194971a2a116679f7c2090f6939c8d4e01a2a8d7e41d55e5351469e6361058f81600061092c565b61059d5761059d8133610be3565b60006105ad888888888888610782565b90506105b98185610d36565b6105c88160008a8a8a8a610dd2565b6105d181610ee6565b5050505050505050565b6000818152600160205260408120546001811180156105fa5750428111155b9392505050565b60008281526020819052604090206001015461061d8133610be3565b6106278383610f1f565b505050565b60008181526001602052604081205481905b1192915050565b6001600160a01b03811633146106ba5760405162461bcd60e51b815260206004820152602f60248201527f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560448201526e103937b632b9903337b91039b2b63360891b60648201526084015b60405180910390fd5b6106c48282610fa3565b5050565b600081815260016020819052604082205461063e565b3330146107415760405162461bcd60e51b815260206004820152602b60248201527f54696d656c6f636b436f6e74726f6c6c65723a2063616c6c6572206d7573742060448201526a62652074696d656c6f636b60a81b60648201526084016106b1565b60025460408051918252602082018390527f11c24f4ead16507c69ac467fbd5e4eed5fb5c699626d2cc6d66421df253886d5910160405180910390a1600255565b600086868686868660405160200161079f969594939291906116b2565b6040516020818303038152906040528051906020012090509695505050505050565b6000805160206119498339815191526107da8133610be3565b8887146107f95760405162461bcd60e51b81526004016106b1906117c7565b8885146108185760405162461bcd60e51b81526004016106b1906117c7565b600061082a8b8b8b8b8b8b8b8b610955565b90506108368184610c47565b60005b8a81101561091e5780827f4cf4410cc57040e44862ef0f45f3dd5a5e02db8eb8add648d4b0e236f1d07dca8e8e8581811061088457634e487b7160e01b600052603260045260246000fd5b90506020020160208101906108999190611290565b8d8d868181106108b957634e487b7160e01b600052603260045260246000fd5b905060200201358c8c878181106108e057634e487b7160e01b600052603260045260246000fd5b90506020028101906108f29190611854565b8c8b604051610906969594939291906116b2565b60405180910390a361091781611917565b9050610839565b505050505050505050505050565b6000918252602082815260408084206001600160a01b0393909316845291905290205460ff1690565b600088888888888888886040516020016109769897969594939291906116ef565b60405160208183030381529060405280519060200120905098975050505050505050565b6000805160206119498339815191526109b38133610be3565b6109bc826106c8565b610a225760405162461bcd60e51b815260206004820152603160248201527f54696d656c6f636b436f6e74726f6c6c65723a206f7065726174696f6e2063616044820152701b9b9bdd0818994818d85b98d95b1b1959607a1b60648201526084016106b1565b6000828152600160205260408082208290555183917fbaa1eb22f2a492ba1a5fea61b8df4d27c6c8b5f3971e63bb58fa14ff72eedb7091a25050565b600082815260208190526040902060010154610a7a8133610be3565b6106278383610fa3565b7fd8aa0f3194971a2a116679f7c2090f6939c8d4e01a2a8d7e41d55e5351469e63610ab081600061092c565b610abe57610abe8133610be3565b878614610add5760405162461bcd60e51b81526004016106b1906117c7565b878414610afc5760405162461bcd60e51b81526004016106b1906117c7565b6000610b0e8a8a8a8a8a8a8a8a610955565b9050610b1a8185610d36565b60005b89811015610bcd57610bbd82828d8d85818110610b4a57634e487b7160e01b600052603260045260246000fd5b9050602002016020810190610b5f9190611290565b8c8c86818110610b7f57634e487b7160e01b600052603260045260246000fd5b905060200201358b8b87818110610ba657634e487b7160e01b600052603260045260246000fd5b9050602002810190610bb89190611854565b610dd2565b610bc681611917565b9050610b1d565b50610bd781610ee6565b50505050505050505050565b610bed828261092c565b6106c457610c05816001600160a01b03166014611008565b610c10836020611008565b604051602001610c2192919061160b565b60408051601f198184030181529082905262461bcd60e51b82526106b191600401611794565b610c508261062c565b15610cb55760405162461bcd60e51b815260206004820152602f60248201527f54696d656c6f636b436f6e74726f6c6c65723a206f7065726174696f6e20616c60448201526e1c9958591e481cd8da19591d5b1959608a1b60648201526084016106b1565b600254811015610d165760405162461bcd60e51b815260206004820152602660248201527f54696d656c6f636b436f6e74726f6c6c65723a20696e73756666696369656e746044820152652064656c617960d01b60648201526084016106b1565b610d208142611899565b6000928352600160205260409092209190915550565b610d3f826105db565b610d5b5760405162461bcd60e51b81526004016106b19061180a565b801580610d775750600081815260016020819052604090912054145b6106c45760405162461bcd60e51b815260206004820152602660248201527f54696d656c6f636b436f6e74726f6c6c65723a206d697373696e6720646570656044820152656e64656e637960d01b60648201526084016106b1565b6000846001600160a01b0316848484604051610def9291906115fb565b60006040518083038185875af1925050503d8060008114610e2c576040519150601f19603f3d011682016040523d82523d6000602084013e610e31565b606091505b5050905080610e9e5760405162461bcd60e51b815260206004820152603360248201527f54696d656c6f636b436f6e74726f6c6c65723a20756e6465726c79696e6720746044820152721c985b9cd858dd1a5bdb881c995d995c9d1959606a1b60648201526084016106b1565b85877fc2617efa69bab66782fa219543714338489c4e9e178271560a91b82c3f612b5887878787604051610ed59493929190611680565b60405180910390a350505050505050565b610eef816105db565b610f0b5760405162461bcd60e51b81526004016106b19061180a565b600090815260016020819052604090912055565b610f29828261092c565b6106c4576000828152602081815260408083206001600160a01b03851684529091529020805460ff19166001179055610f5f3390565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b610fad828261092c565b156106c4576000828152602081815260408083206001600160a01b0385168085529252808320805460ff1916905551339285917ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b9190a45050565b606060006110178360026118b1565b611022906002611899565b67ffffffffffffffff81111561104857634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611072576020820181803683370190505b509050600360fc1b8160008151811061109b57634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350600f60fb1b816001815181106110d857634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a90535060006110fc8460026118b1565b611107906001611899565b90505b600181111561119b576f181899199a1a9b1b9c1cb0b131b232b360811b85600f166010811061114957634e487b7160e01b600052603260045260246000fd5b1a60f81b82828151811061116d57634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a90535060049490941c9361119481611900565b905061110a565b5083156105fa5760405162461bcd60e51b815260206004820181905260248201527f537472696e67733a20686578206c656e67746820696e73756666696369656e7460448201526064016106b1565b80356001600160a01b038116811461120157600080fd5b919050565b60008083601f840112611217578182fd5b50813567ffffffffffffffff81111561122e578182fd5b6020830191508360208260051b850101111561124957600080fd5b9250929050565b60008083601f840112611261578182fd5b50813567ffffffffffffffff811115611278578182fd5b60208301915083602082850101111561124957600080fd5b6000602082840312156112a1578081fd5b6105fa826111ea565b60008060008060008060a087890312156112c2578182fd5b6112cb876111ea565b955060208701359450604087013567ffffffffffffffff8111156112ed578283fd5b6112f989828a01611250565b979a9699509760608101359660809091013595509350505050565b600080600080600080600060c0888a03121561132e578081fd5b611337886111ea565b965060208801359550604088013567ffffffffffffffff811115611359578182fd5b6113658a828b01611250565b989b979a50986060810135976080820135975060a09091013595509350505050565b60008060008060008060008060a0898b0312156113a2578081fd5b883567ffffffffffffffff808211156113b9578283fd5b6113c58c838d01611206565b909a50985060208b01359150808211156113dd578283fd5b6113e98c838d01611206565b909850965060408b0135915080821115611401578283fd5b5061140e8b828c01611206565b999c989b509699959896976060870135966080013595509350505050565b600080600080600080600080600060c08a8c031215611449578081fd5b893567ffffffffffffffff80821115611460578283fd5b61146c8d838e01611206565b909b50995060208c0135915080821115611484578283fd5b6114908d838e01611206565b909950975060408c01359150808211156114a8578283fd5b506114b58c828d01611206565b9a9d999c50979a969997986060880135976080810135975060a0013595509350505050565b6000602082840312156114eb578081fd5b5035919050565b60008060408385031215611504578182fd5b82359150611514602084016111ea565b90509250929050565b60006020828403121561152e578081fd5b81356001600160e01b0319811681146105fa578182fd5b81835260006020808501808196508560051b8101915084845b878110156115c55782840389528135601e1988360301811261157e578687fd5b8701803567ffffffffffffffff811115611596578788fd5b8036038913156115a4578788fd5b6115b186828985016115d2565b9a87019a955050509084019060010161155e565b5091979650505050505050565b81835281816020850137506000828201602090810191909152601f909101601f19169091010190565b8183823760009101908152919050565b7f416363657373436f6e74726f6c3a206163636f756e74200000000000000000008152600083516116438160178501602088016118d0565b7001034b99036b4b9b9b4b733903937b6329607d1b60179184019182015283516116748160288401602088016118d0565b01602801949350505050565b60018060a01b03851681528360208201526060604082015260006116a86060830184866115d2565b9695505050505050565b60018060a01b038716815285602082015260a0604082015260006116da60a0830186886115d2565b60608301949094525060800152949350505050565b60a0808252810188905260008960c08301825b8b811015611730576001600160a01b0361171b846111ea565b16825260209283019290910190600101611702565b5083810360208501528881526001600160fb1b0389111561174f578283fd5b8860051b9150818a6020830137016020818101838152848303909101604085015261177b81888a611545565b6060850196909652505050608001529695505050505050565b60208152600082518060208401526117b38160408501602087016118d0565b601f01601f19169190910160400192915050565b60208082526023908201527f54696d656c6f636b436f6e74726f6c6c65723a206c656e677468206d69736d616040820152620e8c6d60eb1b606082015260800190565b6020808252602a908201527f54696d656c6f636b436f6e74726f6c6c65723a206f7065726174696f6e206973604082015269206e6f7420726561647960b01b606082015260800190565b6000808335601e1984360301811261186a578283fd5b83018035915067ffffffffffffffff821115611884578283fd5b60200191503681900382131561124957600080fd5b600082198211156118ac576118ac611932565b500190565b60008160001904831182151516156118cb576118cb611932565b500290565b60005b838110156118eb5781810151838201526020016118d3565b838111156118fa576000848401525b50505050565b60008161190f5761190f611932565b506000190190565b600060001982141561192b5761192b611932565b5060010190565b634e487b7160e01b600052601160045260246000fdfeb09aa5aeb3702cfd50b6b62bc4532604938f21248a27a1d5ca736082b6819cc1a2646970667358221220f0e204c543aeefb0dac9b6723557a9d442c241a5535b5400f2024f26598c2be264736f6c634300080400335f58e3a2316349923ce3780f8d587db2d72378aed66a8261c916544fa6846ca5b09aa5aeb3702cfd50b6b62bc4532604938f21248a27a1d5ca736082b6819cc1d8aa0f3194971a2a116679f7c2090f6939c8d4e01a2a8d7e41d55e5351469e630000000000000000000000000000000000000000000000000000000000005460000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000010000000000000000000000003eb7fb70c03ec4aeec97c6c6c1b59b014600b7f700000000000000000000000000000000000000000000000000000000000000020000000000000000000000003eb7fb70c03ec4aeec97c6c6c1b59b014600b7f700000000000000000000000010aee6b5594942433e7fc2783598c979b030ef3d
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
0000000000000000000000000000000000000000000000000000000000005460000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000010000000000000000000000003eb7fb70c03ec4aeec97c6c6c1b59b014600b7f700000000000000000000000000000000000000000000000000000000000000020000000000000000000000003eb7fb70c03ec4aeec97c6c6c1b59b014600b7f700000000000000000000000010aee6b5594942433e7fc2783598c979b030ef3d
-----Decoded View---------------
Arg [0] : minDelay (uint256): 21600
Arg [1] : proposers (address[]): 0x3eb7fb70c03ec4aeec97c6c6c1b59b014600b7f7
Arg [2] : executors (address[]): 0x3eb7fb70c03ec4aeec97c6c6c1b59b014600b7f7,0x10aee6b5594942433e7fc2783598c979b030ef3d
-----Encoded View---------------
8 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000005460
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [2] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000001
Arg [4] : 0000000000000000000000003eb7fb70c03ec4aeec97c6c6c1b59b014600b7f7
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000002
Arg [6] : 0000000000000000000000003eb7fb70c03ec4aeec97c6c6c1b59b014600b7f7
Arg [7] : 00000000000000000000000010aee6b5594942433e7fc2783598c979b030ef3d
Deployed ByteCode Sourcemap
15711:11016:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21170:413;;;;;;;;;;-1:-1:-1;21170:413:0;;;;;:::i;:::-;;:::i;:::-;;10247:204;;;;;;;;;;-1:-1:-1;10247:204:0;;;;;:::i;:::-;;:::i;:::-;;;11823:14:1;;11816:22;11798:41;;11786:2;11771:18;10247:204:0;;;;;;;;15921:66;;;;;;;;;;;;15961:26;15921:66;;;;;11996:25:1;;;11984:2;11969:18;15921:66:0;11951:76:1;15763:78:0;;;;;;;;;;;;15809:32;15763:78;;23578:406;;;;;;:::i;:::-;;:::i;19072:211::-;;;;;;;;;;-1:-1:-1;19072:211:0;;;;;:::i;:::-;;:::i;11658:123::-;;;;;;;;;;-1:-1:-1;11658:123:0;;;;;:::i;:::-;11724:7;11751:12;;;;;;;;;;:22;;;;11658:123;19367:138;;;;;;;;;;-1:-1:-1;19367:138:0;;;;;:::i;:::-;19433:9;19758:15;;;16046:1;19758:15;;;;;;;;;19462:35;;19367:138;12043:147;;;;;;;;;;-1:-1:-1;12043:147:0;;;;;:::i;:::-;;:::i;18635:122::-;;;;;;;;;;-1:-1:-1;18635:122:0;;;;;:::i;:::-;;:::i;13091:218::-;;;;;;;;;;-1:-1:-1;13091:218:0;;;;;:::i;:::-;;:::i;18844:143::-;;;;;;;;;;-1:-1:-1;18844:143:0;;;;;:::i;:::-;;:::i;26484:240::-;;;;;;;;;;-1:-1:-1;26484:240:0;;;;;:::i;:::-;;:::i;20198:292::-;;;;;;;;;;-1:-1:-1;20198:292:0;;;;;:::i;:::-;;:::i;21848:717::-;;;;;;;;;;-1:-1:-1;21848:717:0;;;;;:::i;:::-;;:::i;15848:66::-;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;15848:66:0;;10543:139;;;;;;;;;;-1:-1:-1;10543:139:0;;;;;:::i;:::-;;:::i;9634:49::-;;;;;;;;;;-1:-1:-1;9634:49:0;9679:4;9634:49;;20612:327;;;;;;;;;;-1:-1:-1;20612:327:0;;;;;:::i;:::-;;:::i;23107:234::-;;;;;;;;;;-1:-1:-1;23107:234:0;;;;;:::i;:::-;;:::i;19658:123::-;;;;;;;;;;-1:-1:-1;19658:123:0;;;;;:::i;:::-;19721:17;19758:15;;;:11;:15;;;;;;;19658:123;12435:149;;;;;;;;;;-1:-1:-1;12435:149:0;;;;;:::i;:::-;;:::i;24255:710::-;;;;;;:::i;:::-;;:::i;19974:105::-;;;;;;;;;;-1:-1:-1;20062:9:0;;19974:105;;21170:413;-1:-1:-1;;;;;;;;;;;10125:30:0;15888:26;3717:10;10125;:30::i;:::-;21401:10:::1;21414:53;21428:6;21436:5;21443:4;;21449:11;21462:4;21414:13;:53::i;:::-;21401:66;;21478:20;21488:2;21492:5;21478:9;:20::i;:::-;21532:1;21528:2;21514:61;21535:6;21543:5;21550:4;;21556:11;21569:5;21514:61;;;;;;;;;;;:::i;:::-;;;;;;;;10166:1;21170:413:::0;;;;;;;;:::o;10247:204::-;10332:4;-1:-1:-1;;;;;;10356:47:0;;-1:-1:-1;;;10356:47:0;;:87;;-1:-1:-1;;;;;;;;;;7677:40:0;;;10407:36;10349:94;10247:204;-1:-1:-1;;10247:204:0:o;23578:406::-;15961:26;18234:25;18242:4;18256:1;18234:7;:25::i;:::-;18229:89;;18276:30;18287:4;3717:10;10125;:30::i;18276:::-;23802:10:::1;23815:53;23829:6;23837:5;23844:4;;23850:11;23863:4;23815:13;:53::i;:::-;23802:66;;23879:28;23891:2;23895:11;23879;:28::i;:::-;23918:33;23924:2;23928:1;23931:6;23939:5;23946:4;;23918:5;:33::i;:::-;23962:14;23973:2;23962:10;:14::i;:::-;18328:1;23578:406:::0;;;;;;;:::o;19072:211::-;19139:10;19758:15;;;:11;:15;;;;;;16046:1;19216:9;:27;:59;;;;;19260:15;19247:9;:28;;19216:59;19209:66;19072:211;-1:-1:-1;;;19072:211:0:o;12043:147::-;11724:7;11751:12;;;;;;;;;;:22;;;10125:30;10136:4;3717:10;10125;:30::i;:::-;12157:25:::1;12168:4;12174:7;12157:10;:25::i;:::-;12043:147:::0;;;:::o;18635:122::-;18697:12;19758:15;;;:11;:15;;;;;;18697:12;;18729:16;:20;;18635:122;-1:-1:-1;;18635:122:0:o;13091:218::-;-1:-1:-1;;;;;13187:23:0;;3717:10;13187:23;13179:83;;;;-1:-1:-1;;;13179:83:0;;15858:2:1;13179:83:0;;;15840:21:1;15897:2;15877:18;;;15870:30;15936:34;15916:18;;;15909:62;-1:-1:-1;;;15987:18:1;;;15980:45;16042:19;;13179:83:0;;;;;;;;;13275:26;13287:4;13293:7;13275:11;:26::i;:::-;13091:218;;:::o;18844:143::-;18913:12;19758:15;;;16046:1;19758:15;;;;;;;;18945:16;19658:123;26484:240;26559:10;26581:4;26559:27;26551:83;;;;-1:-1:-1;;;26551:83:0;;15446:2:1;26551:83:0;;;15428:21:1;15485:2;15465:18;;;15458:30;15524:34;15504:18;;;15497:62;-1:-1:-1;;;15575:18:1;;;15568:41;15626:19;;26551:83:0;15418:233:1;26551:83:0;26665:9;;26650:35;;;16848:25:1;;;16904:2;16889:18;;16882:34;;;26650:35:0;;16821:18:1;26650:35:0;;;;;;;26696:9;:20;26484:240::o;20198:292::-;20389:12;20442:6;20450:5;20457:4;;20463:11;20476:4;20431:50;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;20421:61;;;;;;20414:68;;20198:292;;;;;;;;:::o;21848:717::-;-1:-1:-1;;;;;;;;;;;10125:30:0;15888:26;3717:10;10125;:30::i;:::-;22119:31;;::::1;22111:79;;;;-1:-1:-1::0;;;22111:79:0::1;;;;;;;:::i;:::-;22209:30:::0;;::::1;22201:78;;;;-1:-1:-1::0;;;22201:78:0::1;;;;;;;:::i;:::-;22292:10;22305:61;22324:7;;22333:6;;22341:5;;22348:11;22361:4;22305:18;:61::i;:::-;22292:74;;22377:20;22387:2;22391:5;22377:9;:20::i;:::-;22413:9;22408:150;22428:18:::0;;::::1;22408:150;;;22491:1;22487:2;22473:73;22494:7;;22502:1;22494:10;;;;;-1:-1:-1::0;;;22494:10:0::1;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;22506:6;;22513:1;22506:9;;;;;-1:-1:-1::0;;;22506:9:0::1;;;;;;;;;;;;;;;22517:5;;22523:1;22517:8;;;;;-1:-1:-1::0;;;22517:8:0::1;;;;;;;;;;;;;;;;;;;;:::i;:::-;22527:11;22540:5;22473:73;;;;;;;;;;;:::i;:::-;;;;;;;;22448:3;::::0;::::1;:::i;:::-;;;22408:150;;;;10166:1;21848:717:::0;;;;;;;;;;:::o;10543:139::-;10621:4;10645:12;;;;;;;;;;;-1:-1:-1;;;;;10645:29:0;;;;;;;;;;;;;;;10543:139::o;20612:327::-;20835:12;20888:7;;20897:6;;20905:5;;20912:11;20925:4;20877:53;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;20867:64;;;;;;20860:71;;20612:327;;;;;;;;;;:::o;23107:234::-;-1:-1:-1;;;;;;;;;;;10125:30:0;15888:26;3717:10;10125;:30::i;:::-;23193:22:::1;23212:2;23193:18;:22::i;:::-;23185:84;;;::::0;-1:-1:-1;;;23185:84:0;;15028:2:1;23185:84:0::1;::::0;::::1;15010:21:1::0;15067:2;15047:18;;;15040:30;15106:34;15086:18;;;15079:62;-1:-1:-1;;;15157:18:1;;;15150:47;15214:19;;23185:84:0::1;15000:239:1::0;23185:84:0::1;23287:15;::::0;;;:11:::1;:15;::::0;;;;;23280:22;;;23320:13;23299:2;;23320:13:::1;::::0;::::1;23107:234:::0;;:::o;12435:149::-;11724:7;11751:12;;;;;;;;;;:22;;;10125:30;10136:4;3717:10;10125;:30::i;:::-;12550:26:::1;12562:4;12568:7;12550:11;:26::i;24255:710::-:0;15961:26;18234:25;18242:4;18256:1;18234:7;:25::i;:::-;18229:89;;18276:30;18287:4;3717:10;10125;:30::i;18276:::-;24519:31;;::::1;24511:79;;;;-1:-1:-1::0;;;24511:79:0::1;;;;;;;:::i;:::-;24609:30:::0;;::::1;24601:78;;;;-1:-1:-1::0;;;24601:78:0::1;;;;;;;:::i;:::-;24692:10;24705:61;24724:7;;24733:6;;24741:5;;24748:11;24761:4;24705:18;:61::i;:::-;24692:74;;24777:28;24789:2;24793:11;24777;:28::i;:::-;24821:9;24816:117;24836:18:::0;;::::1;24816:117;;;24876:45;24882:2;24886:1;24889:7;;24897:1;24889:10;;;;;-1:-1:-1::0;;;24889:10:0::1;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;24901:6;;24908:1;24901:9;;;;;-1:-1:-1::0;;;24901:9:0::1;;;;;;;;;;;;;;;24912:5;;24918:1;24912:8;;;;;-1:-1:-1::0;;;24912:8:0::1;;;;;;;;;;;;;;;;;;;;:::i;:::-;24876:5;:45::i;:::-;24856:3;::::0;::::1;:::i;:::-;;;24816:117;;;;24943:14;24954:2;24943:10;:14::i;:::-;18328:1;24255:710:::0;;;;;;;;;:::o;10972:497::-;11053:22;11061:4;11067:7;11053;:22::i;:::-;11048:414;;11241:41;11269:7;-1:-1:-1;;;;;11241:41:0;11279:2;11241:19;:41::i;:::-;11355:38;11383:4;11390:2;11355:19;:38::i;:::-;11146:270;;;;;;;;;:::i;:::-;;;;-1:-1:-1;;11146:270:0;;;;;;;;;;-1:-1:-1;;;11092:358:0;;;;;;;:::i;22672:285::-;22746:15;22758:2;22746:11;:15::i;:::-;22745:16;22737:76;;;;-1:-1:-1;;;22737:76:0;;14201:2:1;22737:76:0;;;14183:21:1;14240:2;14220:18;;;14213:30;14279:34;14259:18;;;14252:62;-1:-1:-1;;;14330:18:1;;;14323:45;14385:19;;22737:76:0;14173:237:1;22737:76:0;20062:9;;22832:5;:22;;22824:73;;;;-1:-1:-1;;;22824:73:0;;13794:2:1;22824:73:0;;;13776:21:1;13833:2;13813:18;;;13806:30;13872:34;13852:18;;;13845:62;-1:-1:-1;;;13923:18:1;;;13916:36;13969:19;;22824:73:0;13766:228:1;22824:73:0;22926:23;22944:5;22926:15;:23;:::i;:::-;22908:15;;;;:11;:15;;;;;;:41;;;;-1:-1:-1;22672:285:0:o;25053:280::-;25139:20;25156:2;25139:16;:20::i;:::-;25131:75;;;;-1:-1:-1;;;25131:75:0;;;;;;;:::i;:::-;25225:25;;;:57;;-1:-1:-1;19433:9:0;19758:15;;;16046:1;19758:15;;;;;;;;;19462:35;25254:28;25217:108;;;;-1:-1:-1;;;25217:108:0;;12983:2:1;25217:108:0;;;12965:21:1;13022:2;13002:18;;;12995:30;13061:34;13041:18;;;13034:62;-1:-1:-1;;;13112:18:1;;;13105:36;13158:19;;25217:108:0;12955:228:1;25712:367:0;25878:12;25896:6;-1:-1:-1;;;;;25896:11:0;25915:5;25922:4;;25896:31;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25877:50;;;25946:7;25938:71;;;;-1:-1:-1;;;25938:71:0;;16274:2:1;25938:71:0;;;16256:21:1;16313:2;16293:18;;;16286:30;16352:34;16332:18;;;16325:62;-1:-1:-1;;;16403:18:1;;;16396:49;16462:19;;25938:71:0;16246:241:1;25938:71:0;26044:5;26040:2;26027:44;26051:6;26059:5;26066:4;;26027:44;;;;;;;;;:::i;:::-;;;;;;;;25712:367;;;;;;;:::o;25420:178::-;25479:20;25496:2;25479:16;:20::i;:::-;25471:75;;;;-1:-1:-1;;;25471:75:0;;;;;;;:::i;:::-;25557:15;;;;16046:1;25557:15;;;;;;;;:33;25420:178::o;14395:229::-;14470:22;14478:4;14484:7;14470;:22::i;:::-;14465:152;;14509:6;:12;;;;;;;;;;;-1:-1:-1;;;;;14509:29:0;;;;;;;;;:36;;-1:-1:-1;;14509:36:0;14541:4;14509:36;;;14592:12;3717:10;;3637:98;14592:12;-1:-1:-1;;;;;14565:40:0;14583:7;-1:-1:-1;;;;;14565:40:0;14577:4;14565:40;;;;;;;;;;14395:229;;:::o;14632:230::-;14707:22;14715:4;14721:7;14707;:22::i;:::-;14703:152;;;14778:5;14746:12;;;;;;;;;;;-1:-1:-1;;;;;14746:29:0;;;;;;;;;;:37;;-1:-1:-1;;14746:37:0;;;14803:40;3717:10;;14746:12;;14803:40;;14778:5;14803:40;14632:230;;:::o;5463:451::-;5538:13;5564:19;5596:10;5600:6;5596:1;:10;:::i;:::-;:14;;5609:1;5596:14;:::i;:::-;5586:25;;;;;;-1:-1:-1;;;5586:25:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;5586:25:0;;5564:47;;-1:-1:-1;;;5622:6:0;5629:1;5622:9;;;;;;-1:-1:-1;;;5622:9:0;;;;;;;;;;;;:15;-1:-1:-1;;;;;5622:15:0;;;;;;;;;-1:-1:-1;;;5648:6:0;5655:1;5648:9;;;;;;-1:-1:-1;;;5648:9:0;;;;;;;;;;;;:15;-1:-1:-1;;;;;5648:15:0;;;;;;;;-1:-1:-1;5679:9:0;5691:10;5695:6;5691:1;:10;:::i;:::-;:14;;5704:1;5691:14;:::i;:::-;5679:26;;5674:135;5711:1;5707;:5;5674:135;;;-1:-1:-1;;;5759:5:0;5767:3;5759:11;5746:25;;;;;-1:-1:-1;;;5746:25:0;;;;;;;;;;;;5734:6;5741:1;5734:9;;;;;;-1:-1:-1;;;5734:9:0;;;;;;;;;;;;:37;-1:-1:-1;;;;;5734:37:0;;;;;;;;-1:-1:-1;5796:1:0;5786:11;;;;;5714:3;;;:::i;:::-;;;5674:135;;;-1:-1:-1;5827:10:0;;5819:55;;;;-1:-1:-1;;;5819:55:0;;12622:2:1;5819:55:0;;;12604:21:1;;;12641:18;;;12634:30;12700:34;12680:18;;;12673:62;12752:18;;5819:55:0;12594:182:1;14:173;82:20;;-1:-1:-1;;;;;131:31:1;;121:42;;111:2;;177:1;174;167:12;111:2;63:124;;;:::o;192:395::-;255:8;265:6;319:3;312:4;304:6;300:17;296:27;286:2;;344:8;334;327:26;286:2;-1:-1:-1;374:20:1;;417:18;406:30;;403:2;;;456:8;446;439:26;403:2;500:4;492:6;488:17;476:29;;560:3;553:4;543:6;540:1;536:14;528:6;524:27;520:38;517:47;514:2;;;577:1;574;567:12;514:2;276:311;;;;;:::o;592:375::-;643:8;653:6;707:3;700:4;692:6;688:17;684:27;674:2;;732:8;722;715:26;674:2;-1:-1:-1;762:20:1;;805:18;794:30;;791:2;;;844:8;834;827:26;791:2;888:4;880:6;876:17;864:29;;940:3;933:4;924:6;916;912:19;908:30;905:39;902:2;;;957:1;954;947:12;972:196;1031:6;1084:2;1072:9;1063:7;1059:23;1055:32;1052:2;;;1105:6;1097;1090:22;1052:2;1133:29;1152:9;1133:29;:::i;1173:709::-;1279:6;1287;1295;1303;1311;1319;1372:3;1360:9;1351:7;1347:23;1343:33;1340:2;;;1394:6;1386;1379:22;1340:2;1422:29;1441:9;1422:29;:::i;:::-;1412:39;;1498:2;1487:9;1483:18;1470:32;1460:42;;1553:2;1542:9;1538:18;1525:32;1580:18;1572:6;1569:30;1566:2;;;1617:6;1609;1602:22;1566:2;1661:58;1711:7;1702:6;1691:9;1687:22;1661:58;:::i;:::-;1330:552;;;;-1:-1:-1;1738:8:1;1820:2;1805:18;;1792:32;;1871:3;1856:19;;;1843:33;;-1:-1:-1;1330:552:1;-1:-1:-1;;;;1330:552:1:o;1887:778::-;2002:6;2010;2018;2026;2034;2042;2050;2103:3;2091:9;2082:7;2078:23;2074:33;2071:2;;;2125:6;2117;2110:22;2071:2;2153:29;2172:9;2153:29;:::i;:::-;2143:39;;2229:2;2218:9;2214:18;2201:32;2191:42;;2284:2;2273:9;2269:18;2256:32;2311:18;2303:6;2300:30;2297:2;;;2348:6;2340;2333:22;2297:2;2392:58;2442:7;2433:6;2422:9;2418:22;2392:58;:::i;:::-;2061:604;;;;-1:-1:-1;2469:8:1;2551:2;2536:18;;2523:32;;2602:3;2587:19;;2574:33;;-1:-1:-1;2654:3:1;2639:19;;;2626:33;;-1:-1:-1;2061:604:1;-1:-1:-1;;;;2061:604:1:o;2670:1277::-;2857:6;2865;2873;2881;2889;2897;2905;2913;2966:3;2954:9;2945:7;2941:23;2937:33;2934:2;;;2988:6;2980;2973:22;2934:2;3033:9;3020:23;3062:18;3103:2;3095:6;3092:14;3089:2;;;3124:6;3116;3109:22;3089:2;3168:70;3230:7;3221:6;3210:9;3206:22;3168:70;:::i;:::-;3257:8;;-1:-1:-1;3142:96:1;-1:-1:-1;3345:2:1;3330:18;;3317:32;;-1:-1:-1;3361:16:1;;;3358:2;;;3395:6;3387;3380:22;3358:2;3439:72;3503:7;3492:8;3481:9;3477:24;3439:72;:::i;:::-;3530:8;;-1:-1:-1;3413:98:1;-1:-1:-1;3618:2:1;3603:18;;3590:32;;-1:-1:-1;3634:16:1;;;3631:2;;;3668:6;3660;3653:22;3631:2;;3712:72;3776:7;3765:8;3754:9;3750:24;3712:72;:::i;:::-;2924:1023;;;;-1:-1:-1;2924:1023:1;;;;3803:8;;3885:2;3870:18;;3857:32;;3936:3;3921:19;3908:33;;-1:-1:-1;2924:1023:1;-1:-1:-1;;;;2924:1023:1:o;3952:1346::-;4148:6;4156;4164;4172;4180;4188;4196;4204;4212;4265:3;4253:9;4244:7;4240:23;4236:33;4233:2;;;4287:6;4279;4272:22;4233:2;4332:9;4319:23;4361:18;4402:2;4394:6;4391:14;4388:2;;;4423:6;4415;4408:22;4388:2;4467:70;4529:7;4520:6;4509:9;4505:22;4467:70;:::i;:::-;4556:8;;-1:-1:-1;4441:96:1;-1:-1:-1;4644:2:1;4629:18;;4616:32;;-1:-1:-1;4660:16:1;;;4657:2;;;4694:6;4686;4679:22;4657:2;4738:72;4802:7;4791:8;4780:9;4776:24;4738:72;:::i;:::-;4829:8;;-1:-1:-1;4712:98:1;-1:-1:-1;4917:2:1;4902:18;;4889:32;;-1:-1:-1;4933:16:1;;;4930:2;;;4967:6;4959;4952:22;4930:2;;5011:72;5075:7;5064:8;5053:9;5049:24;5011:72;:::i;:::-;4223:1075;;;;-1:-1:-1;4223:1075:1;;;;5102:8;;5184:2;5169:18;;5156:32;;5235:3;5220:19;;5207:33;;-1:-1:-1;5287:3:1;5272:19;5259:33;;-1:-1:-1;4223:1075:1;-1:-1:-1;;;;4223:1075:1:o;5303:190::-;5362:6;5415:2;5403:9;5394:7;5390:23;5386:32;5383:2;;;5436:6;5428;5421:22;5383:2;-1:-1:-1;5464:23:1;;5373:120;-1:-1:-1;5373:120:1:o;5498:264::-;5566:6;5574;5627:2;5615:9;5606:7;5602:23;5598:32;5595:2;;;5648:6;5640;5633:22;5595:2;5689:9;5676:23;5666:33;;5718:38;5752:2;5741:9;5737:18;5718:38;:::i;:::-;5708:48;;5585:177;;;;;:::o;5767:306::-;5825:6;5878:2;5866:9;5857:7;5853:23;5849:32;5846:2;;;5899:6;5891;5884:22;5846:2;5930:23;;-1:-1:-1;;;;;;5982:32:1;;5972:43;;5962:2;;6034:6;6026;6019:22;6273:1044;6380:6;6375:3;6368:19;6350:3;6406:4;6447:2;6442:3;6438:12;6472:11;6499;6492:18;;6549:6;6546:1;6542:14;6535:5;6531:26;6519:38;;6580:5;6603:3;6615:676;6629:6;6626:1;6623:13;6615:676;;;6700:5;6694:4;6690:16;6685:3;6678:29;6759:6;6746:20;6849:2;6845:7;6837:5;6821:14;6817:26;6813:40;6793:18;6789:65;6779:2;;6870:3;6865;6858:16;6779:2;6904:30;;6963:21;;7013:18;7000:32;;6997:2;;;7047:3;7042;7035:16;6997:2;7100:8;7084:14;7080:29;7073:5;7069:41;7066:2;;;7125:3;7120;7113:16;7066:2;7152:59;7206:4;7196:8;7191:2;7182:7;7178:16;7152:59;:::i;:::-;7269:12;;;;7144:67;-1:-1:-1;;;7234:15:1;;;;6651:1;6644:9;6615:676;;;-1:-1:-1;7307:4:1;;6358:959;-1:-1:-1;;;;;;;6358:959:1:o;7322:268::-;7410:6;7405:3;7398:19;7462:6;7455:5;7448:4;7443:3;7439:14;7426:43;-1:-1:-1;7380:3:1;7489:16;;;7507:4;7485:27;;;7478:40;;;;7572:2;7551:15;;;-1:-1:-1;;7547:29:1;7538:39;;;7534:50;;7388:202::o;7595:273::-;7778:6;7770;7765:3;7752:33;7734:3;7804:16;;7829:15;;;7804:16;7742:126;-1:-1:-1;7742:126:1:o;7873:786::-;8284:25;8279:3;8272:38;8254:3;8339:6;8333:13;8355:62;8410:6;8405:2;8400:3;8396:12;8389:4;8381:6;8377:17;8355:62;:::i;:::-;-1:-1:-1;;;8476:2:1;8436:16;;;8468:11;;;8461:40;8526:13;;8548:63;8526:13;8597:2;8589:11;;8582:4;8570:17;;8548:63;:::i;:::-;8631:17;8650:2;8627:26;;8262:397;-1:-1:-1;;;;8262:397:1:o;8664:412::-;8906:1;8902;8897:3;8893:11;8889:19;8881:6;8877:32;8866:9;8859:51;8946:6;8941:2;8930:9;8926:18;8919:34;8989:2;8984;8973:9;8969:18;8962:30;8840:4;9009:61;9066:2;9055:9;9051:18;9043:6;9035;9009:61;:::i;:::-;9001:69;8849:227;-1:-1:-1;;;;;;8849:227:1:o;9081:557::-;9379:1;9375;9370:3;9366:11;9362:19;9354:6;9350:32;9339:9;9332:51;9419:6;9414:2;9403:9;9399:18;9392:34;9462:3;9457:2;9446:9;9442:18;9435:31;9313:4;9483:62;9540:3;9529:9;9525:19;9517:6;9509;9483:62;:::i;:::-;9576:2;9561:18;;9554:34;;;;-1:-1:-1;9619:3:1;9604:19;9597:35;9475:70;9322:316;-1:-1:-1;;;;9322:316:1:o;10205:1448::-;10657:3;10670:22;;;10642:19;;10727:22;;;10609:4;10807:6;10780:3;10765:19;;10609:4;10844:235;10858:6;10855:1;10852:13;10844:235;;;-1:-1:-1;;;;;10923:26:1;10942:6;10923:26;:::i;:::-;10919:52;10907:65;;10995:4;11054:15;;;;11019:12;;;;10880:1;10873:9;10844:235;;;-1:-1:-1;11117:19:1;;;11110:4;11095:20;;11088:49;11146:19;;;-1:-1:-1;;;;;11177:31:1;;11174:2;;;11224:4;11218;11211:18;11174:2;11261:6;11258:1;11254:14;11240:28;;11314:6;11306;11299:4;11294:3;11290:14;11277:44;11340:16;11383:4;11375:13;;;11397:16;;;11453:18;;;11449:29;;;11444:2;11429:18;;11422:57;11496:64;11375:13;11549:6;11541;11496:64;:::i;:::-;11591:2;11576:18;;11569:34;;;;-1:-1:-1;;;11634:3:1;11619:19;11612:35;11488:72;10618:1035;-1:-1:-1;;;;;;10618:1035:1:o;12032:383::-;12181:2;12170:9;12163:21;12144:4;12213:6;12207:13;12256:6;12251:2;12240:9;12236:18;12229:34;12272:66;12331:6;12326:2;12315:9;12311:18;12306:2;12298:6;12294:15;12272:66;:::i;:::-;12399:2;12378:15;-1:-1:-1;;12374:29:1;12359:45;;;;12406:2;12355:54;;12153:262;-1:-1:-1;;12153:262:1:o;13188:399::-;13390:2;13372:21;;;13429:2;13409:18;;;13402:30;13468:34;13463:2;13448:18;;13441:62;-1:-1:-1;;;13534:2:1;13519:18;;13512:33;13577:3;13562:19;;13362:225::o;14415:406::-;14617:2;14599:21;;;14656:2;14636:18;;;14629:30;14695:34;14690:2;14675:18;;14668:62;-1:-1:-1;;;14761:2:1;14746:18;;14739:40;14811:3;14796:19;;14589:232::o;16927:533::-;17004:4;17010:6;17070:11;17057:25;17164:2;17160:7;17149:8;17133:14;17129:29;17125:43;17105:18;17101:68;17091:2;;17186:4;17180;17173:18;17091:2;17216:33;;17268:20;;;-1:-1:-1;17311:18:1;17300:30;;17297:2;;;17346:4;17340;17333:18;17297:2;17382:4;17370:17;;-1:-1:-1;17413:14:1;17409:27;;;17399:38;;17396:2;;;17450:1;17447;17440:12;17465:128;17505:3;17536:1;17532:6;17529:1;17526:13;17523:2;;;17542:18;;:::i;:::-;-1:-1:-1;17578:9:1;;17513:80::o;17598:168::-;17638:7;17704:1;17700;17696:6;17692:14;17689:1;17686:21;17681:1;17674:9;17667:17;17663:45;17660:2;;;17711:18;;:::i;:::-;-1:-1:-1;17751:9:1;;17650:116::o;17771:258::-;17843:1;17853:113;17867:6;17864:1;17861:13;17853:113;;;17943:11;;;17937:18;17924:11;;;17917:39;17889:2;17882:10;17853:113;;;17984:6;17981:1;17978:13;17975:2;;;18019:1;18010:6;18005:3;18001:16;17994:27;17975:2;;17824:205;;;:::o;18034:136::-;18073:3;18101:5;18091:2;;18110:18;;:::i;:::-;-1:-1:-1;;;18146:18:1;;18081:89::o;18175:135::-;18214:3;-1:-1:-1;;18235:17:1;;18232:2;;;18255:18;;:::i;:::-;-1:-1:-1;18302:1:1;18291:13;;18222:88::o;18315:127::-;18376:10;18371:3;18367:20;18364:1;18357:31;18407:4;18404:1;18397:15;18431:4;18428:1;18421:15
Swarm Source
ipfs://f0e204c543aeefb0dac9b6723557a9d442c241a5535b5400f2024f26598c2be2
Age | Block | Fee Address | BC Fee Address | Voting Power | Jailed | Incoming |
---|
Make sure to use the "Vote Down" button for any spammy posts, and the "Vote Up" for interesting conversations.