ERC-721
Overview
Max Total Supply
420 LAMBO
Holders
273
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
3 LAMBOLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
MetaLamboz
Compiler Version
v0.8.7+commit.e28d00a7
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-08-24 */ /////////////////////////////////////////////////////////////////// // // // MetaLamboz NFT // // Contract Development by https://twitter.com/ViperwareLabs // // // /////////////////////////////////////////////////////////////////// // OpenZeppelin Contracts (last updated v4.5.0) (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 = _efficientHash(computedHash, proofElement); } else { // Hash(current element of the proof + current computed hash) computedHash = _efficientHash(proofElement, computedHash); } } return computedHash; } function _efficientHash(bytes32 a, bytes32 b) private pure returns (bytes32 value) { assembly { mstore(0x00, a) mstore(0x20, b) value := keccak256(0x00, 0x40) } } } // File: @openzeppelin/contracts/utils/Strings.sol // OpenZeppelin Contracts v4.4.1 (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } } // File: @openzeppelin/contracts/utils/Address.sol // OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol) pragma solidity ^0.8.1; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== * * [IMPORTANT] * ==== * You shouldn't rely on `isContract` to protect against flash loan attacks! * * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract * constructor. * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize/address.code.length, which returns 0 // for contracts in construction, since the code is only stored at the end // of the constructor execution. return account.code.length > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } // File: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol // OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721Receiver.sol) pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721Receiver.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } // File: @openzeppelin/contracts/utils/introspection/IERC165.sol // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); } // File: @openzeppelin/contracts/utils/introspection/ERC165.sol // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) pragma solidity ^0.8.0; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } } // File: @openzeppelin/contracts/token/ERC721/IERC721.sol // OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721.sol) pragma solidity ^0.8.0; /** * @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`. * * 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; /** * @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 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 the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @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); } // File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol) pragma solidity ^0.8.0; /** * @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); } // File: erc721a/contracts/IERC721A.sol // ERC721A Contracts v3.3.0 // Creator: Chiru Labs pragma solidity ^0.8.4; /** * @dev Interface of an ERC721A compliant contract. */ interface IERC721A is IERC721, IERC721Metadata { /** * The caller must own the token or be an approved operator. */ error ApprovalCallerNotOwnerNorApproved(); /** * The token does not exist. */ error ApprovalQueryForNonexistentToken(); /** * The caller cannot approve to their own address. */ error ApproveToCaller(); /** * The caller cannot approve to the current owner. */ error ApprovalToCurrentOwner(); /** * Cannot query the balance for the zero address. */ error BalanceQueryForZeroAddress(); /** * Cannot mint to the zero address. */ error MintToZeroAddress(); /** * The quantity of tokens minted must be more than zero. */ error MintZeroQuantity(); /** * The token does not exist. */ error OwnerQueryForNonexistentToken(); /** * The caller must own the token or be an approved operator. */ error TransferCallerNotOwnerNorApproved(); /** * The token must be owned by `from`. */ error TransferFromIncorrectOwner(); /** * Cannot safely transfer to a contract that does not implement the ERC721Receiver interface. */ error TransferToNonERC721ReceiverImplementer(); /** * Cannot transfer to the zero address. */ error TransferToZeroAddress(); /** * The token does not exist. */ error URIQueryForNonexistentToken(); // Compiler will pack this into a single 256bit word. struct TokenOwnership { // The address of the owner. address addr; // Keeps track of the start time of ownership with minimal overhead for tokenomics. uint64 startTimestamp; // Whether the token has been burned. bool burned; } // Compiler will pack this into a single 256bit word. struct AddressData { // Realistically, 2**64-1 is more than enough. uint64 balance; // Keeps track of mint count with minimal overhead for tokenomics. uint64 numberMinted; // Keeps track of burn count with minimal overhead for tokenomics. uint64 numberBurned; // For miscellaneous variable(s) pertaining to the address // (e.g. number of whitelist mint slots used). // If there are multiple variables, please pack them into a uint64. uint64 aux; } /** * @dev Returns the total amount of tokens stored by the contract. * * Burned tokens are calculated here, use `_totalMinted()` if you want to count just minted tokens. */ function totalSupply() external view returns (uint256); } // File: @openzeppelin/contracts/utils/Context.sol // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File: erc721a/contracts/ERC721A.sol // ERC721A Contracts v3.3.0 // Creator: Chiru Labs pragma solidity ^0.8.4; /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension. Built to optimize for lower gas during batch mints. * * Assumes serials are sequentially minted starting at _startTokenId() (defaults to 0, e.g. 0, 1, 2, 3..). * * Assumes that an owner cannot have more than 2**64 - 1 (max value of uint64) of supply. * * Assumes that the maximum token id cannot exceed 2**256 - 1 (max value of uint256). */ contract ERC721A is Context, ERC165, IERC721A { using Address for address; using Strings for uint256; // The tokenId of the next token to be minted. uint256 internal _currentIndex; // The number of tokens burned. uint256 internal _burnCounter; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to ownership details // An empty struct value does not necessarily mean the token is unowned. See _ownershipOf implementation for details. mapping(uint256 => TokenOwnership) internal _ownerships; // Mapping owner address to address data mapping(address => AddressData) private _addressData; // Mapping from token ID to approved address mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; _currentIndex = _startTokenId(); } /** * To change the starting tokenId, please override this function. */ function _startTokenId() internal view virtual returns (uint256) { return 0; } /** * @dev Burned tokens are calculated here, use _totalMinted() if you want to count just minted tokens. */ function totalSupply() public view override returns (uint256) { // Counter underflow is impossible as _burnCounter cannot be incremented // more than _currentIndex - _startTokenId() times unchecked { return _currentIndex - _burnCounter - _startTokenId(); } } /** * Returns the total amount of tokens minted in the contract. */ function _totalMinted() internal view returns (uint256) { // Counter underflow is impossible as _currentIndex does not decrement, // and it is initialized to _startTokenId() unchecked { return _currentIndex - _startTokenId(); } } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view override returns (uint256) { if (owner == address(0)) revert BalanceQueryForZeroAddress(); return uint256(_addressData[owner].balance); } /** * Returns the number of tokens minted by `owner`. */ function _numberMinted(address owner) internal view returns (uint256) { return uint256(_addressData[owner].numberMinted); } /** * Returns the number of tokens burned by or on behalf of `owner`. */ function _numberBurned(address owner) internal view returns (uint256) { return uint256(_addressData[owner].numberBurned); } /** * Returns the auxillary data for `owner`. (e.g. number of whitelist mint slots used). */ function _getAux(address owner) internal view returns (uint64) { return _addressData[owner].aux; } /** * Sets the auxillary data for `owner`. (e.g. number of whitelist mint slots used). * If there are multiple variables, please pack them into a uint64. */ function _setAux(address owner, uint64 aux) internal { _addressData[owner].aux = aux; } /** * Gas spent here starts off proportional to the maximum mint batch size. * It gradually moves to O(1) as tokens get transferred around in the collection over time. */ function _ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) { uint256 curr = tokenId; unchecked { if (_startTokenId() <= curr) if (curr < _currentIndex) { TokenOwnership memory ownership = _ownerships[curr]; if (!ownership.burned) { if (ownership.addr != address(0)) { return ownership; } // Invariant: // There will always be an ownership that has an address and is not burned // before an ownership that does not have an address and is not burned. // Hence, curr will not underflow. while (true) { curr--; ownership = _ownerships[curr]; if (ownership.addr != address(0)) { return ownership; } } } } } revert OwnerQueryForNonexistentToken(); } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view override returns (address) { return _ownershipOf(tokenId).addr; } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { if (!_exists(tokenId)) revert URIQueryForNonexistentToken(); string memory baseURI = _baseURI(); return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ''; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overriden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ''; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public override { address owner = ERC721A.ownerOf(tokenId); if (to == owner) revert ApprovalToCurrentOwner(); if (_msgSender() != owner) if(!isApprovedForAll(owner, _msgSender())) { revert ApprovalCallerNotOwnerNorApproved(); } _approve(to, tokenId, owner); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view override returns (address) { if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken(); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { if (operator == _msgSender()) revert ApproveToCaller(); _operatorApprovals[_msgSender()][operator] = approved; emit ApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ''); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public virtual override { _transfer(from, to, tokenId); if (to.isContract()) if(!_checkContractOnERC721Received(from, to, tokenId, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), */ function _exists(uint256 tokenId) internal view returns (bool) { return _startTokenId() <= tokenId && tokenId < _currentIndex && !_ownerships[tokenId].burned; } /** * @dev Equivalent to `_safeMint(to, quantity, '')`. */ function _safeMint(address to, uint256 quantity) internal { _safeMint(to, quantity, ''); } /** * @dev Safely mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - If `to` refers to a smart contract, it must implement * {IERC721Receiver-onERC721Received}, which is called for each safe transfer. * - `quantity` must be greater than 0. * * Emits a {Transfer} event. */ function _safeMint( address to, uint256 quantity, bytes memory _data ) internal { uint256 startTokenId = _currentIndex; if (to == address(0)) revert MintToZeroAddress(); if (quantity == 0) revert MintZeroQuantity(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are incredibly unrealistic. // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1 // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1 unchecked { _addressData[to].balance += uint64(quantity); _addressData[to].numberMinted += uint64(quantity); _ownerships[startTokenId].addr = to; _ownerships[startTokenId].startTimestamp = uint64(block.timestamp); uint256 updatedIndex = startTokenId; uint256 end = updatedIndex + quantity; if (to.isContract()) { do { emit Transfer(address(0), to, updatedIndex); if (!_checkContractOnERC721Received(address(0), to, updatedIndex++, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } while (updatedIndex < end); // Reentrancy protection if (_currentIndex != startTokenId) revert(); } else { do { emit Transfer(address(0), to, updatedIndex++); } while (updatedIndex < end); } _currentIndex = updatedIndex; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `quantity` must be greater than 0. * * Emits a {Transfer} event. */ function _mint(address to, uint256 quantity) internal { uint256 startTokenId = _currentIndex; if (to == address(0)) revert MintToZeroAddress(); if (quantity == 0) revert MintZeroQuantity(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are incredibly unrealistic. // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1 // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1 unchecked { _addressData[to].balance += uint64(quantity); _addressData[to].numberMinted += uint64(quantity); _ownerships[startTokenId].addr = to; _ownerships[startTokenId].startTimestamp = uint64(block.timestamp); uint256 updatedIndex = startTokenId; uint256 end = updatedIndex + quantity; do { emit Transfer(address(0), to, updatedIndex++); } while (updatedIndex < end); _currentIndex = updatedIndex; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Transfers `tokenId` from `from` to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) private { TokenOwnership memory prevOwnership = _ownershipOf(tokenId); if (prevOwnership.addr != from) revert TransferFromIncorrectOwner(); bool isApprovedOrOwner = (_msgSender() == from || isApprovedForAll(from, _msgSender()) || getApproved(tokenId) == _msgSender()); if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved(); if (to == address(0)) revert TransferToZeroAddress(); _beforeTokenTransfers(from, to, tokenId, 1); // Clear approvals from the previous owner _approve(address(0), tokenId, from); // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256. unchecked { _addressData[from].balance -= 1; _addressData[to].balance += 1; TokenOwnership storage currSlot = _ownerships[tokenId]; currSlot.addr = to; currSlot.startTimestamp = uint64(block.timestamp); // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it. // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls. uint256 nextTokenId = tokenId + 1; TokenOwnership storage nextSlot = _ownerships[nextTokenId]; if (nextSlot.addr == address(0)) { // This will suffice for checking _exists(nextTokenId), // as a burned slot cannot contain the zero address. if (nextTokenId != _currentIndex) { nextSlot.addr = from; nextSlot.startTimestamp = prevOwnership.startTimestamp; } } } emit Transfer(from, to, tokenId); _afterTokenTransfers(from, to, tokenId, 1); } /** * @dev Equivalent to `_burn(tokenId, false)`. */ function _burn(uint256 tokenId) internal virtual { _burn(tokenId, false); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId, bool approvalCheck) internal virtual { TokenOwnership memory prevOwnership = _ownershipOf(tokenId); address from = prevOwnership.addr; if (approvalCheck) { bool isApprovedOrOwner = (_msgSender() == from || isApprovedForAll(from, _msgSender()) || getApproved(tokenId) == _msgSender()); if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved(); } _beforeTokenTransfers(from, address(0), tokenId, 1); // Clear approvals from the previous owner _approve(address(0), tokenId, from); // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256. unchecked { AddressData storage addressData = _addressData[from]; addressData.balance -= 1; addressData.numberBurned += 1; // Keep track of who burned the token, and the timestamp of burning. TokenOwnership storage currSlot = _ownerships[tokenId]; currSlot.addr = from; currSlot.startTimestamp = uint64(block.timestamp); currSlot.burned = true; // If the ownership slot of tokenId+1 is not explicitly set, that means the burn initiator owns it. // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls. uint256 nextTokenId = tokenId + 1; TokenOwnership storage nextSlot = _ownerships[nextTokenId]; if (nextSlot.addr == address(0)) { // This will suffice for checking _exists(nextTokenId), // as a burned slot cannot contain the zero address. if (nextTokenId != _currentIndex) { nextSlot.addr = from; nextSlot.startTimestamp = prevOwnership.startTimestamp; } } } emit Transfer(from, address(0), tokenId); _afterTokenTransfers(from, address(0), tokenId, 1); // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times. unchecked { _burnCounter++; } } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve( address to, uint256 tokenId, address owner ) private { _tokenApprovals[tokenId] = to; emit Approval(owner, to, tokenId); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkContractOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) { return retval == IERC721Receiver(to).onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert TransferToNonERC721ReceiverImplementer(); } else { assembly { revert(add(32, reason), mload(reason)) } } } } /** * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting. * And also called before burning one token. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, `tokenId` will be burned by `from`. * - `from` and `to` are never both zero. */ function _beforeTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes * minting. * And also called after one token has been burned. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` has been * transferred to `to`. * - When `from` is zero, `tokenId` has been minted for `to`. * - When `to` is zero, `tokenId` has been burned by `from`. * - `from` and `to` are never both zero. */ function _afterTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} } // File: @openzeppelin/contracts/access/Ownable.sol // OpenZeppelin Contracts v4.4.1 (access/Ownable.sol) pragma solidity ^0.8.0; /** * @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); } } pragma solidity ^0.8.0; contract MetaLamboz is ERC721A, Ownable { bytes32 public root; using Strings for uint; uint public constant MINT_PRICE = 0 ether; uint public constant MAX_NFT_PER_TRAN = 1; uint public constant MAX_PER_WALLET = 1; uint public MAX_FREE_MINT = 1; uint public maxSupply = 420; bool public isWhitelistMint = false; bool public isPublicMint = false; bool public isMetadataFinal; string private _baseURL; string public prerevealURL = 'ipfs://bafybeifjjv6x5izvtq6jb65wwivz43lrw7vf7htescaalrlemd3j7tk7n4/prereveal.json'; mapping(address => uint) private _walletMintedCount; // Name constructor() ERC721A('MetaLamboz', 'LAMBO') { } function _baseURI() internal view override returns (string memory) { return _baseURL; } function _startTokenId() internal pure override returns (uint) { return 1; } function contractURI() public pure returns (string memory) { return ""; } function finalizeMetadata() external onlyOwner { isMetadataFinal = true; } function reveal(string memory url) external onlyOwner { require(!isMetadataFinal, "Metadata is finalized"); _baseURL = url; } function mintedCount(address owner) external view returns (uint) { return _walletMintedCount[owner]; } function setRoot(bytes32 _root) external onlyOwner { root = _root; } function setWhitelistState(bool value) external onlyOwner { isWhitelistMint = value; } function setPublicState(bool value) external onlyOwner { isPublicMint = value; } function withdraw() public onlyOwner { uint256 balance = address(this).balance; payable(msg.sender).transfer(balance); } function airdrop(address to, uint count) external onlyOwner { require( _totalMinted() + count <= maxSupply, 'Exceeds max supply' ); _safeMint(to, count); } function reduceSupply(uint newMaxSupply) external onlyOwner { maxSupply = newMaxSupply; } function setNumFreeMints(uint newFreeMints) external onlyOwner { MAX_FREE_MINT = newFreeMints; } function tokenURI(uint tokenId) public view override returns (string memory) { require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token"); return bytes(_baseURI()).length > 0 ? string(abi.encodePacked(_baseURI(), tokenId.toString(), ".json")) : prerevealURL; } function isValid(bytes32[] memory proof, bytes32 leaf) public view returns (bool) { return MerkleProof.verify(proof, root, leaf); } function WHITELIST_MINT(bytes32[] memory proof) public { uint count = 1; require(isWhitelistMint, "Whitelist mint has not started"); require(isValid(proof, keccak256(abi.encodePacked(msg.sender))), "Wallet not on the allowlist"); require(_totalMinted() + count <= maxSupply,'Exceeds max supply'); require(_walletMintedCount[msg.sender] == 0,'Exceeds max free mints'); _walletMintedCount[msg.sender] += count; _safeMint(msg.sender, count); } function PUBLIC_MINT(uint count) external payable { require(isPublicMint, "Public mint has not started"); require(count <= MAX_NFT_PER_TRAN,'Exceeds NFT per transaction limit'); require(_totalMinted() + count <= maxSupply,'Exceeds max supply'); require(_walletMintedCount[msg.sender] + count <= MAX_PER_WALLET,'Exceeds max per wallet'); uint payForCount = count; uint mintedSoFar = _walletMintedCount[msg.sender]; //1 Free Mints Default uint maxFree = MAX_FREE_MINT; if(mintedSoFar < maxFree) { uint remainingFreeMints = maxFree - mintedSoFar; if(count > remainingFreeMints) { payForCount = count - remainingFreeMints; } else { payForCount = 0; } } require( msg.value >= payForCount * MINT_PRICE, 'Ether value sent is not sufficient' ); _walletMintedCount[msg.sender] += count; _safeMint(msg.sender, count); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_FREE_MINT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_NFT_PER_TRAN","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_PER_WALLET","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MINT_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"count","type":"uint256"}],"name":"PUBLIC_MINT","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"}],"name":"WHITELIST_MINT","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"count","type":"uint256"}],"name":"airdrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"finalizeMetadata","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isMetadataFinal","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isPublicMint","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"},{"internalType":"bytes32","name":"leaf","type":"bytes32"}],"name":"isValid","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isWhitelistMint","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"mintedCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"prerevealURL","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"newMaxSupply","type":"uint256"}],"name":"reduceSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"url","type":"string"}],"name":"reveal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"root","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newFreeMints","type":"uint256"}],"name":"setNumFreeMints","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"value","type":"bool"}],"name":"setPublicState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_root","type":"bytes32"}],"name":"setRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"value","type":"bool"}],"name":"setWhitelistState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
6001600a556101a4600b55600c805461ffff1916905561010060405260516080818152906200252360a03980516200004091600e916020909101906200011f565b503480156200004e57600080fd5b50604080518082018252600a81526926b2ba30a630b6b137bd60b11b6020808301918252835180850190945260058452644c414d424f60d81b9084015281519192916200009e916002916200011f565b508051620000b49060039060208401906200011f565b5050600160005550620000c733620000cd565b62000202565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200012d90620001c5565b90600052602060002090601f0160209004810192826200015157600085556200019c565b82601f106200016c57805160ff19168380011785556200019c565b828001600101855582156200019c579182015b828111156200019c5782518255916020019190600101906200017f565b50620001aa929150620001ae565b5090565b5b80821115620001aa5760008155600101620001af565b600181811c90821680620001da57607f821691505b60208210811415620001fc57634e487b7160e01b600052602260045260246000fd5b50919050565b61231180620002126000396000f3fe6080604052600436106102465760003560e01c80638062344411610139578063c87b56dd116100b6578063e8a3d4851161007a578063e8a3d4851461065b578063e985e9c51461067c578063ebf0c717146106c5578063f2fde38b146106db578063f4a560a5146106fb578063fddcb5ea1461071057600080fd5b8063c87b56dd146105f0578063d5abeb0114610610578063d821048214610626578063dab5f3401461063b578063e193e7e21461033c57600080fd5b8063b88d4fde116100fd578063b88d4fde14610561578063b8a20ed014610581578063c002d23d146105a1578063c48156af146105b6578063c754da33146105d657600080fd5b806380623444146104ce5780638ba4cc3c146104ee5780638da5cb5b1461050e57806395d89b411461052c578063a22cb4651461054157600080fd5b80633057931f116101c757806355e158eb1161018b57806355e158eb146104465780636352211e14610466578063681b498d1461048657806370a0823114610499578063715018a6146104b957600080fd5b80633057931f146103bc5780633ccfd60b146103db57806341cda203146103f057806342842e0e146104065780634c2612471461042657600080fd5b80630de76de41161020e5780630de76de41461031c5780630f2cdd6c1461033c57806318160ddd1461035f5780631df0bb8a1461037c57806323b872dd1461039c57600080fd5b806301ffc9a71461024b57806306fdde0314610280578063081812fc146102a2578063095ea7b3146102da5780630a00ae83146102fc575b600080fd5b34801561025757600080fd5b5061026b610266366004611fa7565b610746565b60405190151581526020015b60405180910390f35b34801561028c57600080fd5b50610295610798565b60405161027791906120d1565b3480156102ae57600080fd5b506102c26102bd366004611f8e565b61082a565b6040516001600160a01b039091168152602001610277565b3480156102e657600080fd5b506102fa6102f5366004611ed1565b61086e565b005b34801561030857600080fd5b506102fa610317366004611f8e565b6108f5565b34801561032857600080fd5b50600c5461026b9062010000900460ff1681565b34801561034857600080fd5b50610351600181565b604051908152602001610277565b34801561036b57600080fd5b506001546000540360001901610351565b34801561038857600080fd5b506102fa610397366004611f73565b61092d565b3480156103a857600080fd5b506102fa6103b7366004611df0565b61096a565b3480156103c857600080fd5b50600c5461026b90610100900460ff1681565b3480156103e757600080fd5b506102fa610975565b3480156103fc57600080fd5b50610351600a5481565b34801561041257600080fd5b506102fa610421366004611df0565b6109d2565b34801561043257600080fd5b506102fa610441366004611fe1565b6109ed565b34801561045257600080fd5b506102fa610461366004611efb565b610a7b565b34801561047257600080fd5b506102c2610481366004611f8e565b610c19565b6102fa610494366004611f8e565b610c2b565b3480156104a557600080fd5b506103516104b4366004611da2565b610e61565b3480156104c557600080fd5b506102fa610eaf565b3480156104da57600080fd5b506102fa6104e9366004611f8e565b610ee5565b3480156104fa57600080fd5b506102fa610509366004611ed1565b610f14565b34801561051a57600080fd5b506008546001600160a01b03166102c2565b34801561053857600080fd5b50610295610f81565b34801561054d57600080fd5b506102fa61055c366004611ea7565b610f90565b34801561056d57600080fd5b506102fa61057c366004611e2c565b611026565b34801561058d57600080fd5b5061026b61059c366004611f2f565b61106a565b3480156105ad57600080fd5b50610351600081565b3480156105c257600080fd5b506102fa6105d1366004611f73565b611080565b3480156105e257600080fd5b50600c5461026b9060ff1681565b3480156105fc57600080fd5b5061029561060b366004611f8e565b6110c4565b34801561061c57600080fd5b50610351600b5481565b34801561063257600080fd5b5061029561120a565b34801561064757600080fd5b506102fa610656366004611f8e565b611298565b34801561066757600080fd5b50604080516020810190915260008152610295565b34801561068857600080fd5b5061026b610697366004611dbd565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b3480156106d157600080fd5b5061035160095481565b3480156106e757600080fd5b506102fa6106f6366004611da2565b6112c7565b34801561070757600080fd5b506102fa611362565b34801561071c57600080fd5b5061035161072b366004611da2565b6001600160a01b03166000908152600f602052604090205490565b60006001600160e01b031982166380ac58cd60e01b148061077757506001600160e01b03198216635b5e139f60e01b145b8061079257506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600280546107a790612203565b80601f01602080910402602001604051908101604052809291908181526020018280546107d390612203565b80156108205780601f106107f557610100808354040283529160200191610820565b820191906000526020600020905b81548152906001019060200180831161080357829003601f168201915b5050505050905090565b60006108358261139f565b610852576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600061087982610c19565b9050806001600160a01b0316836001600160a01b031614156108ae5760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b038216146108e5576108c88133610697565b6108e5576040516367d9dca160e11b815260040160405180910390fd5b6108f08383836113d8565b505050565b6008546001600160a01b031633146109285760405162461bcd60e51b815260040161091f90612110565b60405180910390fd5b600a55565b6008546001600160a01b031633146109575760405162461bcd60e51b815260040161091f90612110565b600c805460ff1916911515919091179055565b6108f0838383611434565b6008546001600160a01b0316331461099f5760405162461bcd60e51b815260040161091f90612110565b6040514790339082156108fc029083906000818181858888f193505050501580156109ce573d6000803e3d6000fd5b5050565b6108f083838360405180602001604052806000815250611026565b6008546001600160a01b03163314610a175760405162461bcd60e51b815260040161091f90612110565b600c5462010000900460ff1615610a685760405162461bcd60e51b815260206004820152601560248201527413595d1859185d18481a5cc8199a5b985b1a5e9959605a1b604482015260640161091f565b80516109ce90600d906020840190611c01565b600c5460019060ff16610ad05760405162461bcd60e51b815260206004820152601e60248201527f57686974656c697374206d696e7420686173206e6f7420737461727465640000604482015260640161091f565b6040516bffffffffffffffffffffffff193360601b166020820152610b0f9083906034016040516020818303038152906040528051906020012061106a565b610b5b5760405162461bcd60e51b815260206004820152601b60248201527f57616c6c6574206e6f74206f6e2074686520616c6c6f776c6973740000000000604482015260640161091f565b600b5481610b6c6000546000190190565b610b769190612175565b1115610b945760405162461bcd60e51b815260040161091f906120e4565b336000908152600f602052604090205415610bea5760405162461bcd60e51b815260206004820152601660248201527545786365656473206d61782066726565206d696e747360501b604482015260640161091f565b336000908152600f602052604081208054839290610c09908490612175565b909155506109ce90503382611621565b6000610c248261163b565b5192915050565b600c54610100900460ff16610c825760405162461bcd60e51b815260206004820152601b60248201527f5075626c6963206d696e7420686173206e6f7420737461727465640000000000604482015260640161091f565b6001811115610cdd5760405162461bcd60e51b815260206004820152602160248201527f45786365656473204e465420706572207472616e73616374696f6e206c696d696044820152601d60fa1b606482015260840161091f565b600b5481610cee6000546000190190565b610cf89190612175565b1115610d165760405162461bcd60e51b815260040161091f906120e4565b336000908152600f6020526040902054600190610d34908390612175565b1115610d7b5760405162461bcd60e51b8152602060048201526016602482015275115e18d959591cc81b585e081c195c881dd85b1b195d60521b604482015260640161091f565b336000908152600f6020526040902054600a5482919080821015610dc7576000610da583836121c0565b905080851115610dc057610db981866121c0565b9350610dc5565b600093505b505b610dd26000846121a1565b341015610e2c5760405162461bcd60e51b815260206004820152602260248201527f45746865722076616c75652073656e74206973206e6f742073756666696369656044820152611b9d60f21b606482015260840161091f565b336000908152600f602052604081208054869290610e4b908490612175565b90915550610e5b90503385611621565b50505050565b60006001600160a01b038216610e8a576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600560205260409020546001600160401b031690565b6008546001600160a01b03163314610ed95760405162461bcd60e51b815260040161091f90612110565b610ee3600061175d565b565b6008546001600160a01b03163314610f0f5760405162461bcd60e51b815260040161091f90612110565b600b55565b6008546001600160a01b03163314610f3e5760405162461bcd60e51b815260040161091f90612110565b600b5481610f4f6000546000190190565b610f599190612175565b1115610f775760405162461bcd60e51b815260040161091f906120e4565b6109ce8282611621565b6060600380546107a790612203565b6001600160a01b038216331415610fba5760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b611031848484611434565b6001600160a01b0383163b15610e5b5761104d848484846117af565b610e5b576040516368d2bf6b60e11b815260040160405180910390fd5b600061107983600954846118a7565b9392505050565b6008546001600160a01b031633146110aa5760405162461bcd60e51b815260040161091f90612110565b600c80549115156101000261ff0019909216919091179055565b60606110cf8261139f565b6111335760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b606482015260840161091f565b600061113d6118bd565b51116111d357600e805461115090612203565b80601f016020809104026020016040519081016040528092919081815260200182805461117c90612203565b80156111c95780601f1061119e576101008083540402835291602001916111c9565b820191906000526020600020905b8154815290600101906020018083116111ac57829003601f168201915b5050505050610792565b6111db6118bd565b6111e4836118cc565b6040516020016111f5929190612055565b60405160208183030381529060405292915050565b600e805461121790612203565b80601f016020809104026020016040519081016040528092919081815260200182805461124390612203565b80156112905780601f1061126557610100808354040283529160200191611290565b820191906000526020600020905b81548152906001019060200180831161127357829003601f168201915b505050505081565b6008546001600160a01b031633146112c25760405162461bcd60e51b815260040161091f90612110565b600955565b6008546001600160a01b031633146112f15760405162461bcd60e51b815260040161091f90612110565b6001600160a01b0381166113565760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161091f565b61135f8161175d565b50565b6008546001600160a01b0316331461138c5760405162461bcd60e51b815260040161091f90612110565b600c805462ff0000191662010000179055565b6000816001111580156113b3575060005482105b8015610792575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600061143f8261163b565b9050836001600160a01b031681600001516001600160a01b0316146114765760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b038616148061149457506114948533610697565b806114af5750336114a48461082a565b6001600160a01b0316145b9050806114cf57604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b0384166114f657604051633a954ecd60e21b815260040160405180910390fd5b611502600084876113d8565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff198082166001600160401b0392831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b429092169190910217835587018084529220805491939091166115d65760005482146115d657805460208601516001600160401b0316600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050505050565b6109ce8282604051806020016040528060008152506119c9565b604080516060810182526000808252602082018190529181019190915281806001116117445760005481101561174457600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff161515918101829052906117425780516001600160a01b0316156116d9579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b82046001600160401b031693830193909352600160e01b900460ff161515928101929092521561173d579392505050565b6116d9565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a02906117e4903390899088908890600401612094565b602060405180830381600087803b1580156117fe57600080fd5b505af192505050801561182e575060408051601f3d908101601f1916820190925261182b91810190611fc4565b60015b611889573d80801561185c576040519150601f19603f3d011682016040523d82523d6000602084013e611861565b606091505b508051611881576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6000826118b48584611b8d565b14949350505050565b6060600d80546107a790612203565b6060816118f05750506040805180820190915260018152600360fc1b602082015290565b8160005b811561191a57806119048161223e565b91506119139050600a8361218d565b91506118f4565b6000816001600160401b03811115611934576119346122af565b6040519080825280601f01601f19166020018201604052801561195e576020820181803683370190505b5090505b841561189f576119736001836121c0565b9150611980600a86612259565b61198b906030612175565b60f81b8183815181106119a0576119a0612299565b60200101906001600160f81b031916908160001a9053506119c2600a8661218d565b9450611962565b6000546001600160a01b0384166119f257604051622e076360e81b815260040160405180910390fd5b82611a105760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038416600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff1981166001600160401b038083168b0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168b01811690920217909155858452600490925290912080546001600160e01b0319168317600160a01b42909316929092029190911790558190818501903b15611b38575b60405182906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4611b0160008784806001019550876117af565b611b1e576040516368d2bf6b60e11b815260040160405180910390fd5b808210611ab6578260005414611b3357600080fd5b611b7d565b5b6040516001830192906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4808210611b39575b506000908155610e5b9085838684565b600081815b8451811015611bf9576000858281518110611baf57611baf612299565b60200260200101519050808311611bd55760008381526020829052604090209250611be6565b600081815260208490526040902092505b5080611bf18161223e565b915050611b92565b509392505050565b828054611c0d90612203565b90600052602060002090601f016020900481019282611c2f5760008555611c75565b82601f10611c4857805160ff1916838001178555611c75565b82800160010185558215611c75579182015b82811115611c75578251825591602001919060010190611c5a565b50611c81929150611c85565b5090565b5b80821115611c815760008155600101611c86565b60006001600160401b03831115611cb357611cb36122af565b611cc6601f8401601f1916602001612145565b9050828152838383011115611cda57600080fd5b828260208301376000602084830101529392505050565b80356001600160a01b0381168114611d0857600080fd5b919050565b600082601f830112611d1e57600080fd5b813560206001600160401b03821115611d3957611d396122af565b8160051b611d48828201612145565b838152828101908684018388018501891015611d6357600080fd5b600093505b85841015611d86578035835260019390930192918401918401611d68565b50979650505050505050565b80358015158114611d0857600080fd5b600060208284031215611db457600080fd5b61107982611cf1565b60008060408385031215611dd057600080fd5b611dd983611cf1565b9150611de760208401611cf1565b90509250929050565b600080600060608486031215611e0557600080fd5b611e0e84611cf1565b9250611e1c60208501611cf1565b9150604084013590509250925092565b60008060008060808587031215611e4257600080fd5b611e4b85611cf1565b9350611e5960208601611cf1565b92506040850135915060608501356001600160401b03811115611e7b57600080fd5b8501601f81018713611e8c57600080fd5b611e9b87823560208401611c9a565b91505092959194509250565b60008060408385031215611eba57600080fd5b611ec383611cf1565b9150611de760208401611d92565b60008060408385031215611ee457600080fd5b611eed83611cf1565b946020939093013593505050565b600060208284031215611f0d57600080fd5b81356001600160401b03811115611f2357600080fd5b61189f84828501611d0d565b60008060408385031215611f4257600080fd5b82356001600160401b03811115611f5857600080fd5b611f6485828601611d0d565b95602094909401359450505050565b600060208284031215611f8557600080fd5b61107982611d92565b600060208284031215611fa057600080fd5b5035919050565b600060208284031215611fb957600080fd5b8135611079816122c5565b600060208284031215611fd657600080fd5b8151611079816122c5565b600060208284031215611ff357600080fd5b81356001600160401b0381111561200957600080fd5b8201601f8101841361201a57600080fd5b61189f84823560208401611c9a565b600081518084526120418160208601602086016121d7565b601f01601f19169290920160200192915050565b600083516120678184602088016121d7565b83519083019061207b8183602088016121d7565b64173539b7b760d91b9101908152600501949350505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906120c790830184612029565b9695505050505050565b6020815260006110796020830184612029565b60208082526012908201527145786365656473206d617820737570706c7960701b604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b604051601f8201601f191681016001600160401b038111828210171561216d5761216d6122af565b604052919050565b600082198211156121885761218861226d565b500190565b60008261219c5761219c612283565b500490565b60008160001904831182151516156121bb576121bb61226d565b500290565b6000828210156121d2576121d261226d565b500390565b60005b838110156121f25781810151838201526020016121da565b83811115610e5b5750506000910152565b600181811c9082168061221757607f821691505b6020821081141561223857634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156122525761225261226d565b5060010190565b60008261226857612268612283565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461135f57600080fdfea26469706673582212209c59f594b9d86ef12725e9ebfc837f57bb677bffd514ab59703f791e9fc932aa64736f6c63430008070033697066733a2f2f62616679626569666a6a76367835697a767471366a623635777769767a34336c727737766637687465736361616c726c656d64336a37746b376e342f70726572657665616c2e6a736f6e
Deployed Bytecode
0x6080604052600436106102465760003560e01c80638062344411610139578063c87b56dd116100b6578063e8a3d4851161007a578063e8a3d4851461065b578063e985e9c51461067c578063ebf0c717146106c5578063f2fde38b146106db578063f4a560a5146106fb578063fddcb5ea1461071057600080fd5b8063c87b56dd146105f0578063d5abeb0114610610578063d821048214610626578063dab5f3401461063b578063e193e7e21461033c57600080fd5b8063b88d4fde116100fd578063b88d4fde14610561578063b8a20ed014610581578063c002d23d146105a1578063c48156af146105b6578063c754da33146105d657600080fd5b806380623444146104ce5780638ba4cc3c146104ee5780638da5cb5b1461050e57806395d89b411461052c578063a22cb4651461054157600080fd5b80633057931f116101c757806355e158eb1161018b57806355e158eb146104465780636352211e14610466578063681b498d1461048657806370a0823114610499578063715018a6146104b957600080fd5b80633057931f146103bc5780633ccfd60b146103db57806341cda203146103f057806342842e0e146104065780634c2612471461042657600080fd5b80630de76de41161020e5780630de76de41461031c5780630f2cdd6c1461033c57806318160ddd1461035f5780631df0bb8a1461037c57806323b872dd1461039c57600080fd5b806301ffc9a71461024b57806306fdde0314610280578063081812fc146102a2578063095ea7b3146102da5780630a00ae83146102fc575b600080fd5b34801561025757600080fd5b5061026b610266366004611fa7565b610746565b60405190151581526020015b60405180910390f35b34801561028c57600080fd5b50610295610798565b60405161027791906120d1565b3480156102ae57600080fd5b506102c26102bd366004611f8e565b61082a565b6040516001600160a01b039091168152602001610277565b3480156102e657600080fd5b506102fa6102f5366004611ed1565b61086e565b005b34801561030857600080fd5b506102fa610317366004611f8e565b6108f5565b34801561032857600080fd5b50600c5461026b9062010000900460ff1681565b34801561034857600080fd5b50610351600181565b604051908152602001610277565b34801561036b57600080fd5b506001546000540360001901610351565b34801561038857600080fd5b506102fa610397366004611f73565b61092d565b3480156103a857600080fd5b506102fa6103b7366004611df0565b61096a565b3480156103c857600080fd5b50600c5461026b90610100900460ff1681565b3480156103e757600080fd5b506102fa610975565b3480156103fc57600080fd5b50610351600a5481565b34801561041257600080fd5b506102fa610421366004611df0565b6109d2565b34801561043257600080fd5b506102fa610441366004611fe1565b6109ed565b34801561045257600080fd5b506102fa610461366004611efb565b610a7b565b34801561047257600080fd5b506102c2610481366004611f8e565b610c19565b6102fa610494366004611f8e565b610c2b565b3480156104a557600080fd5b506103516104b4366004611da2565b610e61565b3480156104c557600080fd5b506102fa610eaf565b3480156104da57600080fd5b506102fa6104e9366004611f8e565b610ee5565b3480156104fa57600080fd5b506102fa610509366004611ed1565b610f14565b34801561051a57600080fd5b506008546001600160a01b03166102c2565b34801561053857600080fd5b50610295610f81565b34801561054d57600080fd5b506102fa61055c366004611ea7565b610f90565b34801561056d57600080fd5b506102fa61057c366004611e2c565b611026565b34801561058d57600080fd5b5061026b61059c366004611f2f565b61106a565b3480156105ad57600080fd5b50610351600081565b3480156105c257600080fd5b506102fa6105d1366004611f73565b611080565b3480156105e257600080fd5b50600c5461026b9060ff1681565b3480156105fc57600080fd5b5061029561060b366004611f8e565b6110c4565b34801561061c57600080fd5b50610351600b5481565b34801561063257600080fd5b5061029561120a565b34801561064757600080fd5b506102fa610656366004611f8e565b611298565b34801561066757600080fd5b50604080516020810190915260008152610295565b34801561068857600080fd5b5061026b610697366004611dbd565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b3480156106d157600080fd5b5061035160095481565b3480156106e757600080fd5b506102fa6106f6366004611da2565b6112c7565b34801561070757600080fd5b506102fa611362565b34801561071c57600080fd5b5061035161072b366004611da2565b6001600160a01b03166000908152600f602052604090205490565b60006001600160e01b031982166380ac58cd60e01b148061077757506001600160e01b03198216635b5e139f60e01b145b8061079257506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600280546107a790612203565b80601f01602080910402602001604051908101604052809291908181526020018280546107d390612203565b80156108205780601f106107f557610100808354040283529160200191610820565b820191906000526020600020905b81548152906001019060200180831161080357829003601f168201915b5050505050905090565b60006108358261139f565b610852576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600061087982610c19565b9050806001600160a01b0316836001600160a01b031614156108ae5760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b038216146108e5576108c88133610697565b6108e5576040516367d9dca160e11b815260040160405180910390fd5b6108f08383836113d8565b505050565b6008546001600160a01b031633146109285760405162461bcd60e51b815260040161091f90612110565b60405180910390fd5b600a55565b6008546001600160a01b031633146109575760405162461bcd60e51b815260040161091f90612110565b600c805460ff1916911515919091179055565b6108f0838383611434565b6008546001600160a01b0316331461099f5760405162461bcd60e51b815260040161091f90612110565b6040514790339082156108fc029083906000818181858888f193505050501580156109ce573d6000803e3d6000fd5b5050565b6108f083838360405180602001604052806000815250611026565b6008546001600160a01b03163314610a175760405162461bcd60e51b815260040161091f90612110565b600c5462010000900460ff1615610a685760405162461bcd60e51b815260206004820152601560248201527413595d1859185d18481a5cc8199a5b985b1a5e9959605a1b604482015260640161091f565b80516109ce90600d906020840190611c01565b600c5460019060ff16610ad05760405162461bcd60e51b815260206004820152601e60248201527f57686974656c697374206d696e7420686173206e6f7420737461727465640000604482015260640161091f565b6040516bffffffffffffffffffffffff193360601b166020820152610b0f9083906034016040516020818303038152906040528051906020012061106a565b610b5b5760405162461bcd60e51b815260206004820152601b60248201527f57616c6c6574206e6f74206f6e2074686520616c6c6f776c6973740000000000604482015260640161091f565b600b5481610b6c6000546000190190565b610b769190612175565b1115610b945760405162461bcd60e51b815260040161091f906120e4565b336000908152600f602052604090205415610bea5760405162461bcd60e51b815260206004820152601660248201527545786365656473206d61782066726565206d696e747360501b604482015260640161091f565b336000908152600f602052604081208054839290610c09908490612175565b909155506109ce90503382611621565b6000610c248261163b565b5192915050565b600c54610100900460ff16610c825760405162461bcd60e51b815260206004820152601b60248201527f5075626c6963206d696e7420686173206e6f7420737461727465640000000000604482015260640161091f565b6001811115610cdd5760405162461bcd60e51b815260206004820152602160248201527f45786365656473204e465420706572207472616e73616374696f6e206c696d696044820152601d60fa1b606482015260840161091f565b600b5481610cee6000546000190190565b610cf89190612175565b1115610d165760405162461bcd60e51b815260040161091f906120e4565b336000908152600f6020526040902054600190610d34908390612175565b1115610d7b5760405162461bcd60e51b8152602060048201526016602482015275115e18d959591cc81b585e081c195c881dd85b1b195d60521b604482015260640161091f565b336000908152600f6020526040902054600a5482919080821015610dc7576000610da583836121c0565b905080851115610dc057610db981866121c0565b9350610dc5565b600093505b505b610dd26000846121a1565b341015610e2c5760405162461bcd60e51b815260206004820152602260248201527f45746865722076616c75652073656e74206973206e6f742073756666696369656044820152611b9d60f21b606482015260840161091f565b336000908152600f602052604081208054869290610e4b908490612175565b90915550610e5b90503385611621565b50505050565b60006001600160a01b038216610e8a576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600560205260409020546001600160401b031690565b6008546001600160a01b03163314610ed95760405162461bcd60e51b815260040161091f90612110565b610ee3600061175d565b565b6008546001600160a01b03163314610f0f5760405162461bcd60e51b815260040161091f90612110565b600b55565b6008546001600160a01b03163314610f3e5760405162461bcd60e51b815260040161091f90612110565b600b5481610f4f6000546000190190565b610f599190612175565b1115610f775760405162461bcd60e51b815260040161091f906120e4565b6109ce8282611621565b6060600380546107a790612203565b6001600160a01b038216331415610fba5760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b611031848484611434565b6001600160a01b0383163b15610e5b5761104d848484846117af565b610e5b576040516368d2bf6b60e11b815260040160405180910390fd5b600061107983600954846118a7565b9392505050565b6008546001600160a01b031633146110aa5760405162461bcd60e51b815260040161091f90612110565b600c80549115156101000261ff0019909216919091179055565b60606110cf8261139f565b6111335760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b606482015260840161091f565b600061113d6118bd565b51116111d357600e805461115090612203565b80601f016020809104026020016040519081016040528092919081815260200182805461117c90612203565b80156111c95780601f1061119e576101008083540402835291602001916111c9565b820191906000526020600020905b8154815290600101906020018083116111ac57829003601f168201915b5050505050610792565b6111db6118bd565b6111e4836118cc565b6040516020016111f5929190612055565b60405160208183030381529060405292915050565b600e805461121790612203565b80601f016020809104026020016040519081016040528092919081815260200182805461124390612203565b80156112905780601f1061126557610100808354040283529160200191611290565b820191906000526020600020905b81548152906001019060200180831161127357829003601f168201915b505050505081565b6008546001600160a01b031633146112c25760405162461bcd60e51b815260040161091f90612110565b600955565b6008546001600160a01b031633146112f15760405162461bcd60e51b815260040161091f90612110565b6001600160a01b0381166113565760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161091f565b61135f8161175d565b50565b6008546001600160a01b0316331461138c5760405162461bcd60e51b815260040161091f90612110565b600c805462ff0000191662010000179055565b6000816001111580156113b3575060005482105b8015610792575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600061143f8261163b565b9050836001600160a01b031681600001516001600160a01b0316146114765760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b038616148061149457506114948533610697565b806114af5750336114a48461082a565b6001600160a01b0316145b9050806114cf57604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b0384166114f657604051633a954ecd60e21b815260040160405180910390fd5b611502600084876113d8565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff198082166001600160401b0392831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b429092169190910217835587018084529220805491939091166115d65760005482146115d657805460208601516001600160401b0316600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050505050565b6109ce8282604051806020016040528060008152506119c9565b604080516060810182526000808252602082018190529181019190915281806001116117445760005481101561174457600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff161515918101829052906117425780516001600160a01b0316156116d9579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b82046001600160401b031693830193909352600160e01b900460ff161515928101929092521561173d579392505050565b6116d9565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a02906117e4903390899088908890600401612094565b602060405180830381600087803b1580156117fe57600080fd5b505af192505050801561182e575060408051601f3d908101601f1916820190925261182b91810190611fc4565b60015b611889573d80801561185c576040519150601f19603f3d011682016040523d82523d6000602084013e611861565b606091505b508051611881576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6000826118b48584611b8d565b14949350505050565b6060600d80546107a790612203565b6060816118f05750506040805180820190915260018152600360fc1b602082015290565b8160005b811561191a57806119048161223e565b91506119139050600a8361218d565b91506118f4565b6000816001600160401b03811115611934576119346122af565b6040519080825280601f01601f19166020018201604052801561195e576020820181803683370190505b5090505b841561189f576119736001836121c0565b9150611980600a86612259565b61198b906030612175565b60f81b8183815181106119a0576119a0612299565b60200101906001600160f81b031916908160001a9053506119c2600a8661218d565b9450611962565b6000546001600160a01b0384166119f257604051622e076360e81b815260040160405180910390fd5b82611a105760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038416600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff1981166001600160401b038083168b0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168b01811690920217909155858452600490925290912080546001600160e01b0319168317600160a01b42909316929092029190911790558190818501903b15611b38575b60405182906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4611b0160008784806001019550876117af565b611b1e576040516368d2bf6b60e11b815260040160405180910390fd5b808210611ab6578260005414611b3357600080fd5b611b7d565b5b6040516001830192906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4808210611b39575b506000908155610e5b9085838684565b600081815b8451811015611bf9576000858281518110611baf57611baf612299565b60200260200101519050808311611bd55760008381526020829052604090209250611be6565b600081815260208490526040902092505b5080611bf18161223e565b915050611b92565b509392505050565b828054611c0d90612203565b90600052602060002090601f016020900481019282611c2f5760008555611c75565b82601f10611c4857805160ff1916838001178555611c75565b82800160010185558215611c75579182015b82811115611c75578251825591602001919060010190611c5a565b50611c81929150611c85565b5090565b5b80821115611c815760008155600101611c86565b60006001600160401b03831115611cb357611cb36122af565b611cc6601f8401601f1916602001612145565b9050828152838383011115611cda57600080fd5b828260208301376000602084830101529392505050565b80356001600160a01b0381168114611d0857600080fd5b919050565b600082601f830112611d1e57600080fd5b813560206001600160401b03821115611d3957611d396122af565b8160051b611d48828201612145565b838152828101908684018388018501891015611d6357600080fd5b600093505b85841015611d86578035835260019390930192918401918401611d68565b50979650505050505050565b80358015158114611d0857600080fd5b600060208284031215611db457600080fd5b61107982611cf1565b60008060408385031215611dd057600080fd5b611dd983611cf1565b9150611de760208401611cf1565b90509250929050565b600080600060608486031215611e0557600080fd5b611e0e84611cf1565b9250611e1c60208501611cf1565b9150604084013590509250925092565b60008060008060808587031215611e4257600080fd5b611e4b85611cf1565b9350611e5960208601611cf1565b92506040850135915060608501356001600160401b03811115611e7b57600080fd5b8501601f81018713611e8c57600080fd5b611e9b87823560208401611c9a565b91505092959194509250565b60008060408385031215611eba57600080fd5b611ec383611cf1565b9150611de760208401611d92565b60008060408385031215611ee457600080fd5b611eed83611cf1565b946020939093013593505050565b600060208284031215611f0d57600080fd5b81356001600160401b03811115611f2357600080fd5b61189f84828501611d0d565b60008060408385031215611f4257600080fd5b82356001600160401b03811115611f5857600080fd5b611f6485828601611d0d565b95602094909401359450505050565b600060208284031215611f8557600080fd5b61107982611d92565b600060208284031215611fa057600080fd5b5035919050565b600060208284031215611fb957600080fd5b8135611079816122c5565b600060208284031215611fd657600080fd5b8151611079816122c5565b600060208284031215611ff357600080fd5b81356001600160401b0381111561200957600080fd5b8201601f8101841361201a57600080fd5b61189f84823560208401611c9a565b600081518084526120418160208601602086016121d7565b601f01601f19169290920160200192915050565b600083516120678184602088016121d7565b83519083019061207b8183602088016121d7565b64173539b7b760d91b9101908152600501949350505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906120c790830184612029565b9695505050505050565b6020815260006110796020830184612029565b60208082526012908201527145786365656473206d617820737570706c7960701b604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b604051601f8201601f191681016001600160401b038111828210171561216d5761216d6122af565b604052919050565b600082198211156121885761218861226d565b500190565b60008261219c5761219c612283565b500490565b60008160001904831182151516156121bb576121bb61226d565b500290565b6000828210156121d2576121d261226d565b500390565b60005b838110156121f25781810151838201526020016121da565b83811115610e5b5750506000910152565b600181811c9082168061221757607f821691505b6020821081141561223857634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156122525761225261226d565b5060010190565b60008261226857612268612283565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461135f57600080fdfea26469706673582212209c59f594b9d86ef12725e9ebfc837f57bb677bffd514ab59703f791e9fc932aa64736f6c63430008070033
Deployed Bytecode Sourcemap
50128:4152:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28749:305;;;;;;;;;;-1:-1:-1;28749:305:0;;;;;:::i;:::-;;:::i;:::-;;;7766:14:1;;7759:22;7741:41;;7729:2;7714:18;28749:305:0;;;;;;;;31864:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;33368:204::-;;;;;;;;;;-1:-1:-1;33368:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;7064:32:1;;;7046:51;;7034:2;7019:18;33368:204:0;6900:203:1;32930:372:0;;;;;;;;;;-1:-1:-1;32930:372:0;;;;;:::i;:::-;;:::i;:::-;;52157:101;;;;;;;;;;-1:-1:-1;52157:101:0;;;;;:::i;:::-;;:::i;50515:27::-;;;;;;;;;;-1:-1:-1;50515:27:0;;;;;;;;;;;50319:39;;;;;;;;;;;;50357:1;50319:39;;;;;7939:25:1;;;7927:2;7912:18;50319:39:0;7793:177:1;27989:312:0;;;;;;;;;;-1:-1:-1;50994:1:0;28252:12;28042:7;28236:13;:28;-1:-1:-1;;28236:46:0;27989:312;;51536:91;;;;;;;;;;-1:-1:-1;51536:91:0;;;;;:::i;:::-;;:::i;34233:170::-;;;;;;;;;;-1:-1:-1;34233:170:0;;;;;:::i;:::-;;:::i;50476:32::-;;;;;;;;;;-1:-1:-1;50476:32:0;;;;;;;;;;;51728:143;;;;;;;;;;;;;:::i;50365:29::-;;;;;;;;;;;;;;;;34474:185;;;;;;;;;;-1:-1:-1;34474:185:0;;;;;:::i;:::-;;:::i;51184:139::-;;;;;;;;;;-1:-1:-1;51184:139:0;;;;;:::i;:::-;;:::i;52762:483::-;;;;;;;;;;-1:-1:-1;52762:483:0;;;;;:::i;:::-;;:::i;31672:125::-;;;;;;;;;;-1:-1:-1;31672:125:0;;;;;:::i;:::-;;:::i;53257:1020::-;;;;;;:::i;:::-;;:::i;29118:206::-;;;;;;;;;;-1:-1:-1;29118:206:0;;;;;:::i;:::-;;:::i;49276:103::-;;;;;;;;;;;;;:::i;52055:94::-;;;;;;;;;;-1:-1:-1;52055:94:0;;;;;:::i;:::-;;:::i;51876:174::-;;;;;;;;;;-1:-1:-1;51876:174:0;;;;;:::i;:::-;;:::i;48625:87::-;;;;;;;;;;-1:-1:-1;48698:6:0;;-1:-1:-1;;;;;48698:6:0;48625:87;;32033:104;;;;;;;;;;;;;:::i;33644:287::-;;;;;;;;;;-1:-1:-1;33644:287:0;;;;;:::i;:::-;;:::i;34730:370::-;;;;;;;;;;-1:-1:-1;34730:370:0;;;;;:::i;:::-;;:::i;52609:145::-;;;;;;;;;;-1:-1:-1;52609:145:0;;;;;:::i;:::-;;:::i;50226:41::-;;;;;;;;;;;;50260:7;50226:41;;51635:85;;;;;;;;;;-1:-1:-1;51635:85:0;;;;;:::i;:::-;;:::i;50434:35::-;;;;;;;;;;-1:-1:-1;50434:35:0;;;;;;;;52263:341;;;;;;;;;;-1:-1:-1;52263:341:0;;;;;:::i;:::-;;:::i;50398:27::-;;;;;;;;;;;;;;;;50576:112;;;;;;;;;;;;;:::i;51455:73::-;;;;;;;;;;-1:-1:-1;51455:73:0;;;;;:::i;:::-;;:::i;51005:78::-;;;;;;;;;;-1:-1:-1;51069:9:0;;;;;;;;;-1:-1:-1;51069:9:0;;51005:78;;34002:164;;;;;;;;;;-1:-1:-1;34002:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;34123:25:0;;;34099:4;34123:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;34002:164;50175:19;;;;;;;;;;;;;;;;49534:201;;;;;;;;;;-1:-1:-1;49534:201:0;;;;;:::i;:::-;;:::i;51091:88::-;;;;;;;;;;;;;:::i;51331:116::-;;;;;;;;;;-1:-1:-1;51331:116:0;;;;;:::i;:::-;-1:-1:-1;;;;;51414:25:0;51390:4;51414:25;;;:18;:25;;;;;;;51331:116;28749:305;28851:4;-1:-1:-1;;;;;;28888:40:0;;-1:-1:-1;;;28888:40:0;;:105;;-1:-1:-1;;;;;;;28945:48:0;;-1:-1:-1;;;28945:48:0;28888:105;:158;;;-1:-1:-1;;;;;;;;;;16306:40:0;;;29010:36;28868:178;28749:305;-1:-1:-1;;28749:305:0:o;31864:100::-;31918:13;31951:5;31944:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31864:100;:::o;33368:204::-;33436:7;33461:16;33469:7;33461;:16::i;:::-;33456:64;;33486:34;;-1:-1:-1;;;33486:34:0;;;;;;;;;;;33456:64;-1:-1:-1;33540:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;33540:24:0;;33368:204::o;32930:372::-;33003:13;33019:24;33035:7;33019:15;:24::i;:::-;33003:40;;33064:5;-1:-1:-1;;;;;33058:11:0;:2;-1:-1:-1;;;;;33058:11:0;;33054:48;;;33078:24;;-1:-1:-1;;;33078:24:0;;;;;;;;;;;33054:48;25766:10;-1:-1:-1;;;;;33119:21:0;;;33115:139;;33146:37;33163:5;25766:10;34002:164;:::i;33146:37::-;33142:112;;33207:35;;-1:-1:-1;;;33207:35:0;;;;;;;;;;;33142:112;33266:28;33275:2;33279:7;33288:5;33266:8;:28::i;:::-;32992:310;32930:372;;:::o;52157:101::-;48698:6;;-1:-1:-1;;;;;48698:6:0;25766:10;48845:23;48837:68;;;;-1:-1:-1;;;48837:68:0;;;;;;;:::i;:::-;;;;;;;;;52225:13:::1;:28:::0;52157:101::o;51536:91::-;48698:6;;-1:-1:-1;;;;;48698:6:0;25766:10;48845:23;48837:68;;;;-1:-1:-1;;;48837:68:0;;;;;;;:::i;:::-;51599:15:::1;:23:::0;;-1:-1:-1;;51599:23:0::1;::::0;::::1;;::::0;;;::::1;::::0;;51536:91::o;34233:170::-;34367:28;34377:4;34383:2;34387:7;34367:9;:28::i;51728:143::-;48698:6;;-1:-1:-1;;;;;48698:6:0;25766:10;48845:23;48837:68;;;;-1:-1:-1;;;48837:68:0;;;;;;;:::i;:::-;51826:37:::1;::::0;51794:21:::1;::::0;51834:10:::1;::::0;51826:37;::::1;;;::::0;51794:21;;51776:15:::1;51826:37:::0;51776:15;51826:37;51794:21;51834:10;51826:37;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;51765:106;51728:143::o:0;34474:185::-;34612:39;34629:4;34635:2;34639:7;34612:39;;;;;;;;;;;;:16;:39::i;51184:139::-;48698:6;;-1:-1:-1;;;;;48698:6:0;25766:10;48845:23;48837:68;;;;-1:-1:-1;;;48837:68:0;;;;;;;:::i;:::-;51258:15:::1;::::0;;;::::1;;;51257:16;51249:50;;;::::0;-1:-1:-1;;;51249:50:0;;8401:2:1;51249:50:0::1;::::0;::::1;8383:21:1::0;8440:2;8420:18;;;8413:30;-1:-1:-1;;;8459:18:1;;;8452:51;8520:18;;51249:50:0::1;8199:345:1::0;51249:50:0::1;51304:14:::0;;::::1;::::0;:8:::1;::::0;:14:::1;::::0;::::1;::::0;::::1;:::i;52762:483::-:0;52855:15;;52841:1;;52855:15;;52847:58;;;;-1:-1:-1;;;52847:58:0;;9158:2:1;52847:58:0;;;9140:21:1;9197:2;9177:18;;;9170:30;9236:32;9216:18;;;9209:60;9286:18;;52847:58:0;8956:354:1;52847:58:0;52949:28;;-1:-1:-1;;52966:10:0;6173:2:1;6169:15;6165:53;52949:28:0;;;6153:66:1;52924:55:0;;52932:5;;6235:12:1;;52949:28:0;;;;;;;;;;;;52939:39;;;;;;52924:7;:55::i;:::-;52916:95;;;;-1:-1:-1;;;52916:95:0;;9517:2:1;52916:95:0;;;9499:21:1;9556:2;9536:18;;;9529:30;9595:29;9575:18;;;9568:57;9642:18;;52916:95:0;9315:351:1;52916:95:0;53050:9;;53041:5;53024:14;28441:7;28627:13;-1:-1:-1;;28627:31:0;;28394:283;53024:14;:22;;;;:::i;:::-;:35;;53016:65;;;;-1:-1:-1;;;53016:65:0;;;;;;;:::i;:::-;53119:10;53100:30;;;;:18;:30;;;;;;:35;53092:69;;;;-1:-1:-1;;;53092:69:0;;10631:2:1;53092:69:0;;;10613:21:1;10670:2;10650:18;;;10643:30;-1:-1:-1;;;10689:18:1;;;10682:52;10751:18;;53092:69:0;10429:346:1;53092:69:0;53187:10;53168:30;;;;:18;:30;;;;;:39;;53202:5;;53168:30;:39;;53202:5;;53168:39;:::i;:::-;;;;-1:-1:-1;53212:28:0;;-1:-1:-1;53222:10:0;53234:5;53212:9;:28::i;31672:125::-;31736:7;31763:21;31776:7;31763:12;:21::i;:::-;:26;;31672:125;-1:-1:-1;;31672:125:0:o;53257:1020::-;53320:12;;;;;;;53312:52;;;;-1:-1:-1;;;53312:52:0;;9873:2:1;53312:52:0;;;9855:21:1;9912:2;9892:18;;;9885:30;9951:29;9931:18;;;9924:57;9998:18;;53312:52:0;9671:351:1;53312:52:0;50311:1;53377:5;:25;;53369:70;;;;-1:-1:-1;;;53369:70:0;;10229:2:1;53369:70:0;;;10211:21:1;10268:2;10248:18;;;10241:30;10307:34;10287:18;;;10280:62;-1:-1:-1;;;10358:18:1;;;10351:31;10399:19;;53369:70:0;10027:397:1;53369:70:0;53478:9;;53469:5;53452:14;28441:7;28627:13;-1:-1:-1;;28627:31:0;;28394:283;53452:14;:22;;;;:::i;:::-;:35;;53444:65;;;;-1:-1:-1;;;53444:65:0;;;;;;;:::i;:::-;53547:10;53528:30;;;;:18;:30;;;;;;50357:1;;53528:38;;53561:5;;53528:38;:::i;:::-;:56;;53520:90;;;;-1:-1:-1;;;53520:90:0;;12509:2:1;53520:90:0;;;12491:21:1;12548:2;12528:18;;;12521:30;-1:-1:-1;;;12567:18:1;;;12560:52;12629:18;;53520:90:0;12307:346:1;53520:90:0;53696:10;53623:16;53677:30;;;:18;:30;;;;;;53775:13;;53642:5;;53677:30;53804:21;;;53801:289;;;53842:23;53868:21;53878:11;53868:7;:21;:::i;:::-;53842:47;;53915:18;53907:5;:26;53904:175;;;53968:26;53976:18;53968:5;:26;:::i;:::-;53954:40;;53904:175;;;54062:1;54048:15;;53904:175;53827:263;53801:289;54122:24;50260:7;54122:11;:24;:::i;:::-;54109:9;:37;;54096:97;;;;-1:-1:-1;;;54096:97:0;;11329:2:1;54096:97:0;;;11311:21:1;11368:2;11348:18;;;11341:30;11407:34;11387:18;;;11380:62;-1:-1:-1;;;11458:18:1;;;11451:32;11500:19;;54096:97:0;11127:398:1;54096:97:0;54219:10;54200:30;;;;:18;:30;;;;;:39;;54234:5;;54200:30;:39;;54234:5;;54200:39;:::i;:::-;;;;-1:-1:-1;54244:28:0;;-1:-1:-1;54254:10:0;54266:5;54244:9;:28::i;:::-;53307:970;;;53257:1020;:::o;29118:206::-;29182:7;-1:-1:-1;;;;;29206:19:0;;29202:60;;29234:28;;-1:-1:-1;;;29234:28:0;;;;;;;;;;;29202:60;-1:-1:-1;;;;;;29288:19:0;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;29288:27:0;;29118:206::o;49276:103::-;48698:6;;-1:-1:-1;;;;;48698:6:0;25766:10;48845:23;48837:68;;;;-1:-1:-1;;;48837:68:0;;;;;;;:::i;:::-;49341:30:::1;49368:1;49341:18;:30::i;:::-;49276:103::o:0;52055:94::-;48698:6;;-1:-1:-1;;;;;48698:6:0;25766:10;48845:23;48837:68;;;;-1:-1:-1;;;48837:68:0;;;;;;;:::i;:::-;52120:9:::1;:24:::0;52055:94::o;51876:174::-;48698:6;;-1:-1:-1;;;;;48698:6:0;25766:10;48845:23;48837:68;;;;-1:-1:-1;;;48837:68:0;;;;;;;:::i;:::-;51980:9:::1;;51971:5;51954:14;28441:7:::0;28627:13;-1:-1:-1;;28627:31:0;;28394:283;51954:14:::1;:22;;;;:::i;:::-;:35;;51941:79;;;;-1:-1:-1::0;;;51941:79:0::1;;;;;;;:::i;:::-;52025:20;52035:2;52039:5;52025:9;:20::i;32033:104::-:0;32089:13;32122:7;32115:14;;;;;:::i;33644:287::-;-1:-1:-1;;;;;33743:24:0;;25766:10;33743:24;33739:54;;;33776:17;;-1:-1:-1;;;33776:17:0;;;;;;;;;;;33739:54;25766:10;33806:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;33806:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;33806:53:0;;;;;;;;;;33875:48;;7741:41:1;;;33806:42:0;;25766:10;33875:48;;7714:18:1;33875:48:0;;;;;;;33644:287;;:::o;34730:370::-;34897:28;34907:4;34913:2;34917:7;34897:9;:28::i;:::-;-1:-1:-1;;;;;34940:13:0;;6386:19;:23;34936:157;;34961:56;34992:4;34998:2;35002:7;35011:5;34961:30;:56::i;:::-;34957:136;;35041:40;;-1:-1:-1;;;35041:40:0;;;;;;;;;;;52609:145;52685:4;52709:37;52728:5;52735:4;;52741;52709:18;:37::i;:::-;52702:44;52609:145;-1:-1:-1;;;52609:145:0:o;51635:85::-;48698:6;;-1:-1:-1;;;;;48698:6:0;25766:10;48845:23;48837:68;;;;-1:-1:-1;;;48837:68:0;;;;;;;:::i;:::-;51695:12:::1;:20:::0;;;::::1;;;;-1:-1:-1::0;;51695:20:0;;::::1;::::0;;;::::1;::::0;;51635:85::o;52263:341::-;52337:13;52373:16;52381:7;52373;:16::i;:::-;52365:76;;;;-1:-1:-1;;;52365:76:0;;12093:2:1;52365:76:0;;;12075:21:1;12132:2;12112:18;;;12105:30;12171:34;12151:18;;;12144:62;-1:-1:-1;;;12222:18:1;;;12215:45;12277:19;;52365:76:0;11891:411:1;52365:76:0;52488:1;52467:10;:8;:10::i;:::-;52461:24;:28;:138;;52587:12;52461:138;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52530:10;:8;:10::i;:::-;52542:18;:7;:16;:18::i;:::-;52513:57;;;;;;;;;:::i;:::-;;;;;;;;;;;;;52454:145;52263:341;-1:-1:-1;;52263:341:0:o;50576:112::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;51455:73::-;48698:6;;-1:-1:-1;;;;;48698:6:0;25766:10;48845:23;48837:68;;;;-1:-1:-1;;;48837:68:0;;;;;;;:::i;:::-;51511:4:::1;:12:::0;51455:73::o;49534:201::-;48698:6;;-1:-1:-1;;;;;48698:6:0;25766:10;48845:23;48837:68;;;;-1:-1:-1;;;48837:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;49623:22:0;::::1;49615:73;;;::::0;-1:-1:-1;;;49615:73:0;;8751:2:1;49615:73:0::1;::::0;::::1;8733:21:1::0;8790:2;8770:18;;;8763:30;8829:34;8809:18;;;8802:62;-1:-1:-1;;;8880:18:1;;;8873:36;8926:19;;49615:73:0::1;8549:402:1::0;49615:73:0::1;49699:28;49718:8;49699:18;:28::i;:::-;49534:201:::0;:::o;51091:88::-;48698:6;;-1:-1:-1;;;;;48698:6:0;25766:10;48845:23;48837:68;;;;-1:-1:-1;;;48837:68:0;;;;;;;:::i;:::-;51149:15:::1;:22:::0;;-1:-1:-1;;51149:22:0::1;::::0;::::1;::::0;;51091:88::o;35355:174::-;35412:4;35455:7;50994:1;35436:26;;:53;;;;;35476:13;;35466:7;:23;35436:53;:85;;;;-1:-1:-1;;35494:20:0;;;;:11;:20;;;;;:27;-1:-1:-1;;;35494:27:0;;;;35493:28;;35355:174::o;44577:196::-;44692:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;44692:29:0;-1:-1:-1;;;;;44692:29:0;;;;;;;;;44737:28;;44692:24;;44737:28;;;;;;;44577:196;;;:::o;39525:2130::-;39640:35;39678:21;39691:7;39678:12;:21::i;:::-;39640:59;;39738:4;-1:-1:-1;;;;;39716:26:0;:13;:18;;;-1:-1:-1;;;;;39716:26:0;;39712:67;;39751:28;;-1:-1:-1;;;39751:28:0;;;;;;;;;;;39712:67;39792:22;25766:10;-1:-1:-1;;;;;39818:20:0;;;;:73;;-1:-1:-1;39855:36:0;39872:4;25766:10;34002:164;:::i;39855:36::-;39818:126;;;-1:-1:-1;25766:10:0;39908:20;39920:7;39908:11;:20::i;:::-;-1:-1:-1;;;;;39908:36:0;;39818:126;39792:153;;39963:17;39958:66;;39989:35;;-1:-1:-1;;;39989:35:0;;;;;;;;;;;39958:66;-1:-1:-1;;;;;40039:16:0;;40035:52;;40064:23;;-1:-1:-1;;;40064:23:0;;;;;;;;;;;40035:52;40208:35;40225:1;40229:7;40238:4;40208:8;:35::i;:::-;-1:-1:-1;;;;;40539:18:0;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;40539:31:0;;;-1:-1:-1;;;;;40539:31:0;;;-1:-1:-1;;40539:31:0;;;;;;;40585:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;40585:29:0;;;;;;;;;;;40665:20;;;:11;:20;;;;;;40700:18;;-1:-1:-1;;;;;;40733:49:0;;;;-1:-1:-1;;;40766:15:0;40733:49;;;;;;;;;;41056:11;;41116:24;;;;;41159:13;;40665:20;;41116:24;;41159:13;41155:384;;41369:13;;41354:11;:28;41350:174;;41407:20;;41476:28;;;;-1:-1:-1;;;;;41450:54:0;-1:-1:-1;;;41450:54:0;-1:-1:-1;;;;;;41450:54:0;;;-1:-1:-1;;;;;41407:20:0;;41450:54;;;;41350:174;40514:1036;;;41586:7;41582:2;-1:-1:-1;;;;;41567:27:0;41576:4;-1:-1:-1;;;;;41567:27:0;;;;;;;;;;;39629:2026;;39525:2130;;;:::o;35613:104::-;35682:27;35692:2;35696:8;35682:27;;;;;;;;;;;;:9;:27::i;30499:1111::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;30610:7:0;;50994:1;30659:23;30655:888;;30695:13;;30688:4;:20;30684:859;;;30729:31;30763:17;;;:11;:17;;;;;;;;;30729:51;;;;;;;;;-1:-1:-1;;;;;30729:51:0;;;;-1:-1:-1;;;30729:51:0;;-1:-1:-1;;;;;30729:51:0;;;;;;;;-1:-1:-1;;;30729:51:0;;;;;;;;;;;;;;30799:729;;30849:14;;-1:-1:-1;;;;;30849:28:0;;30845:101;;30913:9;30499:1111;-1:-1:-1;;;30499:1111:0:o;30845:101::-;-1:-1:-1;;;31288:6:0;31333:17;;;;:11;:17;;;;;;;;;31321:29;;;;;;;;;-1:-1:-1;;;;;31321:29:0;;;;;-1:-1:-1;;;31321:29:0;;-1:-1:-1;;;;;31321:29:0;;;;;;;;-1:-1:-1;;;31321:29:0;;;;;;;;;;;;;31381:28;31377:109;;31449:9;30499:1111;-1:-1:-1;;;30499:1111:0:o;31377:109::-;31248:261;;;30710:833;30684:859;31571:31;;-1:-1:-1;;;31571:31:0;;;;;;;;;;;49895:191;49988:6;;;-1:-1:-1;;;;;50005:17:0;;;-1:-1:-1;;;;;;50005:17:0;;;;;;;50038:40;;49988:6;;;50005:17;49988:6;;50038:40;;49969:16;;50038:40;49958:128;49895:191;:::o;45265:667::-;45449:72;;-1:-1:-1;;;45449:72:0;;45428:4;;-1:-1:-1;;;;;45449:36:0;;;;;:72;;25766:10;;45500:4;;45506:7;;45515:5;;45449:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;45449:72:0;;;;;;;;-1:-1:-1;;45449:72:0;;;;;;;;;;;;:::i;:::-;;;45445:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;45683:13:0;;45679:235;;45729:40;;-1:-1:-1;;;45729:40:0;;;;;;;;;;;45679:235;45872:6;45866:13;45857:6;45853:2;45849:15;45842:38;45445:480;-1:-1:-1;;;;;;45568:55:0;-1:-1:-1;;;45568:55:0;;-1:-1:-1;45445:480:0;45265:667;;;;;;:::o;1266:190::-;1391:4;1444;1415:25;1428:5;1435:4;1415:12;:25::i;:::-;:33;;1266:190;-1:-1:-1;;;;1266:190:0:o;50822:92::-;50874:13;50901:8;50894:15;;;;;:::i;3099:723::-;3155:13;3376:10;3372:53;;-1:-1:-1;;3403:10:0;;;;;;;;;;;;-1:-1:-1;;;3403:10:0;;;;;3099:723::o;3372:53::-;3450:5;3435:12;3491:78;3498:9;;3491:78;;3524:8;;;;:::i;:::-;;-1:-1:-1;3547:10:0;;-1:-1:-1;3555:2:0;3547:10;;:::i;:::-;;;3491:78;;;3579:19;3611:6;-1:-1:-1;;;;;3601:17:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;3601:17:0;;3579:39;;3629:154;3636:10;;3629:154;;3663:11;3673:1;3663:11;;:::i;:::-;;-1:-1:-1;3732:10:0;3740:2;3732:5;:10;:::i;:::-;3719:24;;:2;:24;:::i;:::-;3706:39;;3689:6;3696;3689:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;3689:56:0;;;;;;;;-1:-1:-1;3760:11:0;3769:2;3760:11;;:::i;:::-;;;3629:154;;36090:1749;36213:20;36236:13;-1:-1:-1;;;;;36264:16:0;;36260:48;;36289:19;;-1:-1:-1;;;36289:19:0;;;;;;;;;;;36260:48;36323:13;36319:44;;36345:18;;-1:-1:-1;;;36345:18:0;;;;;;;;;;;36319:44;-1:-1:-1;;;;;36714:16:0;;;;;;:12;:16;;;;;;;;:44;;-1:-1:-1;;36773:49:0;;-1:-1:-1;;;;;36714:44:0;;;;;;;36773:49;;;;-1:-1:-1;;36714:44:0;;;;;;36773:49;;;;;;;;;;;;;;;;36839:25;;;:11;:25;;;;;;:35;;-1:-1:-1;;;;;;36889:66:0;;;-1:-1:-1;;;36939:15:0;36889:66;;;;;;;;;;;;;36839:25;;37036:23;;;;6386:19;:23;37076:631;;37116:313;37147:38;;37172:12;;-1:-1:-1;;;;;37147:38:0;;;37164:1;;37147:38;;37164:1;;37147:38;37213:69;37252:1;37256:2;37260:14;;;;;;37276:5;37213:30;:69::i;:::-;37208:174;;37318:40;;-1:-1:-1;;;37318:40:0;;;;;;;;;;;37208:174;37424:3;37409:12;:18;37116:313;;37510:12;37493:13;;:29;37489:43;;37524:8;;;37489:43;37076:631;;;37573:119;37604:40;;37629:14;;;;;-1:-1:-1;;;;;37604:40:0;;;37621:1;;37604:40;;37621:1;;37604:40;37687:3;37672:12;:18;37573:119;;37076:631;-1:-1:-1;37721:13:0;:28;;;37771:60;;37804:2;37808:12;37822:8;37771:60;:::i;1818:675::-;1901:7;1944:4;1901:7;1959:497;1983:5;:12;1979:1;:16;1959:497;;;2017:20;2040:5;2046:1;2040:8;;;;;;;;:::i;:::-;;;;;;;2017:31;;2083:12;2067;:28;2063:382;;2569:13;2619:15;;;2655:4;2648:15;;;2702:4;2686:21;;2195:57;;2063:382;;;2569:13;2619:15;;;2655:4;2648:15;;;2702:4;2686:21;;2372:57;;2063:382;-1:-1:-1;1997:3:0;;;;:::i;:::-;;;;1959:497;;;-1:-1:-1;2473:12:0;1818:675;-1:-1:-1;;;1818:675:0:o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:406:1;78:5;-1:-1:-1;;;;;104:6:1;101:30;98:56;;;134:18;;:::i;:::-;172:57;217:2;196:15;;-1:-1:-1;;192:29:1;223:4;188:40;172:57;:::i;:::-;163:66;;252:6;245:5;238:21;292:3;283:6;278:3;274:16;271:25;268:45;;;309:1;306;299:12;268:45;358:6;353:3;346:4;339:5;335:16;322:43;412:1;405:4;396:6;389:5;385:18;381:29;374:40;14:406;;;;;:::o;425:173::-;493:20;;-1:-1:-1;;;;;542:31:1;;532:42;;522:70;;588:1;585;578:12;522:70;425:173;;;:::o;603:723::-;657:5;710:3;703:4;695:6;691:17;687:27;677:55;;728:1;725;718:12;677:55;764:6;751:20;790:4;-1:-1:-1;;;;;809:2:1;806:26;803:52;;;835:18;;:::i;:::-;881:2;878:1;874:10;904:28;928:2;924;920:11;904:28;:::i;:::-;966:15;;;997:12;;;;1029:15;;;1063;;;1059:24;;1056:33;-1:-1:-1;1053:53:1;;;1102:1;1099;1092:12;1053:53;1124:1;1115:10;;1134:163;1148:2;1145:1;1142:9;1134:163;;;1205:17;;1193:30;;1166:1;1159:9;;;;;1243:12;;;;1275;;1134:163;;;-1:-1:-1;1315:5:1;603:723;-1:-1:-1;;;;;;;603:723:1:o;1331:160::-;1396:20;;1452:13;;1445:21;1435:32;;1425:60;;1481:1;1478;1471:12;1496:186;1555:6;1608:2;1596:9;1587:7;1583:23;1579:32;1576:52;;;1624:1;1621;1614:12;1576:52;1647:29;1666:9;1647:29;:::i;1687:260::-;1755:6;1763;1816:2;1804:9;1795:7;1791:23;1787:32;1784:52;;;1832:1;1829;1822:12;1784:52;1855:29;1874:9;1855:29;:::i;:::-;1845:39;;1903:38;1937:2;1926:9;1922:18;1903:38;:::i;:::-;1893:48;;1687:260;;;;;:::o;1952:328::-;2029:6;2037;2045;2098:2;2086:9;2077:7;2073:23;2069:32;2066:52;;;2114:1;2111;2104:12;2066:52;2137:29;2156:9;2137:29;:::i;:::-;2127:39;;2185:38;2219:2;2208:9;2204:18;2185:38;:::i;:::-;2175:48;;2270:2;2259:9;2255:18;2242:32;2232:42;;1952:328;;;;;:::o;2285:666::-;2380:6;2388;2396;2404;2457:3;2445:9;2436:7;2432:23;2428:33;2425:53;;;2474:1;2471;2464:12;2425:53;2497:29;2516:9;2497:29;:::i;:::-;2487:39;;2545:38;2579:2;2568:9;2564:18;2545:38;:::i;:::-;2535:48;;2630:2;2619:9;2615:18;2602:32;2592:42;;2685:2;2674:9;2670:18;2657:32;-1:-1:-1;;;;;2704:6:1;2701:30;2698:50;;;2744:1;2741;2734:12;2698:50;2767:22;;2820:4;2812:13;;2808:27;-1:-1:-1;2798:55:1;;2849:1;2846;2839:12;2798:55;2872:73;2937:7;2932:2;2919:16;2914:2;2910;2906:11;2872:73;:::i;:::-;2862:83;;;2285:666;;;;;;;:::o;2956:254::-;3021:6;3029;3082:2;3070:9;3061:7;3057:23;3053:32;3050:52;;;3098:1;3095;3088:12;3050:52;3121:29;3140:9;3121:29;:::i;:::-;3111:39;;3169:35;3200:2;3189:9;3185:18;3169:35;:::i;3215:254::-;3283:6;3291;3344:2;3332:9;3323:7;3319:23;3315:32;3312:52;;;3360:1;3357;3350:12;3312:52;3383:29;3402:9;3383:29;:::i;:::-;3373:39;3459:2;3444:18;;;;3431:32;;-1:-1:-1;;;3215:254:1:o;3474:348::-;3558:6;3611:2;3599:9;3590:7;3586:23;3582:32;3579:52;;;3627:1;3624;3617:12;3579:52;3667:9;3654:23;-1:-1:-1;;;;;3692:6:1;3689:30;3686:50;;;3732:1;3729;3722:12;3686:50;3755:61;3808:7;3799:6;3788:9;3784:22;3755:61;:::i;3827:416::-;3920:6;3928;3981:2;3969:9;3960:7;3956:23;3952:32;3949:52;;;3997:1;3994;3987:12;3949:52;4037:9;4024:23;-1:-1:-1;;;;;4062:6:1;4059:30;4056:50;;;4102:1;4099;4092:12;4056:50;4125:61;4178:7;4169:6;4158:9;4154:22;4125:61;:::i;:::-;4115:71;4233:2;4218:18;;;;4205:32;;-1:-1:-1;;;;3827:416:1:o;4248:180::-;4304:6;4357:2;4345:9;4336:7;4332:23;4328:32;4325:52;;;4373:1;4370;4363:12;4325:52;4396:26;4412:9;4396:26;:::i;4433:180::-;4492:6;4545:2;4533:9;4524:7;4520:23;4516:32;4513:52;;;4561:1;4558;4551:12;4513:52;-1:-1:-1;4584:23:1;;4433:180;-1:-1:-1;4433:180:1:o;4618:245::-;4676:6;4729:2;4717:9;4708:7;4704:23;4700:32;4697:52;;;4745:1;4742;4735:12;4697:52;4784:9;4771:23;4803:30;4827:5;4803:30;:::i;4868:249::-;4937:6;4990:2;4978:9;4969:7;4965:23;4961:32;4958:52;;;5006:1;5003;4996:12;4958:52;5038:9;5032:16;5057:30;5081:5;5057:30;:::i;5122:450::-;5191:6;5244:2;5232:9;5223:7;5219:23;5215:32;5212:52;;;5260:1;5257;5250:12;5212:52;5300:9;5287:23;-1:-1:-1;;;;;5325:6:1;5322:30;5319:50;;;5365:1;5362;5355:12;5319:50;5388:22;;5441:4;5433:13;;5429:27;-1:-1:-1;5419:55:1;;5470:1;5467;5460:12;5419:55;5493:73;5558:7;5553:2;5540:16;5535:2;5531;5527:11;5493:73;:::i;5762:257::-;5803:3;5841:5;5835:12;5868:6;5863:3;5856:19;5884:63;5940:6;5933:4;5928:3;5924:14;5917:4;5910:5;5906:16;5884:63;:::i;:::-;6001:2;5980:15;-1:-1:-1;;5976:29:1;5967:39;;;;6008:4;5963:50;;5762:257;-1:-1:-1;;5762:257:1:o;6258:637::-;6538:3;6576:6;6570:13;6592:53;6638:6;6633:3;6626:4;6618:6;6614:17;6592:53;:::i;:::-;6708:13;;6667:16;;;;6730:57;6708:13;6667:16;6764:4;6752:17;;6730:57;:::i;:::-;-1:-1:-1;;;6809:20:1;;6838:22;;;6887:1;6876:13;;6258:637;-1:-1:-1;;;;6258:637:1:o;7108:488::-;-1:-1:-1;;;;;7377:15:1;;;7359:34;;7429:15;;7424:2;7409:18;;7402:43;7476:2;7461:18;;7454:34;;;7524:3;7519:2;7504:18;;7497:31;;;7302:4;;7545:45;;7570:19;;7562:6;7545:45;:::i;:::-;7537:53;7108:488;-1:-1:-1;;;;;;7108:488:1:o;7975:219::-;8124:2;8113:9;8106:21;8087:4;8144:44;8184:2;8173:9;8169:18;8161:6;8144:44;:::i;10780:342::-;10982:2;10964:21;;;11021:2;11001:18;;;10994:30;-1:-1:-1;;;11055:2:1;11040:18;;11033:48;11113:2;11098:18;;10780:342::o;11530:356::-;11732:2;11714:21;;;11751:18;;;11744:30;11810:34;11805:2;11790:18;;11783:62;11877:2;11862:18;;11530:356::o;12840:275::-;12911:2;12905:9;12976:2;12957:13;;-1:-1:-1;;12953:27:1;12941:40;;-1:-1:-1;;;;;12996:34:1;;13032:22;;;12993:62;12990:88;;;13058:18;;:::i;:::-;13094:2;13087:22;12840:275;;-1:-1:-1;12840:275:1:o;13120:128::-;13160:3;13191:1;13187:6;13184:1;13181:13;13178:39;;;13197:18;;:::i;:::-;-1:-1:-1;13233:9:1;;13120:128::o;13253:120::-;13293:1;13319;13309:35;;13324:18;;:::i;:::-;-1:-1:-1;13358:9:1;;13253:120::o;13378:168::-;13418:7;13484:1;13480;13476:6;13472:14;13469:1;13466:21;13461:1;13454:9;13447:17;13443:45;13440:71;;;13491:18;;:::i;:::-;-1:-1:-1;13531:9:1;;13378:168::o;13551:125::-;13591:4;13619:1;13616;13613:8;13610:34;;;13624:18;;:::i;:::-;-1:-1:-1;13661:9:1;;13551:125::o;13681:258::-;13753:1;13763:113;13777:6;13774:1;13771:13;13763:113;;;13853:11;;;13847:18;13834:11;;;13827:39;13799:2;13792:10;13763:113;;;13894:6;13891:1;13888:13;13885:48;;;-1:-1:-1;;13929:1:1;13911:16;;13904:27;13681:258::o;13944:380::-;14023:1;14019:12;;;;14066;;;14087:61;;14141:4;14133:6;14129:17;14119:27;;14087:61;14194:2;14186:6;14183:14;14163:18;14160:38;14157:161;;;14240:10;14235:3;14231:20;14228:1;14221:31;14275:4;14272:1;14265:15;14303:4;14300:1;14293:15;14157:161;;13944:380;;;:::o;14329:135::-;14368:3;-1:-1:-1;;14389:17:1;;14386:43;;;14409:18;;:::i;:::-;-1:-1:-1;14456:1:1;14445:13;;14329:135::o;14469:112::-;14501:1;14527;14517:35;;14532:18;;:::i;:::-;-1:-1:-1;14566:9:1;;14469:112::o;14586:127::-;14647:10;14642:3;14638:20;14635:1;14628:31;14678:4;14675:1;14668:15;14702:4;14699:1;14692:15;14718:127;14779:10;14774:3;14770:20;14767:1;14760:31;14810:4;14807:1;14800:15;14834:4;14831:1;14824:15;14850:127;14911:10;14906:3;14902:20;14899:1;14892:31;14942:4;14939:1;14932:15;14966:4;14963:1;14956:15;14982:127;15043:10;15038:3;15034:20;15031:1;15024:31;15074:4;15071:1;15064:15;15098:4;15095:1;15088:15;15114:131;-1:-1:-1;;;;;;15188:32:1;;15178:43;;15168:71;;15235:1;15232;15225:12
Swarm Source
ipfs://9c59f594b9d86ef12725e9ebfc837f57bb677bffd514ab59703f791e9fc932aa
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.