ERC-721
Overview
Max Total Supply
777 BETT
Holders
354
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
0 BETTLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
Bettinardi
Compiler Version
v0.8.6+commit.11564f7e
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.0; // imports import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/token/ERC721/ERC721.sol"; import "@openzeppelin/contracts/utils/cryptography/ECDSA.sol"; // for all the // golfers // out there contract Bettinardi is ERC721, Ownable { using Strings for uint256; bool public revealed = false; uint256 public constant per_mint_max_nft = 5; uint256 public max_nft = 777; uint256 public price_nft = 0.2 ether; mapping(uint256 => bool) private usedNonce; address public bypass = 0xE3ab0D7eec24FA0D08a8b0E6c5C61BE5aaD00D1C; mapping(address => bool) public presalerList; uint256 public totalSupply; string private _tokenBaseURI; string private _contractURI; string public _mysteryURI; bool public gift_gate = false; bool public sale_gate = false; bool public presale_gate = false; mapping(address => uint256) public presalerListPurchases; constructor() ERC721("BETTINARDI", "BETT") {} function gift(uint256 amount, address wallet) external onlyOwner { require(gift_gate, "Gift Not Open"); for (uint256 j = 0; j < amount; j++) { _safeMint(wallet, totalSupply + j + 1); } totalSupply += amount; } function regularMint( uint256 amount, uint256 nonce, address wallet, bytes memory signature ) external payable { require(sale_gate, "Closed"); require(totalSupply + amount <= max_nft, "Max Supply"); require(price_nft * amount <= msg.value, "Eth Amount Invalid"); require(amount <= per_mint_max_nft, "Max NFTs To Buy Exceeded"); require(!usedNonce[nonce], "Nonce Ran"); require( matchSigner(hashTransaction(nonce, wallet, amount), signature), "Bypass Didnt Work" ); usedNonce[nonce] = true; for (uint256 j = 0; j < amount; j++) { _safeMint(msg.sender, totalSupply + j + 1); } totalSupply += amount; } function presaleMint(uint256 amount, uint256 nonce) external payable { require(presale_gate, "closed"); require(totalSupply + amount <= max_nft, "Supply Overflow"); require(price_nft * amount <= msg.value, "Eth Error"); require(presalerList[msg.sender], "Not On Presale List"); usedNonce[nonce] = true; for (uint256 j = 0; j < amount; j++) { _safeMint(msg.sender, totalSupply + j + 1); } totalSupply += amount; } function addPresale(address[] calldata entries) external onlyOwner { for (uint256 i = 0; i < entries.length; i++) { address entry = entries[i]; require(entry != address(0), "Require Address"); require(!presalerList[entry], "Not On List"); presalerList[entry] = true; } } function hashTransaction( uint256 nonce, address wallet, uint256 amount ) internal pure returns (bytes32) { bytes32 hash = keccak256( abi.encodePacked( "\x19Ethereum Signed Message:\n32", keccak256(abi.encodePacked(nonce, wallet, amount)) ) ); return hash; } function matchSigner(bytes32 hash, bytes memory signature) internal view returns (bool) { return bypass == ECDSA.recover(hash, signature); } function editGift() external onlyOwner { gift_gate = !gift_gate; } function editMystery() public onlyOwner { revealed = !revealed; } function editMysteryUri(string calldata URI) public onlyOwner { _mysteryURI = URI; } function editPriceNft(uint256 price) external onlyOwner { price_nft = price; } function setMaxSupply(uint256 max) external onlyOwner { max_nft = max; } function previewContract() public view returns (string memory) { return _contractURI; } function modifyContractUri(string calldata URI) external onlyOwner { _contractURI = URI; } function editSaleGate() external onlyOwner { sale_gate = !sale_gate; } function editToken(string calldata URI) external onlyOwner { _tokenBaseURI = URI; } function withdrawTheMoney() external { uint256 currentBalance = address(this).balance; payable(0x84e8158D31A1051f823Df0da76167a976fBAaAE5).transfer( (currentBalance * 8500) / 10000 ); payable(0x435e0191177Bd65B4c2204Fc25816D63646CCdB7).transfer( (currentBalance * 825) / 10000 ); payable(0x01e7ac0f16009b0d968e63Cda02eB5cC5a8303Cc).transfer( (currentBalance * 675) / 10000 ); } function tokenURI(uint256 tokenId) public view override(ERC721) returns (string memory) { require(_exists(tokenId), "Cannot query non-existent token"); if (revealed == false) { return _mysteryURI; } return string( abi.encodePacked(_tokenBaseURI, tokenId.toString(), ".json") ); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.0 (access/Ownable.sol) pragma solidity ^0.8.0; import "../utils/Context.sol"; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.0 (token/ERC721/ERC721.sol) pragma solidity ^0.8.0; import "./IERC721.sol"; import "./IERC721Receiver.sol"; import "./extensions/IERC721Metadata.sol"; import "../../utils/Address.sol"; import "../../utils/Context.sol"; import "../../utils/Strings.sol"; import "../../utils/introspection/ERC165.sol"; /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension, but not including the Enumerable extension, which is available separately as * {ERC721Enumerable}. */ contract ERC721 is Context, ERC165, IERC721, IERC721Metadata { using Address for address; using Strings for uint256; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to owner address mapping(uint256 => address) private _owners; // Mapping owner address to token count mapping(address => uint256) private _balances; // Mapping from token ID to approved address mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; /** * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view virtual override returns (uint256) { require(owner != address(0), "ERC721: balance query for the zero address"); return _balances[owner]; } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { address owner = _owners[tokenId]; require(owner != address(0), "ERC721: owner query for nonexistent token"); return owner; } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token"); string memory baseURI = _baseURI(); return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ""; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overriden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ""; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public virtual override { address owner = ERC721.ownerOf(tokenId); require(to != owner, "ERC721: approval to current owner"); require( _msgSender() == owner || isApprovedForAll(owner, _msgSender()), "ERC721: approve caller is not owner nor approved for all" ); _approve(to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { require(_exists(tokenId), "ERC721: approved query for nonexistent token"); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { _setApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { //solhint-disable-next-line max-line-length require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ""); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public virtual override { require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _safeTransfer(from, to, tokenId, _data); } /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * `_data` is additional data, it has no specified format and it is sent in call to `to`. * * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g. * implement alternative mechanisms to perform token transfer, such as signature-based. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeTransfer( address from, address to, uint256 tokenId, bytes memory _data ) internal virtual { _transfer(from, to, tokenId); require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer"); } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), * and stop existing when they are burned (`_burn`). */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return _owners[tokenId] != address(0); } /** * @dev Returns whether `spender` is allowed to manage `tokenId`. * * Requirements: * * - `tokenId` must exist. */ function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) { require(_exists(tokenId), "ERC721: operator query for nonexistent token"); address owner = ERC721.ownerOf(tokenId); return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender)); } /** * @dev Safely mints `tokenId` and transfers it to `to`. * * Requirements: * * - `tokenId` must not exist. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeMint(address to, uint256 tokenId) internal virtual { _safeMint(to, tokenId, ""); } /** * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is * forwarded in {IERC721Receiver-onERC721Received} to contract recipients. */ function _safeMint( address to, uint256 tokenId, bytes memory _data ) internal virtual { _mint(to, tokenId); require( _checkOnERC721Received(address(0), to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer" ); } /** * @dev Mints `tokenId` and transfers it to `to`. * * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible * * Requirements: * * - `tokenId` must not exist. * - `to` cannot be the zero address. * * Emits a {Transfer} event. */ function _mint(address to, uint256 tokenId) internal virtual { require(to != address(0), "ERC721: mint to the zero address"); require(!_exists(tokenId), "ERC721: token already minted"); _beforeTokenTransfer(address(0), to, tokenId); _balances[to] += 1; _owners[tokenId] = to; emit Transfer(address(0), to, tokenId); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId) internal virtual { address owner = ERC721.ownerOf(tokenId); _beforeTokenTransfer(owner, address(0), tokenId); // Clear approvals _approve(address(0), tokenId); _balances[owner] -= 1; delete _owners[tokenId]; emit Transfer(owner, address(0), tokenId); } /** * @dev Transfers `tokenId` from `from` to `to`. * As opposed to {transferFrom}, this imposes no restrictions on msg.sender. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) internal virtual { require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer of token that is not own"); require(to != address(0), "ERC721: transfer to the zero address"); _beforeTokenTransfer(from, to, tokenId); // Clear approvals from the previous owner _approve(address(0), tokenId); _balances[from] -= 1; _balances[to] += 1; _owners[tokenId] = to; emit Transfer(from, to, tokenId); } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve(address to, uint256 tokenId) internal virtual { _tokenApprovals[tokenId] = to; emit Approval(ERC721.ownerOf(tokenId), to, tokenId); } /** * @dev Approve `operator` to operate on all of `owner` tokens * * Emits a {ApprovalForAll} event. */ function _setApprovalForAll( address owner, address operator, bool approved ) internal virtual { require(owner != operator, "ERC721: approve to caller"); _operatorApprovals[owner][operator] = approved; emit ApprovalForAll(owner, operator, approved); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address. * The call is not executed if the target address is not a contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { if (to.isContract()) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) { return retval == IERC721Receiver.onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert("ERC721: transfer to non ERC721Receiver implementer"); } else { assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, ``from``'s `tokenId` 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 tokenId ) internal virtual {} }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.0 (utils/cryptography/ECDSA.sol) pragma solidity ^0.8.0; import "../Strings.sol"; /** * @dev Elliptic Curve Digital Signature Algorithm (ECDSA) operations. * * These functions can be used to verify that a message was signed by the holder * of the private keys of a given address. */ library ECDSA { enum RecoverError { NoError, InvalidSignature, InvalidSignatureLength, InvalidSignatureS, InvalidSignatureV } function _throwError(RecoverError error) private pure { if (error == RecoverError.NoError) { return; // no error: do nothing } else if (error == RecoverError.InvalidSignature) { revert("ECDSA: invalid signature"); } else if (error == RecoverError.InvalidSignatureLength) { revert("ECDSA: invalid signature length"); } else if (error == RecoverError.InvalidSignatureS) { revert("ECDSA: invalid signature 's' value"); } else if (error == RecoverError.InvalidSignatureV) { revert("ECDSA: invalid signature 'v' value"); } } /** * @dev Returns the address that signed a hashed message (`hash`) with * `signature` or error string. This address can then be used for verification purposes. * * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures: * this function rejects them by requiring the `s` value to be in the lower * half order, and the `v` value to be either 27 or 28. * * IMPORTANT: `hash` _must_ be the result of a hash operation for the * verification to be secure: it is possible to craft signatures that * recover to arbitrary addresses for non-hashed data. A safe way to ensure * this is by receiving a hash of the original message (which may otherwise * be too long), and then calling {toEthSignedMessageHash} on it. * * Documentation for signature generation: * - with https://web3js.readthedocs.io/en/v1.3.4/web3-eth-accounts.html#sign[Web3.js] * - with https://docs.ethers.io/v5/api/signer/#Signer-signMessage[ethers] * * _Available since v4.3._ */ function tryRecover(bytes32 hash, bytes memory signature) internal pure returns (address, RecoverError) { // Check the signature length // - case 65: r,s,v signature (standard) // - case 64: r,vs signature (cf https://eips.ethereum.org/EIPS/eip-2098) _Available since v4.1._ if (signature.length == 65) { bytes32 r; bytes32 s; uint8 v; // ecrecover takes the signature parameters, and the only way to get them // currently is to use assembly. assembly { r := mload(add(signature, 0x20)) s := mload(add(signature, 0x40)) v := byte(0, mload(add(signature, 0x60))) } return tryRecover(hash, v, r, s); } else if (signature.length == 64) { bytes32 r; bytes32 vs; // ecrecover takes the signature parameters, and the only way to get them // currently is to use assembly. assembly { r := mload(add(signature, 0x20)) vs := mload(add(signature, 0x40)) } return tryRecover(hash, r, vs); } else { return (address(0), RecoverError.InvalidSignatureLength); } } /** * @dev Returns the address that signed a hashed message (`hash`) with * `signature`. This address can then be used for verification purposes. * * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures: * this function rejects them by requiring the `s` value to be in the lower * half order, and the `v` value to be either 27 or 28. * * IMPORTANT: `hash` _must_ be the result of a hash operation for the * verification to be secure: it is possible to craft signatures that * recover to arbitrary addresses for non-hashed data. A safe way to ensure * this is by receiving a hash of the original message (which may otherwise * be too long), and then calling {toEthSignedMessageHash} on it. */ function recover(bytes32 hash, bytes memory signature) internal pure returns (address) { (address recovered, RecoverError error) = tryRecover(hash, signature); _throwError(error); return recovered; } /** * @dev Overload of {ECDSA-tryRecover} that receives the `r` and `vs` short-signature fields separately. * * See https://eips.ethereum.org/EIPS/eip-2098[EIP-2098 short signatures] * * _Available since v4.3._ */ function tryRecover( bytes32 hash, bytes32 r, bytes32 vs ) internal pure returns (address, RecoverError) { bytes32 s; uint8 v; assembly { s := and(vs, 0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff) v := add(shr(255, vs), 27) } return tryRecover(hash, v, r, s); } /** * @dev Overload of {ECDSA-recover} that receives the `r and `vs` short-signature fields separately. * * _Available since v4.2._ */ function recover( bytes32 hash, bytes32 r, bytes32 vs ) internal pure returns (address) { (address recovered, RecoverError error) = tryRecover(hash, r, vs); _throwError(error); return recovered; } /** * @dev Overload of {ECDSA-tryRecover} that receives the `v`, * `r` and `s` signature fields separately. * * _Available since v4.3._ */ function tryRecover( bytes32 hash, uint8 v, bytes32 r, bytes32 s ) internal pure returns (address, RecoverError) { // EIP-2 still allows signature malleability for ecrecover(). Remove this possibility and make the signature // unique. Appendix F in the Ethereum Yellow paper (https://ethereum.github.io/yellowpaper/paper.pdf), defines // the valid range for s in (301): 0 < s < secp256k1n ÷ 2 + 1, and for v in (302): v ∈ {27, 28}. Most // signatures from current libraries generate a unique signature with an s-value in the lower half order. // // If your library generates malleable signatures, such as s-values in the upper range, calculate a new s-value // with 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEBAAEDCE6AF48A03BBFD25E8CD0364141 - s1 and flip v from 27 to 28 or // vice versa. If your library also generates signatures with 0/1 for v instead 27/28, add 27 to v to accept // these malleable signatures as well. if (uint256(s) > 0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF5D576E7357A4501DDFE92F46681B20A0) { return (address(0), RecoverError.InvalidSignatureS); } if (v != 27 && v != 28) { return (address(0), RecoverError.InvalidSignatureV); } // If the signature is valid (and not malleable), return the signer address address signer = ecrecover(hash, v, r, s); if (signer == address(0)) { return (address(0), RecoverError.InvalidSignature); } return (signer, RecoverError.NoError); } /** * @dev Overload of {ECDSA-recover} that receives the `v`, * `r` and `s` signature fields separately. */ function recover( bytes32 hash, uint8 v, bytes32 r, bytes32 s ) internal pure returns (address) { (address recovered, RecoverError error) = tryRecover(hash, v, r, s); _throwError(error); return recovered; } /** * @dev Returns an Ethereum Signed Message, created from a `hash`. This * produces hash corresponding to the one signed with the * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`] * JSON-RPC method as part of EIP-191. * * See {recover}. */ function toEthSignedMessageHash(bytes32 hash) internal pure returns (bytes32) { // 32 is the length in bytes of hash, // enforced by the type signature above return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n32", hash)); } /** * @dev Returns an Ethereum Signed Message, created from `s`. This * produces hash corresponding to the one signed with the * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`] * JSON-RPC method as part of EIP-191. * * See {recover}. */ function toEthSignedMessageHash(bytes memory s) internal pure returns (bytes32) { return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n", Strings.toString(s.length), s)); } /** * @dev Returns an Ethereum Signed Typed Data, created from a * `domainSeparator` and a `structHash`. This produces hash corresponding * to the one signed with the * https://eips.ethereum.org/EIPS/eip-712[`eth_signTypedData`] * JSON-RPC method as part of EIP-712. * * See {recover}. */ function toTypedDataHash(bytes32 domainSeparator, bytes32 structHash) internal pure returns (bytes32) { return keccak256(abi.encodePacked("\x19\x01", domainSeparator, structHash)); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.0 (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.0 (token/ERC721/IERC721.sol) pragma solidity ^0.8.0; import "../../utils/introspection/IERC165.sol"; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.0 (token/ERC721/IERC721Receiver.sol) pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.0 (token/ERC721/extensions/IERC721Metadata.sol) pragma solidity ^0.8.0; import "../IERC721.sol"; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.0 (utils/Address.sol) pragma solidity ^0.8.0; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; assembly { size := extcodesize(account) } return size > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.0 (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.0 (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.0 (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":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"_mysteryURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"entries","type":"address[]"}],"name":"addPresale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"bypass","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"editGift","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"editMystery","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"URI","type":"string"}],"name":"editMysteryUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"price","type":"uint256"}],"name":"editPriceNft","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"editSaleGate","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"URI","type":"string"}],"name":"editToken","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"address","name":"wallet","type":"address"}],"name":"gift","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"gift_gate","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"max_nft","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"string","name":"URI","type":"string"}],"name":"modifyContractUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"per_mint_max_nft","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"uint256","name":"nonce","type":"uint256"}],"name":"presaleMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"presale_gate","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"presalerList","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"presalerListPurchases","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"previewContract","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price_nft","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"uint256","name":"nonce","type":"uint256"},{"internalType":"address","name":"wallet","type":"address"},{"internalType":"bytes","name":"signature","type":"bytes"}],"name":"regularMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sale_gate","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"max","type":"uint256"}],"name":"setMaxSupply","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":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","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":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawTheMoney","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040526000600660146101000a81548160ff0219169083151502179055506103096007556702c68af0bb14000060085573e3ab0d7eec24fa0d08a8b0e6c5c61be5aad00d1c600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506000601060006101000a81548160ff0219169083151502179055506000601060016101000a81548160ff0219169083151502179055506000601060026101000a81548160ff021916908315150217905550348015620000e457600080fd5b506040518060400160405280600a81526020017f42455454494e41524449000000000000000000000000000000000000000000008152506040518060400160405280600481526020017f424554540000000000000000000000000000000000000000000000000000000081525081600090805190602001906200016992919062000279565b5080600190805190602001906200018292919062000279565b505050620001a562000199620001ab60201b60201c565b620001b360201b60201c565b6200038e565b600033905090565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620002879062000329565b90600052602060002090601f016020900481019282620002ab5760008555620002f7565b82601f10620002c657805160ff1916838001178555620002f7565b82800160010185558215620002f7579182015b82811115620002f6578251825591602001919060010190620002d9565b5b5090506200030691906200030a565b5090565b5b80821115620003255760008160009055506001016200030b565b5090565b600060028204905060018216806200034257607f821691505b602082108114156200035957620003586200035f565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b615340806200039e6000396000f3fe6080604052600436106102515760003560e01c80638b94f1f611610139578063b09afa30116100b6578063d13e9c5b1161007a578063d13e9c5b1461085a578063d6954d4e14610871578063dbe46c861461089c578063e985e9c5146108c7578063f2fde38b14610904578063fbc0b13b1461092d57610251565b8063b09afa3014610775578063b88d4fde1461079e578063c3bb288d146107c7578063c87b56dd146107f2578063cfdb32fb1461082f57610251565b80639c2d4e41116100fd5780639c2d4e41146106a45780639cf2e8d6146106bb578063a22cb465146106f8578063a321ade514610721578063a4f8eaeb1461074a57610251565b80638b94f1f6146105bf5780638da5cb5b146105e8578063940c03581461061357806395d89b411461063c5780639bf803161461066757610251565b80634571dc6e116101d2578063681a39d611610196578063681a39d6146104d95780636f8b44b01461050257806370a082311461052b578063715018a6146105685780637ac92ea71461057f57806383a076be1461059657610251565b80634571dc6e1461042257806351830227146104395780635710dedd1461046457806358dd175d146104805780636352211e1461049c57610251565b806318160ddd1161021957806318160ddd1461034f57806322ad0c711461037a57806323b872dd146103a5578063270e5326146103ce57806342842e0e146103f957610251565b806301ffc9a71461025657806306fdde0314610293578063081812fc146102be578063095ea7b3146102fb5780631687439314610324575b600080fd5b34801561026257600080fd5b5061027d60048036038101906102789190613822565b610958565b60405161028a919061416d565b60405180910390f35b34801561029f57600080fd5b506102a8610a3a565b6040516102b591906141cd565b60405180910390f35b3480156102ca57600080fd5b506102e560048036038101906102e091906138c9565b610acc565b6040516102f29190614106565b60405180910390f35b34801561030757600080fd5b50610322600480360381019061031d9190613795565b610b51565b005b34801561033057600080fd5b50610339610c69565b604051610346919061460f565b60405180910390f35b34801561035b57600080fd5b50610364610c6f565b604051610371919061460f565b60405180910390f35b34801561038657600080fd5b5061038f610c75565b60405161039c919061416d565b60405180910390f35b3480156103b157600080fd5b506103cc60048036038101906103c7919061367f565b610c88565b005b3480156103da57600080fd5b506103e3610ce8565b6040516103f09190614106565b60405180910390f35b34801561040557600080fd5b50610420600480360381019061041b919061367f565b610d0e565b005b34801561042e57600080fd5b50610437610d2e565b005b34801561044557600080fd5b5061044e610dd6565b60405161045b919061416d565b60405180910390f35b61047e60048036038101906104799190613976565b610de9565b005b61049a60048036038101906104959190613936565b61105f565b005b3480156104a857600080fd5b506104c360048036038101906104be91906138c9565b611267565b6040516104d09190614106565b60405180910390f35b3480156104e557600080fd5b5061050060048036038101906104fb919061387c565b611319565b005b34801561050e57600080fd5b50610529600480360381019061052491906138c9565b6113ab565b005b34801561053757600080fd5b50610552600480360381019061054d9190613612565b611431565b60405161055f919061460f565b60405180910390f35b34801561057457600080fd5b5061057d6114e9565b005b34801561058b57600080fd5b50610594611571565b005b3480156105a257600080fd5b506105bd60048036038101906105b891906138f6565b611619565b005b3480156105cb57600080fd5b506105e660048036038101906105e191906138c9565b611743565b005b3480156105f457600080fd5b506105fd6117c9565b60405161060a9190614106565b60405180910390f35b34801561061f57600080fd5b5061063a6004803603810190610635919061387c565b6117f3565b005b34801561064857600080fd5b50610651611885565b60405161065e91906141cd565b60405180910390f35b34801561067357600080fd5b5061068e60048036038101906106899190613612565b611917565b60405161069b919061460f565b60405180910390f35b3480156106b057600080fd5b506106b961192f565b005b3480156106c757600080fd5b506106e260048036038101906106dd9190613612565b611a96565b6040516106ef919061416d565b60405180910390f35b34801561070457600080fd5b5061071f600480360381019061071a9190613755565b611ab6565b005b34801561072d57600080fd5b506107486004803603810190610743919061387c565b611acc565b005b34801561075657600080fd5b5061075f611b5e565b60405161076c91906141cd565b60405180910390f35b34801561078157600080fd5b5061079c600480360381019061079791906137d5565b611bec565b005b3480156107aa57600080fd5b506107c560048036038101906107c091906136d2565b611e10565b005b3480156107d357600080fd5b506107dc611e72565b6040516107e9919061460f565b60405180910390f35b3480156107fe57600080fd5b50610819600480360381019061081491906138c9565b611e78565b60405161082691906141cd565b60405180910390f35b34801561083b57600080fd5b50610844611fa3565b604051610851919061416d565b60405180910390f35b34801561086657600080fd5b5061086f611fb6565b005b34801561087d57600080fd5b5061088661205e565b60405161089391906141cd565b60405180910390f35b3480156108a857600080fd5b506108b16120f0565b6040516108be919061416d565b60405180910390f35b3480156108d357600080fd5b506108ee60048036038101906108e9919061363f565b612103565b6040516108fb919061416d565b60405180910390f35b34801561091057600080fd5b5061092b60048036038101906109269190613612565b612197565b005b34801561093957600080fd5b5061094261228f565b60405161094f919061460f565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610a2357507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610a335750610a3282612294565b5b9050919050565b606060008054610a49906148ba565b80601f0160208091040260200160405190810160405280929190818152602001828054610a75906148ba565b8015610ac25780601f10610a9757610100808354040283529160200191610ac2565b820191906000526020600020905b815481529060010190602001808311610aa557829003601f168201915b5050505050905090565b6000610ad7826122fe565b610b16576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b0d9061446f565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610b5c82611267565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610bcd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bc49061454f565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610bec61236a565b73ffffffffffffffffffffffffffffffffffffffff161480610c1b5750610c1a81610c1561236a565b612103565b5b610c5a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c51906143cf565b60405180910390fd5b610c648383612372565b505050565b60075481565b600c5481565b601060009054906101000a900460ff1681565b610c99610c9361236a565b8261242b565b610cd8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ccf9061456f565b60405180910390fd5b610ce3838383612509565b505050565b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b610d2983838360405180602001604052806000815250611e10565b505050565b610d3661236a565b73ffffffffffffffffffffffffffffffffffffffff16610d546117c9565b73ffffffffffffffffffffffffffffffffffffffff1614610daa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610da19061448f565b60405180910390fd5b600660149054906101000a900460ff1615600660146101000a81548160ff021916908315150217905550565b600660149054906101000a900460ff1681565b601060019054906101000a900460ff16610e38576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e2f9061422f565b60405180910390fd5b60075484600c54610e4991906146d8565b1115610e8a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e81906145cf565b60405180910390fd5b3484600854610e99919061475f565b1115610eda576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ed1906144cf565b60405180910390fd5b6005841115610f1e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f15906142af565b60405180910390fd5b6009600084815260200190815260200160002060009054906101000a900460ff1615610f7f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f76906145af565b60405180910390fd5b610f93610f8d848487612765565b826127c6565b610fd2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fc9906143af565b60405180910390fd5b60016009600085815260200190815260200160002060006101000a81548160ff02191690831515021790555060005b8481101561103f5761102c33600183600c5461101d91906146d8565b61102791906146d8565b61282a565b80806110379061491d565b915050611001565b5083600c600082825461105291906146d8565b9250508190555050505050565b601060029054906101000a900460ff166110ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110a59061438f565b60405180910390fd5b60075482600c546110bf91906146d8565b1115611100576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110f79061430f565b60405180910390fd5b348260085461110f919061475f565b1115611150576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611147906144ef565b60405180910390fd5b600b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff166111dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111d39061452f565b60405180910390fd5b60016009600083815260200190815260200160002060006101000a81548160ff02191690831515021790555060005b828110156112495761123633600183600c5461122791906146d8565b61123191906146d8565b61282a565b80806112419061491d565b91505061120b565b5081600c600082825461125c91906146d8565b925050819055505050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611310576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113079061440f565b60405180910390fd5b80915050919050565b61132161236a565b73ffffffffffffffffffffffffffffffffffffffff1661133f6117c9565b73ffffffffffffffffffffffffffffffffffffffff1614611395576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161138c9061448f565b60405180910390fd5b8181600d91906113a69291906133ea565b505050565b6113b361236a565b73ffffffffffffffffffffffffffffffffffffffff166113d16117c9565b73ffffffffffffffffffffffffffffffffffffffff1614611427576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161141e9061448f565b60405180910390fd5b8060078190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156114a2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611499906143ef565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6114f161236a565b73ffffffffffffffffffffffffffffffffffffffff1661150f6117c9565b73ffffffffffffffffffffffffffffffffffffffff1614611565576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161155c9061448f565b60405180910390fd5b61156f6000612848565b565b61157961236a565b73ffffffffffffffffffffffffffffffffffffffff166115976117c9565b73ffffffffffffffffffffffffffffffffffffffff16146115ed576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115e49061448f565b60405180910390fd5b601060009054906101000a900460ff1615601060006101000a81548160ff021916908315150217905550565b61162161236a565b73ffffffffffffffffffffffffffffffffffffffff1661163f6117c9565b73ffffffffffffffffffffffffffffffffffffffff1614611695576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161168c9061448f565b60405180910390fd5b601060009054906101000a900460ff166116e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116db9061458f565b60405180910390fd5b60005b828110156117255761171282600183600c5461170391906146d8565b61170d91906146d8565b61282a565b808061171d9061491d565b9150506116e7565b5081600c600082825461173891906146d8565b925050819055505050565b61174b61236a565b73ffffffffffffffffffffffffffffffffffffffff166117696117c9565b73ffffffffffffffffffffffffffffffffffffffff16146117bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117b69061448f565b60405180910390fd5b8060088190555050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6117fb61236a565b73ffffffffffffffffffffffffffffffffffffffff166118196117c9565b73ffffffffffffffffffffffffffffffffffffffff161461186f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118669061448f565b60405180910390fd5b8181600e91906118809291906133ea565b505050565b606060018054611894906148ba565b80601f01602080910402602001604051908101604052809291908181526020018280546118c0906148ba565b801561190d5780601f106118e25761010080835404028352916020019161190d565b820191906000526020600020905b8154815290600101906020018083116118f057829003601f168201915b5050505050905090565b60116020528060005260406000206000915090505481565b60004790507384e8158d31a1051f823df0da76167a976fbaaae573ffffffffffffffffffffffffffffffffffffffff166108fc61271061213484611973919061475f565b61197d919061472e565b9081150290604051600060405180830381858888f193505050501580156119a8573d6000803e3d6000fd5b5073435e0191177bd65b4c2204fc25816d63646ccdb773ffffffffffffffffffffffffffffffffffffffff166108fc612710610339846119e8919061475f565b6119f2919061472e565b9081150290604051600060405180830381858888f19350505050158015611a1d573d6000803e3d6000fd5b507301e7ac0f16009b0d968e63cda02eb5cc5a8303cc73ffffffffffffffffffffffffffffffffffffffff166108fc6127106102a384611a5d919061475f565b611a67919061472e565b9081150290604051600060405180830381858888f19350505050158015611a92573d6000803e3d6000fd5b5050565b600b6020528060005260406000206000915054906101000a900460ff1681565b611ac8611ac161236a565b838361290e565b5050565b611ad461236a565b73ffffffffffffffffffffffffffffffffffffffff16611af26117c9565b73ffffffffffffffffffffffffffffffffffffffff1614611b48576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b3f9061448f565b60405180910390fd5b8181600f9190611b599291906133ea565b505050565b600f8054611b6b906148ba565b80601f0160208091040260200160405190810160405280929190818152602001828054611b97906148ba565b8015611be45780601f10611bb957610100808354040283529160200191611be4565b820191906000526020600020905b815481529060010190602001808311611bc757829003601f168201915b505050505081565b611bf461236a565b73ffffffffffffffffffffffffffffffffffffffff16611c126117c9565b73ffffffffffffffffffffffffffffffffffffffff1614611c68576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c5f9061448f565b60405180910390fd5b60005b82829050811015611e0b576000838383818110611c8b57611c8a614a8b565b5b9050602002016020810190611ca09190613612565b9050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611d12576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d09906145ef565b60405180910390fd5b600b60008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615611d9f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d96906142cf565b60405180910390fd5b6001600b60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550508080611e039061491d565b915050611c6b565b505050565b611e21611e1b61236a565b8361242b565b611e60576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e579061456f565b60405180910390fd5b611e6c84848484612a7b565b50505050565b60085481565b6060611e83826122fe565b611ec2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611eb99061450f565b60405180910390fd5b60001515600660149054906101000a900460ff1615151415611f7057600f8054611eeb906148ba565b80601f0160208091040260200160405190810160405280929190818152602001828054611f17906148ba565b8015611f645780601f10611f3957610100808354040283529160200191611f64565b820191906000526020600020905b815481529060010190602001808311611f4757829003601f168201915b50505050509050611f9e565b600d611f7b83612ad7565b604051602001611f8c929190614074565b60405160208183030381529060405290505b919050565b601060029054906101000a900460ff1681565b611fbe61236a565b73ffffffffffffffffffffffffffffffffffffffff16611fdc6117c9565b73ffffffffffffffffffffffffffffffffffffffff1614612032576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120299061448f565b60405180910390fd5b601060019054906101000a900460ff1615601060016101000a81548160ff021916908315150217905550565b6060600e805461206d906148ba565b80601f0160208091040260200160405190810160405280929190818152602001828054612099906148ba565b80156120e65780601f106120bb576101008083540402835291602001916120e6565b820191906000526020600020905b8154815290600101906020018083116120c957829003601f168201915b5050505050905090565b601060019054906101000a900460ff1681565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61219f61236a565b73ffffffffffffffffffffffffffffffffffffffff166121bd6117c9565b73ffffffffffffffffffffffffffffffffffffffff1614612213576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161220a9061448f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612283576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161227a9061426f565b60405180910390fd5b61228c81612848565b50565b600581565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166123e583611267565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000612436826122fe565b612475576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161246c9061436f565b60405180910390fd5b600061248083611267565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806124ef57508373ffffffffffffffffffffffffffffffffffffffff166124d784610acc565b73ffffffffffffffffffffffffffffffffffffffff16145b8061250057506124ff8185612103565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661252982611267565b73ffffffffffffffffffffffffffffffffffffffff161461257f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612576906144af565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156125ef576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125e6906142ef565b60405180910390fd5b6125fa838383612c38565b612605600082612372565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461265591906147b9565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546126ac91906146d8565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b60008084848460405160200161277d939291906140c9565b604051602081830303815290604052805190602001206040516020016127a391906140a3565b604051602081830303815290604052805190602001209050809150509392505050565b60006127d28383612c3d565b73ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614905092915050565b612844828260405180602001604052806000815250612c64565b5050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561297d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129749061432f565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051612a6e919061416d565b60405180910390a3505050565b612a86848484612509565b612a9284848484612cbf565b612ad1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ac89061424f565b60405180910390fd5b50505050565b60606000821415612b1f576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612c33565b600082905060005b60008214612b51578080612b3a9061491d565b915050600a82612b4a919061472e565b9150612b27565b60008167ffffffffffffffff811115612b6d57612b6c614aba565b5b6040519080825280601f01601f191660200182016040528015612b9f5781602001600182028036833780820191505090505b5090505b60008514612c2c57600182612bb891906147b9565b9150600a85612bc7919061499e565b6030612bd391906146d8565b60f81b818381518110612be957612be8614a8b565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612c25919061472e565b9450612ba3565b8093505050505b919050565b505050565b6000806000612c4c8585612e56565b91509150612c5981612ed9565b819250505092915050565b612c6e83836130ae565b612c7b6000848484612cbf565b612cba576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612cb19061424f565b60405180910390fd5b505050565b6000612ce08473ffffffffffffffffffffffffffffffffffffffff1661327c565b15612e49578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612d0961236a565b8786866040518563ffffffff1660e01b8152600401612d2b9493929190614121565b602060405180830381600087803b158015612d4557600080fd5b505af1925050508015612d7657506040513d601f19601f82011682018060405250810190612d73919061384f565b60015b612df9573d8060008114612da6576040519150601f19603f3d011682016040523d82523d6000602084013e612dab565b606091505b50600081511415612df1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612de89061424f565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612e4e565b600190505b949350505050565b600080604183511415612e985760008060006020860151925060408601519150606086015160001a9050612e8c8782858561328f565b94509450505050612ed2565b604083511415612ec9576000806020850151915060408501519050612ebe86838361339c565b935093505050612ed2565b60006002915091505b9250929050565b60006004811115612eed57612eec614a2d565b5b816004811115612f0057612eff614a2d565b5b1415612f0b576130ab565b60016004811115612f1f57612f1e614a2d565b5b816004811115612f3257612f31614a2d565b5b1415612f73576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f6a906141ef565b60405180910390fd5b60026004811115612f8757612f86614a2d565b5b816004811115612f9a57612f99614a2d565b5b1415612fdb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612fd29061420f565b60405180910390fd5b60036004811115612fef57612fee614a2d565b5b81600481111561300257613001614a2d565b5b1415613043576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161303a9061434f565b60405180910390fd5b60048081111561305657613055614a2d565b5b81600481111561306957613068614a2d565b5b14156130aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130a19061442f565b60405180910390fd5b5b50565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561311e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131159061444f565b60405180910390fd5b613127816122fe565b15613167576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161315e9061428f565b60405180910390fd5b61317360008383612c38565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546131c391906146d8565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a08360001c11156132ca576000600391509150613393565b601b8560ff16141580156132e25750601c8560ff1614155b156132f4576000600491509150613393565b6000600187878787604051600081526020016040526040516133199493929190614188565b6020604051602081039080840390855afa15801561333b573d6000803e3d6000fd5b505050602060405103519050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561338a57600060019250925050613393565b80600092509250505b94509492505050565b6000806000807f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff85169150601b8560ff1c0190506133dc8782888561328f565b935093505050935093915050565b8280546133f6906148ba565b90600052602060002090601f016020900481019282613418576000855561345f565b82601f1061343157803560ff191683800117855561345f565b8280016001018555821561345f579182015b8281111561345e578235825591602001919060010190613443565b5b50905061346c9190613470565b5090565b5b80821115613489576000816000905550600101613471565b5090565b60006134a061349b8461464f565b61462a565b9050828152602081018484840111156134bc576134bb614af8565b5b6134c7848285614878565b509392505050565b6000813590506134de816152ae565b92915050565b60008083601f8401126134fa576134f9614aee565b5b8235905067ffffffffffffffff81111561351757613516614ae9565b5b60208301915083602082028301111561353357613532614af3565b5b9250929050565b600081359050613549816152c5565b92915050565b60008135905061355e816152dc565b92915050565b600081519050613573816152dc565b92915050565b600082601f83011261358e5761358d614aee565b5b813561359e84826020860161348d565b91505092915050565b60008083601f8401126135bd576135bc614aee565b5b8235905067ffffffffffffffff8111156135da576135d9614ae9565b5b6020830191508360018202830111156135f6576135f5614af3565b5b9250929050565b60008135905061360c816152f3565b92915050565b60006020828403121561362857613627614b02565b5b6000613636848285016134cf565b91505092915050565b6000806040838503121561365657613655614b02565b5b6000613664858286016134cf565b9250506020613675858286016134cf565b9150509250929050565b60008060006060848603121561369857613697614b02565b5b60006136a6868287016134cf565b93505060206136b7868287016134cf565b92505060406136c8868287016135fd565b9150509250925092565b600080600080608085870312156136ec576136eb614b02565b5b60006136fa878288016134cf565b945050602061370b878288016134cf565b935050604061371c878288016135fd565b925050606085013567ffffffffffffffff81111561373d5761373c614afd565b5b61374987828801613579565b91505092959194509250565b6000806040838503121561376c5761376b614b02565b5b600061377a858286016134cf565b925050602061378b8582860161353a565b9150509250929050565b600080604083850312156137ac576137ab614b02565b5b60006137ba858286016134cf565b92505060206137cb858286016135fd565b9150509250929050565b600080602083850312156137ec576137eb614b02565b5b600083013567ffffffffffffffff81111561380a57613809614afd565b5b613816858286016134e4565b92509250509250929050565b60006020828403121561383857613837614b02565b5b60006138468482850161354f565b91505092915050565b60006020828403121561386557613864614b02565b5b600061387384828501613564565b91505092915050565b6000806020838503121561389357613892614b02565b5b600083013567ffffffffffffffff8111156138b1576138b0614afd565b5b6138bd858286016135a7565b92509250509250929050565b6000602082840312156138df576138de614b02565b5b60006138ed848285016135fd565b91505092915050565b6000806040838503121561390d5761390c614b02565b5b600061391b858286016135fd565b925050602061392c858286016134cf565b9150509250929050565b6000806040838503121561394d5761394c614b02565b5b600061395b858286016135fd565b925050602061396c858286016135fd565b9150509250929050565b600080600080608085870312156139905761398f614b02565b5b600061399e878288016135fd565b94505060206139af878288016135fd565b93505060406139c0878288016134cf565b925050606085013567ffffffffffffffff8111156139e1576139e0614afd565b5b6139ed87828801613579565b91505092959194509250565b613a02816147ed565b82525050565b613a19613a14826147ed565b614966565b82525050565b613a28816147ff565b82525050565b613a378161480b565b82525050565b613a4e613a498261480b565b614978565b82525050565b6000613a5f82614695565b613a6981856146ab565b9350613a79818560208601614887565b613a8281614b07565b840191505092915050565b6000613a98826146a0565b613aa281856146bc565b9350613ab2818560208601614887565b613abb81614b07565b840191505092915050565b6000613ad1826146a0565b613adb81856146cd565b9350613aeb818560208601614887565b80840191505092915050565b60008154613b04816148ba565b613b0e81866146cd565b94506001821660008114613b295760018114613b3a57613b6d565b60ff19831686528186019350613b6d565b613b4385614680565b60005b83811015613b6557815481890152600182019150602081019050613b46565b838801955050505b50505092915050565b6000613b836018836146bc565b9150613b8e82614b25565b602082019050919050565b6000613ba6601f836146bc565b9150613bb182614b4e565b602082019050919050565b6000613bc9601c836146cd565b9150613bd482614b77565b601c82019050919050565b6000613bec6006836146bc565b9150613bf782614ba0565b602082019050919050565b6000613c0f6032836146bc565b9150613c1a82614bc9565b604082019050919050565b6000613c326026836146bc565b9150613c3d82614c18565b604082019050919050565b6000613c55601c836146bc565b9150613c6082614c67565b602082019050919050565b6000613c786018836146bc565b9150613c8382614c90565b602082019050919050565b6000613c9b600b836146bc565b9150613ca682614cb9565b602082019050919050565b6000613cbe6024836146bc565b9150613cc982614ce2565b604082019050919050565b6000613ce1600f836146bc565b9150613cec82614d31565b602082019050919050565b6000613d046019836146bc565b9150613d0f82614d5a565b602082019050919050565b6000613d276022836146bc565b9150613d3282614d83565b604082019050919050565b6000613d4a602c836146bc565b9150613d5582614dd2565b604082019050919050565b6000613d6d6006836146bc565b9150613d7882614e21565b602082019050919050565b6000613d906011836146bc565b9150613d9b82614e4a565b602082019050919050565b6000613db36038836146bc565b9150613dbe82614e73565b604082019050919050565b6000613dd6602a836146bc565b9150613de182614ec2565b604082019050919050565b6000613df96029836146bc565b9150613e0482614f11565b604082019050919050565b6000613e1c6022836146bc565b9150613e2782614f60565b604082019050919050565b6000613e3f6020836146bc565b9150613e4a82614faf565b602082019050919050565b6000613e62602c836146bc565b9150613e6d82614fd8565b604082019050919050565b6000613e856005836146cd565b9150613e9082615027565b600582019050919050565b6000613ea86020836146bc565b9150613eb382615050565b602082019050919050565b6000613ecb6029836146bc565b9150613ed682615079565b604082019050919050565b6000613eee6012836146bc565b9150613ef9826150c8565b602082019050919050565b6000613f116009836146bc565b9150613f1c826150f1565b602082019050919050565b6000613f34601f836146bc565b9150613f3f8261511a565b602082019050919050565b6000613f576013836146bc565b9150613f6282615143565b602082019050919050565b6000613f7a6021836146bc565b9150613f858261516c565b604082019050919050565b6000613f9d6031836146bc565b9150613fa8826151bb565b604082019050919050565b6000613fc0600d836146bc565b9150613fcb8261520a565b602082019050919050565b6000613fe36009836146bc565b9150613fee82615233565b602082019050919050565b6000614006600a836146bc565b91506140118261525c565b602082019050919050565b6000614029600f836146bc565b915061403482615285565b602082019050919050565b61404881614861565b82525050565b61405f61405a82614861565b614994565b82525050565b61406e8161486b565b82525050565b60006140808285613af7565b915061408c8284613ac6565b915061409782613e78565b91508190509392505050565b60006140ae82613bbc565b91506140ba8284613a3d565b60208201915081905092915050565b60006140d5828661404e565b6020820191506140e58285613a08565b6014820191506140f5828461404e565b602082019150819050949350505050565b600060208201905061411b60008301846139f9565b92915050565b600060808201905061413660008301876139f9565b61414360208301866139f9565b614150604083018561403f565b81810360608301526141628184613a54565b905095945050505050565b60006020820190506141826000830184613a1f565b92915050565b600060808201905061419d6000830187613a2e565b6141aa6020830186614065565b6141b76040830185613a2e565b6141c46060830184613a2e565b95945050505050565b600060208201905081810360008301526141e78184613a8d565b905092915050565b6000602082019050818103600083015261420881613b76565b9050919050565b6000602082019050818103600083015261422881613b99565b9050919050565b6000602082019050818103600083015261424881613bdf565b9050919050565b6000602082019050818103600083015261426881613c02565b9050919050565b6000602082019050818103600083015261428881613c25565b9050919050565b600060208201905081810360008301526142a881613c48565b9050919050565b600060208201905081810360008301526142c881613c6b565b9050919050565b600060208201905081810360008301526142e881613c8e565b9050919050565b6000602082019050818103600083015261430881613cb1565b9050919050565b6000602082019050818103600083015261432881613cd4565b9050919050565b6000602082019050818103600083015261434881613cf7565b9050919050565b6000602082019050818103600083015261436881613d1a565b9050919050565b6000602082019050818103600083015261438881613d3d565b9050919050565b600060208201905081810360008301526143a881613d60565b9050919050565b600060208201905081810360008301526143c881613d83565b9050919050565b600060208201905081810360008301526143e881613da6565b9050919050565b6000602082019050818103600083015261440881613dc9565b9050919050565b6000602082019050818103600083015261442881613dec565b9050919050565b6000602082019050818103600083015261444881613e0f565b9050919050565b6000602082019050818103600083015261446881613e32565b9050919050565b6000602082019050818103600083015261448881613e55565b9050919050565b600060208201905081810360008301526144a881613e9b565b9050919050565b600060208201905081810360008301526144c881613ebe565b9050919050565b600060208201905081810360008301526144e881613ee1565b9050919050565b6000602082019050818103600083015261450881613f04565b9050919050565b6000602082019050818103600083015261452881613f27565b9050919050565b6000602082019050818103600083015261454881613f4a565b9050919050565b6000602082019050818103600083015261456881613f6d565b9050919050565b6000602082019050818103600083015261458881613f90565b9050919050565b600060208201905081810360008301526145a881613fb3565b9050919050565b600060208201905081810360008301526145c881613fd6565b9050919050565b600060208201905081810360008301526145e881613ff9565b9050919050565b600060208201905081810360008301526146088161401c565b9050919050565b6000602082019050614624600083018461403f565b92915050565b6000614634614645565b905061464082826148ec565b919050565b6000604051905090565b600067ffffffffffffffff82111561466a57614669614aba565b5b61467382614b07565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b60006146e382614861565b91506146ee83614861565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614723576147226149cf565b5b828201905092915050565b600061473982614861565b915061474483614861565b925082614754576147536149fe565b5b828204905092915050565b600061476a82614861565b915061477583614861565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156147ae576147ad6149cf565b5b828202905092915050565b60006147c482614861565b91506147cf83614861565b9250828210156147e2576147e16149cf565b5b828203905092915050565b60006147f882614841565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b82818337600083830152505050565b60005b838110156148a557808201518184015260208101905061488a565b838111156148b4576000848401525b50505050565b600060028204905060018216806148d257607f821691505b602082108114156148e6576148e5614a5c565b5b50919050565b6148f582614b07565b810181811067ffffffffffffffff8211171561491457614913614aba565b5b80604052505050565b600061492882614861565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561495b5761495a6149cf565b5b600182019050919050565b600061497182614982565b9050919050565b6000819050919050565b600061498d82614b18565b9050919050565b6000819050919050565b60006149a982614861565b91506149b483614861565b9250826149c4576149c36149fe565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f45434453413a20696e76616c6964207369676e61747572650000000000000000600082015250565b7f45434453413a20696e76616c6964207369676e6174757265206c656e67746800600082015250565b7f19457468657265756d205369676e6564204d6573736167653a0a333200000000600082015250565b7f436c6f7365640000000000000000000000000000000000000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4d6178204e46547320546f204275792045786365656465640000000000000000600082015250565b7f4e6f74204f6e204c697374000000000000000000000000000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f537570706c79204f766572666c6f770000000000000000000000000000000000600082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f45434453413a20696e76616c6964207369676e6174757265202773272076616c60008201527f7565000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f636c6f7365640000000000000000000000000000000000000000000000000000600082015250565b7f427970617373204469646e7420576f726b000000000000000000000000000000600082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f45434453413a20696e76616c6964207369676e6174757265202776272076616c60008201527f7565000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f45746820416d6f756e7420496e76616c69640000000000000000000000000000600082015250565b7f457468204572726f720000000000000000000000000000000000000000000000600082015250565b7f43616e6e6f74207175657279206e6f6e2d6578697374656e7420746f6b656e00600082015250565b7f4e6f74204f6e2050726573616c65204c69737400000000000000000000000000600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f47696674204e6f74204f70656e00000000000000000000000000000000000000600082015250565b7f4e6f6e63652052616e0000000000000000000000000000000000000000000000600082015250565b7f4d617820537570706c7900000000000000000000000000000000000000000000600082015250565b7f5265717569726520416464726573730000000000000000000000000000000000600082015250565b6152b7816147ed565b81146152c257600080fd5b50565b6152ce816147ff565b81146152d957600080fd5b50565b6152e581614815565b81146152f057600080fd5b50565b6152fc81614861565b811461530757600080fd5b5056fea2646970667358221220cef1171dd86a639caad66625e6b0e63eb31a4ee9f14da8804fa8c98a1ca865c064736f6c63430008060033
Deployed Bytecode
0x6080604052600436106102515760003560e01c80638b94f1f611610139578063b09afa30116100b6578063d13e9c5b1161007a578063d13e9c5b1461085a578063d6954d4e14610871578063dbe46c861461089c578063e985e9c5146108c7578063f2fde38b14610904578063fbc0b13b1461092d57610251565b8063b09afa3014610775578063b88d4fde1461079e578063c3bb288d146107c7578063c87b56dd146107f2578063cfdb32fb1461082f57610251565b80639c2d4e41116100fd5780639c2d4e41146106a45780639cf2e8d6146106bb578063a22cb465146106f8578063a321ade514610721578063a4f8eaeb1461074a57610251565b80638b94f1f6146105bf5780638da5cb5b146105e8578063940c03581461061357806395d89b411461063c5780639bf803161461066757610251565b80634571dc6e116101d2578063681a39d611610196578063681a39d6146104d95780636f8b44b01461050257806370a082311461052b578063715018a6146105685780637ac92ea71461057f57806383a076be1461059657610251565b80634571dc6e1461042257806351830227146104395780635710dedd1461046457806358dd175d146104805780636352211e1461049c57610251565b806318160ddd1161021957806318160ddd1461034f57806322ad0c711461037a57806323b872dd146103a5578063270e5326146103ce57806342842e0e146103f957610251565b806301ffc9a71461025657806306fdde0314610293578063081812fc146102be578063095ea7b3146102fb5780631687439314610324575b600080fd5b34801561026257600080fd5b5061027d60048036038101906102789190613822565b610958565b60405161028a919061416d565b60405180910390f35b34801561029f57600080fd5b506102a8610a3a565b6040516102b591906141cd565b60405180910390f35b3480156102ca57600080fd5b506102e560048036038101906102e091906138c9565b610acc565b6040516102f29190614106565b60405180910390f35b34801561030757600080fd5b50610322600480360381019061031d9190613795565b610b51565b005b34801561033057600080fd5b50610339610c69565b604051610346919061460f565b60405180910390f35b34801561035b57600080fd5b50610364610c6f565b604051610371919061460f565b60405180910390f35b34801561038657600080fd5b5061038f610c75565b60405161039c919061416d565b60405180910390f35b3480156103b157600080fd5b506103cc60048036038101906103c7919061367f565b610c88565b005b3480156103da57600080fd5b506103e3610ce8565b6040516103f09190614106565b60405180910390f35b34801561040557600080fd5b50610420600480360381019061041b919061367f565b610d0e565b005b34801561042e57600080fd5b50610437610d2e565b005b34801561044557600080fd5b5061044e610dd6565b60405161045b919061416d565b60405180910390f35b61047e60048036038101906104799190613976565b610de9565b005b61049a60048036038101906104959190613936565b61105f565b005b3480156104a857600080fd5b506104c360048036038101906104be91906138c9565b611267565b6040516104d09190614106565b60405180910390f35b3480156104e557600080fd5b5061050060048036038101906104fb919061387c565b611319565b005b34801561050e57600080fd5b50610529600480360381019061052491906138c9565b6113ab565b005b34801561053757600080fd5b50610552600480360381019061054d9190613612565b611431565b60405161055f919061460f565b60405180910390f35b34801561057457600080fd5b5061057d6114e9565b005b34801561058b57600080fd5b50610594611571565b005b3480156105a257600080fd5b506105bd60048036038101906105b891906138f6565b611619565b005b3480156105cb57600080fd5b506105e660048036038101906105e191906138c9565b611743565b005b3480156105f457600080fd5b506105fd6117c9565b60405161060a9190614106565b60405180910390f35b34801561061f57600080fd5b5061063a6004803603810190610635919061387c565b6117f3565b005b34801561064857600080fd5b50610651611885565b60405161065e91906141cd565b60405180910390f35b34801561067357600080fd5b5061068e60048036038101906106899190613612565b611917565b60405161069b919061460f565b60405180910390f35b3480156106b057600080fd5b506106b961192f565b005b3480156106c757600080fd5b506106e260048036038101906106dd9190613612565b611a96565b6040516106ef919061416d565b60405180910390f35b34801561070457600080fd5b5061071f600480360381019061071a9190613755565b611ab6565b005b34801561072d57600080fd5b506107486004803603810190610743919061387c565b611acc565b005b34801561075657600080fd5b5061075f611b5e565b60405161076c91906141cd565b60405180910390f35b34801561078157600080fd5b5061079c600480360381019061079791906137d5565b611bec565b005b3480156107aa57600080fd5b506107c560048036038101906107c091906136d2565b611e10565b005b3480156107d357600080fd5b506107dc611e72565b6040516107e9919061460f565b60405180910390f35b3480156107fe57600080fd5b50610819600480360381019061081491906138c9565b611e78565b60405161082691906141cd565b60405180910390f35b34801561083b57600080fd5b50610844611fa3565b604051610851919061416d565b60405180910390f35b34801561086657600080fd5b5061086f611fb6565b005b34801561087d57600080fd5b5061088661205e565b60405161089391906141cd565b60405180910390f35b3480156108a857600080fd5b506108b16120f0565b6040516108be919061416d565b60405180910390f35b3480156108d357600080fd5b506108ee60048036038101906108e9919061363f565b612103565b6040516108fb919061416d565b60405180910390f35b34801561091057600080fd5b5061092b60048036038101906109269190613612565b612197565b005b34801561093957600080fd5b5061094261228f565b60405161094f919061460f565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610a2357507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610a335750610a3282612294565b5b9050919050565b606060008054610a49906148ba565b80601f0160208091040260200160405190810160405280929190818152602001828054610a75906148ba565b8015610ac25780601f10610a9757610100808354040283529160200191610ac2565b820191906000526020600020905b815481529060010190602001808311610aa557829003601f168201915b5050505050905090565b6000610ad7826122fe565b610b16576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b0d9061446f565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610b5c82611267565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610bcd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bc49061454f565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610bec61236a565b73ffffffffffffffffffffffffffffffffffffffff161480610c1b5750610c1a81610c1561236a565b612103565b5b610c5a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c51906143cf565b60405180910390fd5b610c648383612372565b505050565b60075481565b600c5481565b601060009054906101000a900460ff1681565b610c99610c9361236a565b8261242b565b610cd8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ccf9061456f565b60405180910390fd5b610ce3838383612509565b505050565b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b610d2983838360405180602001604052806000815250611e10565b505050565b610d3661236a565b73ffffffffffffffffffffffffffffffffffffffff16610d546117c9565b73ffffffffffffffffffffffffffffffffffffffff1614610daa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610da19061448f565b60405180910390fd5b600660149054906101000a900460ff1615600660146101000a81548160ff021916908315150217905550565b600660149054906101000a900460ff1681565b601060019054906101000a900460ff16610e38576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e2f9061422f565b60405180910390fd5b60075484600c54610e4991906146d8565b1115610e8a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e81906145cf565b60405180910390fd5b3484600854610e99919061475f565b1115610eda576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ed1906144cf565b60405180910390fd5b6005841115610f1e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f15906142af565b60405180910390fd5b6009600084815260200190815260200160002060009054906101000a900460ff1615610f7f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f76906145af565b60405180910390fd5b610f93610f8d848487612765565b826127c6565b610fd2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fc9906143af565b60405180910390fd5b60016009600085815260200190815260200160002060006101000a81548160ff02191690831515021790555060005b8481101561103f5761102c33600183600c5461101d91906146d8565b61102791906146d8565b61282a565b80806110379061491d565b915050611001565b5083600c600082825461105291906146d8565b9250508190555050505050565b601060029054906101000a900460ff166110ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110a59061438f565b60405180910390fd5b60075482600c546110bf91906146d8565b1115611100576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110f79061430f565b60405180910390fd5b348260085461110f919061475f565b1115611150576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611147906144ef565b60405180910390fd5b600b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff166111dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111d39061452f565b60405180910390fd5b60016009600083815260200190815260200160002060006101000a81548160ff02191690831515021790555060005b828110156112495761123633600183600c5461122791906146d8565b61123191906146d8565b61282a565b80806112419061491d565b91505061120b565b5081600c600082825461125c91906146d8565b925050819055505050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611310576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113079061440f565b60405180910390fd5b80915050919050565b61132161236a565b73ffffffffffffffffffffffffffffffffffffffff1661133f6117c9565b73ffffffffffffffffffffffffffffffffffffffff1614611395576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161138c9061448f565b60405180910390fd5b8181600d91906113a69291906133ea565b505050565b6113b361236a565b73ffffffffffffffffffffffffffffffffffffffff166113d16117c9565b73ffffffffffffffffffffffffffffffffffffffff1614611427576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161141e9061448f565b60405180910390fd5b8060078190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156114a2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611499906143ef565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6114f161236a565b73ffffffffffffffffffffffffffffffffffffffff1661150f6117c9565b73ffffffffffffffffffffffffffffffffffffffff1614611565576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161155c9061448f565b60405180910390fd5b61156f6000612848565b565b61157961236a565b73ffffffffffffffffffffffffffffffffffffffff166115976117c9565b73ffffffffffffffffffffffffffffffffffffffff16146115ed576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115e49061448f565b60405180910390fd5b601060009054906101000a900460ff1615601060006101000a81548160ff021916908315150217905550565b61162161236a565b73ffffffffffffffffffffffffffffffffffffffff1661163f6117c9565b73ffffffffffffffffffffffffffffffffffffffff1614611695576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161168c9061448f565b60405180910390fd5b601060009054906101000a900460ff166116e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116db9061458f565b60405180910390fd5b60005b828110156117255761171282600183600c5461170391906146d8565b61170d91906146d8565b61282a565b808061171d9061491d565b9150506116e7565b5081600c600082825461173891906146d8565b925050819055505050565b61174b61236a565b73ffffffffffffffffffffffffffffffffffffffff166117696117c9565b73ffffffffffffffffffffffffffffffffffffffff16146117bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117b69061448f565b60405180910390fd5b8060088190555050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6117fb61236a565b73ffffffffffffffffffffffffffffffffffffffff166118196117c9565b73ffffffffffffffffffffffffffffffffffffffff161461186f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118669061448f565b60405180910390fd5b8181600e91906118809291906133ea565b505050565b606060018054611894906148ba565b80601f01602080910402602001604051908101604052809291908181526020018280546118c0906148ba565b801561190d5780601f106118e25761010080835404028352916020019161190d565b820191906000526020600020905b8154815290600101906020018083116118f057829003601f168201915b5050505050905090565b60116020528060005260406000206000915090505481565b60004790507384e8158d31a1051f823df0da76167a976fbaaae573ffffffffffffffffffffffffffffffffffffffff166108fc61271061213484611973919061475f565b61197d919061472e565b9081150290604051600060405180830381858888f193505050501580156119a8573d6000803e3d6000fd5b5073435e0191177bd65b4c2204fc25816d63646ccdb773ffffffffffffffffffffffffffffffffffffffff166108fc612710610339846119e8919061475f565b6119f2919061472e565b9081150290604051600060405180830381858888f19350505050158015611a1d573d6000803e3d6000fd5b507301e7ac0f16009b0d968e63cda02eb5cc5a8303cc73ffffffffffffffffffffffffffffffffffffffff166108fc6127106102a384611a5d919061475f565b611a67919061472e565b9081150290604051600060405180830381858888f19350505050158015611a92573d6000803e3d6000fd5b5050565b600b6020528060005260406000206000915054906101000a900460ff1681565b611ac8611ac161236a565b838361290e565b5050565b611ad461236a565b73ffffffffffffffffffffffffffffffffffffffff16611af26117c9565b73ffffffffffffffffffffffffffffffffffffffff1614611b48576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b3f9061448f565b60405180910390fd5b8181600f9190611b599291906133ea565b505050565b600f8054611b6b906148ba565b80601f0160208091040260200160405190810160405280929190818152602001828054611b97906148ba565b8015611be45780601f10611bb957610100808354040283529160200191611be4565b820191906000526020600020905b815481529060010190602001808311611bc757829003601f168201915b505050505081565b611bf461236a565b73ffffffffffffffffffffffffffffffffffffffff16611c126117c9565b73ffffffffffffffffffffffffffffffffffffffff1614611c68576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c5f9061448f565b60405180910390fd5b60005b82829050811015611e0b576000838383818110611c8b57611c8a614a8b565b5b9050602002016020810190611ca09190613612565b9050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611d12576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d09906145ef565b60405180910390fd5b600b60008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615611d9f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d96906142cf565b60405180910390fd5b6001600b60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550508080611e039061491d565b915050611c6b565b505050565b611e21611e1b61236a565b8361242b565b611e60576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e579061456f565b60405180910390fd5b611e6c84848484612a7b565b50505050565b60085481565b6060611e83826122fe565b611ec2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611eb99061450f565b60405180910390fd5b60001515600660149054906101000a900460ff1615151415611f7057600f8054611eeb906148ba565b80601f0160208091040260200160405190810160405280929190818152602001828054611f17906148ba565b8015611f645780601f10611f3957610100808354040283529160200191611f64565b820191906000526020600020905b815481529060010190602001808311611f4757829003601f168201915b50505050509050611f9e565b600d611f7b83612ad7565b604051602001611f8c929190614074565b60405160208183030381529060405290505b919050565b601060029054906101000a900460ff1681565b611fbe61236a565b73ffffffffffffffffffffffffffffffffffffffff16611fdc6117c9565b73ffffffffffffffffffffffffffffffffffffffff1614612032576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120299061448f565b60405180910390fd5b601060019054906101000a900460ff1615601060016101000a81548160ff021916908315150217905550565b6060600e805461206d906148ba565b80601f0160208091040260200160405190810160405280929190818152602001828054612099906148ba565b80156120e65780601f106120bb576101008083540402835291602001916120e6565b820191906000526020600020905b8154815290600101906020018083116120c957829003601f168201915b5050505050905090565b601060019054906101000a900460ff1681565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61219f61236a565b73ffffffffffffffffffffffffffffffffffffffff166121bd6117c9565b73ffffffffffffffffffffffffffffffffffffffff1614612213576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161220a9061448f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612283576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161227a9061426f565b60405180910390fd5b61228c81612848565b50565b600581565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166123e583611267565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000612436826122fe565b612475576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161246c9061436f565b60405180910390fd5b600061248083611267565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806124ef57508373ffffffffffffffffffffffffffffffffffffffff166124d784610acc565b73ffffffffffffffffffffffffffffffffffffffff16145b8061250057506124ff8185612103565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661252982611267565b73ffffffffffffffffffffffffffffffffffffffff161461257f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612576906144af565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156125ef576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125e6906142ef565b60405180910390fd5b6125fa838383612c38565b612605600082612372565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461265591906147b9565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546126ac91906146d8565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b60008084848460405160200161277d939291906140c9565b604051602081830303815290604052805190602001206040516020016127a391906140a3565b604051602081830303815290604052805190602001209050809150509392505050565b60006127d28383612c3d565b73ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614905092915050565b612844828260405180602001604052806000815250612c64565b5050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561297d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129749061432f565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051612a6e919061416d565b60405180910390a3505050565b612a86848484612509565b612a9284848484612cbf565b612ad1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ac89061424f565b60405180910390fd5b50505050565b60606000821415612b1f576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612c33565b600082905060005b60008214612b51578080612b3a9061491d565b915050600a82612b4a919061472e565b9150612b27565b60008167ffffffffffffffff811115612b6d57612b6c614aba565b5b6040519080825280601f01601f191660200182016040528015612b9f5781602001600182028036833780820191505090505b5090505b60008514612c2c57600182612bb891906147b9565b9150600a85612bc7919061499e565b6030612bd391906146d8565b60f81b818381518110612be957612be8614a8b565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612c25919061472e565b9450612ba3565b8093505050505b919050565b505050565b6000806000612c4c8585612e56565b91509150612c5981612ed9565b819250505092915050565b612c6e83836130ae565b612c7b6000848484612cbf565b612cba576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612cb19061424f565b60405180910390fd5b505050565b6000612ce08473ffffffffffffffffffffffffffffffffffffffff1661327c565b15612e49578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612d0961236a565b8786866040518563ffffffff1660e01b8152600401612d2b9493929190614121565b602060405180830381600087803b158015612d4557600080fd5b505af1925050508015612d7657506040513d601f19601f82011682018060405250810190612d73919061384f565b60015b612df9573d8060008114612da6576040519150601f19603f3d011682016040523d82523d6000602084013e612dab565b606091505b50600081511415612df1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612de89061424f565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612e4e565b600190505b949350505050565b600080604183511415612e985760008060006020860151925060408601519150606086015160001a9050612e8c8782858561328f565b94509450505050612ed2565b604083511415612ec9576000806020850151915060408501519050612ebe86838361339c565b935093505050612ed2565b60006002915091505b9250929050565b60006004811115612eed57612eec614a2d565b5b816004811115612f0057612eff614a2d565b5b1415612f0b576130ab565b60016004811115612f1f57612f1e614a2d565b5b816004811115612f3257612f31614a2d565b5b1415612f73576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f6a906141ef565b60405180910390fd5b60026004811115612f8757612f86614a2d565b5b816004811115612f9a57612f99614a2d565b5b1415612fdb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612fd29061420f565b60405180910390fd5b60036004811115612fef57612fee614a2d565b5b81600481111561300257613001614a2d565b5b1415613043576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161303a9061434f565b60405180910390fd5b60048081111561305657613055614a2d565b5b81600481111561306957613068614a2d565b5b14156130aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130a19061442f565b60405180910390fd5b5b50565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561311e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131159061444f565b60405180910390fd5b613127816122fe565b15613167576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161315e9061428f565b60405180910390fd5b61317360008383612c38565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546131c391906146d8565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a08360001c11156132ca576000600391509150613393565b601b8560ff16141580156132e25750601c8560ff1614155b156132f4576000600491509150613393565b6000600187878787604051600081526020016040526040516133199493929190614188565b6020604051602081039080840390855afa15801561333b573d6000803e3d6000fd5b505050602060405103519050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561338a57600060019250925050613393565b80600092509250505b94509492505050565b6000806000807f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff85169150601b8560ff1c0190506133dc8782888561328f565b935093505050935093915050565b8280546133f6906148ba565b90600052602060002090601f016020900481019282613418576000855561345f565b82601f1061343157803560ff191683800117855561345f565b8280016001018555821561345f579182015b8281111561345e578235825591602001919060010190613443565b5b50905061346c9190613470565b5090565b5b80821115613489576000816000905550600101613471565b5090565b60006134a061349b8461464f565b61462a565b9050828152602081018484840111156134bc576134bb614af8565b5b6134c7848285614878565b509392505050565b6000813590506134de816152ae565b92915050565b60008083601f8401126134fa576134f9614aee565b5b8235905067ffffffffffffffff81111561351757613516614ae9565b5b60208301915083602082028301111561353357613532614af3565b5b9250929050565b600081359050613549816152c5565b92915050565b60008135905061355e816152dc565b92915050565b600081519050613573816152dc565b92915050565b600082601f83011261358e5761358d614aee565b5b813561359e84826020860161348d565b91505092915050565b60008083601f8401126135bd576135bc614aee565b5b8235905067ffffffffffffffff8111156135da576135d9614ae9565b5b6020830191508360018202830111156135f6576135f5614af3565b5b9250929050565b60008135905061360c816152f3565b92915050565b60006020828403121561362857613627614b02565b5b6000613636848285016134cf565b91505092915050565b6000806040838503121561365657613655614b02565b5b6000613664858286016134cf565b9250506020613675858286016134cf565b9150509250929050565b60008060006060848603121561369857613697614b02565b5b60006136a6868287016134cf565b93505060206136b7868287016134cf565b92505060406136c8868287016135fd565b9150509250925092565b600080600080608085870312156136ec576136eb614b02565b5b60006136fa878288016134cf565b945050602061370b878288016134cf565b935050604061371c878288016135fd565b925050606085013567ffffffffffffffff81111561373d5761373c614afd565b5b61374987828801613579565b91505092959194509250565b6000806040838503121561376c5761376b614b02565b5b600061377a858286016134cf565b925050602061378b8582860161353a565b9150509250929050565b600080604083850312156137ac576137ab614b02565b5b60006137ba858286016134cf565b92505060206137cb858286016135fd565b9150509250929050565b600080602083850312156137ec576137eb614b02565b5b600083013567ffffffffffffffff81111561380a57613809614afd565b5b613816858286016134e4565b92509250509250929050565b60006020828403121561383857613837614b02565b5b60006138468482850161354f565b91505092915050565b60006020828403121561386557613864614b02565b5b600061387384828501613564565b91505092915050565b6000806020838503121561389357613892614b02565b5b600083013567ffffffffffffffff8111156138b1576138b0614afd565b5b6138bd858286016135a7565b92509250509250929050565b6000602082840312156138df576138de614b02565b5b60006138ed848285016135fd565b91505092915050565b6000806040838503121561390d5761390c614b02565b5b600061391b858286016135fd565b925050602061392c858286016134cf565b9150509250929050565b6000806040838503121561394d5761394c614b02565b5b600061395b858286016135fd565b925050602061396c858286016135fd565b9150509250929050565b600080600080608085870312156139905761398f614b02565b5b600061399e878288016135fd565b94505060206139af878288016135fd565b93505060406139c0878288016134cf565b925050606085013567ffffffffffffffff8111156139e1576139e0614afd565b5b6139ed87828801613579565b91505092959194509250565b613a02816147ed565b82525050565b613a19613a14826147ed565b614966565b82525050565b613a28816147ff565b82525050565b613a378161480b565b82525050565b613a4e613a498261480b565b614978565b82525050565b6000613a5f82614695565b613a6981856146ab565b9350613a79818560208601614887565b613a8281614b07565b840191505092915050565b6000613a98826146a0565b613aa281856146bc565b9350613ab2818560208601614887565b613abb81614b07565b840191505092915050565b6000613ad1826146a0565b613adb81856146cd565b9350613aeb818560208601614887565b80840191505092915050565b60008154613b04816148ba565b613b0e81866146cd565b94506001821660008114613b295760018114613b3a57613b6d565b60ff19831686528186019350613b6d565b613b4385614680565b60005b83811015613b6557815481890152600182019150602081019050613b46565b838801955050505b50505092915050565b6000613b836018836146bc565b9150613b8e82614b25565b602082019050919050565b6000613ba6601f836146bc565b9150613bb182614b4e565b602082019050919050565b6000613bc9601c836146cd565b9150613bd482614b77565b601c82019050919050565b6000613bec6006836146bc565b9150613bf782614ba0565b602082019050919050565b6000613c0f6032836146bc565b9150613c1a82614bc9565b604082019050919050565b6000613c326026836146bc565b9150613c3d82614c18565b604082019050919050565b6000613c55601c836146bc565b9150613c6082614c67565b602082019050919050565b6000613c786018836146bc565b9150613c8382614c90565b602082019050919050565b6000613c9b600b836146bc565b9150613ca682614cb9565b602082019050919050565b6000613cbe6024836146bc565b9150613cc982614ce2565b604082019050919050565b6000613ce1600f836146bc565b9150613cec82614d31565b602082019050919050565b6000613d046019836146bc565b9150613d0f82614d5a565b602082019050919050565b6000613d276022836146bc565b9150613d3282614d83565b604082019050919050565b6000613d4a602c836146bc565b9150613d5582614dd2565b604082019050919050565b6000613d6d6006836146bc565b9150613d7882614e21565b602082019050919050565b6000613d906011836146bc565b9150613d9b82614e4a565b602082019050919050565b6000613db36038836146bc565b9150613dbe82614e73565b604082019050919050565b6000613dd6602a836146bc565b9150613de182614ec2565b604082019050919050565b6000613df96029836146bc565b9150613e0482614f11565b604082019050919050565b6000613e1c6022836146bc565b9150613e2782614f60565b604082019050919050565b6000613e3f6020836146bc565b9150613e4a82614faf565b602082019050919050565b6000613e62602c836146bc565b9150613e6d82614fd8565b604082019050919050565b6000613e856005836146cd565b9150613e9082615027565b600582019050919050565b6000613ea86020836146bc565b9150613eb382615050565b602082019050919050565b6000613ecb6029836146bc565b9150613ed682615079565b604082019050919050565b6000613eee6012836146bc565b9150613ef9826150c8565b602082019050919050565b6000613f116009836146bc565b9150613f1c826150f1565b602082019050919050565b6000613f34601f836146bc565b9150613f3f8261511a565b602082019050919050565b6000613f576013836146bc565b9150613f6282615143565b602082019050919050565b6000613f7a6021836146bc565b9150613f858261516c565b604082019050919050565b6000613f9d6031836146bc565b9150613fa8826151bb565b604082019050919050565b6000613fc0600d836146bc565b9150613fcb8261520a565b602082019050919050565b6000613fe36009836146bc565b9150613fee82615233565b602082019050919050565b6000614006600a836146bc565b91506140118261525c565b602082019050919050565b6000614029600f836146bc565b915061403482615285565b602082019050919050565b61404881614861565b82525050565b61405f61405a82614861565b614994565b82525050565b61406e8161486b565b82525050565b60006140808285613af7565b915061408c8284613ac6565b915061409782613e78565b91508190509392505050565b60006140ae82613bbc565b91506140ba8284613a3d565b60208201915081905092915050565b60006140d5828661404e565b6020820191506140e58285613a08565b6014820191506140f5828461404e565b602082019150819050949350505050565b600060208201905061411b60008301846139f9565b92915050565b600060808201905061413660008301876139f9565b61414360208301866139f9565b614150604083018561403f565b81810360608301526141628184613a54565b905095945050505050565b60006020820190506141826000830184613a1f565b92915050565b600060808201905061419d6000830187613a2e565b6141aa6020830186614065565b6141b76040830185613a2e565b6141c46060830184613a2e565b95945050505050565b600060208201905081810360008301526141e78184613a8d565b905092915050565b6000602082019050818103600083015261420881613b76565b9050919050565b6000602082019050818103600083015261422881613b99565b9050919050565b6000602082019050818103600083015261424881613bdf565b9050919050565b6000602082019050818103600083015261426881613c02565b9050919050565b6000602082019050818103600083015261428881613c25565b9050919050565b600060208201905081810360008301526142a881613c48565b9050919050565b600060208201905081810360008301526142c881613c6b565b9050919050565b600060208201905081810360008301526142e881613c8e565b9050919050565b6000602082019050818103600083015261430881613cb1565b9050919050565b6000602082019050818103600083015261432881613cd4565b9050919050565b6000602082019050818103600083015261434881613cf7565b9050919050565b6000602082019050818103600083015261436881613d1a565b9050919050565b6000602082019050818103600083015261438881613d3d565b9050919050565b600060208201905081810360008301526143a881613d60565b9050919050565b600060208201905081810360008301526143c881613d83565b9050919050565b600060208201905081810360008301526143e881613da6565b9050919050565b6000602082019050818103600083015261440881613dc9565b9050919050565b6000602082019050818103600083015261442881613dec565b9050919050565b6000602082019050818103600083015261444881613e0f565b9050919050565b6000602082019050818103600083015261446881613e32565b9050919050565b6000602082019050818103600083015261448881613e55565b9050919050565b600060208201905081810360008301526144a881613e9b565b9050919050565b600060208201905081810360008301526144c881613ebe565b9050919050565b600060208201905081810360008301526144e881613ee1565b9050919050565b6000602082019050818103600083015261450881613f04565b9050919050565b6000602082019050818103600083015261452881613f27565b9050919050565b6000602082019050818103600083015261454881613f4a565b9050919050565b6000602082019050818103600083015261456881613f6d565b9050919050565b6000602082019050818103600083015261458881613f90565b9050919050565b600060208201905081810360008301526145a881613fb3565b9050919050565b600060208201905081810360008301526145c881613fd6565b9050919050565b600060208201905081810360008301526145e881613ff9565b9050919050565b600060208201905081810360008301526146088161401c565b9050919050565b6000602082019050614624600083018461403f565b92915050565b6000614634614645565b905061464082826148ec565b919050565b6000604051905090565b600067ffffffffffffffff82111561466a57614669614aba565b5b61467382614b07565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b60006146e382614861565b91506146ee83614861565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614723576147226149cf565b5b828201905092915050565b600061473982614861565b915061474483614861565b925082614754576147536149fe565b5b828204905092915050565b600061476a82614861565b915061477583614861565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156147ae576147ad6149cf565b5b828202905092915050565b60006147c482614861565b91506147cf83614861565b9250828210156147e2576147e16149cf565b5b828203905092915050565b60006147f882614841565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b82818337600083830152505050565b60005b838110156148a557808201518184015260208101905061488a565b838111156148b4576000848401525b50505050565b600060028204905060018216806148d257607f821691505b602082108114156148e6576148e5614a5c565b5b50919050565b6148f582614b07565b810181811067ffffffffffffffff8211171561491457614913614aba565b5b80604052505050565b600061492882614861565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561495b5761495a6149cf565b5b600182019050919050565b600061497182614982565b9050919050565b6000819050919050565b600061498d82614b18565b9050919050565b6000819050919050565b60006149a982614861565b91506149b483614861565b9250826149c4576149c36149fe565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f45434453413a20696e76616c6964207369676e61747572650000000000000000600082015250565b7f45434453413a20696e76616c6964207369676e6174757265206c656e67746800600082015250565b7f19457468657265756d205369676e6564204d6573736167653a0a333200000000600082015250565b7f436c6f7365640000000000000000000000000000000000000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4d6178204e46547320546f204275792045786365656465640000000000000000600082015250565b7f4e6f74204f6e204c697374000000000000000000000000000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f537570706c79204f766572666c6f770000000000000000000000000000000000600082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f45434453413a20696e76616c6964207369676e6174757265202773272076616c60008201527f7565000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f636c6f7365640000000000000000000000000000000000000000000000000000600082015250565b7f427970617373204469646e7420576f726b000000000000000000000000000000600082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f45434453413a20696e76616c6964207369676e6174757265202776272076616c60008201527f7565000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f45746820416d6f756e7420496e76616c69640000000000000000000000000000600082015250565b7f457468204572726f720000000000000000000000000000000000000000000000600082015250565b7f43616e6e6f74207175657279206e6f6e2d6578697374656e7420746f6b656e00600082015250565b7f4e6f74204f6e2050726573616c65204c69737400000000000000000000000000600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f47696674204e6f74204f70656e00000000000000000000000000000000000000600082015250565b7f4e6f6e63652052616e0000000000000000000000000000000000000000000000600082015250565b7f4d617820537570706c7900000000000000000000000000000000000000000000600082015250565b7f5265717569726520416464726573730000000000000000000000000000000000600082015250565b6152b7816147ed565b81146152c257600080fd5b50565b6152ce816147ff565b81146152d957600080fd5b50565b6152e581614815565b81146152f057600080fd5b50565b6152fc81614861565b811461530757600080fd5b5056fea2646970667358221220cef1171dd86a639caad66625e6b0e63eb31a4ee9f14da8804fa8c98a1ca865c064736f6c63430008060033
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.