ERC-721
Overview
Max Total Supply
240 SPID
Holders
235
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
1 SPIDLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
SouthParkIsDead
Compiler Version
v0.8.7+commit.e28d00a7
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-10-17 */ // SPDX-License-Identifier: MIT // File: @openzeppelin/contracts/security/ReentrancyGuard.sol /** Where am i?....... */ // OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol) pragma solidity ^0.8.0; /** * @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) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } } // File: @openzeppelin/contracts/utils/Context.sol // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File: @openzeppelin/contracts/utils/Address.sol // OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol) pragma solidity ^0.8.1; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== * * [IMPORTANT] * ==== * You shouldn't rely on `isContract` to protect against flash loan attacks! * * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract * constructor. * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize/address.code.length, which returns 0 // for contracts in construction, since the code is only stored at the end // of the constructor execution. return account.code.length > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } // File: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol) pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } // File: @openzeppelin/contracts/utils/introspection/IERC165.sol // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); } // File: @openzeppelin/contracts/utils/introspection/ERC165.sol // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) pragma solidity ^0.8.0; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } } // File: @openzeppelin/contracts/token/ERC721/IERC721.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol) pragma solidity ^0.8.0; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`, 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/IERC721Metadata.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol) pragma solidity ^0.8.0; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); } // File: contracts/new.sol pragma solidity ^0.8.4; error ApprovalCallerNotOwnerNorApproved(); error ApprovalQueryForNonexistentToken(); error ApproveToCaller(); error ApprovalToCurrentOwner(); error BalanceQueryForZeroAddress(); error MintToZeroAddress(); error MintZeroQuantity(); error OwnerQueryForNonexistentToken(); 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 _startTokenId() (defaults to 0, e.g. 0, 1, 2, 3..). * * Assumes that an owner cannot have more than 2**64 - 1 (max value of uint64) of supply. * * Assumes that the maximum token id cannot exceed 2**256 - 1 (max value of uint256). */ contract ERC721A is Context, ERC165, 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_; _currentIndex = _startTokenId(); } /** * To change the starting tokenId, please override this function. */ function _startTokenId() internal view virtual returns (uint256) { return 0; } /** * @dev Burned tokens are calculated here, use _totalMinted() if you want to count just minted tokens. */ function totalSupply() public view returns (uint256) { // Counter underflow is impossible as _burnCounter cannot be incremented // more than _currentIndex - _startTokenId() times unchecked { return _currentIndex - _burnCounter - _startTokenId(); } } /** * Returns the total amount of tokens minted in the contract. */ function _totalMinted() internal view returns (uint256) { // Counter underflow is impossible as _currentIndex does not decrement, // and it is initialized to _startTokenId() unchecked { return _currentIndex - _startTokenId(); } } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view override returns (uint256) { if (owner == address(0)) revert BalanceQueryForZeroAddress(); return uint256(_addressData[owner].balance); } /** * Returns the number of tokens minted by `owner`. */ function _numberMinted(address owner) internal view returns (uint256) { return uint256(_addressData[owner].numberMinted); } /** * Returns the number of tokens burned by or on behalf of `owner`. */ function _numberBurned(address owner) internal view returns (uint256) { return uint256(_addressData[owner].numberBurned); } /** * Returns the auxillary data for `owner`. (e.g. number of whitelist mint slots used). */ function _getAux(address owner) internal view returns (uint64) { return _addressData[owner].aux; } /** * Sets the auxillary data for `owner`. (e.g. number of whitelist mint slots used). * If there are multiple variables, please pack them into a uint64. */ function _setAux(address owner, uint64 aux) internal { _addressData[owner].aux = aux; } /** * Gas spent here starts off proportional to the maximum mint batch size. * It gradually moves to O(1) as tokens get transferred around in the collection over time. */ function _ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) { uint256 curr = tokenId; unchecked { if (_startTokenId() <= curr && 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 virtual override { if (operator == _msgSender()) revert ApproveToCaller(); _operatorApprovals[_msgSender()][operator] = approved; emit ApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ''); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public virtual override { _transfer(from, to, tokenId); if (to.isContract() && !_checkContractOnERC721Received(from, to, tokenId, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), */ function _exists(uint256 tokenId) internal view returns (bool) { return _startTokenId() <= tokenId && tokenId < _currentIndex && !_ownerships[tokenId].burned; } 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; uint256 end = updatedIndex + quantity; if (safe && to.isContract()) { do { emit Transfer(address(0), to, updatedIndex); if (!_checkContractOnERC721Received(address(0), to, updatedIndex++, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } while (updatedIndex != end); // Reentrancy protection if (_currentIndex != startTokenId) revert(); } else { do { emit Transfer(address(0), to, updatedIndex++); } while (updatedIndex != end); } _currentIndex = updatedIndex; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Transfers `tokenId` from `from` to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) private { TokenOwnership memory prevOwnership = _ownershipOf(tokenId); if (prevOwnership.addr != from) revert TransferFromIncorrectOwner(); bool isApprovedOrOwner = (_msgSender() == from || isApprovedForAll(from, _msgSender()) || getApproved(tokenId) == _msgSender()); if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved(); if (to == address(0)) revert TransferToZeroAddress(); _beforeTokenTransfers(from, to, tokenId, 1); // Clear approvals from the previous owner _approve(address(0), tokenId, from); // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256. unchecked { _addressData[from].balance -= 1; _addressData[to].balance += 1; TokenOwnership storage currSlot = _ownerships[tokenId]; currSlot.addr = to; currSlot.startTimestamp = uint64(block.timestamp); // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it. // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls. uint256 nextTokenId = tokenId + 1; TokenOwnership storage nextSlot = _ownerships[nextTokenId]; if (nextSlot.addr == address(0)) { // This will suffice for checking _exists(nextTokenId), // as a burned slot cannot contain the zero address. if (nextTokenId != _currentIndex) { nextSlot.addr = from; nextSlot.startTimestamp = prevOwnership.startTimestamp; } } } emit Transfer(from, to, tokenId); _afterTokenTransfers(from, to, tokenId, 1); } /** * @dev This is equivalent to _burn(tokenId, false) */ function _burn(uint256 tokenId) internal virtual { _burn(tokenId, false); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId, bool approvalCheck) internal virtual { TokenOwnership memory prevOwnership = _ownershipOf(tokenId); address from = prevOwnership.addr; if (approvalCheck) { bool isApprovedOrOwner = (_msgSender() == from || isApprovedForAll(from, _msgSender()) || getApproved(tokenId) == _msgSender()); if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved(); } _beforeTokenTransfers(from, address(0), tokenId, 1); // Clear approvals from the previous owner _approve(address(0), tokenId, from); // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256. unchecked { AddressData storage addressData = _addressData[from]; addressData.balance -= 1; addressData.numberBurned += 1; // Keep track of who burned the token, and the timestamp of burning. TokenOwnership storage currSlot = _ownerships[tokenId]; currSlot.addr = from; currSlot.startTimestamp = uint64(block.timestamp); currSlot.burned = true; // If the ownership slot of tokenId+1 is not explicitly set, that means the burn initiator owns it. // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls. uint256 nextTokenId = tokenId + 1; TokenOwnership storage nextSlot = _ownerships[nextTokenId]; if (nextSlot.addr == address(0)) { // This will suffice for checking _exists(nextTokenId), // as a burned slot cannot contain the zero address. if (nextTokenId != _currentIndex) { nextSlot.addr = from; nextSlot.startTimestamp = prevOwnership.startTimestamp; } } } emit Transfer(from, address(0), tokenId); _afterTokenTransfers(from, address(0), tokenId, 1); // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times. unchecked { _burnCounter++; } } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve( address to, uint256 tokenId, address owner ) private { _tokenApprovals[tokenId] = to; emit Approval(owner, to, tokenId); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkContractOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) { return retval == IERC721Receiver(to).onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert TransferToNonERC721ReceiverImplementer(); } else { assembly { revert(add(32, reason), mload(reason)) } } } } /** * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting. * And also called before burning one token. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, `tokenId` will be burned by `from`. * - `from` and `to` are never both zero. */ function _beforeTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes * minting. * And also called after one token has been burned. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` has been * transferred to `to`. * - When `from` is zero, `tokenId` has been minted for `to`. * - When `to` is zero, `tokenId` has been burned by `from`. * - `from` and `to` are never both zero. */ function _afterTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} } abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender() , "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } pragma solidity ^0.8.7; contract SouthParkIsDead is ERC721A, Ownable, ReentrancyGuard { using Strings for uint256; string private uriPrefix ; string private uriSuffix = ".json"; string public hiddenURL; uint256 public cost = 0.002 ether; uint256 public whiteListCost = 0.002 ether ; uint16 public maxSupply = 10000; uint8 public maxMintAmountPerTx = 10; uint8 public maxMintAmountPerWallet = 10; uint8 public maxFreeMintAmountPerWallet = 1; uint256 public freeNFTAlreadyMinted = 0; uint256 public NUM_FREE_MINTS = 10000; bool public WLpaused = true; bool public paused = true; bool public reveal =false; mapping (address => bool) public isWhitelisted; constructor( string memory _tokenName, string memory _tokenSymbol, string memory _hiddenMetadataUri ) ERC721A(_tokenName, _tokenSymbol) { } modifier callerIsUser() { require(tx.origin == msg.sender, "The caller is another contract"); _; } function mint(uint256 _mintAmount) external payable callerIsUser { require(!paused, "The contract is paused!"); require(totalSupply() + _mintAmount < maxSupply + 1, "No more"); require (balanceOf(msg.sender) + _mintAmount <= maxMintAmountPerWallet, "max NFT per address exceeded"); if(freeNFTAlreadyMinted + _mintAmount > NUM_FREE_MINTS){ require( (cost * _mintAmount) <= msg.value, "Incorrect ETH value sent" ); } else { if (balanceOf(msg.sender) + _mintAmount > maxFreeMintAmountPerWallet) { require( (cost * _mintAmount) <= msg.value, "Incorrect ETH value sent" ); require( _mintAmount <= maxMintAmountPerTx, "Max mints per transaction exceeded" ); } else { require( _mintAmount <= maxFreeMintAmountPerWallet, "Max mints per transaction exceeded" ); freeNFTAlreadyMinted += _mintAmount; } } _safeMint(msg.sender, _mintAmount); } function Reserve(uint16 _mintAmount, address _receiver) external onlyOwner { uint16 totalSupply = uint16(totalSupply()); require(totalSupply + _mintAmount <= maxSupply, "Excedes max supply."); _safeMint(_receiver , _mintAmount); delete _mintAmount; delete _receiver; delete totalSupply; } function Airdrop(uint8 _amountPerAddress, address[] calldata addresses) external onlyOwner { uint16 totalSupply = uint16(totalSupply()); uint totalAmount = _amountPerAddress * addresses.length; require(totalSupply + totalAmount <= maxSupply, "Excedes max supply."); for (uint256 i = 0; i < addresses.length; i++) { _safeMint(addresses[i], _amountPerAddress); } delete _amountPerAddress; delete totalSupply; } function setMaxSupply(uint16 _maxSupply) external onlyOwner { maxSupply = _maxSupply; } function tokenURI(uint256 _tokenId) public view virtual override returns (string memory) { require( _exists(_tokenId), "ERC721Metadata: URI query for nonexistent token" ); if ( reveal == false) { return hiddenURL; } string memory currentBaseURI = _baseURI(); return bytes(currentBaseURI).length > 0 ? string(abi.encodePacked(currentBaseURI, _tokenId.toString() ,uriSuffix)) : ""; } function setWLPaused() external onlyOwner { WLpaused = !WLpaused; } function setWLCost(uint256 _cost) external onlyOwner { whiteListCost = _cost; delete _cost; } function setFreeMaxLimitPerAddress(uint8 _limit) external onlyOwner{ maxFreeMintAmountPerWallet = _limit; delete _limit; } function addToPresaleWhitelist(address[] calldata entries) external onlyOwner { for(uint8 i = 0; i < entries.length; i++) { isWhitelisted[entries[i]] = true; } } function removeFromPresaleWhitelist(address[] calldata entries) external onlyOwner { for(uint8 i = 0; i < entries.length; i++) { isWhitelisted[entries[i]] = false; } } function whitelistMint(uint256 _mintAmount) external payable { require(!WLpaused, "Whitelist minting is over!"); require(isWhitelisted[msg.sender], "You are not whitelisted"); require(totalSupply() + _mintAmount < maxSupply + 1, "No more"); require (balanceOf(msg.sender) + _mintAmount <= maxMintAmountPerWallet, "max NFT per address exceeded"); if(freeNFTAlreadyMinted + _mintAmount > NUM_FREE_MINTS){ require( (whiteListCost * _mintAmount) <= msg.value, "Incorrect ETH value sent" ); } else { if (balanceOf(msg.sender) + _mintAmount > maxFreeMintAmountPerWallet) { require( (whiteListCost * _mintAmount) <= msg.value, "Incorrect ETH value sent" ); require( _mintAmount <= maxMintAmountPerTx, "Max mints per transaction exceeded" ); } else { require( _mintAmount <= maxFreeMintAmountPerWallet, "Max mints per transaction exceeded" ); freeNFTAlreadyMinted += _mintAmount; } } _safeMint(msg.sender, _mintAmount); } function seturiSuffix(string memory _uriSuffix) external onlyOwner { uriSuffix = _uriSuffix; } function setUriPrefix(string memory _uriPrefix) external onlyOwner { uriPrefix = _uriPrefix; } function setHiddenUri(string memory _uriPrefix) external onlyOwner { hiddenURL = _uriPrefix; } function setNumFreeMints(uint256 _numfreemints) external onlyOwner { NUM_FREE_MINTS = _numfreemints; } function setPaused() external onlyOwner { paused = !paused; WLpaused = true; } function setCost(uint _cost) external onlyOwner{ cost = _cost; } function setRevealed() external onlyOwner{ reveal = !reveal; } function setMaxMintAmountPerTx(uint8 _maxtx) external onlyOwner{ maxMintAmountPerTx = _maxtx; } function setMaxMintAmountPerWallet(uint8 _maxWallet) external onlyOwner{ maxMintAmountPerWallet = _maxWallet; } function withdraw() public onlyOwner nonReentrant { // This will transfer the remaining contract balance to the owner. // Do not remove this otherwise you will not be able to withdraw the funds. // ============================================================================= (bool os, ) = payable(owner()).call{value: address(this).balance}(''); require(os); // ============================================================================= } function _baseURI() internal view override returns (string memory) { return uriPrefix; } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"string","name":"_tokenName","type":"string"},{"internalType":"string","name":"_tokenSymbol","type":"string"},{"internalType":"string","name":"_hiddenMetadataUri","type":"string"}],"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":"uint8","name":"_amountPerAddress","type":"uint8"},{"internalType":"address[]","name":"addresses","type":"address[]"}],"name":"Airdrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"NUM_FREE_MINTS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint16","name":"_mintAmount","type":"uint16"},{"internalType":"address","name":"_receiver","type":"address"}],"name":"Reserve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"WLpaused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"entries","type":"address[]"}],"name":"addToPresaleWhitelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"freeNFTAlreadyMinted","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":"hiddenURL","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":[{"internalType":"address","name":"","type":"address"}],"name":"isWhitelisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxFreeMintAmountPerWallet","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmountPerTx","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmountPerWallet","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"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":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"entries","type":"address[]"}],"name":"removeFromPresaleWhitelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reveal","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":"uint256","name":"_cost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint8","name":"_limit","type":"uint8"}],"name":"setFreeMaxLimitPerAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriPrefix","type":"string"}],"name":"setHiddenUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint8","name":"_maxtx","type":"uint8"}],"name":"setMaxMintAmountPerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint8","name":"_maxWallet","type":"uint8"}],"name":"setMaxMintAmountPerWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"_maxSupply","type":"uint16"}],"name":"setMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_numfreemints","type":"uint256"}],"name":"setNumFreeMints","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setPaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setRevealed","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriPrefix","type":"string"}],"name":"setUriPrefix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_cost","type":"uint256"}],"name":"setWLCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setWLPaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriSuffix","type":"string"}],"name":"seturiSuffix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"whiteListCost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"whitelistMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60c06040526005608081905264173539b7b760d91b60a09081526200002891600b91906200013c565b5066071afd498d0000600d819055600e55600f805464010a0a271064ffffffffff1990911617905560006010556127106011556012805462ffffff19166101011790553480156200007857600080fd5b5060405162002e8038038062002e808339810160408190526200009b9162000299565b825183908390620000b49060029060208501906200013c565b508051620000ca9060039060208401906200013c565b50506000805550620000dc33620000ea565b50506001600955506200037d565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200014a906200032a565b90600052602060002090601f0160209004810192826200016e5760008555620001b9565b82601f106200018957805160ff1916838001178555620001b9565b82800160010185558215620001b9579182015b82811115620001b95782518255916020019190600101906200019c565b50620001c7929150620001cb565b5090565b5b80821115620001c75760008155600101620001cc565b600082601f830112620001f457600080fd5b81516001600160401b038082111562000211576200021162000367565b604051601f8301601f19908116603f011681019082821181831017156200023c576200023c62000367565b816040528381526020925086838588010111156200025957600080fd5b600091505b838210156200027d57858201830151818301840152908201906200025e565b838211156200028f5760008385830101525b9695505050505050565b600080600060608486031215620002af57600080fd5b83516001600160401b0380821115620002c757600080fd5b620002d587838801620001e2565b94506020860151915080821115620002ec57600080fd5b620002fa87838801620001e2565b935060408601519150808211156200031157600080fd5b506200032086828701620001e2565b9150509250925092565b600181811c908216806200033f57607f821691505b602082108114156200036157634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b612af3806200038d6000396000f3fe6080604052600436106102c95760003560e01c8063715018a611610175578063a22cb465116100dc578063cffb6e2011610095578063e985e9c51161006f578063e985e9c51461086a578063eef440af146108b3578063f2fde38b146108c8578063f8bf5172146108e857600080fd5b8063cffb6e20146107fc578063d1d192131461081c578063d5abeb011461083c57600080fd5b8063a22cb4651461073b578063a475b5dd1461075b578063aa0622901461077b578063b88d4fde1461079b578063bc951b91146107bb578063c87b56dd146107dc57600080fd5b80638f65fe0a1161012e5780638f65fe0a146106955780639257e044146106b557806394354fd0146106cb57806395d89b41146106fd578063982d669e14610712578063a0712d681461072857600080fd5b8063715018a6146105f55780637ec4a6591461060a5780637f6e90931461062a578063868ff4a2146106445780638da5cb5b146106575780638e07484c1461067557600080fd5b806328b60d15116102345780633ccfd60b116101ed5780634d9c1848116101c75780634d9c1848146105765780635c975abb146105965780636352211e146105b557806370a08231146105d557600080fd5b80633ccfd60b1461052157806342842e0e1461053657806344a0d68a1461055657600080fd5b806328b60d15146104675780632f6f98e114610487578063305ae775146104a757806337a66d85146104c75780633af32abf146104dc5780633bd649681461050c57600080fd5b80630a00ae83116102865780630a00ae83146103b45780631067fcc7146103d457806313faede6146103f457806318160ddd14610418578063193ad7b41461043157806323b872dd1461044757600080fd5b806301ffc9a7146102ce57806306421c2f1461030357806306fdde0314610325578063081812fc14610347578063093cfa631461037f578063095ea7b314610394575b600080fd5b3480156102da57600080fd5b506102ee6102e936600461261b565b61090a565b60405190151581526020015b60405180910390f35b34801561030f57600080fd5b5061032361031e36600461269d565b61095c565b005b34801561033157600080fd5b5061033a6109a7565b6040516102fa9190612887565b34801561035357600080fd5b506103676103623660046126d4565b610a39565b6040516001600160a01b0390911681526020016102fa565b34801561038b57600080fd5b50610323610a7d565b3480156103a057600080fd5b506103236103af3660046125b0565b610abb565b3480156103c057600080fd5b506103236103cf3660046126d4565b610b49565b3480156103e057600080fd5b506103236103ef366004612655565b610b78565b34801561040057600080fd5b5061040a600d5481565b6040519081526020016102fa565b34801561042457600080fd5b506001546000540361040a565b34801561043d57600080fd5b5061040a60105481565b34801561045357600080fd5b506103236104623660046124bd565b610bb9565b34801561047357600080fd5b506103236104823660046126ed565b610bc4565b34801561049357600080fd5b506103236104a23660046126b8565b610c0e565b3480156104b357600080fd5b506103236104c2366004612655565b610cb1565b3480156104d357600080fd5b50610323610cee565b3480156104e857600080fd5b506102ee6104f736600461246f565b60136020526000908152604090205460ff1681565b34801561051857600080fd5b50610323610d3d565b34801561052d57600080fd5b50610323610d86565b34801561054257600080fd5b506103236105513660046124bd565b610e81565b34801561056257600080fd5b506103236105713660046126d4565b610e9c565b34801561058257600080fd5b506103236105913660046126ed565b610ecb565b3480156105a257600080fd5b506012546102ee90610100900460ff1681565b3480156105c157600080fd5b506103676105d03660046126d4565b610f17565b3480156105e157600080fd5b5061040a6105f036600461246f565b610f29565b34801561060157600080fd5b50610323610f77565b34801561061657600080fd5b50610323610625366004612655565b610fad565b34801561063657600080fd5b506012546102ee9060ff1681565b6103236106523660046126d4565b610fea565b34801561066357600080fd5b506008546001600160a01b0316610367565b34801561068157600080fd5b506103236106903660046125da565b6112e1565b3480156106a157600080fd5b506103236106b03660046125da565b611383565b3480156106c157600080fd5b5061040a600e5481565b3480156106d757600080fd5b50600f546106eb9062010000900460ff1681565b60405160ff90911681526020016102fa565b34801561070957600080fd5b5061033a611425565b34801561071e57600080fd5b5061040a60115481565b6103236107363660046126d4565b611434565b34801561074757600080fd5b50610323610756366004612574565b61160c565b34801561076757600080fd5b506012546102ee9062010000900460ff1681565b34801561078757600080fd5b506103236107963660046126ed565b6116a2565b3480156107a757600080fd5b506103236107b63660046124f9565b6116ea565b3480156107c757600080fd5b50600f546106eb906301000000900460ff1681565b3480156107e857600080fd5b5061033a6107f73660046126d4565b61173b565b34801561080857600080fd5b50610323610817366004612708565b6118ab565b34801561082857600080fd5b506103236108373660046126d4565b6119ab565b34801561084857600080fd5b50600f546108579061ffff1681565b60405161ffff90911681526020016102fa565b34801561087657600080fd5b506102ee61088536600461248a565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b3480156108bf57600080fd5b5061033a6119da565b3480156108d457600080fd5b506103236108e336600461246f565b611a68565b3480156108f457600080fd5b50600f546106eb90640100000000900460ff1681565b60006001600160e01b031982166380ac58cd60e01b148061093b57506001600160e01b03198216635b5e139f60e01b145b8061095657506301ffc9a760e01b6001600160e01b03198316145b92915050565b6008546001600160a01b0316331461098f5760405162461bcd60e51b8152600401610986906128dc565b60405180910390fd5b600f805461ffff191661ffff92909216919091179055565b6060600280546109b6906129c5565b80601f01602080910402602001604051908101604052809291908181526020018280546109e2906129c5565b8015610a2f5780601f10610a0457610100808354040283529160200191610a2f565b820191906000526020600020905b815481529060010190602001808311610a1257829003601f168201915b5050505050905090565b6000610a4482611b00565b610a61576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b6008546001600160a01b03163314610aa75760405162461bcd60e51b8152600401610986906128dc565b6012805460ff19811660ff90911615179055565b6000610ac682610f17565b9050806001600160a01b0316836001600160a01b03161415610afb5760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b03821614801590610b1b5750610b198133610885565b155b15610b39576040516367d9dca160e11b815260040160405180910390fd5b610b44838383611b2b565b505050565b6008546001600160a01b03163314610b735760405162461bcd60e51b8152600401610986906128dc565b601155565b6008546001600160a01b03163314610ba25760405162461bcd60e51b8152600401610986906128dc565b8051610bb590600c9060208401906122d7565b5050565b610b44838383611b87565b6008546001600160a01b03163314610bee5760405162461bcd60e51b8152600401610986906128dc565b600f805460ff90921663010000000263ff00000019909216919091179055565b6008546001600160a01b03163314610c385760405162461bcd60e51b8152600401610986906128dc565b6000610c476001546000540390565b600f5490915061ffff16610c5b8483612911565b61ffff161115610ca35760405162461bcd60e51b815260206004820152601360248201527222bc31b2b232b99036b0bc1039bab838363c9760691b6044820152606401610986565b610b44828461ffff16611d75565b6008546001600160a01b03163314610cdb5760405162461bcd60e51b8152600401610986906128dc565b8051610bb590600b9060208401906122d7565b6008546001600160a01b03163314610d185760405162461bcd60e51b8152600401610986906128dc565b6012805460ff1960ff6101008084049190911615021661ffff19909116176001179055565b6008546001600160a01b03163314610d675760405162461bcd60e51b8152600401610986906128dc565b6012805462ff0000198116620100009182900460ff1615909102179055565b6008546001600160a01b03163314610db05760405162461bcd60e51b8152600401610986906128dc565b60026009541415610e035760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610986565b60026009556000610e1c6008546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d8060008114610e66576040519150601f19603f3d011682016040523d82523d6000602084013e610e6b565b606091505b5050905080610e7957600080fd5b506001600955565b610b44838383604051806020016040528060008152506116ea565b6008546001600160a01b03163314610ec65760405162461bcd60e51b8152600401610986906128dc565b600d55565b6008546001600160a01b03163314610ef55760405162461bcd60e51b8152600401610986906128dc565b600f805460ff9092166401000000000264ff0000000019909216919091179055565b6000610f2282611d8f565b5192915050565b60006001600160a01b038216610f52576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600560205260409020546001600160401b031690565b6008546001600160a01b03163314610fa15760405162461bcd60e51b8152600401610986906128dc565b610fab6000611ea9565b565b6008546001600160a01b03163314610fd75760405162461bcd60e51b8152600401610986906128dc565b8051610bb590600a9060208401906122d7565b60125460ff161561103d5760405162461bcd60e51b815260206004820152601a60248201527f57686974656c697374206d696e74696e67206973206f766572210000000000006044820152606401610986565b3360009081526013602052604090205460ff1661109c5760405162461bcd60e51b815260206004820152601760248201527f596f7520617265206e6f742077686974656c69737465640000000000000000006044820152606401610986565b600f546110ae9061ffff166001612911565b61ffff16816110c06001546000540390565b6110ca9190612937565b106111015760405162461bcd60e51b81526020600482015260076024820152664e6f206d6f726560c81b6044820152606401610986565b600f546301000000900460ff168161111833610f29565b6111229190612937565b11156111705760405162461bcd60e51b815260206004820152601c60248201527f6d6178204e4654207065722061646472657373206578636565646564000000006044820152606401610986565b601154816010546111819190612937565b11156111e4573481600e546111969190612963565b11156111df5760405162461bcd60e51b8152602060048201526018602482015277125b98dbdc9c9958dd08115512081d985b1d59481cd95b9d60421b6044820152606401610986565b6112d4565b600f54640100000000900460ff16816111fc33610f29565b6112069190612937565b111561128f573481600e5461121b9190612963565b11156112645760405162461bcd60e51b8152602060048201526018602482015277125b98dbdc9c9958dd08115512081d985b1d59481cd95b9d60421b6044820152606401610986565b600f5462010000900460ff168111156111df5760405162461bcd60e51b81526004016109869061289a565b600f54640100000000900460ff168111156112bc5760405162461bcd60e51b81526004016109869061289a565b80601060008282546112ce9190612937565b90915550505b6112de3382611d75565b50565b6008546001600160a01b0316331461130b5760405162461bcd60e51b8152600401610986906128dc565b60005b60ff8116821115610b445760016013600085858560ff1681811061133457611334612a7b565b9050602002016020810190611349919061246f565b6001600160a01b031681526020810191909152604001600020805460ff19169115159190911790558061137b81612a1b565b91505061130e565b6008546001600160a01b031633146113ad5760405162461bcd60e51b8152600401610986906128dc565b60005b60ff8116821115610b445760006013600085858560ff168181106113d6576113d6612a7b565b90506020020160208101906113eb919061246f565b6001600160a01b031681526020810191909152604001600020805460ff19169115159190911790558061141d81612a1b565b9150506113b0565b6060600380546109b6906129c5565b3233146114835760405162461bcd60e51b815260206004820152601e60248201527f5468652063616c6c657220697320616e6f7468657220636f6e747261637400006044820152606401610986565b601254610100900460ff16156114db5760405162461bcd60e51b815260206004820152601760248201527f54686520636f6e747261637420697320706175736564210000000000000000006044820152606401610986565b600f546114ed9061ffff166001612911565b61ffff16816114ff6001546000540390565b6115099190612937565b106115405760405162461bcd60e51b81526020600482015260076024820152664e6f206d6f726560c81b6044820152606401610986565b600f546301000000900460ff168161155733610f29565b6115619190612937565b11156115af5760405162461bcd60e51b815260206004820152601c60248201527f6d6178204e4654207065722061646472657373206578636565646564000000006044820152606401610986565b601154816010546115c09190612937565b11156115d5573481600d546111969190612963565b600f54640100000000900460ff16816115ed33610f29565b6115f79190612937565b111561128f573481600d5461121b9190612963565b6001600160a01b0382163314156116365760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6008546001600160a01b031633146116cc5760405162461bcd60e51b8152600401610986906128dc565b600f805460ff909216620100000262ff000019909216919091179055565b6116f5848484611b87565b6001600160a01b0383163b15158015611717575061171584848484611efb565b155b15611735576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b606061174682611b00565b6117aa5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610986565b60125462010000900460ff1661184c57600c80546117c7906129c5565b80601f01602080910402602001604051908101604052809291908181526020018280546117f3906129c5565b80156118405780601f1061181557610100808354040283529160200191611840565b820191906000526020600020905b81548152906001019060200180831161182357829003601f168201915b50505050509050919050565b6000611856611ff3565b9050600081511161187657604051806020016040528060008152506118a4565b8061188084612002565b600b60405160200161189493929190612786565b6040516020818303038152906040525b9392505050565b6008546001600160a01b031633146118d55760405162461bcd60e51b8152600401610986906128dc565b60006118e46001546000540390565b905060006118f58360ff8716612963565b600f5490915061ffff9081169061190f9083908516612937565b11156119535760405162461bcd60e51b815260206004820152601360248201527222bc31b2b232b99036b0bc1039bab838363c9760691b6044820152606401610986565b60005b838110156119a35761199185858381811061197357611973612a7b565b9050602002016020810190611988919061246f565b8760ff16611d75565b8061199b81612a00565b915050611956565b505050505050565b6008546001600160a01b031633146119d55760405162461bcd60e51b8152600401610986906128dc565b600e55565b600c80546119e7906129c5565b80601f0160208091040260200160405190810160405280929190818152602001828054611a13906129c5565b8015611a605780601f10611a3557610100808354040283529160200191611a60565b820191906000526020600020905b815481529060010190602001808311611a4357829003601f168201915b505050505081565b6008546001600160a01b03163314611a925760405162461bcd60e51b8152600401610986906128dc565b6001600160a01b038116611af75760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610986565b6112de81611ea9565b6000805482108015610956575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000611b9282611d8f565b9050836001600160a01b031681600001516001600160a01b031614611bc95760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b0386161480611be75750611be78533610885565b80611c02575033611bf784610a39565b6001600160a01b0316145b905080611c2257604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b038416611c4957604051633a954ecd60e21b815260040160405180910390fd5b611c5560008487611b2b565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff198082166001600160401b0392831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b42909216919091021783558701808452922080549193909116611d29576000548214611d2957805460208601516001600160401b0316600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b610bb58282604051806020016040528060008152506120ff565b604080516060810182526000808252602082018190529181019190915281600054811015611e9057600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff16151591810182905290611e8e5780516001600160a01b031615611e25579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b82046001600160401b031693830193909352600160e01b900460ff1615159281019290925215611e89579392505050565b611e25565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290611f3090339089908890889060040161284a565b602060405180830381600087803b158015611f4a57600080fd5b505af1925050508015611f7a575060408051601f3d908101601f19168201909252611f7791810190612638565b60015b611fd5573d808015611fa8576040519150601f19603f3d011682016040523d82523d6000602084013e611fad565b606091505b508051611fcd576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6060600a80546109b6906129c5565b6060816120265750506040805180820190915260018152600360fc1b602082015290565b8160005b8115612050578061203a81612a00565b91506120499050600a8361294f565b915061202a565b6000816001600160401b0381111561206a5761206a612a91565b6040519080825280601f01601f191660200182016040528015612094576020820181803683370190505b5090505b8415611feb576120a9600183612982565b91506120b6600a86612a3b565b6120c1906030612937565b60f81b8183815181106120d6576120d6612a7b565b60200101906001600160f81b031916908160001a9053506120f8600a8661294f565b9450612098565b610b4483838360016000546001600160a01b03851661213057604051622e076360e81b815260040160405180910390fd5b8361214e5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff1981166001600160401b038083168c0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168c01811690920217909155858452600490925290912080546001600160e01b031916909217600160a01b4290921691909102179055808085018380156121ff57506001600160a01b0387163b15155b15612288575b60405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a46122506000888480600101955088611efb565b61226d576040516368d2bf6b60e11b815260040160405180910390fd5b8082141561220557826000541461228357600080fd5b6122ce565b5b6040516001830192906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a480821415612289575b50600055611d6e565b8280546122e3906129c5565b90600052602060002090601f016020900481019282612305576000855561234b565b82601f1061231e57805160ff191683800117855561234b565b8280016001018555821561234b579182015b8281111561234b578251825591602001919060010190612330565b5061235792915061235b565b5090565b5b80821115612357576000815560010161235c565b60006001600160401b038084111561238a5761238a612a91565b604051601f8501601f19908116603f011681019082821181831017156123b2576123b2612a91565b816040528093508581528686860111156123cb57600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b03811681146123fc57600080fd5b919050565b60008083601f84011261241357600080fd5b5081356001600160401b0381111561242a57600080fd5b6020830191508360208260051b850101111561244557600080fd5b9250929050565b803561ffff811681146123fc57600080fd5b803560ff811681146123fc57600080fd5b60006020828403121561248157600080fd5b6118a4826123e5565b6000806040838503121561249d57600080fd5b6124a6836123e5565b91506124b4602084016123e5565b90509250929050565b6000806000606084860312156124d257600080fd5b6124db846123e5565b92506124e9602085016123e5565b9150604084013590509250925092565b6000806000806080858703121561250f57600080fd5b612518856123e5565b9350612526602086016123e5565b92506040850135915060608501356001600160401b0381111561254857600080fd5b8501601f8101871361255957600080fd5b61256887823560208401612370565b91505092959194509250565b6000806040838503121561258757600080fd5b612590836123e5565b9150602083013580151581146125a557600080fd5b809150509250929050565b600080604083850312156125c357600080fd5b6125cc836123e5565b946020939093013593505050565b600080602083850312156125ed57600080fd5b82356001600160401b0381111561260357600080fd5b61260f85828601612401565b90969095509350505050565b60006020828403121561262d57600080fd5b81356118a481612aa7565b60006020828403121561264a57600080fd5b81516118a481612aa7565b60006020828403121561266757600080fd5b81356001600160401b0381111561267d57600080fd5b8201601f8101841361268e57600080fd5b611feb84823560208401612370565b6000602082840312156126af57600080fd5b6118a48261244c565b600080604083850312156126cb57600080fd5b6124a68361244c565b6000602082840312156126e657600080fd5b5035919050565b6000602082840312156126ff57600080fd5b6118a48261245e565b60008060006040848603121561271d57600080fd5b6127268461245e565b925060208401356001600160401b0381111561274157600080fd5b61274d86828701612401565b9497909650939450505050565b60008151808452612772816020860160208601612999565b601f01601f19169290920160200192915050565b6000845160206127998285838a01612999565b8551918401916127ac8184848a01612999565b8554920191600090600181811c90808316806127c957607f831692505b8583108114156127e757634e487b7160e01b85526022600452602485fd5b8080156127fb576001811461280c57612839565b60ff19851688528388019550612839565b60008b81526020902060005b858110156128315781548a820152908401908801612818565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061287d9083018461275a565b9695505050505050565b6020815260006118a4602083018461275a565b60208082526022908201527f4d6178206d696e747320706572207472616e73616374696f6e20657863656564604082015261195960f21b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600061ffff80831681851680830382111561292e5761292e612a4f565b01949350505050565b6000821982111561294a5761294a612a4f565b500190565b60008261295e5761295e612a65565b500490565b600081600019048311821515161561297d5761297d612a4f565b500290565b60008282101561299457612994612a4f565b500390565b60005b838110156129b457818101518382015260200161299c565b838111156117355750506000910152565b600181811c908216806129d957607f821691505b602082108114156129fa57634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612a1457612a14612a4f565b5060010190565b600060ff821660ff811415612a3257612a32612a4f565b60010192915050565b600082612a4a57612a4a612a65565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b0319811681146112de57600080fdfea264697066735822122062eecb9ab9bd59b703d70be0c744be1066231be40eb3ba74d9ec04399e1f845a64736f6c63430008070033000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e00000000000000000000000000000000000000000000000000000000000000012536f757468205061726b204973204465616400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004535049440000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000046e6f6e6500000000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x6080604052600436106102c95760003560e01c8063715018a611610175578063a22cb465116100dc578063cffb6e2011610095578063e985e9c51161006f578063e985e9c51461086a578063eef440af146108b3578063f2fde38b146108c8578063f8bf5172146108e857600080fd5b8063cffb6e20146107fc578063d1d192131461081c578063d5abeb011461083c57600080fd5b8063a22cb4651461073b578063a475b5dd1461075b578063aa0622901461077b578063b88d4fde1461079b578063bc951b91146107bb578063c87b56dd146107dc57600080fd5b80638f65fe0a1161012e5780638f65fe0a146106955780639257e044146106b557806394354fd0146106cb57806395d89b41146106fd578063982d669e14610712578063a0712d681461072857600080fd5b8063715018a6146105f55780637ec4a6591461060a5780637f6e90931461062a578063868ff4a2146106445780638da5cb5b146106575780638e07484c1461067557600080fd5b806328b60d15116102345780633ccfd60b116101ed5780634d9c1848116101c75780634d9c1848146105765780635c975abb146105965780636352211e146105b557806370a08231146105d557600080fd5b80633ccfd60b1461052157806342842e0e1461053657806344a0d68a1461055657600080fd5b806328b60d15146104675780632f6f98e114610487578063305ae775146104a757806337a66d85146104c75780633af32abf146104dc5780633bd649681461050c57600080fd5b80630a00ae83116102865780630a00ae83146103b45780631067fcc7146103d457806313faede6146103f457806318160ddd14610418578063193ad7b41461043157806323b872dd1461044757600080fd5b806301ffc9a7146102ce57806306421c2f1461030357806306fdde0314610325578063081812fc14610347578063093cfa631461037f578063095ea7b314610394575b600080fd5b3480156102da57600080fd5b506102ee6102e936600461261b565b61090a565b60405190151581526020015b60405180910390f35b34801561030f57600080fd5b5061032361031e36600461269d565b61095c565b005b34801561033157600080fd5b5061033a6109a7565b6040516102fa9190612887565b34801561035357600080fd5b506103676103623660046126d4565b610a39565b6040516001600160a01b0390911681526020016102fa565b34801561038b57600080fd5b50610323610a7d565b3480156103a057600080fd5b506103236103af3660046125b0565b610abb565b3480156103c057600080fd5b506103236103cf3660046126d4565b610b49565b3480156103e057600080fd5b506103236103ef366004612655565b610b78565b34801561040057600080fd5b5061040a600d5481565b6040519081526020016102fa565b34801561042457600080fd5b506001546000540361040a565b34801561043d57600080fd5b5061040a60105481565b34801561045357600080fd5b506103236104623660046124bd565b610bb9565b34801561047357600080fd5b506103236104823660046126ed565b610bc4565b34801561049357600080fd5b506103236104a23660046126b8565b610c0e565b3480156104b357600080fd5b506103236104c2366004612655565b610cb1565b3480156104d357600080fd5b50610323610cee565b3480156104e857600080fd5b506102ee6104f736600461246f565b60136020526000908152604090205460ff1681565b34801561051857600080fd5b50610323610d3d565b34801561052d57600080fd5b50610323610d86565b34801561054257600080fd5b506103236105513660046124bd565b610e81565b34801561056257600080fd5b506103236105713660046126d4565b610e9c565b34801561058257600080fd5b506103236105913660046126ed565b610ecb565b3480156105a257600080fd5b506012546102ee90610100900460ff1681565b3480156105c157600080fd5b506103676105d03660046126d4565b610f17565b3480156105e157600080fd5b5061040a6105f036600461246f565b610f29565b34801561060157600080fd5b50610323610f77565b34801561061657600080fd5b50610323610625366004612655565b610fad565b34801561063657600080fd5b506012546102ee9060ff1681565b6103236106523660046126d4565b610fea565b34801561066357600080fd5b506008546001600160a01b0316610367565b34801561068157600080fd5b506103236106903660046125da565b6112e1565b3480156106a157600080fd5b506103236106b03660046125da565b611383565b3480156106c157600080fd5b5061040a600e5481565b3480156106d757600080fd5b50600f546106eb9062010000900460ff1681565b60405160ff90911681526020016102fa565b34801561070957600080fd5b5061033a611425565b34801561071e57600080fd5b5061040a60115481565b6103236107363660046126d4565b611434565b34801561074757600080fd5b50610323610756366004612574565b61160c565b34801561076757600080fd5b506012546102ee9062010000900460ff1681565b34801561078757600080fd5b506103236107963660046126ed565b6116a2565b3480156107a757600080fd5b506103236107b63660046124f9565b6116ea565b3480156107c757600080fd5b50600f546106eb906301000000900460ff1681565b3480156107e857600080fd5b5061033a6107f73660046126d4565b61173b565b34801561080857600080fd5b50610323610817366004612708565b6118ab565b34801561082857600080fd5b506103236108373660046126d4565b6119ab565b34801561084857600080fd5b50600f546108579061ffff1681565b60405161ffff90911681526020016102fa565b34801561087657600080fd5b506102ee61088536600461248a565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b3480156108bf57600080fd5b5061033a6119da565b3480156108d457600080fd5b506103236108e336600461246f565b611a68565b3480156108f457600080fd5b50600f546106eb90640100000000900460ff1681565b60006001600160e01b031982166380ac58cd60e01b148061093b57506001600160e01b03198216635b5e139f60e01b145b8061095657506301ffc9a760e01b6001600160e01b03198316145b92915050565b6008546001600160a01b0316331461098f5760405162461bcd60e51b8152600401610986906128dc565b60405180910390fd5b600f805461ffff191661ffff92909216919091179055565b6060600280546109b6906129c5565b80601f01602080910402602001604051908101604052809291908181526020018280546109e2906129c5565b8015610a2f5780601f10610a0457610100808354040283529160200191610a2f565b820191906000526020600020905b815481529060010190602001808311610a1257829003601f168201915b5050505050905090565b6000610a4482611b00565b610a61576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b6008546001600160a01b03163314610aa75760405162461bcd60e51b8152600401610986906128dc565b6012805460ff19811660ff90911615179055565b6000610ac682610f17565b9050806001600160a01b0316836001600160a01b03161415610afb5760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b03821614801590610b1b5750610b198133610885565b155b15610b39576040516367d9dca160e11b815260040160405180910390fd5b610b44838383611b2b565b505050565b6008546001600160a01b03163314610b735760405162461bcd60e51b8152600401610986906128dc565b601155565b6008546001600160a01b03163314610ba25760405162461bcd60e51b8152600401610986906128dc565b8051610bb590600c9060208401906122d7565b5050565b610b44838383611b87565b6008546001600160a01b03163314610bee5760405162461bcd60e51b8152600401610986906128dc565b600f805460ff90921663010000000263ff00000019909216919091179055565b6008546001600160a01b03163314610c385760405162461bcd60e51b8152600401610986906128dc565b6000610c476001546000540390565b600f5490915061ffff16610c5b8483612911565b61ffff161115610ca35760405162461bcd60e51b815260206004820152601360248201527222bc31b2b232b99036b0bc1039bab838363c9760691b6044820152606401610986565b610b44828461ffff16611d75565b6008546001600160a01b03163314610cdb5760405162461bcd60e51b8152600401610986906128dc565b8051610bb590600b9060208401906122d7565b6008546001600160a01b03163314610d185760405162461bcd60e51b8152600401610986906128dc565b6012805460ff1960ff6101008084049190911615021661ffff19909116176001179055565b6008546001600160a01b03163314610d675760405162461bcd60e51b8152600401610986906128dc565b6012805462ff0000198116620100009182900460ff1615909102179055565b6008546001600160a01b03163314610db05760405162461bcd60e51b8152600401610986906128dc565b60026009541415610e035760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610986565b60026009556000610e1c6008546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d8060008114610e66576040519150601f19603f3d011682016040523d82523d6000602084013e610e6b565b606091505b5050905080610e7957600080fd5b506001600955565b610b44838383604051806020016040528060008152506116ea565b6008546001600160a01b03163314610ec65760405162461bcd60e51b8152600401610986906128dc565b600d55565b6008546001600160a01b03163314610ef55760405162461bcd60e51b8152600401610986906128dc565b600f805460ff9092166401000000000264ff0000000019909216919091179055565b6000610f2282611d8f565b5192915050565b60006001600160a01b038216610f52576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600560205260409020546001600160401b031690565b6008546001600160a01b03163314610fa15760405162461bcd60e51b8152600401610986906128dc565b610fab6000611ea9565b565b6008546001600160a01b03163314610fd75760405162461bcd60e51b8152600401610986906128dc565b8051610bb590600a9060208401906122d7565b60125460ff161561103d5760405162461bcd60e51b815260206004820152601a60248201527f57686974656c697374206d696e74696e67206973206f766572210000000000006044820152606401610986565b3360009081526013602052604090205460ff1661109c5760405162461bcd60e51b815260206004820152601760248201527f596f7520617265206e6f742077686974656c69737465640000000000000000006044820152606401610986565b600f546110ae9061ffff166001612911565b61ffff16816110c06001546000540390565b6110ca9190612937565b106111015760405162461bcd60e51b81526020600482015260076024820152664e6f206d6f726560c81b6044820152606401610986565b600f546301000000900460ff168161111833610f29565b6111229190612937565b11156111705760405162461bcd60e51b815260206004820152601c60248201527f6d6178204e4654207065722061646472657373206578636565646564000000006044820152606401610986565b601154816010546111819190612937565b11156111e4573481600e546111969190612963565b11156111df5760405162461bcd60e51b8152602060048201526018602482015277125b98dbdc9c9958dd08115512081d985b1d59481cd95b9d60421b6044820152606401610986565b6112d4565b600f54640100000000900460ff16816111fc33610f29565b6112069190612937565b111561128f573481600e5461121b9190612963565b11156112645760405162461bcd60e51b8152602060048201526018602482015277125b98dbdc9c9958dd08115512081d985b1d59481cd95b9d60421b6044820152606401610986565b600f5462010000900460ff168111156111df5760405162461bcd60e51b81526004016109869061289a565b600f54640100000000900460ff168111156112bc5760405162461bcd60e51b81526004016109869061289a565b80601060008282546112ce9190612937565b90915550505b6112de3382611d75565b50565b6008546001600160a01b0316331461130b5760405162461bcd60e51b8152600401610986906128dc565b60005b60ff8116821115610b445760016013600085858560ff1681811061133457611334612a7b565b9050602002016020810190611349919061246f565b6001600160a01b031681526020810191909152604001600020805460ff19169115159190911790558061137b81612a1b565b91505061130e565b6008546001600160a01b031633146113ad5760405162461bcd60e51b8152600401610986906128dc565b60005b60ff8116821115610b445760006013600085858560ff168181106113d6576113d6612a7b565b90506020020160208101906113eb919061246f565b6001600160a01b031681526020810191909152604001600020805460ff19169115159190911790558061141d81612a1b565b9150506113b0565b6060600380546109b6906129c5565b3233146114835760405162461bcd60e51b815260206004820152601e60248201527f5468652063616c6c657220697320616e6f7468657220636f6e747261637400006044820152606401610986565b601254610100900460ff16156114db5760405162461bcd60e51b815260206004820152601760248201527f54686520636f6e747261637420697320706175736564210000000000000000006044820152606401610986565b600f546114ed9061ffff166001612911565b61ffff16816114ff6001546000540390565b6115099190612937565b106115405760405162461bcd60e51b81526020600482015260076024820152664e6f206d6f726560c81b6044820152606401610986565b600f546301000000900460ff168161155733610f29565b6115619190612937565b11156115af5760405162461bcd60e51b815260206004820152601c60248201527f6d6178204e4654207065722061646472657373206578636565646564000000006044820152606401610986565b601154816010546115c09190612937565b11156115d5573481600d546111969190612963565b600f54640100000000900460ff16816115ed33610f29565b6115f79190612937565b111561128f573481600d5461121b9190612963565b6001600160a01b0382163314156116365760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6008546001600160a01b031633146116cc5760405162461bcd60e51b8152600401610986906128dc565b600f805460ff909216620100000262ff000019909216919091179055565b6116f5848484611b87565b6001600160a01b0383163b15158015611717575061171584848484611efb565b155b15611735576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b606061174682611b00565b6117aa5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610986565b60125462010000900460ff1661184c57600c80546117c7906129c5565b80601f01602080910402602001604051908101604052809291908181526020018280546117f3906129c5565b80156118405780601f1061181557610100808354040283529160200191611840565b820191906000526020600020905b81548152906001019060200180831161182357829003601f168201915b50505050509050919050565b6000611856611ff3565b9050600081511161187657604051806020016040528060008152506118a4565b8061188084612002565b600b60405160200161189493929190612786565b6040516020818303038152906040525b9392505050565b6008546001600160a01b031633146118d55760405162461bcd60e51b8152600401610986906128dc565b60006118e46001546000540390565b905060006118f58360ff8716612963565b600f5490915061ffff9081169061190f9083908516612937565b11156119535760405162461bcd60e51b815260206004820152601360248201527222bc31b2b232b99036b0bc1039bab838363c9760691b6044820152606401610986565b60005b838110156119a35761199185858381811061197357611973612a7b565b9050602002016020810190611988919061246f565b8760ff16611d75565b8061199b81612a00565b915050611956565b505050505050565b6008546001600160a01b031633146119d55760405162461bcd60e51b8152600401610986906128dc565b600e55565b600c80546119e7906129c5565b80601f0160208091040260200160405190810160405280929190818152602001828054611a13906129c5565b8015611a605780601f10611a3557610100808354040283529160200191611a60565b820191906000526020600020905b815481529060010190602001808311611a4357829003601f168201915b505050505081565b6008546001600160a01b03163314611a925760405162461bcd60e51b8152600401610986906128dc565b6001600160a01b038116611af75760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610986565b6112de81611ea9565b6000805482108015610956575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000611b9282611d8f565b9050836001600160a01b031681600001516001600160a01b031614611bc95760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b0386161480611be75750611be78533610885565b80611c02575033611bf784610a39565b6001600160a01b0316145b905080611c2257604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b038416611c4957604051633a954ecd60e21b815260040160405180910390fd5b611c5560008487611b2b565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff198082166001600160401b0392831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b42909216919091021783558701808452922080549193909116611d29576000548214611d2957805460208601516001600160401b0316600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b610bb58282604051806020016040528060008152506120ff565b604080516060810182526000808252602082018190529181019190915281600054811015611e9057600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff16151591810182905290611e8e5780516001600160a01b031615611e25579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b82046001600160401b031693830193909352600160e01b900460ff1615159281019290925215611e89579392505050565b611e25565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290611f3090339089908890889060040161284a565b602060405180830381600087803b158015611f4a57600080fd5b505af1925050508015611f7a575060408051601f3d908101601f19168201909252611f7791810190612638565b60015b611fd5573d808015611fa8576040519150601f19603f3d011682016040523d82523d6000602084013e611fad565b606091505b508051611fcd576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6060600a80546109b6906129c5565b6060816120265750506040805180820190915260018152600360fc1b602082015290565b8160005b8115612050578061203a81612a00565b91506120499050600a8361294f565b915061202a565b6000816001600160401b0381111561206a5761206a612a91565b6040519080825280601f01601f191660200182016040528015612094576020820181803683370190505b5090505b8415611feb576120a9600183612982565b91506120b6600a86612a3b565b6120c1906030612937565b60f81b8183815181106120d6576120d6612a7b565b60200101906001600160f81b031916908160001a9053506120f8600a8661294f565b9450612098565b610b4483838360016000546001600160a01b03851661213057604051622e076360e81b815260040160405180910390fd5b8361214e5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff1981166001600160401b038083168c0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168c01811690920217909155858452600490925290912080546001600160e01b031916909217600160a01b4290921691909102179055808085018380156121ff57506001600160a01b0387163b15155b15612288575b60405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a46122506000888480600101955088611efb565b61226d576040516368d2bf6b60e11b815260040160405180910390fd5b8082141561220557826000541461228357600080fd5b6122ce565b5b6040516001830192906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a480821415612289575b50600055611d6e565b8280546122e3906129c5565b90600052602060002090601f016020900481019282612305576000855561234b565b82601f1061231e57805160ff191683800117855561234b565b8280016001018555821561234b579182015b8281111561234b578251825591602001919060010190612330565b5061235792915061235b565b5090565b5b80821115612357576000815560010161235c565b60006001600160401b038084111561238a5761238a612a91565b604051601f8501601f19908116603f011681019082821181831017156123b2576123b2612a91565b816040528093508581528686860111156123cb57600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b03811681146123fc57600080fd5b919050565b60008083601f84011261241357600080fd5b5081356001600160401b0381111561242a57600080fd5b6020830191508360208260051b850101111561244557600080fd5b9250929050565b803561ffff811681146123fc57600080fd5b803560ff811681146123fc57600080fd5b60006020828403121561248157600080fd5b6118a4826123e5565b6000806040838503121561249d57600080fd5b6124a6836123e5565b91506124b4602084016123e5565b90509250929050565b6000806000606084860312156124d257600080fd5b6124db846123e5565b92506124e9602085016123e5565b9150604084013590509250925092565b6000806000806080858703121561250f57600080fd5b612518856123e5565b9350612526602086016123e5565b92506040850135915060608501356001600160401b0381111561254857600080fd5b8501601f8101871361255957600080fd5b61256887823560208401612370565b91505092959194509250565b6000806040838503121561258757600080fd5b612590836123e5565b9150602083013580151581146125a557600080fd5b809150509250929050565b600080604083850312156125c357600080fd5b6125cc836123e5565b946020939093013593505050565b600080602083850312156125ed57600080fd5b82356001600160401b0381111561260357600080fd5b61260f85828601612401565b90969095509350505050565b60006020828403121561262d57600080fd5b81356118a481612aa7565b60006020828403121561264a57600080fd5b81516118a481612aa7565b60006020828403121561266757600080fd5b81356001600160401b0381111561267d57600080fd5b8201601f8101841361268e57600080fd5b611feb84823560208401612370565b6000602082840312156126af57600080fd5b6118a48261244c565b600080604083850312156126cb57600080fd5b6124a68361244c565b6000602082840312156126e657600080fd5b5035919050565b6000602082840312156126ff57600080fd5b6118a48261245e565b60008060006040848603121561271d57600080fd5b6127268461245e565b925060208401356001600160401b0381111561274157600080fd5b61274d86828701612401565b9497909650939450505050565b60008151808452612772816020860160208601612999565b601f01601f19169290920160200192915050565b6000845160206127998285838a01612999565b8551918401916127ac8184848a01612999565b8554920191600090600181811c90808316806127c957607f831692505b8583108114156127e757634e487b7160e01b85526022600452602485fd5b8080156127fb576001811461280c57612839565b60ff19851688528388019550612839565b60008b81526020902060005b858110156128315781548a820152908401908801612818565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061287d9083018461275a565b9695505050505050565b6020815260006118a4602083018461275a565b60208082526022908201527f4d6178206d696e747320706572207472616e73616374696f6e20657863656564604082015261195960f21b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600061ffff80831681851680830382111561292e5761292e612a4f565b01949350505050565b6000821982111561294a5761294a612a4f565b500190565b60008261295e5761295e612a65565b500490565b600081600019048311821515161561297d5761297d612a4f565b500290565b60008282101561299457612994612a4f565b500390565b60005b838110156129b457818101518382015260200161299c565b838111156117355750506000910152565b600181811c908216806129d957607f821691505b602082108114156129fa57634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612a1457612a14612a4f565b5060010190565b600060ff821660ff811415612a3257612a32612a4f565b60010192915050565b600082612a4a57612a4a612a65565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b0319811681146112de57600080fdfea264697066735822122062eecb9ab9bd59b703d70be0c744be1066231be40eb3ba74d9ec04399e1f845a64736f6c63430008070033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e00000000000000000000000000000000000000000000000000000000000000012536f757468205061726b204973204465616400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004535049440000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000046e6f6e6500000000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : _tokenName (string): South Park Is Dead
Arg [1] : _tokenSymbol (string): SPID
Arg [2] : _hiddenMetadataUri (string): none
-----Encoded View---------------
9 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000012
Arg [4] : 536f757468205061726b20497320446561640000000000000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [6] : 5350494400000000000000000000000000000000000000000000000000000000
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [8] : 6e6f6e6500000000000000000000000000000000000000000000000000000000
Deployed Bytecode Sourcemap
47015:7198:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27339:305;;;;;;;;;;-1:-1:-1;27339:305:0;;;;;:::i;:::-;;:::i;:::-;;;9203:14:1;;9196:22;9178:41;;9166:2;9151:18;27339:305:0;;;;;;;;50076:97;;;;;;;;;;-1:-1:-1;50076:97:0;;;;;:::i;:::-;;:::i;:::-;;30452:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;31955:204::-;;;;;;;;;;-1:-1:-1;31955:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;8501:32:1;;;8483:51;;8471:2;8456:18;31955:204:0;8337:203:1;50686:75:0;;;;;;;;;;;;;:::i;31518:371::-;;;;;;;;;;-1:-1:-1;31518:371:0;;;;;:::i;:::-;;:::i;52993:129::-;;;;;;;;;;-1:-1:-1;52993:129:0;;;;;:::i;:::-;;:::i;52889:102::-;;;;;;;;;;-1:-1:-1;52889:102:0;;;;;:::i;:::-;;:::i;47227:33::-;;;;;;;;;;;;;;;;;;;14551:25:1;;;14539:2;14524:18;47227:33:0;14405:177:1;26588:303:0;;;;;;;;;;-1:-1:-1;26842:12:0;;26632:7;26826:13;:28;26588:303;;47493:39;;;;;;;;;;;;;;;;32820:170;;;;;;;;;;-1:-1:-1;32820:170:0;;;;;:::i;:::-;;:::i;53498:123::-;;;;;;;;;;-1:-1:-1;53498:123:0;;;;;:::i;:::-;;:::i;49261:326::-;;;;;;;;;;-1:-1:-1;49261:326:0;;;;;:::i;:::-;;:::i;52673:102::-;;;;;;;;;;-1:-1:-1;52673:102:0;;;;;:::i;:::-;;:::i;53132:91::-;;;;;;;;;;;;;:::i;47741:46::-;;;;;;;;;;-1:-1:-1;47741:46:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;53310:70;;;;;;;;;;;;;:::i;53630:475::-;;;;;;;;;;;;;:::i;33061:185::-;;;;;;;;;;-1:-1:-1;33061:185:0;;;;;:::i;:::-;;:::i;53229:76::-;;;;;;;;;;-1:-1:-1;53229:76:0;;;;;:::i;:::-;;:::i;50880:134::-;;;;;;;;;;-1:-1:-1;50880:134:0;;;;;:::i;:::-;;:::i;47678:25::-;;;;;;;;;;-1:-1:-1;47678:25:0;;;;;;;;;;;30260:125;;;;;;;;;;-1:-1:-1;30260:125:0;;;;;:::i;:::-;;:::i;27708:206::-;;;;;;;;;;-1:-1:-1;27708:206:0;;;;;:::i;:::-;;:::i;46161:103::-;;;;;;;;;;;;;:::i;52782:102::-;;;;;;;;;;-1:-1:-1;52782:102:0;;;;;:::i;:::-;;:::i;47646:27::-;;;;;;;;;;-1:-1:-1;47646:27:0;;;;;;;;51450:1217;;;;;;:::i;:::-;;:::i;45509:87::-;;;;;;;;;;-1:-1:-1;45582:6:0;;-1:-1:-1;;;;;45582:6:0;45509:87;;51026:200;;;;;;;;;;-1:-1:-1;51026:200:0;;;;;:::i;:::-;;:::i;51234:204::-;;;;;;;;;;-1:-1:-1;51234:204:0;;;;;:::i;:::-;;:::i;47265:42::-;;;;;;;;;;;;;;;;47355:36;;;;;;;;;;-1:-1:-1;47355:36:0;;;;;;;;;;;;;;14759:4:1;14747:17;;;14729:36;;14717:2;14702:18;47355:36:0;14587:184:1;30621:104:0;;;;;;;;;;;;;:::i;47540:38::-;;;;;;;;;;;;;;;;48115:1140;;;;;;:::i;:::-;;:::i;32231:287::-;;;;;;;;;;-1:-1:-1;32231:287:0;;;;;:::i;:::-;;:::i;47708:25::-;;;;;;;;;;-1:-1:-1;47708:25:0;;;;;;;;;;;53386:107;;;;;;;;;;-1:-1:-1;53386:107:0;;;;;:::i;:::-;;:::i;33317:369::-;;;;;;;;;;-1:-1:-1;33317:369:0;;;;;:::i;:::-;;:::i;47396:40::-;;;;;;;;;;-1:-1:-1;47396:40:0;;;;;;;;;;;50188:490;;;;;;;;;;-1:-1:-1;50188:490:0;;;;;:::i;:::-;;:::i;49593:472::-;;;;;;;;;;-1:-1:-1;49593:472:0;;;;;:::i;:::-;;:::i;50765:106::-;;;;;;;;;;-1:-1:-1;50765:106:0;;;;;:::i;:::-;;:::i;47319:31::-;;;;;;;;;;-1:-1:-1;47319:31:0;;;;;;;;;;;14386:6:1;14374:19;;;14356:38;;14344:2;14329:18;47319:31:0;14212:188:1;32589:164:0;;;;;;;;;;-1:-1:-1;32589:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;32710:25:0;;;32686:4;32710:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;32589:164;47187:23;;;;;;;;;;;;;:::i;46419:201::-;;;;;;;;;;-1:-1:-1;46419:201:0;;;;;:::i;:::-;;:::i;47443:43::-;;;;;;;;;;-1:-1:-1;47443:43:0;;;;;;;;;;;27339:305;27441:4;-1:-1:-1;;;;;;27478:40:0;;-1:-1:-1;;;27478:40:0;;:105;;-1:-1:-1;;;;;;;27535:48:0;;-1:-1:-1;;;27535:48:0;27478:105;:158;;;-1:-1:-1;;;;;;;;;;17373:40:0;;;27600:36;27458:178;27339:305;-1:-1:-1;;27339:305:0:o;50076:97::-;45582:6;;-1:-1:-1;;;;;45582:6:0;5814:10;45729:23;45721:69;;;;-1:-1:-1;;;45721:69:0;;;;;;;:::i;:::-;;;;;;;;;50145:9:::1;:22:::0;;-1:-1:-1;;50145:22:0::1;;::::0;;;::::1;::::0;;;::::1;::::0;;50076:97::o;30452:100::-;30506:13;30539:5;30532:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30452:100;:::o;31955:204::-;32023:7;32048:16;32056:7;32048;:16::i;:::-;32043:64;;32073:34;;-1:-1:-1;;;32073:34:0;;;;;;;;;;;32043:64;-1:-1:-1;32127:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;32127:24:0;;31955:204::o;50686:75::-;45582:6;;-1:-1:-1;;;;;45582:6:0;5814:10;45729:23;45721:69;;;;-1:-1:-1;;;45721:69:0;;;;;;;:::i;:::-;50747:8:::1;::::0;;-1:-1:-1;;50735:20:0;::::1;50747:8;::::0;;::::1;50746:9;50735:20;::::0;;50686:75::o;31518:371::-;31591:13;31607:24;31623:7;31607:15;:24::i;:::-;31591:40;;31652:5;-1:-1:-1;;;;;31646:11:0;:2;-1:-1:-1;;;;;31646:11:0;;31642:48;;;31666:24;;-1:-1:-1;;;31666:24:0;;;;;;;;;;;31642:48;5814:10;-1:-1:-1;;;;;31707:21:0;;;;;;:63;;-1:-1:-1;31733:37:0;31750:5;5814:10;32589:164;:::i;31733:37::-;31732:38;31707:63;31703:138;;;31794:35;;-1:-1:-1;;;31794:35:0;;;;;;;;;;;31703:138;31853:28;31862:2;31866:7;31875:5;31853:8;:28::i;:::-;31580:309;31518:371;;:::o;52993:129::-;45582:6;;-1:-1:-1;;;;;45582:6:0;5814:10;45729:23;45721:69;;;;-1:-1:-1;;;45721:69:0;;;;;;;:::i;:::-;53086:14:::1;:30:::0;52993:129::o;52889:102::-;45582:6;;-1:-1:-1;;;;;45582:6:0;5814:10;45729:23;45721:69;;;;-1:-1:-1;;;45721:69:0;;;;;;;:::i;:::-;52963:22;;::::1;::::0;:9:::1;::::0;:22:::1;::::0;::::1;::::0;::::1;:::i;:::-;;52889:102:::0;:::o;32820:170::-;32954:28;32964:4;32970:2;32974:7;32954:9;:28::i;53498:123::-;45582:6;;-1:-1:-1;;;;;45582:6:0;5814:10;45729:23;45721:69;;;;-1:-1:-1;;;45721:69:0;;;;;;;:::i;:::-;53578:22:::1;:35:::0;;::::1;::::0;;::::1;::::0;::::1;-1:-1:-1::0;;53578:35:0;;::::1;::::0;;;::::1;::::0;;53498:123::o;49261:326::-;45582:6;;-1:-1:-1;;;;;45582:6:0;5814:10;45729:23;45721:69;;;;-1:-1:-1;;;45721:69:0;;;;;;;:::i;:::-;49344:18:::1;49372:13;26842:12:::0;;26632:7;26826:13;:28;;26588:303;49372:13:::1;49430:9;::::0;49344:42;;-1:-1:-1;49430:9:0::1;;49401:25;49415:11:::0;49344:42;49401:25:::1;:::i;:::-;:38;;;;49393:70;;;::::0;-1:-1:-1;;;49393:70:0;;9656:2:1;49393:70:0::1;::::0;::::1;9638:21:1::0;9695:2;9675:18;;;9668:30;-1:-1:-1;;;9714:18:1;;;9707:49;9773:18;;49393:70:0::1;9454:343:1::0;49393:70:0::1;49471:34;49481:9;49493:11;49471:34;;:9;:34::i;52673:102::-:0;45582:6;;-1:-1:-1;;;;;45582:6:0;5814:10;45729:23;45721:69;;;;-1:-1:-1;;;45721:69:0;;;;;;;:::i;:::-;52747:22;;::::1;::::0;:9:::1;::::0;:22:::1;::::0;::::1;::::0;::::1;:::i;53132:91::-:0;45582:6;;-1:-1:-1;;;;;45582:6:0;5814:10;45729:23;45721:69;;;;-1:-1:-1;;;45721:69:0;;;;;;;:::i;:::-;53189:6:::1;::::0;;-1:-1:-1;;53189:6:0::1;;::::0;;::::1;::::0;;;::::1;53188:7;53179:16;53202:15:::0;-1:-1:-1;;53202:15:0;;;;53189:6:::1;53202:15;::::0;;53132:91::o;53310:70::-;45582:6;;-1:-1:-1;;;;;45582:6:0;5814:10;45729:23;45721:69;;;;-1:-1:-1;;;45721:69:0;;;;;;;:::i;:::-;53369:6:::1;::::0;;-1:-1:-1;;53359:16:0;::::1;53369:6:::0;;;;::::1;;;53368:7;53359:16:::0;;::::1;;::::0;;53310:70::o;53630:475::-;45582:6;;-1:-1:-1;;;;;45582:6:0;5814:10;45729:23;45721:69;;;;-1:-1:-1;;;45721:69:0;;;;;;;:::i;:::-;1986:1:::1;2584:7;;:19;;2576:63;;;::::0;-1:-1:-1;;;2576:63:0;;14054:2:1;2576:63:0::1;::::0;::::1;14036:21:1::0;14093:2;14073:18;;;14066:30;14132:33;14112:18;;;14105:61;14183:18;;2576:63:0::1;13852:355:1::0;2576:63:0::1;1986:1;2717:7;:18:::0;53927:7:::2;53948;45582:6:::0;;-1:-1:-1;;;;;45582:6:0;;45509:87;53948:7:::2;-1:-1:-1::0;;;;;53940:21:0::2;53969;53940:55;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53926:69;;;54010:2;54002:11;;;::::0;::::2;;-1:-1:-1::0;1942:1:0::1;2896:7;:22:::0;53630:475::o;33061:185::-;33199:39;33216:4;33222:2;33226:7;33199:39;;;;;;;;;;;;:16;:39::i;53229:76::-;45582:6;;-1:-1:-1;;;;;45582:6:0;5814:10;45729:23;45721:69;;;;-1:-1:-1;;;45721:69:0;;;;;;;:::i;:::-;53285:4:::1;:12:::0;53229:76::o;50880:134::-;45582:6;;-1:-1:-1;;;;;45582:6:0;5814:10;45729:23;45721:69;;;;-1:-1:-1;;;45721:69:0;;;;;;;:::i;:::-;50954:26:::1;:35:::0;;::::1;::::0;;::::1;::::0;::::1;-1:-1:-1::0;;50954:35:0;;::::1;::::0;;;::::1;::::0;;50880:134::o;30260:125::-;30324:7;30351:21;30364:7;30351:12;:21::i;:::-;:26;;30260:125;-1:-1:-1;;30260:125:0:o;27708:206::-;27772:7;-1:-1:-1;;;;;27796:19:0;;27792:60;;27824:28;;-1:-1:-1;;;27824:28:0;;;;;;;;;;;27792:60;-1:-1:-1;;;;;;27878:19:0;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;27878:27:0;;27708:206::o;46161:103::-;45582:6;;-1:-1:-1;;;;;45582:6:0;5814:10;45729:23;45721:69;;;;-1:-1:-1;;;45721:69:0;;;;;;;:::i;:::-;46226:30:::1;46253:1;46226:18;:30::i;:::-;46161:103::o:0;52782:102::-;45582:6;;-1:-1:-1;;;;;45582:6:0;5814:10;45729:23;45721:69;;;;-1:-1:-1;;;45721:69:0;;;;;;;:::i;:::-;52856:22;;::::1;::::0;:9:::1;::::0;:22:::1;::::0;::::1;::::0;::::1;:::i;51450:1217::-:0;51544:8;;;;51543:9;51535:48;;;;-1:-1:-1;;;51535:48:0;;10746:2:1;51535:48:0;;;10728:21:1;10785:2;10765:18;;;10758:30;10824:28;10804:18;;;10797:56;10870:18;;51535:48:0;10544:350:1;51535:48:0;51613:10;51599:25;;;;:13;:25;;;;;;;;51591:62;;;;-1:-1:-1;;;51591:62:0;;12220:2:1;51591:62:0;;;12202:21:1;12259:2;12239:18;;;12232:30;12298:25;12278:18;;;12271:53;12341:18;;51591:62:0;12018:347:1;51591:62:0;51700:9;;:13;;:9;;;:13;:::i;:::-;51670:43;;51686:11;51670:13;26842:12;;26632:7;26826:13;:28;;26588:303;51670:13;:27;;;;:::i;:::-;:43;51662:63;;;;-1:-1:-1;;;51662:63:0;;10004:2:1;51662:63:0;;;9986:21:1;10043:1;10023:18;;;10016:29;-1:-1:-1;;;10061:18:1;;;10054:37;10108:18;;51662:63:0;9802:330:1;51662:63:0;51780:22;;;;;;;51765:11;51741:21;51751:10;51741:9;:21::i;:::-;:35;;;;:::i;:::-;:61;;51732:103;;;;-1:-1:-1;;;51732:103:0;;11101:2:1;51732:103:0;;;11083:21:1;11140:2;11120:18;;;11113:30;11179;11159:18;;;11152:58;11227:18;;51732:103:0;10899:352:1;51732:103:0;51884:14;;51870:11;51847:20;;:34;;;;:::i;:::-;:51;51844:777;;;51965:9;51949:11;51933:13;;:27;;;;:::i;:::-;51932:42;;51910:116;;;;-1:-1:-1;;;51910:116:0;;13701:2:1;51910:116:0;;;13683:21:1;13740:2;13720:18;;;13713:30;-1:-1:-1;;;13759:18:1;;;13752:54;13823:18;;51910:116:0;13499:348:1;51910:116:0;51844:777;;;52099:26;;;;;;;52085:11;52061:21;52071:10;52061:9;:21::i;:::-;:35;;;;:::i;:::-;:64;52057:557;;;52193:9;52177:11;52161:13;;:27;;;;:::i;:::-;52160:42;;52138:116;;;;-1:-1:-1;;;52138:116:0;;13701:2:1;52138:116:0;;;13683:21:1;13740:2;13720:18;;;13713:30;-1:-1:-1;;;13759:18:1;;;13752:54;13823:18;;52138:116:0;13499:348:1;52138:116:0;52302:18;;;;;;;52287:33;;;52265:117;;;;-1:-1:-1;;;52265:117:0;;;;;;;:::i;52057:557::-;52456:26;;;;;;;52441:41;;;52415:137;;;;-1:-1:-1;;;52415:137:0;;;;;;;:::i;:::-;52591:11;52567:20;;:35;;;;;;;:::i;:::-;;;;-1:-1:-1;;52057:557:0;52627:34;52637:10;52649:11;52627:9;:34::i;:::-;51450:1217;:::o;51026:200::-;45582:6;;-1:-1:-1;;;;;45582:6:0;5814:10;45729:23;45721:69;;;;-1:-1:-1;;;45721:69:0;;;;;;;:::i;:::-;51119:7:::1;51115:101;51132:18;::::0;::::1;::::0;-1:-1:-1;51115:101:0::1;;;51200:4;51172:13;:25;51186:7;;51194:1;51186:10;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;51172:25:0::1;::::0;;::::1;::::0;::::1;::::0;;;;;;-1:-1:-1;51172:25:0;:32;;-1:-1:-1;;51172:32:0::1;::::0;::::1;;::::0;;;::::1;::::0;;51152:3;::::1;::::0;::::1;:::i;:::-;;;;51115:101;;51234:204:::0;45582:6;;-1:-1:-1;;;;;45582:6:0;5814:10;45729:23;45721:69;;;;-1:-1:-1;;;45721:69:0;;;;;;;:::i;:::-;51332:7:::1;51328:103;51345:18;::::0;::::1;::::0;-1:-1:-1;51328:103:0::1;;;51414:5;51386:13;:25;51400:7;;51408:1;51400:10;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;51386:25:0::1;::::0;;::::1;::::0;::::1;::::0;;;;;;-1:-1:-1;51386:25:0;:33;;-1:-1:-1;;51386:33:0::1;::::0;::::1;;::::0;;;::::1;::::0;;51365:3;::::1;::::0;::::1;:::i;:::-;;;;51328:103;;30621:104:::0;30677:13;30710:7;30703:14;;;;;:::i;48115:1140::-;48033:9;48046:10;48033:23;48025:66;;;;-1:-1:-1;;;48025:66:0;;11861:2:1;48025:66:0;;;11843:21:1;11900:2;11880:18;;;11873:30;11939:32;11919:18;;;11912:60;11989:18;;48025:66:0;11659:354:1;48025:66:0;48220:6:::1;::::0;::::1;::::0;::::1;;;48219:7;48211:43;;;::::0;-1:-1:-1;;;48211:43:0;;12933:2:1;48211:43:0::1;::::0;::::1;12915:21:1::0;12972:2;12952:18;;;12945:30;13011:25;12991:18;;;12984:53;13054:18;;48211:43:0::1;12731:347:1::0;48211:43:0::1;48299:9;::::0;:13:::1;::::0;:9:::1;;::::0;:13:::1;:::i;:::-;48269:43;;48285:11;48269:13;26842:12:::0;;26632:7;26826:13;:28;;26588:303;48269:13:::1;:27;;;;:::i;:::-;:43;48261:63;;;::::0;-1:-1:-1;;;48261:63:0;;10004:2:1;48261:63:0::1;::::0;::::1;9986:21:1::0;10043:1;10023:18;;;10016:29;-1:-1:-1;;;10061:18:1;;;10054:37;10108:18;;48261:63:0::1;9802:330:1::0;48261:63:0::1;48380:22;::::0;;;::::1;;;48365:11:::0;48341:21:::1;48351:10;48341:9;:21::i;:::-;:35;;;;:::i;:::-;:61;;48332:103;;;::::0;-1:-1:-1;;;48332:103:0;;11101:2:1;48332:103:0::1;::::0;::::1;11083:21:1::0;11140:2;11120:18;;;11113:30;11179;11159:18;;;11152:58;11227:18;;48332:103:0::1;10899:352:1::0;48332:103:0::1;48490:14;;48476:11;48453:20;;:34;;;;:::i;:::-;:51;48450:759;;;48562:9;48546:11;48539:4;;:18;;;;:::i;48450:759::-;48696:26;::::0;;;::::1;;;48682:11:::0;48658:21:::1;48668:10;48658:9;:21::i;:::-;:35;;;;:::i;:::-;:64;48654:548;;;48781:9;48765:11;48758:4;;:18;;;;:::i;32231:287::-:0;-1:-1:-1;;;;;32330:24:0;;5814:10;32330:24;32326:54;;;32363:17;;-1:-1:-1;;;32363:17:0;;;;;;;;;;;32326:54;5814:10;32393:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;32393:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;32393:53:0;;;;;;;;;;32462:48;;9178:41:1;;;32393:42:0;;5814:10;32462:48;;9151:18:1;32462:48:0;;;;;;;32231:287;;:::o;53386:107::-;45582:6;;-1:-1:-1;;;;;45582:6:0;5814:10;45729:23;45721:69;;;;-1:-1:-1;;;45721:69:0;;;;;;;:::i;:::-;53458:18:::1;:27:::0;;::::1;::::0;;::::1;::::0;::::1;-1:-1:-1::0;;53458:27:0;;::::1;::::0;;;::::1;::::0;;53386:107::o;33317:369::-;33484:28;33494:4;33500:2;33504:7;33484:9;:28::i;:::-;-1:-1:-1;;;;;33527:13:0;;7476:19;:23;;33527:76;;;;;33547:56;33578:4;33584:2;33588:7;33597:5;33547:30;:56::i;:::-;33546:57;33527:76;33523:156;;;33627:40;;-1:-1:-1;;;33627:40:0;;;;;;;;;;;33523:156;33317:369;;;;:::o;50188:490::-;50287:13;50328:17;50336:8;50328:7;:17::i;:::-;50312:98;;;;-1:-1:-1;;;50312:98:0;;13285:2:1;50312:98:0;;;13267:21:1;13324:2;13304:18;;;13297:30;13363:34;13343:18;;;13336:62;-1:-1:-1;;;13414:18:1;;;13407:45;13469:19;;50312:98:0;13083:411:1;50312:98:0;50428:6;;;;;;;50423:50;;50460:9;50453:16;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50188:490;;;:::o;50423:50::-;50487:28;50518:10;:8;:10::i;:::-;50487:41;;50573:1;50548:14;50542:28;:32;:130;;;;;;;;;;;;;;;;;50610:14;50626:19;:8;:17;:19::i;:::-;50647:9;50593:64;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;50542:130;50535:137;50188:490;-1:-1:-1;;;50188:490:0:o;49593:472::-;45582:6;;-1:-1:-1;;;;;45582:6:0;5814:10;45729:23;45721:69;;;;-1:-1:-1;;;45721:69:0;;;;;;;:::i;:::-;49692:18:::1;49720:13;26842:12:::0;;26632:7;26826:13;:28;;26588:303;49720:13:::1;49692:42:::0;-1:-1:-1;49742:16:0::1;49763:36;49783:9:::0;49763:36:::1;::::0;::::1;;:::i;:::-;49843:9;::::0;49742:57;;-1:-1:-1;49843:9:0::1;::::0;;::::1;::::0;49814:25:::1;::::0;49742:57;;49814:25;::::1;;:::i;:::-;:38;;49806:70;;;::::0;-1:-1:-1;;;49806:70:0;;9656:2:1;49806:70:0::1;::::0;::::1;9638:21:1::0;9695:2;9675:18;;;9668:30;-1:-1:-1;;;9714:18:1;;;9707:49;9773:18;;49806:70:0::1;9454:343:1::0;49806:70:0::1;49889:9;49884:116;49904:20:::0;;::::1;49884:116;;;49946:42;49956:9;;49966:1;49956:12;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;49970:17;49946:42;;:9;:42::i;:::-;49926:3:::0;::::1;::::0;::::1;:::i;:::-;;;;49884:116;;;-1:-1:-1::0;;;;;;49593:472:0:o;50765:106::-;45582:6;;-1:-1:-1;;;;;45582:6:0;5814:10;45729:23;45721:69;;;;-1:-1:-1;;;45721:69:0;;;;;;;:::i;:::-;50825:13:::1;:21:::0;50765:106::o;47187:23::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;46419:201::-;45582:6;;-1:-1:-1;;;;;45582:6:0;5814:10;45729:23;45721:69;;;;-1:-1:-1;;;45721:69:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;46508:22:0;::::1;46500:73;;;::::0;-1:-1:-1;;;46500:73:0;;10339:2:1;46500:73:0::1;::::0;::::1;10321:21:1::0;10378:2;10358:18;;;10351:30;10417:34;10397:18;;;10390:62;-1:-1:-1;;;10468:18:1;;;10461:36;10514:19;;46500:73:0::1;10137:402:1::0;46500:73:0::1;46584:28;46603:8;46584:18;:28::i;33941:187::-:0;33998:4;34062:13;;34052:7;:23;34022:98;;;;-1:-1:-1;;34093:20:0;;;;:11;:20;;;;;:27;-1:-1:-1;;;34093:27:0;;;;34092:28;;33941:187::o;42111:196::-;42226:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;42226:29:0;-1:-1:-1;;;;;42226:29:0;;;;;;;;;42271:28;;42226:24;;42271:28;;;;;;;42111:196;;;:::o;37054:2130::-;37169:35;37207:21;37220:7;37207:12;:21::i;:::-;37169:59;;37267:4;-1:-1:-1;;;;;37245:26:0;:13;:18;;;-1:-1:-1;;;;;37245:26:0;;37241:67;;37280:28;;-1:-1:-1;;;37280:28:0;;;;;;;;;;;37241:67;37321:22;5814:10;-1:-1:-1;;;;;37347:20:0;;;;:73;;-1:-1:-1;37384:36:0;37401:4;5814:10;32589:164;:::i;37384:36::-;37347:126;;;-1:-1:-1;5814:10:0;37437:20;37449:7;37437:11;:20::i;:::-;-1:-1:-1;;;;;37437:36:0;;37347:126;37321:153;;37492:17;37487:66;;37518:35;;-1:-1:-1;;;37518:35:0;;;;;;;;;;;37487:66;-1:-1:-1;;;;;37568:16:0;;37564:52;;37593:23;;-1:-1:-1;;;37593:23:0;;;;;;;;;;;37564:52;37737:35;37754:1;37758:7;37767:4;37737:8;:35::i;:::-;-1:-1:-1;;;;;38068:18:0;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;38068:31:0;;;-1:-1:-1;;;;;38068:31:0;;;-1:-1:-1;;38068:31:0;;;;;;;38114:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;38114:29:0;;;;;;;;;;;38194:20;;;:11;:20;;;;;;38229:18;;-1:-1:-1;;;;;;38262:49:0;;;;-1:-1:-1;;;38295:15:0;38262:49;;;;;;;;;;38585:11;;38645:24;;;;;38688:13;;38194:20;;38645:24;;38688:13;38684:384;;38898:13;;38883:11;:28;38879:174;;38936:20;;39005:28;;;;-1:-1:-1;;;;;38979:54:0;-1:-1:-1;;;38979:54:0;-1:-1:-1;;;;;;38979:54:0;;;-1:-1:-1;;;;;38936:20:0;;38979:54;;;;38879:174;38043:1036;;;39115:7;39111:2;-1:-1:-1;;;;;39096:27:0;39105:4;-1:-1:-1;;;;;39096:27:0;;;;;;;;;;;39134:42;37158:2026;;37054:2130;;;:::o;34136:104::-;34205:27;34215:2;34219:8;34205:27;;;;;;;;;;;;:9;:27::i;29089:1109::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;29200:7:0;29283:13;;29276:4;:20;29245:886;;;29317:31;29351:17;;;:11;:17;;;;;;;;;29317:51;;;;;;;;;-1:-1:-1;;;;;29317:51:0;;;;-1:-1:-1;;;29317:51:0;;-1:-1:-1;;;;;29317:51:0;;;;;;;;-1:-1:-1;;;29317:51:0;;;;;;;;;;;;;;29387:729;;29437:14;;-1:-1:-1;;;;;29437:28:0;;29433:101;;29501:9;29089:1109;-1:-1:-1;;;29089:1109:0:o;29433:101::-;-1:-1:-1;;;29876:6:0;29921:17;;;;:11;:17;;;;;;;;;29909:29;;;;;;;;;-1:-1:-1;;;;;29909:29:0;;;;;-1:-1:-1;;;29909:29:0;;-1:-1:-1;;;;;29909:29:0;;;;;;;;-1:-1:-1;;;29909:29:0;;;;;;;;;;;;;29969:28;29965:109;;30037:9;29089:1109;-1:-1:-1;;;29089:1109:0:o;29965:109::-;29836:261;;;29298:833;29245:886;30159:31;;-1:-1:-1;;;30159:31:0;;;;;;;;;;;46780:191;46873:6;;;-1:-1:-1;;;;;46890:17:0;;;-1:-1:-1;;;;;;46890:17:0;;;;;;;46923:40;;46873:6;;;46890:17;46873:6;;46923:40;;46854:16;;46923:40;46843:128;46780:191;:::o;42799:667::-;42983:72;;-1:-1:-1;;;42983:72:0;;42962:4;;-1:-1:-1;;;;;42983:36:0;;;;;:72;;5814:10;;43034:4;;43040:7;;43049:5;;42983:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;42983:72:0;;;;;;;;-1:-1:-1;;42983:72:0;;;;;;;;;;;;:::i;:::-;;;42979:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;43217:13:0;;43213:235;;43263:40;;-1:-1:-1;;;43263:40:0;;;;;;;;;;;43213:235;43406:6;43400:13;43391:6;43387:2;43383:15;43376:38;42979:480;-1:-1:-1;;;;;;43102:55:0;-1:-1:-1;;;43102:55:0;;-1:-1:-1;42979:480:0;42799:667;;;;;;:::o;54113:97::-;54166:13;54195:9;54188:16;;;;;:::i;3296:723::-;3352:13;3573:10;3569:53;;-1:-1:-1;;3600:10:0;;;;;;;;;;;;-1:-1:-1;;;3600:10:0;;;;;3296:723::o;3569:53::-;3647:5;3632:12;3688:78;3695:9;;3688:78;;3721:8;;;;:::i;:::-;;-1:-1:-1;3744:10:0;;-1:-1:-1;3752:2:0;3744:10;;:::i;:::-;;;3688:78;;;3776:19;3808:6;-1:-1:-1;;;;;3798:17:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;3798:17:0;;3776:39;;3826:154;3833:10;;3826:154;;3860:11;3870:1;3860:11;;:::i;:::-;;-1:-1:-1;3929:10:0;3937:2;3929:5;:10;:::i;:::-;3916:24;;:2;:24;:::i;:::-;3903:39;;3886:6;3893;3886:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;3886:56:0;;;;;;;;-1:-1:-1;3957:11:0;3966:2;3957:11;;:::i;:::-;;;3826:154;;34603:163;34726:32;34732:2;34736:8;34746:5;34753:4;35164:20;35187:13;-1:-1:-1;;;;;35215:16:0;;35211:48;;35240:19;;-1:-1:-1;;;35240:19:0;;;;;;;;;;;35211:48;35274:13;35270:44;;35296:18;;-1:-1:-1;;;35296:18:0;;;;;;;;;;;35270:44;-1:-1:-1;;;;;35665:16:0;;;;;;:12;:16;;;;;;;;:44;;-1:-1:-1;;35724:49:0;;-1:-1:-1;;;;;35665:44:0;;;;;;;35724:49;;;;-1:-1:-1;;35665:44:0;;;;;;35724:49;;;;;;;;;;;;;;;;35790:25;;;:11;:25;;;;;;:35;;-1:-1:-1;;;;;;35840:66:0;;;;-1:-1:-1;;;35890:15:0;35840:66;;;;;;;;;;35790:25;35987:23;;;36031:4;:23;;;;-1:-1:-1;;;;;;36039:13:0;;7476:19;:23;;36039:15;36027:641;;;36075:314;36106:38;;36131:12;;-1:-1:-1;;;;;36106:38:0;;;36123:1;;36106:38;;36123:1;;36106:38;36172:69;36211:1;36215:2;36219:14;;;;;;36235:5;36172:30;:69::i;:::-;36167:174;;36277:40;;-1:-1:-1;;;36277:40:0;;;;;;;;;;;36167:174;36384:3;36368:12;:19;;36075:314;;36470:12;36453:13;;:29;36449:43;;36484:8;;;36449:43;36027:641;;;36533:120;36564:40;;36589:14;;;;;-1:-1:-1;;;;;36564:40:0;;;36581:1;;36564:40;;36581:1;;36564:40;36648:3;36632:12;:19;;36533:120;;36027:641;-1:-1:-1;36682:13:0;:28;36732:60;33317:369;-1:-1:-1;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:631:1;78:5;-1:-1:-1;;;;;149:2:1;141:6;138:14;135:40;;;155:18;;:::i;:::-;230:2;224:9;198:2;284:15;;-1:-1:-1;;280:24:1;;;306:2;276:33;272:42;260:55;;;330:18;;;350:22;;;327:46;324:72;;;376:18;;:::i;:::-;416:10;412:2;405:22;445:6;436:15;;475:6;467;460:22;515:3;506:6;501:3;497:16;494:25;491:45;;;532:1;529;522:12;491:45;582:6;577:3;570:4;562:6;558:17;545:44;637:1;630:4;621:6;613;609:19;605:30;598:41;;;;14:631;;;;;:::o;650:173::-;718:20;;-1:-1:-1;;;;;767:31:1;;757:42;;747:70;;813:1;810;803:12;747:70;650:173;;;:::o;828:367::-;891:8;901:6;955:3;948:4;940:6;936:17;932:27;922:55;;973:1;970;963:12;922:55;-1:-1:-1;996:20:1;;-1:-1:-1;;;;;1028:30:1;;1025:50;;;1071:1;1068;1061:12;1025:50;1108:4;1100:6;1096:17;1084:29;;1168:3;1161:4;1151:6;1148:1;1144:14;1136:6;1132:27;1128:38;1125:47;1122:67;;;1185:1;1182;1175:12;1122:67;828:367;;;;;:::o;1200:159::-;1267:20;;1327:6;1316:18;;1306:29;;1296:57;;1349:1;1346;1339:12;1364:156;1430:20;;1490:4;1479:16;;1469:27;;1459:55;;1510:1;1507;1500:12;1525:186;1584:6;1637:2;1625:9;1616:7;1612:23;1608:32;1605:52;;;1653:1;1650;1643:12;1605:52;1676:29;1695:9;1676:29;:::i;1716:260::-;1784:6;1792;1845:2;1833:9;1824:7;1820:23;1816:32;1813:52;;;1861:1;1858;1851:12;1813:52;1884:29;1903:9;1884:29;:::i;:::-;1874:39;;1932:38;1966:2;1955:9;1951:18;1932:38;:::i;:::-;1922:48;;1716:260;;;;;:::o;1981:328::-;2058:6;2066;2074;2127:2;2115:9;2106:7;2102:23;2098:32;2095:52;;;2143:1;2140;2133:12;2095:52;2166:29;2185:9;2166:29;:::i;:::-;2156:39;;2214:38;2248:2;2237:9;2233:18;2214:38;:::i;:::-;2204:48;;2299:2;2288:9;2284:18;2271:32;2261:42;;1981:328;;;;;:::o;2314:666::-;2409:6;2417;2425;2433;2486:3;2474:9;2465:7;2461:23;2457:33;2454:53;;;2503:1;2500;2493:12;2454:53;2526:29;2545:9;2526:29;:::i;:::-;2516:39;;2574:38;2608:2;2597:9;2593:18;2574:38;:::i;:::-;2564:48;;2659:2;2648:9;2644:18;2631:32;2621:42;;2714:2;2703:9;2699:18;2686:32;-1:-1:-1;;;;;2733:6:1;2730:30;2727:50;;;2773:1;2770;2763:12;2727:50;2796:22;;2849:4;2841:13;;2837:27;-1:-1:-1;2827:55:1;;2878:1;2875;2868:12;2827:55;2901:73;2966:7;2961:2;2948:16;2943:2;2939;2935:11;2901:73;:::i;:::-;2891:83;;;2314:666;;;;;;;:::o;2985:347::-;3050:6;3058;3111:2;3099:9;3090:7;3086:23;3082:32;3079:52;;;3127:1;3124;3117:12;3079:52;3150:29;3169:9;3150:29;:::i;:::-;3140:39;;3229:2;3218:9;3214:18;3201:32;3276:5;3269:13;3262:21;3255:5;3252:32;3242:60;;3298:1;3295;3288:12;3242:60;3321:5;3311:15;;;2985:347;;;;;:::o;3337:254::-;3405:6;3413;3466:2;3454:9;3445:7;3441:23;3437:32;3434:52;;;3482:1;3479;3472:12;3434:52;3505:29;3524:9;3505:29;:::i;:::-;3495:39;3581:2;3566:18;;;;3553:32;;-1:-1:-1;;;3337:254:1:o;3596:437::-;3682:6;3690;3743:2;3731:9;3722:7;3718:23;3714:32;3711:52;;;3759:1;3756;3749:12;3711:52;3799:9;3786:23;-1:-1:-1;;;;;3824:6:1;3821:30;3818:50;;;3864:1;3861;3854:12;3818:50;3903:70;3965:7;3956:6;3945:9;3941:22;3903:70;:::i;:::-;3992:8;;3877:96;;-1:-1:-1;3596:437:1;-1:-1:-1;;;;3596:437:1:o;4038:245::-;4096:6;4149:2;4137:9;4128:7;4124:23;4120:32;4117:52;;;4165:1;4162;4155:12;4117:52;4204:9;4191:23;4223:30;4247:5;4223:30;:::i;4288:249::-;4357:6;4410:2;4398:9;4389:7;4385:23;4381:32;4378:52;;;4426:1;4423;4416:12;4378:52;4458:9;4452:16;4477:30;4501:5;4477:30;:::i;4542:450::-;4611:6;4664:2;4652:9;4643:7;4639:23;4635:32;4632:52;;;4680:1;4677;4670:12;4632:52;4720:9;4707:23;-1:-1:-1;;;;;4745:6:1;4742:30;4739:50;;;4785:1;4782;4775:12;4739:50;4808:22;;4861:4;4853:13;;4849:27;-1:-1:-1;4839:55:1;;4890:1;4887;4880:12;4839:55;4913:73;4978:7;4973:2;4960:16;4955:2;4951;4947:11;4913:73;:::i;4997:184::-;5055:6;5108:2;5096:9;5087:7;5083:23;5079:32;5076:52;;;5124:1;5121;5114:12;5076:52;5147:28;5165:9;5147:28;:::i;5186:258::-;5253:6;5261;5314:2;5302:9;5293:7;5289:23;5285:32;5282:52;;;5330:1;5327;5320:12;5282:52;5353:28;5371:9;5353:28;:::i;5449:180::-;5508:6;5561:2;5549:9;5540:7;5536:23;5532:32;5529:52;;;5577:1;5574;5567:12;5529:52;-1:-1:-1;5600:23:1;;5449:180;-1:-1:-1;5449:180:1:o;5634:182::-;5691:6;5744:2;5732:9;5723:7;5719:23;5715:32;5712:52;;;5760:1;5757;5750:12;5712:52;5783:27;5800:9;5783:27;:::i;5821:507::-;5914:6;5922;5930;5983:2;5971:9;5962:7;5958:23;5954:32;5951:52;;;5999:1;5996;5989:12;5951:52;6022:27;6039:9;6022:27;:::i;:::-;6012:37;;6100:2;6089:9;6085:18;6072:32;-1:-1:-1;;;;;6119:6:1;6116:30;6113:50;;;6159:1;6156;6149:12;6113:50;6198:70;6260:7;6251:6;6240:9;6236:22;6198:70;:::i;:::-;5821:507;;6287:8;;-1:-1:-1;6172:96:1;;-1:-1:-1;;;;5821:507:1:o;6333:257::-;6374:3;6412:5;6406:12;6439:6;6434:3;6427:19;6455:63;6511:6;6504:4;6499:3;6495:14;6488:4;6481:5;6477:16;6455:63;:::i;:::-;6572:2;6551:15;-1:-1:-1;;6547:29:1;6538:39;;;;6579:4;6534:50;;6333:257;-1:-1:-1;;6333:257:1:o;6595:1527::-;6819:3;6857:6;6851:13;6883:4;6896:51;6940:6;6935:3;6930:2;6922:6;6918:15;6896:51;:::i;:::-;7010:13;;6969:16;;;;7032:55;7010:13;6969:16;7054:15;;;7032:55;:::i;:::-;7176:13;;7109:20;;;7149:1;;7236;7258:18;;;;7311;;;;7338:93;;7416:4;7406:8;7402:19;7390:31;;7338:93;7479:2;7469:8;7466:16;7446:18;7443:40;7440:167;;;-1:-1:-1;;;7506:33:1;;7562:4;7559:1;7552:15;7592:4;7513:3;7580:17;7440:167;7623:18;7650:110;;;;7774:1;7769:328;;;;7616:481;;7650:110;-1:-1:-1;;7685:24:1;;7671:39;;7730:20;;;;-1:-1:-1;7650:110:1;;7769:328;14849:1;14842:14;;;14886:4;14873:18;;7864:1;7878:169;7892:8;7889:1;7886:15;7878:169;;;7974:14;;7959:13;;;7952:37;8017:16;;;;7909:10;;7878:169;;;7882:3;;8078:8;8071:5;8067:20;8060:27;;7616:481;-1:-1:-1;8113:3:1;;6595:1527;-1:-1:-1;;;;;;;;;;;6595:1527:1:o;8545:488::-;-1:-1:-1;;;;;8814:15:1;;;8796:34;;8866:15;;8861:2;8846:18;;8839:43;8913:2;8898:18;;8891:34;;;8961:3;8956:2;8941:18;;8934:31;;;8739:4;;8982:45;;9007:19;;8999:6;8982:45;:::i;:::-;8974:53;8545:488;-1:-1:-1;;;;;;8545:488:1:o;9230:219::-;9379:2;9368:9;9361:21;9342:4;9399:44;9439:2;9428:9;9424:18;9416:6;9399:44;:::i;11256:398::-;11458:2;11440:21;;;11497:2;11477:18;;;11470:30;11536:34;11531:2;11516:18;;11509:62;-1:-1:-1;;;11602:2:1;11587:18;;11580:32;11644:3;11629:19;;11256:398::o;12370:356::-;12572:2;12554:21;;;12591:18;;;12584:30;12650:34;12645:2;12630:18;;12623:62;12717:2;12702:18;;12370:356::o;14902:224::-;14941:3;14969:6;15002:2;14999:1;14995:10;15032:2;15029:1;15025:10;15063:3;15059:2;15055:12;15050:3;15047:21;15044:47;;;15071:18;;:::i;:::-;15107:13;;14902:224;-1:-1:-1;;;;14902:224:1:o;15131:128::-;15171:3;15202:1;15198:6;15195:1;15192:13;15189:39;;;15208:18;;:::i;:::-;-1:-1:-1;15244:9:1;;15131:128::o;15264:120::-;15304:1;15330;15320:35;;15335:18;;:::i;:::-;-1:-1:-1;15369:9:1;;15264:120::o;15389:168::-;15429:7;15495:1;15491;15487:6;15483:14;15480:1;15477:21;15472:1;15465:9;15458:17;15454:45;15451:71;;;15502:18;;:::i;:::-;-1:-1:-1;15542:9:1;;15389:168::o;15562:125::-;15602:4;15630:1;15627;15624:8;15621:34;;;15635:18;;:::i;:::-;-1:-1:-1;15672:9:1;;15562:125::o;15692:258::-;15764:1;15774:113;15788:6;15785:1;15782:13;15774:113;;;15864:11;;;15858:18;15845:11;;;15838:39;15810:2;15803:10;15774:113;;;15905:6;15902:1;15899:13;15896:48;;;-1:-1:-1;;15940:1:1;15922:16;;15915:27;15692:258::o;15955:380::-;16034:1;16030:12;;;;16077;;;16098:61;;16152:4;16144:6;16140:17;16130:27;;16098:61;16205:2;16197:6;16194:14;16174:18;16171:38;16168:161;;;16251:10;16246:3;16242:20;16239:1;16232:31;16286:4;16283:1;16276:15;16314:4;16311:1;16304:15;16168:161;;15955:380;;;:::o;16340:135::-;16379:3;-1:-1:-1;;16400:17:1;;16397:43;;;16420:18;;:::i;:::-;-1:-1:-1;16467:1:1;16456:13;;16340:135::o;16480:175::-;16517:3;16561:4;16554:5;16550:16;16590:4;16581:7;16578:17;16575:43;;;16598:18;;:::i;:::-;16647:1;16634:15;;16480:175;-1:-1:-1;;16480:175:1:o;16660:112::-;16692:1;16718;16708:35;;16723:18;;:::i;:::-;-1:-1:-1;16757:9:1;;16660:112::o;16777:127::-;16838:10;16833:3;16829:20;16826:1;16819:31;16869:4;16866:1;16859:15;16893:4;16890:1;16883:15;16909:127;16970:10;16965:3;16961:20;16958:1;16951:31;17001:4;16998:1;16991:15;17025:4;17022:1;17015:15;17041:127;17102:10;17097:3;17093:20;17090:1;17083:31;17133:4;17130:1;17123:15;17157:4;17154:1;17147:15;17173:127;17234:10;17229:3;17225:20;17222:1;17215:31;17265:4;17262:1;17255:15;17289:4;17286:1;17279:15;17305:131;-1:-1:-1;;;;;;17379:32:1;;17369:43;;17359:71;;17426:1;17423;17416:12
Swarm Source
ipfs://62eecb9ab9bd59b703d70be0c744be1066231be40eb3ba74d9ec04399e1f845a
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.