More Info
Private Name Tags
ContractCreator
TokenTracker
Sponsored
Latest 25 from a total of 30,757 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Mint | 60221441 | 3 mins ago | IN | 0 MATIC | 0.00935828 | ||||
Mint | 60221436 | 4 mins ago | IN | 0 MATIC | 0.00813244 | ||||
Mint | 60221396 | 5 mins ago | IN | 0 MATIC | 0.0120931 | ||||
Transfer | 60221320 | 8 mins ago | IN | 0 MATIC | 0.00699425 | ||||
Mint | 60221266 | 10 mins ago | IN | 0 MATIC | 0.01489516 | ||||
Transfer | 60221250 | 11 mins ago | IN | 0 MATIC | 0.00640628 | ||||
Mint | 60221248 | 11 mins ago | IN | 0 MATIC | 0.01120864 | ||||
Mint | 60221208 | 12 mins ago | IN | 0 MATIC | 0.01506791 | ||||
Mint | 60221184 | 13 mins ago | IN | 0 MATIC | 0.01414761 | ||||
Mint | 60221120 | 15 mins ago | IN | 0 MATIC | 0.00903363 | ||||
Mint | 60221116 | 15 mins ago | IN | 0 MATIC | 0.01125717 | ||||
Mint | 60221036 | 18 mins ago | IN | 0 MATIC | 0.01170747 | ||||
Mint | 60221002 | 19 mins ago | IN | 0 MATIC | 0.01416352 | ||||
Transfer | 60220965 | 21 mins ago | IN | 0 MATIC | 0.0075408 | ||||
Mint | 60220954 | 21 mins ago | IN | 0 MATIC | 0.01513659 | ||||
Mint | 60220908 | 23 mins ago | IN | 0 MATIC | 0.02113 | ||||
Mint | 60220907 | 23 mins ago | IN | 0 MATIC | 0.02059731 | ||||
Mint | 60220860 | 24 mins ago | IN | 0 MATIC | 0.02725656 | ||||
Mint | 60220852 | 25 mins ago | IN | 0 MATIC | 0.02520156 | ||||
Mint | 60220801 | 27 mins ago | IN | 0 MATIC | 0.01486256 | ||||
Transfer | 60220785 | 28 mins ago | IN | 0 MATIC | 0.00499277 | ||||
Mint | 60220776 | 28 mins ago | IN | 0 MATIC | 0.01026074 | ||||
Mint | 60220728 | 30 mins ago | IN | 0 MATIC | 0.01171672 | ||||
Mint | 60220694 | 31 mins ago | IN | 0 MATIC | 0.01581236 | ||||
Mint | 60220689 | 31 mins ago | IN | 0 MATIC | 0.01353133 |
Loading...
Loading
Contract Name:
Ginto
Compiler Version
v0.8.4+commit.c7e474f2
Optimization Enabled:
No with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT pragma solidity ^0.8.2; import "@openzeppelin/contracts/token/ERC20/ERC20.sol"; import "@openzeppelin/contracts/token/ERC20/extensions/ERC20Burnable.sol"; import "@openzeppelin/contracts/security/Pausable.sol"; import "@openzeppelin/contracts/access/AccessControl.sol"; import "@openzeppelin/contracts/security/ReentrancyGuard.sol"; contract Ginto is ERC20, ERC20Burnable, Pausable, AccessControl, ReentrancyGuard { bytes32 public constant PAUSER_ROLE = keccak256("PAUSER_ROLE"); bytes32 public constant MINTER_ROLE = keccak256("MINTER_ROLE"); bytes32 public constant BURNER_ROLE = keccak256("BURNER_ROLE"); mapping(uint256 => bool) usedNonces; address private signer; mapping(address => bool) private _blacklistedAddresses; event GintoMinted( address indexed player, uint256 indexed nonce, uint256 amount ); constructor(address _signer) ERC20("Ginto", "GINTO") { _setupRole(DEFAULT_ADMIN_ROLE, msg.sender); _setupRole(PAUSER_ROLE, msg.sender); _mint(msg.sender, 7900245000000000000000000); _setupRole(MINTER_ROLE, msg.sender); _setupRole(BURNER_ROLE, msg.sender); signer = _signer; } function setSigner(address _signer) public onlyRole(DEFAULT_ADMIN_ROLE) { signer = _signer; } function decimals() public view virtual override returns (uint8) { return 18; } function pause() public onlyRole(PAUSER_ROLE) { _pause(); } function unpause() public onlyRole(PAUSER_ROLE) { _unpause(); } function mint( uint256 amount, uint256 nonce, bytes memory _sig ) public nonReentrant { require(tx.origin == msg.sender, "indirect calling"); //@dev: nonce checker to avoid resending of request require(!usedNonces[nonce], "Nonce already used"); usedNonces[nonce] = true; //@dev: check if the wallet is blacklisted require(!_blacklistedAddresses[msg.sender], "blacklisted"); //@dev: signature verification to ensure that coupling is authorized by the server bytes32 message = prefixed( keccak256(abi.encodePacked(msg.sender, amount, nonce)) ); require(recoverSigner(message, _sig) == signer, "Invalid signer"); //@dev: mint the tokens! _mint(msg.sender, amount); emit GintoMinted(msg.sender, nonce, amount); } function _beforeTokenTransfer( address from, address to, uint256 amount ) internal override whenNotPaused { //@dev: check if the wallet is blacklisted require(!_blacklistedAddresses[from], "blacklisted sender"); //@dev: check if the wallet is blacklisted require(!_blacklistedAddresses[to], "blacklisted receiver"); super._beforeTokenTransfer(from, to, amount); } function splitSignature( bytes memory sig ) internal pure returns (uint8, bytes32, bytes32) { require(sig.length == 65, "Incorrect signature length"); bytes32 r; bytes32 s; uint8 v; assembly { //first 32 bytes, after the length prefix r := mload(add(sig, 0x20)) //next 32 bytes s := mload(add(sig, 0x40)) //final byte, first of next 32 bytes v := byte(0, mload(add(sig, 0x60))) } return (v, r, s); } function recoverSigner( bytes32 message, bytes memory sig ) internal pure returns (address) { uint8 v; bytes32 r; bytes32 s; (v, r, s) = splitSignature(sig); return ecrecover(message, v, r, s); } function prefixed(bytes32 hash) internal pure returns (bytes32) { return keccak256( abi.encodePacked("\x19Ethereum Signed Message:\n32", hash) ); } function setBlacklistAddress( address blacklistAddress, bool toggleBlacklistAddress ) public onlyRole(DEFAULT_ADMIN_ROLE) { _blacklistedAddresses[blacklistAddress] = toggleBlacklistAddress; } function isBlacklistedAddress( address blacklistAddress ) public view returns (bool) { return _blacklistedAddresses[blacklistAddress]; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/ERC20.sol) pragma solidity ^0.8.0; import "./IERC20.sol"; import "./extensions/IERC20Metadata.sol"; import "../../utils/Context.sol"; /** * @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, allowance(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 = allowance(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 Updates `owner` s allowance for `spender` based on spent `amount`. * * 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 {} }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.5.0) (token/ERC20/extensions/ERC20Burnable.sol) pragma solidity ^0.8.0; import "../ERC20.sol"; import "../../../utils/Context.sol"; /** * @dev Extension of {ERC20} that allows token holders to destroy both their own * tokens and those that they have an allowance for, in a way that can be * recognized off-chain (via event analysis). */ abstract contract ERC20Burnable is Context, ERC20 { /** * @dev Destroys `amount` tokens from the caller. * * See {ERC20-_burn}. */ function burn(uint256 amount) public virtual { _burn(_msgSender(), amount); } /** * @dev Destroys `amount` tokens from `account`, deducting from the caller's * allowance. * * See {ERC20-_burn} and {ERC20-allowance}. * * Requirements: * * - the caller must have allowance for ``accounts``'s tokens of at least * `amount`. */ function burnFrom(address account, uint256 amount) public virtual { _spendAllowance(account, _msgSender(), amount); _burn(account, amount); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (security/Pausable.sol) pragma solidity ^0.8.0; import "../utils/Context.sol"; /** * @dev Contract module which allows children to implement an emergency stop * mechanism that can be triggered by an authorized account. * * This module is used through inheritance. It will make available the * modifiers `whenNotPaused` and `whenPaused`, which can be applied to * the functions of your contract. Note that they will not be pausable by * simply including this module, only once the modifiers are put in place. */ abstract contract Pausable is Context { /** * @dev Emitted when the pause is triggered by `account`. */ event Paused(address account); /** * @dev Emitted when the pause is lifted by `account`. */ event Unpaused(address account); bool private _paused; /** * @dev Initializes the contract in unpaused state. */ constructor() { _paused = false; } /** * @dev Returns true if the contract is paused, and false otherwise. */ function paused() public view virtual returns (bool) { return _paused; } /** * @dev Modifier to make a function callable only when the contract is not paused. * * Requirements: * * - The contract must not be paused. */ modifier whenNotPaused() { require(!paused(), "Pausable: paused"); _; } /** * @dev Modifier to make a function callable only when the contract is paused. * * Requirements: * * - The contract must be paused. */ modifier whenPaused() { require(paused(), "Pausable: not paused"); _; } /** * @dev Triggers stopped state. * * Requirements: * * - The contract must not be paused. */ function _pause() internal virtual whenNotPaused { _paused = true; emit Paused(_msgSender()); } /** * @dev Returns to normal state. * * Requirements: * * - The contract must be paused. */ function _unpause() internal virtual whenPaused { _paused = false; emit Unpaused(_msgSender()); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.6.0) (access/AccessControl.sol) pragma solidity ^0.8.0; import "./IAccessControl.sol"; import "../utils/Context.sol"; import "../utils/Strings.sol"; import "../utils/introspection/ERC165.sol"; /** * @dev Contract module that allows children to implement role-based access * control mechanisms. This is a lightweight version that doesn't allow enumerating role * members except through off-chain means by accessing the contract event logs. Some * applications may benefit from on-chain enumerability, for those cases see * {AccessControlEnumerable}. * * Roles are referred to by their `bytes32` identifier. These should be exposed * in the external API and be unique. The best way to achieve this is by * using `public constant` hash digests: * * ``` * bytes32 public constant MY_ROLE = keccak256("MY_ROLE"); * ``` * * Roles can be used to represent a set of permissions. To restrict access to a * function call, use {hasRole}: * * ``` * function foo() public { * require(hasRole(MY_ROLE, msg.sender)); * ... * } * ``` * * Roles can be granted and revoked dynamically via the {grantRole} and * {revokeRole} functions. Each role has an associated admin role, and only * accounts that have a role's admin role can call {grantRole} and {revokeRole}. * * By default, the admin role for all roles is `DEFAULT_ADMIN_ROLE`, which means * that only accounts with this role will be able to grant or revoke other * roles. More complex role relationships can be created by using * {_setRoleAdmin}. * * WARNING: The `DEFAULT_ADMIN_ROLE` is also its own admin: it has permission to * grant and revoke this role. Extra precautions should be taken to secure * accounts that have been granted it. */ abstract contract AccessControl is Context, IAccessControl, ERC165 { struct RoleData { mapping(address => bool) members; bytes32 adminRole; } mapping(bytes32 => RoleData) private _roles; bytes32 public constant DEFAULT_ADMIN_ROLE = 0x00; /** * @dev Modifier that checks that an account has a specific role. Reverts * with a standardized message including the required role. * * The format of the revert reason is given by the following regular expression: * * /^AccessControl: account (0x[0-9a-f]{40}) is missing role (0x[0-9a-f]{64})$/ * * _Available since v4.1._ */ modifier onlyRole(bytes32 role) { _checkRole(role); _; } /** * @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 `_msgSender()` is missing `role`. * Overriding this function changes the behavior of the {onlyRole} modifier. * * Format of the revert message is described in {_checkRole}. * * _Available since v4.6._ */ function _checkRole(bytes32 role) internal view virtual { _checkRole(role, _msgSender()); } /** * @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()); } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol) pragma solidity ^0.8.0; /** * @dev Contract module that helps prevent reentrant calls to a function. * * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier * available, which can be applied to functions to make sure there are no nested * (reentrant) calls to them. * * Note that because there is a single `nonReentrant` guard, functions marked as * `nonReentrant` may not call one another. This can be worked around by making * those functions `private`, and then adding `external` `nonReentrant` entry * points to them. * * TIP: If you would like to learn more about reentrancy and alternative ways * to protect against it, check out our blog post * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul]. */ abstract contract ReentrancyGuard { // Booleans are more expensive than uint256 or any type that takes up a full // word because each write operation emits an extra SLOAD to first read the // slot's contents, replace the bits taken up by the boolean, and then write // back. This is the compiler's defense against contract upgrades and // pointer aliasing, and it cannot be disabled. // The values being non-zero value makes deployment a bit more expensive, // but in exchange the refund on every call to nonReentrant will be lower in // amount. Since refunds are capped to a percentage of the total // transaction's gas, it is best to keep them low in cases like this one, to // increase the likelihood of the full refund coming into effect. uint256 private constant _NOT_ENTERED = 1; uint256 private constant _ENTERED = 2; uint256 private _status; constructor() { _status = _NOT_ENTERED; } /** * @dev Prevents a contract from calling itself, directly or indirectly. * Calling a `nonReentrant` function from another `nonReentrant` * function is not supported. It is possible to prevent this from happening * by making the `nonReentrant` function external, and making it call a * `private` function that does the actual work. */ modifier nonReentrant() { // On the first call to nonReentrant, _notEntered will be true require(_status != _ENTERED, "ReentrancyGuard: reentrant call"); // Any calls to nonReentrant after this point will fail _status = _ENTERED; _; // By storing the original value once again, a refund is triggered (see // https://eips.ethereum.org/EIPS/eip-2200) _status = _NOT_ENTERED; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @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); /** * @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); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol) pragma solidity ^0.8.0; import "../IERC20.sol"; /** * @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); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (access/IAccessControl.sol) pragma solidity ^0.8.0; /** * @dev External interface of AccessControl declared to support ERC165 detection. */ interface IAccessControl { /** * @dev Emitted when `newAdminRole` is set as ``role``'s admin role, replacing `previousAdminRole` * * `DEFAULT_ADMIN_ROLE` is the starting admin for all roles, despite * {RoleAdminChanged} not being emitted signaling this. * * _Available since v3.1._ */ event RoleAdminChanged(bytes32 indexed role, bytes32 indexed previousAdminRole, bytes32 indexed newAdminRole); /** * @dev Emitted when `account` is granted `role`. * * `sender` is the account that originated the contract call, an admin role * bearer except when using {AccessControl-_setupRole}. */ event RoleGranted(bytes32 indexed role, address indexed account, address indexed sender); /** * @dev Emitted when `account` is revoked `role`. * * `sender` is the account that originated the contract call: * - if using `revokeRole`, it is the admin role bearer * - if using `renounceRole`, it is the role bearer (i.e. `account`) */ event RoleRevoked(bytes32 indexed role, address indexed account, address indexed sender); /** * @dev Returns `true` if `account` has been granted `role`. */ function hasRole(bytes32 role, address account) external view returns (bool); /** * @dev Returns the admin role that controls `role`. See {grantRole} and * {revokeRole}. * * To change a role's admin, use {AccessControl-_setRoleAdmin}. */ function getRoleAdmin(bytes32 role) external view returns (bytes32); /** * @dev Grants `role` to `account`. * * If `account` had not been already granted `role`, emits a {RoleGranted} * event. * * Requirements: * * - the caller must have ``role``'s admin role. */ function grantRole(bytes32 role, address account) external; /** * @dev Revokes `role` from `account`. * * If `account` had been granted `role`, emits a {RoleRevoked} event. * * Requirements: * * - the caller must have ``role``'s admin role. */ function revokeRole(bytes32 role, address account) external; /** * @dev Revokes `role` from the calling account. * * Roles are often managed via {grantRole} and {revokeRole}: this function's * purpose is to provide a mechanism for accounts to lose their privileges * if they are compromised (such as when a trusted device is misplaced). * * If the calling account had been granted `role`, emits a {RoleRevoked} * event. * * Requirements: * * - the caller must be `account`. */ function renounceRole(bytes32 role, address account) external; }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) pragma solidity ^0.8.0; import "./IERC165.sol"; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); }
{ "optimizer": { "enabled": false, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } }, "libraries": {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"address","name":"_signer","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":true,"internalType":"address","name":"player","type":"address"},{"indexed":true,"internalType":"uint256","name":"nonce","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"GintoMinted","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","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"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[],"name":"BURNER_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"DEFAULT_ADMIN_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MINTER_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PAUSER_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":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burnFrom","outputs":[],"stateMutability":"nonpayable","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":[{"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":"blacklistAddress","type":"address"}],"name":"isBlacklistedAddress","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"uint256","name":"nonce","type":"uint256"},{"internalType":"bytes","name":"_sig","type":"bytes"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"renounceRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"revokeRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"blacklistAddress","type":"address"},{"internalType":"bool","name":"toggleBlacklistAddress","type":"bool"}],"name":"setBlacklistAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_signer","type":"address"}],"name":"setSigner","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"},{"inputs":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040523480156200001157600080fd5b506040516200426338038062004263833981810160405281019062000037919062000776565b6040518060400160405280600581526020017f47696e746f0000000000000000000000000000000000000000000000000000008152506040518060400160405280600581526020017f47494e544f0000000000000000000000000000000000000000000000000000008152508160039080519060200190620000bb929190620006af565b508060049080519060200190620000d4929190620006af565b5050506000600560006101000a81548160ff02191690831515021790555060016007819055506200010f6000801b336200020a60201b60201c565b620001417f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a336200020a60201b60201c565b6200015e336a0688f123bd6011443400006200022060201b60201c565b620001907f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a6336200020a60201b60201c565b620001c27f3c11d16cbaffd01df69ce1c404f6340ee057498f5f00246190ea54220576a848336200020a60201b60201c565b80600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505062000af2565b6200021c82826200039960201b60201c565b5050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141562000293576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200028a90620008b5565b60405180910390fd5b620002a7600083836200048b60201b60201c565b8060026000828254620002bb919062000905565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825462000312919062000905565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051620003799190620008d7565b60405180910390a362000395600083836200061b60201b60201c565b5050565b620003ab82826200062060201b60201c565b620004875760016006600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506200042c6200068b60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b6200049b6200069360201b60201c565b15620004de576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620004d59062000871565b60405180910390fd5b600a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156200056e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620005659062000893565b60405180910390fd5b600a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615620005fe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620005f5906200084f565b60405180910390fd5b62000616838383620006aa60201b6200102a1760201c565b505050565b505050565b60006006600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600033905090565b6000600560009054906101000a900460ff16905090565b505050565b828054620006bd90620009a0565b90600052602060002090601f016020900481019282620006e157600085556200072d565b82601f10620006fc57805160ff19168380011785556200072d565b828001600101855582156200072d579182015b828111156200072c5782518255916020019190600101906200070f565b5b5090506200073c919062000740565b5090565b5b808211156200075b57600081600090555060010162000741565b5090565b600081519050620007708162000ad8565b92915050565b6000602082840312156200078957600080fd5b600062000799848285016200075f565b91505092915050565b6000620007b1601483620008f4565b9150620007be8262000a34565b602082019050919050565b6000620007d8601083620008f4565b9150620007e58262000a5d565b602082019050919050565b6000620007ff601283620008f4565b91506200080c8262000a86565b602082019050919050565b600062000826601f83620008f4565b9150620008338262000aaf565b602082019050919050565b620008498162000996565b82525050565b600060208201905081810360008301526200086a81620007a2565b9050919050565b600060208201905081810360008301526200088c81620007c9565b9050919050565b60006020820190508181036000830152620008ae81620007f0565b9050919050565b60006020820190508181036000830152620008d08162000817565b9050919050565b6000602082019050620008ee60008301846200083e565b92915050565b600082825260208201905092915050565b6000620009128262000996565b91506200091f8362000996565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115620009575762000956620009d6565b5b828201905092915050565b60006200096f8262000976565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b60006002820490506001821680620009b957607f821691505b60208210811415620009d057620009cf62000a05565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f626c61636b6c6973746564207265636569766572000000000000000000000000600082015250565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b7f626c61636b6c69737465642073656e6465720000000000000000000000000000600082015250565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b62000ae38162000962565b811462000aef57600080fd5b50565b6137618062000b026000396000f3fe608060405234801561001057600080fd5b50600436106101da5760003560e01c80635c975abb11610104578063a217fddf116100a2578063d539139311610071578063d539139314610569578063d547741f14610587578063dd62ed3e146105a3578063e63ab1e9146105d3576101da565b8063a217fddf146104cf578063a457c2d7146104ed578063a75551601461051d578063a9059cbb14610539576101da565b806379cc6790116100de57806379cc67901461045b5780638456cb591461047757806391d148541461048157806395d89b41146104b1576101da565b80635c975abb146103f15780636c19e7831461040f57806370a082311461042b576101da565b8063248a9ca31161017c57806336568abe1161014b57806336568abe1461037f578063395093511461039b5780633f4ba83a146103cb57806342966c68146103d5576101da565b8063248a9ca3146102f7578063282c51f3146103275780632f2ff15d14610345578063313ce56714610361576101da565b8063095ea7b3116101b8578063095ea7b3146102495780630bef0ec71461027957806318160ddd146102a957806323b872dd146102c7576101da565b806301ffc9a7146101df57806306fdde031461020f57806308dc9f421461022d575b600080fd5b6101f960048036038101906101f4919061245a565b6105f1565b6040516102069190612a30565b60405180910390f35b61021761066b565b6040516102249190612aab565b60405180910390f35b610247600480360381019061024291906124ac565b6106fd565b005b610263600480360381019061025e91906123b9565b610a0a565b6040516102709190612a30565b60405180910390f35b610293600480360381019061028e91906122c9565b610a2d565b6040516102a09190612a30565b60405180910390f35b6102b1610a83565b6040516102be9190612d8d565b60405180910390f35b6102e160048036038101906102dc919061232e565b610a8d565b6040516102ee9190612a30565b60405180910390f35b610311600480360381019061030c91906123f5565b610abc565b60405161031e9190612a4b565b60405180910390f35b61032f610adc565b60405161033c9190612a4b565b60405180910390f35b61035f600480360381019061035a919061241e565b610b00565b005b610369610b21565b6040516103769190612da8565b60405180910390f35b6103996004803603810190610394919061241e565b610b2a565b005b6103b560048036038101906103b091906123b9565b610bad565b6040516103c29190612a30565b60405180910390f35b6103d3610be4565b005b6103ef60048036038101906103ea9190612483565b610c19565b005b6103f9610c2d565b6040516104069190612a30565b60405180910390f35b610429600480360381019061042491906122c9565b610c44565b005b610445600480360381019061044091906122c9565b610c96565b6040516104529190612d8d565b60405180910390f35b610475600480360381019061047091906123b9565b610cde565b005b61047f610cfe565b005b61049b6004803603810190610496919061241e565b610d33565b6040516104a89190612a30565b60405180910390f35b6104b9610d9e565b6040516104c69190612aab565b60405180910390f35b6104d7610e30565b6040516104e49190612a4b565b60405180910390f35b610507600480360381019061050291906123b9565b610e37565b6040516105149190612a30565b60405180910390f35b6105376004803603810190610532919061237d565b610eae565b005b610553600480360381019061054e91906123b9565b610f17565b6040516105609190612a30565b60405180910390f35b610571610f3a565b60405161057e9190612a4b565b60405180910390f35b6105a1600480360381019061059c919061241e565b610f5e565b005b6105bd60048036038101906105b891906122f2565b610f7f565b6040516105ca9190612d8d565b60405180910390f35b6105db611006565b6040516105e89190612a4b565b60405180910390f35b60007f7965db0b000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061066457506106638261102f565b5b9050919050565b60606003805461067a9061301b565b80601f01602080910402602001604051908101604052809291908181526020018280546106a69061301b565b80156106f35780601f106106c8576101008083540402835291602001916106f3565b820191906000526020600020905b8154815290600101906020018083116106d657829003601f168201915b5050505050905090565b60026007541415610743576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161073a90612ced565b60405180910390fd5b60026007819055503373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff16146107b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107b090612d0d565b60405180910390fd5b6008600083815260200190815260200160002060009054906101000a900460ff161561081a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161081190612c2d565b60405180910390fd5b60016008600084815260200190815260200160002060006101000a81548160ff021916908315150217905550600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156108d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108ca90612ccd565b60405180910390fd5b60006109083385856040516020016108ed93929190612978565b60405160208183030381529060405280519060200120611099565b9050600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1661094d82846110c9565b73ffffffffffffffffffffffffffffffffffffffff16146109a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161099a90612c0d565b60405180910390fd5b6109ad338561113e565b823373ffffffffffffffffffffffffffffffffffffffff167f07a47e85f47a51fea9900bbc7ae0273ba1ee4ed4df47c88ee6e145f02fbf939d866040516109f49190612d8d565b60405180910390a3506001600781905550505050565b600080610a1561129e565b9050610a228185856112a6565b600191505092915050565b6000600a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b6000600254905090565b600080610a9861129e565b9050610aa5858285611471565b610ab08585856114fd565b60019150509392505050565b600060066000838152602001908152602001600020600101549050919050565b7f3c11d16cbaffd01df69ce1c404f6340ee057498f5f00246190ea54220576a84881565b610b0982610abc565b610b128161177e565b610b1c8383611792565b505050565b60006012905090565b610b3261129e565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610b9f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b9690612d4d565b60405180910390fd5b610ba98282611873565b5050565b600080610bb861129e565b9050610bd9818585610bca8589610f7f565b610bd49190612e40565b6112a6565b600191505092915050565b7f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a610c0e8161177e565b610c16611955565b50565b610c2a610c2461129e565b826119f7565b50565b6000600560009054906101000a900460ff16905090565b6000801b610c518161177e565b81600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610cf082610cea61129e565b83611471565b610cfa82826119f7565b5050565b7f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a610d288161177e565b610d30611bce565b50565b60006006600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b606060048054610dad9061301b565b80601f0160208091040260200160405190810160405280929190818152602001828054610dd99061301b565b8015610e265780601f10610dfb57610100808354040283529160200191610e26565b820191906000526020600020905b815481529060010190602001808311610e0957829003601f168201915b5050505050905090565b6000801b81565b600080610e4261129e565b90506000610e508286610f7f565b905083811015610e95576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e8c90612d2d565b60405180910390fd5b610ea282868684036112a6565b60019250505092915050565b6000801b610ebb8161177e565b81600a60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550505050565b600080610f2261129e565b9050610f2f8185856114fd565b600191505092915050565b7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a681565b610f6782610abc565b610f708161177e565b610f7a8383611873565b505050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b7f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a81565b505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000816040516020016110ac91906129b5565b604051602081830303815290604052805190602001209050919050565b6000806000806110d885611c71565b809350819450829550505050600186848484604051600081526020016040526040516111079493929190612a66565b6020604051602081039080840390855afa158015611129573d6000803e3d6000fd5b50505060206040510351935050505092915050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156111ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111a590612d6d565b60405180910390fd5b6111ba60008383611cea565b80600260008282546111cc9190612e40565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546112219190612e40565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516112869190612d8d565b60405180910390a361129a60008383611e5c565b5050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611316576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161130d90612c8d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611386576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161137d90612b6d565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516114649190612d8d565b60405180910390a3505050565b600061147d8484610f7f565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146114f757818110156114e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114e090612b8d565b60405180910390fd5b6114f684848484036112a6565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561156d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161156490612c6d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156115dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115d490612b0d565b60405180910390fd5b6115e8838383611cea565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561166e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161166590612bad565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546117019190612e40565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516117659190612d8d565b60405180910390a3611778848484611e5c565b50505050565b61178f8161178a61129e565b611e61565b50565b61179c8282610d33565b61186f5760016006600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555061181461129e565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b61187d8282610d33565b156119515760006006600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506118f661129e565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b60405160405180910390a45b5050565b61195d610c2d565b61199c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161199390612b2d565b60405180910390fd5b6000600560006101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa6119e061129e565b6040516119ed9190612a15565b60405180910390a1565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611a67576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a5e90612c4d565b60405180910390fd5b611a7382600083611cea565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611af9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611af090612b4d565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508160026000828254611b509190612ef0565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611bb59190612d8d565b60405180910390a3611bc983600084611e5c565b505050565b611bd6610c2d565b15611c16576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c0d90612bed565b60405180910390fd5b6001600560006101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258611c5a61129e565b604051611c679190612a15565b60405180910390a1565b60008060006041845114611cba576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cb190612bcd565b60405180910390fd5b60008060006020870151925060408701519150606087015160001a90508083839550955095505050509193909250565b611cf2610c2d565b15611d32576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d2990612bed565b60405180910390fd5b600a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615611dbf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611db690612cad565b60405180910390fd5b600a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615611e4c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e4390612acd565b60405180910390fd5b611e5783838361102a565b505050565b505050565b611e6b8282610d33565b611efa57611e908173ffffffffffffffffffffffffffffffffffffffff166014611efe565b611e9e8360001c6020611efe565b604051602001611eaf9291906129db565b6040516020818303038152906040526040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ef19190612aab565b60405180910390fd5b5050565b606060006002836002611f119190612e96565b611f1b9190612e40565b67ffffffffffffffff811115611f5a577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611f8c5781602001600182028036833780820191505090505b5090507f300000000000000000000000000000000000000000000000000000000000000081600081518110611fea577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053507f780000000000000000000000000000000000000000000000000000000000000081600181518110612074577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600060018460026120b49190612e96565b6120be9190612e40565b90505b60018111156121aa577f3031323334353637383961626364656600000000000000000000000000000000600f861660108110612126577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b1a60f81b828281518110612163577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600485901c9450806121a390612ff1565b90506120c1565b50600084146121ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121e590612aed565b60405180910390fd5b8091505092915050565b600061220b61220684612de8565b612dc3565b90508281526020810184848401111561222357600080fd5b61222e848285612faf565b509392505050565b600081359050612245816136b8565b92915050565b60008135905061225a816136cf565b92915050565b60008135905061226f816136e6565b92915050565b600081359050612284816136fd565b92915050565b600082601f83011261229b57600080fd5b81356122ab8482602086016121f8565b91505092915050565b6000813590506122c381613714565b92915050565b6000602082840312156122db57600080fd5b60006122e984828501612236565b91505092915050565b6000806040838503121561230557600080fd5b600061231385828601612236565b925050602061232485828601612236565b9150509250929050565b60008060006060848603121561234357600080fd5b600061235186828701612236565b935050602061236286828701612236565b9250506040612373868287016122b4565b9150509250925092565b6000806040838503121561239057600080fd5b600061239e85828601612236565b92505060206123af8582860161224b565b9150509250929050565b600080604083850312156123cc57600080fd5b60006123da85828601612236565b92505060206123eb858286016122b4565b9150509250929050565b60006020828403121561240757600080fd5b600061241584828501612260565b91505092915050565b6000806040838503121561243157600080fd5b600061243f85828601612260565b925050602061245085828601612236565b9150509250929050565b60006020828403121561246c57600080fd5b600061247a84828501612275565b91505092915050565b60006020828403121561249557600080fd5b60006124a3848285016122b4565b91505092915050565b6000806000606084860312156124c157600080fd5b60006124cf868287016122b4565b93505060206124e0868287016122b4565b925050604084013567ffffffffffffffff8111156124fd57600080fd5b6125098682870161228a565b9150509250925092565b61251c81612f24565b82525050565b61253361252e82612f24565b61307e565b82525050565b61254281612f36565b82525050565b61255181612f42565b82525050565b61256861256382612f42565b613090565b82525050565b600061257982612e19565b6125838185612e24565b9350612593818560208601612fbe565b61259c81613143565b840191505092915050565b60006125b282612e19565b6125bc8185612e35565b93506125cc818560208601612fbe565b80840191505092915050565b60006125e5601483612e24565b91506125f082613161565b602082019050919050565b6000612608602083612e24565b91506126138261318a565b602082019050919050565b600061262b602383612e24565b9150612636826131b3565b604082019050919050565b600061264e601483612e24565b915061265982613202565b602082019050919050565b6000612671602283612e24565b915061267c8261322b565b604082019050919050565b6000612694601c83612e35565b915061269f8261327a565b601c82019050919050565b60006126b7602283612e24565b91506126c2826132a3565b604082019050919050565b60006126da601d83612e24565b91506126e5826132f2565b602082019050919050565b60006126fd602683612e24565b91506127088261331b565b604082019050919050565b6000612720601a83612e24565b915061272b8261336a565b602082019050919050565b6000612743601083612e24565b915061274e82613393565b602082019050919050565b6000612766600e83612e24565b9150612771826133bc565b602082019050919050565b6000612789601283612e24565b9150612794826133e5565b602082019050919050565b60006127ac602183612e24565b91506127b78261340e565b604082019050919050565b60006127cf602583612e24565b91506127da8261345d565b604082019050919050565b60006127f2602483612e24565b91506127fd826134ac565b604082019050919050565b6000612815601283612e24565b9150612820826134fb565b602082019050919050565b6000612838600b83612e24565b915061284382613524565b602082019050919050565b600061285b601783612e35565b91506128668261354d565b601782019050919050565b600061287e601f83612e24565b915061288982613576565b602082019050919050565b60006128a1601083612e24565b91506128ac8261359f565b602082019050919050565b60006128c4602583612e24565b91506128cf826135c8565b604082019050919050565b60006128e7601183612e35565b91506128f282613617565b601182019050919050565b600061290a602f83612e24565b915061291582613640565b604082019050919050565b600061292d601f83612e24565b91506129388261368f565b602082019050919050565b61294c81612f98565b82525050565b61296361295e82612f98565b6130ac565b82525050565b61297281612fa2565b82525050565b60006129848286612522565b6014820191506129948285612952565b6020820191506129a48284612952565b602082019150819050949350505050565b60006129c082612687565b91506129cc8284612557565b60208201915081905092915050565b60006129e68261284e565b91506129f282856125a7565b91506129fd826128da565b9150612a0982846125a7565b91508190509392505050565b6000602082019050612a2a6000830184612513565b92915050565b6000602082019050612a456000830184612539565b92915050565b6000602082019050612a606000830184612548565b92915050565b6000608082019050612a7b6000830187612548565b612a886020830186612969565b612a956040830185612548565b612aa26060830184612548565b95945050505050565b60006020820190508181036000830152612ac5818461256e565b905092915050565b60006020820190508181036000830152612ae6816125d8565b9050919050565b60006020820190508181036000830152612b06816125fb565b9050919050565b60006020820190508181036000830152612b268161261e565b9050919050565b60006020820190508181036000830152612b4681612641565b9050919050565b60006020820190508181036000830152612b6681612664565b9050919050565b60006020820190508181036000830152612b86816126aa565b9050919050565b60006020820190508181036000830152612ba6816126cd565b9050919050565b60006020820190508181036000830152612bc6816126f0565b9050919050565b60006020820190508181036000830152612be681612713565b9050919050565b60006020820190508181036000830152612c0681612736565b9050919050565b60006020820190508181036000830152612c2681612759565b9050919050565b60006020820190508181036000830152612c468161277c565b9050919050565b60006020820190508181036000830152612c668161279f565b9050919050565b60006020820190508181036000830152612c86816127c2565b9050919050565b60006020820190508181036000830152612ca6816127e5565b9050919050565b60006020820190508181036000830152612cc681612808565b9050919050565b60006020820190508181036000830152612ce68161282b565b9050919050565b60006020820190508181036000830152612d0681612871565b9050919050565b60006020820190508181036000830152612d2681612894565b9050919050565b60006020820190508181036000830152612d46816128b7565b9050919050565b60006020820190508181036000830152612d66816128fd565b9050919050565b60006020820190508181036000830152612d8681612920565b9050919050565b6000602082019050612da26000830184612943565b92915050565b6000602082019050612dbd6000830184612969565b92915050565b6000612dcd612dde565b9050612dd9828261304d565b919050565b6000604051905090565b600067ffffffffffffffff821115612e0357612e02613114565b5b612e0c82613143565b9050602081019050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b6000612e4b82612f98565b9150612e5683612f98565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612e8b57612e8a6130b6565b5b828201905092915050565b6000612ea182612f98565b9150612eac83612f98565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612ee557612ee46130b6565b5b828202905092915050565b6000612efb82612f98565b9150612f0683612f98565b925082821015612f1957612f186130b6565b5b828203905092915050565b6000612f2f82612f78565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b82818337600083830152505050565b60005b83811015612fdc578082015181840152602081019050612fc1565b83811115612feb576000848401525b50505050565b6000612ffc82612f98565b915060008214156130105761300f6130b6565b5b600182039050919050565b6000600282049050600182168061303357607f821691505b60208210811415613047576130466130e5565b5b50919050565b61305682613143565b810181811067ffffffffffffffff8211171561307557613074613114565b5b80604052505050565b60006130898261309a565b9050919050565b6000819050919050565b60006130a582613154565b9050919050565b6000819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f626c61636b6c6973746564207265636569766572000000000000000000000000600082015250565b7f537472696e67733a20686578206c656e67746820696e73756666696369656e74600082015250565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b7f19457468657265756d205369676e6564204d6573736167653a0a333200000000600082015250565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b7f496e636f7272656374207369676e6174757265206c656e677468000000000000600082015250565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b7f496e76616c6964207369676e6572000000000000000000000000000000000000600082015250565b7f4e6f6e636520616c726561647920757365640000000000000000000000000000600082015250565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f626c61636b6c69737465642073656e6465720000000000000000000000000000600082015250565b7f626c61636b6c6973746564000000000000000000000000000000000000000000600082015250565b7f416363657373436f6e74726f6c3a206163636f756e7420000000000000000000600082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f696e6469726563742063616c6c696e6700000000000000000000000000000000600082015250565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b7f206973206d697373696e6720726f6c6520000000000000000000000000000000600082015250565b7f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560008201527f20726f6c657320666f722073656c660000000000000000000000000000000000602082015250565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b6136c181612f24565b81146136cc57600080fd5b50565b6136d881612f36565b81146136e357600080fd5b50565b6136ef81612f42565b81146136fa57600080fd5b50565b61370681612f4c565b811461371157600080fd5b50565b61371d81612f98565b811461372857600080fd5b5056fea2646970667358221220cbc370a2ecc6c3a32d2c542eb128a1c3e15f7aeaf1cf1b8444df2fe9e96aa4de64736f6c6343000804003300000000000000000000000081663fc0b2c503db8a37f8c57f803934ee9eed50
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101da5760003560e01c80635c975abb11610104578063a217fddf116100a2578063d539139311610071578063d539139314610569578063d547741f14610587578063dd62ed3e146105a3578063e63ab1e9146105d3576101da565b8063a217fddf146104cf578063a457c2d7146104ed578063a75551601461051d578063a9059cbb14610539576101da565b806379cc6790116100de57806379cc67901461045b5780638456cb591461047757806391d148541461048157806395d89b41146104b1576101da565b80635c975abb146103f15780636c19e7831461040f57806370a082311461042b576101da565b8063248a9ca31161017c57806336568abe1161014b57806336568abe1461037f578063395093511461039b5780633f4ba83a146103cb57806342966c68146103d5576101da565b8063248a9ca3146102f7578063282c51f3146103275780632f2ff15d14610345578063313ce56714610361576101da565b8063095ea7b3116101b8578063095ea7b3146102495780630bef0ec71461027957806318160ddd146102a957806323b872dd146102c7576101da565b806301ffc9a7146101df57806306fdde031461020f57806308dc9f421461022d575b600080fd5b6101f960048036038101906101f4919061245a565b6105f1565b6040516102069190612a30565b60405180910390f35b61021761066b565b6040516102249190612aab565b60405180910390f35b610247600480360381019061024291906124ac565b6106fd565b005b610263600480360381019061025e91906123b9565b610a0a565b6040516102709190612a30565b60405180910390f35b610293600480360381019061028e91906122c9565b610a2d565b6040516102a09190612a30565b60405180910390f35b6102b1610a83565b6040516102be9190612d8d565b60405180910390f35b6102e160048036038101906102dc919061232e565b610a8d565b6040516102ee9190612a30565b60405180910390f35b610311600480360381019061030c91906123f5565b610abc565b60405161031e9190612a4b565b60405180910390f35b61032f610adc565b60405161033c9190612a4b565b60405180910390f35b61035f600480360381019061035a919061241e565b610b00565b005b610369610b21565b6040516103769190612da8565b60405180910390f35b6103996004803603810190610394919061241e565b610b2a565b005b6103b560048036038101906103b091906123b9565b610bad565b6040516103c29190612a30565b60405180910390f35b6103d3610be4565b005b6103ef60048036038101906103ea9190612483565b610c19565b005b6103f9610c2d565b6040516104069190612a30565b60405180910390f35b610429600480360381019061042491906122c9565b610c44565b005b610445600480360381019061044091906122c9565b610c96565b6040516104529190612d8d565b60405180910390f35b610475600480360381019061047091906123b9565b610cde565b005b61047f610cfe565b005b61049b6004803603810190610496919061241e565b610d33565b6040516104a89190612a30565b60405180910390f35b6104b9610d9e565b6040516104c69190612aab565b60405180910390f35b6104d7610e30565b6040516104e49190612a4b565b60405180910390f35b610507600480360381019061050291906123b9565b610e37565b6040516105149190612a30565b60405180910390f35b6105376004803603810190610532919061237d565b610eae565b005b610553600480360381019061054e91906123b9565b610f17565b6040516105609190612a30565b60405180910390f35b610571610f3a565b60405161057e9190612a4b565b60405180910390f35b6105a1600480360381019061059c919061241e565b610f5e565b005b6105bd60048036038101906105b891906122f2565b610f7f565b6040516105ca9190612d8d565b60405180910390f35b6105db611006565b6040516105e89190612a4b565b60405180910390f35b60007f7965db0b000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061066457506106638261102f565b5b9050919050565b60606003805461067a9061301b565b80601f01602080910402602001604051908101604052809291908181526020018280546106a69061301b565b80156106f35780601f106106c8576101008083540402835291602001916106f3565b820191906000526020600020905b8154815290600101906020018083116106d657829003601f168201915b5050505050905090565b60026007541415610743576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161073a90612ced565b60405180910390fd5b60026007819055503373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff16146107b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107b090612d0d565b60405180910390fd5b6008600083815260200190815260200160002060009054906101000a900460ff161561081a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161081190612c2d565b60405180910390fd5b60016008600084815260200190815260200160002060006101000a81548160ff021916908315150217905550600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156108d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108ca90612ccd565b60405180910390fd5b60006109083385856040516020016108ed93929190612978565b60405160208183030381529060405280519060200120611099565b9050600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1661094d82846110c9565b73ffffffffffffffffffffffffffffffffffffffff16146109a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161099a90612c0d565b60405180910390fd5b6109ad338561113e565b823373ffffffffffffffffffffffffffffffffffffffff167f07a47e85f47a51fea9900bbc7ae0273ba1ee4ed4df47c88ee6e145f02fbf939d866040516109f49190612d8d565b60405180910390a3506001600781905550505050565b600080610a1561129e565b9050610a228185856112a6565b600191505092915050565b6000600a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b6000600254905090565b600080610a9861129e565b9050610aa5858285611471565b610ab08585856114fd565b60019150509392505050565b600060066000838152602001908152602001600020600101549050919050565b7f3c11d16cbaffd01df69ce1c404f6340ee057498f5f00246190ea54220576a84881565b610b0982610abc565b610b128161177e565b610b1c8383611792565b505050565b60006012905090565b610b3261129e565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610b9f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b9690612d4d565b60405180910390fd5b610ba98282611873565b5050565b600080610bb861129e565b9050610bd9818585610bca8589610f7f565b610bd49190612e40565b6112a6565b600191505092915050565b7f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a610c0e8161177e565b610c16611955565b50565b610c2a610c2461129e565b826119f7565b50565b6000600560009054906101000a900460ff16905090565b6000801b610c518161177e565b81600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610cf082610cea61129e565b83611471565b610cfa82826119f7565b5050565b7f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a610d288161177e565b610d30611bce565b50565b60006006600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b606060048054610dad9061301b565b80601f0160208091040260200160405190810160405280929190818152602001828054610dd99061301b565b8015610e265780601f10610dfb57610100808354040283529160200191610e26565b820191906000526020600020905b815481529060010190602001808311610e0957829003601f168201915b5050505050905090565b6000801b81565b600080610e4261129e565b90506000610e508286610f7f565b905083811015610e95576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e8c90612d2d565b60405180910390fd5b610ea282868684036112a6565b60019250505092915050565b6000801b610ebb8161177e565b81600a60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550505050565b600080610f2261129e565b9050610f2f8185856114fd565b600191505092915050565b7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a681565b610f6782610abc565b610f708161177e565b610f7a8383611873565b505050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b7f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a81565b505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000816040516020016110ac91906129b5565b604051602081830303815290604052805190602001209050919050565b6000806000806110d885611c71565b809350819450829550505050600186848484604051600081526020016040526040516111079493929190612a66565b6020604051602081039080840390855afa158015611129573d6000803e3d6000fd5b50505060206040510351935050505092915050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156111ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111a590612d6d565b60405180910390fd5b6111ba60008383611cea565b80600260008282546111cc9190612e40565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546112219190612e40565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516112869190612d8d565b60405180910390a361129a60008383611e5c565b5050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611316576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161130d90612c8d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611386576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161137d90612b6d565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516114649190612d8d565b60405180910390a3505050565b600061147d8484610f7f565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146114f757818110156114e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114e090612b8d565b60405180910390fd5b6114f684848484036112a6565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561156d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161156490612c6d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156115dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115d490612b0d565b60405180910390fd5b6115e8838383611cea565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561166e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161166590612bad565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546117019190612e40565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516117659190612d8d565b60405180910390a3611778848484611e5c565b50505050565b61178f8161178a61129e565b611e61565b50565b61179c8282610d33565b61186f5760016006600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555061181461129e565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b61187d8282610d33565b156119515760006006600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506118f661129e565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b60405160405180910390a45b5050565b61195d610c2d565b61199c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161199390612b2d565b60405180910390fd5b6000600560006101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa6119e061129e565b6040516119ed9190612a15565b60405180910390a1565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611a67576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a5e90612c4d565b60405180910390fd5b611a7382600083611cea565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611af9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611af090612b4d565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508160026000828254611b509190612ef0565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611bb59190612d8d565b60405180910390a3611bc983600084611e5c565b505050565b611bd6610c2d565b15611c16576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c0d90612bed565b60405180910390fd5b6001600560006101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258611c5a61129e565b604051611c679190612a15565b60405180910390a1565b60008060006041845114611cba576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cb190612bcd565b60405180910390fd5b60008060006020870151925060408701519150606087015160001a90508083839550955095505050509193909250565b611cf2610c2d565b15611d32576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d2990612bed565b60405180910390fd5b600a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615611dbf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611db690612cad565b60405180910390fd5b600a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615611e4c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e4390612acd565b60405180910390fd5b611e5783838361102a565b505050565b505050565b611e6b8282610d33565b611efa57611e908173ffffffffffffffffffffffffffffffffffffffff166014611efe565b611e9e8360001c6020611efe565b604051602001611eaf9291906129db565b6040516020818303038152906040526040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ef19190612aab565b60405180910390fd5b5050565b606060006002836002611f119190612e96565b611f1b9190612e40565b67ffffffffffffffff811115611f5a577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611f8c5781602001600182028036833780820191505090505b5090507f300000000000000000000000000000000000000000000000000000000000000081600081518110611fea577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053507f780000000000000000000000000000000000000000000000000000000000000081600181518110612074577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600060018460026120b49190612e96565b6120be9190612e40565b90505b60018111156121aa577f3031323334353637383961626364656600000000000000000000000000000000600f861660108110612126577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b1a60f81b828281518110612163577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600485901c9450806121a390612ff1565b90506120c1565b50600084146121ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121e590612aed565b60405180910390fd5b8091505092915050565b600061220b61220684612de8565b612dc3565b90508281526020810184848401111561222357600080fd5b61222e848285612faf565b509392505050565b600081359050612245816136b8565b92915050565b60008135905061225a816136cf565b92915050565b60008135905061226f816136e6565b92915050565b600081359050612284816136fd565b92915050565b600082601f83011261229b57600080fd5b81356122ab8482602086016121f8565b91505092915050565b6000813590506122c381613714565b92915050565b6000602082840312156122db57600080fd5b60006122e984828501612236565b91505092915050565b6000806040838503121561230557600080fd5b600061231385828601612236565b925050602061232485828601612236565b9150509250929050565b60008060006060848603121561234357600080fd5b600061235186828701612236565b935050602061236286828701612236565b9250506040612373868287016122b4565b9150509250925092565b6000806040838503121561239057600080fd5b600061239e85828601612236565b92505060206123af8582860161224b565b9150509250929050565b600080604083850312156123cc57600080fd5b60006123da85828601612236565b92505060206123eb858286016122b4565b9150509250929050565b60006020828403121561240757600080fd5b600061241584828501612260565b91505092915050565b6000806040838503121561243157600080fd5b600061243f85828601612260565b925050602061245085828601612236565b9150509250929050565b60006020828403121561246c57600080fd5b600061247a84828501612275565b91505092915050565b60006020828403121561249557600080fd5b60006124a3848285016122b4565b91505092915050565b6000806000606084860312156124c157600080fd5b60006124cf868287016122b4565b93505060206124e0868287016122b4565b925050604084013567ffffffffffffffff8111156124fd57600080fd5b6125098682870161228a565b9150509250925092565b61251c81612f24565b82525050565b61253361252e82612f24565b61307e565b82525050565b61254281612f36565b82525050565b61255181612f42565b82525050565b61256861256382612f42565b613090565b82525050565b600061257982612e19565b6125838185612e24565b9350612593818560208601612fbe565b61259c81613143565b840191505092915050565b60006125b282612e19565b6125bc8185612e35565b93506125cc818560208601612fbe565b80840191505092915050565b60006125e5601483612e24565b91506125f082613161565b602082019050919050565b6000612608602083612e24565b91506126138261318a565b602082019050919050565b600061262b602383612e24565b9150612636826131b3565b604082019050919050565b600061264e601483612e24565b915061265982613202565b602082019050919050565b6000612671602283612e24565b915061267c8261322b565b604082019050919050565b6000612694601c83612e35565b915061269f8261327a565b601c82019050919050565b60006126b7602283612e24565b91506126c2826132a3565b604082019050919050565b60006126da601d83612e24565b91506126e5826132f2565b602082019050919050565b60006126fd602683612e24565b91506127088261331b565b604082019050919050565b6000612720601a83612e24565b915061272b8261336a565b602082019050919050565b6000612743601083612e24565b915061274e82613393565b602082019050919050565b6000612766600e83612e24565b9150612771826133bc565b602082019050919050565b6000612789601283612e24565b9150612794826133e5565b602082019050919050565b60006127ac602183612e24565b91506127b78261340e565b604082019050919050565b60006127cf602583612e24565b91506127da8261345d565b604082019050919050565b60006127f2602483612e24565b91506127fd826134ac565b604082019050919050565b6000612815601283612e24565b9150612820826134fb565b602082019050919050565b6000612838600b83612e24565b915061284382613524565b602082019050919050565b600061285b601783612e35565b91506128668261354d565b601782019050919050565b600061287e601f83612e24565b915061288982613576565b602082019050919050565b60006128a1601083612e24565b91506128ac8261359f565b602082019050919050565b60006128c4602583612e24565b91506128cf826135c8565b604082019050919050565b60006128e7601183612e35565b91506128f282613617565b601182019050919050565b600061290a602f83612e24565b915061291582613640565b604082019050919050565b600061292d601f83612e24565b91506129388261368f565b602082019050919050565b61294c81612f98565b82525050565b61296361295e82612f98565b6130ac565b82525050565b61297281612fa2565b82525050565b60006129848286612522565b6014820191506129948285612952565b6020820191506129a48284612952565b602082019150819050949350505050565b60006129c082612687565b91506129cc8284612557565b60208201915081905092915050565b60006129e68261284e565b91506129f282856125a7565b91506129fd826128da565b9150612a0982846125a7565b91508190509392505050565b6000602082019050612a2a6000830184612513565b92915050565b6000602082019050612a456000830184612539565b92915050565b6000602082019050612a606000830184612548565b92915050565b6000608082019050612a7b6000830187612548565b612a886020830186612969565b612a956040830185612548565b612aa26060830184612548565b95945050505050565b60006020820190508181036000830152612ac5818461256e565b905092915050565b60006020820190508181036000830152612ae6816125d8565b9050919050565b60006020820190508181036000830152612b06816125fb565b9050919050565b60006020820190508181036000830152612b268161261e565b9050919050565b60006020820190508181036000830152612b4681612641565b9050919050565b60006020820190508181036000830152612b6681612664565b9050919050565b60006020820190508181036000830152612b86816126aa565b9050919050565b60006020820190508181036000830152612ba6816126cd565b9050919050565b60006020820190508181036000830152612bc6816126f0565b9050919050565b60006020820190508181036000830152612be681612713565b9050919050565b60006020820190508181036000830152612c0681612736565b9050919050565b60006020820190508181036000830152612c2681612759565b9050919050565b60006020820190508181036000830152612c468161277c565b9050919050565b60006020820190508181036000830152612c668161279f565b9050919050565b60006020820190508181036000830152612c86816127c2565b9050919050565b60006020820190508181036000830152612ca6816127e5565b9050919050565b60006020820190508181036000830152612cc681612808565b9050919050565b60006020820190508181036000830152612ce68161282b565b9050919050565b60006020820190508181036000830152612d0681612871565b9050919050565b60006020820190508181036000830152612d2681612894565b9050919050565b60006020820190508181036000830152612d46816128b7565b9050919050565b60006020820190508181036000830152612d66816128fd565b9050919050565b60006020820190508181036000830152612d8681612920565b9050919050565b6000602082019050612da26000830184612943565b92915050565b6000602082019050612dbd6000830184612969565b92915050565b6000612dcd612dde565b9050612dd9828261304d565b919050565b6000604051905090565b600067ffffffffffffffff821115612e0357612e02613114565b5b612e0c82613143565b9050602081019050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b6000612e4b82612f98565b9150612e5683612f98565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612e8b57612e8a6130b6565b5b828201905092915050565b6000612ea182612f98565b9150612eac83612f98565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612ee557612ee46130b6565b5b828202905092915050565b6000612efb82612f98565b9150612f0683612f98565b925082821015612f1957612f186130b6565b5b828203905092915050565b6000612f2f82612f78565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b82818337600083830152505050565b60005b83811015612fdc578082015181840152602081019050612fc1565b83811115612feb576000848401525b50505050565b6000612ffc82612f98565b915060008214156130105761300f6130b6565b5b600182039050919050565b6000600282049050600182168061303357607f821691505b60208210811415613047576130466130e5565b5b50919050565b61305682613143565b810181811067ffffffffffffffff8211171561307557613074613114565b5b80604052505050565b60006130898261309a565b9050919050565b6000819050919050565b60006130a582613154565b9050919050565b6000819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f626c61636b6c6973746564207265636569766572000000000000000000000000600082015250565b7f537472696e67733a20686578206c656e67746820696e73756666696369656e74600082015250565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b7f19457468657265756d205369676e6564204d6573736167653a0a333200000000600082015250565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b7f496e636f7272656374207369676e6174757265206c656e677468000000000000600082015250565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b7f496e76616c6964207369676e6572000000000000000000000000000000000000600082015250565b7f4e6f6e636520616c726561647920757365640000000000000000000000000000600082015250565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f626c61636b6c69737465642073656e6465720000000000000000000000000000600082015250565b7f626c61636b6c6973746564000000000000000000000000000000000000000000600082015250565b7f416363657373436f6e74726f6c3a206163636f756e7420000000000000000000600082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f696e6469726563742063616c6c696e6700000000000000000000000000000000600082015250565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b7f206973206d697373696e6720726f6c6520000000000000000000000000000000600082015250565b7f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560008201527f20726f6c657320666f722073656c660000000000000000000000000000000000602082015250565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b6136c181612f24565b81146136cc57600080fd5b50565b6136d881612f36565b81146136e357600080fd5b50565b6136ef81612f42565b81146136fa57600080fd5b50565b61370681612f4c565b811461371157600080fd5b50565b61371d81612f98565b811461372857600080fd5b5056fea2646970667358221220cbc370a2ecc6c3a32d2c542eb128a1c3e15f7aeaf1cf1b8444df2fe9e96aa4de64736f6c63430008040033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
00000000000000000000000081663fc0b2c503db8a37f8c57f803934ee9eed50
-----Decoded View---------------
Arg [0] : _signer (address): 0x81663fc0b2c503DB8A37F8c57f803934Ee9Eed50
-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 00000000000000000000000081663fc0b2c503db8a37f8c57f803934ee9eed50
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.