Feature Tip: Add private address tag to any address under My Name Tag !
ERC-721
Overview
Max Total Supply
888 TTAV
Holders
324
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
1 TTAVLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Source Code Verified (Exact Match)
Contract Name:
AnimeVillains
Compiler Version
v0.8.4+commit.c7e474f2
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-02-28 */ // SPDX-License-Identifier: MIT pragma solidity 0.8.4; // File: @openzeppelin/contracts/security/ReentrancyGuard.sol // OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol) /** * @dev Contract module that helps prevent reentrant calls to a function. * * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier * available, which can be applied to functions to make sure there are no nested * (reentrant) calls to them. * * Note that because there is a single `nonReentrant` guard, functions marked as * `nonReentrant` may not call one another. This can be worked around by making * those functions `private`, and then adding `external` `nonReentrant` entry * points to them. * * TIP: If you would like to learn more about reentrancy and alternative ways * to protect against it, check out our blog post * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul]. */ abstract contract ReentrancyGuard { // Booleans are more expensive than uint256 or any type that takes up a full // word because each write operation emits an extra SLOAD to first read the // slot's contents, replace the bits taken up by the boolean, and then write // back. This is the compiler's defense against contract upgrades and // pointer aliasing, and it cannot be disabled. // The values being non-zero value makes deployment a bit more expensive, // but in exchange the refund on every call to nonReentrant will be lower in // amount. Since refunds are capped to a percentage of the total // transaction's gas, it is best to keep them low in cases like this one, to // increase the likelihood of the full refund coming into effect. uint256 private constant _NOT_ENTERED = 1; uint256 private constant _ENTERED = 2; uint256 private _status; constructor() { _status = _NOT_ENTERED; } /** * @dev Prevents a contract from calling itself, directly or indirectly. * Calling a `nonReentrant` function from another `nonReentrant` * function is not supported. It is possible to prevent this from happening * by making the `nonReentrant` function external, and making it call a * `private` function that does the actual work. */ modifier nonReentrant() { // On the first call to nonReentrant, _notEntered will be true require(_status != _ENTERED, "ReentrancyGuard: reentrant call"); // Any calls to nonReentrant after this point will fail _status = _ENTERED; _; // By storing the original value once again, a refund is triggered (see // https://eips.ethereum.org/EIPS/eip-2200) _status = _NOT_ENTERED; } } // File: @openzeppelin/contracts/utils/Strings.sol // OpenZeppelin Contracts v4.4.1 (utils/Strings.sol) /** * @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/Context.sol // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) /** * @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: @openzeppelin/contracts/access/Ownable.sol // OpenZeppelin Contracts v4.4.1 (access/Ownable.sol) /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // File: @openzeppelin/contracts/utils/Address.sol // OpenZeppelin Contracts v4.4.1 (utils/Address.sol) /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; assembly { size := extcodesize(account) } return size > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } // File: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol) /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } // File: @openzeppelin/contracts/utils/introspection/IERC165.sol // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) /** * @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) /** * @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 v4.4.1 (token/ERC721/IERC721.sol) /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; } // File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Enumerable.sol) /** * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Enumerable is IERC721 { /** * @dev Returns the total amount of tokens stored by the contract. */ function totalSupply() external view returns (uint256); /** * @dev Returns a token ID owned by `owner` at a given `index` of its token list. * Use along with {balanceOf} to enumerate all of ``owner``'s tokens. */ function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256 tokenId); /** * @dev Returns a token ID at a given `index` of all the tokens stored by the contract. * Use along with {totalSupply} to enumerate all tokens. */ function tokenByIndex(uint256 index) external view returns (uint256); } // File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol) /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); } /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata and Enumerable extension. Built to optimize for lower gas during batch mints. * * Assumes serials are sequentially minted starting at 0 (e.g. 0, 1, 2, 3..). * * Does not support burning tokens to address(0). * * Assumes that an owner cannot have more than the 2**128 (max value of uint128) of supply */ error ApprovalCallerNotOwnerNorApproved(); error ApprovalQueryForNonexistentToken(); error ApproveToCaller(); error ApprovalToCurrentOwner(); error BalanceQueryForZeroAddress(); error MintedQueryForZeroAddress(); error BurnedQueryForZeroAddress(); error AuxQueryForZeroAddress(); error MintToZeroAddress(); error MintZeroQuantity(); error OwnerIndexOutOfBounds(); error OwnerQueryForNonexistentToken(); error TokenIndexOutOfBounds(); error TransferCallerNotOwnerNorApproved(); error TransferFromIncorrectOwner(); error TransferToNonERC721ReceiverImplementer(); error TransferToZeroAddress(); error URIQueryForNonexistentToken(); /** * @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 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, IERC721, IERC721Metadata { using Address for address; using Strings for uint256; // 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; } // 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_; } /** * @dev See {IERC721Enumerable-totalSupply}. */ function totalSupply() public view returns (uint256) { // Counter underflow is impossible as _burnCounter cannot be incremented // more than _currentIndex times unchecked { return _currentIndex - _burnCounter; } } /** * @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) { if (owner == address(0)) revert MintedQueryForZeroAddress(); 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) { if (owner == address(0)) revert BurnedQueryForZeroAddress(); 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) { if (owner == address(0)) revert AuxQueryForZeroAddress(); 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 { if (owner == address(0)) revert AuxQueryForZeroAddress(); _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 (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 && !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 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 (!_checkOnERC721Received(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 tokenId < _currentIndex && !_ownerships[tokenId].burned; } 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 { _mint(to, quantity, _data, true); } /** * @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, bytes memory _data, bool safe ) 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; for (uint256 i; i < quantity; i++) { emit Transfer(address(0), to, updatedIndex); if (safe && !_checkOnERC721Received(address(0), to, updatedIndex, _data)) { revert TransferToNonERC721ReceiverImplementer(); } updatedIndex++; } _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); bool isApprovedOrOwner = (_msgSender() == prevOwnership.addr || isApprovedForAll(prevOwnership.addr, _msgSender()) || getApproved(tokenId) == _msgSender()); if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved(); if (prevOwnership.addr != from) revert TransferFromIncorrectOwner(); if (to == address(0)) revert TransferToZeroAddress(); _beforeTokenTransfers(from, to, tokenId, 1); // Clear approvals from the previous owner _approve(address(0), tokenId, prevOwnership.addr); // 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; _ownerships[tokenId].addr = to; _ownerships[tokenId].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; if (_ownerships[nextTokenId].addr == address(0)) { // This will suffice for checking _exists(nextTokenId), // as a burned slot cannot contain the zero address. if (nextTokenId < _currentIndex) { _ownerships[nextTokenId].addr = prevOwnership.addr; _ownerships[nextTokenId].startTimestamp = prevOwnership.startTimestamp; } } } emit Transfer(from, to, tokenId); _afterTokenTransfers(from, to, tokenId, 1); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId) internal virtual { TokenOwnership memory prevOwnership = ownershipOf(tokenId); _beforeTokenTransfers(prevOwnership.addr, address(0), tokenId, 1); // Clear approvals from the previous owner _approve(address(0), tokenId, prevOwnership.addr); // 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[prevOwnership.addr].balance -= 1; _addressData[prevOwnership.addr].numberBurned += 1; // Keep track of who burned the token, and the timestamp of burning. _ownerships[tokenId].addr = prevOwnership.addr; _ownerships[tokenId].startTimestamp = uint64(block.timestamp); _ownerships[tokenId].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; if (_ownerships[nextTokenId].addr == address(0)) { // This will suffice for checking _exists(nextTokenId), // as a burned slot cannot contain the zero address. if (nextTokenId < _currentIndex) { _ownerships[nextTokenId].addr = prevOwnership.addr; _ownerships[nextTokenId].startTimestamp = prevOwnership.startTimestamp; } } } emit Transfer(prevOwnership.addr, address(0), tokenId); _afterTokenTransfers(prevOwnership.addr, 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 address. * The call is not executed if the target address is not a contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { if (to.isContract()) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) { return retval == IERC721Receiver(to).onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert TransferToNonERC721ReceiverImplementer(); } else { assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @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 {} } contract AnimeVillains is ERC721A, Ownable, ReentrancyGuard { using Strings for uint256; string baseURI; string public baseExtension = ".json"; string public hiddenMetadataUri; uint256 constant public whitelistCost = 0.048 ether; uint256 constant public whitelistCost2 = 0.045 ether; uint256 constant public whitelistCost3 = 0.042 ether; uint256 constant public cost = 0.058 ether; uint256 constant public cost2 = 0.055 ether; uint256 constant public cost3 = 0.052 ether; uint256 constant public maxSupply = 5555; uint256 public maxMintAmount = 20; bool public paused = true; bool public revealed = false; bool public onlyWhitelisted = true; mapping(address => bool) private _whitelist; constructor ( ) ERC721A("TTAV - Time Travelling Anime Villains", "TTAV") { setHiddenMetadataUri("ipfs://QmcwiDSApvCf7WUcQyaJMaKGCq9u5WFQZUTL2ZAzGyN2dn/hidden.json"); } // internal function _baseURI() internal view virtual override returns (string memory) { return baseURI; } // public function mint(uint256 _mintAmount) external payable nonReentrant { require(_mintAmount > 0, "MINT AT LEAST 1"); require(totalSupply() + _mintAmount <= maxSupply, "NOT ENOUGH LEFT"); if (msg.sender != owner()) { require(!paused, "PAUSED"); require(_mintAmount <= maxMintAmount, "QTY TOO HIGH"); if(onlyWhitelisted == true) { require(_whitelist[msg.sender], "UNAUTHORIZED WL"); require(_mintAmount + balanceOf(msg.sender) <= 3, "3 PER WALLET"); if (_mintAmount == 1) { require(msg.value >= whitelistCost * _mintAmount, "LOW FUNDS WL1"); } else if (_mintAmount == 2) { require(msg.value >= whitelistCost2 * _mintAmount, "LOW FUNDS WL2"); } else if (_mintAmount >= 3) { require(msg.value >= whitelistCost3 * _mintAmount, "LOW FUNDS WL3"); } } else { if (_mintAmount == 1) { require(msg.value >= cost * _mintAmount, "LOW FUNDS 1"); } else if (_mintAmount == 2) { require(msg.value >= cost2 * _mintAmount, "LOW FUNDS 2"); } else if (_mintAmount >= 3) { require(msg.value >= cost3 * _mintAmount, "LOW FUNDS 3"); } } } _safeMint(msg.sender, _mintAmount); } function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require( _exists(tokenId), "ERC721Metadata: URI query for nonexistent token" ); if(revealed == false) { return hiddenMetadataUri; } string memory currentBaseURI = _baseURI(); return bytes(currentBaseURI).length > 0 ? string(abi.encodePacked(currentBaseURI, tokenId.toString(), baseExtension)) : ""; } function walletOfOwner(address _owner) public view returns (uint256[] memory) { uint256 ownerTokenCount = balanceOf(_owner); uint256[] memory ownedTokenIds = new uint256[](ownerTokenCount); uint256 currentTokenId = 1; uint256 ownedTokenIndex = 0; while (ownedTokenIndex < ownerTokenCount && currentTokenId <= maxSupply) { address currentTokenOwner = ownerOf(currentTokenId); if (currentTokenOwner == _owner) { ownedTokenIds[ownedTokenIndex] = currentTokenId; ownedTokenIndex++; } currentTokenId++; } return ownedTokenIds; } //only owner function reveal() external onlyOwner { revealed = true; } function setmaxMintAmount(uint256 _newmaxMintAmount) public onlyOwner { maxMintAmount = _newmaxMintAmount; } function setBaseURI(string memory _newBaseURI) public onlyOwner { baseURI = _newBaseURI; } function setBaseExtension(string memory _newBaseExtension) public onlyOwner { baseExtension = _newBaseExtension; } function setHiddenMetadataUri(string memory _hiddenMetadataUri) public onlyOwner { hiddenMetadataUri = _hiddenMetadataUri; } function pause(bool _state) external onlyOwner { paused = _state; } function setOnlyWhitelisted(bool _state) external onlyOwner { onlyWhitelisted = _state; } function whiteListMany(address[] memory accounts) external onlyOwner { for (uint256 i; i < accounts.length; i++) { _whitelist[accounts[i]] = true; } } function whiteListOne(address account) external onlyOwner { _whitelist[account] = true; } function checkWhitelist(address testAddress) external view returns (bool) { if (_whitelist[testAddress] == true) { return true; } return false; } function withdraw() external payable onlyOwner { (bool os, ) = payable(owner()).call{value: address(this).balance}(""); require(os); } }
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"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"testAddress","type":"address"}],"name":"checkWhitelist","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost2","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost3","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"hiddenMetadataUri","outputs":[{"internalType":"string","name":"","type":"string"}],"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":"maxMintAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"onlyWhitelisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reveal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseExtension","type":"string"}],"name":"setBaseExtension","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_hiddenMetadataUri","type":"string"}],"name":"setHiddenMetadataUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setOnlyWhitelisted","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newmaxMintAmount","type":"uint256"}],"name":"setmaxMintAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"accounts","type":"address[]"}],"name":"whiteListMany","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"whiteListOne","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"whitelistCost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"whitelistCost2","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"whitelistCost3","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]
Contract Creation Code
60c06040526005608081905264173539b7b760d91b60a09081526200002891600b9190620001cf565b506014600d55600e805462ffffff1916620100011790553480156200004c57600080fd5b506040518060600160405280602581526020016200281c60259139604051806040016040528060048152602001632a2a20ab60e11b81525081600290805190602001906200009c929190620001cf565b508051620000b2906003906020840190620001cf565b505050620000cf620000c96200010160201b60201c565b62000105565b6001600981905550620000fb604051806080016040528060418152602001620028416041913962000157565b620002b2565b3390565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6008546001600160a01b03163314620001b65760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640160405180910390fd5b8051620001cb90600c906020840190620001cf565b5050565b828054620001dd9062000275565b90600052602060002090601f0160209004810192826200020157600085556200024c565b82601f106200021c57805160ff19168380011785556200024c565b828001600101855582156200024c579182015b828111156200024c5782518255916020019190600101906200022f565b506200025a9291506200025e565b5090565b5b808211156200025a57600081556001016200025f565b600181811c908216806200028a57607f821691505b60208210811415620002ac57634e487b7160e01b600052602260045260246000fd5b50919050565b61255a80620002c26000396000f3fe60806040526004361061025c5760003560e01c80636503b88e11610144578063a22cb465116100b6578063c87b56dd1161007a578063c87b56dd146106be578063d5abeb01146106de578063da3ef23f146106f4578063e7b99ec714610714578063e985e9c51461072f578063f2fde38b1461077857600080fd5b8063a22cb4651461063f578063a45ba8e71461065f578063a475b5dd14610674578063b88d4fde14610689578063c6682862146106a957600080fd5b806384db20681161010857806384db2068146105a35780638da5cb5b146105be57806395d89b41146105dc5780639a1b2885146105f15780639c70b5121461060c578063a0712d681461062c57600080fd5b80636503b88e1461051857806370a0823114610533578063715018a6146105535780637cd47610146105685780637f00c7a61461058357600080fd5b80633c952764116101dd57806349619f78116101a157806349619f781461045f5780634fdd43cb1461047f578063518302271461049f57806355f804b3146104be5780635c975abb146104de5780636352211e146104f857600080fd5b80633c952764146103ca5780633ccfd60b146103ea57806342842e0e146103f2578063438b63001461041257806343d675651461043f57600080fd5b806313faede61161022457806313faede61461033257806318160ddd1461035b5780631950c21814610374578063239c70ae1461039457806323b872dd146103aa57600080fd5b806301ffc9a71461026157806302329a291461029657806306fdde03146102b8578063081812fc146102da578063095ea7b314610312575b600080fd5b34801561026d57600080fd5b5061028161027c366004612158565b610798565b60405190151581526020015b60405180910390f35b3480156102a257600080fd5b506102b66102b136600461213e565b6107ea565b005b3480156102c457600080fd5b506102cd610830565b60405161028d919061235c565b3480156102e657600080fd5b506102fa6102f53660046121d5565b6108c2565b6040516001600160a01b03909116815260200161028d565b34801561031e57600080fd5b506102b661032d366004612067565b610906565b34801561033e57600080fd5b5061034d66ce0eb154f9000081565b60405190815260200161028d565b34801561036757600080fd5b506001546000540361034d565b34801561038057600080fd5b5061028161038f366004611f3f565b610994565b3480156103a057600080fd5b5061034d600d5481565b3480156103b657600080fd5b506102b66103c5366004611f8b565b6109ca565b3480156103d657600080fd5b506102b66103e536600461213e565b6109d5565b6102b6610a1b565b3480156103fe57600080fd5b506102b661040d366004611f8b565b610ab9565b34801561041e57600080fd5b5061043261042d366004611f3f565b610ad4565b60405161028d9190612318565b34801561044b57600080fd5b506102b661045a366004612090565b610bd0565b34801561046b57600080fd5b506102b661047a366004611f3f565b610c74565b34801561048b57600080fd5b506102b661049a366004612190565b610cc2565b3480156104ab57600080fd5b50600e5461028190610100900460ff1681565b3480156104ca57600080fd5b506102b66104d9366004612190565b610cff565b3480156104ea57600080fd5b50600e546102819060ff1681565b34801561050457600080fd5b506102fa6105133660046121d5565b610d3c565b34801561052457600080fd5b5061034d66b8bdb97852000081565b34801561053f57600080fd5b5061034d61054e366004611f3f565b610d4e565b34801561055f57600080fd5b506102b6610d9c565b34801561057457600080fd5b5061034d669536c70891000081565b34801561058f57600080fd5b506102b661059e3660046121d5565b610dd2565b3480156105af57600080fd5b5061034d669fdf42f6e4800081565b3480156105ca57600080fd5b506008546001600160a01b03166102fa565b3480156105e857600080fd5b506102cd610e01565b3480156105fd57600080fd5b5061034d66c3663566a5800081565b34801561061857600080fd5b50600e546102819062010000900460ff1681565b6102b661063a3660046121d5565b610e10565b34801561064b57600080fd5b506102b661065a36600461203e565b61126f565b34801561066b57600080fd5b506102cd611305565b34801561068057600080fd5b506102b6611393565b34801561069557600080fd5b506102b66106a4366004611fc6565b6113ce565b3480156106b557600080fd5b506102cd611408565b3480156106ca57600080fd5b506102cd6106d93660046121d5565b611415565b3480156106ea57600080fd5b5061034d6115b381565b34801561070057600080fd5b506102b661070f366004612190565b611584565b34801561072057600080fd5b5061034d66aa87bee538000081565b34801561073b57600080fd5b5061028161074a366004611f59565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561078457600080fd5b506102b6610793366004611f3f565b6115c1565b60006001600160e01b031982166380ac58cd60e01b14806107c957506001600160e01b03198216635b5e139f60e01b145b806107e457506301ffc9a760e01b6001600160e01b03198316145b92915050565b6008546001600160a01b0316331461081d5760405162461bcd60e51b81526004016108149061236f565b60405180910390fd5b600e805460ff1916911515919091179055565b60606002805461083f90612462565b80601f016020809104026020016040519081016040528092919081815260200182805461086b90612462565b80156108b85780601f1061088d576101008083540402835291602001916108b8565b820191906000526020600020905b81548152906001019060200180831161089b57829003601f168201915b5050505050905090565b60006108cd82611659565b6108ea576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600061091182610d3c565b9050806001600160a01b0316836001600160a01b031614156109465760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b038216148015906109665750610964813361074a565b155b15610984576040516367d9dca160e11b815260040160405180910390fd5b61098f838383611684565b505050565b6001600160a01b0381166000908152600f602052604081205460ff161515600114156109c257506001919050565b506000919050565b61098f8383836116e0565b6008546001600160a01b031633146109ff5760405162461bcd60e51b81526004016108149061236f565b600e8054911515620100000262ff000019909216919091179055565b6008546001600160a01b03163314610a455760405162461bcd60e51b81526004016108149061236f565b6000610a596008546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d8060008114610aa3576040519150601f19603f3d011682016040523d82523d6000602084013e610aa8565b606091505b5050905080610ab657600080fd5b50565b61098f838383604051806020016040528060008152506113ce565b60606000610ae183610d4e565b90506000816001600160401b03811115610b0b57634e487b7160e01b600052604160045260246000fd5b604051908082528060200260200182016040528015610b34578160200160208202803683370190505b509050600160005b8381108015610b4d57506115b38211155b15610bc6576000610b5d83610d3c565b9050866001600160a01b0316816001600160a01b03161415610bb35782848381518110610b9a57634e487b7160e01b600052603260045260246000fd5b602090810291909101015281610baf8161249d565b9250505b82610bbd8161249d565b93505050610b3c565b5090949350505050565b6008546001600160a01b03163314610bfa5760405162461bcd60e51b81526004016108149061236f565b60005b8151811015610c70576001600f6000848481518110610c2c57634e487b7160e01b600052603260045260246000fd5b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff191691151591909117905580610c688161249d565b915050610bfd565b5050565b6008546001600160a01b03163314610c9e5760405162461bcd60e51b81526004016108149061236f565b6001600160a01b03166000908152600f60205260409020805460ff19166001179055565b6008546001600160a01b03163314610cec5760405162461bcd60e51b81526004016108149061236f565b8051610c7090600c906020840190611e23565b6008546001600160a01b03163314610d295760405162461bcd60e51b81526004016108149061236f565b8051610c7090600a906020840190611e23565b6000610d47826118f4565b5192915050565b60006001600160a01b038216610d77576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600560205260409020546001600160401b031690565b6008546001600160a01b03163314610dc65760405162461bcd60e51b81526004016108149061236f565b610dd06000611a0d565b565b6008546001600160a01b03163314610dfc5760405162461bcd60e51b81526004016108149061236f565b600d55565b60606003805461083f90612462565b60026009541415610e635760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610814565b600260095580610ea75760405162461bcd60e51b815260206004820152600f60248201526e4d494e54204154204c45415354203160881b6044820152606401610814565b6115b381610eb86001546000540390565b610ec291906123d4565b1115610f025760405162461bcd60e51b815260206004820152600f60248201526e1393d508115393d551d20813115195608a1b6044820152606401610814565b6008546001600160a01b0316331461125d57600e5460ff1615610f505760405162461bcd60e51b815260206004820152600660248201526514105554d15160d21b6044820152606401610814565b600d54811115610f915760405162461bcd60e51b815260206004820152600c60248201526b0a2a8b240a89e9e4090928e960a31b6044820152606401610814565b600e5462010000900460ff1615156001141561115957336000908152600f602052604090205460ff16610ff85760405162461bcd60e51b815260206004820152600f60248201526e15539055551213d4925691510815d3608a1b6044820152606401610814565b600361100333610d4e565b61100d90836123d4565b111561104a5760405162461bcd60e51b815260206004820152600c60248201526b0cc81411548815d05313115560a21b6044820152606401610814565b80600114156110a8576110648166aa87bee5380000612400565b3410156110a35760405162461bcd60e51b815260206004820152600d60248201526c4c4f572046554e445320574c3160981b6044820152606401610814565b61125d565b8060021415611101576110c281669fdf42f6e48000612400565b3410156110a35760405162461bcd60e51b815260206004820152600d60248201526c2627ab90232aa72229902ba61960991b6044820152606401610814565b600381106110a35761111a81669536c708910000612400565b3410156110a35760405162461bcd60e51b815260206004820152600d60248201526c4c4f572046554e445320574c3360981b6044820152606401610814565b80600114156111b0576111738166ce0eb154f90000612400565b3410156110a35760405162461bcd60e51b815260206004820152600b60248201526a4c4f572046554e4453203160a81b6044820152606401610814565b8060021415611207576111ca8166c3663566a58000612400565b3410156110a35760405162461bcd60e51b815260206004820152600b60248201526a2627ab90232aa72229901960a91b6044820152606401610814565b6003811061125d576112208166b8bdb978520000612400565b34101561125d5760405162461bcd60e51b815260206004820152600b60248201526a4c4f572046554e4453203360a81b6044820152606401610814565b6112673382611a5f565b506001600955565b6001600160a01b0382163314156112995760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600c805461131290612462565b80601f016020809104026020016040519081016040528092919081815260200182805461133e90612462565b801561138b5780601f106113605761010080835404028352916020019161138b565b820191906000526020600020905b81548152906001019060200180831161136e57829003601f168201915b505050505081565b6008546001600160a01b031633146113bd5760405162461bcd60e51b81526004016108149061236f565b600e805461ff001916610100179055565b6113d98484846116e0565b6113e584848484611a79565b611402576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b600b805461131290612462565b606061142082611659565b6114845760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610814565b600e54610100900460ff1661152557600c80546114a090612462565b80601f01602080910402602001604051908101604052809291908181526020018280546114cc90612462565b80156115195780601f106114ee57610100808354040283529160200191611519565b820191906000526020600020905b8154815290600101906020018083116114fc57829003601f168201915b50505050509050919050565b600061152f611b88565b9050600081511161154f576040518060200160405280600081525061157d565b8061155984611b97565b600b60405160200161156d93929190612219565b6040516020818303038152906040525b9392505050565b6008546001600160a01b031633146115ae5760405162461bcd60e51b81526004016108149061236f565b8051610c7090600b906020840190611e23565b6008546001600160a01b031633146115eb5760405162461bcd60e51b81526004016108149061236f565b6001600160a01b0381166116505760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610814565b610ab681611a0d565b60008054821080156107e4575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60006116eb826118f4565b80519091506000906001600160a01b0316336001600160a01b0316148061171957508151611719903361074a565b80611734575033611729846108c2565b6001600160a01b0316145b90508061175457604051632ce44b5f60e11b815260040160405180910390fd5b846001600160a01b031682600001516001600160a01b0316146117895760405162a1148160e81b815260040160405180910390fd5b6001600160a01b0384166117b057604051633a954ecd60e21b815260040160405180910390fd5b6117c06000848460000151611684565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff198082166001600160401b0392831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b4290921691909102179092559086018083529120549091166118aa576000548110156118aa57825160008281526004602090815260409091208054918601516001600160401b0316600160a01b026001600160e01b03199092166001600160a01b03909316929092171790555b5082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b60408051606081018252600080825260208201819052918101829052905482908110156119f457600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff161515918101829052906119f25780516001600160a01b031615611989579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b82046001600160401b031693830193909352600160e01b900460ff16151592810192909252156119ed579392505050565b611989565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b610c70828260405180602001604052806000815250611cb0565b60006001600160a01b0384163b15611b7c57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611abd9033908990889088906004016122db565b602060405180830381600087803b158015611ad757600080fd5b505af1925050508015611b07575060408051601f3d908101601f19168201909252611b0491810190612174565b60015b611b62573d808015611b35576040519150601f19603f3d011682016040523d82523d6000602084013e611b3a565b606091505b508051611b5a576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611b80565b5060015b949350505050565b6060600a805461083f90612462565b606081611bbb5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611be55780611bcf8161249d565b9150611bde9050600a836123ec565b9150611bbf565b6000816001600160401b03811115611c0d57634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611c37576020820181803683370190505b5090505b8415611b8057611c4c60018361241f565b9150611c59600a866124b8565b611c649060306123d4565b60f81b818381518110611c8757634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350611ca9600a866123ec565b9450611c3b565b61098f83838360016000546001600160a01b038516611ce157604051622e076360e81b815260040160405180910390fd5b83611cff5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff1981166001600160401b038083168c0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168c018116909202179091558584526004909252822080546001600160e01b031916909317600160a01b42909216919091021790915581905b85811015611e1a5760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4838015611df05750611dee6000888488611a79565b155b15611e0e576040516368d2bf6b60e11b815260040160405180910390fd5b60019182019101611d99565b506000556118ed565b828054611e2f90612462565b90600052602060002090601f016020900481019282611e515760008555611e97565b82601f10611e6a57805160ff1916838001178555611e97565b82800160010185558215611e97579182015b82811115611e97578251825591602001919060010190611e7c565b50611ea3929150611ea7565b5090565b5b80821115611ea35760008155600101611ea8565b60006001600160401b03831115611ed557611ed56124f8565b611ee8601f8401601f19166020016123a4565b9050828152838383011115611efc57600080fd5b828260208301376000602084830101529392505050565b80356001600160a01b0381168114611f2a57600080fd5b919050565b80358015158114611f2a57600080fd5b600060208284031215611f50578081fd5b61157d82611f13565b60008060408385031215611f6b578081fd5b611f7483611f13565b9150611f8260208401611f13565b90509250929050565b600080600060608486031215611f9f578081fd5b611fa884611f13565b9250611fb660208501611f13565b9150604084013590509250925092565b60008060008060808587031215611fdb578081fd5b611fe485611f13565b9350611ff260208601611f13565b92506040850135915060608501356001600160401b03811115612013578182fd5b8501601f81018713612023578182fd5b61203287823560208401611ebc565b91505092959194509250565b60008060408385031215612050578182fd5b61205983611f13565b9150611f8260208401611f2f565b60008060408385031215612079578182fd5b61208283611f13565b946020939093013593505050565b600060208083850312156120a2578182fd5b82356001600160401b03808211156120b8578384fd5b818501915085601f8301126120cb578384fd5b8135818111156120dd576120dd6124f8565b8060051b91506120ee8483016123a4565b8181528481019084860184860187018a1015612108578788fd5b8795505b838610156121315761211d81611f13565b83526001959095019491860191860161210c565b5098975050505050505050565b60006020828403121561214f578081fd5b61157d82611f2f565b600060208284031215612169578081fd5b813561157d8161250e565b600060208284031215612185578081fd5b815161157d8161250e565b6000602082840312156121a1578081fd5b81356001600160401b038111156121b6578182fd5b8201601f810184136121c6578182fd5b611b8084823560208401611ebc565b6000602082840312156121e6578081fd5b5035919050565b60008151808452612205816020860160208601612436565b601f01601f19169290920160200192915050565b60008451602061222c8285838a01612436565b85519184019161223f8184848a01612436565b85549201918390600181811c908083168061225b57607f831692505b85831081141561227957634e487b7160e01b88526022600452602488fd5b80801561228d576001811461229e576122ca565b60ff198516885283880195506122ca565b60008b815260209020895b858110156122c25781548a8201529084019088016122a9565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061230e908301846121ed565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b8181101561235057835183529284019291840191600101612334565b50909695505050505050565b60208152600061157d60208301846121ed565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b604051601f8201601f191681016001600160401b03811182821017156123cc576123cc6124f8565b604052919050565b600082198211156123e7576123e76124cc565b500190565b6000826123fb576123fb6124e2565b500490565b600081600019048311821515161561241a5761241a6124cc565b500290565b600082821015612431576124316124cc565b500390565b60005b83811015612451578181015183820152602001612439565b838111156114025750506000910152565b600181811c9082168061247657607f821691505b6020821081141561249757634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156124b1576124b16124cc565b5060010190565b6000826124c7576124c76124e2565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610ab657600080fdfea2646970667358221220acc1502e1d8c8ee99aee7b4d268e69107581a25ee4506aaf36b8587466cbd0a864736f6c6343000804003354544156202d2054696d652054726176656c6c696e6720416e696d652056696c6c61696e73697066733a2f2f516d63776944534170764366375755635179614a4d614b4743713975355746515a55544c325a417a47794e32646e2f68696464656e2e6a736f6e
Deployed Bytecode
0x60806040526004361061025c5760003560e01c80636503b88e11610144578063a22cb465116100b6578063c87b56dd1161007a578063c87b56dd146106be578063d5abeb01146106de578063da3ef23f146106f4578063e7b99ec714610714578063e985e9c51461072f578063f2fde38b1461077857600080fd5b8063a22cb4651461063f578063a45ba8e71461065f578063a475b5dd14610674578063b88d4fde14610689578063c6682862146106a957600080fd5b806384db20681161010857806384db2068146105a35780638da5cb5b146105be57806395d89b41146105dc5780639a1b2885146105f15780639c70b5121461060c578063a0712d681461062c57600080fd5b80636503b88e1461051857806370a0823114610533578063715018a6146105535780637cd47610146105685780637f00c7a61461058357600080fd5b80633c952764116101dd57806349619f78116101a157806349619f781461045f5780634fdd43cb1461047f578063518302271461049f57806355f804b3146104be5780635c975abb146104de5780636352211e146104f857600080fd5b80633c952764146103ca5780633ccfd60b146103ea57806342842e0e146103f2578063438b63001461041257806343d675651461043f57600080fd5b806313faede61161022457806313faede61461033257806318160ddd1461035b5780631950c21814610374578063239c70ae1461039457806323b872dd146103aa57600080fd5b806301ffc9a71461026157806302329a291461029657806306fdde03146102b8578063081812fc146102da578063095ea7b314610312575b600080fd5b34801561026d57600080fd5b5061028161027c366004612158565b610798565b60405190151581526020015b60405180910390f35b3480156102a257600080fd5b506102b66102b136600461213e565b6107ea565b005b3480156102c457600080fd5b506102cd610830565b60405161028d919061235c565b3480156102e657600080fd5b506102fa6102f53660046121d5565b6108c2565b6040516001600160a01b03909116815260200161028d565b34801561031e57600080fd5b506102b661032d366004612067565b610906565b34801561033e57600080fd5b5061034d66ce0eb154f9000081565b60405190815260200161028d565b34801561036757600080fd5b506001546000540361034d565b34801561038057600080fd5b5061028161038f366004611f3f565b610994565b3480156103a057600080fd5b5061034d600d5481565b3480156103b657600080fd5b506102b66103c5366004611f8b565b6109ca565b3480156103d657600080fd5b506102b66103e536600461213e565b6109d5565b6102b6610a1b565b3480156103fe57600080fd5b506102b661040d366004611f8b565b610ab9565b34801561041e57600080fd5b5061043261042d366004611f3f565b610ad4565b60405161028d9190612318565b34801561044b57600080fd5b506102b661045a366004612090565b610bd0565b34801561046b57600080fd5b506102b661047a366004611f3f565b610c74565b34801561048b57600080fd5b506102b661049a366004612190565b610cc2565b3480156104ab57600080fd5b50600e5461028190610100900460ff1681565b3480156104ca57600080fd5b506102b66104d9366004612190565b610cff565b3480156104ea57600080fd5b50600e546102819060ff1681565b34801561050457600080fd5b506102fa6105133660046121d5565b610d3c565b34801561052457600080fd5b5061034d66b8bdb97852000081565b34801561053f57600080fd5b5061034d61054e366004611f3f565b610d4e565b34801561055f57600080fd5b506102b6610d9c565b34801561057457600080fd5b5061034d669536c70891000081565b34801561058f57600080fd5b506102b661059e3660046121d5565b610dd2565b3480156105af57600080fd5b5061034d669fdf42f6e4800081565b3480156105ca57600080fd5b506008546001600160a01b03166102fa565b3480156105e857600080fd5b506102cd610e01565b3480156105fd57600080fd5b5061034d66c3663566a5800081565b34801561061857600080fd5b50600e546102819062010000900460ff1681565b6102b661063a3660046121d5565b610e10565b34801561064b57600080fd5b506102b661065a36600461203e565b61126f565b34801561066b57600080fd5b506102cd611305565b34801561068057600080fd5b506102b6611393565b34801561069557600080fd5b506102b66106a4366004611fc6565b6113ce565b3480156106b557600080fd5b506102cd611408565b3480156106ca57600080fd5b506102cd6106d93660046121d5565b611415565b3480156106ea57600080fd5b5061034d6115b381565b34801561070057600080fd5b506102b661070f366004612190565b611584565b34801561072057600080fd5b5061034d66aa87bee538000081565b34801561073b57600080fd5b5061028161074a366004611f59565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561078457600080fd5b506102b6610793366004611f3f565b6115c1565b60006001600160e01b031982166380ac58cd60e01b14806107c957506001600160e01b03198216635b5e139f60e01b145b806107e457506301ffc9a760e01b6001600160e01b03198316145b92915050565b6008546001600160a01b0316331461081d5760405162461bcd60e51b81526004016108149061236f565b60405180910390fd5b600e805460ff1916911515919091179055565b60606002805461083f90612462565b80601f016020809104026020016040519081016040528092919081815260200182805461086b90612462565b80156108b85780601f1061088d576101008083540402835291602001916108b8565b820191906000526020600020905b81548152906001019060200180831161089b57829003601f168201915b5050505050905090565b60006108cd82611659565b6108ea576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600061091182610d3c565b9050806001600160a01b0316836001600160a01b031614156109465760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b038216148015906109665750610964813361074a565b155b15610984576040516367d9dca160e11b815260040160405180910390fd5b61098f838383611684565b505050565b6001600160a01b0381166000908152600f602052604081205460ff161515600114156109c257506001919050565b506000919050565b61098f8383836116e0565b6008546001600160a01b031633146109ff5760405162461bcd60e51b81526004016108149061236f565b600e8054911515620100000262ff000019909216919091179055565b6008546001600160a01b03163314610a455760405162461bcd60e51b81526004016108149061236f565b6000610a596008546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d8060008114610aa3576040519150601f19603f3d011682016040523d82523d6000602084013e610aa8565b606091505b5050905080610ab657600080fd5b50565b61098f838383604051806020016040528060008152506113ce565b60606000610ae183610d4e565b90506000816001600160401b03811115610b0b57634e487b7160e01b600052604160045260246000fd5b604051908082528060200260200182016040528015610b34578160200160208202803683370190505b509050600160005b8381108015610b4d57506115b38211155b15610bc6576000610b5d83610d3c565b9050866001600160a01b0316816001600160a01b03161415610bb35782848381518110610b9a57634e487b7160e01b600052603260045260246000fd5b602090810291909101015281610baf8161249d565b9250505b82610bbd8161249d565b93505050610b3c565b5090949350505050565b6008546001600160a01b03163314610bfa5760405162461bcd60e51b81526004016108149061236f565b60005b8151811015610c70576001600f6000848481518110610c2c57634e487b7160e01b600052603260045260246000fd5b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff191691151591909117905580610c688161249d565b915050610bfd565b5050565b6008546001600160a01b03163314610c9e5760405162461bcd60e51b81526004016108149061236f565b6001600160a01b03166000908152600f60205260409020805460ff19166001179055565b6008546001600160a01b03163314610cec5760405162461bcd60e51b81526004016108149061236f565b8051610c7090600c906020840190611e23565b6008546001600160a01b03163314610d295760405162461bcd60e51b81526004016108149061236f565b8051610c7090600a906020840190611e23565b6000610d47826118f4565b5192915050565b60006001600160a01b038216610d77576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600560205260409020546001600160401b031690565b6008546001600160a01b03163314610dc65760405162461bcd60e51b81526004016108149061236f565b610dd06000611a0d565b565b6008546001600160a01b03163314610dfc5760405162461bcd60e51b81526004016108149061236f565b600d55565b60606003805461083f90612462565b60026009541415610e635760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610814565b600260095580610ea75760405162461bcd60e51b815260206004820152600f60248201526e4d494e54204154204c45415354203160881b6044820152606401610814565b6115b381610eb86001546000540390565b610ec291906123d4565b1115610f025760405162461bcd60e51b815260206004820152600f60248201526e1393d508115393d551d20813115195608a1b6044820152606401610814565b6008546001600160a01b0316331461125d57600e5460ff1615610f505760405162461bcd60e51b815260206004820152600660248201526514105554d15160d21b6044820152606401610814565b600d54811115610f915760405162461bcd60e51b815260206004820152600c60248201526b0a2a8b240a89e9e4090928e960a31b6044820152606401610814565b600e5462010000900460ff1615156001141561115957336000908152600f602052604090205460ff16610ff85760405162461bcd60e51b815260206004820152600f60248201526e15539055551213d4925691510815d3608a1b6044820152606401610814565b600361100333610d4e565b61100d90836123d4565b111561104a5760405162461bcd60e51b815260206004820152600c60248201526b0cc81411548815d05313115560a21b6044820152606401610814565b80600114156110a8576110648166aa87bee5380000612400565b3410156110a35760405162461bcd60e51b815260206004820152600d60248201526c4c4f572046554e445320574c3160981b6044820152606401610814565b61125d565b8060021415611101576110c281669fdf42f6e48000612400565b3410156110a35760405162461bcd60e51b815260206004820152600d60248201526c2627ab90232aa72229902ba61960991b6044820152606401610814565b600381106110a35761111a81669536c708910000612400565b3410156110a35760405162461bcd60e51b815260206004820152600d60248201526c4c4f572046554e445320574c3360981b6044820152606401610814565b80600114156111b0576111738166ce0eb154f90000612400565b3410156110a35760405162461bcd60e51b815260206004820152600b60248201526a4c4f572046554e4453203160a81b6044820152606401610814565b8060021415611207576111ca8166c3663566a58000612400565b3410156110a35760405162461bcd60e51b815260206004820152600b60248201526a2627ab90232aa72229901960a91b6044820152606401610814565b6003811061125d576112208166b8bdb978520000612400565b34101561125d5760405162461bcd60e51b815260206004820152600b60248201526a4c4f572046554e4453203360a81b6044820152606401610814565b6112673382611a5f565b506001600955565b6001600160a01b0382163314156112995760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600c805461131290612462565b80601f016020809104026020016040519081016040528092919081815260200182805461133e90612462565b801561138b5780601f106113605761010080835404028352916020019161138b565b820191906000526020600020905b81548152906001019060200180831161136e57829003601f168201915b505050505081565b6008546001600160a01b031633146113bd5760405162461bcd60e51b81526004016108149061236f565b600e805461ff001916610100179055565b6113d98484846116e0565b6113e584848484611a79565b611402576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b600b805461131290612462565b606061142082611659565b6114845760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610814565b600e54610100900460ff1661152557600c80546114a090612462565b80601f01602080910402602001604051908101604052809291908181526020018280546114cc90612462565b80156115195780601f106114ee57610100808354040283529160200191611519565b820191906000526020600020905b8154815290600101906020018083116114fc57829003601f168201915b50505050509050919050565b600061152f611b88565b9050600081511161154f576040518060200160405280600081525061157d565b8061155984611b97565b600b60405160200161156d93929190612219565b6040516020818303038152906040525b9392505050565b6008546001600160a01b031633146115ae5760405162461bcd60e51b81526004016108149061236f565b8051610c7090600b906020840190611e23565b6008546001600160a01b031633146115eb5760405162461bcd60e51b81526004016108149061236f565b6001600160a01b0381166116505760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610814565b610ab681611a0d565b60008054821080156107e4575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60006116eb826118f4565b80519091506000906001600160a01b0316336001600160a01b0316148061171957508151611719903361074a565b80611734575033611729846108c2565b6001600160a01b0316145b90508061175457604051632ce44b5f60e11b815260040160405180910390fd5b846001600160a01b031682600001516001600160a01b0316146117895760405162a1148160e81b815260040160405180910390fd5b6001600160a01b0384166117b057604051633a954ecd60e21b815260040160405180910390fd5b6117c06000848460000151611684565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff198082166001600160401b0392831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b4290921691909102179092559086018083529120549091166118aa576000548110156118aa57825160008281526004602090815260409091208054918601516001600160401b0316600160a01b026001600160e01b03199092166001600160a01b03909316929092171790555b5082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b60408051606081018252600080825260208201819052918101829052905482908110156119f457600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff161515918101829052906119f25780516001600160a01b031615611989579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b82046001600160401b031693830193909352600160e01b900460ff16151592810192909252156119ed579392505050565b611989565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b610c70828260405180602001604052806000815250611cb0565b60006001600160a01b0384163b15611b7c57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611abd9033908990889088906004016122db565b602060405180830381600087803b158015611ad757600080fd5b505af1925050508015611b07575060408051601f3d908101601f19168201909252611b0491810190612174565b60015b611b62573d808015611b35576040519150601f19603f3d011682016040523d82523d6000602084013e611b3a565b606091505b508051611b5a576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611b80565b5060015b949350505050565b6060600a805461083f90612462565b606081611bbb5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611be55780611bcf8161249d565b9150611bde9050600a836123ec565b9150611bbf565b6000816001600160401b03811115611c0d57634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611c37576020820181803683370190505b5090505b8415611b8057611c4c60018361241f565b9150611c59600a866124b8565b611c649060306123d4565b60f81b818381518110611c8757634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350611ca9600a866123ec565b9450611c3b565b61098f83838360016000546001600160a01b038516611ce157604051622e076360e81b815260040160405180910390fd5b83611cff5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff1981166001600160401b038083168c0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168c018116909202179091558584526004909252822080546001600160e01b031916909317600160a01b42909216919091021790915581905b85811015611e1a5760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4838015611df05750611dee6000888488611a79565b155b15611e0e576040516368d2bf6b60e11b815260040160405180910390fd5b60019182019101611d99565b506000556118ed565b828054611e2f90612462565b90600052602060002090601f016020900481019282611e515760008555611e97565b82601f10611e6a57805160ff1916838001178555611e97565b82800160010185558215611e97579182015b82811115611e97578251825591602001919060010190611e7c565b50611ea3929150611ea7565b5090565b5b80821115611ea35760008155600101611ea8565b60006001600160401b03831115611ed557611ed56124f8565b611ee8601f8401601f19166020016123a4565b9050828152838383011115611efc57600080fd5b828260208301376000602084830101529392505050565b80356001600160a01b0381168114611f2a57600080fd5b919050565b80358015158114611f2a57600080fd5b600060208284031215611f50578081fd5b61157d82611f13565b60008060408385031215611f6b578081fd5b611f7483611f13565b9150611f8260208401611f13565b90509250929050565b600080600060608486031215611f9f578081fd5b611fa884611f13565b9250611fb660208501611f13565b9150604084013590509250925092565b60008060008060808587031215611fdb578081fd5b611fe485611f13565b9350611ff260208601611f13565b92506040850135915060608501356001600160401b03811115612013578182fd5b8501601f81018713612023578182fd5b61203287823560208401611ebc565b91505092959194509250565b60008060408385031215612050578182fd5b61205983611f13565b9150611f8260208401611f2f565b60008060408385031215612079578182fd5b61208283611f13565b946020939093013593505050565b600060208083850312156120a2578182fd5b82356001600160401b03808211156120b8578384fd5b818501915085601f8301126120cb578384fd5b8135818111156120dd576120dd6124f8565b8060051b91506120ee8483016123a4565b8181528481019084860184860187018a1015612108578788fd5b8795505b838610156121315761211d81611f13565b83526001959095019491860191860161210c565b5098975050505050505050565b60006020828403121561214f578081fd5b61157d82611f2f565b600060208284031215612169578081fd5b813561157d8161250e565b600060208284031215612185578081fd5b815161157d8161250e565b6000602082840312156121a1578081fd5b81356001600160401b038111156121b6578182fd5b8201601f810184136121c6578182fd5b611b8084823560208401611ebc565b6000602082840312156121e6578081fd5b5035919050565b60008151808452612205816020860160208601612436565b601f01601f19169290920160200192915050565b60008451602061222c8285838a01612436565b85519184019161223f8184848a01612436565b85549201918390600181811c908083168061225b57607f831692505b85831081141561227957634e487b7160e01b88526022600452602488fd5b80801561228d576001811461229e576122ca565b60ff198516885283880195506122ca565b60008b815260209020895b858110156122c25781548a8201529084019088016122a9565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061230e908301846121ed565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b8181101561235057835183529284019291840191600101612334565b50909695505050505050565b60208152600061157d60208301846121ed565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b604051601f8201601f191681016001600160401b03811182821017156123cc576123cc6124f8565b604052919050565b600082198211156123e7576123e76124cc565b500190565b6000826123fb576123fb6124e2565b500490565b600081600019048311821515161561241a5761241a6124cc565b500290565b600082821015612431576124316124cc565b500390565b60005b83811015612451578181015183820152602001612439565b838111156114025750506000910152565b600181811c9082168061247657607f821691505b6020821081141561249757634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156124b1576124b16124cc565b5060010190565b6000826124c7576124c76124e2565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610ab657600080fdfea2646970667358221220acc1502e1d8c8ee99aee7b4d268e69107581a25ee4506aaf36b8587466cbd0a864736f6c63430008040033
Deployed Bytecode Sourcemap
47238:4998:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30034:305;;;;;;;;;;-1:-1:-1;30034:305:0;;;;;:::i;:::-;;:::i;:::-;;;8752:14:1;;8745:22;8727:41;;8715:2;8700:18;30034:305:0;;;;;;;;51424:75;;;;;;;;;;-1:-1:-1;51424:75:0;;;;;:::i;:::-;;:::i;:::-;;33394:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;34897:204::-;;;;;;;;;;-1:-1:-1;34897:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;7410:32:1;;;7392:51;;7380:2;7365:18;34897:204:0;7347:102:1;34460:371:0;;;;;;;;;;-1:-1:-1;34460:371:0;;;;;:::i;:::-;;:::i;47605:42::-;;;;;;;;;;;;47636:11;47605:42;;;;;14787:25:1;;;14775:2;14760:18;47605:42:0;14742:76:1;29691:271:0;;;;;;;;;;-1:-1:-1;29927:12:0;;29735:7;29911:13;:28;29691:271;;51913:166;;;;;;;;;;-1:-1:-1;51913:166:0;;;;;:::i;:::-;;:::i;47793:33::-;;;;;;;;;;;;;;;;35754:170;;;;;;;;;;-1:-1:-1;35754:170:0;;;;;:::i;:::-;;:::i;51511:97::-;;;;;;;;;;-1:-1:-1;51511:97:0;;;;;:::i;:::-;;:::i;52086:147::-;;;:::i;35995:185::-;;;;;;;;;;-1:-1:-1;35995:185:0;;;;;:::i;:::-;;:::i;50198:635::-;;;;;;;;;;-1:-1:-1;50198:635:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;51616:184::-;;;;;;;;;;-1:-1:-1;51616:184:0;;;;;:::i;:::-;;:::i;51806:101::-;;;;;;;;;;-1:-1:-1;51806:101:0;;;;;:::i;:::-;;:::i;51286:132::-;;;;;;;;;;-1:-1:-1;51286:132:0;;;;;:::i;:::-;;:::i;47861:28::-;;;;;;;;;;-1:-1:-1;47861:28:0;;;;;;;;;;;51054:98;;;;;;;;;;-1:-1:-1;51054:98:0;;;;;:::i;:::-;;:::i;47831:25::-;;;;;;;;;;-1:-1:-1;47831:25:0;;;;;;;;33203:124;;;;;;;;;;-1:-1:-1;33203:124:0;;;;;:::i;:::-;;:::i;47700:43::-;;;;;;;;;;;;47732:11;47700:43;;30403:206;;;;;;;;;;-1:-1:-1;30403:206:0;;;;;:::i;:::-;;:::i;7454:103::-;;;;;;;;;;;;;:::i;47547:53::-;;;;;;;;;;;;47588:12;47547:53;;50932:116;;;;;;;;;;-1:-1:-1;50932:116:0;;;;;:::i;:::-;;:::i;47490:52::-;;;;;;;;;;;;47531:11;47490:52;;6803:87;;;;;;;;;;-1:-1:-1;6876:6:0;;-1:-1:-1;;;;;6876:6:0;6803:87;;33563:104;;;;;;;;;;;;;:::i;47652:43::-;;;;;;;;;;;;47684:11;47652:43;;47894:34;;;;;;;;;;-1:-1:-1;47894:34:0;;;;;;;;;;;48305:1377;;;;;;:::i;:::-;;:::i;35173:279::-;;;;;;;;;;-1:-1:-1;35173:279:0;;;;;:::i;:::-;;:::i;47398:31::-;;;;;;;;;;;;;:::i;50855:67::-;;;;;;;;;;;;;:::i;36251:342::-;;;;;;;;;;-1:-1:-1;36251:342:0;;;;;:::i;:::-;;:::i;47356:37::-;;;;;;;;;;;;;:::i;49692:500::-;;;;;;;;;;-1:-1:-1;49692:500:0;;;;;:::i;:::-;;:::i;47748:40::-;;;;;;;;;;;;47784:4;47748:40;;51158:122;;;;;;;;;;-1:-1:-1;51158:122:0;;;;;:::i;:::-;;:::i;47434:51::-;;;;;;;;;;;;47474:11;47434:51;;35523:164;;;;;;;;;;-1:-1:-1;35523:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;35644:25:0;;;35620:4;35644:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;35523:164;7712:201;;;;;;;;;;-1:-1:-1;7712:201:0;;;;;:::i;:::-;;:::i;30034:305::-;30136:4;-1:-1:-1;;;;;;30173:40:0;;-1:-1:-1;;;30173:40:0;;:105;;-1:-1:-1;;;;;;;30230:48:0;;-1:-1:-1;;;30230:48:0;30173:105;:158;;;-1:-1:-1;;;;;;;;;;19244:40:0;;;30295:36;30153:178;30034:305;-1:-1:-1;;30034:305:0:o;51424:75::-;6876:6;;-1:-1:-1;;;;;6876:6:0;5630:10;7023:23;7015:68;;;;-1:-1:-1;;;7015:68:0;;;;;;;:::i;:::-;;;;;;;;;51478:6:::1;:15:::0;;-1:-1:-1;;51478:15:0::1;::::0;::::1;;::::0;;;::::1;::::0;;51424:75::o;33394:100::-;33448:13;33481:5;33474:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33394:100;:::o;34897:204::-;34965:7;34990:16;34998:7;34990;:16::i;:::-;34985:64;;35015:34;;-1:-1:-1;;;35015:34:0;;;;;;;;;;;34985:64;-1:-1:-1;35069:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;35069:24:0;;34897:204::o;34460:371::-;34533:13;34549:24;34565:7;34549:15;:24::i;:::-;34533:40;;34594:5;-1:-1:-1;;;;;34588:11:0;:2;-1:-1:-1;;;;;34588:11:0;;34584:48;;;34608:24;;-1:-1:-1;;;34608:24:0;;;;;;;;;;;34584:48;5630:10;-1:-1:-1;;;;;34649:21:0;;;;;;:63;;-1:-1:-1;34675:37:0;34692:5;5630:10;35523:164;:::i;34675:37::-;34674:38;34649:63;34645:138;;;34736:35;;-1:-1:-1;;;34736:35:0;;;;;;;;;;;34645:138;34795:28;34804:2;34808:7;34817:5;34795:8;:28::i;:::-;34460:371;;;:::o;51913:166::-;-1:-1:-1;;;;;52002:23:0;;51981:4;52002:23;;;:10;:23;;;;;;;;:31;;:23;:31;51998:53;;;-1:-1:-1;52044:4:0;;51913:166;-1:-1:-1;51913:166:0:o;51998:53::-;-1:-1:-1;52068:5:0;;51913:166;-1:-1:-1;51913:166:0:o;35754:170::-;35888:28;35898:4;35904:2;35908:7;35888:9;:28::i;51511:97::-;6876:6;;-1:-1:-1;;;;;6876:6:0;5630:10;7023:23;7015:68;;;;-1:-1:-1;;;7015:68:0;;;;;;;:::i;:::-;51578:15:::1;:24:::0;;;::::1;;::::0;::::1;-1:-1:-1::0;;51578:24:0;;::::1;::::0;;;::::1;::::0;;51511:97::o;52086:147::-;6876:6;;-1:-1:-1;;;;;6876:6:0;5630:10;7023:23;7015:68;;;;-1:-1:-1;;;7015:68:0;;;;;;;:::i;:::-;52141:7:::1;52162;6876:6:::0;;-1:-1:-1;;;;;6876:6:0;;6803:87;52162:7:::1;-1:-1:-1::0;;;;;52154:21:0::1;52183;52154:55;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52140:69;;;52224:2;52216:11;;;::::0;::::1;;7094:1;52086:147::o:0;35995:185::-;36133:39;36150:4;36156:2;36160:7;36133:39;;;;;;;;;;;;:16;:39::i;50198:635::-;50273:16;50301:23;50327:17;50337:6;50327:9;:17::i;:::-;50301:43;;50351:30;50398:15;-1:-1:-1;;;;;50384:30:0;;;;;-1:-1:-1;;;50384:30:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;50384:30:0;-1:-1:-1;50351:63:0;-1:-1:-1;50446:1:0;50421:22;50490:309;50515:15;50497;:33;:64;;;;;47784:4;50534:14;:27;;50497:64;50490:309;;;50572:25;50600:23;50608:14;50600:7;:23::i;:::-;50572:51;;50659:6;-1:-1:-1;;;;;50638:27:0;:17;-1:-1:-1;;;;;50638:27:0;;50634:131;;;50711:14;50678:13;50692:15;50678:30;;;;;;-1:-1:-1;;;50678:30:0;;;;;;;;;;;;;;;;;;:47;50738:17;;;;:::i;:::-;;;;50634:131;50775:16;;;;:::i;:::-;;;;50490:309;;;;-1:-1:-1;50814:13:0;;50198:635;-1:-1:-1;;;;50198:635:0:o;51616:184::-;6876:6;;-1:-1:-1;;;;;6876:6:0;5630:10;7023:23;7015:68;;;;-1:-1:-1;;;7015:68:0;;;;;;;:::i;:::-;51701:9:::1;51696:99;51716:8;:15;51712:1;:19;51696:99;;;51779:4;51753:10;:23;51764:8;51773:1;51764:11;;;;;;-1:-1:-1::0;;;51764:11:0::1;;;;;;;;;;::::0;;::::1;::::0;;;;;;;-1:-1:-1;;;;;51753:23:0::1;::::0;;;::::1;::::0;;;;;;-1:-1:-1;51753:23:0;:30;;-1:-1:-1;;51753:30:0::1;::::0;::::1;;::::0;;;::::1;::::0;;51733:3;::::1;::::0;::::1;:::i;:::-;;;;51696:99;;;;51616:184:::0;:::o;51806:101::-;6876:6;;-1:-1:-1;;;;;6876:6:0;5630:10;7023:23;7015:68;;;;-1:-1:-1;;;7015:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;51875:19:0::1;;::::0;;;:10:::1;:19;::::0;;;;:26;;-1:-1:-1;;51875:26:0::1;51897:4;51875:26;::::0;;51806:101::o;51286:132::-;6876:6;;-1:-1:-1;;;;;6876:6:0;5630:10;7023:23;7015:68;;;;-1:-1:-1;;;7015:68:0;;;;;;;:::i;:::-;51374:38;;::::1;::::0;:17:::1;::::0;:38:::1;::::0;::::1;::::0;::::1;:::i;51054:98::-:0;6876:6;;-1:-1:-1;;;;;6876:6:0;5630:10;7023:23;7015:68;;;;-1:-1:-1;;;7015:68:0;;;;;;;:::i;:::-;51125:21;;::::1;::::0;:7:::1;::::0;:21:::1;::::0;::::1;::::0;::::1;:::i;33203:124::-:0;33267:7;33294:20;33306:7;33294:11;:20::i;:::-;:25;;33203:124;-1:-1:-1;;33203:124:0:o;30403:206::-;30467:7;-1:-1:-1;;;;;30491:19:0;;30487:60;;30519:28;;-1:-1:-1;;;30519:28:0;;;;;;;;;;;30487:60;-1:-1:-1;;;;;;30573:19:0;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;30573:27:0;;30403:206::o;7454:103::-;6876:6;;-1:-1:-1;;;;;6876:6:0;5630:10;7023:23;7015:68;;;;-1:-1:-1;;;7015:68:0;;;;;;;:::i;:::-;7519:30:::1;7546:1;7519:18;:30::i;:::-;7454:103::o:0;50932:116::-;6876:6;;-1:-1:-1;;;;;6876:6:0;5630:10;7023:23;7015:68;;;;-1:-1:-1;;;7015:68:0;;;;;;;:::i;:::-;51009:13:::1;:33:::0;50932:116::o;33563:104::-;33619:13;33652:7;33645:14;;;;;:::i;48305:1377::-;1850:1;2448:7;;:19;;2440:63;;;;-1:-1:-1;;;2440:63:0;;13800:2:1;2440:63:0;;;13782:21:1;13839:2;13819:18;;;13812:30;13878:33;13858:18;;;13851:61;13929:18;;2440:63:0;13772:181:1;2440:63:0;1850:1;2581:7;:18;48391:15;48383:43:::1;;;::::0;-1:-1:-1;;;48383:43:0;;11656:2:1;48383:43:0::1;::::0;::::1;11638:21:1::0;11695:2;11675:18;;;11668:30;-1:-1:-1;;;11714:18:1;;;11707:45;11769:18;;48383:43:0::1;11628:165:1::0;48383:43:0::1;47784:4;48457:11;48441:13;29927:12:::0;;29735:7;29911:13;:28;;29691:271;48441:13:::1;:27;;;;:::i;:::-;:40;;48433:68;;;::::0;-1:-1:-1;;;48433:68:0;;10972:2:1;48433:68:0::1;::::0;::::1;10954:21:1::0;11011:2;10991:18;;;10984:30;-1:-1:-1;;;11030:18:1;;;11023:45;11085:18;;48433:68:0::1;10944:165:1::0;48433:68:0::1;6876:6:::0;;-1:-1:-1;;;;;6876:6:0;48516:10:::1;:21;48512:1116;;48559:6;::::0;::::1;;48558:7;48550:26;;;::::0;-1:-1:-1;;;48550:26:0;;9205:2:1;48550:26:0::1;::::0;::::1;9187:21:1::0;9244:1;9224:18;;;9217:29;-1:-1:-1;;;9262:18:1;;;9255:36;9308:18;;48550:26:0::1;9177:155:1::0;48550:26:0::1;48610:13;;48595:11;:28;;48587:53;;;::::0;-1:-1:-1;;;48587:53:0;;14502:2:1;48587:53:0::1;::::0;::::1;14484:21:1::0;14541:2;14521:18;;;14514:30;-1:-1:-1;;;14560:18:1;;;14553:42;14612:18;;48587:53:0::1;14474:162:1::0;48587:53:0::1;48656:15;::::0;;;::::1;;;:23;;48675:4;48656:23;48653:968;;;48715:10;48704:22;::::0;;;:10:::1;:22;::::0;;;;;::::1;;48696:50;;;::::0;-1:-1:-1;;;48696:50:0;;9539:2:1;48696:50:0::1;::::0;::::1;9521:21:1::0;9578:2;9558:18;;;9551:30;-1:-1:-1;;;9597:18:1;;;9590:45;9652:18;;48696:50:0::1;9511:165:1::0;48696:50:0::1;48808:1;48783:21;48793:10;48783:9;:21::i;:::-;48769:35;::::0;:11;:35:::1;:::i;:::-;:40;;48761:65;;;::::0;-1:-1:-1;;;48761:65:0;;13459:2:1;48761:65:0::1;::::0;::::1;13441:21:1::0;13498:2;13478:18;;;13471:30;-1:-1:-1;;;13517:18:1;;;13510:42;13569:18;;48761:65:0::1;13431:162:1::0;48761:65:0::1;48847:11;48862:1;48847:16;48843:383;;;48905:27;48921:11:::0;47474::::1;48905:27;:::i;:::-;48892:9;:40;;48884:66;;;::::0;-1:-1:-1;;;48884:66:0;;14160:2:1;48884:66:0::1;::::0;::::1;14142:21:1::0;14199:2;14179:18;;;14172:30;-1:-1:-1;;;14218:18:1;;;14211:43;14271:18;;48884:66:0::1;14132:163:1::0;48884:66:0::1;48653:968;;48843:383;48976:11;48991:1;48976:16;48972:254;;;49034:28;49051:11:::0;47531::::1;49034:28;:::i;:::-;49021:9;:41;;49013:67;;;::::0;-1:-1:-1;;;49013:67:0;;12361:2:1;49013:67:0::1;::::0;::::1;12343:21:1::0;12400:2;12380:18;;;12373:30;-1:-1:-1;;;12419:18:1;;;12412:43;12472:18;;49013:67:0::1;12333:163:1::0;48972:254:0::1;49121:1;49106:11;:16;49102:124;;49164:28;49181:11:::0;47588:12:::1;49164:28;:::i;:::-;49151:9;:41;;49143:67;;;::::0;-1:-1:-1;;;49143:67:0;;9883:2:1;49143:67:0::1;::::0;::::1;9865:21:1::0;9922:2;9902:18;;;9895:30;-1:-1:-1;;;9941:18:1;;;9934:43;9994:18;;49143:67:0::1;9855:163:1::0;48653:968:0::1;49264:11;49279:1;49264:16;49260:350;;;49322:18;49329:11:::0;47636::::1;49322:18;:::i;:::-;49309:9;:31;;49301:55;;;::::0;-1:-1:-1;;;49301:55:0;;10632:2:1;49301:55:0::1;::::0;::::1;10614:21:1::0;10671:2;10651:18;;;10644:30;-1:-1:-1;;;10690:18:1;;;10683:41;10741:18;;49301:55:0::1;10604:161:1::0;49260:350:0::1;49382:11;49397:1;49382:16;49378:232;;;49440:19;49448:11:::0;47684::::1;49440:19;:::i;:::-;49427:9;:32;;49419:56;;;::::0;-1:-1:-1;;;49419:56:0;;11316:2:1;49419:56:0::1;::::0;::::1;11298:21:1::0;11355:2;11335:18;;;11328:30;-1:-1:-1;;;11374:18:1;;;11367:41;11425:18;;49419:56:0::1;11288:161:1::0;49378:232:0::1;49516:1;49501:11;:16;49497:113;;49559:19;49567:11:::0;47732::::1;49559:19;:::i;:::-;49546:9;:32;;49538:56;;;::::0;-1:-1:-1;;;49538:56:0;;13119:2:1;49538:56:0::1;::::0;::::1;13101:21:1::0;13158:2;13138:18;;;13131:30;-1:-1:-1;;;13177:18:1;;;13170:41;13228:18;;49538:56:0::1;13091:161:1::0;49538:56:0::1;49636:34;49646:10;49658:11;49636:9;:34::i;:::-;-1:-1:-1::0;1806:1:0;2760:7;:22;48305:1377::o;35173:279::-;-1:-1:-1;;;;;35264:24:0;;5630:10;35264:24;35260:54;;;35297:17;;-1:-1:-1;;;35297:17:0;;;;;;;;;;;35260:54;5630:10;35327:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;35327:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;35327:53:0;;;;;;;;;;35396:48;;8727:41:1;;;35327:42:0;;5630:10;35396:48;;8700:18:1;35396:48:0;;;;;;;35173:279;;:::o;47398:31::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;50855:67::-;6876:6;;-1:-1:-1;;;;;6876:6:0;5630:10;7023:23;7015:68;;;;-1:-1:-1;;;7015:68:0;;;;;;;:::i;:::-;50901:8:::1;:15:::0;;-1:-1:-1;;50901:15:0::1;;;::::0;;50855:67::o;36251:342::-;36418:28;36428:4;36434:2;36438:7;36418:9;:28::i;:::-;36462:48;36485:4;36491:2;36495:7;36504:5;36462:22;:48::i;:::-;36457:129;;36534:40;;-1:-1:-1;;;36534:40:0;;;;;;;;;;;36457:129;36251:342;;;;:::o;47356:37::-;;;;;;;:::i;49692:500::-;49790:13;49831:16;49839:7;49831;:16::i;:::-;49815:97;;;;-1:-1:-1;;;49815:97:0;;12703:2:1;49815:97:0;;;12685:21:1;12742:2;12722:18;;;12715:30;12781:34;12761:18;;;12754:62;-1:-1:-1;;;12832:18:1;;;12825:45;12887:19;;49815:97:0;12675:237:1;49815:97:0;49928:8;;;;;;;49925:65;;49965:17;49958:24;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49692:500;;;:::o;49925:65::-;49998:28;50029:10;:8;:10::i;:::-;49998:41;;50084:1;50059:14;50053:28;:32;:133;;;;;;;;;;;;;;;;;50121:14;50137:18;:7;:16;:18::i;:::-;50157:13;50104:67;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;50053:133;50046:140;49692:500;-1:-1:-1;;;49692:500:0:o;51158:122::-;6876:6;;-1:-1:-1;;;;;6876:6:0;5630:10;7023:23;7015:68;;;;-1:-1:-1;;;7015:68:0;;;;;;;:::i;:::-;51241:33;;::::1;::::0;:13:::1;::::0;:33:::1;::::0;::::1;::::0;::::1;:::i;7712:201::-:0;6876:6;;-1:-1:-1;;;;;6876:6:0;5630:10;7023:23;7015:68;;;;-1:-1:-1;;;7015:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;7801:22:0;::::1;7793:73;;;::::0;-1:-1:-1;;;7793:73:0;;10225:2:1;7793:73:0::1;::::0;::::1;10207:21:1::0;10264:2;10244:18;;;10237:30;10303:34;10283:18;;;10276:62;-1:-1:-1;;;10354:18:1;;;10347:36;10400:19;;7793:73:0::1;10197:228:1::0;7793:73:0::1;7877:28;7896:8;7877:18;:28::i;36848:144::-:0;36905:4;36939:13;;36929:7;:23;:55;;;;-1:-1:-1;;36957:20:0;;;;:11;:20;;;;;:27;-1:-1:-1;;;36957:27:0;;;;36956:28;;36848:144::o;44054:196::-;44169:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;44169:29:0;-1:-1:-1;;;;;44169:29:0;;;;;;;;;44214:28;;44169:24;;44214:28;;;;;;;44054:196;;;:::o;39555:2112::-;39670:35;39708:20;39720:7;39708:11;:20::i;:::-;39783:18;;39670:58;;-1:-1:-1;39741:22:0;;-1:-1:-1;;;;;39767:34:0;5630:10;-1:-1:-1;;;;;39767:34:0;;:101;;;-1:-1:-1;39835:18:0;;39818:50;;5630:10;35523:164;:::i;39818:50::-;39767:154;;;-1:-1:-1;5630:10:0;39885:20;39897:7;39885:11;:20::i;:::-;-1:-1:-1;;;;;39885:36:0;;39767:154;39741:181;;39940:17;39935:66;;39966:35;;-1:-1:-1;;;39966:35:0;;;;;;;;;;;39935:66;40038:4;-1:-1:-1;;;;;40016:26:0;:13;:18;;;-1:-1:-1;;;;;40016:26:0;;40012:67;;40051:28;;-1:-1:-1;;;40051:28:0;;;;;;;;;;;40012:67;-1:-1:-1;;;;;40094:16:0;;40090:52;;40119:23;;-1:-1:-1;;;40119:23:0;;;;;;;;;;;40090:52;40263:49;40280:1;40284:7;40293:13;:18;;;40263:8;:49::i;:::-;-1:-1:-1;;;;;40608:18:0;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;40608:31:0;;;-1:-1:-1;;;;;40608:31:0;;;-1:-1:-1;;40608:31:0;;;;;;;40654:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;40654:29:0;;;;;;;;;;;40700:20;;;:11;:20;;;;;;:30;;-1:-1:-1;;;;;;40745:61:0;;;;-1:-1:-1;;;40790:15:0;40745:61;;;;;;;;;;;41080:11;;;41110:24;;;;;:29;41080:11;;41110:29;41106:445;;41335:13;;41321:11;:27;41317:219;;;41405:18;;;41373:24;;;:11;:24;;;;;;;;:50;;41488:28;;;;-1:-1:-1;;;;;41446:70:0;-1:-1:-1;;;41446:70:0;-1:-1:-1;;;;;;41446:70:0;;;-1:-1:-1;;;;;41373:50:0;;;41446:70;;;;;;;41317:219;39555:2112;41598:7;41594:2;-1:-1:-1;;;;;41579:27:0;41588:4;-1:-1:-1;;;;;41579:27:0;;;;;;;;;;;41617:42;39555:2112;;;;;:::o;32058:1083::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;32224:13:0;;32168:7;;32217:20;;32213:861;;;32258:31;32292:17;;;:11;:17;;;;;;;;;32258:51;;;;;;;;;-1:-1:-1;;;;;32258:51:0;;;;-1:-1:-1;;;32258:51:0;;-1:-1:-1;;;;;32258:51:0;;;;;;;;-1:-1:-1;;;32258:51:0;;;;;;;;;;;;;;32328:731;;32378:14;;-1:-1:-1;;;;;32378:28:0;;32374:101;;32442:9;32058:1083;-1:-1:-1;;;32058:1083:0:o;32374:101::-;-1:-1:-1;;;32819:6:0;32864:17;;;;:11;:17;;;;;;;;;32852:29;;;;;;;;;-1:-1:-1;;;;;32852:29:0;;;;;-1:-1:-1;;;32852:29:0;;-1:-1:-1;;;;;32852:29:0;;;;;;;;-1:-1:-1;;;32852:29:0;;;;;;;;;;;;;32912:28;32908:109;;32980:9;32058:1083;-1:-1:-1;;;32058:1083:0:o;32908:109::-;32779:261;;;32213:861;;33102:31;;-1:-1:-1;;;33102:31:0;;;;;;;;;;;8073:191;8166:6;;;-1:-1:-1;;;;;8183:17:0;;;-1:-1:-1;;;;;;8183:17:0;;;;;;;8216:40;;8166:6;;;8183:17;8166:6;;8216:40;;8147:16;;8216:40;8073:191;;:::o;37000:104::-;37069:27;37079:2;37083:8;37069:27;;;;;;;;;;;;:9;:27::i;44815:790::-;44970:4;-1:-1:-1;;;;;44991:13:0;;9389:20;9437:8;44987:611;;45027:72;;-1:-1:-1;;;45027:72:0;;-1:-1:-1;;;;;45027:36:0;;;;;:72;;5630:10;;45078:4;;45084:7;;45093:5;;45027:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;45027:72:0;;;;;;;;-1:-1:-1;;45027:72:0;;;;;;;;;;;;:::i;:::-;;;45023:520;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;45273:13:0;;45269:259;;45323:40;;-1:-1:-1;;;45323:40:0;;;;;;;;;;;45269:259;45478:6;45472:13;45463:6;45459:2;45455:15;45448:38;45023:520;-1:-1:-1;;;;;;45150:55:0;-1:-1:-1;;;45150:55:0;;-1:-1:-1;45143:62:0;;44987:611;-1:-1:-1;45582:4:0;44987:611;44815:790;;;;;;:::o;48184:102::-;48244:13;48273:7;48266:14;;;;;:::i;3139:723::-;3195:13;3416:10;3412:53;;-1:-1:-1;;3443:10:0;;;;;;;;;;;;-1:-1:-1;;;3443:10:0;;;;;3139:723::o;3412:53::-;3490:5;3475:12;3531:78;3538:9;;3531:78;;3564:8;;;;:::i;:::-;;-1:-1:-1;3587:10:0;;-1:-1:-1;3595:2:0;3587:10;;:::i;:::-;;;3531:78;;;3619:19;3651:6;-1:-1:-1;;;;;3641:17:0;;;;;-1:-1:-1;;;3641:17:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;3641:17:0;;3619:39;;3669:154;3676:10;;3669:154;;3703:11;3713:1;3703:11;;:::i;:::-;;-1:-1:-1;3772:10:0;3780:2;3772:5;:10;:::i;:::-;3759:24;;:2;:24;:::i;:::-;3746:39;;3729:6;3736;3729:14;;;;;;-1:-1:-1;;;3729:14:0;;;;;;;;;;;;:56;-1:-1:-1;;;;;3729:56:0;;;;;;;;-1:-1:-1;3800:11:0;3809:2;3800:11;;:::i;:::-;;;3669:154;;37467:163;37590:32;37596:2;37600:8;37610:5;37617:4;38028:20;38051:13;-1:-1:-1;;;;;38079:16:0;;38075:48;;38104:19;;-1:-1:-1;;;38104:19:0;;;;;;;;;;;38075:48;38138:13;38134:44;;38160:18;;-1:-1:-1;;;38160:18:0;;;;;;;;;;;38134:44;-1:-1:-1;;;;;38529:16:0;;;;;;:12;:16;;;;;;;;:44;;-1:-1:-1;;38588:49:0;;-1:-1:-1;;;;;38529:44:0;;;;;;;38588:49;;;;-1:-1:-1;;38529:44:0;;;;;;38588:49;;;;;;;;;;;;;;;;38654:25;;;:11;:25;;;;;:35;;-1:-1:-1;;;;;;38704:66:0;;;;-1:-1:-1;;;38754:15:0;38704:66;;;;;;;;;;;38654:25;;38839:328;38859:8;38855:1;:12;38839:328;;;38898:38;;38923:12;;-1:-1:-1;;;;;38898:38:0;;;38915:1;;38898:38;;38915:1;;38898:38;38959:4;:68;;;;;38968:59;38999:1;39003:2;39007:12;39021:5;38968:22;:59::i;:::-;38967:60;38959:68;38955:164;;;39059:40;;-1:-1:-1;;;39059:40:0;;;;;;;;;;;38955:164;39137:14;;;;;38869:3;38839:328;;;-1:-1:-1;39183:13:0;:28;39233:60;36251:342;-1:-1:-1;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:406:1;78:5;-1:-1:-1;;;;;104:6:1;101:30;98:2;;;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:2;;;309:1;306;299:12;268:2;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;88:332;;;;;:::o;425:173::-;493:20;;-1:-1:-1;;;;;542:31:1;;532:42;;522:2;;588:1;585;578:12;522:2;474:124;;;:::o;603:160::-;668:20;;724:13;;717:21;707:32;;697:2;;753:1;750;743:12;768:196;827:6;880:2;868:9;859:7;855:23;851:32;848:2;;;901:6;893;886:22;848:2;929:29;948:9;929:29;:::i;969:270::-;1037:6;1045;1098:2;1086:9;1077:7;1073:23;1069:32;1066:2;;;1119:6;1111;1104:22;1066:2;1147:29;1166:9;1147:29;:::i;:::-;1137:39;;1195:38;1229:2;1218:9;1214:18;1195:38;:::i;:::-;1185:48;;1056:183;;;;;:::o;1244:338::-;1321:6;1329;1337;1390:2;1378:9;1369:7;1365:23;1361:32;1358:2;;;1411:6;1403;1396:22;1358:2;1439:29;1458:9;1439:29;:::i;:::-;1429:39;;1487:38;1521:2;1510:9;1506:18;1487:38;:::i;:::-;1477:48;;1572:2;1561:9;1557:18;1544:32;1534:42;;1348:234;;;;;:::o;1587:696::-;1682:6;1690;1698;1706;1759:3;1747:9;1738:7;1734:23;1730:33;1727:2;;;1781:6;1773;1766:22;1727:2;1809:29;1828:9;1809:29;:::i;:::-;1799:39;;1857:38;1891:2;1880:9;1876:18;1857:38;:::i;:::-;1847:48;;1942:2;1931:9;1927:18;1914:32;1904:42;;1997:2;1986:9;1982:18;1969:32;-1:-1:-1;;;;;2016:6:1;2013:30;2010:2;;;2061:6;2053;2046:22;2010:2;2089:22;;2142:4;2134:13;;2130:27;-1:-1:-1;2120:2:1;;2176:6;2168;2161:22;2120:2;2204:73;2269:7;2264:2;2251:16;2246:2;2242;2238:11;2204:73;:::i;:::-;2194:83;;;1717:566;;;;;;;:::o;2288:264::-;2353:6;2361;2414:2;2402:9;2393:7;2389:23;2385:32;2382:2;;;2435:6;2427;2420:22;2382:2;2463:29;2482:9;2463:29;:::i;:::-;2453:39;;2511:35;2542:2;2531:9;2527:18;2511:35;:::i;2557:264::-;2625:6;2633;2686:2;2674:9;2665:7;2661:23;2657:32;2654:2;;;2707:6;2699;2692:22;2654:2;2735:29;2754:9;2735:29;:::i;:::-;2725:39;2811:2;2796:18;;;;2783:32;;-1:-1:-1;;;2644:177:1:o;2826:1008::-;2910:6;2941:2;2984;2972:9;2963:7;2959:23;2955:32;2952:2;;;3005:6;2997;2990:22;2952:2;3050:9;3037:23;-1:-1:-1;;;;;3120:2:1;3112:6;3109:14;3106:2;;;3141:6;3133;3126:22;3106:2;3184:6;3173:9;3169:22;3159:32;;3229:7;3222:4;3218:2;3214:13;3210:27;3200:2;;3256:6;3248;3241:22;3200:2;3297;3284:16;3319:2;3315;3312:10;3309:2;;;3325:18;;:::i;:::-;3371:2;3368:1;3364:10;3354:20;;3394:28;3418:2;3414;3410:11;3394:28;:::i;:::-;3456:15;;;3487:12;;;;3519:11;;;3549;;;3545:20;;3542:33;-1:-1:-1;3539:2:1;;;3593:6;3585;3578:22;3539:2;3620:6;3611:15;;3635:169;3649:2;3646:1;3643:9;3635:169;;;3706:23;3725:3;3706:23;:::i;:::-;3694:36;;3667:1;3660:9;;;;;3750:12;;;;3782;;3635:169;;;-1:-1:-1;3823:5:1;2921:913;-1:-1:-1;;;;;;;;2921:913:1:o;3839:190::-;3895:6;3948:2;3936:9;3927:7;3923:23;3919:32;3916:2;;;3969:6;3961;3954:22;3916:2;3997:26;4013:9;3997:26;:::i;4034:255::-;4092:6;4145:2;4133:9;4124:7;4120:23;4116:32;4113:2;;;4166:6;4158;4151:22;4113:2;4210:9;4197:23;4229:30;4253:5;4229:30;:::i;4294:259::-;4363:6;4416:2;4404:9;4395:7;4391:23;4387:32;4384:2;;;4437:6;4429;4422:22;4384:2;4474:9;4468:16;4493:30;4517:5;4493:30;:::i;4558:480::-;4627:6;4680:2;4668:9;4659:7;4655:23;4651:32;4648:2;;;4701:6;4693;4686:22;4648:2;4746:9;4733:23;-1:-1:-1;;;;;4771:6:1;4768:30;4765:2;;;4816:6;4808;4801:22;4765:2;4844:22;;4897:4;4889:13;;4885:27;-1:-1:-1;4875:2:1;;4931:6;4923;4916:22;4875:2;4959:73;5024:7;5019:2;5006:16;5001:2;4997;4993:11;4959:73;:::i;5043:190::-;5102:6;5155:2;5143:9;5134:7;5130:23;5126:32;5123:2;;;5176:6;5168;5161:22;5123:2;-1:-1:-1;5204:23:1;;5113:120;-1:-1:-1;5113:120:1:o;5238:257::-;5279:3;5317:5;5311:12;5344:6;5339:3;5332:19;5360:63;5416:6;5409:4;5404:3;5400:14;5393:4;5386:5;5382:16;5360:63;:::i;:::-;5477:2;5456:15;-1:-1:-1;;5452:29:1;5443:39;;;;5484:4;5439:50;;5287:208;-1:-1:-1;;5287:208:1:o;5500:1531::-;5724:3;5762:6;5756:13;5788:4;5801:51;5845:6;5840:3;5835:2;5827:6;5823:15;5801:51;:::i;:::-;5915:13;;5874:16;;;;5937:55;5915:13;5874:16;5959:15;;;5937:55;:::i;:::-;6083:13;;6014:20;;;6054:3;;6143:1;6165:18;;;;6218;;;;6245:2;;6323:4;6313:8;6309:19;6297:31;;6245:2;6386;6376:8;6373:16;6353:18;6350:40;6347:2;;;-1:-1:-1;;;6413:33:1;;6469:4;6466:1;6459:15;6499:4;6420:3;6487:17;6347:2;6530:18;6557:110;;;;6681:1;6676:330;;;;6523:483;;6557:110;-1:-1:-1;;6592:24:1;;6578:39;;6637:20;;;;-1:-1:-1;6557:110:1;;6676:330;15150:4;15169:17;;;15219:4;15203:21;;6771:3;6787:169;6801:8;6798:1;6795:15;6787:169;;;6883:14;;6868:13;;;6861:37;6926:16;;;;6818:10;;6787:169;;;6791:3;;6987:8;6980:5;6976:20;6969:27;;6523:483;-1:-1:-1;7022:3:1;;5732:1299;-1:-1:-1;;;;;;;;;;;5732:1299:1:o;7454:488::-;-1:-1:-1;;;;;7723:15:1;;;7705:34;;7775:15;;7770:2;7755:18;;7748:43;7822:2;7807:18;;7800:34;;;7870:3;7865:2;7850:18;;7843:31;;;7648:4;;7891:45;;7916:19;;7908:6;7891:45;:::i;:::-;7883:53;7657:285;-1:-1:-1;;;;;;7657:285:1:o;7947:635::-;8118:2;8170:21;;;8240:13;;8143:18;;;8262:22;;;8089:4;;8118:2;8341:15;;;;8315:2;8300:18;;;8089:4;8387:169;8401:6;8398:1;8395:13;8387:169;;;8462:13;;8450:26;;8531:15;;;;8496:12;;;;8423:1;8416:9;8387:169;;;-1:-1:-1;8573:3:1;;8098:484;-1:-1:-1;;;;;;8098:484:1:o;8779:219::-;8928:2;8917:9;8910:21;8891:4;8948:44;8988:2;8977:9;8973:18;8965:6;8948:44;:::i;11798:356::-;12000:2;11982:21;;;12019:18;;;12012:30;12078:34;12073:2;12058:18;;12051:62;12145:2;12130:18;;11972:182::o;14823:275::-;14894:2;14888:9;14959:2;14940:13;;-1:-1:-1;;14936:27:1;14924:40;;-1:-1:-1;;;;;14979:34:1;;15015:22;;;14976:62;14973:2;;;15041:18;;:::i;:::-;15077:2;15070:22;14868:230;;-1:-1:-1;14868:230:1:o;15235:128::-;15275:3;15306:1;15302:6;15299:1;15296:13;15293:2;;;15312:18;;:::i;:::-;-1:-1:-1;15348:9:1;;15283:80::o;15368:120::-;15408:1;15434;15424:2;;15439:18;;:::i;:::-;-1:-1:-1;15473:9:1;;15414:74::o;15493:168::-;15533:7;15599:1;15595;15591:6;15587:14;15584:1;15581:21;15576:1;15569:9;15562:17;15558:45;15555:2;;;15606:18;;:::i;:::-;-1:-1:-1;15646:9:1;;15545:116::o;15666:125::-;15706:4;15734:1;15731;15728:8;15725:2;;;15739:18;;:::i;:::-;-1:-1:-1;15776:9:1;;15715:76::o;15796:258::-;15868:1;15878:113;15892:6;15889:1;15886:13;15878:113;;;15968:11;;;15962:18;15949:11;;;15942:39;15914:2;15907:10;15878:113;;;16009:6;16006:1;16003:13;16000:2;;;-1:-1:-1;;16044:1:1;16026:16;;16019:27;15849:205::o;16059:380::-;16138:1;16134:12;;;;16181;;;16202:2;;16256:4;16248:6;16244:17;16234:27;;16202:2;16309;16301:6;16298:14;16278:18;16275:38;16272:2;;;16355:10;16350:3;16346:20;16343:1;16336:31;16390:4;16387:1;16380:15;16418:4;16415:1;16408:15;16272:2;;16114:325;;;:::o;16444:135::-;16483:3;-1:-1:-1;;16504:17:1;;16501:2;;;16524:18;;:::i;:::-;-1:-1:-1;16571:1:1;16560:13;;16491:88::o;16584:112::-;16616:1;16642;16632:2;;16647:18;;:::i;:::-;-1:-1:-1;16681:9:1;;16622:74::o;16701:127::-;16762:10;16757:3;16753:20;16750:1;16743:31;16793:4;16790:1;16783:15;16817:4;16814:1;16807:15;16833:127;16894:10;16889:3;16885:20;16882:1;16875:31;16925:4;16922:1;16915:15;16949:4;16946:1;16939:15;16965:127;17026:10;17021:3;17017:20;17014:1;17007:31;17057:4;17054:1;17047:15;17081:4;17078:1;17071:15;17097:131;-1:-1:-1;;;;;;17171:32:1;;17161:43;;17151:2;;17218:1;17215;17208:12
Swarm Source
ipfs://acc1502e1d8c8ee99aee7b4d268e69107581a25ee4506aaf36b8587466cbd0a8
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.