This nametag was submitted by Kleros Curate.
More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 25 from a total of 31,589 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Approve | 60557114 | 4 days ago | IN | 0 AVAX | 0.0000464 | ||||
Approve | 60557061 | 4 days ago | IN | 0 AVAX | 0.00004631 | ||||
Approve | 59912307 | 14 days ago | IN | 0 AVAX | 0.00002938 | ||||
Approve | 58067632 | 52 days ago | IN | 0 AVAX | 0.000032 | ||||
Approve | 58044026 | 53 days ago | IN | 0 AVAX | 0.000032 | ||||
Approve | 58016508 | 53 days ago | IN | 0 AVAX | 0.0001475 | ||||
Approve | 57854719 | 56 days ago | IN | 0 AVAX | 0.00006392 | ||||
Approve | 57707300 | 59 days ago | IN | 0 AVAX | 0.00011644 | ||||
Transfer | 57707276 | 59 days ago | IN | 0 AVAX | 0.00010306 | ||||
Transfer | 57707240 | 59 days ago | IN | 0 AVAX | 0.00006958 | ||||
Transfer | 57707131 | 59 days ago | IN | 0 AVAX | 0.00014123 | ||||
Transfer | 57707129 | 59 days ago | IN | 0 AVAX | 0.00008136 | ||||
Transfer | 57706955 | 59 days ago | IN | 0 AVAX | 0.00003548 | ||||
Transfer | 57706954 | 59 days ago | IN | 0 AVAX | 0.00025509 | ||||
Transfer | 57706953 | 59 days ago | IN | 0 AVAX | 0.00007334 | ||||
Transfer | 57706734 | 59 days ago | IN | 0 AVAX | 0.00010326 | ||||
Transfer | 57706133 | 59 days ago | IN | 0 AVAX | 0.00015456 | ||||
Transfer | 57705879 | 59 days ago | IN | 0 AVAX | 0.00017696 | ||||
Transfer | 57623688 | 61 days ago | IN | 0 AVAX | 0.00053773 | ||||
Transfer | 57623687 | 61 days ago | IN | 0 AVAX | 0.00005742 | ||||
Transfer | 57623686 | 61 days ago | IN | 0 AVAX | 0.00004891 | ||||
Transfer | 57623685 | 61 days ago | IN | 0 AVAX | 0.00010306 | ||||
Transfer | 57623678 | 61 days ago | IN | 0 AVAX | 0.00023921 | ||||
Transfer | 57623675 | 61 days ago | IN | 0 AVAX | 0.0000733 | ||||
Approve | 57507178 | 63 days ago | IN | 0 AVAX | 0.00007447 |
Loading...
Loading
Contract Name:
Playa3ullToken
Compiler Version
v0.8.4+commit.c7e474f2
Contract Source Code (Solidity)
/** *Submitted for verification at snowscan.xyz on 2022-03-10 */ // File @openzeppelin/contracts/token/ERC20/[email protected] // SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.5.0) (token/ERC20/IERC20.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `to`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address to, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `from` to `to` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 amount ) external returns (bool); /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); } // File @openzeppelin/contracts/token/ERC20/extensions/[email protected] // OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol) pragma solidity ^0.8.0; /** * @dev Interface for the optional metadata functions from the ERC20 standard. * * _Available since v4.1._ */ interface IERC20Metadata is IERC20 { /** * @dev Returns the name of the token. */ function name() external view returns (string memory); /** * @dev Returns the symbol of the token. */ function symbol() external view returns (string memory); /** * @dev Returns the decimals places of the token. */ function decimals() external view returns (uint8); } // File @openzeppelin/contracts/utils/[email protected] // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File @openzeppelin/contracts/token/ERC20/[email protected] // OpenZeppelin Contracts (last updated v4.5.0) (token/ERC20/ERC20.sol) pragma solidity ^0.8.0; /** * @dev Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * For a generic mechanism see {ERC20PresetMinterPauser}. * * TIP: For a detailed writeup see our guide * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * We have followed general OpenZeppelin Contracts guidelines: functions revert * instead returning `false` on failure. This behavior is nonetheless * conventional and does not conflict with the expectations of ERC20 * applications. * * Additionally, an {Approval} event is emitted on calls to {transferFrom}. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the EIP may not emit * these events, as it isn't required by the specification. * * Finally, the non-standard {decreaseAllowance} and {increaseAllowance} * functions have been added to mitigate the well-known issues around setting * allowances. See {IERC20-approve}. */ contract ERC20 is Context, IERC20, IERC20Metadata { mapping(address => uint256) private _balances; mapping(address => mapping(address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; /** * @dev Sets the values for {name} and {symbol}. * * The default value of {decimals} is 18. To select a different value for * {decimals} you should overload it. * * All two of these values are immutable: they can only be set once during * construction. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev Returns the name of the token. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5.05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. This is the value {ERC20} uses, unless this function is * overridden; * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view virtual override returns (uint8) { return 18; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual override returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `to` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address to, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _transfer(owner, to, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on * `transferFrom`. This is semantically equivalent to an infinite approval. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _approve(owner, spender, amount); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}. * * NOTE: Does not update the allowance if the current allowance * is the maximum `uint256`. * * Requirements: * * - `from` and `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. * - the caller must have allowance for ``from``'s tokens of at least * `amount`. */ function transferFrom( address from, address to, uint256 amount ) public virtual override returns (bool) { address spender = _msgSender(); _spendAllowance(from, spender, amount); _transfer(from, to, amount); return true; } /** * @dev Atomically increases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { address owner = _msgSender(); _approve(owner, spender, _allowances[owner][spender] + addedValue); return true; } /** * @dev Atomically decreases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. * - `spender` must have allowance for the caller of at least * `subtractedValue`. */ function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { address owner = _msgSender(); uint256 currentAllowance = _allowances[owner][spender]; require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero"); unchecked { _approve(owner, spender, currentAllowance - subtractedValue); } return true; } /** * @dev Moves `amount` of tokens from `sender` to `recipient`. * * This internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. */ function _transfer( address from, address to, uint256 amount ) internal virtual { require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(from, to, amount); uint256 fromBalance = _balances[from]; require(fromBalance >= amount, "ERC20: transfer amount exceeds balance"); unchecked { _balances[from] = fromBalance - amount; } _balances[to] += amount; emit Transfer(from, to, amount); _afterTokenTransfer(from, to, amount); } /** @dev Creates `amount` tokens and assigns them to `account`, increasing * the total supply. * * Emits a {Transfer} event with `from` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. */ function _mint(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: mint to the zero address"); _beforeTokenTransfer(address(0), account, amount); _totalSupply += amount; _balances[account] += amount; emit Transfer(address(0), account, amount); _afterTokenTransfer(address(0), account, amount); } /** * @dev Destroys `amount` tokens from `account`, reducing the * total supply. * * Emits a {Transfer} event with `to` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. * - `account` must have at least `amount` tokens. */ function _burn(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: burn from the zero address"); _beforeTokenTransfer(account, address(0), amount); uint256 accountBalance = _balances[account]; require(accountBalance >= amount, "ERC20: burn amount exceeds balance"); unchecked { _balances[account] = accountBalance - amount; } _totalSupply -= amount; emit Transfer(account, address(0), amount); _afterTokenTransfer(account, address(0), amount); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens. * * This internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. */ function _approve( address owner, address spender, uint256 amount ) internal virtual { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } /** * @dev Spend `amount` form the allowance of `owner` toward `spender`. * * Does not update the allowance amount in case of infinite allowance. * Revert if not enough allowance is available. * * Might emit an {Approval} event. */ function _spendAllowance( address owner, address spender, uint256 amount ) internal virtual { uint256 currentAllowance = allowance(owner, spender); if (currentAllowance != type(uint256).max) { require(currentAllowance >= amount, "ERC20: insufficient allowance"); unchecked { _approve(owner, spender, currentAllowance - amount); } } } /** * @dev Hook that is called before any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * will be transferred to `to`. * - when `from` is zero, `amount` tokens will be minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 amount ) internal virtual {} /** * @dev Hook that is called after any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * has been transferred to `to`. * - when `from` is zero, `amount` tokens have been minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens have been burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer( address from, address to, uint256 amount ) internal virtual {} } // File @openzeppelin/contracts/access/[email protected] // OpenZeppelin Contracts v4.4.1 (access/IAccessControl.sol) pragma solidity ^0.8.0; /** * @dev External interface of AccessControl declared to support ERC165 detection. */ interface IAccessControl { /** * @dev Emitted when `newAdminRole` is set as ``role``'s admin role, replacing `previousAdminRole` * * `DEFAULT_ADMIN_ROLE` is the starting admin for all roles, despite * {RoleAdminChanged} not being emitted signaling this. * * _Available since v3.1._ */ event RoleAdminChanged(bytes32 indexed role, bytes32 indexed previousAdminRole, bytes32 indexed newAdminRole); /** * @dev Emitted when `account` is granted `role`. * * `sender` is the account that originated the contract call, an admin role * bearer except when using {AccessControl-_setupRole}. */ event RoleGranted(bytes32 indexed role, address indexed account, address indexed sender); /** * @dev Emitted when `account` is revoked `role`. * * `sender` is the account that originated the contract call: * - if using `revokeRole`, it is the admin role bearer * - if using `renounceRole`, it is the role bearer (i.e. `account`) */ event RoleRevoked(bytes32 indexed role, address indexed account, address indexed sender); /** * @dev Returns `true` if `account` has been granted `role`. */ function hasRole(bytes32 role, address account) external view returns (bool); /** * @dev Returns the admin role that controls `role`. See {grantRole} and * {revokeRole}. * * To change a role's admin, use {AccessControl-_setRoleAdmin}. */ function getRoleAdmin(bytes32 role) external view returns (bytes32); /** * @dev Grants `role` to `account`. * * If `account` had not been already granted `role`, emits a {RoleGranted} * event. * * Requirements: * * - the caller must have ``role``'s admin role. */ function grantRole(bytes32 role, address account) external; /** * @dev Revokes `role` from `account`. * * If `account` had been granted `role`, emits a {RoleRevoked} event. * * Requirements: * * - the caller must have ``role``'s admin role. */ function revokeRole(bytes32 role, address account) external; /** * @dev Revokes `role` from the calling account. * * Roles are often managed via {grantRole} and {revokeRole}: this function's * purpose is to provide a mechanism for accounts to lose their privileges * if they are compromised (such as when a trusted device is misplaced). * * If the calling account had been granted `role`, emits a {RoleRevoked} * event. * * Requirements: * * - the caller must be `account`. */ function renounceRole(bytes32 role, address account) external; } // File @openzeppelin/contracts/utils/[email protected] // OpenZeppelin Contracts v4.4.1 (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } } // File @openzeppelin/contracts/utils/introspection/[email protected] // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); } // File @openzeppelin/contracts/utils/introspection/[email protected] // OpenZeppelin Contracts v4.4.1 (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/contracts/access/[email protected] // OpenZeppelin Contracts (last updated v4.5.0) (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 virtual 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 virtual { 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 virtual override returns (bytes32) { return _roles[role].adminRole; } /** * @dev Grants `role` to `account`. * * If `account` had not been already granted `role`, emits a {RoleGranted} * event. * * Requirements: * * - the caller must have ``role``'s admin role. */ function grantRole(bytes32 role, address account) public virtual override onlyRole(getRoleAdmin(role)) { _grantRole(role, account); } /** * @dev Revokes `role` from `account`. * * If `account` had been granted `role`, emits a {RoleRevoked} event. * * Requirements: * * - the caller must have ``role``'s admin role. */ function revokeRole(bytes32 role, address account) public virtual override onlyRole(getRoleAdmin(role)) { _revokeRole(role, account); } /** * @dev Revokes `role` from the calling account. * * Roles are often managed via {grantRole} and {revokeRole}: this function's * purpose is to provide a mechanism for accounts to lose their privileges * if they are compromised (such as when a trusted device is misplaced). * * If the calling account had been revoked `role`, emits a {RoleRevoked} * event. * * Requirements: * * - the caller must be `account`. */ function renounceRole(bytes32 role, address account) public virtual override { require(account == _msgSender(), "AccessControl: can only renounce roles for self"); _revokeRole(role, account); } /** * @dev Grants `role` to `account`. * * If `account` had not been already granted `role`, emits a {RoleGranted} * event. Note that unlike {grantRole}, this function doesn't perform any * checks on the calling account. * * [WARNING] * ==== * This function should only be called from the constructor when setting * up the initial roles for the system. * * Using this function in any other way is effectively circumventing the admin * system imposed by {AccessControl}. * ==== * * NOTE: This function is deprecated in favor of {_grantRole}. */ function _setupRole(bytes32 role, address account) internal virtual { _grantRole(role, account); } /** * @dev Sets `adminRole` as ``role``'s admin role. * * Emits a {RoleAdminChanged} event. */ function _setRoleAdmin(bytes32 role, bytes32 adminRole) internal virtual { bytes32 previousAdminRole = getRoleAdmin(role); _roles[role].adminRole = adminRole; emit RoleAdminChanged(role, previousAdminRole, adminRole); } /** * @dev Grants `role` to `account`. * * Internal function without access restriction. */ function _grantRole(bytes32 role, address account) internal virtual { if (!hasRole(role, account)) { _roles[role].members[account] = true; emit RoleGranted(role, account, _msgSender()); } } /** * @dev Revokes `role` from `account`. * * Internal function without access restriction. */ function _revokeRole(bytes32 role, address account) internal virtual { if (hasRole(role, account)) { _roles[role].members[account] = false; emit RoleRevoked(role, account, _msgSender()); } } } // File @openzeppelin/contracts/utils/[email protected] // OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol) pragma solidity ^0.8.1; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== * * [IMPORTANT] * ==== * You shouldn't rely on `isContract` to protect against flash loan attacks! * * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract * constructor. * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize/address.code.length, which returns 0 // for contracts in construction, since the code is only stored at the end // of the constructor execution. return account.code.length > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } // File @openzeppelin/contracts/token/ERC20/utils/[email protected] // OpenZeppelin Contracts v4.4.1 (token/ERC20/utils/SafeERC20.sol) pragma solidity ^0.8.0; /** * @title SafeERC20 * @dev Wrappers around ERC20 operations that throw on failure (when the token * contract returns false). Tokens that return no value (and instead revert or * throw on failure) are also supported, non-reverting calls are assumed to be * successful. * To use this library you can add a `using SafeERC20 for IERC20;` statement to your contract, * which allows you to call the safe operations as `token.safeTransfer(...)`, etc. */ library SafeERC20 { using Address for address; function safeTransfer( IERC20 token, address to, uint256 value ) internal { _callOptionalReturn(token, abi.encodeWithSelector(token.transfer.selector, to, value)); } function safeTransferFrom( IERC20 token, address from, address to, uint256 value ) internal { _callOptionalReturn(token, abi.encodeWithSelector(token.transferFrom.selector, from, to, value)); } /** * @dev Deprecated. This function has issues similar to the ones found in * {IERC20-approve}, and its usage is discouraged. * * Whenever possible, use {safeIncreaseAllowance} and * {safeDecreaseAllowance} instead. */ function safeApprove( IERC20 token, address spender, uint256 value ) internal { // safeApprove should only be called when setting an initial allowance, // or when resetting it to zero. To increase and decrease it, use // 'safeIncreaseAllowance' and 'safeDecreaseAllowance' require( (value == 0) || (token.allowance(address(this), spender) == 0), "SafeERC20: approve from non-zero to non-zero allowance" ); _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, value)); } function safeIncreaseAllowance( IERC20 token, address spender, uint256 value ) internal { uint256 newAllowance = token.allowance(address(this), spender) + value; _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance)); } function safeDecreaseAllowance( IERC20 token, address spender, uint256 value ) internal { unchecked { uint256 oldAllowance = token.allowance(address(this), spender); require(oldAllowance >= value, "SafeERC20: decreased allowance below zero"); uint256 newAllowance = oldAllowance - value; _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance)); } } /** * @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement * on the return value: the return value is optional (but if data is returned, it must not be false). * @param token The token targeted by the call. * @param data The call data (encoded using abi.encode or one of its variants). */ function _callOptionalReturn(IERC20 token, bytes memory data) private { // We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since // we're implementing it ourselves. We use {Address.functionCall} to perform this call, which verifies that // the target address contains contract code and also asserts for success in the low-level call. bytes memory returndata = address(token).functionCall(data, "SafeERC20: low-level call failed"); if (returndata.length > 0) { // Return data is optional require(abi.decode(returndata, (bool)), "SafeERC20: ERC20 operation did not succeed"); } } } // File contracts/Playa3ullToken.sol pragma solidity 0.8.4; contract Playa3ullToken is ERC20, AccessControl { uint256 public constant cap = (50 * (10**9)) * (10**18); // fifty billion bool public mintLocked = false; mapping(address => bool) public minters; address public nodeContract; // Minter for paying out rewards IERC20 public previousToken; constructor( IERC20 _previousToken ) ERC20("3ULL v2", "3ULL") { _grantRole(DEFAULT_ADMIN_ROLE, msg.sender); previousToken = _previousToken; } event NodeContractSet(address account, uint256 timestamp); // Only allow minters (for migration), and Node Contract to mint function mint(address account, uint256 amount) external virtual { require(nodeContract == msg.sender, "3ULL Token: msg.sender cannot mint"); require(totalSupply() + amount < cap, "3ULL Token: amount is greater than cap"); _mint(account, amount); } // Exchange old 3ULL token for Current 3ULL v2 function exchange() external { uint256 balance = previousToken.balanceOf(msg.sender); require(balance > 0, "Migration: You require a balance of 3ULLv1"); _mint(msg.sender, balance); SafeERC20.safeTransferFrom(previousToken, msg.sender, address(this), balance); SafeERC20.safeTransfer(previousToken, address(0x000000000000000000000000000000000000dEaD), previousToken.balanceOf(address(this))); } // Node Contract // - Initially used for the DAO to claim back the rewards on behalf of the users from the original contract // - Will then be set as the NodeContract (see `nodeContract` variable) // - Left unlocked, so in future if we need to migrate the rewards / minting we are able to do so without redeploying the token // - Event in place for blockchain logging, to ensure transparency function setNodeContract(address account) external onlyRole(DEFAULT_ADMIN_ROLE) { nodeContract = account; emit NodeContractSet(account, block.timestamp); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[{"internalType":"contract IERC20","name":"_previousToken","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"uint256","name":"timestamp","type":"uint256"}],"name":"NodeContractSet","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"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"DEFAULT_ADMIN_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cap","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"exchange","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"}],"name":"getRoleAdmin","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"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":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"mintLocked","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"minters","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nodeContract","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"previousToken","outputs":[{"internalType":"contract IERC20","name":"","type":"address"}],"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":"account","type":"address"}],"name":"setNodeContract","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":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040526006805460ff191690553480156200001b57600080fd5b50604051620022d4380380620022d48339810160408190526200003e9162000222565b604080518082018252600781526619aaa626103b1960c91b6020808301918252835180850190945260048452630cd5531360e21b90840152815191929162000089916003916200017c565b5080516200009f9060049060208401906200017c565b50620000b191506000905033620000d7565b600980546001600160a01b0319166001600160a01b03929092169190911790556200028f565b60008281526005602090815260408083206001600160a01b038516845290915290205460ff16620001785760008281526005602090815260408083206001600160a01b03851684529091529020805460ff19166001179055620001373390565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b8280546200018a9062000252565b90600052602060002090601f016020900481019282620001ae5760008555620001f9565b82601f10620001c957805160ff1916838001178555620001f9565b82800160010185558215620001f9579182015b82811115620001f9578251825591602001919060010190620001dc565b50620002079291506200020b565b5090565b5b808211156200020757600081556001016200020c565b60006020828403121562000234578081fd5b81516001600160a01b03811681146200024b578182fd5b9392505050565b600181811c908216806200026757607f821691505b602082108114156200028957634e487b7160e01b600052602260045260246000fd5b50919050565b612035806200029f6000396000f3fe608060405234801561001057600080fd5b50600436106101ae5760003560e01c806391d14854116100ee578063d2f7265a11610097578063df3c3a3011610071578063df3c3a3014610413578063f395af9614610420578063f46eccc414610440578063f50fd9261461046357600080fd5b8063d2f7265a146103b2578063d547741f146103ba578063dd62ed3e146103cd57600080fd5b8063a457c2d7116100c8578063a457c2d714610347578063a9059cbb1461035a578063b237e8801461036d57600080fd5b806391d14854146102f157806395d89b4114610337578063a217fddf1461033f57600080fd5b80632f2ff15d1161015b57806336568abe1161013557806336568abe14610282578063395093511461029557806340c10f19146102a857806370a08231146102bb57600080fd5b80632f2ff15d1461024b578063313ce56714610260578063355274ea1461026f57600080fd5b806318160ddd1161018c57806318160ddd1461020357806323b872dd14610215578063248a9ca31461022857600080fd5b806301ffc9a7146101b357806306fdde03146101db578063095ea7b3146101f0575b600080fd5b6101c66101c1366004611d80565b610476565b60405190151581526020015b60405180910390f35b6101e361050f565b6040516101d29190611e75565b6101c66101fe366004611cfd565b6105a1565b6002545b6040519081526020016101d2565b6101c6610223366004611cc2565b6105b9565b610207610236366004611d46565b60009081526005602052604090206001015490565b61025e610259366004611d5e565b6105df565b005b604051601281526020016101d2565b6102076ba18f07d736b90be55000000081565b61025e610290366004611d5e565b61060a565b6101c66102a3366004611cfd565b6106c2565b61025e6102b6366004611cfd565b61070e565b6102076102c9366004611c76565b73ffffffffffffffffffffffffffffffffffffffff1660009081526020819052604090205490565b6101c66102ff366004611d5e565b600091825260056020908152604080842073ffffffffffffffffffffffffffffffffffffffff93909316845291905290205460ff1690565b6101e361086d565b610207600081565b6101c6610355366004611cfd565b61087c565b6101c6610368366004611cfd565b610958565b60085461038d9073ffffffffffffffffffffffffffffffffffffffff1681565b60405173ffffffffffffffffffffffffffffffffffffffff90911681526020016101d2565b61025e610966565b61025e6103c8366004611d5e565b610b7a565b6102076103db366004611c90565b73ffffffffffffffffffffffffffffffffffffffff918216600090815260016020908152604080832093909416825291909152205490565b6006546101c69060ff1681565b60095461038d9073ffffffffffffffffffffffffffffffffffffffff1681565b6101c661044e366004611c76565b60076020526000908152604090205460ff1681565b61025e610471366004611c76565b610ba0565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f7965db0b00000000000000000000000000000000000000000000000000000000148061050957507f01ffc9a7000000000000000000000000000000000000000000000000000000007fffffffff000000000000000000000000000000000000000000000000000000008316145b92915050565b60606003805461051e90611f7c565b80601f016020809104026020016040519081016040528092919081815260200182805461054a90611f7c565b80156105975780601f1061056c57610100808354040283529160200191610597565b820191906000526020600020905b81548152906001019060200180831161057a57829003601f168201915b5050505050905090565b6000336105af818585610c2b565b5060019392505050565b6000336105c7858285610dde565b6105d2858585610eb5565b60019150505b9392505050565b6000828152600560205260409020600101546105fb8133611168565b610605838361123a565b505050565b73ffffffffffffffffffffffffffffffffffffffff811633146106b4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602f60248201527f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560448201527f20726f6c657320666f722073656c66000000000000000000000000000000000060648201526084015b60405180910390fd5b6106be828261132e565b5050565b33600081815260016020908152604080832073ffffffffffffffffffffffffffffffffffffffff871684529091528120549091906105af9082908690610709908790611ec6565b610c2b565b60085473ffffffffffffffffffffffffffffffffffffffff1633146107b5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602260248201527f33554c4c20546f6b656e3a206d73672e73656e6465722063616e6e6f74206d6960448201527f6e7400000000000000000000000000000000000000000000000000000000000060648201526084016106ab565b6ba18f07d736b90be550000000816107cc60025490565b6107d69190611ec6565b10610863576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f33554c4c20546f6b656e3a20616d6f756e74206973206772656174657220746860448201527f616e20636170000000000000000000000000000000000000000000000000000060648201526084016106ab565b6106be82826113e9565b60606004805461051e90611f7c565b33600081815260016020908152604080832073ffffffffffffffffffffffffffffffffffffffff8716845290915281205490919083811015610940576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760448201527f207a65726f00000000000000000000000000000000000000000000000000000060648201526084016106ab565b61094d8286868403610c2b565b506001949350505050565b6000336105af818585610eb5565b6009546040517f70a0823100000000000000000000000000000000000000000000000000000000815233600482015260009173ffffffffffffffffffffffffffffffffffffffff16906370a082319060240160206040518083038186803b1580156109d057600080fd5b505afa1580156109e4573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a089190611dc0565b905060008111610a9a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602a60248201527f4d6967726174696f6e3a20596f75207265717569726520612062616c616e636560448201527f206f662033554c4c76310000000000000000000000000000000000000000000060648201526084016106ab565b610aa433826113e9565b600954610ac99073ffffffffffffffffffffffffffffffffffffffff16333084611509565b6009546040517f70a08231000000000000000000000000000000000000000000000000000000008152306004820152610b779173ffffffffffffffffffffffffffffffffffffffff169061dead9082906370a082319060240160206040518083038186803b158015610b3a57600080fd5b505afa158015610b4e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b729190611dc0565b6115e5565b50565b600082815260056020526040902060010154610b968133611168565b610605838361132e565b6000610bac8133611168565b600880547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff8416908117909155604080519182524260208301527f0ef682e6e035223de8027994c2b01ee7e915205b7b84239138dcefbd2d510508910160405180910390a15050565b73ffffffffffffffffffffffffffffffffffffffff8316610ccd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460448201527f726573730000000000000000000000000000000000000000000000000000000060648201526084016106ab565b73ffffffffffffffffffffffffffffffffffffffff8216610d70576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f20616464726560448201527f737300000000000000000000000000000000000000000000000000000000000060648201526084016106ab565b73ffffffffffffffffffffffffffffffffffffffff83811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b73ffffffffffffffffffffffffffffffffffffffff8381166000908152600160209081526040808320938616835292905220547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610eaf5781811015610ea2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e636500000060448201526064016106ab565b610eaf8484848403610c2b565b50505050565b73ffffffffffffffffffffffffffffffffffffffff8316610f58576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f20616460448201527f647265737300000000000000000000000000000000000000000000000000000060648201526084016106ab565b73ffffffffffffffffffffffffffffffffffffffff8216610ffb576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201527f657373000000000000000000000000000000000000000000000000000000000060648201526084016106ab565b73ffffffffffffffffffffffffffffffffffffffff8316600090815260208190526040902054818110156110b1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e742065786365656473206260448201527f616c616e6365000000000000000000000000000000000000000000000000000060648201526084016106ab565b73ffffffffffffffffffffffffffffffffffffffff8085166000908152602081905260408082208585039055918516815290812080548492906110f5908490611ec6565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161115b91815260200190565b60405180910390a3610eaf565b600082815260056020908152604080832073ffffffffffffffffffffffffffffffffffffffff8516845290915290205460ff166106be576111c08173ffffffffffffffffffffffffffffffffffffffff16601461163b565b6111cb83602061163b565b6040516020016111dc929190611df4565b604080517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0818403018152908290527f08c379a00000000000000000000000000000000000000000000000000000000082526106ab91600401611e75565b600082815260056020908152604080832073ffffffffffffffffffffffffffffffffffffffff8516845290915290205460ff166106be57600082815260056020908152604080832073ffffffffffffffffffffffffffffffffffffffff85168452909152902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001660011790556112d03390565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b600082815260056020908152604080832073ffffffffffffffffffffffffffffffffffffffff8516845290915290205460ff16156106be57600082815260056020908152604080832073ffffffffffffffffffffffffffffffffffffffff8516808552925280832080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016905551339285917ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b9190a45050565b73ffffffffffffffffffffffffffffffffffffffff8216611466576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064016106ab565b80600260008282546114789190611ec6565b909155505073ffffffffffffffffffffffffffffffffffffffff8216600090815260208190526040812080548392906114b2908490611ec6565b909155505060405181815273ffffffffffffffffffffffffffffffffffffffff8316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b60405173ffffffffffffffffffffffffffffffffffffffff80851660248301528316604482015260648101829052610eaf9085907f23b872dd00000000000000000000000000000000000000000000000000000000906084015b604080517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe08184030181529190526020810180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff167fffffffff0000000000000000000000000000000000000000000000000000000090931692909217909152611941565b60405173ffffffffffffffffffffffffffffffffffffffff83166024820152604481018290526106059084907fa9059cbb0000000000000000000000000000000000000000000000000000000090606401611563565b6060600061164a836002611ede565b611655906002611ec6565b67ffffffffffffffff811115611694577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156116be576020820181803683370190505b5090507f30000000000000000000000000000000000000000000000000000000000000008160008151811061171c577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053507f7800000000000000000000000000000000000000000000000000000000000000816001815181106117a6577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a90535060006117e2846002611ede565b6117ed906001611ec6565b90505b60018111156118d8577f303132333435363738396162636465660000000000000000000000000000000085600f1660108110611855577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b1a60f81b828281518110611892577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a90535060049490941c936118d181611f47565b90506117f0565b5083156105d8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f537472696e67733a20686578206c656e67746820696e73756666696369656e7460448201526064016106ab565b60006119a3826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c65648152508573ffffffffffffffffffffffffffffffffffffffff16611a4d9092919063ffffffff16565b80519091501561060557808060200190518101906119c19190611d26565b610605576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e60448201527f6f7420737563636565640000000000000000000000000000000000000000000060648201526084016106ab565b6060611a5c8484600085611a64565b949350505050565b606082471015611af6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f416464726573733a20696e73756666696369656e742062616c616e636520666f60448201527f722063616c6c000000000000000000000000000000000000000000000000000060648201526084016106ab565b73ffffffffffffffffffffffffffffffffffffffff85163b611b74576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e747261637400000060448201526064016106ab565b6000808673ffffffffffffffffffffffffffffffffffffffff168587604051611b9d9190611dd8565b60006040518083038185875af1925050503d8060008114611bda576040519150601f19603f3d011682016040523d82523d6000602084013e611bdf565b606091505b5091509150611bef828286611bfa565b979650505050505050565b60608315611c095750816105d8565b825115611c195782518084602001fd5b816040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106ab9190611e75565b803573ffffffffffffffffffffffffffffffffffffffff81168114611c7157600080fd5b919050565b600060208284031215611c87578081fd5b6105d882611c4d565b60008060408385031215611ca2578081fd5b611cab83611c4d565b9150611cb960208401611c4d565b90509250929050565b600080600060608486031215611cd6578081fd5b611cdf84611c4d565b9250611ced60208501611c4d565b9150604084013590509250925092565b60008060408385031215611d0f578182fd5b611d1883611c4d565b946020939093013593505050565b600060208284031215611d37578081fd5b815180151581146105d8578182fd5b600060208284031215611d57578081fd5b5035919050565b60008060408385031215611d70578182fd5b82359150611cb960208401611c4d565b600060208284031215611d91578081fd5b81357fffffffff00000000000000000000000000000000000000000000000000000000811681146105d8578182fd5b600060208284031215611dd1578081fd5b5051919050565b60008251611dea818460208701611f1b565b9190910192915050565b7f416363657373436f6e74726f6c3a206163636f756e7420000000000000000000815260008351611e2c816017850160208801611f1b565b7f206973206d697373696e6720726f6c65200000000000000000000000000000006017918401918201528351611e69816028840160208801611f1b565b01602801949350505050565b6020815260008251806020840152611e94816040850160208701611f1b565b601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0169190910160400192915050565b60008219821115611ed957611ed9611fd0565b500190565b6000817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615611f1657611f16611fd0565b500290565b60005b83811015611f36578181015183820152602001611f1e565b83811115610eaf5750506000910152565b600081611f5657611f56611fd0565b507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0190565b600181811c90821680611f9057607f821691505b60208210811415611fca577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fdfea26469706673582212201d5262c783081150100d7feca4c5723bf9263d31d60c2498a52e26d8bd6c1e7d64736f6c634300080400330000000000000000000000001e5e26af04af6b1e215199baf8b5d8c64838f0b0
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101ae5760003560e01c806391d14854116100ee578063d2f7265a11610097578063df3c3a3011610071578063df3c3a3014610413578063f395af9614610420578063f46eccc414610440578063f50fd9261461046357600080fd5b8063d2f7265a146103b2578063d547741f146103ba578063dd62ed3e146103cd57600080fd5b8063a457c2d7116100c8578063a457c2d714610347578063a9059cbb1461035a578063b237e8801461036d57600080fd5b806391d14854146102f157806395d89b4114610337578063a217fddf1461033f57600080fd5b80632f2ff15d1161015b57806336568abe1161013557806336568abe14610282578063395093511461029557806340c10f19146102a857806370a08231146102bb57600080fd5b80632f2ff15d1461024b578063313ce56714610260578063355274ea1461026f57600080fd5b806318160ddd1161018c57806318160ddd1461020357806323b872dd14610215578063248a9ca31461022857600080fd5b806301ffc9a7146101b357806306fdde03146101db578063095ea7b3146101f0575b600080fd5b6101c66101c1366004611d80565b610476565b60405190151581526020015b60405180910390f35b6101e361050f565b6040516101d29190611e75565b6101c66101fe366004611cfd565b6105a1565b6002545b6040519081526020016101d2565b6101c6610223366004611cc2565b6105b9565b610207610236366004611d46565b60009081526005602052604090206001015490565b61025e610259366004611d5e565b6105df565b005b604051601281526020016101d2565b6102076ba18f07d736b90be55000000081565b61025e610290366004611d5e565b61060a565b6101c66102a3366004611cfd565b6106c2565b61025e6102b6366004611cfd565b61070e565b6102076102c9366004611c76565b73ffffffffffffffffffffffffffffffffffffffff1660009081526020819052604090205490565b6101c66102ff366004611d5e565b600091825260056020908152604080842073ffffffffffffffffffffffffffffffffffffffff93909316845291905290205460ff1690565b6101e361086d565b610207600081565b6101c6610355366004611cfd565b61087c565b6101c6610368366004611cfd565b610958565b60085461038d9073ffffffffffffffffffffffffffffffffffffffff1681565b60405173ffffffffffffffffffffffffffffffffffffffff90911681526020016101d2565b61025e610966565b61025e6103c8366004611d5e565b610b7a565b6102076103db366004611c90565b73ffffffffffffffffffffffffffffffffffffffff918216600090815260016020908152604080832093909416825291909152205490565b6006546101c69060ff1681565b60095461038d9073ffffffffffffffffffffffffffffffffffffffff1681565b6101c661044e366004611c76565b60076020526000908152604090205460ff1681565b61025e610471366004611c76565b610ba0565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f7965db0b00000000000000000000000000000000000000000000000000000000148061050957507f01ffc9a7000000000000000000000000000000000000000000000000000000007fffffffff000000000000000000000000000000000000000000000000000000008316145b92915050565b60606003805461051e90611f7c565b80601f016020809104026020016040519081016040528092919081815260200182805461054a90611f7c565b80156105975780601f1061056c57610100808354040283529160200191610597565b820191906000526020600020905b81548152906001019060200180831161057a57829003601f168201915b5050505050905090565b6000336105af818585610c2b565b5060019392505050565b6000336105c7858285610dde565b6105d2858585610eb5565b60019150505b9392505050565b6000828152600560205260409020600101546105fb8133611168565b610605838361123a565b505050565b73ffffffffffffffffffffffffffffffffffffffff811633146106b4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602f60248201527f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560448201527f20726f6c657320666f722073656c66000000000000000000000000000000000060648201526084015b60405180910390fd5b6106be828261132e565b5050565b33600081815260016020908152604080832073ffffffffffffffffffffffffffffffffffffffff871684529091528120549091906105af9082908690610709908790611ec6565b610c2b565b60085473ffffffffffffffffffffffffffffffffffffffff1633146107b5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602260248201527f33554c4c20546f6b656e3a206d73672e73656e6465722063616e6e6f74206d6960448201527f6e7400000000000000000000000000000000000000000000000000000000000060648201526084016106ab565b6ba18f07d736b90be550000000816107cc60025490565b6107d69190611ec6565b10610863576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f33554c4c20546f6b656e3a20616d6f756e74206973206772656174657220746860448201527f616e20636170000000000000000000000000000000000000000000000000000060648201526084016106ab565b6106be82826113e9565b60606004805461051e90611f7c565b33600081815260016020908152604080832073ffffffffffffffffffffffffffffffffffffffff8716845290915281205490919083811015610940576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760448201527f207a65726f00000000000000000000000000000000000000000000000000000060648201526084016106ab565b61094d8286868403610c2b565b506001949350505050565b6000336105af818585610eb5565b6009546040517f70a0823100000000000000000000000000000000000000000000000000000000815233600482015260009173ffffffffffffffffffffffffffffffffffffffff16906370a082319060240160206040518083038186803b1580156109d057600080fd5b505afa1580156109e4573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a089190611dc0565b905060008111610a9a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602a60248201527f4d6967726174696f6e3a20596f75207265717569726520612062616c616e636560448201527f206f662033554c4c76310000000000000000000000000000000000000000000060648201526084016106ab565b610aa433826113e9565b600954610ac99073ffffffffffffffffffffffffffffffffffffffff16333084611509565b6009546040517f70a08231000000000000000000000000000000000000000000000000000000008152306004820152610b779173ffffffffffffffffffffffffffffffffffffffff169061dead9082906370a082319060240160206040518083038186803b158015610b3a57600080fd5b505afa158015610b4e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b729190611dc0565b6115e5565b50565b600082815260056020526040902060010154610b968133611168565b610605838361132e565b6000610bac8133611168565b600880547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff8416908117909155604080519182524260208301527f0ef682e6e035223de8027994c2b01ee7e915205b7b84239138dcefbd2d510508910160405180910390a15050565b73ffffffffffffffffffffffffffffffffffffffff8316610ccd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460448201527f726573730000000000000000000000000000000000000000000000000000000060648201526084016106ab565b73ffffffffffffffffffffffffffffffffffffffff8216610d70576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f20616464726560448201527f737300000000000000000000000000000000000000000000000000000000000060648201526084016106ab565b73ffffffffffffffffffffffffffffffffffffffff83811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b73ffffffffffffffffffffffffffffffffffffffff8381166000908152600160209081526040808320938616835292905220547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610eaf5781811015610ea2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e636500000060448201526064016106ab565b610eaf8484848403610c2b565b50505050565b73ffffffffffffffffffffffffffffffffffffffff8316610f58576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f20616460448201527f647265737300000000000000000000000000000000000000000000000000000060648201526084016106ab565b73ffffffffffffffffffffffffffffffffffffffff8216610ffb576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201527f657373000000000000000000000000000000000000000000000000000000000060648201526084016106ab565b73ffffffffffffffffffffffffffffffffffffffff8316600090815260208190526040902054818110156110b1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e742065786365656473206260448201527f616c616e6365000000000000000000000000000000000000000000000000000060648201526084016106ab565b73ffffffffffffffffffffffffffffffffffffffff8085166000908152602081905260408082208585039055918516815290812080548492906110f5908490611ec6565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161115b91815260200190565b60405180910390a3610eaf565b600082815260056020908152604080832073ffffffffffffffffffffffffffffffffffffffff8516845290915290205460ff166106be576111c08173ffffffffffffffffffffffffffffffffffffffff16601461163b565b6111cb83602061163b565b6040516020016111dc929190611df4565b604080517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0818403018152908290527f08c379a00000000000000000000000000000000000000000000000000000000082526106ab91600401611e75565b600082815260056020908152604080832073ffffffffffffffffffffffffffffffffffffffff8516845290915290205460ff166106be57600082815260056020908152604080832073ffffffffffffffffffffffffffffffffffffffff85168452909152902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001660011790556112d03390565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b600082815260056020908152604080832073ffffffffffffffffffffffffffffffffffffffff8516845290915290205460ff16156106be57600082815260056020908152604080832073ffffffffffffffffffffffffffffffffffffffff8516808552925280832080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016905551339285917ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b9190a45050565b73ffffffffffffffffffffffffffffffffffffffff8216611466576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064016106ab565b80600260008282546114789190611ec6565b909155505073ffffffffffffffffffffffffffffffffffffffff8216600090815260208190526040812080548392906114b2908490611ec6565b909155505060405181815273ffffffffffffffffffffffffffffffffffffffff8316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b60405173ffffffffffffffffffffffffffffffffffffffff80851660248301528316604482015260648101829052610eaf9085907f23b872dd00000000000000000000000000000000000000000000000000000000906084015b604080517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe08184030181529190526020810180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff167fffffffff0000000000000000000000000000000000000000000000000000000090931692909217909152611941565b60405173ffffffffffffffffffffffffffffffffffffffff83166024820152604481018290526106059084907fa9059cbb0000000000000000000000000000000000000000000000000000000090606401611563565b6060600061164a836002611ede565b611655906002611ec6565b67ffffffffffffffff811115611694577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156116be576020820181803683370190505b5090507f30000000000000000000000000000000000000000000000000000000000000008160008151811061171c577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053507f7800000000000000000000000000000000000000000000000000000000000000816001815181106117a6577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a90535060006117e2846002611ede565b6117ed906001611ec6565b90505b60018111156118d8577f303132333435363738396162636465660000000000000000000000000000000085600f1660108110611855577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b1a60f81b828281518110611892577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a90535060049490941c936118d181611f47565b90506117f0565b5083156105d8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f537472696e67733a20686578206c656e67746820696e73756666696369656e7460448201526064016106ab565b60006119a3826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c65648152508573ffffffffffffffffffffffffffffffffffffffff16611a4d9092919063ffffffff16565b80519091501561060557808060200190518101906119c19190611d26565b610605576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e60448201527f6f7420737563636565640000000000000000000000000000000000000000000060648201526084016106ab565b6060611a5c8484600085611a64565b949350505050565b606082471015611af6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f416464726573733a20696e73756666696369656e742062616c616e636520666f60448201527f722063616c6c000000000000000000000000000000000000000000000000000060648201526084016106ab565b73ffffffffffffffffffffffffffffffffffffffff85163b611b74576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e747261637400000060448201526064016106ab565b6000808673ffffffffffffffffffffffffffffffffffffffff168587604051611b9d9190611dd8565b60006040518083038185875af1925050503d8060008114611bda576040519150601f19603f3d011682016040523d82523d6000602084013e611bdf565b606091505b5091509150611bef828286611bfa565b979650505050505050565b60608315611c095750816105d8565b825115611c195782518084602001fd5b816040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106ab9190611e75565b803573ffffffffffffffffffffffffffffffffffffffff81168114611c7157600080fd5b919050565b600060208284031215611c87578081fd5b6105d882611c4d565b60008060408385031215611ca2578081fd5b611cab83611c4d565b9150611cb960208401611c4d565b90509250929050565b600080600060608486031215611cd6578081fd5b611cdf84611c4d565b9250611ced60208501611c4d565b9150604084013590509250925092565b60008060408385031215611d0f578182fd5b611d1883611c4d565b946020939093013593505050565b600060208284031215611d37578081fd5b815180151581146105d8578182fd5b600060208284031215611d57578081fd5b5035919050565b60008060408385031215611d70578182fd5b82359150611cb960208401611c4d565b600060208284031215611d91578081fd5b81357fffffffff00000000000000000000000000000000000000000000000000000000811681146105d8578182fd5b600060208284031215611dd1578081fd5b5051919050565b60008251611dea818460208701611f1b565b9190910192915050565b7f416363657373436f6e74726f6c3a206163636f756e7420000000000000000000815260008351611e2c816017850160208801611f1b565b7f206973206d697373696e6720726f6c65200000000000000000000000000000006017918401918201528351611e69816028840160208801611f1b565b01602801949350505050565b6020815260008251806020840152611e94816040850160208701611f1b565b601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0169190910160400192915050565b60008219821115611ed957611ed9611fd0565b500190565b6000817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615611f1657611f16611fd0565b500290565b60005b83811015611f36578181015183820152602001611f1e565b83811115610eaf5750506000910152565b600081611f5657611f56611fd0565b507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0190565b600181811c90821680611f9057607f821691505b60208210811415611fca577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fdfea26469706673582212201d5262c783081150100d7feca4c5723bf9263d31d60c2498a52e26d8bd6c1e7d64736f6c63430008040033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
0000000000000000000000001e5e26af04af6b1e215199baf8b5d8c64838f0b0
-----Decoded View---------------
Arg [0] : _previousToken (address): 0x1e5e26aF04Af6b1e215199Baf8B5d8C64838f0b0
-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 0000000000000000000000001e5e26af04af6b1e215199baf8b5d8c64838f0b0
Deployed Bytecode Sourcemap
44808:2041:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27245:204;;;;;;:::i;:::-;;:::i;:::-;;;4796:14:1;;4789:22;4771:41;;4759:2;4744:18;27245:204:0;;;;;;;;6712:100;;;:::i;:::-;;;;;;;:::i;9063:201::-;;;;;;:::i;:::-;;:::i;7832:108::-;7920:12;;7832:108;;;4969:25:1;;;4957:2;4942:18;7832:108:0;4924:76:1;9844:295:0;;;;;;:::i;:::-;;:::i;28672:131::-;;;;;;:::i;:::-;28746:7;28773:12;;;:6;:12;;;;;:22;;;;28672:131;29065:147;;;;;;:::i;:::-;;:::i;:::-;;7674:93;;;7757:2;12343:36:1;;12331:2;12316:18;7674:93:0;12298:87:1;44863:55:0;;44893:25;44863:55;;30113:218;;;;;;:::i;:::-;;:::i;10548:240::-;;;;;;:::i;:::-;;:::i;45456:281::-;;;;;;:::i;:::-;;:::i;8003:127::-;;;;;;:::i;:::-;8104:18;;8077:7;8104:18;;;;;;;;;;;;8003:127;27541:147;;;;;;:::i;:::-;27627:4;27651:12;;;:6;:12;;;;;;;;:29;;;;;;;;;;;;;;;;27541:147;6931:104;;;:::i;26632:49::-;;26677:4;26632:49;;11291:438;;;;;;:::i;:::-;;:::i;8336:193::-;;;;;;:::i;:::-;;:::i;45027:27::-;;;;;;;;;;;;3871:42:1;3859:55;;;3841:74;;3829:2;3814:18;45027:27:0;3796:125:1;45797:446:0;;;:::i;29457:149::-;;;;;;:::i;:::-;;:::i;8592:151::-;;;;;;:::i;:::-;8708:18;;;;8681:7;8708:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;8592:151;44942:30;;;;;;;;;45096:27;;;;;;;;;44981:39;;;;;;:::i;:::-;;;;;;;;;;;;;;;;46668:178;;;;;;:::i;:::-;;:::i;27245:204::-;27330:4;27354:47;;;27369:32;27354:47;;:87;;-1:-1:-1;24608:25:0;24593:40;;;;27405:36;27347:94;27245:204;-1:-1:-1;;27245:204:0:o;6712:100::-;6766:13;6799:5;6792:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6712:100;:::o;9063:201::-;9146:4;4426:10;9202:32;4426:10;9218:7;9227:6;9202:8;:32::i;:::-;-1:-1:-1;9252:4:0;;9063:201;-1:-1:-1;;;9063:201:0:o;9844:295::-;9975:4;4426:10;10033:38;10049:4;4426:10;10064:6;10033:15;:38::i;:::-;10082:27;10092:4;10098:2;10102:6;10082:9;:27::i;:::-;10127:4;10120:11;;;9844:295;;;;;;:::o;29065:147::-;28746:7;28773:12;;;:6;:12;;;;;:22;;;27123:30;27134:4;4426:10;27123;:30::i;:::-;29179:25:::1;29190:4;29196:7;29179:10;:25::i;:::-;29065:147:::0;;;:::o;30113:218::-;30209:23;;;4426:10;30209:23;30201:83;;;;;;;11445:2:1;30201:83:0;;;11427:21:1;11484:2;11464:18;;;11457:30;11523:34;11503:18;;;11496:62;11594:17;11574:18;;;11567:45;11629:19;;30201:83:0;;;;;;;;;30297:26;30309:4;30315:7;30297:11;:26::i;:::-;30113:218;;:::o;10548:240::-;4426:10;10636:4;10717:18;;;:11;:18;;;;;;;;;:27;;;;;;;;;;10636:4;;4426:10;10692:66;;4426:10;;10717:27;;:40;;10747:10;;10717:40;:::i;:::-;10692:8;:66::i;45456:281::-;45539:12;;:26;:12;45555:10;45539:26;45531:73;;;;;;;9056:2:1;45531:73:0;;;9038:21:1;9095:2;9075:18;;;9068:30;9134:34;9114:18;;;9107:62;9205:4;9185:18;;;9178:32;9227:19;;45531:73:0;9028:224:1;45531:73:0;44893:25;45639:6;45623:13;7920:12;;;7832:108;45623:13;:22;;;;:::i;:::-;:28;45615:79;;;;;;;8649:2:1;45615:79:0;;;8631:21:1;8688:2;8668:18;;;8661:30;8727:34;8707:18;;;8700:62;8798:8;8778:18;;;8771:36;8824:19;;45615:79:0;8621:228:1;45615:79:0;45707:22;45713:7;45722:6;45707:5;:22::i;6931:104::-;6987:13;7020:7;7013:14;;;;;:::i;11291:438::-;4426:10;11384:4;11467:18;;;:11;:18;;;;;;;;;:27;;;;;;;;;;11384:4;;4426:10;11513:35;;;;11505:85;;;;;;;11039:2:1;11505:85:0;;;11021:21:1;11078:2;11058:18;;;11051:30;11117:34;11097:18;;;11090:62;11188:7;11168:18;;;11161:35;11213:19;;11505:85:0;11011:227:1;11505:85:0;11626:60;11635:5;11642:7;11670:15;11651:16;:34;11626:8;:60::i;:::-;-1:-1:-1;11717:4:0;;11291:438;-1:-1:-1;;;;11291:438:0:o;8336:193::-;8415:4;4426:10;8471:28;4426:10;8488:2;8492:6;8471:9;:28::i;45797:446::-;45855:13;;:35;;;;;45879:10;45855:35;;;3841:74:1;45837:15:0;;45855:13;;;:23;;3814:18:1;;45855:35:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;45837:53;;45919:1;45909:7;:11;45901:66;;;;;;;8238:2:1;45901:66:0;;;8220:21:1;8277:2;8257:18;;;8250:30;8316:34;8296:18;;;8289:62;8387:12;8367:18;;;8360:40;8417:19;;45901:66:0;8210:232:1;45901:66:0;45980:26;45986:10;45998:7;45980:5;:26::i;:::-;46044:13;;46017:77;;46044:13;;46059:10;46079:4;46086:7;46017:26;:77::i;:::-;46128:13;;46196:38;;;;;46228:4;46196:38;;;3841:74:1;46105:130:0;;46128:13;;;46151:42;;46128:13;;46196:23;;3814:18:1;;46196:38:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;46105:22;:130::i;:::-;45797:446;:::o;29457:149::-;28746:7;28773:12;;;:6;:12;;;;;:22;;;27123:30;27134:4;4426:10;27123;:30::i;:::-;29572:26:::1;29584:4;29590:7;29572:11;:26::i;46668:178::-:0;26677:4;27123:30;26677:4;4426:10;27123;:30::i;:::-;46759:12:::1;:22:::0;;;::::1;;::::0;::::1;::::0;;::::1;::::0;;;46797:41:::1;::::0;;4503:74:1;;;46822:15:0::1;4608:2:1::0;4593:18;;4586:34;46797:41:0::1;::::0;4476:18:1;46797:41:0::1;;;;;;;46668:178:::0;;:::o;14927:380::-;15063:19;;;15055:68;;;;;;;9865:2:1;15055:68:0;;;9847:21:1;9904:2;9884:18;;;9877:30;9943:34;9923:18;;;9916:62;10014:6;9994:18;;;9987:34;10038:19;;15055:68:0;9837:226:1;15055:68:0;15142:21;;;15134:68;;;;;;;6663:2:1;15134:68:0;;;6645:21:1;6702:2;6682:18;;;6675:30;6741:34;6721:18;;;6714:62;6812:4;6792:18;;;6785:32;6834:19;;15134:68:0;6635:224:1;15134:68:0;15215:18;;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;15267:32;;4969:25:1;;;15267:32:0;;4942:18:1;15267:32:0;;;;;;;14927:380;;;:::o;15594:453::-;8708:18;;;;15729:24;8708:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;15816:17;15796:37;;15792:248;;15878:6;15858:16;:26;;15850:68;;;;;;;7066:2:1;15850:68:0;;;7048:21:1;7105:2;7085:18;;;7078:30;7144:31;7124:18;;;7117:59;7193:18;;15850:68:0;7038:179:1;15850:68:0;15962:51;15971:5;15978:7;16006:6;15987:16;:25;15962:8;:51::i;:::-;15594:453;;;;:::o;12208:671::-;12339:18;;;12331:68;;;;;;;9459:2:1;12331:68:0;;;9441:21:1;9498:2;9478:18;;;9471:30;9537:34;9517:18;;;9510:62;9608:7;9588:18;;;9581:35;9633:19;;12331:68:0;9431:227:1;12331:68:0;12418:16;;;12410:64;;;;;;;6259:2:1;12410:64:0;;;6241:21:1;6298:2;6278:18;;;6271:30;6337:34;6317:18;;;6310:62;6408:5;6388:18;;;6381:33;6431:19;;12410:64:0;6231:225:1;12410:64:0;12560:15;;;12538:19;12560:15;;;;;;;;;;;12594:21;;;;12586:72;;;;;;;7424:2:1;12586:72:0;;;7406:21:1;7463:2;7443:18;;;7436:30;7502:34;7482:18;;;7475:62;7573:8;7553:18;;;7546:36;7599:19;;12586:72:0;7396:228:1;12586:72:0;12694:15;;;;:9;:15;;;;;;;;;;;12712:20;;;12694:38;;12754:13;;;;;;;;:23;;12726:6;;12694:9;12754:23;;12726:6;;12754:23;:::i;:::-;;;;;;;;12810:2;12795:26;;12804:4;12795:26;;;12814:6;12795:26;;;;4969:25:1;;4957:2;4942:18;;4924:76;12795:26:0;;;;;;;;12834:37;29065:147;27978:505;27627:4;27651:12;;;:6;:12;;;;;;;;:29;;;;;;;;;;;;;28062:414;;28255:41;28283:7;28255:41;;28293:2;28255:19;:41::i;:::-;28369:38;28397:4;28404:2;28369:19;:38::i;:::-;28160:270;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;28106:358;;;;;;;;:::i;31614:238::-;27627:4;27651:12;;;:6;:12;;;;;;;;:29;;;;;;;;;;;;;31693:152;;31737:12;;;;:6;:12;;;;;;;;:29;;;;;;;;;;:36;;;;31769:4;31737:36;;;31820:12;4426:10;;4346:98;31820:12;31793:40;;31811:7;31793:40;;31805:4;31793:40;;;;;;;;;;31614:238;;:::o;31984:239::-;27627:4;27651:12;;;:6;:12;;;;;;;;:29;;;;;;;;;;;;;32064:152;;;32139:5;32107:12;;;:6;:12;;;;;;;;:29;;;;;;;;;;;:37;;;;;;32164:40;4426:10;;32107:12;;32164:40;;32139:5;32164:40;31984:239;;:::o;13166:399::-;13250:21;;;13242:65;;;;;;;11861:2:1;13242:65:0;;;11843:21:1;11900:2;11880:18;;;11873:30;11939:33;11919:18;;;11912:61;11990:18;;13242:65:0;11833:181:1;13242:65:0;13398:6;13382:12;;:22;;;;;;;:::i;:::-;;;;-1:-1:-1;;13415:18:0;;;:9;:18;;;;;;;;;;:28;;13437:6;;13415:9;:28;;13437:6;;13415:28;:::i;:::-;;;;-1:-1:-1;;13459:37:0;;4969:25:1;;;13459:37:0;;;;13476:1;;13459:37;;4957:2:1;4942:18;13459:37:0;;;;;;;30113:218;;:::o;41663:248::-;41834:68;;4138:42:1;4207:15;;;41834:68:0;;;4189:34:1;4259:15;;4239:18;;;4232:43;4291:18;;;4284:34;;;41807:96:0;;41827:5;;41857:27;;4101:18:1;;41834:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41807:19;:96::i;41444:211::-;41588:58;;4533:42:1;4521:55;;41588:58:0;;;4503:74:1;4593:18;;;4586:34;;;41561:86:0;;41581:5;;41611:23;;4476:18:1;;41588:58:0;4458:168:1;22230:451:0;22305:13;22331:19;22363:10;22367:6;22363:1;:10;:::i;:::-;:14;;22376:1;22363:14;:::i;:::-;22353:25;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;22353:25:0;;22331:47;;22389:15;:6;22396:1;22389:9;;;;;;;;;;;;;;;;;;;:15;;;;;;;;;;;22415;:6;22422:1;22415:9;;;;;;;;;;;;;;;;;;;:15;;;;;;;;;;-1:-1:-1;22446:9:0;22458:10;22462:6;22458:1;:10;:::i;:::-;:14;;22471:1;22458:14;:::i;:::-;22446:26;;22441:135;22478:1;22474;:5;22441:135;;;22513:12;22526:5;22534:3;22526:11;22513:25;;;;;;;;;;;;;;;;;;22501:6;22508:1;22501:9;;;;;;;;;;;;;;;;;;;:37;;;;;;;;;;-1:-1:-1;22563:1:0;22553:11;;;;;22481:3;;;:::i;:::-;;;22441:135;;;-1:-1:-1;22594:10:0;;22586:55;;;;;;;5898:2:1;22586:55:0;;;5880:21:1;;;5917:18;;;5910:30;5976:34;5956:18;;;5949:62;6028:18;;22586:55:0;5870:182:1;44017:716:0;44441:23;44467:69;44495:4;44467:69;;;;;;;;;;;;;;;;;44475:5;44467:27;;;;:69;;;;;:::i;:::-;44551:17;;44441:95;;-1:-1:-1;44551:21:0;44547:179;;44648:10;44637:30;;;;;;;;;;;;:::i;:::-;44629:85;;;;;;;10628:2:1;44629:85:0;;;10610:21:1;10667:2;10647:18;;;10640:30;10706:34;10686:18;;;10679:62;10777:12;10757:18;;;10750:40;10807:19;;44629:85:0;10600:232:1;36216:229:0;36353:12;36385:52;36407:6;36415:4;36421:1;36424:12;36385:21;:52::i;:::-;36378:59;36216:229;-1:-1:-1;;;;36216:229:0:o;37336:510::-;37506:12;37564:5;37539:21;:30;;37531:81;;;;;;;7831:2:1;37531:81:0;;;7813:21:1;7870:2;7850:18;;;7843:30;7909:34;7889:18;;;7882:62;7980:8;7960:18;;;7953:36;8006:19;;37531:81:0;7803:228:1;37531:81:0;33766:19;;;;37623:60;;;;;;;10270:2:1;37623:60:0;;;10252:21:1;10309:2;10289:18;;;10282:30;10348:31;10328:18;;;10321:59;10397:18;;37623:60:0;10242:179:1;37623:60:0;37697:12;37711:23;37738:6;:11;;37757:5;37764:4;37738:31;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37696:73;;;;37787:51;37804:7;37813:10;37825:12;37787:16;:51::i;:::-;37780:58;37336:510;-1:-1:-1;;;;;;;37336:510:0:o;40022:712::-;40172:12;40201:7;40197:530;;;-1:-1:-1;40232:10:0;40225:17;;40197:530;40346:17;;:21;40342:374;;40544:10;40538:17;40605:15;40592:10;40588:2;40584:19;40577:44;40492:148;40687:12;40680:20;;;;;;;;;;;:::i;14:196:1:-;82:20;;142:42;131:54;;121:65;;111:2;;200:1;197;190:12;111:2;63:147;;;:::o;215:196::-;274:6;327:2;315:9;306:7;302:23;298:32;295:2;;;348:6;340;333:22;295:2;376:29;395:9;376:29;:::i;416:270::-;484:6;492;545:2;533:9;524:7;520:23;516:32;513:2;;;566:6;558;551:22;513:2;594:29;613:9;594:29;:::i;:::-;584:39;;642:38;676:2;665:9;661:18;642:38;:::i;:::-;632:48;;503:183;;;;;:::o;691:338::-;768:6;776;784;837:2;825:9;816:7;812:23;808:32;805:2;;;858:6;850;843:22;805:2;886:29;905:9;886:29;:::i;:::-;876:39;;934:38;968:2;957:9;953:18;934:38;:::i;:::-;924:48;;1019:2;1008:9;1004:18;991:32;981:42;;795:234;;;;;:::o;1034:264::-;1102:6;1110;1163:2;1151:9;1142:7;1138:23;1134:32;1131:2;;;1184:6;1176;1169:22;1131:2;1212:29;1231:9;1212:29;:::i;:::-;1202:39;1288:2;1273:18;;;;1260:32;;-1:-1:-1;;;1121:177:1:o;1303:297::-;1370:6;1423:2;1411:9;1402:7;1398:23;1394:32;1391:2;;;1444:6;1436;1429:22;1391:2;1481:9;1475:16;1534:5;1527:13;1520:21;1513:5;1510:32;1500:2;;1561:6;1553;1546:22;1605:190;1664:6;1717:2;1705:9;1696:7;1692:23;1688:32;1685:2;;;1738:6;1730;1723:22;1685:2;-1:-1:-1;1766:23:1;;1675:120;-1:-1:-1;1675:120:1:o;1800:264::-;1868:6;1876;1929:2;1917:9;1908:7;1904:23;1900:32;1897:2;;;1950:6;1942;1935:22;1897:2;1991:9;1978:23;1968:33;;2020:38;2054:2;2043:9;2039:18;2020:38;:::i;2069:352::-;2127:6;2180:2;2168:9;2159:7;2155:23;2151:32;2148:2;;;2201:6;2193;2186:22;2148:2;2245:9;2232:23;2295:66;2288:5;2284:78;2277:5;2274:89;2264:2;;2382:6;2374;2367:22;2426:194;2496:6;2549:2;2537:9;2528:7;2524:23;2520:32;2517:2;;;2570:6;2562;2555:22;2517:2;-1:-1:-1;2598:16:1;;2507:113;-1:-1:-1;2507:113:1:o;2625:274::-;2754:3;2792:6;2786:13;2808:53;2854:6;2849:3;2842:4;2834:6;2830:17;2808:53;:::i;:::-;2877:16;;;;;2762:137;-1:-1:-1;;2762:137:1:o;2904:786::-;3315:25;3310:3;3303:38;3285:3;3370:6;3364:13;3386:62;3441:6;3436:2;3431:3;3427:12;3420:4;3412:6;3408:17;3386:62;:::i;:::-;3512:19;3507:2;3467:16;;;3499:11;;;3492:40;3557:13;;3579:63;3557:13;3628:2;3620:11;;3613:4;3601:17;;3579:63;:::i;:::-;3662:17;3681:2;3658:26;;3293:397;-1:-1:-1;;;;3293:397:1:o;5249:442::-;5398:2;5387:9;5380:21;5361:4;5430:6;5424:13;5473:6;5468:2;5457:9;5453:18;5446:34;5489:66;5548:6;5543:2;5532:9;5528:18;5523:2;5515:6;5511:15;5489:66;:::i;:::-;5607:2;5595:15;5612:66;5591:88;5576:104;;;;5682:2;5572:113;;5370:321;-1:-1:-1;;5370:321:1:o;12390:128::-;12430:3;12461:1;12457:6;12454:1;12451:13;12448:2;;;12467:18;;:::i;:::-;-1:-1:-1;12503:9:1;;12438:80::o;12523:228::-;12563:7;12689:1;12621:66;12617:74;12614:1;12611:81;12606:1;12599:9;12592:17;12588:105;12585:2;;;12696:18;;:::i;:::-;-1:-1:-1;12736:9:1;;12575:176::o;12756:258::-;12828:1;12838:113;12852:6;12849:1;12846:13;12838:113;;;12928:11;;;12922:18;12909:11;;;12902:39;12874:2;12867:10;12838:113;;;12969:6;12966:1;12963:13;12960:2;;;-1:-1:-1;;13004:1:1;12986:16;;12979:27;12809:205::o;13019:196::-;13058:3;13086:5;13076:2;;13095:18;;:::i;:::-;-1:-1:-1;13142:66:1;13131:78;;13066:149::o;13220:437::-;13299:1;13295:12;;;;13342;;;13363:2;;13417:4;13409:6;13405:17;13395:27;;13363:2;13470;13462:6;13459:14;13439:18;13436:38;13433:2;;;13507:77;13504:1;13497:88;13608:4;13605:1;13598:15;13636:4;13633:1;13626:15;13433:2;;13275:382;;;:::o;13662:184::-;13714:77;13711:1;13704:88;13811:4;13808:1;13801:15;13835:4;13832:1;13825:15
Swarm Source
ipfs://1d5262c783081150100d7feca4c5723bf9263d31d60c2498a52e26d8bd6c1e7d
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.