ERC-721
Overview
Max Total Supply
397 WST
Holders
75
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
5 WSTLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Source Code Verified (Exact Match)
Contract Name:
WastelandPunks
Compiler Version
v0.8.7+commit.e28d00a7
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-05-08 */ /** *Submitted for verification at Etherscan.io on 2022-02-20 */ // SPDX-License-Identifier: MIT // File: @openzeppelin/contracts/utils/Counters.sol // OpenZeppelin Contracts v4.4.1 (utils/Counters.sol) pragma solidity ^0.8.0; /** * DEvChainn * * * Include with `using Counters for Counters.Counter;` */ library Counters { struct Counter { // This variable should never be directly accessed by users of the library: interactions must be restricted to // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add uint256 _value; // default: 0 } function current(Counter storage counter) internal view returns (uint256) { return counter._value; } function increment(Counter storage counter) internal { unchecked { counter._value += 1; } } function decrement(Counter storage counter) internal { uint256 value = counter._value; require(value > 0, "Counter: decrement overflow"); unchecked { counter._value = value - 1; } } function reset(Counter storage counter) internal { counter._value = 0; } } // 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/access/Ownable.sol // OpenZeppelin Contracts v4.4.1 (access/Ownable.sol) pragma solidity ^0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // File: @openzeppelin/contracts/utils/Address.sol // OpenZeppelin Contracts v4.4.1 (utils/Address.sol) pragma solidity ^0.8.0; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; assembly { size := extcodesize(account) } return size > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } // 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: @openzeppelin/contracts/token/ERC721/ERC721.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/ERC721.sol) pragma solidity ^0.8.0; /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension, but not including the Enumerable extension, which is available separately as * {ERC721Enumerable}. */ contract ERC721 is Context, ERC165, IERC721, IERC721Metadata { using Address for address; using Strings for uint256; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to owner address mapping(uint256 => address) private _owners; // Mapping owner address to token count mapping(address => uint256) private _balances; // Mapping from token ID to approved address mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; /** * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view virtual override returns (uint256) { require(owner != address(0), "ERC721: balance query for the zero address"); return _balances[owner]; } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { address owner = _owners[tokenId]; require(owner != address(0), "ERC721: owner query for nonexistent token"); return owner; } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token"); string memory baseURI = _baseURI(); return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ""; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overriden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ""; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public virtual override { address owner = ERC721.ownerOf(tokenId); require(to != owner, "ERC721: approval to current owner"); require( _msgSender() == owner || isApprovedForAll(owner, _msgSender()), "ERC721: approve caller is not owner nor approved for all" ); _approve(to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { require(_exists(tokenId), "ERC721: approved query for nonexistent token"); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { _setApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { //solhint-disable-next-line max-line-length require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ""); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public virtual override { require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _safeTransfer(from, to, tokenId, _data); } /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * `_data` is additional data, it has no specified format and it is sent in call to `to`. * * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g. * implement alternative mechanisms to perform token transfer, such as signature-based. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeTransfer( address from, address to, uint256 tokenId, bytes memory _data ) internal virtual { _transfer(from, to, tokenId); require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer"); } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), * and stop existing when they are burned (`_burn`). */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return _owners[tokenId] != address(0); } /** * @dev Returns whether `spender` is allowed to manage `tokenId`. * * Requirements: * * - `tokenId` must exist. */ function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) { require(_exists(tokenId), "ERC721: operator query for nonexistent token"); address owner = ERC721.ownerOf(tokenId); return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender)); } /** * @dev Safely mints `tokenId` and transfers it to `to`. * * Requirements: * * - `tokenId` must not exist. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeMint(address to, uint256 tokenId) internal virtual { _safeMint(to, tokenId, ""); } /** * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is * forwarded in {IERC721Receiver-onERC721Received} to contract recipients. */ function _safeMint( address to, uint256 tokenId, bytes memory _data ) internal virtual { _mint(to, tokenId); require( _checkOnERC721Received(address(0), to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer" ); } /** * @dev Mints `tokenId` and transfers it to `to`. * * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible * * Requirements: * * - `tokenId` must not exist. * - `to` cannot be the zero address. * * Emits a {Transfer} event. */ function _mint(address to, uint256 tokenId) internal virtual { require(to != address(0), "ERC721: mint to the zero address"); require(!_exists(tokenId), "ERC721: token already minted"); _beforeTokenTransfer(address(0), to, tokenId); _balances[to] += 1; _owners[tokenId] = to; emit Transfer(address(0), to, tokenId); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId) internal virtual { address owner = ERC721.ownerOf(tokenId); _beforeTokenTransfer(owner, address(0), tokenId); // Clear approvals _approve(address(0), tokenId); _balances[owner] -= 1; delete _owners[tokenId]; emit Transfer(owner, address(0), tokenId); } /** * @dev Transfers `tokenId` from `from` to `to`. * As opposed to {transferFrom}, this imposes no restrictions on msg.sender. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) internal virtual { require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer of token that is not own"); require(to != address(0), "ERC721: transfer to the zero address"); _beforeTokenTransfer(from, to, tokenId); // Clear approvals from the previous owner _approve(address(0), tokenId); _balances[from] -= 1; _balances[to] += 1; _owners[tokenId] = to; emit Transfer(from, to, tokenId); } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve(address to, uint256 tokenId) internal virtual { _tokenApprovals[tokenId] = to; emit Approval(ERC721.ownerOf(tokenId), to, tokenId); } /** * @dev Approve `operator` to operate on all of `owner` tokens * * Emits a {ApprovalForAll} event. */ function _setApprovalForAll( address owner, address operator, bool approved ) internal virtual { require(owner != operator, "ERC721: approve to caller"); _operatorApprovals[owner][operator] = approved; emit ApprovalForAll(owner, operator, approved); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address. * The call is not executed if the target address is not a contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { if (to.isContract()) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) { return retval == IERC721Receiver.onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert("ERC721: transfer to non ERC721Receiver implementer"); } else { assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, ``from``'s `tokenId` will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual {} } // File: contracts/LowGas.sol pragma solidity >=0.7.0 <0.9.0; contract WastelandPunks is ERC721, Ownable { using Strings for uint256; using Counters for Counters.Counter; Counters.Counter private supply; string public uriPrefix = ""; string public uriSuffix = ".json"; string public hiddenMetadataUri; uint256 public cost = 0.05 ether; uint256 public maxSupply = 3048; uint256 public maxMintAmountPerTx = 50; bool public paused = true; bool public revealed = false; bool public preSaleStatus = true; address[] public preSaleAddresses = [0xd77f6B5C81c1d8e62503e1c8c8495f43E7B2c4D9, 0xC06782b99d7D021b2018553769B9ab66F82B5cBC, 0x75bBA918fE0587356988ba0efdCFCF73dA0cFcC6, 0x7399C07068c29b522d7f1bFe5dfB005CC781Bd6C, 0xeF38cA7f49E6B172Fe3543587dfdffB9f75f1498, 0xF87ec4F219021f767367897447ac960f1D9daBc1, 0xF83dEfe97102B583671377Cc444c92c32BCBC59b, 0x197E8650d665fbA9BfD0F110750019CB39fA2A42, 0x1FaaC2dd1940e5143273C5a5D6CB993b502D20b9, 0x38b43Cf17D81c75bAD091BB118dB8598eDF55Eb2, 0x4966C72D6513356204f5D150929aecE09A665e90, 0x1C27F2a41bd43D6366A9cF8D9cF67c89Fc417dfA, 0x3e8C9A71431BBcB4e4203D5ab9Aa78A0D0394478, 0xe142512Ad80Daf3456c53507C99cEf15b9D76221, 0x5B33ea8B7836FF4D14C75F0d461Fc67a23D777F0, 0x80d152E53521ffCF5D7472ebeF30678d23110d5D, 0xDAd299bacADB2A99128F6B52817D35C022c8EF82, 0x591F8a2deCC1c86cce0c7Bea22Fa921c2c72fb95, 0x05C985db49d9E29aa66b465F18c7c6dD244E9774, 0x7217BC604476859303A27f111b187526231A300C, 0x87afb7291bF5c01a978350CcEFD2B4eC9316e02A, 0x8970007d0200d2410F598dF6E3e42946C291F0FC, 0xac4Fc21121e9B913dA76E308B2C184d76549eCf2, 0x917E23dd458613E6491a7EC91785E7f38eE663Cf, 0xB1Dc955De30f67fa90A9947E7ce22452717f3ffB, 0xD0701bfdb70f69C7b1855Db1099c8AbbeCaF9310, 0x1A2Be848d7958570966cC20b1C521d8945cDA8C1, 0xdb2FC4892a423476C063C684fBa34196f9fd939D, 0x8C9A5a7027331F70786D55848F9A1E874837715a, 0x47320B27870c9F7549180aA77B0f3BEd292a8b1F, 0xF80503a6Fa7aCd35F967800B98E62c41cfF75578, 0x7B6cA25C82e99255B3ca17b2981F523f6cF4D6E2, 0x1d6F98437Bf470d42623363aA9Ee179eF0aDAcbE, 0x0AA5bc85694016AdAC33F1a2c26911DB64727dce, 0xb5A34ebb716BdB75E65a41B2C5ce015A9796d7c5, 0x0C71Cf74e219231F0DDe8b523d4Faf6E057d5961, 0x22406138DbbBfCd89b1cbC2Ec14517B993BA618E, 0x77f478a73858F55973e6Ad80F57502793730b721, 0xDeCf6cC45e4F1816fC75C3b2AeD1e7BF02C43E52, 0x078ad2Aa3B4527e4996D087906B2a3DA51BbA122, 0x965E5987E9A93320dE59045761B11851006ed128, 0xC4606500a01c6aF7c06929B19a8bFc148975cEbc, 0x7935C7EdD3C873D32885fd016C07741400104FeD, 0xB74CAe0866AB29b1A15fad8ff942ADE413fd5128, 0xAB0481a946ed0f4aFC37B39C85983e3eFa7EA662, 0xbDcfCA7a4e2D93910Face975891AE4AD2DcA72c6, 0x4698917d0f308658270fAf65973a9872B99215F2, 0x6bcFB9eE376Ccbe2fFFD792262cF583528F48f0c, 0x64ddFa007693d27edE9e6376d70A9db2f38DD081, 0x9498390c3F51A256cCfabe9AEF961E1D246dc58e, 0x228b8B3A8B34EfA3c7a86ca1ae3903910CdC2411, 0xd644E92E26884d3d3967BebF82D553c48B5C89DE, 0x465d7fC45e512923125327707Ca97359Ddb8A1dF, 0xBce1107892F0F90a14977a72b66993852223Bc20, 0x0d490e7854266ADD559A614722Dedc3244CEec19, 0x51f1d95CC6651537B7C497F4d146e4E9aa92565b, 0xD7f3113c43Bba35CFBB68B641A2CF7AdEd4608d8, 0x64E3DDF498fC1f5C661Ecd64984c03fCEdBdD7E1, 0x0b281116Be22a5840AEffC2dC7E2BaCFfE93E6f8, 0x8357063C3Ec4190A6Cbb3500B2650Faf7DA14213, 0xf114702D3cA73d698379199B49d5e032121653f4, 0x137eFfbB0b405CD6A3C549E53dd6244a439c514d, 0x9F18598D7efd3bc6aC7Cf1bb12e8c779e6F196EE, 0x8209948e8D95AC1C777fdA113357cBeD68A0C408, 0xe33064669F8Cf1a30BbC39360cafAF4147fA39BD, 0xA6317DE8f416c2075F730E5967FFEB13c34b7432, 0x89a142a174cd779F04acbF60Ba45EE3FcBEED7AC, 0xD1AffC36432954654D0C73Ec294028b2B485Eb52, 0x9FAD9aDd02571a8069Ef95DD9018a9F68f2018ac, 0xb235A7596B49A93735FF6eF3C3C1d02eB2E1A9e5, 0x754D49Ababe87C2841FBf26857686b66FE1F0b2A, 0x115Dc8EAc32c9d159CB70326885FC1f0E32573aC, 0x1698580b76CcE1e05E167FD509a5d526c1B1b477, 0x87d5E5085fA722fb5D263fA4C7B51D52A21146D3, 0xcDf8A7B86Cde14b01916A44382d54815a288E489, 0x359574689752f6fC7191Dd5f068E9fE87303D326, 0x26D7B4fe67f4601643304b5023b3CAF3A72E8504, 0xea272187f5E0D78b038604E81E95f3C978bAEd66, 0x2D9446aEd152F935106F982B72D4E26b75Ac692f, 0xf25AE6726AB69f74b5188C8C215E833375b5a1D9, 0x72faCc43568f55Bc4fC04B038fe9A76baa1a67C9, 0x3174F55D5E7bC11FBb18a32AFD44dC450A377D56, 0x2BA3C2A8807334Cf419f00266126FF8655e2191c, 0xAb92A6aE341c3052C632cA4690EA921353C4a511, 0x3F5535777B429FBdaFB21d6f6f47849e479b38D0, 0x3E9eA7007bE15581DC4b2806a457B54a65FFA303, 0x2261604819159311A59f2bA4A1b63A1e4B3e7dB6, 0x4BBC3eB245d60614DfCB0c3ccb757377b79C6bA4, 0xcb879039e0E4f64dF03969c99a77c7540dA0486c, 0x84dc717Cc359aC9CdA863E5a68Dc3aAF156ABF90, 0x4911e4E2f0254694Ab6C3eB66f14B873f58d59B6, 0xbEA020c3bD417f30De4d6bd05b0ED310ac586cc0, 0xD57721B29F2A17AB6A0635210CE05dBbECF5cBF4, 0x375Fb99F3aC98029E40EF3B0667032924B8bD070, 0x41bf1cCEE665F2FbC606AE3B02BF07038F0471F1, 0x7A6e8A56C7F0cBAd1999b9251213E5918b05eFB3, 0x6A1Bcf7cC433c3281feEeD22d9EeB517f3d17020, 0xA773139877452E9ed7A964AEa32b1fe1587504B4, 0x8981a87033Bc2344f2704Ce3F8f0c5d1Bf009DfB, 0x507ac9EBd29828eB7F34e304BAde3930f3dE5D96, 0xFeCE06C6B042D2C23FDF53864cbC8D592c61b864, 0x49ECAa6D98EFb48A2FEfc3C9A1194e5E602bEF2F, 0xeafA33e161B4eD608b501f818Eaf8F1D6a951aC2, 0x2031d7b7603938341dBFd41888490A267035F093, 0xfC92725AdF47a4Dc0839A41a609b3474fb8018c6, 0x25A7556946d9307C729577b598129bbDB828B5d7, 0x6739e546097e25547C5492d7Bd9296DC13077694, 0xfA3b2Ecce2871b36037E18144e81A1Bc3c16F612, 0x08fba75E7C0F89782fc6ee2b3845F7270FDAC14e, 0x25B534ca6989B7B2037A2b141580A3CfD1629634, 0x252acd2872613217A9d583a7d2537ae838b90f0e, 0x87aEc0decd539a4f69EB41A49aa45a9D2eC83916, 0xD5201b7dd76dF013c15DbD1e9AD7254daA2D90D4, 0x06a906DF3e3b99F7B1187E6BC71167C94ddbb070, 0xB8fa74D535431d2fe25415e2dCc5b912Ca4001ea, 0xe6cdF6b31279CD38A68d2Dce3870e858813cd033, 0x39E121297240Ac7F72E7487D799a0fC06422e216, 0xB8Ec9304c460C36f424D9039C5e4F3201e06fAb2, 0xDD1b8DbC6C70B96942F8c446e01AA23De255f603, 0xAd615f88D4483b80Dd415a0Cf533c027D6ecde01]; uint256[] public preSaleAmountes = [3, 5, 2, 2, 2, 2, 3, 2, 1, 2, 2, 5, 3, 1, 1, 2, 2, 2, 10, 1, 1, 1, 1, 5, 3, 1, 1, 1, 3, 1, 1, 1, 9, 7, 1, 2, 2, 1, 3, 3, 1, 1, 1, 2, 1, 1, 1, 1, 5, 5, 2, 1, 1, 2, 1, 25, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 1, 1, 1, 1, 1, 3, 1, 5, 1, 1, 1, 1, 1, 1, 1, 9, 4, 2, 1, 2, 1, 1, 1, 2, 1, 1, 1, 1, 1, 2, 1, 1, 1, 1, 1, 1, 1, 13, 36, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]; mapping(address => uint256) public addressMintedBalance; constructor() ERC721("WastelandPunks", "WST") { setHiddenMetadataUri("ipfs://QmTy7cS1q55cMkXamkiVGw2uw8Lmui4bp85o6H4saC5nFW/hidden.json"); } modifier mintCompliance(uint256 _mintAmount) { require(_mintAmount > 0 && _mintAmount <= maxMintAmountPerTx, "Invalid mint amount!"); require(supply.current() + _mintAmount <= maxSupply, "Max supply exceeded!"); _; } function totalSupply() public view returns (uint256) { return supply.current(); } function mint(uint256 _mintAmount) public payable mintCompliance(_mintAmount) { require(!paused, "The contract is paused!"); // Customize start if (msg.sender != owner()) { if(preSaleStatus == true) { uint256 ownerMintedCount = addressMintedBalance[msg.sender] + _mintAmount; require(isPreSaleUsers(msg.sender , ownerMintedCount), "user is not whitelisted"); } } // Customize End require(msg.value >= cost * _mintAmount, "Not Enough!"); for (uint256 i = 1; i <= _mintAmount; i++) { addressMintedBalance[msg.sender]++; } _mintLoop(msg.sender, _mintAmount); } function mintForAddress(uint256 _mintAmount, address _receiver) public mintCompliance(_mintAmount) onlyOwner { _mintLoop(_receiver, _mintAmount); } // Customize Start function isPreSaleUsers(address _user, uint256 _ownedMint) public view returns (bool) { for (uint i = 0; i < preSaleAddresses.length; i++) { if (preSaleAddresses[i] == _user) { if(_ownedMint <= preSaleAmountes[i]) { return true; } } } return false; } function setpreSaleStatus(bool _state) public onlyOwner { preSaleStatus = _state; } // Customize End function walletOfOwner(address _owner) public view returns (uint256[] memory) { uint256 ownerTokenCount = balanceOf(_owner); uint256[] memory ownedTokenIds = new uint256[](ownerTokenCount); uint256 currentTokenId = 1; uint256 ownedTokenIndex = 0; while (ownedTokenIndex < ownerTokenCount && currentTokenId <= maxSupply) { address currentTokenOwner = ownerOf(currentTokenId); if (currentTokenOwner == _owner) { ownedTokenIds[ownedTokenIndex] = currentTokenId; ownedTokenIndex++; } currentTokenId++; } return ownedTokenIds; } function tokenURI(uint256 _tokenId) public view virtual override returns (string memory) { require( _exists(_tokenId), "ERC721Metadata: URI query for nonexistent token" ); if (revealed == false) { return hiddenMetadataUri; } string memory currentBaseURI = _baseURI(); return bytes(currentBaseURI).length > 0 ? string(abi.encodePacked(currentBaseURI, _tokenId.toString(), uriSuffix)) : ""; } function setRevealed(bool _state) public onlyOwner { revealed = _state; } function setCost(uint256 _cost) public onlyOwner { cost = _cost; } function setMaxMintAmountPerTx(uint256 _maxMintAmountPerTx) public onlyOwner { maxMintAmountPerTx = _maxMintAmountPerTx; } function setHiddenMetadataUri(string memory _hiddenMetadataUri) public onlyOwner { hiddenMetadataUri = _hiddenMetadataUri; } function setUriPrefix(string memory _uriPrefix) public onlyOwner { uriPrefix = _uriPrefix; } function setUriSuffix(string memory _uriSuffix) public onlyOwner { uriSuffix = _uriSuffix; } function setPaused(bool _state) public onlyOwner { paused = _state; } function withdraw() public onlyOwner { // ============================================================================= // Every sales pay ( %5 ) DevChainn // ============================================================================= // (bool hs, ) = payable(0xB5c4eB6c00fA3e9BAc5F6beeFBdB132423251B99).call{value: address(this).balance * 5 / 100}(""); // require(hs); // 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 _mintLoop(address _receiver, uint256 _mintAmount) internal { for (uint256 i = 0; i < _mintAmount; i++) { supply.increment(); _safeMint(_receiver, supply.current()); } } function _baseURI() internal view virtual override returns (string memory) { return uriPrefix; } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"addressMintedBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"hiddenMetadataUri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_user","type":"address"},{"internalType":"uint256","name":"_ownedMint","type":"uint256"}],"name":"isPreSaleUsers","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmountPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"},{"internalType":"address","name":"_receiver","type":"address"}],"name":"mintForAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"preSaleAddresses","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"preSaleAmountes","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"preSaleStatus","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_cost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_hiddenMetadataUri","type":"string"}],"name":"setHiddenMetadataUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxMintAmountPerTx","type":"uint256"}],"name":"setMaxMintAmountPerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setPaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setRevealed","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriPrefix","type":"string"}],"name":"setUriPrefix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriSuffix","type":"string"}],"name":"setUriSuffix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setpreSaleStatus","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":"uriPrefix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uriSuffix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60a06040819052600060808190526200001b9160089162001295565b5060408051808201909152600580825264173539b7b760d91b60209092019182526200004a9160099162001295565b5066b1a2bc2ec50000600b55610be8600c556032600d55600e805462ffffff19166201000117905560408051610f008101825273d77f6b5c81c1d8e62503e1c8c8495f43e7b2c4d9815273c06782b99d7d021b2018553769b9ab66f82b5cbc60208201527375bba918fe0587356988ba0efdcfcf73da0cfcc691810191909152737399c07068c29b522d7f1bfe5dfb005cc781bd6c606082015273ef38ca7f49e6b172fe3543587dfdffb9f75f1498608082015273f87ec4f219021f767367897447ac960f1d9dabc160a082015273f83defe97102b583671377cc444c92c32bcbc59b60c082015273197e8650d665fba9bfd0f110750019cb39fa2a4260e0820152731faac2dd1940e5143273c5a5d6cb993b502d20b96101008201527338b43cf17d81c75bad091bb118db8598edf55eb2610120820152734966c72d6513356204f5d150929aece09a665e90610140820152731c27f2a41bd43d6366a9cf8d9cf67c89fc417dfa610160820152733e8c9a71431bbcb4e4203d5ab9aa78a0d039447861018082015273e142512ad80daf3456c53507c99cef15b9d762216101a0820152735b33ea8b7836ff4d14c75f0d461fc67a23d777f06101c08201527380d152e53521ffcf5d7472ebef30678d23110d5d6101e082015273dad299bacadb2a99128f6b52817d35c022c8ef8261020082015273591f8a2decc1c86cce0c7bea22fa921c2c72fb956102208201527305c985db49d9e29aa66b465f18c7c6dd244e9774610240820152737217bc604476859303a27f111b187526231a300c6102608201527387afb7291bf5c01a978350ccefd2b4ec9316e02a610280820152738970007d0200d2410f598df6e3e42946c291f0fc6102a082015273ac4fc21121e9b913da76e308b2c184d76549ecf26102c082015273917e23dd458613e6491a7ec91785e7f38ee663cf6102e082015273b1dc955de30f67fa90a9947e7ce22452717f3ffb61030082015273d0701bfdb70f69c7b1855db1099c8abbecaf9310610320820152731a2be848d7958570966cc20b1c521d8945cda8c161034082015273db2fc4892a423476c063c684fba34196f9fd939d610360820152738c9a5a7027331f70786d55848f9a1e874837715a6103808201527347320b27870c9f7549180aa77b0f3bed292a8b1f6103a082015273f80503a6fa7acd35f967800b98e62c41cff755786103c0820152737b6ca25c82e99255b3ca17b2981f523f6cf4d6e26103e0820152731d6f98437bf470d42623363aa9ee179ef0adacbe610400820152730aa5bc85694016adac33f1a2c26911db64727dce61042082015273b5a34ebb716bdb75e65a41b2c5ce015a9796d7c5610440820152730c71cf74e219231f0dde8b523d4faf6e057d59616104608201527322406138dbbbfcd89b1cbc2ec14517b993ba618e6104808201527377f478a73858f55973e6ad80f57502793730b7216104a082015273decf6cc45e4f1816fc75c3b2aed1e7bf02c43e526104c082015273078ad2aa3b4527e4996d087906b2a3da51bba1226104e082015273965e5987e9a93320de59045761b11851006ed12861050082015273c4606500a01c6af7c06929b19a8bfc148975cebc610520820152737935c7edd3c873d32885fd016c07741400104fed61054082015273b74cae0866ab29b1a15fad8ff942ade413fd512861056082015273ab0481a946ed0f4afc37b39c85983e3efa7ea66261058082015273bdcfca7a4e2d93910face975891ae4ad2dca72c66105a0820152734698917d0f308658270faf65973a9872b99215f26105c0820152736bcfb9ee376ccbe2fffd792262cf583528f48f0c6105e08201527364ddfa007693d27ede9e6376d70a9db2f38dd081610600820152739498390c3f51a256ccfabe9aef961e1d246dc58e61062082015273228b8b3a8b34efa3c7a86ca1ae3903910cdc241161064082015273d644e92e26884d3d3967bebf82d553c48b5c89de61066082015273465d7fc45e512923125327707ca97359ddb8a1df61068082015273bce1107892f0f90a14977a72b66993852223bc206106a0820152730d490e7854266add559a614722dedc3244ceec196106c08201527351f1d95cc6651537b7c497f4d146e4e9aa92565b6106e082015273d7f3113c43bba35cfbb68b641a2cf7aded4608d86107008201527364e3ddf498fc1f5c661ecd64984c03fcedbdd7e1610720820152730b281116be22a5840aeffc2dc7e2bacffe93e6f8610740820152738357063c3ec4190a6cbb3500b2650faf7da1421361076082015273f114702d3ca73d698379199b49d5e032121653f461078082015273137effbb0b405cd6a3c549e53dd6244a439c514d6107a0820152739f18598d7efd3bc6ac7cf1bb12e8c779e6f196ee6107c0820152738209948e8d95ac1c777fda113357cbed68a0c4086107e082015273e33064669f8cf1a30bbc39360cafaf4147fa39bd61080082015273a6317de8f416c2075f730e5967ffeb13c34b74326108208201527389a142a174cd779f04acbf60ba45ee3fcbeed7ac61084082015273d1affc36432954654d0c73ec294028b2b485eb52610860820152739fad9add02571a8069ef95dd9018a9f68f2018ac61088082015273b235a7596b49a93735ff6ef3c3c1d02eb2e1a9e56108a082015273754d49ababe87c2841fbf26857686b66fe1f0b2a6108c082015273115dc8eac32c9d159cb70326885fc1f0e32573ac6108e0820152731698580b76cce1e05e167fd509a5d526c1b1b4776109008201527387d5e5085fa722fb5d263fa4c7b51d52a21146d361092082015273cdf8a7b86cde14b01916a44382d54815a288e48961094082015273359574689752f6fc7191dd5f068e9fe87303d3266109608201527326d7b4fe67f4601643304b5023b3caf3a72e850461098082015273ea272187f5e0d78b038604e81e95f3c978baed666109a0820152732d9446aed152f935106f982b72d4e26b75ac692f6109c082015273f25ae6726ab69f74b5188c8c215e833375b5a1d96109e08201527372facc43568f55bc4fc04b038fe9a76baa1a67c9610a00820152733174f55d5e7bc11fbb18a32afd44dc450a377d56610a20820152732ba3c2a8807334cf419f00266126ff8655e2191c610a4082015273ab92a6ae341c3052c632ca4690ea921353c4a511610a60820152733f5535777b429fbdafb21d6f6f47849e479b38d0610a80820152733e9ea7007be15581dc4b2806a457b54a65ffa303610aa0820152732261604819159311a59f2ba4a1b63a1e4b3e7db6610ac0820152734bbc3eb245d60614dfcb0c3ccb757377b79c6ba4610ae082015273cb879039e0e4f64df03969c99a77c7540da0486c610b008201527384dc717cc359ac9cda863e5a68dc3aaf156abf90610b20820152734911e4e2f0254694ab6c3eb66f14b873f58d59b6610b4082015273bea020c3bd417f30de4d6bd05b0ed310ac586cc0610b6082015273d57721b29f2a17ab6a0635210ce05dbbecf5cbf4610b8082015273375fb99f3ac98029e40ef3b0667032924b8bd070610ba08201527341bf1ccee665f2fbc606ae3b02bf07038f0471f1610bc0820152737a6e8a56c7f0cbad1999b9251213e5918b05efb3610be0820152736a1bcf7cc433c3281feeed22d9eeb517f3d17020610c0082015273a773139877452e9ed7a964aea32b1fe1587504b4610c20820152738981a87033bc2344f2704ce3f8f0c5d1bf009dfb610c4082015273507ac9ebd29828eb7f34e304bade3930f3de5d96610c6082015273fece06c6b042d2c23fdf53864cbc8d592c61b864610c808201527349ecaa6d98efb48a2fefc3c9a1194e5e602bef2f610ca082015273eafa33e161b4ed608b501f818eaf8f1d6a951ac2610cc0820152732031d7b7603938341dbfd41888490a267035f093610ce082015273fc92725adf47a4dc0839a41a609b3474fb8018c6610d008201527325a7556946d9307c729577b598129bbdb828b5d7610d20820152736739e546097e25547c5492d7bd9296dc13077694610d4082015273fa3b2ecce2871b36037e18144e81a1bc3c16f612610d608201527308fba75e7c0f89782fc6ee2b3845f7270fdac14e610d808201527325b534ca6989b7b2037a2b141580a3cfd1629634610da082015273252acd2872613217a9d583a7d2537ae838b90f0e610dc08201527387aec0decd539a4f69eb41a49aa45a9d2ec83916610de082015273d5201b7dd76df013c15dbd1e9ad7254daa2d90d4610e008201527306a906df3e3b99f7b1187e6bc71167c94ddbb070610e2082015273b8fa74d535431d2fe25415e2dcc5b912ca4001ea610e4082015273e6cdf6b31279cd38a68d2dce3870e858813cd033610e608201527339e121297240ac7f72e7487d799a0fc06422e216610e8082015273b8ec9304c460c36f424d9039c5e4f3201e06fab2610ea082015273dd1b8dbc6c70b96942f8c446e01aa23de255f603610ec082015273ad615f88d4483b80dd415a0cf533c027d6ecde01610ee082015262000d2c90600f90607862001324565b5060408051610f008101825260038082526005602083018190526002938301849052606083018490526080830184905260a0830184905260c0830182905260e083018490526001610100840181905261012084018590526101408401859052610160840182905261018084018390526101a084018190526101c084018190526101e0840185905261020084018590526102208401859052600a610240850152610260840181905261028084018190526102a084018190526102c084018190526102e08401829052610300840183905261032084018190526103408401819052610360840181905261038084018390526103a084018190526103c084018190526103e084018190526009610400850181905260076104208601526104408501829052610460850186905261048085018690526104a085018290526104c085018490526104e08501849052610500850182905261052085018290526105408501829052610560850186905261058085018290526105a085018290526105c085018290526105e08501829052610600850183905261062085018390526106408501869052610660850182905261068085018290526106a085018690526106c0850182905260196106e0860152610700850182905261072085018290526107408501829052610760850182905261078085018290526107a085018290526107c085018290526107e08501829052610800850182905261082085018290526108408501829052610860850182905261088085018690526108a085018290526108c085018290526108e085018290526109008501829052610920850182905261094085019390935261096084018190526109808401919091526109a083018190526109c083018190526109e08301819052610a008301819052610a208301819052610a408301819052610a608301819052610a808301919091526004610aa0830152610ac08201839052610ae08201819052610b008201839052610b208201819052610b408201819052610b608201819052610b808201839052610ba08201819052610bc08201819052610be08201819052610c008201819052610c208201819052610c40820192909252610c608101829052610c808101829052610ca08101829052610cc08101829052610ce08101829052610d008101829052610d208101829052600d610d408201526024610d60820152610d808101829052610da08101829052610dc08101829052610de08101829052610e008101829052610e208101829052610e408101829052610e608101829052610e808101829052610ea08101829052610ec08101829052610ee08101919091526200110a9060109060786200137c565b503480156200111857600080fd5b50604080518082018252600e81526d57617374656c616e6450756e6b7360901b60208083019182528351808501909452600384526215d4d560ea1b9084015281519192916200116a9160009162001295565b5080516200118090600190602084019062001295565b5050506200119d62001197620011c760201b60201c565b620011cb565b620011c1604051806080016040528060418152602001620039ea604191396200121d565b62001413565b3390565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6006546001600160a01b031633146200127c5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640160405180910390fd5b80516200129190600a90602084019062001295565b5050565b828054620012a390620013d6565b90600052602060002090601f016020900481019282620012c7576000855562001312565b82601f10620012e257805160ff191683800117855562001312565b8280016001018555821562001312579182015b8281111562001312578251825591602001919060010190620012f5565b5062001320929150620013bf565b5090565b82805482825590600052602060002090810192821562001312579160200282015b828111156200131257825182546001600160a01b0319166001600160a01b0390911617825560209092019160019091019062001345565b82805482825590600052602060002090810192821562001312579160200282015b8281111562001312578251829060ff169055916020019190600101906200139d565b5b80821115620013205760008155600101620013c0565b600181811c90821680620013eb57607f821691505b602082108114156200140d57634e487b7160e01b600052602260045260246000fd5b50919050565b6125c780620014236000396000f3fe6080604052600436106102515760003560e01c806362b99ad411610139578063a1ebb47f116100b6578063c87b56dd1161007a578063c87b56dd146106b8578063d5abeb01146106d8578063e0a80853146106ee578063e985e9c51461070e578063efbd73f414610757578063f2fde38b1461077757600080fd5b8063a1ebb47f14610623578063a22cb46514610643578063a45ba8e714610663578063b071401b14610678578063b88d4fde1461069857600080fd5b806386154ec9116100fd57806386154ec9146105a75780638da5cb5b146105c757806394354fd0146105e557806395d89b41146105fb578063a0712d681461061057600080fd5b806362b99ad41461051d5780636352211e1461053257806370a0823114610552578063715018a6146105725780637ec4a6591461058757600080fd5b806327295ba3116101d257806344a0d68a1161019657806344a0d68a1461046f578063464bd6401461048f5780634fdd43cb146104af57806351830227146104cf5780635503a0e8146104ee5780635c975abb1461050357600080fd5b806327295ba3146103cd5780632d2436ea146103ed5780633ccfd60b1461040d57806342842e0e14610422578063438b63001461044257600080fd5b806316ba10e01161021957806316ba10e01461032b57806316c38b3c1461034b57806318160ddd1461036b57806318cae2691461038057806323b872dd146103ad57600080fd5b806301ffc9a71461025657806306fdde031461028b578063081812fc146102ad578063095ea7b3146102e557806313faede614610307575b600080fd5b34801561026257600080fd5b50610276610271366004612110565b610797565b60405190151581526020015b60405180910390f35b34801561029757600080fd5b506102a06107e9565b6040516102829190612340565b3480156102b957600080fd5b506102cd6102c8366004612193565b61087b565b6040516001600160a01b039091168152602001610282565b3480156102f157600080fd5b506103056103003660046120cb565b610915565b005b34801561031357600080fd5b5061031d600b5481565b604051908152602001610282565b34801561033757600080fd5b5061030561034636600461214a565b610a2b565b34801561035757600080fd5b506103056103663660046120f5565b610a6c565b34801561037757600080fd5b5061031d610aa9565b34801561038c57600080fd5b5061031d61039b366004611f9b565b60116020526000908152604090205481565b3480156103b957600080fd5b506103056103c8366004611fe9565b610ab9565b3480156103d957600080fd5b5061031d6103e8366004612193565b610aea565b3480156103f957600080fd5b506102766104083660046120cb565b610b0b565b34801561041957600080fd5b50610305610b9b565b34801561042e57600080fd5b5061030561043d366004611fe9565b610c39565b34801561044e57600080fd5b5061046261045d366004611f9b565b610c54565b60405161028291906122fc565b34801561047b57600080fd5b5061030561048a366004612193565b610d35565b34801561049b57600080fd5b50600e546102769062010000900460ff1681565b3480156104bb57600080fd5b506103056104ca36600461214a565b610d64565b3480156104db57600080fd5b50600e5461027690610100900460ff1681565b3480156104fa57600080fd5b506102a0610da1565b34801561050f57600080fd5b50600e546102769060ff1681565b34801561052957600080fd5b506102a0610e2f565b34801561053e57600080fd5b506102cd61054d366004612193565b610e3c565b34801561055e57600080fd5b5061031d61056d366004611f9b565b610eb3565b34801561057e57600080fd5b50610305610f3a565b34801561059357600080fd5b506103056105a236600461214a565b610f70565b3480156105b357600080fd5b506103056105c23660046120f5565b610fad565b3480156105d357600080fd5b506006546001600160a01b03166102cd565b3480156105f157600080fd5b5061031d600d5481565b34801561060757600080fd5b506102a0610ff3565b61030561061e366004612193565b611002565b34801561062f57600080fd5b506102cd61063e366004612193565b611237565b34801561064f57600080fd5b5061030561065e3660046120a1565b611261565b34801561066f57600080fd5b506102a061126c565b34801561068457600080fd5b50610305610693366004612193565b611279565b3480156106a457600080fd5b506103056106b3366004612025565b6112a8565b3480156106c457600080fd5b506102a06106d3366004612193565b6112e0565b3480156106e457600080fd5b5061031d600c5481565b3480156106fa57600080fd5b506103056107093660046120f5565b61145f565b34801561071a57600080fd5b50610276610729366004611fb6565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561076357600080fd5b506103056107723660046121ac565b6114a3565b34801561078357600080fd5b50610305610792366004611f9b565b611589565b60006001600160e01b031982166380ac58cd60e01b14806107c857506001600160e01b03198216635b5e139f60e01b145b806107e357506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600080546107f8906124b9565b80601f0160208091040260200160405190810160405280929190818152602001828054610824906124b9565b80156108715780601f1061084657610100808354040283529160200191610871565b820191906000526020600020905b81548152906001019060200180831161085457829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166108f95760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061092082610e3c565b9050806001600160a01b0316836001600160a01b0316141561098e5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016108f0565b336001600160a01b03821614806109aa57506109aa8133610729565b610a1c5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016108f0565b610a268383611621565b505050565b6006546001600160a01b03163314610a555760405162461bcd60e51b81526004016108f0906123a5565b8051610a68906009906020840190611e60565b5050565b6006546001600160a01b03163314610a965760405162461bcd60e51b81526004016108f0906123a5565b600e805460ff1916911515919091179055565b6000610ab460075490565b905090565b610ac3338261168f565b610adf5760405162461bcd60e51b81526004016108f0906123da565b610a26838383611786565b60108181548110610afa57600080fd5b600091825260209091200154905081565b6000805b600f54811015610b9157836001600160a01b0316600f8281548110610b3657610b3661254f565b6000918252602090912001546001600160a01b03161415610b7f5760108181548110610b6457610b6461254f565b90600052602060002001548311610b7f5760019150506107e3565b80610b89816124f4565b915050610b0f565b5060009392505050565b6006546001600160a01b03163314610bc55760405162461bcd60e51b81526004016108f0906123a5565b6000610bd96006546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d8060008114610c23576040519150601f19603f3d011682016040523d82523d6000602084013e610c28565b606091505b5050905080610c3657600080fd5b50565b610a26838383604051806020016040528060008152506112a8565b60606000610c6183610eb3565b905060008167ffffffffffffffff811115610c7e57610c7e612565565b604051908082528060200260200182016040528015610ca7578160200160208202803683370190505b509050600160005b8381108015610cc05750600c548211155b15610d2b576000610cd083610e3c565b9050866001600160a01b0316816001600160a01b03161415610d185782848381518110610cff57610cff61254f565b602090810291909101015281610d14816124f4565b9250505b82610d22816124f4565b93505050610caf565b5090949350505050565b6006546001600160a01b03163314610d5f5760405162461bcd60e51b81526004016108f0906123a5565b600b55565b6006546001600160a01b03163314610d8e5760405162461bcd60e51b81526004016108f0906123a5565b8051610a6890600a906020840190611e60565b60098054610dae906124b9565b80601f0160208091040260200160405190810160405280929190818152602001828054610dda906124b9565b8015610e275780601f10610dfc57610100808354040283529160200191610e27565b820191906000526020600020905b815481529060010190602001808311610e0a57829003601f168201915b505050505081565b60088054610dae906124b9565b6000818152600260205260408120546001600160a01b0316806107e35760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016108f0565b60006001600160a01b038216610f1e5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016108f0565b506001600160a01b031660009081526003602052604090205490565b6006546001600160a01b03163314610f645760405162461bcd60e51b81526004016108f0906123a5565b610f6e6000611926565b565b6006546001600160a01b03163314610f9a5760405162461bcd60e51b81526004016108f0906123a5565b8051610a68906008906020840190611e60565b6006546001600160a01b03163314610fd75760405162461bcd60e51b81526004016108f0906123a5565b600e8054911515620100000262ff000019909216919091179055565b6060600180546107f8906124b9565b806000811180156110155750600d548111155b6110585760405162461bcd60e51b8152602060048201526014602482015273496e76616c6964206d696e7420616d6f756e742160601b60448201526064016108f0565b600c548161106560075490565b61106f919061242b565b11156110b45760405162461bcd60e51b81526020600482015260146024820152734d617820737570706c792065786365656465642160601b60448201526064016108f0565b600e5460ff16156111075760405162461bcd60e51b815260206004820152601760248201527f54686520636f6e7472616374206973207061757365642100000000000000000060448201526064016108f0565b6006546001600160a01b031633146111a457600e5462010000900460ff161515600114156111a4573360009081526011602052604081205461114a90849061242b565b90506111563382610b0b565b6111a25760405162461bcd60e51b815260206004820152601760248201527f75736572206973206e6f742077686974656c697374656400000000000000000060448201526064016108f0565b505b81600b546111b29190612457565b3410156111ef5760405162461bcd60e51b815260206004820152600b60248201526a4e6f7420456e6f7567682160a81b60448201526064016108f0565b60015b82811161122c57336000908152601160205260408120805491611214836124f4565b91905055508080611224906124f4565b9150506111f2565b50610a683383611978565b600f818154811061124757600080fd5b6000918252602090912001546001600160a01b0316905081565b610a683383836119b5565b600a8054610dae906124b9565b6006546001600160a01b031633146112a35760405162461bcd60e51b81526004016108f0906123a5565b600d55565b6112b2338361168f565b6112ce5760405162461bcd60e51b81526004016108f0906123da565b6112da84848484611a84565b50505050565b6000818152600260205260409020546060906001600160a01b031661135f5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016108f0565b600e54610100900460ff1661140057600a805461137b906124b9565b80601f01602080910402602001604051908101604052809291908181526020018280546113a7906124b9565b80156113f45780601f106113c9576101008083540402835291602001916113f4565b820191906000526020600020905b8154815290600101906020018083116113d757829003601f168201915b50505050509050919050565b600061140a611ab7565b9050600081511161142a5760405180602001604052806000815250611458565b8061143484611ac6565b6009604051602001611448939291906121fb565b6040516020818303038152906040525b9392505050565b6006546001600160a01b031633146114895760405162461bcd60e51b81526004016108f0906123a5565b600e80549115156101000261ff0019909216919091179055565b816000811180156114b65750600d548111155b6114f95760405162461bcd60e51b8152602060048201526014602482015273496e76616c6964206d696e7420616d6f756e742160601b60448201526064016108f0565b600c548161150660075490565b611510919061242b565b11156115555760405162461bcd60e51b81526020600482015260146024820152734d617820737570706c792065786365656465642160601b60448201526064016108f0565b6006546001600160a01b0316331461157f5760405162461bcd60e51b81526004016108f0906123a5565b610a268284611978565b6006546001600160a01b031633146115b35760405162461bcd60e51b81526004016108f0906123a5565b6001600160a01b0381166116185760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016108f0565b610c3681611926565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061165682610e3c565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166117085760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016108f0565b600061171383610e3c565b9050806001600160a01b0316846001600160a01b0316148061174e5750836001600160a01b03166117438461087b565b6001600160a01b0316145b8061177e57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b031661179982610e3c565b6001600160a01b0316146118015760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b60648201526084016108f0565b6001600160a01b0382166118635760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016108f0565b61186e600082611621565b6001600160a01b0383166000908152600360205260408120805460019290611897908490612476565b90915550506001600160a01b03821660009081526003602052604081208054600192906118c590849061242b565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60005b81811015610a2657611991600780546001019055565b6119a38361199e60075490565b611bc4565b806119ad816124f4565b91505061197b565b816001600160a01b0316836001600160a01b03161415611a175760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016108f0565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b611a8f848484611786565b611a9b84848484611bde565b6112da5760405162461bcd60e51b81526004016108f090612353565b6060600880546107f8906124b9565b606081611aea5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611b145780611afe816124f4565b9150611b0d9050600a83612443565b9150611aee565b60008167ffffffffffffffff811115611b2f57611b2f612565565b6040519080825280601f01601f191660200182016040528015611b59576020820181803683370190505b5090505b841561177e57611b6e600183612476565b9150611b7b600a8661250f565b611b8690603061242b565b60f81b818381518110611b9b57611b9b61254f565b60200101906001600160f81b031916908160001a905350611bbd600a86612443565b9450611b5d565b610a68828260405180602001604052806000815250611ceb565b60006001600160a01b0384163b15611ce057604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611c229033908990889088906004016122bf565b602060405180830381600087803b158015611c3c57600080fd5b505af1925050508015611c6c575060408051601f3d908101601f19168201909252611c699181019061212d565b60015b611cc6573d808015611c9a576040519150601f19603f3d011682016040523d82523d6000602084013e611c9f565b606091505b508051611cbe5760405162461bcd60e51b81526004016108f090612353565b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061177e565b506001949350505050565b611cf58383611d1e565b611d026000848484611bde565b610a265760405162461bcd60e51b81526004016108f090612353565b6001600160a01b038216611d745760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016108f0565b6000818152600260205260409020546001600160a01b031615611dd95760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016108f0565b6001600160a01b0382166000908152600360205260408120805460019290611e0290849061242b565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b828054611e6c906124b9565b90600052602060002090601f016020900481019282611e8e5760008555611ed4565b82601f10611ea757805160ff1916838001178555611ed4565b82800160010185558215611ed4579182015b82811115611ed4578251825591602001919060010190611eb9565b50611ee0929150611ee4565b5090565b5b80821115611ee05760008155600101611ee5565b600067ffffffffffffffff80841115611f1457611f14612565565b604051601f8501601f19908116603f01168101908282118183101715611f3c57611f3c612565565b81604052809350858152868686011115611f5557600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b0381168114611f8657600080fd5b919050565b80358015158114611f8657600080fd5b600060208284031215611fad57600080fd5b61145882611f6f565b60008060408385031215611fc957600080fd5b611fd283611f6f565b9150611fe060208401611f6f565b90509250929050565b600080600060608486031215611ffe57600080fd5b61200784611f6f565b925061201560208501611f6f565b9150604084013590509250925092565b6000806000806080858703121561203b57600080fd5b61204485611f6f565b935061205260208601611f6f565b925060408501359150606085013567ffffffffffffffff81111561207557600080fd5b8501601f8101871361208657600080fd5b61209587823560208401611ef9565b91505092959194509250565b600080604083850312156120b457600080fd5b6120bd83611f6f565b9150611fe060208401611f8b565b600080604083850312156120de57600080fd5b6120e783611f6f565b946020939093013593505050565b60006020828403121561210757600080fd5b61145882611f8b565b60006020828403121561212257600080fd5b81356114588161257b565b60006020828403121561213f57600080fd5b81516114588161257b565b60006020828403121561215c57600080fd5b813567ffffffffffffffff81111561217357600080fd5b8201601f8101841361218457600080fd5b61177e84823560208401611ef9565b6000602082840312156121a557600080fd5b5035919050565b600080604083850312156121bf57600080fd5b82359150611fe060208401611f6f565b600081518084526121e781602086016020860161248d565b601f01601f19169290920160200192915050565b60008451602061220e8285838a0161248d565b8551918401916122218184848a0161248d565b8554920191600090600181811c908083168061223e57607f831692505b85831081141561225c57634e487b7160e01b85526022600452602485fd5b8080156122705760018114612281576122ae565b60ff198516885283880195506122ae565b60008b81526020902060005b858110156122a65781548a82015290840190880161228d565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906122f2908301846121cf565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b8181101561233457835183529284019291840191600101612318565b50909695505050505050565b60208152600061145860208301846121cf565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6000821982111561243e5761243e612523565b500190565b60008261245257612452612539565b500490565b600081600019048311821515161561247157612471612523565b500290565b60008282101561248857612488612523565b500390565b60005b838110156124a8578181015183820152602001612490565b838111156112da5750506000910152565b600181811c908216806124cd57607f821691505b602082108114156124ee57634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561250857612508612523565b5060010190565b60008261251e5761251e612539565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610c3657600080fdfea2646970667358221220a20db7615148784b647008737e687275b898be78bcbf9d097d425ee789e1029a64736f6c63430008070033697066733a2f2f516d547937635331713535634d6b58616d6b69564777327577384c6d756934627038356f364834736143356e46572f68696464656e2e6a736f6e
Deployed Bytecode
0x6080604052600436106102515760003560e01c806362b99ad411610139578063a1ebb47f116100b6578063c87b56dd1161007a578063c87b56dd146106b8578063d5abeb01146106d8578063e0a80853146106ee578063e985e9c51461070e578063efbd73f414610757578063f2fde38b1461077757600080fd5b8063a1ebb47f14610623578063a22cb46514610643578063a45ba8e714610663578063b071401b14610678578063b88d4fde1461069857600080fd5b806386154ec9116100fd57806386154ec9146105a75780638da5cb5b146105c757806394354fd0146105e557806395d89b41146105fb578063a0712d681461061057600080fd5b806362b99ad41461051d5780636352211e1461053257806370a0823114610552578063715018a6146105725780637ec4a6591461058757600080fd5b806327295ba3116101d257806344a0d68a1161019657806344a0d68a1461046f578063464bd6401461048f5780634fdd43cb146104af57806351830227146104cf5780635503a0e8146104ee5780635c975abb1461050357600080fd5b806327295ba3146103cd5780632d2436ea146103ed5780633ccfd60b1461040d57806342842e0e14610422578063438b63001461044257600080fd5b806316ba10e01161021957806316ba10e01461032b57806316c38b3c1461034b57806318160ddd1461036b57806318cae2691461038057806323b872dd146103ad57600080fd5b806301ffc9a71461025657806306fdde031461028b578063081812fc146102ad578063095ea7b3146102e557806313faede614610307575b600080fd5b34801561026257600080fd5b50610276610271366004612110565b610797565b60405190151581526020015b60405180910390f35b34801561029757600080fd5b506102a06107e9565b6040516102829190612340565b3480156102b957600080fd5b506102cd6102c8366004612193565b61087b565b6040516001600160a01b039091168152602001610282565b3480156102f157600080fd5b506103056103003660046120cb565b610915565b005b34801561031357600080fd5b5061031d600b5481565b604051908152602001610282565b34801561033757600080fd5b5061030561034636600461214a565b610a2b565b34801561035757600080fd5b506103056103663660046120f5565b610a6c565b34801561037757600080fd5b5061031d610aa9565b34801561038c57600080fd5b5061031d61039b366004611f9b565b60116020526000908152604090205481565b3480156103b957600080fd5b506103056103c8366004611fe9565b610ab9565b3480156103d957600080fd5b5061031d6103e8366004612193565b610aea565b3480156103f957600080fd5b506102766104083660046120cb565b610b0b565b34801561041957600080fd5b50610305610b9b565b34801561042e57600080fd5b5061030561043d366004611fe9565b610c39565b34801561044e57600080fd5b5061046261045d366004611f9b565b610c54565b60405161028291906122fc565b34801561047b57600080fd5b5061030561048a366004612193565b610d35565b34801561049b57600080fd5b50600e546102769062010000900460ff1681565b3480156104bb57600080fd5b506103056104ca36600461214a565b610d64565b3480156104db57600080fd5b50600e5461027690610100900460ff1681565b3480156104fa57600080fd5b506102a0610da1565b34801561050f57600080fd5b50600e546102769060ff1681565b34801561052957600080fd5b506102a0610e2f565b34801561053e57600080fd5b506102cd61054d366004612193565b610e3c565b34801561055e57600080fd5b5061031d61056d366004611f9b565b610eb3565b34801561057e57600080fd5b50610305610f3a565b34801561059357600080fd5b506103056105a236600461214a565b610f70565b3480156105b357600080fd5b506103056105c23660046120f5565b610fad565b3480156105d357600080fd5b506006546001600160a01b03166102cd565b3480156105f157600080fd5b5061031d600d5481565b34801561060757600080fd5b506102a0610ff3565b61030561061e366004612193565b611002565b34801561062f57600080fd5b506102cd61063e366004612193565b611237565b34801561064f57600080fd5b5061030561065e3660046120a1565b611261565b34801561066f57600080fd5b506102a061126c565b34801561068457600080fd5b50610305610693366004612193565b611279565b3480156106a457600080fd5b506103056106b3366004612025565b6112a8565b3480156106c457600080fd5b506102a06106d3366004612193565b6112e0565b3480156106e457600080fd5b5061031d600c5481565b3480156106fa57600080fd5b506103056107093660046120f5565b61145f565b34801561071a57600080fd5b50610276610729366004611fb6565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561076357600080fd5b506103056107723660046121ac565b6114a3565b34801561078357600080fd5b50610305610792366004611f9b565b611589565b60006001600160e01b031982166380ac58cd60e01b14806107c857506001600160e01b03198216635b5e139f60e01b145b806107e357506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600080546107f8906124b9565b80601f0160208091040260200160405190810160405280929190818152602001828054610824906124b9565b80156108715780601f1061084657610100808354040283529160200191610871565b820191906000526020600020905b81548152906001019060200180831161085457829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166108f95760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061092082610e3c565b9050806001600160a01b0316836001600160a01b0316141561098e5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016108f0565b336001600160a01b03821614806109aa57506109aa8133610729565b610a1c5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016108f0565b610a268383611621565b505050565b6006546001600160a01b03163314610a555760405162461bcd60e51b81526004016108f0906123a5565b8051610a68906009906020840190611e60565b5050565b6006546001600160a01b03163314610a965760405162461bcd60e51b81526004016108f0906123a5565b600e805460ff1916911515919091179055565b6000610ab460075490565b905090565b610ac3338261168f565b610adf5760405162461bcd60e51b81526004016108f0906123da565b610a26838383611786565b60108181548110610afa57600080fd5b600091825260209091200154905081565b6000805b600f54811015610b9157836001600160a01b0316600f8281548110610b3657610b3661254f565b6000918252602090912001546001600160a01b03161415610b7f5760108181548110610b6457610b6461254f565b90600052602060002001548311610b7f5760019150506107e3565b80610b89816124f4565b915050610b0f565b5060009392505050565b6006546001600160a01b03163314610bc55760405162461bcd60e51b81526004016108f0906123a5565b6000610bd96006546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d8060008114610c23576040519150601f19603f3d011682016040523d82523d6000602084013e610c28565b606091505b5050905080610c3657600080fd5b50565b610a26838383604051806020016040528060008152506112a8565b60606000610c6183610eb3565b905060008167ffffffffffffffff811115610c7e57610c7e612565565b604051908082528060200260200182016040528015610ca7578160200160208202803683370190505b509050600160005b8381108015610cc05750600c548211155b15610d2b576000610cd083610e3c565b9050866001600160a01b0316816001600160a01b03161415610d185782848381518110610cff57610cff61254f565b602090810291909101015281610d14816124f4565b9250505b82610d22816124f4565b93505050610caf565b5090949350505050565b6006546001600160a01b03163314610d5f5760405162461bcd60e51b81526004016108f0906123a5565b600b55565b6006546001600160a01b03163314610d8e5760405162461bcd60e51b81526004016108f0906123a5565b8051610a6890600a906020840190611e60565b60098054610dae906124b9565b80601f0160208091040260200160405190810160405280929190818152602001828054610dda906124b9565b8015610e275780601f10610dfc57610100808354040283529160200191610e27565b820191906000526020600020905b815481529060010190602001808311610e0a57829003601f168201915b505050505081565b60088054610dae906124b9565b6000818152600260205260408120546001600160a01b0316806107e35760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016108f0565b60006001600160a01b038216610f1e5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016108f0565b506001600160a01b031660009081526003602052604090205490565b6006546001600160a01b03163314610f645760405162461bcd60e51b81526004016108f0906123a5565b610f6e6000611926565b565b6006546001600160a01b03163314610f9a5760405162461bcd60e51b81526004016108f0906123a5565b8051610a68906008906020840190611e60565b6006546001600160a01b03163314610fd75760405162461bcd60e51b81526004016108f0906123a5565b600e8054911515620100000262ff000019909216919091179055565b6060600180546107f8906124b9565b806000811180156110155750600d548111155b6110585760405162461bcd60e51b8152602060048201526014602482015273496e76616c6964206d696e7420616d6f756e742160601b60448201526064016108f0565b600c548161106560075490565b61106f919061242b565b11156110b45760405162461bcd60e51b81526020600482015260146024820152734d617820737570706c792065786365656465642160601b60448201526064016108f0565b600e5460ff16156111075760405162461bcd60e51b815260206004820152601760248201527f54686520636f6e7472616374206973207061757365642100000000000000000060448201526064016108f0565b6006546001600160a01b031633146111a457600e5462010000900460ff161515600114156111a4573360009081526011602052604081205461114a90849061242b565b90506111563382610b0b565b6111a25760405162461bcd60e51b815260206004820152601760248201527f75736572206973206e6f742077686974656c697374656400000000000000000060448201526064016108f0565b505b81600b546111b29190612457565b3410156111ef5760405162461bcd60e51b815260206004820152600b60248201526a4e6f7420456e6f7567682160a81b60448201526064016108f0565b60015b82811161122c57336000908152601160205260408120805491611214836124f4565b91905055508080611224906124f4565b9150506111f2565b50610a683383611978565b600f818154811061124757600080fd5b6000918252602090912001546001600160a01b0316905081565b610a683383836119b5565b600a8054610dae906124b9565b6006546001600160a01b031633146112a35760405162461bcd60e51b81526004016108f0906123a5565b600d55565b6112b2338361168f565b6112ce5760405162461bcd60e51b81526004016108f0906123da565b6112da84848484611a84565b50505050565b6000818152600260205260409020546060906001600160a01b031661135f5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016108f0565b600e54610100900460ff1661140057600a805461137b906124b9565b80601f01602080910402602001604051908101604052809291908181526020018280546113a7906124b9565b80156113f45780601f106113c9576101008083540402835291602001916113f4565b820191906000526020600020905b8154815290600101906020018083116113d757829003601f168201915b50505050509050919050565b600061140a611ab7565b9050600081511161142a5760405180602001604052806000815250611458565b8061143484611ac6565b6009604051602001611448939291906121fb565b6040516020818303038152906040525b9392505050565b6006546001600160a01b031633146114895760405162461bcd60e51b81526004016108f0906123a5565b600e80549115156101000261ff0019909216919091179055565b816000811180156114b65750600d548111155b6114f95760405162461bcd60e51b8152602060048201526014602482015273496e76616c6964206d696e7420616d6f756e742160601b60448201526064016108f0565b600c548161150660075490565b611510919061242b565b11156115555760405162461bcd60e51b81526020600482015260146024820152734d617820737570706c792065786365656465642160601b60448201526064016108f0565b6006546001600160a01b0316331461157f5760405162461bcd60e51b81526004016108f0906123a5565b610a268284611978565b6006546001600160a01b031633146115b35760405162461bcd60e51b81526004016108f0906123a5565b6001600160a01b0381166116185760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016108f0565b610c3681611926565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061165682610e3c565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166117085760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016108f0565b600061171383610e3c565b9050806001600160a01b0316846001600160a01b0316148061174e5750836001600160a01b03166117438461087b565b6001600160a01b0316145b8061177e57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b031661179982610e3c565b6001600160a01b0316146118015760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b60648201526084016108f0565b6001600160a01b0382166118635760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016108f0565b61186e600082611621565b6001600160a01b0383166000908152600360205260408120805460019290611897908490612476565b90915550506001600160a01b03821660009081526003602052604081208054600192906118c590849061242b565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60005b81811015610a2657611991600780546001019055565b6119a38361199e60075490565b611bc4565b806119ad816124f4565b91505061197b565b816001600160a01b0316836001600160a01b03161415611a175760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016108f0565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b611a8f848484611786565b611a9b84848484611bde565b6112da5760405162461bcd60e51b81526004016108f090612353565b6060600880546107f8906124b9565b606081611aea5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611b145780611afe816124f4565b9150611b0d9050600a83612443565b9150611aee565b60008167ffffffffffffffff811115611b2f57611b2f612565565b6040519080825280601f01601f191660200182016040528015611b59576020820181803683370190505b5090505b841561177e57611b6e600183612476565b9150611b7b600a8661250f565b611b8690603061242b565b60f81b818381518110611b9b57611b9b61254f565b60200101906001600160f81b031916908160001a905350611bbd600a86612443565b9450611b5d565b610a68828260405180602001604052806000815250611ceb565b60006001600160a01b0384163b15611ce057604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611c229033908990889088906004016122bf565b602060405180830381600087803b158015611c3c57600080fd5b505af1925050508015611c6c575060408051601f3d908101601f19168201909252611c699181019061212d565b60015b611cc6573d808015611c9a576040519150601f19603f3d011682016040523d82523d6000602084013e611c9f565b606091505b508051611cbe5760405162461bcd60e51b81526004016108f090612353565b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061177e565b506001949350505050565b611cf58383611d1e565b611d026000848484611bde565b610a265760405162461bcd60e51b81526004016108f090612353565b6001600160a01b038216611d745760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016108f0565b6000818152600260205260409020546001600160a01b031615611dd95760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016108f0565b6001600160a01b0382166000908152600360205260408120805460019290611e0290849061242b565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b828054611e6c906124b9565b90600052602060002090601f016020900481019282611e8e5760008555611ed4565b82601f10611ea757805160ff1916838001178555611ed4565b82800160010185558215611ed4579182015b82811115611ed4578251825591602001919060010190611eb9565b50611ee0929150611ee4565b5090565b5b80821115611ee05760008155600101611ee5565b600067ffffffffffffffff80841115611f1457611f14612565565b604051601f8501601f19908116603f01168101908282118183101715611f3c57611f3c612565565b81604052809350858152868686011115611f5557600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b0381168114611f8657600080fd5b919050565b80358015158114611f8657600080fd5b600060208284031215611fad57600080fd5b61145882611f6f565b60008060408385031215611fc957600080fd5b611fd283611f6f565b9150611fe060208401611f6f565b90509250929050565b600080600060608486031215611ffe57600080fd5b61200784611f6f565b925061201560208501611f6f565b9150604084013590509250925092565b6000806000806080858703121561203b57600080fd5b61204485611f6f565b935061205260208601611f6f565b925060408501359150606085013567ffffffffffffffff81111561207557600080fd5b8501601f8101871361208657600080fd5b61209587823560208401611ef9565b91505092959194509250565b600080604083850312156120b457600080fd5b6120bd83611f6f565b9150611fe060208401611f8b565b600080604083850312156120de57600080fd5b6120e783611f6f565b946020939093013593505050565b60006020828403121561210757600080fd5b61145882611f8b565b60006020828403121561212257600080fd5b81356114588161257b565b60006020828403121561213f57600080fd5b81516114588161257b565b60006020828403121561215c57600080fd5b813567ffffffffffffffff81111561217357600080fd5b8201601f8101841361218457600080fd5b61177e84823560208401611ef9565b6000602082840312156121a557600080fd5b5035919050565b600080604083850312156121bf57600080fd5b82359150611fe060208401611f6f565b600081518084526121e781602086016020860161248d565b601f01601f19169290920160200192915050565b60008451602061220e8285838a0161248d565b8551918401916122218184848a0161248d565b8554920191600090600181811c908083168061223e57607f831692505b85831081141561225c57634e487b7160e01b85526022600452602485fd5b8080156122705760018114612281576122ae565b60ff198516885283880195506122ae565b60008b81526020902060005b858110156122a65781548a82015290840190880161228d565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906122f2908301846121cf565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b8181101561233457835183529284019291840191600101612318565b50909695505050505050565b60208152600061145860208301846121cf565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6000821982111561243e5761243e612523565b500190565b60008261245257612452612539565b500490565b600081600019048311821515161561247157612471612523565b500290565b60008282101561248857612488612523565b500390565b60005b838110156124a8578181015183820152602001612490565b838111156112da5750506000910152565b600181811c908216806124cd57607f821691505b602082108114156124ee57634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561250857612508612523565b5060010190565b60008261251e5761251e612539565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610c3657600080fdfea2646970667358221220a20db7615148784b647008737e687275b898be78bcbf9d097d425ee789e1029a64736f6c63430008070033
Deployed Bytecode Sourcemap
37518:11132:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25000:305;;;;;;;;;;-1:-1:-1;25000:305:0;;;;;:::i;:::-;;:::i;:::-;;;8066:14:1;;8059:22;8041:41;;8029:2;8014:18;25000:305:0;;;;;;;;25945:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;27504:221::-;;;;;;;;;;-1:-1:-1;27504:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;6727:32:1;;;6709:51;;6697:2;6682:18;27504:221:0;6563:203:1;27027:411:0;;;;;;;;;;-1:-1:-1;27027:411:0;;;;;:::i;:::-;;:::i;:::-;;37787:32;;;;;;;;;;;;;;;;;;;16587:25:1;;;16575:2;16560:18;37787:32:0;16441:177:1;47310:100:0;;;;;;;;;;-1:-1:-1;47310:100:0;;;;;:::i;:::-;;:::i;47416:77::-;;;;;;;;;;-1:-1:-1;47416:77:0;;;;;:::i;:::-;;:::i;44188:89::-;;;;;;;;;;;;;:::i;43732:55::-;;;;;;;;;;-1:-1:-1;43732:55:0;;;;;:::i;:::-;;;;;;;;;;;;;;28254:339;;;;;;;;;;-1:-1:-1;28254:339:0;;;;;:::i;:::-;;:::i;43328:399::-;;;;;;;;;;-1:-1:-1;43328:399:0;;;;;:::i;:::-;;:::i;45163:325::-;;;;;;;;;;-1:-1:-1;45163:325:0;;;;;:::i;:::-;;:::i;47499:828::-;;;;;;;;;;;;;:::i;28664:185::-;;;;;;;;;;-1:-1:-1;28664:185:0;;;;;:::i;:::-;;:::i;45622:635::-;;;;;;;;;;-1:-1:-1;45622:635:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;46850:74::-;;;;;;;;;;-1:-1:-1;46850:74:0;;;;;:::i;:::-;;:::i;37968:32::-;;;;;;;;;;-1:-1:-1;37968:32:0;;;;;;;;;;;47066:132;;;;;;;;;;-1:-1:-1;47066:132:0;;;;;:::i;:::-;;:::i;37935:28::-;;;;;;;;;;-1:-1:-1;37935:28:0;;;;;;;;;;;37709:33;;;;;;;;;;;;;:::i;37905:25::-;;;;;;;;;;-1:-1:-1;37905:25:0;;;;;;;;37676:28;;;;;;;;;;;;;:::i;25639:239::-;;;;;;;;;;-1:-1:-1;25639:239:0;;;;;:::i;:::-;;:::i;25369:208::-;;;;;;;;;;-1:-1:-1;25369:208:0;;;;;:::i;:::-;;:::i;5988:103::-;;;;;;;;;;;;;:::i;47204:100::-;;;;;;;;;;-1:-1:-1;47204:100:0;;;;;:::i;:::-;;:::i;45497:91::-;;;;;;;;;;-1:-1:-1;45497:91:0;;;;;:::i;:::-;;:::i;5337:87::-;;;;;;;;;;-1:-1:-1;5410:6:0;;-1:-1:-1;;;;;5410:6:0;5337:87;;37860:38;;;;;;;;;;;;;;;;26114:104;;;;;;;;;;;;;:::i;44283:687::-;;;;;;:::i;:::-;;:::i;38007:5316::-;;;;;;;;;;-1:-1:-1;38007:5316:0;;;;;:::i;:::-;;:::i;27797:155::-;;;;;;;;;;-1:-1:-1;27797:155:0;;;;;:::i;:::-;;:::i;37747:31::-;;;;;;;;;;;;;:::i;46930:130::-;;;;;;;;;;-1:-1:-1;46930:130:0;;;;;:::i;:::-;;:::i;28920:328::-;;;;;;;;;;-1:-1:-1;28920:328:0;;;;;:::i;:::-;;:::i;46263:494::-;;;;;;;;;;-1:-1:-1;46263:494:0;;;;;:::i;:::-;;:::i;37824:31::-;;;;;;;;;;;;;;;;46763:81;;;;;;;;;;-1:-1:-1;46763:81:0;;;;;:::i;:::-;;:::i;28023:164::-;;;;;;;;;;-1:-1:-1;28023:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;28144:25:0;;;28120:4;28144:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;28023:164;44978:155;;;;;;;;;;-1:-1:-1;44978:155:0;;;;;:::i;:::-;;:::i;6246:201::-;;;;;;;;;;-1:-1:-1;6246:201:0;;;;;:::i;:::-;;:::i;25000:305::-;25102:4;-1:-1:-1;;;;;;25139:40:0;;-1:-1:-1;;;25139:40:0;;:105;;-1:-1:-1;;;;;;;25196:48:0;;-1:-1:-1;;;25196:48:0;25139:105;:158;;;-1:-1:-1;;;;;;;;;;17878:40:0;;;25261:36;25119:178;25000:305;-1:-1:-1;;25000:305:0:o;25945:100::-;25999:13;26032:5;26025:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25945:100;:::o;27504:221::-;27580:7;30847:16;;;:7;:16;;;;;;-1:-1:-1;;;;;30847:16:0;27600:73;;;;-1:-1:-1;;;27600:73:0;;13170:2:1;27600:73:0;;;13152:21:1;13209:2;13189:18;;;13182:30;13248:34;13228:18;;;13221:62;-1:-1:-1;;;13299:18:1;;;13292:42;13351:19;;27600:73:0;;;;;;;;;-1:-1:-1;27693:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;27693:24:0;;27504:221::o;27027:411::-;27108:13;27124:23;27139:7;27124:14;:23::i;:::-;27108:39;;27172:5;-1:-1:-1;;;;;27166:11:0;:2;-1:-1:-1;;;;;27166:11:0;;;27158:57;;;;-1:-1:-1;;;27158:57:0;;15122:2:1;27158:57:0;;;15104:21:1;15161:2;15141:18;;;15134:30;15200:34;15180:18;;;15173:62;-1:-1:-1;;;15251:18:1;;;15244:31;15292:19;;27158:57:0;14920:397:1;27158:57:0;4141:10;-1:-1:-1;;;;;27250:21:0;;;;:62;;-1:-1:-1;27275:37:0;27292:5;4141:10;28023:164;:::i;27275:37::-;27228:168;;;;-1:-1:-1;;;27228:168:0;;11563:2:1;27228:168:0;;;11545:21:1;11602:2;11582:18;;;11575:30;11641:34;11621:18;;;11614:62;11712:26;11692:18;;;11685:54;11756:19;;27228:168:0;11361:420:1;27228:168:0;27409:21;27418:2;27422:7;27409:8;:21::i;:::-;27097:341;27027:411;;:::o;47310:100::-;5410:6;;-1:-1:-1;;;;;5410:6:0;4141:10;5557:23;5549:68;;;;-1:-1:-1;;;5549:68:0;;;;;;;:::i;:::-;47382:22;;::::1;::::0;:9:::1;::::0;:22:::1;::::0;::::1;::::0;::::1;:::i;:::-;;47310:100:::0;:::o;47416:77::-;5410:6;;-1:-1:-1;;;;;5410:6:0;4141:10;5557:23;5549:68;;;;-1:-1:-1;;;5549:68:0;;;;;;;:::i;:::-;47472:6:::1;:15:::0;;-1:-1:-1;;47472:15:0::1;::::0;::::1;;::::0;;;::::1;::::0;;47416:77::o;44188:89::-;44232:7;44255:16;:6;757:14;;665:114;44255:16;44248:23;;44188:89;:::o;28254:339::-;28449:41;4141:10;28482:7;28449:18;:41::i;:::-;28441:103;;;;-1:-1:-1;;;28441:103:0;;;;;;;:::i;:::-;28557:28;28567:4;28573:2;28577:7;28557:9;:28::i;43328:399::-;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;43328:399:0;:::o;45163:325::-;45244:4;;45257:207;45278:16;:23;45274:27;;45257:207;;;45344:5;-1:-1:-1;;;;;45321:28:0;:16;45338:1;45321:19;;;;;;;;:::i;:::-;;;;;;;;;;;-1:-1:-1;;;;;45321:19:0;:28;45317:140;;;45379:15;45395:1;45379:18;;;;;;;;:::i;:::-;;;;;;;;;45365:10;:32;45362:84;;45428:4;45421:11;;;;;45362:84;45303:3;;;;:::i;:::-;;;;45257:207;;;-1:-1:-1;45477:5:0;;45163:325;-1:-1:-1;;;45163:325:0:o;47499:828::-;5410:6;;-1:-1:-1;;;;;5410:6:0;4141:10;5557:23;5549:68;;;;-1:-1:-1;;;5549:68:0;;;;;;;:::i;:::-;48149:7:::1;48170;5410:6:::0;;-1:-1:-1;;;;;5410:6:0;;5337:87;48170:7:::1;-1:-1:-1::0;;;;;48162:21:0::1;48191;48162:55;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48148:69;;;48232:2;48224:11;;;::::0;::::1;;47536:791;47499:828::o:0;28664:185::-;28802:39;28819:4;28825:2;28829:7;28802:39;;;;;;;;;;;;:16;:39::i;45622:635::-;45697:16;45725:23;45751:17;45761:6;45751:9;:17::i;:::-;45725:43;;45775:30;45822:15;45808:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;45808:30:0;-1:-1:-1;45775:63:0;-1:-1:-1;45870:1:0;45845:22;45914:309;45939:15;45921;:33;:64;;;;;45976:9;;45958:14;:27;;45921:64;45914:309;;;45996:25;46024:23;46032:14;46024:7;:23::i;:::-;45996:51;;46083:6;-1:-1:-1;;;;;46062:27:0;:17;-1:-1:-1;;;;;46062:27:0;;46058:131;;;46135:14;46102:13;46116:15;46102:30;;;;;;;;:::i;:::-;;;;;;;;;;:47;46162:17;;;;:::i;:::-;;;;46058:131;46199:16;;;;:::i;:::-;;;;45987:236;45914:309;;;-1:-1:-1;46238:13:0;;45622:635;-1:-1:-1;;;;45622:635:0:o;46850:74::-;5410:6;;-1:-1:-1;;;;;5410:6:0;4141:10;5557:23;5549:68;;;;-1:-1:-1;;;5549:68:0;;;;;;;:::i;:::-;46906:4:::1;:12:::0;46850:74::o;47066:132::-;5410:6;;-1:-1:-1;;;;;5410:6:0;4141:10;5557:23;5549:68;;;;-1:-1:-1;;;5549:68:0;;;;;;;:::i;:::-;47154:38;;::::1;::::0;:17:::1;::::0;:38:::1;::::0;::::1;::::0;::::1;:::i;37709:33::-:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;37676:28::-;;;;;;;:::i;25639:239::-;25711:7;25747:16;;;:7;:16;;;;;;-1:-1:-1;;;;;25747:16:0;25782:19;25774:73;;;;-1:-1:-1;;;25774:73:0;;12399:2:1;25774:73:0;;;12381:21:1;12438:2;12418:18;;;12411:30;12477:34;12457:18;;;12450:62;-1:-1:-1;;;12528:18:1;;;12521:39;12577:19;;25774:73:0;12197:405:1;25369:208:0;25441:7;-1:-1:-1;;;;;25469:19:0;;25461:74;;;;-1:-1:-1;;;25461:74:0;;11988:2:1;25461:74:0;;;11970:21:1;12027:2;12007:18;;;12000:30;12066:34;12046:18;;;12039:62;-1:-1:-1;;;12117:18:1;;;12110:40;12167:19;;25461:74:0;11786:406:1;25461:74:0;-1:-1:-1;;;;;;25553:16:0;;;;;:9;:16;;;;;;;25369:208::o;5988:103::-;5410:6;;-1:-1:-1;;;;;5410:6:0;4141:10;5557:23;5549:68;;;;-1:-1:-1;;;5549:68:0;;;;;;;:::i;:::-;6053:30:::1;6080:1;6053:18;:30::i;:::-;5988:103::o:0;47204:100::-;5410:6;;-1:-1:-1;;;;;5410:6:0;4141:10;5557:23;5549:68;;;;-1:-1:-1;;;5549:68:0;;;;;;;:::i;:::-;47276:22;;::::1;::::0;:9:::1;::::0;:22:::1;::::0;::::1;::::0;::::1;:::i;45497:91::-:0;5410:6;;-1:-1:-1;;;;;5410:6:0;4141:10;5557:23;5549:68;;;;-1:-1:-1;;;5549:68:0;;;;;;;:::i;:::-;45560:13:::1;:22:::0;;;::::1;;::::0;::::1;-1:-1:-1::0;;45560:22:0;;::::1;::::0;;;::::1;::::0;;45497:91::o;26114:104::-;26170:13;26203:7;26196:14;;;;;:::i;44283:687::-;44348:11;44022:1;44008:11;:15;:52;;;;;44042:18;;44027:11;:33;;44008:52;44000:85;;;;-1:-1:-1;;;44000:85:0;;10042:2:1;44000:85:0;;;10024:21:1;10081:2;10061:18;;;10054:30;-1:-1:-1;;;10100:18:1;;;10093:50;10160:18;;44000:85:0;9840:344:1;44000:85:0;44134:9;;44119:11;44100:16;:6;757:14;;665:114;44100:16;:30;;;;:::i;:::-;:43;;44092:76;;;;-1:-1:-1;;;44092:76:0;;15524:2:1;44092:76:0;;;15506:21:1;15563:2;15543:18;;;15536:30;-1:-1:-1;;;15582:18:1;;;15575:50;15642:18;;44092:76:0;15322:344:1;44092:76:0;44377:6:::1;::::0;::::1;;44376:7;44368:43;;;::::0;-1:-1:-1;;;44368:43:0;;13944:2:1;44368:43:0::1;::::0;::::1;13926:21:1::0;13983:2;13963:18;;;13956:30;14022:25;14002:18;;;13995:53;14065:18;;44368:43:0::1;13742:347:1::0;44368:43:0::1;5410:6:::0;;-1:-1:-1;;;;;5410:6:0;44450:10:::1;:21;44446:278;;44487:13;::::0;;;::::1;;;:21;;44504:4;44487:21;44484:223;;;44573:10;44525:24;44552:32:::0;;;:20:::1;:32;::::0;;;;;:46:::1;::::0;44587:11;;44552:46:::1;:::i;:::-;44525:73;;44621:46;44636:10;44650:16;44621:14;:46::i;:::-;44613:82;;;::::0;-1:-1:-1;;;44613:82:0;;16291:2:1;44613:82:0::1;::::0;::::1;16273:21:1::0;16330:2;16310:18;;;16303:30;16369:25;16349:18;;;16342:53;16412:18;;44613:82:0::1;16089:347:1::0;44613:82:0::1;44510:197;44484:223;44790:11;44783:4;;:18;;;;:::i;:::-;44770:9;:31;;44762:55;;;::::0;-1:-1:-1;;;44762:55:0;;8519:2:1;44762:55:0::1;::::0;::::1;8501:21:1::0;8558:2;8538:18;;;8531:30;-1:-1:-1;;;8577:18:1;;;8570:41;8628:18;;44762:55:0::1;8317:335:1::0;44762:55:0::1;44843:1;44826:96;44851:11;44846:1;:16;44826:96;;44901:10;44880:32;::::0;;;:20:::1;:32;::::0;;;;:34;;;::::1;::::0;::::1;:::i;:::-;;;;;;44864:3;;;;;:::i;:::-;;;;44826:96;;;;44930:34;44940:10;44952:11;44930:9;:34::i;38007:5316::-:0;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;38007:5316:0;;-1:-1:-1;38007:5316:0;:::o;27797:155::-;27892:52;4141:10;27925:8;27935;27892:18;:52::i;37747:31::-;;;;;;;:::i;46930:130::-;5410:6;;-1:-1:-1;;;;;5410:6:0;4141:10;5557:23;5549:68;;;;-1:-1:-1;;;5549:68:0;;;;;;;:::i;:::-;47014:18:::1;:40:::0;46930:130::o;28920:328::-;29095:41;4141:10;29128:7;29095:18;:41::i;:::-;29087:103;;;;-1:-1:-1;;;29087:103:0;;;;;;;:::i;:::-;29201:39;29215:4;29221:2;29225:7;29234:5;29201:13;:39::i;:::-;28920:328;;;;:::o;46263:494::-;30823:4;30847:16;;;:7;:16;;;;;;46362:13;;-1:-1:-1;;;;;30847:16:0;46387:98;;;;-1:-1:-1;;;46387:98:0;;14706:2:1;46387:98:0;;;14688:21:1;14745:2;14725:18;;;14718:30;14784:34;14764:18;;;14757:62;-1:-1:-1;;;14835:18:1;;;14828:45;14890:19;;46387:98:0;14504:411:1;46387:98:0;46498:8;;;;;;;46494:64;;46533:17;46526:24;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46263:494;;;:::o;46494:64::-;46566:28;46597:10;:8;:10::i;:::-;46566:41;;46652:1;46627:14;46621:28;:32;:130;;;;;;;;;;;;;;;;;46689:14;46705:19;:8;:17;:19::i;:::-;46726:9;46672:64;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;46621:130;46614:137;46263:494;-1:-1:-1;;;46263:494:0:o;46763:81::-;5410:6;;-1:-1:-1;;;;;5410:6:0;4141:10;5557:23;5549:68;;;;-1:-1:-1;;;5549:68:0;;;;;;;:::i;:::-;46821:8:::1;:17:::0;;;::::1;;;;-1:-1:-1::0;;46821:17:0;;::::1;::::0;;;::::1;::::0;;46763:81::o;44978:155::-;45064:11;44022:1;44008:11;:15;:52;;;;;44042:18;;44027:11;:33;;44008:52;44000:85;;;;-1:-1:-1;;;44000:85:0;;10042:2:1;44000:85:0;;;10024:21:1;10081:2;10061:18;;;10054:30;-1:-1:-1;;;10100:18:1;;;10093:50;10160:18;;44000:85:0;9840:344:1;44000:85:0;44134:9;;44119:11;44100:16;:6;757:14;;665:114;44100:16;:30;;;;:::i;:::-;:43;;44092:76;;;;-1:-1:-1;;;44092:76:0;;15524:2:1;44092:76:0;;;15506:21:1;15563:2;15543:18;;;15536:30;-1:-1:-1;;;15582:18:1;;;15575:50;15642:18;;44092:76:0;15322:344:1;44092:76:0;5410:6;;-1:-1:-1;;;;;5410:6:0;4141:10;5557:23:::1;5549:68;;;;-1:-1:-1::0;;;5549:68:0::1;;;;;;;:::i;:::-;45094:33:::2;45104:9;45115:11;45094:9;:33::i;6246:201::-:0;5410:6;;-1:-1:-1;;;;;5410:6:0;4141:10;5557:23;5549:68;;;;-1:-1:-1;;;5549:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;6335:22:0;::::1;6327:73;;;::::0;-1:-1:-1;;;6327:73:0;;9278:2:1;6327:73:0::1;::::0;::::1;9260:21:1::0;9317:2;9297:18;;;9290:30;9356:34;9336:18;;;9329:62;-1:-1:-1;;;9407:18:1;;;9400:36;9453:19;;6327:73:0::1;9076:402:1::0;6327:73:0::1;6411:28;6430:8;6411:18;:28::i;34740:174::-:0;34815:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;34815:29:0;-1:-1:-1;;;;;34815:29:0;;;;;;;;:24;;34869:23;34815:24;34869:14;:23::i;:::-;-1:-1:-1;;;;;34860:46:0;;;;;;;;;;;34740:174;;:::o;31052:348::-;31145:4;30847:16;;;:7;:16;;;;;;-1:-1:-1;;;;;30847:16:0;31162:73;;;;-1:-1:-1;;;31162:73:0;;11150:2:1;31162:73:0;;;11132:21:1;11189:2;11169:18;;;11162:30;11228:34;11208:18;;;11201:62;-1:-1:-1;;;11279:18:1;;;11272:42;11331:19;;31162:73:0;10948:408:1;31162:73:0;31246:13;31262:23;31277:7;31262:14;:23::i;:::-;31246:39;;31315:5;-1:-1:-1;;;;;31304:16:0;:7;-1:-1:-1;;;;;31304:16:0;;:51;;;;31348:7;-1:-1:-1;;;;;31324:31:0;:20;31336:7;31324:11;:20::i;:::-;-1:-1:-1;;;;;31324:31:0;;31304:51;:87;;;-1:-1:-1;;;;;;28144:25:0;;;28120:4;28144:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;31359:32;31296:96;31052:348;-1:-1:-1;;;;31052:348:0:o;34044:578::-;34203:4;-1:-1:-1;;;;;34176:31:0;:23;34191:7;34176:14;:23::i;:::-;-1:-1:-1;;;;;34176:31:0;;34168:85;;;;-1:-1:-1;;;34168:85:0;;14296:2:1;34168:85:0;;;14278:21:1;14335:2;14315:18;;;14308:30;14374:34;14354:18;;;14347:62;-1:-1:-1;;;14425:18:1;;;14418:39;14474:19;;34168:85:0;14094:405:1;34168:85:0;-1:-1:-1;;;;;34272:16:0;;34264:65;;;;-1:-1:-1;;;34264:65:0;;10391:2:1;34264:65:0;;;10373:21:1;10430:2;10410:18;;;10403:30;10469:34;10449:18;;;10442:62;-1:-1:-1;;;10520:18:1;;;10513:34;10564:19;;34264:65:0;10189:400:1;34264:65:0;34446:29;34463:1;34467:7;34446:8;:29::i;:::-;-1:-1:-1;;;;;34488:15:0;;;;;;:9;:15;;;;;:20;;34507:1;;34488:15;:20;;34507:1;;34488:20;:::i;:::-;;;;-1:-1:-1;;;;;;;34519:13:0;;;;;;:9;:13;;;;;:18;;34536:1;;34519:13;:18;;34536:1;;34519:18;:::i;:::-;;;;-1:-1:-1;;34548:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;34548:21:0;-1:-1:-1;;;;;34548:21:0;;;;;;;;;34587:27;;34548:16;;34587:27;;;;;;;34044:578;;;:::o;6607:191::-;6700:6;;;-1:-1:-1;;;;;6717:17:0;;;-1:-1:-1;;;;;;6717:17:0;;;;;;;6750:40;;6700:6;;;6717:17;6700:6;;6750:40;;6681:16;;6750:40;6670:128;6607:191;:::o;48333:204::-;48413:9;48408:124;48432:11;48428:1;:15;48408:124;;;48459:18;:6;876:19;;894:1;876:19;;;787:127;48459:18;48486:38;48496:9;48507:16;:6;757:14;;665:114;48507:16;48486:9;:38::i;:::-;48445:3;;;;:::i;:::-;;;;48408:124;;35056:315;35211:8;-1:-1:-1;;;;;35202:17:0;:5;-1:-1:-1;;;;;35202:17:0;;;35194:55;;;;-1:-1:-1;;;35194:55:0;;10796:2:1;35194:55:0;;;10778:21:1;10835:2;10815:18;;;10808:30;10874:27;10854:18;;;10847:55;10919:18;;35194:55:0;10594:349:1;35194:55:0;-1:-1:-1;;;;;35260:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;35260:46:0;;;;;;;;;;35322:41;;8041::1;;;35322::0;;8014:18:1;35322:41:0;;;;;;;35056:315;;;:::o;30130:::-;30287:28;30297:4;30303:2;30307:7;30287:9;:28::i;:::-;30334:48;30357:4;30363:2;30367:7;30376:5;30334:22;:48::i;:::-;30326:111;;;;-1:-1:-1;;;30326:111:0;;;;;;;:::i;48543:104::-;48603:13;48632:9;48625:16;;;;;:::i;1623:723::-;1679:13;1900:10;1896:53;;-1:-1:-1;;1927:10:0;;;;;;;;;;;;-1:-1:-1;;;1927:10:0;;;;;1623:723::o;1896:53::-;1974:5;1959:12;2015:78;2022:9;;2015:78;;2048:8;;;;:::i;:::-;;-1:-1:-1;2071:10:0;;-1:-1:-1;2079:2:0;2071:10;;:::i;:::-;;;2015:78;;;2103:19;2135:6;2125:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;2125:17:0;;2103:39;;2153:154;2160:10;;2153:154;;2187:11;2197:1;2187:11;;:::i;:::-;;-1:-1:-1;2256:10:0;2264:2;2256:5;:10;:::i;:::-;2243:24;;:2;:24;:::i;:::-;2230:39;;2213:6;2220;2213:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;2213:56:0;;;;;;;;-1:-1:-1;2284:11:0;2293:2;2284:11;;:::i;:::-;;;2153:154;;31742:110;31818:26;31828:2;31832:7;31818:26;;;;;;;;;;;;:9;:26::i;35936:799::-;36091:4;-1:-1:-1;;;;;36112:13:0;;7948:20;7996:8;36108:620;;36148:72;;-1:-1:-1;;;36148:72:0;;-1:-1:-1;;;;;36148:36:0;;;;;:72;;4141:10;;36199:4;;36205:7;;36214:5;;36148:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;36148:72:0;;;;;;;;-1:-1:-1;;36148:72:0;;;;;;;;;;;;:::i;:::-;;;36144:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;36390:13:0;;36386:272;;36433:60;;-1:-1:-1;;;36433:60:0;;;;;;;:::i;36386:272::-;36608:6;36602:13;36593:6;36589:2;36585:15;36578:38;36144:529;-1:-1:-1;;;;;;36271:51:0;-1:-1:-1;;;36271:51:0;;-1:-1:-1;36264:58:0;;36108:620;-1:-1:-1;36712:4:0;35936:799;;;;;;:::o;32079:321::-;32209:18;32215:2;32219:7;32209:5;:18::i;:::-;32260:54;32291:1;32295:2;32299:7;32308:5;32260:22;:54::i;:::-;32238:154;;;;-1:-1:-1;;;32238:154:0;;;;;;;:::i;32736:382::-;-1:-1:-1;;;;;32816:16:0;;32808:61;;;;-1:-1:-1;;;32808:61:0;;12809:2:1;32808:61:0;;;12791:21:1;;;12828:18;;;12821:30;12887:34;12867:18;;;12860:62;12939:18;;32808:61:0;12607:356:1;32808:61:0;30823:4;30847:16;;;:7;:16;;;;;;-1:-1:-1;;;;;30847:16:0;:30;32880:58;;;;-1:-1:-1;;;32880:58:0;;9685:2:1;32880:58:0;;;9667:21:1;9724:2;9704:18;;;9697:30;9763;9743:18;;;9736:58;9811:18;;32880:58:0;9483:352:1;32880:58:0;-1:-1:-1;;;;;33009:13:0;;;;;;:9;:13;;;;;:18;;33026:1;;33009:13;:18;;33026:1;;33009:18;:::i;:::-;;;;-1:-1:-1;;33038:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;33038:21:0;-1:-1:-1;;;;;33038:21:0;;;;;;;;33077:33;;33038:16;;;33077:33;;33038:16;;33077:33;32736:382;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:631:1;78:5;108:18;149:2;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:160::-;893:20;;949:13;;942:21;932:32;;922:60;;978:1;975;968:12;993:186;1052:6;1105:2;1093:9;1084:7;1080:23;1076:32;1073:52;;;1121:1;1118;1111:12;1073:52;1144:29;1163:9;1144:29;:::i;1184:260::-;1252:6;1260;1313:2;1301:9;1292:7;1288:23;1284:32;1281:52;;;1329:1;1326;1319:12;1281:52;1352:29;1371:9;1352:29;:::i;:::-;1342:39;;1400:38;1434:2;1423:9;1419:18;1400:38;:::i;:::-;1390:48;;1184:260;;;;;:::o;1449:328::-;1526:6;1534;1542;1595:2;1583:9;1574:7;1570:23;1566:32;1563:52;;;1611:1;1608;1601:12;1563:52;1634:29;1653:9;1634:29;:::i;:::-;1624:39;;1682:38;1716:2;1705:9;1701:18;1682:38;:::i;:::-;1672:48;;1767:2;1756:9;1752:18;1739:32;1729:42;;1449:328;;;;;:::o;1782:666::-;1877:6;1885;1893;1901;1954:3;1942:9;1933:7;1929:23;1925:33;1922:53;;;1971:1;1968;1961:12;1922:53;1994:29;2013:9;1994:29;:::i;:::-;1984:39;;2042:38;2076:2;2065:9;2061:18;2042:38;:::i;:::-;2032:48;;2127:2;2116:9;2112:18;2099:32;2089:42;;2182:2;2171:9;2167:18;2154:32;2209:18;2201:6;2198:30;2195:50;;;2241:1;2238;2231:12;2195:50;2264:22;;2317:4;2309:13;;2305:27;-1:-1:-1;2295:55:1;;2346:1;2343;2336:12;2295:55;2369:73;2434:7;2429:2;2416:16;2411:2;2407;2403:11;2369:73;:::i;:::-;2359:83;;;1782:666;;;;;;;:::o;2453:254::-;2518:6;2526;2579:2;2567:9;2558:7;2554:23;2550:32;2547:52;;;2595:1;2592;2585:12;2547:52;2618:29;2637:9;2618:29;:::i;:::-;2608:39;;2666:35;2697:2;2686:9;2682:18;2666:35;:::i;2712:254::-;2780:6;2788;2841:2;2829:9;2820:7;2816:23;2812:32;2809:52;;;2857:1;2854;2847:12;2809:52;2880:29;2899:9;2880:29;:::i;:::-;2870:39;2956:2;2941:18;;;;2928:32;;-1:-1:-1;;;2712:254:1:o;2971:180::-;3027:6;3080:2;3068:9;3059:7;3055:23;3051:32;3048:52;;;3096:1;3093;3086:12;3048:52;3119:26;3135:9;3119:26;:::i;3156:245::-;3214:6;3267:2;3255:9;3246:7;3242:23;3238:32;3235:52;;;3283:1;3280;3273:12;3235:52;3322:9;3309:23;3341:30;3365:5;3341:30;:::i;3406:249::-;3475:6;3528:2;3516:9;3507:7;3503:23;3499:32;3496:52;;;3544:1;3541;3534:12;3496:52;3576:9;3570:16;3595:30;3619:5;3595:30;:::i;3660:450::-;3729:6;3782:2;3770:9;3761:7;3757:23;3753:32;3750:52;;;3798:1;3795;3788:12;3750:52;3838:9;3825:23;3871:18;3863:6;3860:30;3857:50;;;3903:1;3900;3893:12;3857:50;3926:22;;3979:4;3971:13;;3967:27;-1:-1:-1;3957:55:1;;4008:1;4005;3998:12;3957:55;4031:73;4096:7;4091:2;4078:16;4073:2;4069;4065:11;4031:73;:::i;4115:180::-;4174:6;4227:2;4215:9;4206:7;4202:23;4198:32;4195:52;;;4243:1;4240;4233:12;4195:52;-1:-1:-1;4266:23:1;;4115:180;-1:-1:-1;4115:180:1:o;4300:254::-;4368:6;4376;4429:2;4417:9;4408:7;4404:23;4400:32;4397:52;;;4445:1;4442;4435:12;4397:52;4481:9;4468:23;4458:33;;4510:38;4544:2;4533:9;4529:18;4510:38;:::i;4559:257::-;4600:3;4638:5;4632:12;4665:6;4660:3;4653:19;4681:63;4737:6;4730:4;4725:3;4721:14;4714:4;4707:5;4703:16;4681:63;:::i;:::-;4798:2;4777:15;-1:-1:-1;;4773:29:1;4764:39;;;;4805:4;4760:50;;4559:257;-1:-1:-1;;4559:257:1:o;4821:1527::-;5045:3;5083:6;5077:13;5109:4;5122:51;5166:6;5161:3;5156:2;5148:6;5144:15;5122:51;:::i;:::-;5236:13;;5195:16;;;;5258:55;5236:13;5195:16;5280:15;;;5258:55;:::i;:::-;5402:13;;5335:20;;;5375:1;;5462;5484:18;;;;5537;;;;5564:93;;5642:4;5632:8;5628:19;5616:31;;5564:93;5705:2;5695:8;5692:16;5672:18;5669:40;5666:167;;;-1:-1:-1;;;5732:33:1;;5788:4;5785:1;5778:15;5818:4;5739:3;5806:17;5666:167;5849:18;5876:110;;;;6000:1;5995:328;;;;5842:481;;5876:110;-1:-1:-1;;5911:24:1;;5897:39;;5956:20;;;;-1:-1:-1;5876:110:1;;5995:328;16696:1;16689:14;;;16733:4;16720:18;;6090:1;6104:169;6118:8;6115:1;6112:15;6104:169;;;6200:14;;6185:13;;;6178:37;6243:16;;;;6135:10;;6104:169;;;6108:3;;6304:8;6297:5;6293:20;6286:27;;5842:481;-1:-1:-1;6339:3:1;;4821:1527;-1:-1:-1;;;;;;;;;;;4821:1527:1:o;6771:488::-;-1:-1:-1;;;;;7040:15:1;;;7022:34;;7092:15;;7087:2;7072:18;;7065:43;7139:2;7124:18;;7117:34;;;7187:3;7182:2;7167:18;;7160:31;;;6965:4;;7208:45;;7233:19;;7225:6;7208:45;:::i;:::-;7200:53;6771:488;-1:-1:-1;;;;;;6771:488:1:o;7264:632::-;7435:2;7487:21;;;7557:13;;7460:18;;;7579:22;;;7406:4;;7435:2;7658:15;;;;7632:2;7617:18;;;7406:4;7701:169;7715:6;7712:1;7709:13;7701:169;;;7776:13;;7764:26;;7845:15;;;;7810:12;;;;7737:1;7730:9;7701:169;;;-1:-1:-1;7887:3:1;;7264:632;-1:-1:-1;;;;;;7264:632:1:o;8093:219::-;8242:2;8231:9;8224:21;8205:4;8262:44;8302:2;8291:9;8287:18;8279:6;8262:44;:::i;8657:414::-;8859:2;8841:21;;;8898:2;8878:18;;;8871:30;8937:34;8932:2;8917:18;;8910:62;-1:-1:-1;;;9003:2:1;8988:18;;8981:48;9061:3;9046:19;;8657:414::o;13381:356::-;13583:2;13565:21;;;13602:18;;;13595:30;13661:34;13656:2;13641:18;;13634:62;13728:2;13713:18;;13381:356::o;15671:413::-;15873:2;15855:21;;;15912:2;15892:18;;;15885:30;15951:34;15946:2;15931:18;;15924:62;-1:-1:-1;;;16017:2:1;16002:18;;15995:47;16074:3;16059:19;;15671:413::o;16749:128::-;16789:3;16820:1;16816:6;16813:1;16810:13;16807:39;;;16826:18;;:::i;:::-;-1:-1:-1;16862:9:1;;16749:128::o;16882:120::-;16922:1;16948;16938:35;;16953:18;;:::i;:::-;-1:-1:-1;16987:9:1;;16882:120::o;17007:168::-;17047:7;17113:1;17109;17105:6;17101:14;17098:1;17095:21;17090:1;17083:9;17076:17;17072:45;17069:71;;;17120:18;;:::i;:::-;-1:-1:-1;17160:9:1;;17007:168::o;17180:125::-;17220:4;17248:1;17245;17242:8;17239:34;;;17253:18;;:::i;:::-;-1:-1:-1;17290:9:1;;17180:125::o;17310:258::-;17382:1;17392:113;17406:6;17403:1;17400:13;17392:113;;;17482:11;;;17476:18;17463:11;;;17456:39;17428:2;17421:10;17392:113;;;17523:6;17520:1;17517:13;17514:48;;;-1:-1:-1;;17558:1:1;17540:16;;17533:27;17310:258::o;17573:380::-;17652:1;17648:12;;;;17695;;;17716:61;;17770:4;17762:6;17758:17;17748:27;;17716:61;17823:2;17815:6;17812:14;17792:18;17789:38;17786:161;;;17869:10;17864:3;17860:20;17857:1;17850:31;17904:4;17901:1;17894:15;17932:4;17929:1;17922:15;17786:161;;17573:380;;;:::o;17958:135::-;17997:3;-1:-1:-1;;18018:17:1;;18015:43;;;18038:18;;:::i;:::-;-1:-1:-1;18085:1:1;18074:13;;17958:135::o;18098:112::-;18130:1;18156;18146:35;;18161:18;;:::i;:::-;-1:-1:-1;18195:9:1;;18098:112::o;18215:127::-;18276:10;18271:3;18267:20;18264:1;18257:31;18307:4;18304:1;18297:15;18331:4;18328:1;18321:15;18347:127;18408:10;18403:3;18399:20;18396:1;18389:31;18439:4;18436:1;18429:15;18463:4;18460:1;18453:15;18479:127;18540:10;18535:3;18531:20;18528:1;18521:31;18571:4;18568:1;18561:15;18595:4;18592:1;18585:15;18611:127;18672:10;18667:3;18663:20;18660:1;18653:31;18703:4;18700:1;18693:15;18727:4;18724:1;18717:15;18743:131;-1:-1:-1;;;;;;18817:32:1;;18807:43;;18797:71;;18864:1;18861;18854:12
Swarm Source
ipfs://a20db7615148784b647008737e687275b898be78bcbf9d097d425ee789e1029a
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.