Feature Tip: Add private address tag to any address under My Name Tag !
ERC-721
Overview
Max Total Supply
246 ZOAP
Holders
188
Total Transfers
-
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
ZiPoap
Compiler Version
v0.8.8+commit.dddeac2f
Optimization Enabled:
No with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT // Contract by pr0xy.io pragma solidity ^0.8.7; import './ERC721Enumerable.sol'; import '@openzeppelin/contracts/access/Ownable.sol'; import '@openzeppelin/contracts/utils/cryptography/MerkleProof.sol'; contract ZiPoap is ERC721Enumerable, Ownable { using Strings for uint256; string public gallery; mapping(uint => uint) public tokenEvent; mapping(uint => address) public attendees; mapping(uint => bytes32) public merkleroot; mapping(uint => mapping(address => bool)) public denylist; constructor() ERC721('ZiPoap', 'ZOAP') {} function _baseURI() internal view virtual override returns (string memory) { return gallery; } function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token"); string memory baseURI = _baseURI(); uint eventId = tokenEvent[tokenId]; return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, eventId.toString())) : ""; } function setGallery(string calldata _gallery) external onlyOwner { gallery = _gallery; } function setMerkleRoot(uint _eventId, bytes32 _merkleroot) external onlyOwner { merkleroot[_eventId] = _merkleroot; } function isAttendee(uint _eventId, address _wallet) external view returns (bool) { return denylist[_eventId][_wallet]; } function validate(uint _tokenId) external view returns (bool) { return ownerOf(_tokenId) == attendees[_tokenId]; } function mint(bytes32[] calldata _merkleProof, uint _eventId) external { uint supply = totalSupply(); bytes32 leaf = keccak256(abi.encodePacked(msg.sender)); require(tx.origin == msg.sender, 'Contracts Denied.'); require(!denylist[_eventId][msg.sender], 'Token Claimed.'); require(MerkleProof.verify(_merkleProof, merkleroot[_eventId], leaf), 'Proof Invalid.'); _safeMint(msg.sender, supply); tokenEvent[supply] = _eventId; attendees[supply] = msg.sender; denylist[_eventId][msg.sender] = true; } }
// 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 (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 pragma solidity ^0.8.7; import "@openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.sol"; import "./ERC721.sol"; abstract contract ERC721Enumerable is ERC721, IERC721Enumerable { // See {IERC721Enumerable-totalSupply}. function totalSupply() public view virtual override returns (uint256) { return _owners.length; } // See {IERC721Enumerable-tokenByIndex}. function tokenByIndex(uint256 index) public view virtual override returns (uint256) { require(index < _owners.length, "ERC721Enumerable: global index out of bounds"); return index; } // See {IERC721Enumerable-tokenOfOwnerByIndex}. function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256 tokenId) { require(index < balanceOf(owner), "ERC721Enumerable: owner index out of bounds"); uint count; for(uint i; i < _owners.length; i++){ if(owner == _owners[i]){ if(count == index) return i; else count++; } } revert("ERC721Enumerable: owner index out of bounds"); } // See {IERC165-supportsInterface}. function supportsInterface(bytes4 interfaceId) public view virtual override(IERC165, ERC721) returns (bool) { return interfaceId == type(IERC721Enumerable).interfaceId || super.supportsInterface(interfaceId); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.7; import "@openzeppelin/contracts/utils/Address.sol"; import "@openzeppelin/contracts/utils/Context.sol"; import "@openzeppelin/contracts/utils/Strings.sol"; import "@openzeppelin/contracts/utils/introspection/ERC165.sol"; import "@openzeppelin/contracts/token/ERC721/IERC721.sol"; import "@openzeppelin/contracts/token/ERC721/IERC721Receiver.sol"; import "@openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol"; abstract contract ERC721 is Context, ERC165, IERC721, IERC721Metadata { using Address for address; using Strings for uint256; string private _name; string private _symbol; address[] internal _owners; mapping(uint256 => address) private _tokenApprovals; mapping(address => mapping(address => bool)) private _operatorApprovals; // 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_; } // See {IERC721Metadata-name}. function name() public view virtual override returns (string memory) { return _name; } // See {IERC721Metadata-symbol}. function symbol() public view virtual override returns (string memory) { return _symbol; } // Base URI for computing {tokenURI}. function _baseURI() internal view virtual returns (string memory) { return ""; } // 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())) : ""; } // Returns whether `tokenId` exists. function _exists(uint256 tokenId) internal view virtual returns (bool) { return tokenId < _owners.length && _owners[tokenId] != address(0); } // See {IERC721-balanceOf}. function balanceOf(address owner) public view virtual override returns (uint) { require(owner != address(0), "ERC721: balance query for the zero address"); uint count; for(uint i; i < _owners.length; ++i){ if(owner == _owners[i]) ++count; } return count; } // 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; } // Approve `to` to operate on `tokenId` function _approve(address to, uint256 tokenId) internal virtual { _tokenApprovals[tokenId] = to; emit Approval(ERC721.ownerOf(tokenId), to, tokenId); } // 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); } // 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]; } // See {IERC721-setApprovalForAll}. function setApprovalForAll(address operator, bool approved) public virtual override { require(operator != _msgSender(), "ERC721: approve to caller"); _operatorApprovals[_msgSender()][operator] = approved; emit ApprovalForAll(_msgSender(), operator, approved); } // Returns whether `spender` is allowed to manage `tokenId`. 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)); } // See {IERC721-isApprovedForAll}. function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } // Transfers `tokenId` from `from` to `to`. (No restrictions on sender) 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); _approve(address(0), tokenId); _owners[tokenId] = to; emit Transfer(from, to, tokenId); } // See {IERC721-transferFrom}. function transferFrom(address from, address to, uint256 tokenId) public virtual override { require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _transfer(from, to, tokenId); } // Safely transfers `tokenId` token from `from` to `to`. 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"); } // 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); } // See {IERC721-safeTransferFrom}. function safeTransferFrom(address from, address to, uint256 tokenId) public virtual override { safeTransferFrom(from, to, tokenId, ""); } // Mints `tokenId` and transfers it to `to`. 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); _owners.push(to); emit Transfer(address(0), to, tokenId); } // Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter. 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"); } // Safely mints `tokenId` and transfers it to `to`. function _safeMint(address to, uint256 tokenId) internal virtual { _safeMint(to, tokenId, ""); } // Destroys `tokenId`. function _burn(uint256 tokenId) internal virtual { address owner = ERC721.ownerOf(tokenId); _beforeTokenTransfer(owner, address(0), tokenId); _approve(address(0), tokenId); _owners[tokenId] = address(0); emit Transfer(owner, address(0), tokenId); } // 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); } // Internal function to invoke {IERC721Receiver-onERC721Received} on a target address. 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; } } // Hook that is called before any token transfer. function _beforeTokenTransfer(address from, address to, uint256 tokenId) internal virtual {} }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Enumerable.sol) pragma solidity ^0.8.0; import "../IERC721.sol"; /** * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Enumerable is IERC721 { /** * @dev Returns the total amount of tokens stored by the contract. */ function totalSupply() external view returns (uint256); /** * @dev Returns a token ID owned by `owner` at a given `index` of its token list. * Use along with {balanceOf} to enumerate all of ``owner``'s tokens. */ function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256 tokenId); /** * @dev Returns a token ID at a given `index` of all the tokens stored by the contract. * Use along with {totalSupply} to enumerate all tokens. */ function tokenByIndex(uint256 index) external view returns (uint256); }
// 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/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 (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/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 (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/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/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/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" ] } } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"attendees","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"address","name":"","type":"address"}],"name":"denylist","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"gallery","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_eventId","type":"uint256"},{"internalType":"address","name":"_wallet","type":"address"}],"name":"isAttendee","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"merkleroot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"_merkleProof","type":"bytes32[]"},{"internalType":"uint256","name":"_eventId","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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":"_gallery","type":"string"}],"name":"setGallery","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_eventId","type":"uint256"},{"internalType":"bytes32","name":"_merkleroot","type":"bytes32"}],"name":"setMerkleRoot","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":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"tokenEvent","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"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":"uint256","name":"_tokenId","type":"uint256"}],"name":"validate","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"}]
Contract Creation Code
60806040523480156200001157600080fd5b506040518060400160405280600681526020017f5a69506f617000000000000000000000000000000000000000000000000000008152506040518060400160405280600481526020017f5a4f415000000000000000000000000000000000000000000000000000000000815250816000908051906020019062000096929190620001a6565b508060019080519060200190620000af929190620001a6565b505050620000d2620000c6620000d860201b60201c565b620000e060201b60201c565b620002bb565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620001b49062000285565b90600052602060002090601f016020900481019282620001d8576000855562000224565b82601f10620001f357805160ff191683800117855562000224565b8280016001018555821562000224579182015b828111156200022357825182559160200191906001019062000206565b5b50905062000233919062000237565b5090565b5b808211156200025257600081600090555060010162000238565b5090565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200029e57607f821691505b60208210811415620002b557620002b462000256565b5b50919050565b613cb180620002cb6000396000f3fe608060405234801561001057600080fd5b50600436106101ce5760003560e01c806345de0d9b1161010457806395d89b41116100a2578063ce4d01a311610071578063ce4d01a314610577578063d5015878146105a7578063e985e9c5146105c3578063f2fde38b146105f3576101ce565b806395d89b41146104f1578063a22cb4651461050f578063b88d4fde1461052b578063c87b56dd14610547576101ce565b80636352211e116100de5780636352211e1461046957806370a0823114610499578063715018a6146104c95780638da5cb5b146104d3576101ce565b806345de0d9b146103ed57806348ba9be8146104095780634f6ccce714610439576101ce565b806318160ddd1161017157806323b872dd1161014b57806323b872dd146103675780632f745c591461038357806333cd6f5d146103b357806342842e0e146103d1576101ce565b806318160ddd146102fd57806318712c211461031b5780631bf23cde14610337576101ce565b8063081812fc116101ad578063081812fc14610251578063095ea7b3146102815780630e0c353d1461029d578063127a5298146102cd576101ce565b8062592289146101d357806301ffc9a71461020357806306fdde0314610233575b600080fd5b6101ed60048036038101906101e89190612617565b61060f565b6040516101fa9190612672565b60405180910390f35b61021d600480360381019061021891906126e5565b61063e565b60405161022a9190612672565b60405180910390f35b61023b6106b8565b60405161024891906127ab565b60405180910390f35b61026b600480360381019061026691906127cd565b61074a565b6040516102789190612809565b60405180910390f35b61029b60048036038101906102969190612824565b6107cf565b005b6102b760048036038101906102b291906127cd565b6108e7565b6040516102c49190612809565b60405180910390f35b6102e760048036038101906102e291906127cd565b61091a565b6040516102f49190612873565b60405180910390f35b610305610932565b6040516103129190612873565b60405180910390f35b610335600480360381019061033091906128c4565b61093f565b005b610351600480360381019061034c9190612617565b6109d7565b60405161035e9190612672565b60405180910390f35b610381600480360381019061037c9190612904565b610a3f565b005b61039d60048036038101906103989190612824565b610a9f565b6040516103aa9190612873565b60405180910390f35b6103bb610be4565b6040516103c891906127ab565b60405180910390f35b6103eb60048036038101906103e69190612904565b610c72565b005b610407600480360381019061040291906129bc565b610c92565b005b610423600480360381019061041e91906127cd565b610f57565b6040516104309190612a2b565b60405180910390f35b610453600480360381019061044e91906127cd565b610f6f565b6040516104609190612873565b60405180910390f35b610483600480360381019061047e91906127cd565b610fc0565b6040516104909190612809565b60405180910390f35b6104b360048036038101906104ae9190612a46565b61107d565b6040516104c09190612873565b60405180910390f35b6104d1611199565b005b6104db611221565b6040516104e89190612809565b60405180910390f35b6104f961124b565b60405161050691906127ab565b60405180910390f35b61052960048036038101906105249190612a9f565b6112dd565b005b61054560048036038101906105409190612c0f565b61145e565b005b610561600480360381019061055c91906127cd565b6114c0565b60405161056e91906127ab565b60405180910390f35b610591600480360381019061058c91906127cd565b611580565b60405161059e9190612672565b60405180910390f35b6105c160048036038101906105bc9190612ce8565b6115f3565b005b6105dd60048036038101906105d89190612d35565b611685565b6040516105ea9190612672565b60405180910390f35b61060d60048036038101906106089190612a46565b611719565b005b600a6020528160005260406000206020528060005260406000206000915091509054906101000a900460ff1681565b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806106b157506106b082611811565b5b9050919050565b6060600080546106c790612da4565b80601f01602080910402602001604051908101604052809291908181526020018280546106f390612da4565b80156107405780601f1061071557610100808354040283529160200191610740565b820191906000526020600020905b81548152906001019060200180831161072357829003601f168201915b5050505050905090565b6000610755826118f3565b610794576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161078b90612e48565b60405180910390fd5b6003600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006107da82610fc0565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561084b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161084290612eda565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1661086a61197b565b73ffffffffffffffffffffffffffffffffffffffff16148061089957506108988161089361197b565b611685565b5b6108d8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108cf90612f6c565b60405180910390fd5b6108e28383611983565b505050565b60086020528060005260406000206000915054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60076020528060005260406000206000915090505481565b6000600280549050905090565b61094761197b565b73ffffffffffffffffffffffffffffffffffffffff16610965611221565b73ffffffffffffffffffffffffffffffffffffffff16146109bb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109b290612fd8565b60405180910390fd5b8060096000848152602001908152602001600020819055505050565b6000600a600084815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b610a50610a4a61197b565b82611a3c565b610a8f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a869061306a565b60405180910390fd5b610a9a838383611b1a565b505050565b6000610aaa8361107d565b8210610aeb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ae2906130fc565b60405180910390fd5b6000805b600280549050811015610ba25760028181548110610b1057610b0f61311c565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415610b8f5783821415610b80578092505050610bde565b8180610b8b9061317a565b9250505b8080610b9a9061317a565b915050610aef565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bd5906130fc565b60405180910390fd5b92915050565b60068054610bf190612da4565b80601f0160208091040260200160405190810160405280929190818152602001828054610c1d90612da4565b8015610c6a5780601f10610c3f57610100808354040283529160200191610c6a565b820191906000526020600020905b815481529060010190602001808311610c4d57829003601f168201915b505050505081565b610c8d8383836040518060200160405280600081525061145e565b505050565b6000610c9c610932565b9050600033604051602001610cb1919061320b565b6040516020818303038152906040528051906020012090503373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614610d37576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d2e90613272565b60405180910390fd5b600a600084815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615610dd5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dcc906132de565b60405180910390fd5b610e34858580806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050600960008681526020019081526020016000205483611cd3565b610e73576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e6a9061334a565b60405180910390fd5b610e7d3383611cea565b826007600084815260200190815260200160002081905550336008600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506001600a600085815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050505050565b60096020528060005260406000206000915090505481565b60006002805490508210610fb8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610faf906133dc565b60405180910390fd5b819050919050565b60008060028381548110610fd757610fd661311c565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611074576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161106b9061346e565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156110ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110e590613500565b60405180910390fd5b6000805b60028054905081101561118f57600281815481106111135761111261311c565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16141561117e578161117b9061317a565b91505b806111889061317a565b90506110f2565b5080915050919050565b6111a161197b565b73ffffffffffffffffffffffffffffffffffffffff166111bf611221565b73ffffffffffffffffffffffffffffffffffffffff1614611215576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161120c90612fd8565b60405180910390fd5b61121f6000611d08565b565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606001805461125a90612da4565b80601f016020809104026020016040519081016040528092919081815260200182805461128690612da4565b80156112d35780601f106112a8576101008083540402835291602001916112d3565b820191906000526020600020905b8154815290600101906020018083116112b657829003601f168201915b5050505050905090565b6112e561197b565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611353576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161134a9061356c565b60405180910390fd5b806004600061136061197b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661140d61197b565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516114529190612672565b60405180910390a35050565b61146f61146961197b565b83611a3c565b6114ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114a59061306a565b60405180910390fd5b6114ba84848484611dce565b50505050565b60606114cb826118f3565b61150a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611501906135fe565b60405180910390fd5b6000611514611e2a565b9050600060076000858152602001908152602001600020549050600082511161154c5760405180602001604052806000815250611577565b8161155682611ebc565b60405160200161156792919061365a565b6040516020818303038152906040525b92505050919050565b60006008600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166115d583610fc0565b73ffffffffffffffffffffffffffffffffffffffff16149050919050565b6115fb61197b565b73ffffffffffffffffffffffffffffffffffffffff16611619611221565b73ffffffffffffffffffffffffffffffffffffffff161461166f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161166690612fd8565b60405180910390fd5b8181600691906116809291906124cc565b505050565b6000600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61172161197b565b73ffffffffffffffffffffffffffffffffffffffff1661173f611221565b73ffffffffffffffffffffffffffffffffffffffff1614611795576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161178c90612fd8565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611805576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117fc906136f0565b60405180910390fd5b61180e81611d08565b50565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806118dc57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806118ec57506118eb8261201d565b5b9050919050565b6000600280549050821080156119745750600073ffffffffffffffffffffffffffffffffffffffff16600283815481106119305761192f61311c565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614155b9050919050565b600033905090565b816003600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166119f683610fc0565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611a47826118f3565b611a86576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a7d90613782565b60405180910390fd5b6000611a9183610fc0565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611b0057508373ffffffffffffffffffffffffffffffffffffffff16611ae88461074a565b73ffffffffffffffffffffffffffffffffffffffff16145b80611b115750611b108185611685565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611b3a82610fc0565b73ffffffffffffffffffffffffffffffffffffffff1614611b90576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b8790613814565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611c00576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bf7906138a6565b60405180910390fd5b611c0b838383612087565b611c16600082611983565b8160028281548110611c2b57611c2a61311c565b5b9060005260206000200160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b600082611ce0858461208c565b1490509392505050565b611d0482826040518060200160405280600081525061213f565b5050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611dd9848484611b1a565b611de58484848461219a565b611e24576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e1b90613938565b60405180910390fd5b50505050565b606060068054611e3990612da4565b80601f0160208091040260200160405190810160405280929190818152602001828054611e6590612da4565b8015611eb25780601f10611e8757610100808354040283529160200191611eb2565b820191906000526020600020905b815481529060010190602001808311611e9557829003601f168201915b5050505050905090565b60606000821415611f04576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612018565b600082905060005b60008214611f36578080611f1f9061317a565b915050600a82611f2f9190613987565b9150611f0c565b60008167ffffffffffffffff811115611f5257611f51612ae4565b5b6040519080825280601f01601f191660200182016040528015611f845781602001600182028036833780820191505090505b5090505b6000851461201157600182611f9d91906139b8565b9150600a85611fac91906139ec565b6030611fb89190613a1d565b60f81b818381518110611fce57611fcd61311c565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561200a9190613987565b9450611f88565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b505050565b60008082905060005b84518110156121345760008582815181106120b3576120b261311c565b5b602002602001015190508083116120f45782816040516020016120d7929190613a94565b604051602081830303815290604052805190602001209250612120565b8083604051602001612107929190613a94565b6040516020818303038152906040528051906020012092505b50808061212c9061317a565b915050612095565b508091505092915050565b6121498383612331565b612156600084848461219a565b612195576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161218c90613938565b60405180910390fd5b505050565b60006121bb8473ffffffffffffffffffffffffffffffffffffffff166124b9565b15612324578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026121e461197b565b8786866040518563ffffffff1660e01b81526004016122069493929190613b15565b602060405180830381600087803b15801561222057600080fd5b505af192505050801561225157506040513d601f19601f8201168201806040525081019061224e9190613b76565b60015b6122d4573d8060008114612281576040519150601f19603f3d011682016040523d82523d6000602084013e612286565b606091505b506000815114156122cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122c390613938565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612329565b600190505b949350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156123a1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161239890613bef565b60405180910390fd5b6123aa816118f3565b156123ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123e190613c5b565b60405180910390fd5b6123f660008383612087565b6002829080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b8280546124d890612da4565b90600052602060002090601f0160209004810192826124fa5760008555612541565b82601f1061251357803560ff1916838001178555612541565b82800160010185558215612541579182015b82811115612540578235825591602001919060010190612525565b5b50905061254e9190612552565b5090565b5b8082111561256b576000816000905550600101612553565b5090565b6000604051905090565b600080fd5b600080fd5b6000819050919050565b61259681612583565b81146125a157600080fd5b50565b6000813590506125b38161258d565b92915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006125e4826125b9565b9050919050565b6125f4816125d9565b81146125ff57600080fd5b50565b600081359050612611816125eb565b92915050565b6000806040838503121561262e5761262d612579565b5b600061263c858286016125a4565b925050602061264d85828601612602565b9150509250929050565b60008115159050919050565b61266c81612657565b82525050565b60006020820190506126876000830184612663565b92915050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6126c28161268d565b81146126cd57600080fd5b50565b6000813590506126df816126b9565b92915050565b6000602082840312156126fb576126fa612579565b5b6000612709848285016126d0565b91505092915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561274c578082015181840152602081019050612731565b8381111561275b576000848401525b50505050565b6000601f19601f8301169050919050565b600061277d82612712565b612787818561271d565b935061279781856020860161272e565b6127a081612761565b840191505092915050565b600060208201905081810360008301526127c58184612772565b905092915050565b6000602082840312156127e3576127e2612579565b5b60006127f1848285016125a4565b91505092915050565b612803816125d9565b82525050565b600060208201905061281e60008301846127fa565b92915050565b6000806040838503121561283b5761283a612579565b5b600061284985828601612602565b925050602061285a858286016125a4565b9150509250929050565b61286d81612583565b82525050565b60006020820190506128886000830184612864565b92915050565b6000819050919050565b6128a18161288e565b81146128ac57600080fd5b50565b6000813590506128be81612898565b92915050565b600080604083850312156128db576128da612579565b5b60006128e9858286016125a4565b92505060206128fa858286016128af565b9150509250929050565b60008060006060848603121561291d5761291c612579565b5b600061292b86828701612602565b935050602061293c86828701612602565b925050604061294d868287016125a4565b9150509250925092565b600080fd5b600080fd5b600080fd5b60008083601f84011261297c5761297b612957565b5b8235905067ffffffffffffffff8111156129995761299861295c565b5b6020830191508360208202830111156129b5576129b4612961565b5b9250929050565b6000806000604084860312156129d5576129d4612579565b5b600084013567ffffffffffffffff8111156129f3576129f261257e565b5b6129ff86828701612966565b93509350506020612a12868287016125a4565b9150509250925092565b612a258161288e565b82525050565b6000602082019050612a406000830184612a1c565b92915050565b600060208284031215612a5c57612a5b612579565b5b6000612a6a84828501612602565b91505092915050565b612a7c81612657565b8114612a8757600080fd5b50565b600081359050612a9981612a73565b92915050565b60008060408385031215612ab657612ab5612579565b5b6000612ac485828601612602565b9250506020612ad585828601612a8a565b9150509250929050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612b1c82612761565b810181811067ffffffffffffffff82111715612b3b57612b3a612ae4565b5b80604052505050565b6000612b4e61256f565b9050612b5a8282612b13565b919050565b600067ffffffffffffffff821115612b7a57612b79612ae4565b5b612b8382612761565b9050602081019050919050565b82818337600083830152505050565b6000612bb2612bad84612b5f565b612b44565b905082815260208101848484011115612bce57612bcd612adf565b5b612bd9848285612b90565b509392505050565b600082601f830112612bf657612bf5612957565b5b8135612c06848260208601612b9f565b91505092915050565b60008060008060808587031215612c2957612c28612579565b5b6000612c3787828801612602565b9450506020612c4887828801612602565b9350506040612c59878288016125a4565b925050606085013567ffffffffffffffff811115612c7a57612c7961257e565b5b612c8687828801612be1565b91505092959194509250565b60008083601f840112612ca857612ca7612957565b5b8235905067ffffffffffffffff811115612cc557612cc461295c565b5b602083019150836001820283011115612ce157612ce0612961565b5b9250929050565b60008060208385031215612cff57612cfe612579565b5b600083013567ffffffffffffffff811115612d1d57612d1c61257e565b5b612d2985828601612c92565b92509250509250929050565b60008060408385031215612d4c57612d4b612579565b5b6000612d5a85828601612602565b9250506020612d6b85828601612602565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612dbc57607f821691505b60208210811415612dd057612dcf612d75565b5b50919050565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b6000612e32602c8361271d565b9150612e3d82612dd6565b604082019050919050565b60006020820190508181036000830152612e6181612e25565b9050919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b6000612ec460218361271d565b9150612ecf82612e68565b604082019050919050565b60006020820190508181036000830152612ef381612eb7565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b6000612f5660388361271d565b9150612f6182612efa565b604082019050919050565b60006020820190508181036000830152612f8581612f49565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000612fc260208361271d565b9150612fcd82612f8c565b602082019050919050565b60006020820190508181036000830152612ff181612fb5565b9050919050565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b600061305460318361271d565b915061305f82612ff8565b604082019050919050565b6000602082019050818103600083015261308381613047565b9050919050565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b60006130e6602b8361271d565b91506130f18261308a565b604082019050919050565b60006020820190508181036000830152613115816130d9565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061318582612583565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156131b8576131b761314b565b5b600182019050919050565b60008160601b9050919050565b60006131db826131c3565b9050919050565b60006131ed826131d0565b9050919050565b613205613200826125d9565b6131e2565b82525050565b600061321782846131f4565b60148201915081905092915050565b7f436f6e7472616374732044656e6965642e000000000000000000000000000000600082015250565b600061325c60118361271d565b915061326782613226565b602082019050919050565b6000602082019050818103600083015261328b8161324f565b9050919050565b7f546f6b656e20436c61696d65642e000000000000000000000000000000000000600082015250565b60006132c8600e8361271d565b91506132d382613292565b602082019050919050565b600060208201905081810360008301526132f7816132bb565b9050919050565b7f50726f6f6620496e76616c69642e000000000000000000000000000000000000600082015250565b6000613334600e8361271d565b915061333f826132fe565b602082019050919050565b6000602082019050818103600083015261336381613327565b9050919050565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b60006133c6602c8361271d565b91506133d18261336a565b604082019050919050565b600060208201905081810360008301526133f5816133b9565b9050919050565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b600061345860298361271d565b9150613463826133fc565b604082019050919050565b600060208201905081810360008301526134878161344b565b9050919050565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b60006134ea602a8361271d565b91506134f58261348e565b604082019050919050565b60006020820190508181036000830152613519816134dd565b9050919050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b600061355660198361271d565b915061356182613520565b602082019050919050565b6000602082019050818103600083015261358581613549565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b60006135e8602f8361271d565b91506135f38261358c565b604082019050919050565b60006020820190508181036000830152613617816135db565b9050919050565b600081905092915050565b600061363482612712565b61363e818561361e565b935061364e81856020860161272e565b80840191505092915050565b60006136668285613629565b91506136728284613629565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006136da60268361271d565b91506136e58261367e565b604082019050919050565b60006020820190508181036000830152613709816136cd565b9050919050565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b600061376c602c8361271d565b915061377782613710565b604082019050919050565b6000602082019050818103600083015261379b8161375f565b9050919050565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b60006137fe60298361271d565b9150613809826137a2565b604082019050919050565b6000602082019050818103600083015261382d816137f1565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b600061389060248361271d565b915061389b82613834565b604082019050919050565b600060208201905081810360008301526138bf81613883565b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b600061392260328361271d565b915061392d826138c6565b604082019050919050565b6000602082019050818103600083015261395181613915565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061399282612583565b915061399d83612583565b9250826139ad576139ac613958565b5b828204905092915050565b60006139c382612583565b91506139ce83612583565b9250828210156139e1576139e061314b565b5b828203905092915050565b60006139f782612583565b9150613a0283612583565b925082613a1257613a11613958565b5b828206905092915050565b6000613a2882612583565b9150613a3383612583565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613a6857613a6761314b565b5b828201905092915050565b6000819050919050565b613a8e613a898261288e565b613a73565b82525050565b6000613aa08285613a7d565b602082019150613ab08284613a7d565b6020820191508190509392505050565b600081519050919050565b600082825260208201905092915050565b6000613ae782613ac0565b613af18185613acb565b9350613b0181856020860161272e565b613b0a81612761565b840191505092915050565b6000608082019050613b2a60008301876127fa565b613b3760208301866127fa565b613b446040830185612864565b8181036060830152613b568184613adc565b905095945050505050565b600081519050613b70816126b9565b92915050565b600060208284031215613b8c57613b8b612579565b5b6000613b9a84828501613b61565b91505092915050565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b6000613bd960208361271d565b9150613be482613ba3565b602082019050919050565b60006020820190508181036000830152613c0881613bcc565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b6000613c45601c8361271d565b9150613c5082613c0f565b602082019050919050565b60006020820190508181036000830152613c7481613c38565b905091905056fea26469706673582212208188d3087ac7a353e40d2fdcd9c31deecc8ecd85b2cf43f903aba97c39a5bc5464736f6c63430008080033
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101ce5760003560e01c806345de0d9b1161010457806395d89b41116100a2578063ce4d01a311610071578063ce4d01a314610577578063d5015878146105a7578063e985e9c5146105c3578063f2fde38b146105f3576101ce565b806395d89b41146104f1578063a22cb4651461050f578063b88d4fde1461052b578063c87b56dd14610547576101ce565b80636352211e116100de5780636352211e1461046957806370a0823114610499578063715018a6146104c95780638da5cb5b146104d3576101ce565b806345de0d9b146103ed57806348ba9be8146104095780634f6ccce714610439576101ce565b806318160ddd1161017157806323b872dd1161014b57806323b872dd146103675780632f745c591461038357806333cd6f5d146103b357806342842e0e146103d1576101ce565b806318160ddd146102fd57806318712c211461031b5780631bf23cde14610337576101ce565b8063081812fc116101ad578063081812fc14610251578063095ea7b3146102815780630e0c353d1461029d578063127a5298146102cd576101ce565b8062592289146101d357806301ffc9a71461020357806306fdde0314610233575b600080fd5b6101ed60048036038101906101e89190612617565b61060f565b6040516101fa9190612672565b60405180910390f35b61021d600480360381019061021891906126e5565b61063e565b60405161022a9190612672565b60405180910390f35b61023b6106b8565b60405161024891906127ab565b60405180910390f35b61026b600480360381019061026691906127cd565b61074a565b6040516102789190612809565b60405180910390f35b61029b60048036038101906102969190612824565b6107cf565b005b6102b760048036038101906102b291906127cd565b6108e7565b6040516102c49190612809565b60405180910390f35b6102e760048036038101906102e291906127cd565b61091a565b6040516102f49190612873565b60405180910390f35b610305610932565b6040516103129190612873565b60405180910390f35b610335600480360381019061033091906128c4565b61093f565b005b610351600480360381019061034c9190612617565b6109d7565b60405161035e9190612672565b60405180910390f35b610381600480360381019061037c9190612904565b610a3f565b005b61039d60048036038101906103989190612824565b610a9f565b6040516103aa9190612873565b60405180910390f35b6103bb610be4565b6040516103c891906127ab565b60405180910390f35b6103eb60048036038101906103e69190612904565b610c72565b005b610407600480360381019061040291906129bc565b610c92565b005b610423600480360381019061041e91906127cd565b610f57565b6040516104309190612a2b565b60405180910390f35b610453600480360381019061044e91906127cd565b610f6f565b6040516104609190612873565b60405180910390f35b610483600480360381019061047e91906127cd565b610fc0565b6040516104909190612809565b60405180910390f35b6104b360048036038101906104ae9190612a46565b61107d565b6040516104c09190612873565b60405180910390f35b6104d1611199565b005b6104db611221565b6040516104e89190612809565b60405180910390f35b6104f961124b565b60405161050691906127ab565b60405180910390f35b61052960048036038101906105249190612a9f565b6112dd565b005b61054560048036038101906105409190612c0f565b61145e565b005b610561600480360381019061055c91906127cd565b6114c0565b60405161056e91906127ab565b60405180910390f35b610591600480360381019061058c91906127cd565b611580565b60405161059e9190612672565b60405180910390f35b6105c160048036038101906105bc9190612ce8565b6115f3565b005b6105dd60048036038101906105d89190612d35565b611685565b6040516105ea9190612672565b60405180910390f35b61060d60048036038101906106089190612a46565b611719565b005b600a6020528160005260406000206020528060005260406000206000915091509054906101000a900460ff1681565b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806106b157506106b082611811565b5b9050919050565b6060600080546106c790612da4565b80601f01602080910402602001604051908101604052809291908181526020018280546106f390612da4565b80156107405780601f1061071557610100808354040283529160200191610740565b820191906000526020600020905b81548152906001019060200180831161072357829003601f168201915b5050505050905090565b6000610755826118f3565b610794576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161078b90612e48565b60405180910390fd5b6003600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006107da82610fc0565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561084b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161084290612eda565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1661086a61197b565b73ffffffffffffffffffffffffffffffffffffffff16148061089957506108988161089361197b565b611685565b5b6108d8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108cf90612f6c565b60405180910390fd5b6108e28383611983565b505050565b60086020528060005260406000206000915054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60076020528060005260406000206000915090505481565b6000600280549050905090565b61094761197b565b73ffffffffffffffffffffffffffffffffffffffff16610965611221565b73ffffffffffffffffffffffffffffffffffffffff16146109bb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109b290612fd8565b60405180910390fd5b8060096000848152602001908152602001600020819055505050565b6000600a600084815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b610a50610a4a61197b565b82611a3c565b610a8f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a869061306a565b60405180910390fd5b610a9a838383611b1a565b505050565b6000610aaa8361107d565b8210610aeb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ae2906130fc565b60405180910390fd5b6000805b600280549050811015610ba25760028181548110610b1057610b0f61311c565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415610b8f5783821415610b80578092505050610bde565b8180610b8b9061317a565b9250505b8080610b9a9061317a565b915050610aef565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bd5906130fc565b60405180910390fd5b92915050565b60068054610bf190612da4565b80601f0160208091040260200160405190810160405280929190818152602001828054610c1d90612da4565b8015610c6a5780601f10610c3f57610100808354040283529160200191610c6a565b820191906000526020600020905b815481529060010190602001808311610c4d57829003601f168201915b505050505081565b610c8d8383836040518060200160405280600081525061145e565b505050565b6000610c9c610932565b9050600033604051602001610cb1919061320b565b6040516020818303038152906040528051906020012090503373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614610d37576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d2e90613272565b60405180910390fd5b600a600084815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615610dd5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dcc906132de565b60405180910390fd5b610e34858580806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050600960008681526020019081526020016000205483611cd3565b610e73576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e6a9061334a565b60405180910390fd5b610e7d3383611cea565b826007600084815260200190815260200160002081905550336008600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506001600a600085815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050505050565b60096020528060005260406000206000915090505481565b60006002805490508210610fb8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610faf906133dc565b60405180910390fd5b819050919050565b60008060028381548110610fd757610fd661311c565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611074576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161106b9061346e565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156110ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110e590613500565b60405180910390fd5b6000805b60028054905081101561118f57600281815481106111135761111261311c565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16141561117e578161117b9061317a565b91505b806111889061317a565b90506110f2565b5080915050919050565b6111a161197b565b73ffffffffffffffffffffffffffffffffffffffff166111bf611221565b73ffffffffffffffffffffffffffffffffffffffff1614611215576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161120c90612fd8565b60405180910390fd5b61121f6000611d08565b565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606001805461125a90612da4565b80601f016020809104026020016040519081016040528092919081815260200182805461128690612da4565b80156112d35780601f106112a8576101008083540402835291602001916112d3565b820191906000526020600020905b8154815290600101906020018083116112b657829003601f168201915b5050505050905090565b6112e561197b565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611353576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161134a9061356c565b60405180910390fd5b806004600061136061197b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661140d61197b565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516114529190612672565b60405180910390a35050565b61146f61146961197b565b83611a3c565b6114ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114a59061306a565b60405180910390fd5b6114ba84848484611dce565b50505050565b60606114cb826118f3565b61150a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611501906135fe565b60405180910390fd5b6000611514611e2a565b9050600060076000858152602001908152602001600020549050600082511161154c5760405180602001604052806000815250611577565b8161155682611ebc565b60405160200161156792919061365a565b6040516020818303038152906040525b92505050919050565b60006008600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166115d583610fc0565b73ffffffffffffffffffffffffffffffffffffffff16149050919050565b6115fb61197b565b73ffffffffffffffffffffffffffffffffffffffff16611619611221565b73ffffffffffffffffffffffffffffffffffffffff161461166f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161166690612fd8565b60405180910390fd5b8181600691906116809291906124cc565b505050565b6000600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61172161197b565b73ffffffffffffffffffffffffffffffffffffffff1661173f611221565b73ffffffffffffffffffffffffffffffffffffffff1614611795576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161178c90612fd8565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611805576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117fc906136f0565b60405180910390fd5b61180e81611d08565b50565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806118dc57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806118ec57506118eb8261201d565b5b9050919050565b6000600280549050821080156119745750600073ffffffffffffffffffffffffffffffffffffffff16600283815481106119305761192f61311c565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614155b9050919050565b600033905090565b816003600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166119f683610fc0565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611a47826118f3565b611a86576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a7d90613782565b60405180910390fd5b6000611a9183610fc0565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611b0057508373ffffffffffffffffffffffffffffffffffffffff16611ae88461074a565b73ffffffffffffffffffffffffffffffffffffffff16145b80611b115750611b108185611685565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611b3a82610fc0565b73ffffffffffffffffffffffffffffffffffffffff1614611b90576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b8790613814565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611c00576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bf7906138a6565b60405180910390fd5b611c0b838383612087565b611c16600082611983565b8160028281548110611c2b57611c2a61311c565b5b9060005260206000200160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b600082611ce0858461208c565b1490509392505050565b611d0482826040518060200160405280600081525061213f565b5050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611dd9848484611b1a565b611de58484848461219a565b611e24576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e1b90613938565b60405180910390fd5b50505050565b606060068054611e3990612da4565b80601f0160208091040260200160405190810160405280929190818152602001828054611e6590612da4565b8015611eb25780601f10611e8757610100808354040283529160200191611eb2565b820191906000526020600020905b815481529060010190602001808311611e9557829003601f168201915b5050505050905090565b60606000821415611f04576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612018565b600082905060005b60008214611f36578080611f1f9061317a565b915050600a82611f2f9190613987565b9150611f0c565b60008167ffffffffffffffff811115611f5257611f51612ae4565b5b6040519080825280601f01601f191660200182016040528015611f845781602001600182028036833780820191505090505b5090505b6000851461201157600182611f9d91906139b8565b9150600a85611fac91906139ec565b6030611fb89190613a1d565b60f81b818381518110611fce57611fcd61311c565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561200a9190613987565b9450611f88565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b505050565b60008082905060005b84518110156121345760008582815181106120b3576120b261311c565b5b602002602001015190508083116120f45782816040516020016120d7929190613a94565b604051602081830303815290604052805190602001209250612120565b8083604051602001612107929190613a94565b6040516020818303038152906040528051906020012092505b50808061212c9061317a565b915050612095565b508091505092915050565b6121498383612331565b612156600084848461219a565b612195576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161218c90613938565b60405180910390fd5b505050565b60006121bb8473ffffffffffffffffffffffffffffffffffffffff166124b9565b15612324578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026121e461197b565b8786866040518563ffffffff1660e01b81526004016122069493929190613b15565b602060405180830381600087803b15801561222057600080fd5b505af192505050801561225157506040513d601f19601f8201168201806040525081019061224e9190613b76565b60015b6122d4573d8060008114612281576040519150601f19603f3d011682016040523d82523d6000602084013e612286565b606091505b506000815114156122cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122c390613938565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612329565b600190505b949350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156123a1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161239890613bef565b60405180910390fd5b6123aa816118f3565b156123ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123e190613c5b565b60405180910390fd5b6123f660008383612087565b6002829080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b8280546124d890612da4565b90600052602060002090601f0160209004810192826124fa5760008555612541565b82601f1061251357803560ff1916838001178555612541565b82800160010185558215612541579182015b82811115612540578235825591602001919060010190612525565b5b50905061254e9190612552565b5090565b5b8082111561256b576000816000905550600101612553565b5090565b6000604051905090565b600080fd5b600080fd5b6000819050919050565b61259681612583565b81146125a157600080fd5b50565b6000813590506125b38161258d565b92915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006125e4826125b9565b9050919050565b6125f4816125d9565b81146125ff57600080fd5b50565b600081359050612611816125eb565b92915050565b6000806040838503121561262e5761262d612579565b5b600061263c858286016125a4565b925050602061264d85828601612602565b9150509250929050565b60008115159050919050565b61266c81612657565b82525050565b60006020820190506126876000830184612663565b92915050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6126c28161268d565b81146126cd57600080fd5b50565b6000813590506126df816126b9565b92915050565b6000602082840312156126fb576126fa612579565b5b6000612709848285016126d0565b91505092915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561274c578082015181840152602081019050612731565b8381111561275b576000848401525b50505050565b6000601f19601f8301169050919050565b600061277d82612712565b612787818561271d565b935061279781856020860161272e565b6127a081612761565b840191505092915050565b600060208201905081810360008301526127c58184612772565b905092915050565b6000602082840312156127e3576127e2612579565b5b60006127f1848285016125a4565b91505092915050565b612803816125d9565b82525050565b600060208201905061281e60008301846127fa565b92915050565b6000806040838503121561283b5761283a612579565b5b600061284985828601612602565b925050602061285a858286016125a4565b9150509250929050565b61286d81612583565b82525050565b60006020820190506128886000830184612864565b92915050565b6000819050919050565b6128a18161288e565b81146128ac57600080fd5b50565b6000813590506128be81612898565b92915050565b600080604083850312156128db576128da612579565b5b60006128e9858286016125a4565b92505060206128fa858286016128af565b9150509250929050565b60008060006060848603121561291d5761291c612579565b5b600061292b86828701612602565b935050602061293c86828701612602565b925050604061294d868287016125a4565b9150509250925092565b600080fd5b600080fd5b600080fd5b60008083601f84011261297c5761297b612957565b5b8235905067ffffffffffffffff8111156129995761299861295c565b5b6020830191508360208202830111156129b5576129b4612961565b5b9250929050565b6000806000604084860312156129d5576129d4612579565b5b600084013567ffffffffffffffff8111156129f3576129f261257e565b5b6129ff86828701612966565b93509350506020612a12868287016125a4565b9150509250925092565b612a258161288e565b82525050565b6000602082019050612a406000830184612a1c565b92915050565b600060208284031215612a5c57612a5b612579565b5b6000612a6a84828501612602565b91505092915050565b612a7c81612657565b8114612a8757600080fd5b50565b600081359050612a9981612a73565b92915050565b60008060408385031215612ab657612ab5612579565b5b6000612ac485828601612602565b9250506020612ad585828601612a8a565b9150509250929050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612b1c82612761565b810181811067ffffffffffffffff82111715612b3b57612b3a612ae4565b5b80604052505050565b6000612b4e61256f565b9050612b5a8282612b13565b919050565b600067ffffffffffffffff821115612b7a57612b79612ae4565b5b612b8382612761565b9050602081019050919050565b82818337600083830152505050565b6000612bb2612bad84612b5f565b612b44565b905082815260208101848484011115612bce57612bcd612adf565b5b612bd9848285612b90565b509392505050565b600082601f830112612bf657612bf5612957565b5b8135612c06848260208601612b9f565b91505092915050565b60008060008060808587031215612c2957612c28612579565b5b6000612c3787828801612602565b9450506020612c4887828801612602565b9350506040612c59878288016125a4565b925050606085013567ffffffffffffffff811115612c7a57612c7961257e565b5b612c8687828801612be1565b91505092959194509250565b60008083601f840112612ca857612ca7612957565b5b8235905067ffffffffffffffff811115612cc557612cc461295c565b5b602083019150836001820283011115612ce157612ce0612961565b5b9250929050565b60008060208385031215612cff57612cfe612579565b5b600083013567ffffffffffffffff811115612d1d57612d1c61257e565b5b612d2985828601612c92565b92509250509250929050565b60008060408385031215612d4c57612d4b612579565b5b6000612d5a85828601612602565b9250506020612d6b85828601612602565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612dbc57607f821691505b60208210811415612dd057612dcf612d75565b5b50919050565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b6000612e32602c8361271d565b9150612e3d82612dd6565b604082019050919050565b60006020820190508181036000830152612e6181612e25565b9050919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b6000612ec460218361271d565b9150612ecf82612e68565b604082019050919050565b60006020820190508181036000830152612ef381612eb7565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b6000612f5660388361271d565b9150612f6182612efa565b604082019050919050565b60006020820190508181036000830152612f8581612f49565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000612fc260208361271d565b9150612fcd82612f8c565b602082019050919050565b60006020820190508181036000830152612ff181612fb5565b9050919050565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b600061305460318361271d565b915061305f82612ff8565b604082019050919050565b6000602082019050818103600083015261308381613047565b9050919050565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b60006130e6602b8361271d565b91506130f18261308a565b604082019050919050565b60006020820190508181036000830152613115816130d9565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061318582612583565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156131b8576131b761314b565b5b600182019050919050565b60008160601b9050919050565b60006131db826131c3565b9050919050565b60006131ed826131d0565b9050919050565b613205613200826125d9565b6131e2565b82525050565b600061321782846131f4565b60148201915081905092915050565b7f436f6e7472616374732044656e6965642e000000000000000000000000000000600082015250565b600061325c60118361271d565b915061326782613226565b602082019050919050565b6000602082019050818103600083015261328b8161324f565b9050919050565b7f546f6b656e20436c61696d65642e000000000000000000000000000000000000600082015250565b60006132c8600e8361271d565b91506132d382613292565b602082019050919050565b600060208201905081810360008301526132f7816132bb565b9050919050565b7f50726f6f6620496e76616c69642e000000000000000000000000000000000000600082015250565b6000613334600e8361271d565b915061333f826132fe565b602082019050919050565b6000602082019050818103600083015261336381613327565b9050919050565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b60006133c6602c8361271d565b91506133d18261336a565b604082019050919050565b600060208201905081810360008301526133f5816133b9565b9050919050565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b600061345860298361271d565b9150613463826133fc565b604082019050919050565b600060208201905081810360008301526134878161344b565b9050919050565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b60006134ea602a8361271d565b91506134f58261348e565b604082019050919050565b60006020820190508181036000830152613519816134dd565b9050919050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b600061355660198361271d565b915061356182613520565b602082019050919050565b6000602082019050818103600083015261358581613549565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b60006135e8602f8361271d565b91506135f38261358c565b604082019050919050565b60006020820190508181036000830152613617816135db565b9050919050565b600081905092915050565b600061363482612712565b61363e818561361e565b935061364e81856020860161272e565b80840191505092915050565b60006136668285613629565b91506136728284613629565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006136da60268361271d565b91506136e58261367e565b604082019050919050565b60006020820190508181036000830152613709816136cd565b9050919050565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b600061376c602c8361271d565b915061377782613710565b604082019050919050565b6000602082019050818103600083015261379b8161375f565b9050919050565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b60006137fe60298361271d565b9150613809826137a2565b604082019050919050565b6000602082019050818103600083015261382d816137f1565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b600061389060248361271d565b915061389b82613834565b604082019050919050565b600060208201905081810360008301526138bf81613883565b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b600061392260328361271d565b915061392d826138c6565b604082019050919050565b6000602082019050818103600083015261395181613915565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061399282612583565b915061399d83612583565b9250826139ad576139ac613958565b5b828204905092915050565b60006139c382612583565b91506139ce83612583565b9250828210156139e1576139e061314b565b5b828203905092915050565b60006139f782612583565b9150613a0283612583565b925082613a1257613a11613958565b5b828206905092915050565b6000613a2882612583565b9150613a3383612583565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613a6857613a6761314b565b5b828201905092915050565b6000819050919050565b613a8e613a898261288e565b613a73565b82525050565b6000613aa08285613a7d565b602082019150613ab08284613a7d565b6020820191508190509392505050565b600081519050919050565b600082825260208201905092915050565b6000613ae782613ac0565b613af18185613acb565b9350613b0181856020860161272e565b613b0a81612761565b840191505092915050565b6000608082019050613b2a60008301876127fa565b613b3760208301866127fa565b613b446040830185612864565b8181036060830152613b568184613adc565b905095945050505050565b600081519050613b70816126b9565b92915050565b600060208284031215613b8c57613b8b612579565b5b6000613b9a84828501613b61565b91505092915050565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b6000613bd960208361271d565b9150613be482613ba3565b602082019050919050565b60006020820190508181036000830152613c0881613bcc565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b6000613c45601c8361271d565b9150613c5082613c0f565b602082019050919050565b60006020820190508181036000830152613c7481613c38565b905091905056fea26469706673582212208188d3087ac7a353e40d2fdcd9c31deecc8ecd85b2cf43f903aba97c39a5bc5464736f6c63430008080033
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.