Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 25 from a total of 155 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Safe Transfer Fr... | 20757501 | 91 days ago | IN | 0 ETH | 0.00023015 | ||||
Set Approval For... | 18743941 | 373 days ago | IN | 0 ETH | 0.00191857 | ||||
Transfer From | 17507224 | 547 days ago | IN | 0 ETH | 0.00126918 | ||||
Transfer From | 17449458 | 555 days ago | IN | 0 ETH | 0.0009953 | ||||
Set Approval For... | 17444211 | 555 days ago | IN | 0 ETH | 0.00092169 | ||||
Set Approval For... | 17241824 | 584 days ago | IN | 0 ETH | 0.00151117 | ||||
Set Approval For... | 16675187 | 664 days ago | IN | 0 ETH | 0.00161586 | ||||
Set Approval For... | 16369046 | 707 days ago | IN | 0 ETH | 0.00073049 | ||||
Set Approval For... | 16325222 | 713 days ago | IN | 0 ETH | 0.00070006 | ||||
Safe Transfer Fr... | 15994460 | 759 days ago | IN | 0 ETH | 0.00077139 | ||||
Set Approval For... | 15602943 | 814 days ago | IN | 0 ETH | 0.0002558 | ||||
Set Approval For... | 15554026 | 820 days ago | IN | 0 ETH | 0.00050265 | ||||
Set Approval For... | 15453827 | 836 days ago | IN | 0 ETH | 0.00209976 | ||||
Set Approval For... | 15371796 | 850 days ago | IN | 0 ETH | 0.00055904 | ||||
Set Approval For... | 15159916 | 883 days ago | IN | 0 ETH | 0.00096474 | ||||
Set Approval For... | 15158836 | 883 days ago | IN | 0 ETH | 0.00053376 | ||||
Set Approval For... | 15132955 | 887 days ago | IN | 0 ETH | 0.00074237 | ||||
Set Approval For... | 15116484 | 889 days ago | IN | 0 ETH | 0.00127009 | ||||
Set Approval For... | 15108102 | 891 days ago | IN | 0 ETH | 0.00057382 | ||||
Set Approval For... | 15075688 | 896 days ago | IN | 0 ETH | 0.00039641 | ||||
Set Approval For... | 15062645 | 898 days ago | IN | 0 ETH | 0.00053887 | ||||
Set Approval For... | 15050485 | 900 days ago | IN | 0 ETH | 0.00567192 | ||||
Set Approval For... | 15048676 | 900 days ago | IN | 0 ETH | 0.00109887 | ||||
Set Approval For... | 15029455 | 904 days ago | IN | 0 ETH | 0.00134346 | ||||
Set Approval For... | 15009373 | 907 days ago | IN | 0 ETH | 0.00144231 |
Latest 1 internal transaction
Advanced mode:
Parent Transaction Hash | Block |
From
|
To
|
|||
---|---|---|---|---|---|---|
15007959 | 908 days ago | 20.8 ETH |
Loading...
Loading
Contract Name:
TableChefPass
Compiler Version
v0.8.4+commit.c7e474f2
Optimization Enabled:
No with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
//SPDX-License-Identifier: Unlicense pragma solidity ^0.8.0; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/token/ERC721/ERC721.sol"; import "@openzeppelin/contracts/utils/Counters.sol"; import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol"; /// @title La Table du Chef - NFT Pass /// @author theblock.company contract TableChefPass is ERC721, Ownable { using Counters for Counters.Counter; Counters.Counter private _tokenIds; Counters.Counter private _whitelistId; Counters.Counter private _exclusibleCount; uint256 private constant MAX_TOTAL_SUPPLY = 10_000; uint256 private constant MAX_EXCLUSIBLE_SUPPLY = 3_000; uint256 private _tokenPublicPrice = 0.4 ether; uint256 private _exclusibleTokenPrice = 0.2 ether; uint256 public _publicStage = 0; bool public _isExclusibleSale = false; string private _baseTokenURI; address public immutable _recipient; bytes32 public _root; constructor( string memory name_, string memory symbol_, string memory baseTokenURI, address recipient ) ERC721(name_, symbol_) { setBaseTokenURI(baseTokenURI); _recipient = recipient; } /// The totalSupply() function returns the total supply of the tokens. /// This means that the sum total of token balances of all of the token /// holders must match the total supply. /// @return the total supply of the tokens function totalSupply() external view returns (uint256) { return _tokenIds.current(); } function setMerkleRoot(bytes32 root) public onlyOwner { _root = root; } function incWhitelistId() public onlyOwner { _whitelistId.increment(); } function getWhitelistId() external view returns (uint256) { return _whitelistId.current(); } function whitelistedMint( uint16 count, uint256 tokenPrice, bytes32[] calldata proof ) external payable { require( MerkleProof.verify( proof, _root, keccak256( abi.encode(msg.sender, tokenPrice, _whitelistId.current()) ) ), "!proof" ); if (0 == _whitelistId.current()) { _exclusibleCount.increment(); } _mintMany(msg.sender, tokenPrice, count); } function setExclusibleSalePrice(uint256 price) external onlyOwner { _exclusibleTokenPrice = price; } function setPublicSalePrice(uint256 tokenPublicPrice) external onlyOwner { _tokenPublicPrice = tokenPublicPrice; } function getExclusibleCount() external view returns (uint256) { return _exclusibleCount.current(); } function flipExclusibleSale() external onlyOwner { _isExclusibleSale = !_isExclusibleSale; } function exclusibleMint(uint16 count) external payable { require(true == _isExclusibleSale, "!ex_sale"); require( _exclusibleCount.current() < MAX_EXCLUSIBLE_SUPPLY, "!ex_supply" ); for (uint256 i = 0; i < count; i++) { _exclusibleCount.increment(); } _mintMany(msg.sender, _exclusibleTokenPrice, count); } function incPublicStage() external onlyOwner { _publicStage++; } function publicMint(uint16 count) external payable { require( ((_tokenIds.current() < 6000) && (_publicStage == 1)) || (_publicStage >= 2), "!sale" ); _mintMany(msg.sender, _tokenPublicPrice, count); } function ownerMint(address to, uint16 count) external onlyOwner { _mintMany(to, 0, count); } function _mintMany( address to, uint256 tokenPrice, uint16 count ) private { require(count > 0, "!count"); unchecked { uint256 nextTokenId = _tokenIds.current() + count; require(nextTokenId <= MAX_TOTAL_SUPPLY, "!supply"); require(msg.value >= tokenPrice * count, "!ether"); } for (uint256 i = 0; i < count; i++) { _mintOne(to); } } function _mintOne(address to) private { _tokenIds.increment(); _safeMint(to, _tokenIds.current()); } function _baseURI() internal view override returns (string memory) { return _baseTokenURI; } function setBaseTokenURI(string memory baseTokenURI) public onlyOwner { _baseTokenURI = baseTokenURI; } function withdraw() external { uint256 balance = address(this).balance; require(balance > 0, "!balance"); // solhint-disable-next-line avoid-low-level-calls (bool success, ) = payable(_recipient).call{value: balance}(""); require(success, "!transfer"); } // receive() external payable { // // solhint-disable-previous-line no-empty-blocks // } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (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.1 (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.1 (utils/Counters.sol) pragma solidity ^0.8.0; /** * @title Counters * @author Matt Condon (@shrugs) * @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number * of elements in a mapping, issuing ERC721 ids, or counting request ids. * * Include with `using Counters for Counters.Counter;` */ library Counters { struct Counter { // This variable should never be directly accessed by users of the library: interactions must be restricted to // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add // this feature: see https://github.com/ethereum/solidity/issues/4637 uint256 _value; // default: 0 } function current(Counter storage counter) internal view returns (uint256) { return counter._value; } function increment(Counter storage counter) internal { unchecked { counter._value += 1; } } function decrement(Counter storage counter) internal { uint256 value = counter._value; require(value > 0, "Counter: decrement overflow"); unchecked { counter._value = value - 1; } } function reset(Counter storage counter) internal { counter._value = 0; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/cryptography/MerkleProof.sol) pragma solidity ^0.8.0; /** * @dev These functions deal with verification of Merkle Trees proofs. * * The proofs can be generated using the JavaScript library * https://github.com/miguelmota/merkletreejs[merkletreejs]. * Note: the hashing algorithm should be keccak256 and pair sorting should be enabled. * * See `test/utils/cryptography/MerkleProof.test.js` for some examples. */ library MerkleProof { /** * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree * defined by `root`. For this, a `proof` must be provided, containing * sibling hashes on the branch from the leaf to the root of the tree. Each * pair of leaves and each pair of pre-images are assumed to be sorted. */ function verify( bytes32[] memory proof, bytes32 root, bytes32 leaf ) internal pure returns (bool) { return processProof(proof, leaf) == root; } /** * @dev Returns the rebuilt hash obtained by traversing a Merklee tree up * from `leaf` using `proof`. A `proof` is valid if and only if the rebuilt * hash matches the root of the tree. When processing the proof, the pairs * of leafs & pre-images are assumed to be sorted. * * _Available since v4.4._ */ function processProof(bytes32[] memory proof, bytes32 leaf) internal pure returns (bytes32) { bytes32 computedHash = leaf; for (uint256 i = 0; i < proof.length; i++) { bytes32 proofElement = proof[i]; if (computedHash <= proofElement) { // Hash(current computed hash + current element of the proof) computedHash = keccak256(abi.encodePacked(computedHash, proofElement)); } else { // Hash(current element of the proof + current computed hash) computedHash = keccak256(abi.encodePacked(proofElement, computedHash)); } } return computedHash; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (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.1 (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.1 (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.1 (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.1 (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) pragma solidity ^0.8.0; import "./IERC165.sol"; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); }
{ "optimizer": { "enabled": false, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } }, "libraries": {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"string","name":"name_","type":"string"},{"internalType":"string","name":"symbol_","type":"string"},{"internalType":"string","name":"baseTokenURI","type":"string"},{"internalType":"address","name":"recipient","type":"address"}],"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":"_isExclusibleSale","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_publicStage","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_recipient","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_root","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","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":[{"internalType":"uint16","name":"count","type":"uint16"}],"name":"exclusibleMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"flipExclusibleSale","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":[],"name":"getExclusibleCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getWhitelistId","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"incPublicStage","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"incWhitelistId","outputs":[],"stateMutability":"nonpayable","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":"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":"address","name":"to","type":"address"},{"internalType":"uint16","name":"count","type":"uint16"}],"name":"ownerMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint16","name":"count","type":"uint16"}],"name":"publicMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","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":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseTokenURI","type":"string"}],"name":"setBaseTokenURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"price","type":"uint256"}],"name":"setExclusibleSalePrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"root","type":"bytes32"}],"name":"setMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenPublicPrice","type":"uint256"}],"name":"setPublicSalePrice","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":[{"internalType":"uint16","name":"count","type":"uint16"},{"internalType":"uint256","name":"tokenPrice","type":"uint256"},{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"}],"name":"whitelistedMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60a060405267058d15e176280000600a556702c68af0bb140000600b556000600c556000600d60006101000a81548160ff0219169083151502179055503480156200004957600080fd5b50604051620049423803806200494283398181016040528101906200006f9190620003f3565b8383816000908051906020019062000089929190620002ba565b508060019080519060200190620000a2929190620002ba565b505050620000c5620000b96200011760201b60201c565b6200011f60201b60201c565b620000d682620001e560201b60201c565b8073ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff1660601b8152505050505050620006eb565b600033905090565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620001f56200011760201b60201c565b73ffffffffffffffffffffffffffffffffffffffff166200021b6200029060201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000274576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200026b90620004d1565b60405180910390fd5b80600e90805190602001906200028c929190620002ba565b5050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b828054620002c890620005cd565b90600052602060002090601f016020900481019282620002ec576000855562000338565b82601f106200030757805160ff191683800117855562000338565b8280016001018555821562000338579182015b82811115620003375782518255916020019190600101906200031a565b5b5090506200034791906200034b565b5090565b5b80821115620003665760008160009055506001016200034c565b5090565b6000620003816200037b846200051c565b620004f3565b9050828152602081018484840111156200039a57600080fd5b620003a784828562000597565b509392505050565b600081519050620003c081620006d1565b92915050565b600082601f830112620003d857600080fd5b8151620003ea8482602086016200036a565b91505092915050565b600080600080608085870312156200040a57600080fd5b600085015167ffffffffffffffff8111156200042557600080fd5b6200043387828801620003c6565b945050602085015167ffffffffffffffff8111156200045157600080fd5b6200045f87828801620003c6565b935050604085015167ffffffffffffffff8111156200047d57600080fd5b6200048b87828801620003c6565b92505060606200049e87828801620003af565b91505092959194509250565b6000620004b960208362000552565b9150620004c682620006a8565b602082019050919050565b60006020820190508181036000830152620004ec81620004aa565b9050919050565b6000620004ff62000512565b90506200050d828262000603565b919050565b6000604051905090565b600067ffffffffffffffff8211156200053a576200053962000668565b5b620005458262000697565b9050602081019050919050565b600082825260208201905092915050565b6000620005708262000577565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60005b83811015620005b75780820151818401526020810190506200059a565b83811115620005c7576000848401525b50505050565b60006002820490506001821680620005e657607f821691505b60208210811415620005fd57620005fc62000639565b5b50919050565b6200060e8262000697565b810181811067ffffffffffffffff8211171562000630576200062f62000668565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b620006dc8162000563565b8114620006e857600080fd5b50565b60805160601c6142316200071160003960008181610cb201526116c101526142316000f3fe6080604052600436106102045760003560e01c806370a0823111610118578063a22cb465116100a0578063c87b56dd1161006f578063c87b56dd146106c5578063d4cca5f114610702578063e985e9c51461072d578063f2fde38b1461076a578063f607cc4c1461079357610204565b8063a22cb4651461062c578063af510b8714610655578063b88d4fde14610671578063c61b58621461069a57610204565b80637cb64759116100e75780637cb64759146105575780637f6763fd146105805780637f986930146105ab5780638da5cb5b146105d657806395d89b411461060157610204565b806370a08231146104be578063715018a6146104fb57806375da736c14610512578063791a25191461052e57610204565b8063355b802c1161019b578063524306881161016a57806352430688146103ff5780636352211e1461042857806369e8e99e146104655780636a014483146104905780636d71c5cd146104a757610204565b8063355b802c1461037d5780633ccfd60b146103a85780633fcc96d8146103bf57806342842e0e146103d657610204565b806318160ddd116101d757806318160ddd146102d757806323b872dd14610302578063295439e11461032b57806330176e131461035457610204565b806301ffc9a71461020957806306fdde0314610246578063081812fc14610271578063095ea7b3146102ae575b600080fd5b34801561021557600080fd5b50610230600480360381019061022b9190612d28565b6107af565b60405161023d9190613400565b60405180910390f35b34801561025257600080fd5b5061025b610891565b6040516102689190613436565b60405180910390f35b34801561027d57600080fd5b5061029860048036038101906102939190612e50565b610923565b6040516102a59190613362565b60405180910390f35b3480156102ba57600080fd5b506102d560048036038101906102d09190612cc3565b6109a8565b005b3480156102e357600080fd5b506102ec610ac0565b6040516102f99190613778565b60405180910390f35b34801561030e57600080fd5b5061032960048036038101906103249190612b81565b610ad1565b005b34801561033757600080fd5b50610352600480360381019061034d9190612c87565b610b31565b005b34801561036057600080fd5b5061037b60048036038101906103769190612d7a565b610bbd565b005b34801561038957600080fd5b50610392610c53565b60405161039f9190613400565b60405180910390f35b3480156103b457600080fd5b506103bd610c66565b005b3480156103cb57600080fd5b506103d4610d7e565b005b3480156103e257600080fd5b506103fd60048036038101906103f89190612b81565b610e06565b005b34801561040b57600080fd5b5061042660048036038101906104219190612e50565b610e26565b005b34801561043457600080fd5b5061044f600480360381019061044a9190612e50565b610eac565b60405161045c9190613362565b60405180910390f35b34801561047157600080fd5b5061047a610f5e565b6040516104879190613778565b60405180910390f35b34801561049c57600080fd5b506104a5610f64565b005b3480156104b357600080fd5b506104bc61100c565b005b3480156104ca57600080fd5b506104e560048036038101906104e09190612b1c565b6110a2565b6040516104f29190613778565b60405180910390f35b34801561050757600080fd5b5061051061115a565b005b61052c60048036038101906105279190612dbb565b6111e2565b005b34801561053a57600080fd5b5061055560048036038101906105509190612e50565b6112c2565b005b34801561056357600080fd5b5061057e60048036038101906105799190612cff565b611348565b005b34801561058c57600080fd5b506105956113ce565b6040516105a29190613778565b60405180910390f35b3480156105b757600080fd5b506105c06113df565b6040516105cd9190613778565b60405180910390f35b3480156105e257600080fd5b506105eb6113f0565b6040516105f89190613362565b60405180910390f35b34801561060d57600080fd5b5061061661141a565b6040516106239190613436565b60405180910390f35b34801561063857600080fd5b50610653600480360381019061064e9190612c4b565b6114ac565b005b61066f600480360381019061066a9190612de4565b6114c2565b005b34801561067d57600080fd5b5061069860048036038101906106939190612bd0565b6115b0565b005b3480156106a657600080fd5b506106af611612565b6040516106bc919061341b565b60405180910390f35b3480156106d157600080fd5b506106ec60048036038101906106e79190612e50565b611618565b6040516106f99190613436565b60405180910390f35b34801561070e57600080fd5b506107176116bf565b6040516107249190613362565b60405180910390f35b34801561073957600080fd5b50610754600480360381019061074f9190612b45565b6116e3565b6040516107619190613400565b60405180910390f35b34801561077657600080fd5b50610791600480360381019061078c9190612b1c565b611777565b005b6107ad60048036038101906107a89190612dbb565b61186f565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061087a57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061088a5750610889826118e8565b5b9050919050565b6060600080546108a0906139f1565b80601f01602080910402602001604051908101604052809291908181526020018280546108cc906139f1565b80156109195780601f106108ee57610100808354040283529160200191610919565b820191906000526020600020905b8154815290600101906020018083116108fc57829003601f168201915b5050505050905090565b600061092e82611952565b61096d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161096490613678565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006109b382610eac565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610a24576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a1b90613718565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610a436119be565b73ffffffffffffffffffffffffffffffffffffffff161480610a725750610a7181610a6c6119be565b6116e3565b5b610ab1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aa8906135f8565b60405180910390fd5b610abb83836119c6565b505050565b6000610acc6007611a7f565b905090565b610ae2610adc6119be565b82611a8d565b610b21576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b1890613738565b60405180910390fd5b610b2c838383611b6b565b505050565b610b396119be565b73ffffffffffffffffffffffffffffffffffffffff16610b576113f0565b73ffffffffffffffffffffffffffffffffffffffff1614610bad576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ba490613698565b60405180910390fd5b610bb982600083611dc7565b5050565b610bc56119be565b73ffffffffffffffffffffffffffffffffffffffff16610be36113f0565b73ffffffffffffffffffffffffffffffffffffffff1614610c39576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c3090613698565b60405180910390fd5b80600e9080519060200190610c4f9291906128cc565b5050565b600d60009054906101000a900460ff1681565b600047905060008111610cae576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ca590613518565b60405180910390fd5b60007f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1682604051610cf49061334d565b60006040518083038185875af1925050503d8060008114610d31576040519150601f19603f3d011682016040523d82523d6000602084013e610d36565b606091505b5050905080610d7a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d71906136f8565b60405180910390fd5b5050565b610d866119be565b73ffffffffffffffffffffffffffffffffffffffff16610da46113f0565b73ffffffffffffffffffffffffffffffffffffffff1614610dfa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610df190613698565b60405180910390fd5b610e046008611ee2565b565b610e21838383604051806020016040528060008152506115b0565b505050565b610e2e6119be565b73ffffffffffffffffffffffffffffffffffffffff16610e4c6113f0565b73ffffffffffffffffffffffffffffffffffffffff1614610ea2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e9990613698565b60405180910390fd5b80600b8190555050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610f55576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f4c90613638565b60405180910390fd5b80915050919050565b600c5481565b610f6c6119be565b73ffffffffffffffffffffffffffffffffffffffff16610f8a6113f0565b73ffffffffffffffffffffffffffffffffffffffff1614610fe0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fd790613698565b60405180910390fd5b600d60009054906101000a900460ff1615600d60006101000a81548160ff021916908315150217905550565b6110146119be565b73ffffffffffffffffffffffffffffffffffffffff166110326113f0565b73ffffffffffffffffffffffffffffffffffffffff1614611088576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161107f90613698565b60405180910390fd5b600c600081548092919061109b90613a54565b9190505550565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611113576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161110a90613618565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6111626119be565b73ffffffffffffffffffffffffffffffffffffffff166111806113f0565b73ffffffffffffffffffffffffffffffffffffffff16146111d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111cd90613698565b60405180910390fd5b6111e06000611ef8565b565b600d60009054906101000a900460ff1615156001151514611238576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161122f90613578565b60405180910390fd5b610bb86112456009611a7f565b10611285576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161127c90613758565b60405180910390fd5b60005b8161ffff168110156112b15761129e6009611ee2565b80806112a990613a54565b915050611288565b506112bf33600b5483611dc7565b50565b6112ca6119be565b73ffffffffffffffffffffffffffffffffffffffff166112e86113f0565b73ffffffffffffffffffffffffffffffffffffffff161461133e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161133590613698565b60405180910390fd5b80600a8190555050565b6113506119be565b73ffffffffffffffffffffffffffffffffffffffff1661136e6113f0565b73ffffffffffffffffffffffffffffffffffffffff16146113c4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113bb90613698565b60405180910390fd5b80600f8190555050565b60006113da6009611a7f565b905090565b60006113eb6008611a7f565b905090565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060018054611429906139f1565b80601f0160208091040260200160405190810160405280929190818152602001828054611455906139f1565b80156114a25780601f10611477576101008083540402835291602001916114a2565b820191906000526020600020905b81548152906001019060200180831161148557829003601f168201915b5050505050905090565b6114be6114b76119be565b8383611fbe565b5050565b611543828280806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050600f5433866115166008611a7f565b604051602001611528939291906133c9565b6040516020818303038152906040528051906020012061212b565b611582576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611579906135b8565b60405180910390fd5b61158c6008611a7f565b6000141561159f5761159e6009611ee2565b5b6115aa338486611dc7565b50505050565b6115c16115bb6119be565b83611a8d565b611600576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115f790613738565b60405180910390fd5b61160c84848484612142565b50505050565b600f5481565b606061162382611952565b611662576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611659906136d8565b60405180910390fd5b600061166c61219e565b9050600081511161168c57604051806020016040528060008152506116b7565b8061169684612230565b6040516020016116a7929190613329565b6040516020818303038152906040525b915050919050565b7f000000000000000000000000000000000000000000000000000000000000000081565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61177f6119be565b73ffffffffffffffffffffffffffffffffffffffff1661179d6113f0565b73ffffffffffffffffffffffffffffffffffffffff16146117f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117ea90613698565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611863576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161185a906134b8565b60405180910390fd5b61186c81611ef8565b50565b61177061187c6007611a7f565b10801561188b57506001600c54145b8061189957506002600c5410155b6118d8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118cf90613458565b60405180910390fd5b6118e533600a5483611dc7565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611a3983610eac565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600081600001549050919050565b6000611a9882611952565b611ad7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ace90613598565b60405180910390fd5b6000611ae283610eac565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611b5157508373ffffffffffffffffffffffffffffffffffffffff16611b3984610923565b73ffffffffffffffffffffffffffffffffffffffff16145b80611b625750611b6181856116e3565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611b8b82610eac565b73ffffffffffffffffffffffffffffffffffffffff1614611be1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bd8906136b8565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611c51576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c4890613538565b60405180910390fd5b611c5c8383836123dd565b611c676000826119c6565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611cb791906138ef565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611d0e9190613868565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b60008161ffff1611611e0e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e05906134f8565b60405180910390fd5b60008161ffff16611e1f6007611a7f565b019050612710811115611e67576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e5e90613478565b60405180910390fd5b8161ffff168302341015611eb0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ea7906135d8565b60405180910390fd5b5060005b8161ffff16811015611edc57611ec9846123e2565b8080611ed490613a54565b915050611eb4565b50505050565b6001816000016000828254019250508190555050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561202d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161202490613558565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161211e9190613400565b60405180910390a3505050565b6000826121388584612402565b1490509392505050565b61214d848484611b6b565b612159848484846124db565b612198576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161218f90613498565b60405180910390fd5b50505050565b6060600e80546121ad906139f1565b80601f01602080910402602001604051908101604052809291908181526020018280546121d9906139f1565b80156122265780601f106121fb57610100808354040283529160200191612226565b820191906000526020600020905b81548152906001019060200180831161220957829003601f168201915b5050505050905090565b60606000821415612278576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506123d8565b600082905060005b600082146122aa57808061229390613a54565b915050600a826122a391906138be565b9150612280565b60008167ffffffffffffffff8111156122ec577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f19166020018201604052801561231e5781602001600182028036833780820191505090505b5090505b600085146123d15760018261233791906138ef565b9150600a856123469190613aa7565b60306123529190613868565b60f81b81838151811061238e577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856123ca91906138be565b9450612322565b8093505050505b919050565b505050565b6123ec6007611ee2565b6123ff816123fa6007611a7f565b612672565b50565b60008082905060005b84518110156124d057600085828151811061244f577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015190508083116124905782816040516020016124739291906132fd565b6040516020818303038152906040528051906020012092506124bc565b80836040516020016124a39291906132fd565b6040516020818303038152906040528051906020012092505b5080806124c890613a54565b91505061240b565b508091505092915050565b60006124fc8473ffffffffffffffffffffffffffffffffffffffff16612690565b15612665578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026125256119be565b8786866040518563ffffffff1660e01b8152600401612547949392919061337d565b602060405180830381600087803b15801561256157600080fd5b505af192505050801561259257506040513d601f19601f8201168201806040525081019061258f9190612d51565b60015b612615573d80600081146125c2576040519150601f19603f3d011682016040523d82523d6000602084013e6125c7565b606091505b5060008151141561260d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161260490613498565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161491505061266a565b600190505b949350505050565b61268c8282604051806020016040528060008152506126a3565b5050565b600080823b905060008111915050919050565b6126ad83836126fe565b6126ba60008484846124db565b6126f9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126f090613498565b60405180910390fd5b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561276e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161276590613658565b60405180910390fd5b61277781611952565b156127b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127ae906134d8565b60405180910390fd5b6127c3600083836123dd565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546128139190613868565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b8280546128d8906139f1565b90600052602060002090601f0160209004810192826128fa5760008555612941565b82601f1061291357805160ff1916838001178555612941565b82800160010185558215612941579182015b82811115612940578251825591602001919060010190612925565b5b50905061294e9190612952565b5090565b5b8082111561296b576000816000905550600101612953565b5090565b600061298261297d846137b8565b613793565b90508281526020810184848401111561299a57600080fd5b6129a58482856139af565b509392505050565b60006129c06129bb846137e9565b613793565b9050828152602081018484840111156129d857600080fd5b6129e38482856139af565b509392505050565b6000813590506129fa81614171565b92915050565b60008083601f840112612a1257600080fd5b8235905067ffffffffffffffff811115612a2b57600080fd5b602083019150836020820283011115612a4357600080fd5b9250929050565b600081359050612a5981614188565b92915050565b600081359050612a6e8161419f565b92915050565b600081359050612a83816141b6565b92915050565b600081519050612a98816141b6565b92915050565b600082601f830112612aaf57600080fd5b8135612abf84826020860161296f565b91505092915050565b600082601f830112612ad957600080fd5b8135612ae98482602086016129ad565b91505092915050565b600081359050612b01816141cd565b92915050565b600081359050612b16816141e4565b92915050565b600060208284031215612b2e57600080fd5b6000612b3c848285016129eb565b91505092915050565b60008060408385031215612b5857600080fd5b6000612b66858286016129eb565b9250506020612b77858286016129eb565b9150509250929050565b600080600060608486031215612b9657600080fd5b6000612ba4868287016129eb565b9350506020612bb5868287016129eb565b9250506040612bc686828701612b07565b9150509250925092565b60008060008060808587031215612be657600080fd5b6000612bf4878288016129eb565b9450506020612c05878288016129eb565b9350506040612c1687828801612b07565b925050606085013567ffffffffffffffff811115612c3357600080fd5b612c3f87828801612a9e565b91505092959194509250565b60008060408385031215612c5e57600080fd5b6000612c6c858286016129eb565b9250506020612c7d85828601612a4a565b9150509250929050565b60008060408385031215612c9a57600080fd5b6000612ca8858286016129eb565b9250506020612cb985828601612af2565b9150509250929050565b60008060408385031215612cd657600080fd5b6000612ce4858286016129eb565b9250506020612cf585828601612b07565b9150509250929050565b600060208284031215612d1157600080fd5b6000612d1f84828501612a5f565b91505092915050565b600060208284031215612d3a57600080fd5b6000612d4884828501612a74565b91505092915050565b600060208284031215612d6357600080fd5b6000612d7184828501612a89565b91505092915050565b600060208284031215612d8c57600080fd5b600082013567ffffffffffffffff811115612da657600080fd5b612db284828501612ac8565b91505092915050565b600060208284031215612dcd57600080fd5b6000612ddb84828501612af2565b91505092915050565b60008060008060608587031215612dfa57600080fd5b6000612e0887828801612af2565b9450506020612e1987828801612b07565b935050604085013567ffffffffffffffff811115612e3657600080fd5b612e4287828801612a00565b925092505092959194509250565b600060208284031215612e6257600080fd5b6000612e7084828501612b07565b91505092915050565b612e8281613923565b82525050565b612e9181613935565b82525050565b612ea081613941565b82525050565b612eb7612eb282613941565b613a9d565b82525050565b6000612ec88261381a565b612ed28185613830565b9350612ee28185602086016139be565b612eeb81613b94565b840191505092915050565b6000612f0182613825565b612f0b818561384c565b9350612f1b8185602086016139be565b612f2481613b94565b840191505092915050565b6000612f3a82613825565b612f44818561385d565b9350612f548185602086016139be565b80840191505092915050565b6000612f6d60058361384c565b9150612f7882613ba5565b602082019050919050565b6000612f9060078361384c565b9150612f9b82613bce565b602082019050919050565b6000612fb360328361384c565b9150612fbe82613bf7565b604082019050919050565b6000612fd660268361384c565b9150612fe182613c46565b604082019050919050565b6000612ff9601c8361384c565b915061300482613c95565b602082019050919050565b600061301c60068361384c565b915061302782613cbe565b602082019050919050565b600061303f60088361384c565b915061304a82613ce7565b602082019050919050565b600061306260248361384c565b915061306d82613d10565b604082019050919050565b600061308560198361384c565b915061309082613d5f565b602082019050919050565b60006130a860088361384c565b91506130b382613d88565b602082019050919050565b60006130cb602c8361384c565b91506130d682613db1565b604082019050919050565b60006130ee60068361384c565b91506130f982613e00565b602082019050919050565b600061311160068361384c565b915061311c82613e29565b602082019050919050565b600061313460388361384c565b915061313f82613e52565b604082019050919050565b6000613157602a8361384c565b915061316282613ea1565b604082019050919050565b600061317a60298361384c565b915061318582613ef0565b604082019050919050565b600061319d60208361384c565b91506131a882613f3f565b602082019050919050565b60006131c0602c8361384c565b91506131cb82613f68565b604082019050919050565b60006131e360208361384c565b91506131ee82613fb7565b602082019050919050565b600061320660298361384c565b915061321182613fe0565b604082019050919050565b6000613229602f8361384c565b91506132348261402f565b604082019050919050565b600061324c60098361384c565b91506132578261407e565b602082019050919050565b600061326f60218361384c565b915061327a826140a7565b604082019050919050565b6000613292600083613841565b915061329d826140f6565b600082019050919050565b60006132b560318361384c565b91506132c0826140f9565b604082019050919050565b60006132d8600a8361384c565b91506132e382614148565b602082019050919050565b6132f7816139a5565b82525050565b60006133098285612ea6565b6020820191506133198284612ea6565b6020820191508190509392505050565b60006133358285612f2f565b91506133418284612f2f565b91508190509392505050565b600061335882613285565b9150819050919050565b60006020820190506133776000830184612e79565b92915050565b60006080820190506133926000830187612e79565b61339f6020830186612e79565b6133ac60408301856132ee565b81810360608301526133be8184612ebd565b905095945050505050565b60006060820190506133de6000830186612e79565b6133eb60208301856132ee565b6133f860408301846132ee565b949350505050565b60006020820190506134156000830184612e88565b92915050565b60006020820190506134306000830184612e97565b92915050565b600060208201905081810360008301526134508184612ef6565b905092915050565b6000602082019050818103600083015261347181612f60565b9050919050565b6000602082019050818103600083015261349181612f83565b9050919050565b600060208201905081810360008301526134b181612fa6565b9050919050565b600060208201905081810360008301526134d181612fc9565b9050919050565b600060208201905081810360008301526134f181612fec565b9050919050565b600060208201905081810360008301526135118161300f565b9050919050565b6000602082019050818103600083015261353181613032565b9050919050565b6000602082019050818103600083015261355181613055565b9050919050565b6000602082019050818103600083015261357181613078565b9050919050565b600060208201905081810360008301526135918161309b565b9050919050565b600060208201905081810360008301526135b1816130be565b9050919050565b600060208201905081810360008301526135d1816130e1565b9050919050565b600060208201905081810360008301526135f181613104565b9050919050565b6000602082019050818103600083015261361181613127565b9050919050565b600060208201905081810360008301526136318161314a565b9050919050565b600060208201905081810360008301526136518161316d565b9050919050565b6000602082019050818103600083015261367181613190565b9050919050565b60006020820190508181036000830152613691816131b3565b9050919050565b600060208201905081810360008301526136b1816131d6565b9050919050565b600060208201905081810360008301526136d1816131f9565b9050919050565b600060208201905081810360008301526136f18161321c565b9050919050565b600060208201905081810360008301526137118161323f565b9050919050565b6000602082019050818103600083015261373181613262565b9050919050565b60006020820190508181036000830152613751816132a8565b9050919050565b60006020820190508181036000830152613771816132cb565b9050919050565b600060208201905061378d60008301846132ee565b92915050565b600061379d6137ae565b90506137a98282613a23565b919050565b6000604051905090565b600067ffffffffffffffff8211156137d3576137d2613b65565b5b6137dc82613b94565b9050602081019050919050565b600067ffffffffffffffff82111561380457613803613b65565b5b61380d82613b94565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000613873826139a5565b915061387e836139a5565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156138b3576138b2613ad8565b5b828201905092915050565b60006138c9826139a5565b91506138d4836139a5565b9250826138e4576138e3613b07565b5b828204905092915050565b60006138fa826139a5565b9150613905836139a5565b92508282101561391857613917613ad8565b5b828203905092915050565b600061392e82613985565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600061ffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156139dc5780820151818401526020810190506139c1565b838111156139eb576000848401525b50505050565b60006002820490506001821680613a0957607f821691505b60208210811415613a1d57613a1c613b36565b5b50919050565b613a2c82613b94565b810181811067ffffffffffffffff82111715613a4b57613a4a613b65565b5b80604052505050565b6000613a5f826139a5565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613a9257613a91613ad8565b5b600182019050919050565b6000819050919050565b6000613ab2826139a5565b9150613abd836139a5565b925082613acd57613acc613b07565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f2173616c65000000000000000000000000000000000000000000000000000000600082015250565b7f21737570706c7900000000000000000000000000000000000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f21636f756e740000000000000000000000000000000000000000000000000000600082015250565b7f2162616c616e6365000000000000000000000000000000000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f2165785f73616c65000000000000000000000000000000000000000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f2170726f6f660000000000000000000000000000000000000000000000000000600082015250565b7f2165746865720000000000000000000000000000000000000000000000000000600082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f217472616e736665720000000000000000000000000000000000000000000000600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f2165785f737570706c7900000000000000000000000000000000000000000000600082015250565b61417a81613923565b811461418557600080fd5b50565b61419181613935565b811461419c57600080fd5b50565b6141a881613941565b81146141b357600080fd5b50565b6141bf8161394b565b81146141ca57600080fd5b50565b6141d681613977565b81146141e157600080fd5b50565b6141ed816139a5565b81146141f857600080fd5b5056fea2646970667358221220f60592e37e4bdd76840a4f5036294ee860ed0126ebec33f1e04b0c7b9485570964736f6c63430008040033000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000001000000000000000000000000004f13606b4d8627783e9a8fef802d7aee6106926e000000000000000000000000000000000000000000000000000000000000000d5461626c65436865665061737300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000354435000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d557a76793868796b5563583277375847356267396a506b4432376e6e364d3753387a664672775547327a52732f00000000000000000000
Deployed Bytecode
0x6080604052600436106102045760003560e01c806370a0823111610118578063a22cb465116100a0578063c87b56dd1161006f578063c87b56dd146106c5578063d4cca5f114610702578063e985e9c51461072d578063f2fde38b1461076a578063f607cc4c1461079357610204565b8063a22cb4651461062c578063af510b8714610655578063b88d4fde14610671578063c61b58621461069a57610204565b80637cb64759116100e75780637cb64759146105575780637f6763fd146105805780637f986930146105ab5780638da5cb5b146105d657806395d89b411461060157610204565b806370a08231146104be578063715018a6146104fb57806375da736c14610512578063791a25191461052e57610204565b8063355b802c1161019b578063524306881161016a57806352430688146103ff5780636352211e1461042857806369e8e99e146104655780636a014483146104905780636d71c5cd146104a757610204565b8063355b802c1461037d5780633ccfd60b146103a85780633fcc96d8146103bf57806342842e0e146103d657610204565b806318160ddd116101d757806318160ddd146102d757806323b872dd14610302578063295439e11461032b57806330176e131461035457610204565b806301ffc9a71461020957806306fdde0314610246578063081812fc14610271578063095ea7b3146102ae575b600080fd5b34801561021557600080fd5b50610230600480360381019061022b9190612d28565b6107af565b60405161023d9190613400565b60405180910390f35b34801561025257600080fd5b5061025b610891565b6040516102689190613436565b60405180910390f35b34801561027d57600080fd5b5061029860048036038101906102939190612e50565b610923565b6040516102a59190613362565b60405180910390f35b3480156102ba57600080fd5b506102d560048036038101906102d09190612cc3565b6109a8565b005b3480156102e357600080fd5b506102ec610ac0565b6040516102f99190613778565b60405180910390f35b34801561030e57600080fd5b5061032960048036038101906103249190612b81565b610ad1565b005b34801561033757600080fd5b50610352600480360381019061034d9190612c87565b610b31565b005b34801561036057600080fd5b5061037b60048036038101906103769190612d7a565b610bbd565b005b34801561038957600080fd5b50610392610c53565b60405161039f9190613400565b60405180910390f35b3480156103b457600080fd5b506103bd610c66565b005b3480156103cb57600080fd5b506103d4610d7e565b005b3480156103e257600080fd5b506103fd60048036038101906103f89190612b81565b610e06565b005b34801561040b57600080fd5b5061042660048036038101906104219190612e50565b610e26565b005b34801561043457600080fd5b5061044f600480360381019061044a9190612e50565b610eac565b60405161045c9190613362565b60405180910390f35b34801561047157600080fd5b5061047a610f5e565b6040516104879190613778565b60405180910390f35b34801561049c57600080fd5b506104a5610f64565b005b3480156104b357600080fd5b506104bc61100c565b005b3480156104ca57600080fd5b506104e560048036038101906104e09190612b1c565b6110a2565b6040516104f29190613778565b60405180910390f35b34801561050757600080fd5b5061051061115a565b005b61052c60048036038101906105279190612dbb565b6111e2565b005b34801561053a57600080fd5b5061055560048036038101906105509190612e50565b6112c2565b005b34801561056357600080fd5b5061057e60048036038101906105799190612cff565b611348565b005b34801561058c57600080fd5b506105956113ce565b6040516105a29190613778565b60405180910390f35b3480156105b757600080fd5b506105c06113df565b6040516105cd9190613778565b60405180910390f35b3480156105e257600080fd5b506105eb6113f0565b6040516105f89190613362565b60405180910390f35b34801561060d57600080fd5b5061061661141a565b6040516106239190613436565b60405180910390f35b34801561063857600080fd5b50610653600480360381019061064e9190612c4b565b6114ac565b005b61066f600480360381019061066a9190612de4565b6114c2565b005b34801561067d57600080fd5b5061069860048036038101906106939190612bd0565b6115b0565b005b3480156106a657600080fd5b506106af611612565b6040516106bc919061341b565b60405180910390f35b3480156106d157600080fd5b506106ec60048036038101906106e79190612e50565b611618565b6040516106f99190613436565b60405180910390f35b34801561070e57600080fd5b506107176116bf565b6040516107249190613362565b60405180910390f35b34801561073957600080fd5b50610754600480360381019061074f9190612b45565b6116e3565b6040516107619190613400565b60405180910390f35b34801561077657600080fd5b50610791600480360381019061078c9190612b1c565b611777565b005b6107ad60048036038101906107a89190612dbb565b61186f565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061087a57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061088a5750610889826118e8565b5b9050919050565b6060600080546108a0906139f1565b80601f01602080910402602001604051908101604052809291908181526020018280546108cc906139f1565b80156109195780601f106108ee57610100808354040283529160200191610919565b820191906000526020600020905b8154815290600101906020018083116108fc57829003601f168201915b5050505050905090565b600061092e82611952565b61096d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161096490613678565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006109b382610eac565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610a24576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a1b90613718565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610a436119be565b73ffffffffffffffffffffffffffffffffffffffff161480610a725750610a7181610a6c6119be565b6116e3565b5b610ab1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aa8906135f8565b60405180910390fd5b610abb83836119c6565b505050565b6000610acc6007611a7f565b905090565b610ae2610adc6119be565b82611a8d565b610b21576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b1890613738565b60405180910390fd5b610b2c838383611b6b565b505050565b610b396119be565b73ffffffffffffffffffffffffffffffffffffffff16610b576113f0565b73ffffffffffffffffffffffffffffffffffffffff1614610bad576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ba490613698565b60405180910390fd5b610bb982600083611dc7565b5050565b610bc56119be565b73ffffffffffffffffffffffffffffffffffffffff16610be36113f0565b73ffffffffffffffffffffffffffffffffffffffff1614610c39576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c3090613698565b60405180910390fd5b80600e9080519060200190610c4f9291906128cc565b5050565b600d60009054906101000a900460ff1681565b600047905060008111610cae576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ca590613518565b60405180910390fd5b60007f0000000000000000000000004f13606b4d8627783e9a8fef802d7aee6106926e73ffffffffffffffffffffffffffffffffffffffff1682604051610cf49061334d565b60006040518083038185875af1925050503d8060008114610d31576040519150601f19603f3d011682016040523d82523d6000602084013e610d36565b606091505b5050905080610d7a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d71906136f8565b60405180910390fd5b5050565b610d866119be565b73ffffffffffffffffffffffffffffffffffffffff16610da46113f0565b73ffffffffffffffffffffffffffffffffffffffff1614610dfa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610df190613698565b60405180910390fd5b610e046008611ee2565b565b610e21838383604051806020016040528060008152506115b0565b505050565b610e2e6119be565b73ffffffffffffffffffffffffffffffffffffffff16610e4c6113f0565b73ffffffffffffffffffffffffffffffffffffffff1614610ea2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e9990613698565b60405180910390fd5b80600b8190555050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610f55576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f4c90613638565b60405180910390fd5b80915050919050565b600c5481565b610f6c6119be565b73ffffffffffffffffffffffffffffffffffffffff16610f8a6113f0565b73ffffffffffffffffffffffffffffffffffffffff1614610fe0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fd790613698565b60405180910390fd5b600d60009054906101000a900460ff1615600d60006101000a81548160ff021916908315150217905550565b6110146119be565b73ffffffffffffffffffffffffffffffffffffffff166110326113f0565b73ffffffffffffffffffffffffffffffffffffffff1614611088576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161107f90613698565b60405180910390fd5b600c600081548092919061109b90613a54565b9190505550565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611113576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161110a90613618565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6111626119be565b73ffffffffffffffffffffffffffffffffffffffff166111806113f0565b73ffffffffffffffffffffffffffffffffffffffff16146111d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111cd90613698565b60405180910390fd5b6111e06000611ef8565b565b600d60009054906101000a900460ff1615156001151514611238576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161122f90613578565b60405180910390fd5b610bb86112456009611a7f565b10611285576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161127c90613758565b60405180910390fd5b60005b8161ffff168110156112b15761129e6009611ee2565b80806112a990613a54565b915050611288565b506112bf33600b5483611dc7565b50565b6112ca6119be565b73ffffffffffffffffffffffffffffffffffffffff166112e86113f0565b73ffffffffffffffffffffffffffffffffffffffff161461133e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161133590613698565b60405180910390fd5b80600a8190555050565b6113506119be565b73ffffffffffffffffffffffffffffffffffffffff1661136e6113f0565b73ffffffffffffffffffffffffffffffffffffffff16146113c4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113bb90613698565b60405180910390fd5b80600f8190555050565b60006113da6009611a7f565b905090565b60006113eb6008611a7f565b905090565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060018054611429906139f1565b80601f0160208091040260200160405190810160405280929190818152602001828054611455906139f1565b80156114a25780601f10611477576101008083540402835291602001916114a2565b820191906000526020600020905b81548152906001019060200180831161148557829003601f168201915b5050505050905090565b6114be6114b76119be565b8383611fbe565b5050565b611543828280806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050600f5433866115166008611a7f565b604051602001611528939291906133c9565b6040516020818303038152906040528051906020012061212b565b611582576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611579906135b8565b60405180910390fd5b61158c6008611a7f565b6000141561159f5761159e6009611ee2565b5b6115aa338486611dc7565b50505050565b6115c16115bb6119be565b83611a8d565b611600576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115f790613738565b60405180910390fd5b61160c84848484612142565b50505050565b600f5481565b606061162382611952565b611662576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611659906136d8565b60405180910390fd5b600061166c61219e565b9050600081511161168c57604051806020016040528060008152506116b7565b8061169684612230565b6040516020016116a7929190613329565b6040516020818303038152906040525b915050919050565b7f0000000000000000000000004f13606b4d8627783e9a8fef802d7aee6106926e81565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61177f6119be565b73ffffffffffffffffffffffffffffffffffffffff1661179d6113f0565b73ffffffffffffffffffffffffffffffffffffffff16146117f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117ea90613698565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611863576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161185a906134b8565b60405180910390fd5b61186c81611ef8565b50565b61177061187c6007611a7f565b10801561188b57506001600c54145b8061189957506002600c5410155b6118d8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118cf90613458565b60405180910390fd5b6118e533600a5483611dc7565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611a3983610eac565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600081600001549050919050565b6000611a9882611952565b611ad7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ace90613598565b60405180910390fd5b6000611ae283610eac565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611b5157508373ffffffffffffffffffffffffffffffffffffffff16611b3984610923565b73ffffffffffffffffffffffffffffffffffffffff16145b80611b625750611b6181856116e3565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611b8b82610eac565b73ffffffffffffffffffffffffffffffffffffffff1614611be1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bd8906136b8565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611c51576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c4890613538565b60405180910390fd5b611c5c8383836123dd565b611c676000826119c6565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611cb791906138ef565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611d0e9190613868565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b60008161ffff1611611e0e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e05906134f8565b60405180910390fd5b60008161ffff16611e1f6007611a7f565b019050612710811115611e67576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e5e90613478565b60405180910390fd5b8161ffff168302341015611eb0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ea7906135d8565b60405180910390fd5b5060005b8161ffff16811015611edc57611ec9846123e2565b8080611ed490613a54565b915050611eb4565b50505050565b6001816000016000828254019250508190555050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561202d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161202490613558565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161211e9190613400565b60405180910390a3505050565b6000826121388584612402565b1490509392505050565b61214d848484611b6b565b612159848484846124db565b612198576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161218f90613498565b60405180910390fd5b50505050565b6060600e80546121ad906139f1565b80601f01602080910402602001604051908101604052809291908181526020018280546121d9906139f1565b80156122265780601f106121fb57610100808354040283529160200191612226565b820191906000526020600020905b81548152906001019060200180831161220957829003601f168201915b5050505050905090565b60606000821415612278576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506123d8565b600082905060005b600082146122aa57808061229390613a54565b915050600a826122a391906138be565b9150612280565b60008167ffffffffffffffff8111156122ec577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f19166020018201604052801561231e5781602001600182028036833780820191505090505b5090505b600085146123d15760018261233791906138ef565b9150600a856123469190613aa7565b60306123529190613868565b60f81b81838151811061238e577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856123ca91906138be565b9450612322565b8093505050505b919050565b505050565b6123ec6007611ee2565b6123ff816123fa6007611a7f565b612672565b50565b60008082905060005b84518110156124d057600085828151811061244f577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015190508083116124905782816040516020016124739291906132fd565b6040516020818303038152906040528051906020012092506124bc565b80836040516020016124a39291906132fd565b6040516020818303038152906040528051906020012092505b5080806124c890613a54565b91505061240b565b508091505092915050565b60006124fc8473ffffffffffffffffffffffffffffffffffffffff16612690565b15612665578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026125256119be565b8786866040518563ffffffff1660e01b8152600401612547949392919061337d565b602060405180830381600087803b15801561256157600080fd5b505af192505050801561259257506040513d601f19601f8201168201806040525081019061258f9190612d51565b60015b612615573d80600081146125c2576040519150601f19603f3d011682016040523d82523d6000602084013e6125c7565b606091505b5060008151141561260d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161260490613498565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161491505061266a565b600190505b949350505050565b61268c8282604051806020016040528060008152506126a3565b5050565b600080823b905060008111915050919050565b6126ad83836126fe565b6126ba60008484846124db565b6126f9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126f090613498565b60405180910390fd5b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561276e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161276590613658565b60405180910390fd5b61277781611952565b156127b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127ae906134d8565b60405180910390fd5b6127c3600083836123dd565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546128139190613868565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b8280546128d8906139f1565b90600052602060002090601f0160209004810192826128fa5760008555612941565b82601f1061291357805160ff1916838001178555612941565b82800160010185558215612941579182015b82811115612940578251825591602001919060010190612925565b5b50905061294e9190612952565b5090565b5b8082111561296b576000816000905550600101612953565b5090565b600061298261297d846137b8565b613793565b90508281526020810184848401111561299a57600080fd5b6129a58482856139af565b509392505050565b60006129c06129bb846137e9565b613793565b9050828152602081018484840111156129d857600080fd5b6129e38482856139af565b509392505050565b6000813590506129fa81614171565b92915050565b60008083601f840112612a1257600080fd5b8235905067ffffffffffffffff811115612a2b57600080fd5b602083019150836020820283011115612a4357600080fd5b9250929050565b600081359050612a5981614188565b92915050565b600081359050612a6e8161419f565b92915050565b600081359050612a83816141b6565b92915050565b600081519050612a98816141b6565b92915050565b600082601f830112612aaf57600080fd5b8135612abf84826020860161296f565b91505092915050565b600082601f830112612ad957600080fd5b8135612ae98482602086016129ad565b91505092915050565b600081359050612b01816141cd565b92915050565b600081359050612b16816141e4565b92915050565b600060208284031215612b2e57600080fd5b6000612b3c848285016129eb565b91505092915050565b60008060408385031215612b5857600080fd5b6000612b66858286016129eb565b9250506020612b77858286016129eb565b9150509250929050565b600080600060608486031215612b9657600080fd5b6000612ba4868287016129eb565b9350506020612bb5868287016129eb565b9250506040612bc686828701612b07565b9150509250925092565b60008060008060808587031215612be657600080fd5b6000612bf4878288016129eb565b9450506020612c05878288016129eb565b9350506040612c1687828801612b07565b925050606085013567ffffffffffffffff811115612c3357600080fd5b612c3f87828801612a9e565b91505092959194509250565b60008060408385031215612c5e57600080fd5b6000612c6c858286016129eb565b9250506020612c7d85828601612a4a565b9150509250929050565b60008060408385031215612c9a57600080fd5b6000612ca8858286016129eb565b9250506020612cb985828601612af2565b9150509250929050565b60008060408385031215612cd657600080fd5b6000612ce4858286016129eb565b9250506020612cf585828601612b07565b9150509250929050565b600060208284031215612d1157600080fd5b6000612d1f84828501612a5f565b91505092915050565b600060208284031215612d3a57600080fd5b6000612d4884828501612a74565b91505092915050565b600060208284031215612d6357600080fd5b6000612d7184828501612a89565b91505092915050565b600060208284031215612d8c57600080fd5b600082013567ffffffffffffffff811115612da657600080fd5b612db284828501612ac8565b91505092915050565b600060208284031215612dcd57600080fd5b6000612ddb84828501612af2565b91505092915050565b60008060008060608587031215612dfa57600080fd5b6000612e0887828801612af2565b9450506020612e1987828801612b07565b935050604085013567ffffffffffffffff811115612e3657600080fd5b612e4287828801612a00565b925092505092959194509250565b600060208284031215612e6257600080fd5b6000612e7084828501612b07565b91505092915050565b612e8281613923565b82525050565b612e9181613935565b82525050565b612ea081613941565b82525050565b612eb7612eb282613941565b613a9d565b82525050565b6000612ec88261381a565b612ed28185613830565b9350612ee28185602086016139be565b612eeb81613b94565b840191505092915050565b6000612f0182613825565b612f0b818561384c565b9350612f1b8185602086016139be565b612f2481613b94565b840191505092915050565b6000612f3a82613825565b612f44818561385d565b9350612f548185602086016139be565b80840191505092915050565b6000612f6d60058361384c565b9150612f7882613ba5565b602082019050919050565b6000612f9060078361384c565b9150612f9b82613bce565b602082019050919050565b6000612fb360328361384c565b9150612fbe82613bf7565b604082019050919050565b6000612fd660268361384c565b9150612fe182613c46565b604082019050919050565b6000612ff9601c8361384c565b915061300482613c95565b602082019050919050565b600061301c60068361384c565b915061302782613cbe565b602082019050919050565b600061303f60088361384c565b915061304a82613ce7565b602082019050919050565b600061306260248361384c565b915061306d82613d10565b604082019050919050565b600061308560198361384c565b915061309082613d5f565b602082019050919050565b60006130a860088361384c565b91506130b382613d88565b602082019050919050565b60006130cb602c8361384c565b91506130d682613db1565b604082019050919050565b60006130ee60068361384c565b91506130f982613e00565b602082019050919050565b600061311160068361384c565b915061311c82613e29565b602082019050919050565b600061313460388361384c565b915061313f82613e52565b604082019050919050565b6000613157602a8361384c565b915061316282613ea1565b604082019050919050565b600061317a60298361384c565b915061318582613ef0565b604082019050919050565b600061319d60208361384c565b91506131a882613f3f565b602082019050919050565b60006131c0602c8361384c565b91506131cb82613f68565b604082019050919050565b60006131e360208361384c565b91506131ee82613fb7565b602082019050919050565b600061320660298361384c565b915061321182613fe0565b604082019050919050565b6000613229602f8361384c565b91506132348261402f565b604082019050919050565b600061324c60098361384c565b91506132578261407e565b602082019050919050565b600061326f60218361384c565b915061327a826140a7565b604082019050919050565b6000613292600083613841565b915061329d826140f6565b600082019050919050565b60006132b560318361384c565b91506132c0826140f9565b604082019050919050565b60006132d8600a8361384c565b91506132e382614148565b602082019050919050565b6132f7816139a5565b82525050565b60006133098285612ea6565b6020820191506133198284612ea6565b6020820191508190509392505050565b60006133358285612f2f565b91506133418284612f2f565b91508190509392505050565b600061335882613285565b9150819050919050565b60006020820190506133776000830184612e79565b92915050565b60006080820190506133926000830187612e79565b61339f6020830186612e79565b6133ac60408301856132ee565b81810360608301526133be8184612ebd565b905095945050505050565b60006060820190506133de6000830186612e79565b6133eb60208301856132ee565b6133f860408301846132ee565b949350505050565b60006020820190506134156000830184612e88565b92915050565b60006020820190506134306000830184612e97565b92915050565b600060208201905081810360008301526134508184612ef6565b905092915050565b6000602082019050818103600083015261347181612f60565b9050919050565b6000602082019050818103600083015261349181612f83565b9050919050565b600060208201905081810360008301526134b181612fa6565b9050919050565b600060208201905081810360008301526134d181612fc9565b9050919050565b600060208201905081810360008301526134f181612fec565b9050919050565b600060208201905081810360008301526135118161300f565b9050919050565b6000602082019050818103600083015261353181613032565b9050919050565b6000602082019050818103600083015261355181613055565b9050919050565b6000602082019050818103600083015261357181613078565b9050919050565b600060208201905081810360008301526135918161309b565b9050919050565b600060208201905081810360008301526135b1816130be565b9050919050565b600060208201905081810360008301526135d1816130e1565b9050919050565b600060208201905081810360008301526135f181613104565b9050919050565b6000602082019050818103600083015261361181613127565b9050919050565b600060208201905081810360008301526136318161314a565b9050919050565b600060208201905081810360008301526136518161316d565b9050919050565b6000602082019050818103600083015261367181613190565b9050919050565b60006020820190508181036000830152613691816131b3565b9050919050565b600060208201905081810360008301526136b1816131d6565b9050919050565b600060208201905081810360008301526136d1816131f9565b9050919050565b600060208201905081810360008301526136f18161321c565b9050919050565b600060208201905081810360008301526137118161323f565b9050919050565b6000602082019050818103600083015261373181613262565b9050919050565b60006020820190508181036000830152613751816132a8565b9050919050565b60006020820190508181036000830152613771816132cb565b9050919050565b600060208201905061378d60008301846132ee565b92915050565b600061379d6137ae565b90506137a98282613a23565b919050565b6000604051905090565b600067ffffffffffffffff8211156137d3576137d2613b65565b5b6137dc82613b94565b9050602081019050919050565b600067ffffffffffffffff82111561380457613803613b65565b5b61380d82613b94565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000613873826139a5565b915061387e836139a5565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156138b3576138b2613ad8565b5b828201905092915050565b60006138c9826139a5565b91506138d4836139a5565b9250826138e4576138e3613b07565b5b828204905092915050565b60006138fa826139a5565b9150613905836139a5565b92508282101561391857613917613ad8565b5b828203905092915050565b600061392e82613985565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600061ffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156139dc5780820151818401526020810190506139c1565b838111156139eb576000848401525b50505050565b60006002820490506001821680613a0957607f821691505b60208210811415613a1d57613a1c613b36565b5b50919050565b613a2c82613b94565b810181811067ffffffffffffffff82111715613a4b57613a4a613b65565b5b80604052505050565b6000613a5f826139a5565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613a9257613a91613ad8565b5b600182019050919050565b6000819050919050565b6000613ab2826139a5565b9150613abd836139a5565b925082613acd57613acc613b07565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f2173616c65000000000000000000000000000000000000000000000000000000600082015250565b7f21737570706c7900000000000000000000000000000000000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f21636f756e740000000000000000000000000000000000000000000000000000600082015250565b7f2162616c616e6365000000000000000000000000000000000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f2165785f73616c65000000000000000000000000000000000000000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f2170726f6f660000000000000000000000000000000000000000000000000000600082015250565b7f2165746865720000000000000000000000000000000000000000000000000000600082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f217472616e736665720000000000000000000000000000000000000000000000600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f2165785f737570706c7900000000000000000000000000000000000000000000600082015250565b61417a81613923565b811461418557600080fd5b50565b61419181613935565b811461419c57600080fd5b50565b6141a881613941565b81146141b357600080fd5b50565b6141bf8161394b565b81146141ca57600080fd5b50565b6141d681613977565b81146141e157600080fd5b50565b6141ed816139a5565b81146141f857600080fd5b5056fea2646970667358221220f60592e37e4bdd76840a4f5036294ee860ed0126ebec33f1e04b0c7b9485570964736f6c63430008040033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000001000000000000000000000000004f13606b4d8627783e9a8fef802d7aee6106926e000000000000000000000000000000000000000000000000000000000000000d5461626c65436865665061737300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000354435000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d557a76793868796b5563583277375847356267396a506b4432376e6e364d3753387a664672775547327a52732f00000000000000000000
-----Decoded View---------------
Arg [0] : name_ (string): TableChefPass
Arg [1] : symbol_ (string): TCP
Arg [2] : baseTokenURI (string): ipfs://QmUzvy8hykUcX2w7XG5bg9jPkD27nn6M7S8zfFrwUG2zRs/
Arg [3] : recipient (address): 0x4F13606b4D8627783E9a8FEf802d7AEe6106926e
-----Encoded View---------------
11 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000100
Arg [3] : 0000000000000000000000004f13606b4d8627783e9a8fef802d7aee6106926e
Arg [4] : 000000000000000000000000000000000000000000000000000000000000000d
Arg [5] : 5461626c65436865665061737300000000000000000000000000000000000000
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [7] : 5443500000000000000000000000000000000000000000000000000000000000
Arg [8] : 0000000000000000000000000000000000000000000000000000000000000036
Arg [9] : 697066733a2f2f516d557a76793868796b5563583277375847356267396a506b
Arg [10] : 4432376e6e364d3753387a664672775547327a52732f00000000000000000000
Loading...
Loading
Loading...
Loading
OVERVIEW
The mission is simple: give access to unique experience by allowing each NFT holder to reserve an "out of the ordinary" table in the establishment of a great starred chef.Multichain Portfolio | 30 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|---|---|---|---|---|
POL | 100.00% | $0.593737 | 0.2 | $0.118747 |
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.