Contract Overview
Balance:
0 AVAX
AVAX Value:
$0.00
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 snowtrace.io on 2021-11-08 */ // 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
60806040523480156200001157600080fd5b5060405162003574380380620035748339818101604052810190620000379190620005c1565b620000697f5f58e3a2316349923ce3780f8d587db2d72378aed66a8261c916544fa6846ca580620002f660201b60201c565b620000bb7fb09aa5aeb3702cfd50b6b62bc4532604938f21248a27a1d5ca736082b6819cc17f5f58e3a2316349923ce3780f8d587db2d72378aed66a8261c916544fa6846ca5620002f660201b60201c565b6200010d7fd8aa0f3194971a2a116679f7c2090f6939c8d4e01a2a8d7e41d55e5351469e637f5f58e3a2316349923ce3780f8d587db2d72378aed66a8261c916544fa6846ca5620002f660201b60201c565b6200014e7f5f58e3a2316349923ce3780f8d587db2d72378aed66a8261c916544fa6846ca5620001426200035960201b60201c565b6200036160201b60201c565b620001807f5f58e3a2316349923ce3780f8d587db2d72378aed66a8261c916544fa6846ca5306200036160201b60201c565b60005b82518110156200021457620002007fb09aa5aeb3702cfd50b6b62bc4532604938f21248a27a1d5ca736082b6819cc1848381518110620001ec577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101516200036160201b60201c565b806200020c9062000778565b905062000183565b5060005b8151811015620002a957620002957fd8aa0f3194971a2a116679f7c2090f6939c8d4e01a2a8d7e41d55e5351469e6383838151811062000281577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101516200036160201b60201c565b80620002a19062000778565b905062000218565b50826002819055507f11c24f4ead16507c69ac467fbd5e4eed5fb5c699626d2cc6d66421df253886d5600084604051620002e59291906200066b565b60405180910390a150505062000869565b600062000309836200037760201b60201c565b905081600080858152602001908152602001600020600101819055508181847fbd79b86ffe0ab8e8776151514217cd7cacd52c909f66475c3af44e129f0b00ff60405160405180910390a4505050565b600033905090565b6200037382826200039660201b60201c565b5050565b6000806000838152602001908152602001600020600101549050919050565b620003a882826200048760201b60201c565b6200048357600160008084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550620004286200035960201b60201c565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b600080600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6000620005086200050284620006c1565b62000698565b905080838252602082019050828560208602820111156200052857600080fd5b60005b858110156200055c578162000541888262000566565b8452602084019350602083019250506001810190506200052b565b5050509392505050565b600081519050620005778162000835565b92915050565b600082601f8301126200058f57600080fd5b8151620005a1848260208601620004f1565b91505092915050565b600081519050620005bb816200084f565b92915050565b600080600060608486031215620005d757600080fd5b6000620005e786828701620005aa565b935050602084015167ffffffffffffffff8111156200060557600080fd5b62000613868287016200057d565b925050604084015167ffffffffffffffff8111156200063157600080fd5b6200063f868287016200057d565b9150509250925092565b62000654816200072e565b82525050565b620006658162000724565b82525050565b600060408201905062000682600083018562000649565b6200069160208301846200065a565b9392505050565b6000620006a4620006b7565b9050620006b2828262000742565b919050565b6000604051905090565b600067ffffffffffffffff821115620006df57620006de620007f5565b5b602082029050602081019050919050565b6000620006fd8262000704565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b60006200073b8262000724565b9050919050565b6200074d8262000824565b810181811067ffffffffffffffff821117156200076f576200076e620007f5565b5b80604052505050565b6000620007858262000724565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415620007bb57620007ba620007c6565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b6200084081620006f0565b81146200084c57600080fd5b50565b6200085a8162000724565b81146200086657600080fd5b50565b612cfb80620008796000396000f3fe60806040526004361061014f5760003560e01c806364d62353116100b6578063b1c5f4271161006f578063b1c5f427146104d8578063c4d252f514610515578063d45c44351461053e578063d547741f1461057b578063e38335e5146105a4578063f27a0c92146105c057610156565b806364d62353146103b65780638065657f146103df5780638f2a0bb01461041c5780638f61f4f51461044557806391d1485414610470578063a217fddf146104ad57610156565b8063248a9ca311610108578063248a9ca3146102705780632ab0f529146102ad5780632f2ff15d146102ea57806331d507501461031357806336568abe14610350578063584b153e1461037957610156565b806301d5062a1461015b57806301ffc9a71461018457806307bd0265146101c15780630d3cf6fc146101ec578063134008d31461021757806313bc9f201461023357610156565b3661015657005b600080fd5b34801561016757600080fd5b50610182600480360381019061017d9190611abb565b6105eb565b005b34801561019057600080fd5b506101ab60048036038101906101a69190611d72565b610688565b6040516101b891906123ae565b60405180910390f35b3480156101cd57600080fd5b506101d6610702565b6040516101e391906123c9565b60405180910390f35b3480156101f857600080fd5b50610201610726565b60405161020e91906123c9565b60405180910390f35b610231600480360381019061022c9190611a29565b61074a565b005b34801561023f57600080fd5b5061025a60048036038101906102559190611d0d565b6107ca565b60405161026791906123ae565b60405180910390f35b34801561027c57600080fd5b5061029760048036038101906102929190611d0d565b6107f0565b6040516102a491906123c9565b60405180910390f35b3480156102b957600080fd5b506102d460048036038101906102cf9190611d0d565b61080f565b6040516102e191906123ae565b60405180910390f35b3480156102f657600080fd5b50610311600480360381019061030c9190611d36565b610824565b005b34801561031f57600080fd5b5061033a60048036038101906103359190611d0d565b61084d565b60405161034791906123ae565b60405180910390f35b34801561035c57600080fd5b5061037760048036038101906103729190611d36565b610861565b005b34801561038557600080fd5b506103a0600480360381019061039b9190611d0d565b6108e4565b6040516103ad91906123ae565b60405180910390f35b3480156103c257600080fd5b506103dd60048036038101906103d89190611d9b565b6108f9565b005b3480156103eb57600080fd5b5061040660048036038101906104019190611a29565b6109ac565b60405161041391906123c9565b60405180910390f35b34801561042857600080fd5b50610443600480360381019061043e9190611c2e565b6109eb565b005b34801561045157600080fd5b5061045a610c10565b60405161046791906123c9565b60405180910390f35b34801561047c57600080fd5b5061049760048036038101906104929190611d36565b610c34565b6040516104a491906123ae565b60405180910390f35b3480156104b957600080fd5b506104c2610c9e565b6040516104cf91906123c9565b60405180910390f35b3480156104e457600080fd5b506104ff60048036038101906104fa9190611b62565b610ca5565b60405161050c91906123c9565b60405180910390f35b34801561052157600080fd5b5061053c60048036038101906105379190611d0d565b610cea565b005b34801561054a57600080fd5b5061056560048036038101906105609190611d0d565b610dac565b6040516105729190612546565b60405180910390f35b34801561058757600080fd5b506105a2600480360381019061059d9190611d36565b610dc9565b005b6105be60048036038101906105b99190611b62565b610df2565b005b3480156105cc57600080fd5b506105d5610ffa565b6040516105e29190612546565b60405180910390f35b7fb09aa5aeb3702cfd50b6b62bc4532604938f21248a27a1d5ca736082b6819cc161061d81610618611004565b61100c565b600061062d8989898989896109ac565b905061063981846110a9565b6000817f4cf4410cc57040e44862ef0f45f3dd5a5e02db8eb8add648d4b0e236f1d07dca8b8b8b8b8b8a604051610675969594939291906122e4565b60405180910390a3505050505050505050565b60007f7965db0b000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806106fb57506106fa82611163565b5b9050919050565b7fd8aa0f3194971a2a116679f7c2090f6939c8d4e01a2a8d7e41d55e5351469e6381565b7f5f58e3a2316349923ce3780f8d587db2d72378aed66a8261c916544fa6846ca581565b7fd8aa0f3194971a2a116679f7c2090f6939c8d4e01a2a8d7e41d55e5351469e63610776816000610c34565b61078c5761078b81610786611004565b61100c565b5b600061079c8888888888886109ac565b90506107a881856111cd565b6107b78160008a8a8a8a61126e565b6107c081611366565b5050505050505050565b6000806107d683610dac565b90506001811180156107e85750428111155b915050919050565b6000806000838152602001908152602001600020600101549050919050565b6000600161081c83610dac565b149050919050565b61082d826107f0565b61083e81610839611004565b61100c565b61084883836113c9565b505050565b60008061085983610dac565b119050919050565b610869611004565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146108d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108cd90612506565b60405180910390fd5b6108e082826114a9565b5050565b600060016108f183610dac565b119050919050565b3073ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610967576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161095e906124e6565b60405180910390fd5b7f11c24f4ead16507c69ac467fbd5e4eed5fb5c699626d2cc6d66421df253886d56002548260405161099a929190612561565b60405180910390a18060028190555050565b60008686868686866040516020016109c996959493929190612288565b6040516020818303038152906040528051906020012090509695505050505050565b7fb09aa5aeb3702cfd50b6b62bc4532604938f21248a27a1d5ca736082b6819cc1610a1d81610a18611004565b61100c565b878790508a8a905014610a65576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a5c90612446565b60405180910390fd5b858590508a8a905014610aad576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aa490612446565b60405180910390fd5b6000610abf8b8b8b8b8b8b8b8b610ca5565b9050610acb81846110a9565b60005b8b8b9050811015610c025780827f4cf4410cc57040e44862ef0f45f3dd5a5e02db8eb8add648d4b0e236f1d07dca8e8e85818110610b35577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9050602002016020810190610b4a9190611a00565b8d8d86818110610b83577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b905060200201358c8c87818110610bc3577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9050602002810190610bd5919061258a565b8c8b604051610be9969594939291906122e4565b60405180910390a380610bfb9061289e565b9050610ace565b505050505050505050505050565b7fb09aa5aeb3702cfd50b6b62bc4532604938f21248a27a1d5ca736082b6819cc181565b600080600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6000801b81565b60008888888888888888604051602001610cc6989796959493929190612340565b60405160208183030381529060405280519060200120905098975050505050505050565b7fb09aa5aeb3702cfd50b6b62bc4532604938f21248a27a1d5ca736082b6819cc1610d1c81610d17611004565b61100c565b610d25826108e4565b610d64576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d5b906124c6565b60405180910390fd5b6001600083815260200190815260200160002060009055817fbaa1eb22f2a492ba1a5fea61b8df4d27c6c8b5f3971e63bb58fa14ff72eedb7060405160405180910390a25050565b600060016000838152602001908152602001600020549050919050565b610dd2826107f0565b610de381610dde611004565b61100c565b610ded83836114a9565b505050565b7fd8aa0f3194971a2a116679f7c2090f6939c8d4e01a2a8d7e41d55e5351469e63610e1e816000610c34565b610e3457610e3381610e2e611004565b61100c565b5b868690508989905014610e7c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e7390612446565b60405180910390fd5b848490508989905014610ec4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ebb90612446565b60405180910390fd5b6000610ed68a8a8a8a8a8a8a8a610ca5565b9050610ee281856111cd565b60005b8a8a9050811015610fe457610fd382828d8d85818110610f2e577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9050602002016020810190610f439190611a00565b8c8c86818110610f7c577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b905060200201358b8b87818110610fbc577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9050602002810190610fce919061258a565b61126e565b80610fdd9061289e565b9050610ee5565b50610fee81611366565b50505050505050505050565b6000600254905090565b600033905090565b6110168282610c34565b6110a55761103b8173ffffffffffffffffffffffffffffffffffffffff16601461158a565b6110498360001c602061158a565b60405160200161105a92919061220e565b6040516020818303038152906040526040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161109c91906123e4565b60405180910390fd5b5050565b6110b28261084d565b156110f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110e990612486565b60405180910390fd5b6110fa610ffa565b81101561113c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161113390612466565b60405180910390fd5b80426111489190612704565b60016000848152602001908152602001600020819055505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6111d6826107ca565b611215576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161120c906124a6565b60405180910390fd5b6000801b81148061122b575061122a8161080f565b5b61126a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161126190612426565b60405180910390fd5b5050565b60008473ffffffffffffffffffffffffffffffffffffffff168484846040516112989291906121f5565b60006040518083038185875af1925050503d80600081146112d5576040519150601f19603f3d011682016040523d82523d6000602084013e6112da565b606091505b505090508061131e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161131590612526565b60405180910390fd5b85877fc2617efa69bab66782fa219543714338489c4e9e178271560a91b82c3f612b58878787876040516113559493929190612248565b60405180910390a350505050505050565b61136f816107ca565b6113ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113a5906124a6565b60405180910390fd5b60018060008381526020019081526020016000208190555050565b6113d38282610c34565b6114a557600160008084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555061144a611004565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b6114b38282610c34565b1561158657600080600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555061152b611004565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b60405160405180910390a45b5050565b60606000600283600261159d919061275a565b6115a79190612704565b67ffffffffffffffff8111156115e6577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156116185781602001600182028036833780820191505090505b5090507f300000000000000000000000000000000000000000000000000000000000000081600081518110611676577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053507f780000000000000000000000000000000000000000000000000000000000000081600181518110611700577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a90535060006001846002611740919061275a565b61174a9190612704565b90505b6001811115611836577f3031323334353637383961626364656600000000000000000000000000000000600f8616601081106117b2577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b1a60f81b8282815181106117ef577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600485901c94508061182f90612874565b905061174d565b506000841461187a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161187190612406565b60405180910390fd5b8091505092915050565b60008135905061189381612c69565b92915050565b60008083601f8401126118ab57600080fd5b8235905067ffffffffffffffff8111156118c457600080fd5b6020830191508360208202830111156118dc57600080fd5b9250929050565b60008083601f8401126118f557600080fd5b8235905067ffffffffffffffff81111561190e57600080fd5b60208301915083602082028301111561192657600080fd5b9250929050565b60008083601f84011261193f57600080fd5b8235905067ffffffffffffffff81111561195857600080fd5b60208301915083602082028301111561197057600080fd5b9250929050565b60008135905061198681612c80565b92915050565b60008135905061199b81612c97565b92915050565b60008083601f8401126119b357600080fd5b8235905067ffffffffffffffff8111156119cc57600080fd5b6020830191508360018202830111156119e457600080fd5b9250929050565b6000813590506119fa81612cae565b92915050565b600060208284031215611a1257600080fd5b6000611a2084828501611884565b91505092915050565b60008060008060008060a08789031215611a4257600080fd5b6000611a5089828a01611884565b9650506020611a6189828a016119eb565b955050604087013567ffffffffffffffff811115611a7e57600080fd5b611a8a89828a016119a1565b94509450506060611a9d89828a01611977565b9250506080611aae89828a01611977565b9150509295509295509295565b600080600080600080600060c0888a031215611ad657600080fd5b6000611ae48a828b01611884565b9750506020611af58a828b016119eb565b965050604088013567ffffffffffffffff811115611b1257600080fd5b611b1e8a828b016119a1565b95509550506060611b318a828b01611977565b9350506080611b428a828b01611977565b92505060a0611b538a828b016119eb565b91505092959891949750929550565b60008060008060008060008060a0898b031215611b7e57600080fd5b600089013567ffffffffffffffff811115611b9857600080fd5b611ba48b828c01611899565b9850985050602089013567ffffffffffffffff811115611bc357600080fd5b611bcf8b828c0161192d565b9650965050604089013567ffffffffffffffff811115611bee57600080fd5b611bfa8b828c016118e3565b94509450506060611c0d8b828c01611977565b9250506080611c1e8b828c01611977565b9150509295985092959890939650565b600080600080600080600080600060c08a8c031215611c4c57600080fd5b60008a013567ffffffffffffffff811115611c6657600080fd5b611c728c828d01611899565b995099505060208a013567ffffffffffffffff811115611c9157600080fd5b611c9d8c828d0161192d565b975097505060408a013567ffffffffffffffff811115611cbc57600080fd5b611cc88c828d016118e3565b95509550506060611cdb8c828d01611977565b9350506080611cec8c828d01611977565b92505060a0611cfd8c828d016119eb565b9150509295985092959850929598565b600060208284031215611d1f57600080fd5b6000611d2d84828501611977565b91505092915050565b60008060408385031215611d4957600080fd5b6000611d5785828601611977565b9250506020611d6885828601611884565b9150509250929050565b600060208284031215611d8457600080fd5b6000611d928482850161198c565b91505092915050565b600060208284031215611dad57600080fd5b6000611dbb848285016119eb565b91505092915050565b6000611dd08383611df2565b60208301905092915050565b6000611de9848484611f59565b90509392505050565b611dfb816127b4565b82525050565b611e0a816127b4565b82525050565b6000611e1c838561261a565b9350611e27826125e1565b8060005b85811015611e6057611e3d8284612696565b611e478882611dc4565b9750611e5283612600565b925050600181019050611e2b565b5085925050509392505050565b6000611e79838561262b565b935083602084028501611e8b846125eb565b8060005b87811015611ed1578484038952611ea682846126ad565b611eb1868284611ddc565b9550611ebc8461260d565b935060208b019a505050600181019050611e8f565b50829750879450505050509392505050565b6000611eef838561263c565b93507f07ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff831115611f1e57600080fd5b602083029250611f2f838584612832565b82840190509392505050565b611f44816127c6565b82525050565b611f53816127d2565b82525050565b6000611f65838561264d565b9350611f72838584612832565b611f7b83612916565b840190509392505050565b6000611f92838561265e565b9350611f9f838584612832565b611fa883612916565b840190509392505050565b6000611fbf838561266f565b9350611fcc838584612832565b82840190509392505050565b6000611fe3826125f5565b611fed818561267a565b9350611ffd818560208601612841565b61200681612916565b840191505092915050565b600061201c826125f5565b612026818561268b565b9350612036818560208601612841565b80840191505092915050565b600061204f60208361267a565b915061205a82612927565b602082019050919050565b600061207260268361267a565b915061207d82612950565b604082019050919050565b600061209560238361267a565b91506120a08261299f565b604082019050919050565b60006120b860268361267a565b91506120c3826129ee565b604082019050919050565b60006120db602f8361267a565b91506120e682612a3d565b604082019050919050565b60006120fe602a8361267a565b915061210982612a8c565b604082019050919050565b600061212160178361268b565b915061212c82612adb565b601782019050919050565b600061214460318361267a565b915061214f82612b04565b604082019050919050565b600061216760118361268b565b915061217282612b53565b601182019050919050565b600061218a602b8361267a565b915061219582612b7c565b604082019050919050565b60006121ad602f8361267a565b91506121b882612bcb565b604082019050919050565b60006121d060338361267a565b91506121db82612c1a565b604082019050919050565b6121ef81612828565b82525050565b6000612202828486611fb3565b91508190509392505050565b600061221982612114565b91506122258285612011565b91506122308261215a565b915061223c8284612011565b91508190509392505050565b600060608201905061225d6000830187611e01565b61226a60208301866121e6565b818103604083015261227d818486611f86565b905095945050505050565b600060a08201905061229d6000830189611e01565b6122aa60208301886121e6565b81810360408301526122bd818688611f86565b90506122cc6060830185611f4a565b6122d96080830184611f4a565b979650505050505050565b600060a0820190506122f96000830189611e01565b61230660208301886121e6565b8181036040830152612319818688611f86565b90506123286060830185611f4a565b61233560808301846121e6565b979650505050505050565b600060a082019050818103600083015261235b818a8c611e10565b9050818103602083015261237081888a611ee3565b90508181036040830152612385818688611e6d565b90506123946060830185611f4a565b6123a16080830184611f4a565b9998505050505050505050565b60006020820190506123c36000830184611f3b565b92915050565b60006020820190506123de6000830184611f4a565b92915050565b600060208201905081810360008301526123fe8184611fd8565b905092915050565b6000602082019050818103600083015261241f81612042565b9050919050565b6000602082019050818103600083015261243f81612065565b9050919050565b6000602082019050818103600083015261245f81612088565b9050919050565b6000602082019050818103600083015261247f816120ab565b9050919050565b6000602082019050818103600083015261249f816120ce565b9050919050565b600060208201905081810360008301526124bf816120f1565b9050919050565b600060208201905081810360008301526124df81612137565b9050919050565b600060208201905081810360008301526124ff8161217d565b9050919050565b6000602082019050818103600083015261251f816121a0565b9050919050565b6000602082019050818103600083015261253f816121c3565b9050919050565b600060208201905061255b60008301846121e6565b92915050565b600060408201905061257660008301856121e6565b61258360208301846121e6565b9392505050565b600080833560016020038436030381126125a357600080fd5b80840192508235915067ffffffffffffffff8211156125c157600080fd5b6020830192506001820236038313156125d957600080fd5b509250929050565b6000819050919050565b6000819050919050565b600081519050919050565b6000602082019050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b60006126a56020840184611884565b905092915050565b600080833560016020038436030381126126c657600080fd5b83810192508235915060208301925067ffffffffffffffff8211156126ea57600080fd5b6001820236038413156126fc57600080fd5b509250929050565b600061270f82612828565b915061271a83612828565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561274f5761274e6128e7565b5b828201905092915050565b600061276582612828565b915061277083612828565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156127a9576127a86128e7565b5b828202905092915050565b60006127bf82612808565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561285f578082015181840152602081019050612844565b8381111561286e576000848401525b50505050565b600061287f82612828565b91506000821415612893576128926128e7565b5b600182039050919050565b60006128a982612828565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156128dc576128db6128e7565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000601f19601f8301169050919050565b7f537472696e67733a20686578206c656e67746820696e73756666696369656e74600082015250565b7f54696d656c6f636b436f6e74726f6c6c65723a206d697373696e67206465706560008201527f6e64656e63790000000000000000000000000000000000000000000000000000602082015250565b7f54696d656c6f636b436f6e74726f6c6c65723a206c656e677468206d69736d6160008201527f7463680000000000000000000000000000000000000000000000000000000000602082015250565b7f54696d656c6f636b436f6e74726f6c6c65723a20696e73756666696369656e7460008201527f2064656c61790000000000000000000000000000000000000000000000000000602082015250565b7f54696d656c6f636b436f6e74726f6c6c65723a206f7065726174696f6e20616c60008201527f7265616479207363686564756c65640000000000000000000000000000000000602082015250565b7f54696d656c6f636b436f6e74726f6c6c65723a206f7065726174696f6e20697360008201527f206e6f7420726561647900000000000000000000000000000000000000000000602082015250565b7f416363657373436f6e74726f6c3a206163636f756e7420000000000000000000600082015250565b7f54696d656c6f636b436f6e74726f6c6c65723a206f7065726174696f6e20636160008201527f6e6e6f742062652063616e63656c6c6564000000000000000000000000000000602082015250565b7f206973206d697373696e6720726f6c6520000000000000000000000000000000600082015250565b7f54696d656c6f636b436f6e74726f6c6c65723a2063616c6c6572206d7573742060008201527f62652074696d656c6f636b000000000000000000000000000000000000000000602082015250565b7f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560008201527f20726f6c657320666f722073656c660000000000000000000000000000000000602082015250565b7f54696d656c6f636b436f6e74726f6c6c65723a20756e6465726c79696e67207460008201527f72616e73616374696f6e20726576657274656400000000000000000000000000602082015250565b612c72816127b4565b8114612c7d57600080fd5b50565b612c89816127d2565b8114612c9457600080fd5b50565b612ca0816127dc565b8114612cab57600080fd5b50565b612cb781612828565b8114612cc257600080fd5b5056fea264697066735822122087dd9dd42dce2feccf540e9d5bddc622f69671666f2c8f85772c77873abc2eb764736f6c634300080400330000000000000000000000000000000000000000000000000000000000005460000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000010000000000000000000000003eb7fb70c03ec4aeec97c6c6c1b59b014600b7f700000000000000000000000000000000000000000000000000000000000000020000000000000000000000003eb7fb70c03ec4aeec97c6c6c1b59b014600b7f700000000000000000000000010aee6b5594942433e7fc2783598c979b030ef3d
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;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;10247:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15921:66;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15763:78;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23578:406;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;19072:211;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11658:123;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19367:138;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12043:147;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;18635:122;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13091:218;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;18844:143;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26484:240;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;20198:292;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21848:717;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;15848:66;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10543:139;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9634:49;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20612:327;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23107:234;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;19658:123;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12435:149;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;24255:710;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;19974:105;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21170:413;15888:26;10125:30;10136:4;10142:12;:10;:12::i;:::-;10125:10;: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;10371:32;10356:47;;;:11;:47;;;;:87;;;;10407:36;10431:11;10407:23;:36::i;:::-;10356:87;10349:94;;10247:204;;;:::o;15921:66::-;15961:26;15921:66;:::o;15763:78::-;15809:32;15763:78;:::o;23578:406::-;15961:26;18234:25;18242:4;18256:1;18234:7;:25::i;:::-;18229:89;;18276:30;18287:4;18293:12;:10;:12::i;:::-;18276:10;:30::i;:::-;18229:89;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;19162:17;19182:16;19195:2;19182:12;:16::i;:::-;19162:36;;16046:1;19216:9;:27;:59;;;;;19260:15;19247:9;:28;;19216:59;19209:66;;;19072:211;;;:::o;11658:123::-;11724:7;11751:6;:12;11758:4;11751:12;;;;;;;;;;;:22;;;11744:29;;11658:123;;;:::o;19367:138::-;19433:9;16046:1;19462:16;19475:2;19462:12;:16::i;:::-;:35;19455:42;;19367:138;;;:::o;12043:147::-;12126:18;12139:4;12126:12;:18::i;:::-;10125:30;10136:4;10142:12;:10;:12::i;:::-;10125:10;:30::i;:::-;12157:25:::1;12168:4;12174:7;12157:10;:25::i;:::-;12043:147:::0;;;:::o;18635:122::-;18697:12;18748:1;18729:16;18742:2;18729:12;:16::i;:::-;:20;18722:27;;18635:122;;;:::o;13091:218::-;13198:12;:10;:12::i;:::-;13187:23;;:7;:23;;;13179:83;;;;;;;;;;;;:::i;:::-;;;;;;;;;13275:26;13287:4;13293:7;13275:11;:26::i;:::-;13091:218;;:::o;18844:143::-;18913:12;16046:1;18945:16;18958:2;18945:12;:16::i;:::-;:34;18938:41;;18844:143;;;:::o;26484:240::-;26581:4;26559:27;;:10;:27;;;26551:83;;;;;;;;;;;;:::i;:::-;;;;;;;;;26650:35;26665:9;;26676:8;26650:35;;;;;;;:::i;:::-;;;;;;;;26708:8;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::-;15888:26;10125:30;10136:4;10142:12;:10;:12::i;:::-;10125:10;:30::i;:::-;22137:6:::1;;:13;;22119:7;;:14;;:31;22111:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;22227:5;;:12;;22209:7;;:14;;:30;22201:78;;;;;;;;;;;;:::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;22432:7;;:14;;22428:1;:18;22408:150;;;22491:1;22487:2;22473:73;22494:7;;22502:1;22494:10;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;22506:6;;22513:1;22506:9;;;;;;;;;;;;;;;;;;;;;22517:5;;22523:1;22517:8;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;22527:11;22540:5;22473:73;;;;;;;;;;;:::i;:::-;;;;;;;;22448:3;;;;:::i;:::-;;;22408:150;;;;10166:1;21848:717:::0;;;;;;;;;;:::o;15848:66::-;15888:26;15848:66;:::o;10543:139::-;10621:4;10645:6;:12;10652:4;10645:12;;;;;;;;;;;:20;;:29;10666:7;10645:29;;;;;;;;;;;;;;;;;;;;;;;;;10638:36;;10543:139;;;;:::o;9634:49::-;9679:4;9634:49;;;:::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::-;15888:26;10125:30;10136:4;10142:12;:10;:12::i;:::-;10125:10;:30::i;:::-;23193:22:::1;23212:2;23193:18;:22::i;:::-;23185:84;;;;;;;;;;;;:::i;:::-;;;;;;;;;23287:11;:15;23299:2;23287:15;;;;;;;;;;;23280:22;;;23330:2;23320:13;;;;;;;;;;23107:234:::0;;:::o;19658:123::-;19721:17;19758:11;:15;19770:2;19758:15;;;;;;;;;;;;19751:22;;19658:123;;;:::o;12435:149::-;12519:18;12532:4;12519:12;:18::i;:::-;10125:30;10136:4;10142:12;:10;:12::i;:::-;10125:10;:30::i;:::-;12550:26:::1;12562:4;12568:7;12550:11;:26::i;:::-;12435:149:::0;;;:::o;24255:710::-;15961:26;18234:25;18242:4;18256:1;18234:7;:25::i;:::-;18229:89;;18276:30;18287:4;18293:12;:10;:12::i;:::-;18276:10;:30::i;:::-;18229:89;24537:6:::1;;:13;;24519:7;;:14;;:31;24511:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;24627:5;;:12;;24609:7;;:14;;:30;24601:78;;;;;;;;;;;;:::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;24840:7;;:14;;24836:1;:18;24816:117;;;24876:45;24882:2;24886:1;24889:7;;24897:1;24889:10;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;24901:6;;24908:1;24901:9;;;;;;;;;;;;;;;;;;;;;24912:5;;24918:1;24912:8;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;24876:5;:45::i;:::-;24856:3;;;;:::i;:::-;;;24816:117;;;;24943:14;24954:2;24943:10;:14::i;:::-;18328:1;24255:710:::0;;;;;;;;;:::o;19974:105::-;20026:16;20062:9;;20055:16;;19974:105;:::o;3637:98::-;3690:7;3717:10;3710:17;;3637:98;:::o;10972:497::-;11053:22;11061:4;11067:7;11053;:22::i;:::-;11048:414;;11241:41;11269:7;11241:41;;11279:2;11241:19;:41::i;:::-;11355:38;11383:4;11375:13;;11390:2;11355:19;:38::i;:::-;11146:270;;;;;;;;;:::i;:::-;;;;;;;;;;;;;11092:358;;;;;;;;;;;:::i;:::-;;;;;;;;11048:414;10972:497;;:::o;22672:285::-;22746:15;22758:2;22746:11;:15::i;:::-;22745:16;22737:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;22841:13;:11;:13::i;:::-;22832:5;:22;;22824:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;22944:5;22926:15;:23;;;;:::i;:::-;22908:11;:15;22920:2;22908:15;;;;;;;;;;;:41;;;;22672:285;;:::o;7568:157::-;7653:4;7692:25;7677:40;;;:11;:40;;;;7670:47;;7568:157;;;:::o;25053:280::-;25139:20;25156:2;25139:16;:20::i;:::-;25131:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;25248:1;25240:10;;25225:11;:25;:57;;;;25254:28;25270:11;25254:15;:28::i;:::-;25225:57;25217:108;;;;;;;;;;;;:::i;:::-;;;;;;;;;25053:280;;:::o;25712:367::-;25878:12;25896:6;:11;;25915:5;25922:4;;25896:31;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25877:50;;;25946:7;25938:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;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;;;;;;;;;;;;:::i;:::-;;;;;;;;;16046:1;25557:11;:15;25569:2;25557:15;;;;;;;;;;;:33;;;;25420:178;:::o;14395:229::-;14470:22;14478:4;14484:7;14470;:22::i;:::-;14465:152;;14541:4;14509:6;:12;14516:4;14509:12;;;;;;;;;;;:20;;:29;14530:7;14509:29;;;;;;;;;;;;;;;;:36;;;;;;;;;;;;;;;;;;14592:12;:10;:12::i;:::-;14565:40;;14583:7;14565:40;;14577:4;14565:40;;;;;;;;;;14465:152;14395:229;;:::o;14632:230::-;14707:22;14715:4;14721:7;14707;:22::i;:::-;14703:152;;;14778:5;14746:6;:12;14753:4;14746:12;;;;;;;;;;;:20;;:29;14767:7;14746:29;;;;;;;;;;;;;;;;:37;;;;;;;;;;;;;;;;;;14830:12;:10;:12::i;:::-;14803:40;;14821:7;14803:40;;14815:4;14803:40;;;;;;;;;;14703:152;14632:230;;:::o;5463:451::-;5538:13;5564:19;5609:1;5600:6;5596:1;:10;;;;:::i;:::-;:14;;;;:::i;:::-;5586:25;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5564:47;;5622:15;:6;5629:1;5622:9;;;;;;;;;;;;;;;;;;;:15;;;;;;;;;;;5648;:6;5655:1;5648:9;;;;;;;;;;;;;;;;;;;:15;;;;;;;;;;;5679:9;5704:1;5695:6;5691:1;:10;;;;:::i;:::-;:14;;;;:::i;:::-;5679:26;;5674:135;5711:1;5707;:5;5674:135;;;5746:12;5767:3;5759:5;:11;5746:25;;;;;;;;;;;;;;;;;;5734:6;5741:1;5734:9;;;;;;;;;;;;;;;;;;;:37;;;;;;;;;;;5796:1;5786:11;;;;;5714:3;;;;:::i;:::-;;;5674:135;;;;5836:1;5827:5;:10;5819:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;5899:6;5885:21;;;5463:451;;;;:::o;7:139:1:-;53:5;91:6;78:20;69:29;;107:33;134:5;107:33;:::i;:::-;59:87;;;;:::o;169:367::-;242:8;252:6;302:3;295:4;287:6;283:17;279:27;269:2;;320:1;317;310:12;269:2;356:6;343:20;333:30;;386:18;378:6;375:30;372:2;;;418:1;415;408:12;372:2;455:4;447:6;443:17;431:29;;509:3;501:4;493:6;489:17;479:8;475:32;472:41;469:2;;;526:1;523;516:12;469:2;259:277;;;;;:::o;557:378::-;641:8;651:6;701:3;694:4;686:6;682:17;678:27;668:2;;719:1;716;709:12;668:2;755:6;742:20;732:30;;785:18;777:6;774:30;771:2;;;817:1;814;807:12;771:2;854:4;846:6;842:17;830:29;;908:3;900:4;892:6;888:17;878:8;874:32;871:41;868:2;;;925:1;922;915:12;868:2;658:277;;;;;:::o;958:367::-;1031:8;1041:6;1091:3;1084:4;1076:6;1072:17;1068:27;1058:2;;1109:1;1106;1099:12;1058:2;1145:6;1132:20;1122:30;;1175:18;1167:6;1164:30;1161:2;;;1207:1;1204;1197:12;1161:2;1244:4;1236:6;1232:17;1220:29;;1298:3;1290:4;1282:6;1278:17;1268:8;1264:32;1261:41;1258:2;;;1315:1;1312;1305:12;1258:2;1048:277;;;;;:::o;1331:139::-;1377:5;1415:6;1402:20;1393:29;;1431:33;1458:5;1431:33;:::i;:::-;1383:87;;;;:::o;1476:137::-;1521:5;1559:6;1546:20;1537:29;;1575:32;1601:5;1575:32;:::i;:::-;1527:86;;;;:::o;1632:351::-;1689:8;1699:6;1749:3;1742:4;1734:6;1730:17;1726:27;1716:2;;1767:1;1764;1757:12;1716:2;1803:6;1790:20;1780:30;;1833:18;1825:6;1822:30;1819:2;;;1865:1;1862;1855:12;1819:2;1902:4;1894:6;1890:17;1878:29;;1956:3;1948:4;1940:6;1936:17;1926:8;1922:32;1919:41;1916:2;;;1973:1;1970;1963:12;1916:2;1706:277;;;;;:::o;1989:139::-;2035:5;2073:6;2060:20;2051:29;;2089:33;2116:5;2089:33;:::i;:::-;2041:87;;;;:::o;2134:262::-;2193:6;2242:2;2230:9;2221:7;2217:23;2213:32;2210:2;;;2258:1;2255;2248:12;2210:2;2301:1;2326:53;2371:7;2362:6;2351:9;2347:22;2326:53;:::i;:::-;2316:63;;2272:117;2200:196;;;;:::o;2402:975::-;2508:6;2516;2524;2532;2540;2548;2597:3;2585:9;2576:7;2572:23;2568:33;2565:2;;;2614:1;2611;2604:12;2565:2;2657:1;2682:53;2727:7;2718:6;2707:9;2703:22;2682:53;:::i;:::-;2672:63;;2628:117;2784:2;2810:53;2855:7;2846:6;2835:9;2831:22;2810:53;:::i;:::-;2800:63;;2755:118;2940:2;2929:9;2925:18;2912:32;2971:18;2963:6;2960:30;2957:2;;;3003:1;3000;2993:12;2957:2;3039:64;3095:7;3086:6;3075:9;3071:22;3039:64;:::i;:::-;3021:82;;;;2883:230;3152:2;3178:53;3223:7;3214:6;3203:9;3199:22;3178:53;:::i;:::-;3168:63;;3123:118;3280:3;3307:53;3352:7;3343:6;3332:9;3328:22;3307:53;:::i;:::-;3297:63;;3251:119;2555:822;;;;;;;;:::o;3383:1121::-;3498:6;3506;3514;3522;3530;3538;3546;3595:3;3583:9;3574:7;3570:23;3566:33;3563:2;;;3612:1;3609;3602:12;3563:2;3655:1;3680:53;3725:7;3716:6;3705:9;3701:22;3680:53;:::i;:::-;3670:63;;3626:117;3782:2;3808:53;3853:7;3844:6;3833:9;3829:22;3808:53;:::i;:::-;3798:63;;3753:118;3938:2;3927:9;3923:18;3910:32;3969:18;3961:6;3958:30;3955:2;;;4001:1;3998;3991:12;3955:2;4037:64;4093:7;4084:6;4073:9;4069:22;4037:64;:::i;:::-;4019:82;;;;3881:230;4150:2;4176:53;4221:7;4212:6;4201:9;4197:22;4176:53;:::i;:::-;4166:63;;4121:118;4278:3;4305:53;4350:7;4341:6;4330:9;4326:22;4305:53;:::i;:::-;4295:63;;4249:119;4407:3;4434:53;4479:7;4470:6;4459:9;4455:22;4434:53;:::i;:::-;4424:63;;4378:119;3553:951;;;;;;;;;;:::o;4510:1355::-;4697:6;4705;4713;4721;4729;4737;4745;4753;4802:3;4790:9;4781:7;4777:23;4773:33;4770:2;;;4819:1;4816;4809:12;4770:2;4890:1;4879:9;4875:17;4862:31;4920:18;4912:6;4909:30;4906:2;;;4952:1;4949;4942:12;4906:2;4988:80;5060:7;5051:6;5040:9;5036:22;4988:80;:::i;:::-;4970:98;;;;4833:245;5145:2;5134:9;5130:18;5117:32;5176:18;5168:6;5165:30;5162:2;;;5208:1;5205;5198:12;5162:2;5244:80;5316:7;5307:6;5296:9;5292:22;5244:80;:::i;:::-;5226:98;;;;5088:246;5401:2;5390:9;5386:18;5373:32;5432:18;5424:6;5421:30;5418:2;;;5464:1;5461;5454:12;5418:2;5500:91;5583:7;5574:6;5563:9;5559:22;5500:91;:::i;:::-;5482:109;;;;5344:257;5640:2;5666:53;5711:7;5702:6;5691:9;5687:22;5666:53;:::i;:::-;5656:63;;5611:118;5768:3;5795:53;5840:7;5831:6;5820:9;5816:22;5795:53;:::i;:::-;5785:63;;5739:119;4760:1105;;;;;;;;;;;:::o;5871:1501::-;6067:6;6075;6083;6091;6099;6107;6115;6123;6131;6180:3;6168:9;6159:7;6155:23;6151:33;6148:2;;;6197:1;6194;6187:12;6148:2;6268:1;6257:9;6253:17;6240:31;6298:18;6290:6;6287:30;6284:2;;;6330:1;6327;6320:12;6284:2;6366:80;6438:7;6429:6;6418:9;6414:22;6366:80;:::i;:::-;6348:98;;;;6211:245;6523:2;6512:9;6508:18;6495:32;6554:18;6546:6;6543:30;6540:2;;;6586:1;6583;6576:12;6540:2;6622:80;6694:7;6685:6;6674:9;6670:22;6622:80;:::i;:::-;6604:98;;;;6466:246;6779:2;6768:9;6764:18;6751:32;6810:18;6802:6;6799:30;6796:2;;;6842:1;6839;6832:12;6796:2;6878:91;6961:7;6952:6;6941:9;6937:22;6878:91;:::i;:::-;6860:109;;;;6722:257;7018:2;7044:53;7089:7;7080:6;7069:9;7065:22;7044:53;:::i;:::-;7034:63;;6989:118;7146:3;7173:53;7218:7;7209:6;7198:9;7194:22;7173:53;:::i;:::-;7163:63;;7117:119;7275:3;7302:53;7347:7;7338:6;7327:9;7323:22;7302:53;:::i;:::-;7292:63;;7246:119;6138:1234;;;;;;;;;;;:::o;7378:262::-;7437:6;7486:2;7474:9;7465:7;7461:23;7457:32;7454:2;;;7502:1;7499;7492:12;7454:2;7545:1;7570:53;7615:7;7606:6;7595:9;7591:22;7570:53;:::i;:::-;7560:63;;7516:117;7444:196;;;;:::o;7646:407::-;7714:6;7722;7771:2;7759:9;7750:7;7746:23;7742:32;7739:2;;;7787:1;7784;7777:12;7739:2;7830:1;7855:53;7900:7;7891:6;7880:9;7876:22;7855:53;:::i;:::-;7845:63;;7801:117;7957:2;7983:53;8028:7;8019:6;8008:9;8004:22;7983:53;:::i;:::-;7973:63;;7928:118;7729:324;;;;;:::o;8059:260::-;8117:6;8166:2;8154:9;8145:7;8141:23;8137:32;8134:2;;;8182:1;8179;8172:12;8134:2;8225:1;8250:52;8294:7;8285:6;8274:9;8270:22;8250:52;:::i;:::-;8240:62;;8196:116;8124:195;;;;:::o;8325:262::-;8384:6;8433:2;8421:9;8412:7;8408:23;8404:32;8401:2;;;8449:1;8446;8439:12;8401:2;8492:1;8517:53;8562:7;8553:6;8542:9;8538:22;8517:53;:::i;:::-;8507:63;;8463:117;8391:196;;;;:::o;8593:179::-;8662:10;8683:46;8725:3;8717:6;8683:46;:::i;:::-;8761:4;8756:3;8752:14;8738:28;;8673:99;;;;:::o;8778:212::-;8875:10;8910:74;8980:3;8972:6;8964;8910:74;:::i;:::-;8896:88;;8886:104;;;;;:::o;8996:108::-;9073:24;9091:5;9073:24;:::i;:::-;9068:3;9061:37;9051:53;;:::o;9110:118::-;9197:24;9215:5;9197:24;:::i;:::-;9192:3;9185:37;9175:53;;:::o;9264:699::-;9393:3;9416:86;9495:6;9490:3;9416:86;:::i;:::-;9409:93;;9526:58;9578:5;9526:58;:::i;:::-;9607:7;9638:1;9623:315;9648:6;9645:1;9642:13;9623:315;;;9718:42;9753:6;9744:7;9718:42;:::i;:::-;9780:63;9839:3;9824:13;9780:63;:::i;:::-;9773:70;;9866:62;9921:6;9866:62;:::i;:::-;9856:72;;9683:255;9670:1;9667;9663:9;9658:14;;9623:315;;;9627:14;9954:3;9947:10;;9398:565;;;;;;;:::o;9995:990::-;10144:3;10167:95;10255:6;10250:3;10167:95;:::i;:::-;10160:102;;10288:3;10333:4;10325:6;10321:17;10316:3;10312:27;10363:69;10426:5;10363:69;:::i;:::-;10455:7;10486:1;10471:469;10496:6;10493:1;10490:13;10471:469;;;10567:9;10561:4;10557:20;10552:3;10545:33;10627:53;10673:6;10664:7;10627:53;:::i;:::-;10701:99;10795:4;10780:13;10765;10701:99;:::i;:::-;10693:107;;10823:73;10889:6;10823:73;:::i;:::-;10813:83;;10925:4;10920:3;10916:14;10909:21;;10531:409;;10518:1;10515;10511:9;10506:14;;10471:469;;;10475:14;10956:4;10949:11;;10976:3;10969:10;;10149:836;;;;;;;;;:::o;11021:470::-;11149:3;11170:86;11249:6;11244:3;11170:86;:::i;:::-;11163:93;;11280:66;11272:6;11269:78;11266:2;;;11360:1;11357;11350:12;11266:2;11395:4;11387:6;11383:17;11373:27;;11410:43;11446:6;11441:3;11434:5;11410:43;:::i;:::-;11478:6;11473:3;11469:16;11462:23;;11153:338;;;;;:::o;11497:109::-;11578:21;11593:5;11578:21;:::i;:::-;11573:3;11566:34;11556:50;;:::o;11612:118::-;11699:24;11717:5;11699:24;:::i;:::-;11694:3;11687:37;11677:53;;:::o;11758:281::-;11844:3;11865:60;11918:6;11913:3;11865:60;:::i;:::-;11858:67;;11935:43;11971:6;11966:3;11959:5;11935:43;:::i;:::-;12003:29;12025:6;12003:29;:::i;:::-;11998:3;11994:39;11987:46;;11848:191;;;;;:::o;12067:301::-;12163:3;12184:70;12247:6;12242:3;12184:70;:::i;:::-;12177:77;;12264:43;12300:6;12295:3;12288:5;12264:43;:::i;:::-;12332:29;12354:6;12332:29;:::i;:::-;12327:3;12323:39;12316:46;;12167:201;;;;;:::o;12396:314::-;12510:3;12531:88;12612:6;12607:3;12531:88;:::i;:::-;12524:95;;12629:43;12665:6;12660:3;12653:5;12629:43;:::i;:::-;12697:6;12692:3;12688:16;12681:23;;12514:196;;;;;:::o;12716:364::-;12804:3;12832:39;12865:5;12832:39;:::i;:::-;12887:71;12951:6;12946:3;12887:71;:::i;:::-;12880:78;;12967:52;13012:6;13007:3;13000:4;12993:5;12989:16;12967:52;:::i;:::-;13044:29;13066:6;13044:29;:::i;:::-;13039:3;13035:39;13028:46;;12808:272;;;;;:::o;13086:377::-;13192:3;13220:39;13253:5;13220:39;:::i;:::-;13275:89;13357:6;13352:3;13275:89;:::i;:::-;13268:96;;13373:52;13418:6;13413:3;13406:4;13399:5;13395:16;13373:52;:::i;:::-;13450:6;13445:3;13441:16;13434:23;;13196:267;;;;;:::o;13469:366::-;13611:3;13632:67;13696:2;13691:3;13632:67;:::i;:::-;13625:74;;13708:93;13797:3;13708:93;:::i;:::-;13826:2;13821:3;13817:12;13810:19;;13615:220;;;:::o;13841:366::-;13983:3;14004:67;14068:2;14063:3;14004:67;:::i;:::-;13997:74;;14080:93;14169:3;14080:93;:::i;:::-;14198:2;14193:3;14189:12;14182:19;;13987:220;;;:::o;14213:366::-;14355:3;14376:67;14440:2;14435:3;14376:67;:::i;:::-;14369:74;;14452:93;14541:3;14452:93;:::i;:::-;14570:2;14565:3;14561:12;14554:19;;14359:220;;;:::o;14585:366::-;14727:3;14748:67;14812:2;14807:3;14748:67;:::i;:::-;14741:74;;14824:93;14913:3;14824:93;:::i;:::-;14942:2;14937:3;14933:12;14926:19;;14731:220;;;:::o;14957:366::-;15099:3;15120:67;15184:2;15179:3;15120:67;:::i;:::-;15113:74;;15196:93;15285:3;15196:93;:::i;:::-;15314:2;15309:3;15305:12;15298:19;;15103:220;;;:::o;15329:366::-;15471:3;15492:67;15556:2;15551:3;15492:67;:::i;:::-;15485:74;;15568:93;15657:3;15568:93;:::i;:::-;15686:2;15681:3;15677:12;15670:19;;15475:220;;;:::o;15701:402::-;15861:3;15882:85;15964:2;15959:3;15882:85;:::i;:::-;15875:92;;15976:93;16065:3;15976:93;:::i;:::-;16094:2;16089:3;16085:12;16078:19;;15865:238;;;:::o;16109:366::-;16251:3;16272:67;16336:2;16331:3;16272:67;:::i;:::-;16265:74;;16348:93;16437:3;16348:93;:::i;:::-;16466:2;16461:3;16457:12;16450:19;;16255:220;;;:::o;16481:402::-;16641:3;16662:85;16744:2;16739:3;16662:85;:::i;:::-;16655:92;;16756:93;16845:3;16756:93;:::i;:::-;16874:2;16869:3;16865:12;16858:19;;16645:238;;;:::o;16889:366::-;17031:3;17052:67;17116:2;17111:3;17052:67;:::i;:::-;17045:74;;17128:93;17217:3;17128:93;:::i;:::-;17246:2;17241:3;17237:12;17230:19;;17035:220;;;:::o;17261:366::-;17403:3;17424:67;17488:2;17483:3;17424:67;:::i;:::-;17417:74;;17500:93;17589:3;17500:93;:::i;:::-;17618:2;17613:3;17609:12;17602:19;;17407:220;;;:::o;17633:366::-;17775:3;17796:67;17860:2;17855:3;17796:67;:::i;:::-;17789:74;;17872:93;17961:3;17872:93;:::i;:::-;17990:2;17985:3;17981:12;17974:19;;17779:220;;;:::o;18005:118::-;18092:24;18110:5;18092:24;:::i;:::-;18087:3;18080:37;18070:53;;:::o;18129:291::-;18269:3;18291:103;18390:3;18381:6;18373;18291:103;:::i;:::-;18284:110;;18411:3;18404:10;;18273:147;;;;;:::o;18426:967::-;18808:3;18830:148;18974:3;18830:148;:::i;:::-;18823:155;;18995:95;19086:3;19077:6;18995:95;:::i;:::-;18988:102;;19107:148;19251:3;19107:148;:::i;:::-;19100:155;;19272:95;19363:3;19354:6;19272:95;:::i;:::-;19265:102;;19384:3;19377:10;;18812:581;;;;;:::o;19399:549::-;19576:4;19614:2;19603:9;19599:18;19591:26;;19627:71;19695:1;19684:9;19680:17;19671:6;19627:71;:::i;:::-;19708:72;19776:2;19765:9;19761:18;19752:6;19708:72;:::i;:::-;19827:9;19821:4;19817:20;19812:2;19801:9;19797:18;19790:48;19855:86;19936:4;19927:6;19919;19855:86;:::i;:::-;19847:94;;19581:367;;;;;;;:::o;19954:771::-;20187:4;20225:3;20214:9;20210:19;20202:27;;20239:71;20307:1;20296:9;20292:17;20283:6;20239:71;:::i;:::-;20320:72;20388:2;20377:9;20373:18;20364:6;20320:72;:::i;:::-;20439:9;20433:4;20429:20;20424:2;20413:9;20409:18;20402:48;20467:86;20548:4;20539:6;20531;20467:86;:::i;:::-;20459:94;;20563:72;20631:2;20620:9;20616:18;20607:6;20563:72;:::i;:::-;20645:73;20713:3;20702:9;20698:19;20689:6;20645:73;:::i;:::-;20192:533;;;;;;;;;:::o;20731:771::-;20964:4;21002:3;20991:9;20987:19;20979:27;;21016:71;21084:1;21073:9;21069:17;21060:6;21016:71;:::i;:::-;21097:72;21165:2;21154:9;21150:18;21141:6;21097:72;:::i;:::-;21216:9;21210:4;21206:20;21201:2;21190:9;21186:18;21179:48;21244:86;21325:4;21316:6;21308;21244:86;:::i;:::-;21236:94;;21340:72;21408:2;21397:9;21393:18;21384:6;21340:72;:::i;:::-;21422:73;21490:3;21479:9;21475:19;21466:6;21422:73;:::i;:::-;20969:533;;;;;;;;;:::o;21508:1217::-;21913:4;21951:3;21940:9;21936:19;21928:27;;22001:9;21995:4;21991:20;21987:1;21976:9;21972:17;21965:47;22029:118;22142:4;22133:6;22125;22029:118;:::i;:::-;22021:126;;22194:9;22188:4;22184:20;22179:2;22168:9;22164:18;22157:48;22222:118;22335:4;22326:6;22318;22222:118;:::i;:::-;22214:126;;22387:9;22381:4;22377:20;22372:2;22361:9;22357:18;22350:48;22415:138;22548:4;22539:6;22531;22415:138;:::i;:::-;22407:146;;22563:72;22631:2;22620:9;22616:18;22607:6;22563:72;:::i;:::-;22645:73;22713:3;22702:9;22698:19;22689:6;22645:73;:::i;:::-;21918:807;;;;;;;;;;;:::o;22731:210::-;22818:4;22856:2;22845:9;22841:18;22833:26;;22869:65;22931:1;22920:9;22916:17;22907:6;22869:65;:::i;:::-;22823:118;;;;:::o;22947:222::-;23040:4;23078:2;23067:9;23063:18;23055:26;;23091:71;23159:1;23148:9;23144:17;23135:6;23091:71;:::i;:::-;23045:124;;;;:::o;23175:313::-;23288:4;23326:2;23315:9;23311:18;23303:26;;23375:9;23369:4;23365:20;23361:1;23350:9;23346:17;23339:47;23403:78;23476:4;23467:6;23403:78;:::i;:::-;23395:86;;23293:195;;;;:::o;23494:419::-;23660:4;23698:2;23687:9;23683:18;23675:26;;23747:9;23741:4;23737:20;23733:1;23722:9;23718:17;23711:47;23775:131;23901:4;23775:131;:::i;:::-;23767:139;;23665:248;;;:::o;23919:419::-;24085:4;24123:2;24112:9;24108:18;24100:26;;24172:9;24166:4;24162:20;24158:1;24147:9;24143:17;24136:47;24200:131;24326:4;24200:131;:::i;:::-;24192:139;;24090:248;;;:::o;24344:419::-;24510:4;24548:2;24537:9;24533:18;24525:26;;24597:9;24591:4;24587:20;24583:1;24572:9;24568:17;24561:47;24625:131;24751:4;24625:131;:::i;:::-;24617:139;;24515:248;;;:::o;24769:419::-;24935:4;24973:2;24962:9;24958:18;24950:26;;25022:9;25016:4;25012:20;25008:1;24997:9;24993:17;24986:47;25050:131;25176:4;25050:131;:::i;:::-;25042:139;;24940:248;;;:::o;25194:419::-;25360:4;25398:2;25387:9;25383:18;25375:26;;25447:9;25441:4;25437:20;25433:1;25422:9;25418:17;25411:47;25475:131;25601:4;25475:131;:::i;:::-;25467:139;;25365:248;;;:::o;25619:419::-;25785:4;25823:2;25812:9;25808:18;25800:26;;25872:9;25866:4;25862:20;25858:1;25847:9;25843:17;25836:47;25900:131;26026:4;25900:131;:::i;:::-;25892:139;;25790:248;;;:::o;26044:419::-;26210:4;26248:2;26237:9;26233:18;26225:26;;26297:9;26291:4;26287:20;26283:1;26272:9;26268:17;26261:47;26325:131;26451:4;26325:131;:::i;:::-;26317:139;;26215:248;;;:::o;26469:419::-;26635:4;26673:2;26662:9;26658:18;26650:26;;26722:9;26716:4;26712:20;26708:1;26697:9;26693:17;26686:47;26750:131;26876:4;26750:131;:::i;:::-;26742:139;;26640:248;;;:::o;26894:419::-;27060:4;27098:2;27087:9;27083:18;27075:26;;27147:9;27141:4;27137:20;27133:1;27122:9;27118:17;27111:47;27175:131;27301:4;27175:131;:::i;:::-;27167:139;;27065:248;;;:::o;27319:419::-;27485:4;27523:2;27512:9;27508:18;27500:26;;27572:9;27566:4;27562:20;27558:1;27547:9;27543:17;27536:47;27600:131;27726:4;27600:131;:::i;:::-;27592:139;;27490:248;;;:::o;27744:222::-;27837:4;27875:2;27864:9;27860:18;27852:26;;27888:71;27956:1;27945:9;27941:17;27932:6;27888:71;:::i;:::-;27842:124;;;;:::o;27972:332::-;28093:4;28131:2;28120:9;28116:18;28108:26;;28144:71;28212:1;28201:9;28197:17;28188:6;28144:71;:::i;:::-;28225:72;28293:2;28282:9;28278:18;28269:6;28225:72;:::i;:::-;28098:206;;;;;:::o;28310:523::-;28387:4;28393:6;28449:11;28436:25;28549:1;28543:4;28539:12;28528:8;28512:14;28508:29;28504:48;28484:18;28480:73;28470:2;;28567:1;28564;28557:12;28470:2;28602:18;28592:8;28588:33;28580:41;;28654:4;28641:18;28631:28;;28682:18;28674:6;28671:30;28668:2;;;28714:1;28711;28704:12;28668:2;28745;28739:4;28735:13;28727:21;;28802:4;28794:6;28790:17;28774:14;28770:38;28764:4;28760:49;28757:2;;;28822:1;28819;28812:12;28757:2;28400:433;;;;;;:::o;28839:102::-;28908:4;28931:3;28923:11;;28913:28;;;:::o;28947:113::-;29027:4;29050:3;29042:11;;29032:28;;;:::o;29066:99::-;29118:6;29152:5;29146:12;29136:22;;29125:40;;;:::o;29171:115::-;29243:4;29275;29270:3;29266:14;29258:22;;29248:38;;;:::o;29292:126::-;29375:4;29407;29402:3;29398:14;29390:22;;29380:38;;;:::o;29424:184::-;29523:11;29557:6;29552:3;29545:19;29597:4;29592:3;29588:14;29573:29;;29535:73;;;;:::o;29614:193::-;29722:11;29756:6;29751:3;29744:19;29796:4;29791:3;29787:14;29772:29;;29734:73;;;;:::o;29813:184::-;29912:11;29946:6;29941:3;29934:19;29986:4;29981:3;29977:14;29962:29;;29924:73;;;;:::o;30003:158::-;30076:11;30110:6;30105:3;30098:19;30150:4;30145:3;30141:14;30126:29;;30088:73;;;;:::o;30167:168::-;30250:11;30284:6;30279:3;30272:19;30324:4;30319:3;30315:14;30300:29;;30262:73;;;;:::o;30341:147::-;30442:11;30479:3;30464:18;;30454:34;;;;:::o;30494:169::-;30578:11;30612:6;30607:3;30600:19;30652:4;30647:3;30643:14;30628:29;;30590:73;;;;:::o;30669:148::-;30771:11;30808:3;30793:18;;30783:34;;;;:::o;30823:122::-;30875:5;30900:39;30935:2;30930:3;30926:12;30921:3;30900:39;:::i;:::-;30891:48;;30881:64;;;;:::o;30951:513::-;31015:5;31022:6;31078:3;31065:17;31170:1;31164:4;31160:12;31149:8;31133:14;31129:29;31125:48;31105:18;31101:73;31091:2;;31188:1;31185;31178:12;31091:2;31234:8;31214:18;31210:33;31201:42;;31276:5;31263:19;31253:29;;31311:4;31304:5;31300:16;31291:25;;31339:18;31331:6;31328:30;31325:2;;;31371:1;31368;31361:12;31325:2;31433:4;31425:6;31421:17;31405:14;31401:38;31391:8;31387:53;31384:2;;;31453:1;31450;31443:12;31384:2;31029:435;;;;;;:::o;31470:305::-;31510:3;31529:20;31547:1;31529:20;:::i;:::-;31524:25;;31563:20;31581:1;31563:20;:::i;:::-;31558:25;;31717:1;31649:66;31645:74;31642:1;31639:81;31636:2;;;31723:18;;:::i;:::-;31636:2;31767:1;31764;31760:9;31753:16;;31514:261;;;;:::o;31781:348::-;31821:7;31844:20;31862:1;31844:20;:::i;:::-;31839:25;;31878:20;31896:1;31878:20;:::i;:::-;31873:25;;32066:1;31998:66;31994:74;31991:1;31988:81;31983:1;31976:9;31969:17;31965:105;31962:2;;;32073:18;;:::i;:::-;31962:2;32121:1;32118;32114:9;32103:20;;31829:300;;;;:::o;32135:96::-;32172:7;32201:24;32219:5;32201:24;:::i;:::-;32190:35;;32180:51;;;:::o;32237:90::-;32271:7;32314:5;32307:13;32300:21;32289:32;;32279:48;;;:::o;32333:77::-;32370:7;32399:5;32388:16;;32378:32;;;:::o;32416:149::-;32452:7;32492:66;32485:5;32481:78;32470:89;;32460:105;;;:::o;32571:126::-;32608:7;32648:42;32641:5;32637:54;32626:65;;32616:81;;;:::o;32703:77::-;32740:7;32769:5;32758:16;;32748:32;;;:::o;32786:154::-;32870:6;32865:3;32860;32847:30;32932:1;32923:6;32918:3;32914:16;32907:27;32837:103;;;:::o;32946:307::-;33014:1;33024:113;33038:6;33035:1;33032:13;33024:113;;;33123:1;33118:3;33114:11;33108:18;33104:1;33099:3;33095:11;33088:39;33060:2;33057:1;33053:10;33048:15;;33024:113;;;33155:6;33152:1;33149:13;33146:2;;;33235:1;33226:6;33221:3;33217:16;33210:27;33146:2;32995:258;;;;:::o;33259:171::-;33298:3;33321:24;33339:5;33321:24;:::i;:::-;33312:33;;33367:4;33360:5;33357:15;33354:2;;;33375:18;;:::i;:::-;33354:2;33422:1;33415:5;33411:13;33404:20;;33302:128;;;:::o;33436:233::-;33475:3;33498:24;33516:5;33498:24;:::i;:::-;33489:33;;33544:66;33537:5;33534:77;33531:2;;;33614:18;;:::i;:::-;33531:2;33661:1;33654:5;33650:13;33643:20;;33479:190;;;:::o;33675:180::-;33723:77;33720:1;33713:88;33820:4;33817:1;33810:15;33844:4;33841:1;33834:15;33861:102;33902:6;33953:2;33949:7;33944:2;33937:5;33933:14;33929:28;33919:38;;33909:54;;;:::o;33969:182::-;34109:34;34105:1;34097:6;34093:14;34086:58;34075:76;:::o;34157:225::-;34297:34;34293:1;34285:6;34281:14;34274:58;34366:8;34361:2;34353:6;34349:15;34342:33;34263:119;:::o;34388:222::-;34528:34;34524:1;34516:6;34512:14;34505:58;34597:5;34592:2;34584:6;34580:15;34573:30;34494:116;:::o;34616:225::-;34756:34;34752:1;34744:6;34740:14;34733:58;34825:8;34820:2;34812:6;34808:15;34801:33;34722:119;:::o;34847:234::-;34987:34;34983:1;34975:6;34971:14;34964:58;35056:17;35051:2;35043:6;35039:15;35032:42;34953:128;:::o;35087:229::-;35227:34;35223:1;35215:6;35211:14;35204:58;35296:12;35291:2;35283:6;35279:15;35272:37;35193:123;:::o;35322:173::-;35462:25;35458:1;35450:6;35446:14;35439:49;35428:67;:::o;35501:236::-;35641:34;35637:1;35629:6;35625:14;35618:58;35710:19;35705:2;35697:6;35693:15;35686:44;35607:130;:::o;35743:167::-;35883:19;35879:1;35871:6;35867:14;35860:43;35849:61;:::o;35916:230::-;36056:34;36052:1;36044:6;36040:14;36033:58;36125:13;36120:2;36112:6;36108:15;36101:38;36022:124;:::o;36152:234::-;36292:34;36288:1;36280:6;36276:14;36269:58;36361:17;36356:2;36348:6;36344:15;36337:42;36258:128;:::o;36392:238::-;36532:34;36528:1;36520:6;36516:14;36509:58;36601:21;36596:2;36588:6;36584:15;36577:46;36498:132;:::o;36636:122::-;36709:24;36727:5;36709:24;:::i;:::-;36702:5;36699:35;36689:2;;36748:1;36745;36738:12;36689:2;36679:79;:::o;36764:122::-;36837:24;36855:5;36837:24;:::i;:::-;36830:5;36827:35;36817:2;;36876:1;36873;36866:12;36817:2;36807:79;:::o;36892:120::-;36964:23;36981:5;36964:23;:::i;:::-;36957:5;36954:34;36944:2;;37002:1;36999;36992:12;36944:2;36934:78;:::o;37018:122::-;37091:24;37109:5;37091:24;:::i;:::-;37084:5;37081:35;37071:2;;37130:1;37127;37120:12;37071:2;37061:79;:::o
Swarm Source
ipfs://87dd9dd42dce2feccf540e9d5bddc622f69671666f2c8f85772c77873abc2eb7
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.