Feature Tip: Add private address tag to any address under My Name Tag !
ERC-721
Overview
Max Total Supply
101 DES
Holders
19
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
1 DESLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
DORKLNFT
Compiler Version
v0.8.7+commit.e28d00a7
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2023-11-29 */ // SPDX-License-Identifier: UNLICENCED // DORKL NFTS // File: @openzeppelin/contracts/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/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/IERC721Enumerable.sol pragma solidity ^0.8.0; /** * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Enumerable is IERC721 { /** * @dev Returns the total amount of tokens stored by the contract. */ function totalSupply() external view returns (uint256); /** * @dev Returns a token ID owned by `owner` at a given `index` of its token list. * Use along with {balanceOf} to enumerate all of ``owner``'s tokens. */ function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256 tokenId); /** * @dev Returns a token ID at a given `index` of all the tokens stored by the contract. * Use along with {totalSupply} to enumerate all tokens. */ function tokenByIndex(uint256 index) external view returns (uint256); } // File: @openzeppelin/contracts/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/utils/Strings.sol pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } } // File: @openzeppelin/contracts/utils/Address.sol 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/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/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/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/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 { require(operator != _msgSender(), "ERC721: approve to caller"); _operatorApprovals[_msgSender()][operator] = approved; emit ApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { //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 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: @openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol pragma solidity ^0.8.0; /** * @dev This implements an optional extension of {ERC721} defined in the EIP that adds * enumerability of all the token ids in the contract as well as all token ids owned by each * account. */ abstract contract ERC721Enumerable is ERC721, IERC721Enumerable { // Mapping from owner to list of owned token IDs mapping(address => mapping(uint256 => uint256)) private _ownedTokens; // Mapping from token ID to index of the owner tokens list mapping(uint256 => uint256) private _ownedTokensIndex; // Array with all token ids, used for enumeration uint256[] private _allTokens; // Mapping from token id to position in the allTokens array mapping(uint256 => uint256) private _allTokensIndex; /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(IERC165, ERC721) returns (bool) { return interfaceId == type(IERC721Enumerable).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}. */ function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) { require(index < ERC721.balanceOf(owner), "ERC721Enumerable: owner index out of bounds"); return _ownedTokens[owner][index]; } /** * @dev See {IERC721Enumerable-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _allTokens.length; } /** * @dev See {IERC721Enumerable-tokenByIndex}. */ function tokenByIndex(uint256 index) public view virtual override returns (uint256) { require(index < ERC721Enumerable.totalSupply(), "ERC721Enumerable: global index out of bounds"); return _allTokens[index]; } /** * @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` cannot be the zero address. * - `to` cannot be the zero address. * * 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 override { super._beforeTokenTransfer(from, to, tokenId); if (from == address(0)) { _addTokenToAllTokensEnumeration(tokenId); } else if (from != to) { _removeTokenFromOwnerEnumeration(from, tokenId); } if (to == address(0)) { _removeTokenFromAllTokensEnumeration(tokenId); } else if (to != from) { _addTokenToOwnerEnumeration(to, tokenId); } } /** * @dev Private function to add a token to this extension's ownership-tracking data structures. * @param to address representing the new owner of the given token ID * @param tokenId uint256 ID of the token to be added to the tokens list of the given address */ function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private { uint256 length = ERC721.balanceOf(to); _ownedTokens[to][length] = tokenId; _ownedTokensIndex[tokenId] = length; } /** * @dev Private function to add a token to this extension's token tracking data structures. * @param tokenId uint256 ID of the token to be added to the tokens list */ function _addTokenToAllTokensEnumeration(uint256 tokenId) private { _allTokensIndex[tokenId] = _allTokens.length; _allTokens.push(tokenId); } /** * @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that * while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for * gas optimizations e.g. when performing a transfer operation (avoiding double writes). * This has O(1) time complexity, but alters the order of the _ownedTokens array. * @param from address representing the previous owner of the given token ID * @param tokenId uint256 ID of the token to be removed from the tokens list of the given address */ function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private { // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and // then delete the last slot (swap and pop). uint256 lastTokenIndex = ERC721.balanceOf(from) - 1; uint256 tokenIndex = _ownedTokensIndex[tokenId]; // When the token to delete is the last token, the swap operation is unnecessary if (tokenIndex != lastTokenIndex) { uint256 lastTokenId = _ownedTokens[from][lastTokenIndex]; _ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token _ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index } // This also deletes the contents at the last position of the array delete _ownedTokensIndex[tokenId]; delete _ownedTokens[from][lastTokenIndex]; } /** * @dev Private function to remove a token from this extension's token tracking data structures. * This has O(1) time complexity, but alters the order of the _allTokens array. * @param tokenId uint256 ID of the token to be removed from the tokens list */ function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private { // To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and // then delete the last slot (swap and pop). uint256 lastTokenIndex = _allTokens.length - 1; uint256 tokenIndex = _allTokensIndex[tokenId]; // When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so // rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding // an 'if' statement (like in _removeTokenFromOwnerEnumeration) uint256 lastTokenId = _allTokens[lastTokenIndex]; _allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token _allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index // This also deletes the contents at the last position of the array delete _allTokensIndex[tokenId]; _allTokens.pop(); } } // File: @openzeppelin/contracts/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() { _setOwner(_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 { _setOwner(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"); _setOwner(newOwner); } function _setOwner(address newOwner) private { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } pragma solidity >=0.4.0; interface IBEP20 { /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the token decimals. */ function decimals() external view returns (uint8); /** * @dev Returns the token symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the token name. */ function name() external view returns (string memory); /** * @dev Returns the bep token owner. */ function getOwner() external view returns (address); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `recipient`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address recipient, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address _owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `sender` to `recipient` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom( address sender, address recipient, uint256 amount ) external returns (bool); /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); } pragma solidity ^0.8.0; contract DORKLNFT is ERC721Enumerable, Ownable { using Strings for uint256; string baseURI; string baseExtension = ".json"; uint256 public costBNB; uint256 public maxSupply; uint256 public maxMintAmount = 4; bool public goPublic = false; mapping(uint256 => bool) public isRedeemed; mapping(address => bool) public whitelisted; mapping(address => uint256) public howMany; mapping(uint256 => uint256) public amountMinted; event mintedIds(address to, uint256[] ids); constructor( string memory _name, string memory _symbol, string memory _initBaseURI, uint256 _maxSupply, uint256 _costBNB ) ERC721(_name, _symbol) { setBaseURI(_initBaseURI); costBNB = _costBNB; maxSupply = _maxSupply; } // internal function _baseURI() internal view virtual override returns (string memory) { return baseURI; } function ownerMint(address _to, uint256 _mintAmount) external onlyOwner returns (uint256[] memory ids) { uint256 supply = totalSupply(); require(_mintAmount > 0,"Must mint at least 1"); require(supply + _mintAmount <= maxSupply,"Max supply reached"); ids = new uint256[](_mintAmount); for (uint256 i = 1; i <= _mintAmount; i++) { uint256 id = supply + i; _safeMint(_to, id); ids[i-1] = id; } emit mintedIds(_to, ids); } function whiteMint() external payable returns (uint256[] memory ids) { if(costBNB > 0) { require(msg.value >= costBNB,"Not Enough BNB"); } uint256 supply = totalSupply(); require(supply + 1 <= maxSupply,"Max supply reached"); require(whitelisted[msg.sender],"Not Whitelisted"); require(howMany[msg.sender] > 0, "Ran Out"); ids = new uint256[](1); uint256 id = supply + 1; _safeMint(msg.sender, id); ids[0] = id; howMany[msg.sender] -= 1; if (howMany[msg.sender] == 0) whitelisted[msg.sender] = false; emit mintedIds(msg.sender, ids); } // public function mint(address _to, uint256 _mintAmount) public payable returns (uint256[] memory ids) { require(goPublic,"Not Publicly Live Yet."); if(costBNB > 0) { require(msg.value >= costBNB * _mintAmount,"Not Enough BNB"); } uint256 supply = totalSupply(); require(_mintAmount > 0,"Must mint at least 1"); require(_mintAmount <= maxMintAmount,"Mint amount Too High"); require(supply + _mintAmount <= maxSupply,"Max supply reached"); ids = new uint256[](_mintAmount); for (uint256 i = 1; i <= _mintAmount; i++) { uint256 id = supply + i; _safeMint(_to, id); ids[i-1] = id; } emit mintedIds(_to, ids); } function walletOfOwner(address _owner) public view returns (uint256[] memory) { uint256 ownerTokenCount = balanceOf(_owner); uint256[] memory tokenIds = new uint256[](ownerTokenCount); for (uint256 i; i < ownerTokenCount; i++) { tokenIds[i] = tokenOfOwnerByIndex(_owner, i); } return tokenIds; } function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require( _exists(tokenId), "ERC721Metadata: URI query for nonexistent token" ); string memory currentBaseURI = _baseURI(); return bytes(currentBaseURI).length > 0 ? string(abi.encodePacked(currentBaseURI, tokenId.toString(), baseExtension)) : ""; } function setmaxMintAmount(uint256 _newmaxMintAmount) public onlyOwner { maxMintAmount = _newmaxMintAmount; } function setBaseURI(string memory _newBaseURI) public onlyOwner { baseURI = _newBaseURI; } function setGoPublic() public onlyOwner { require(!goPublic, "already gone public"); goPublic = true; } function AddWhiteList(address[] memory _user) public onlyOwner { for(uint i=0; i<_user.length; i++) { whitelisted[_user[i]] = true; howMany[_user[i]] += 1; } } function RemoveWhiteList(address[] memory _user) public onlyOwner { for(uint i=0; i<_user.length; i++) { whitelisted[_user[i]] = false; howMany[_user[i]] = 0; } } function withdrawBNB() public onlyOwner { require(payable(msg.sender).send(address(this).balance)); } function withdrawlToken(address _tokenAddress) external onlyOwner { IBEP20(_tokenAddress).transfer(msg.sender, IBEP20(_tokenAddress).balanceOf(address(this))); } //only owner function setCostBNB(uint256 _newCost) public onlyOwner { costBNB = _newCost; } function redeem(uint256 id) external { require(!isRedeemed[id], "Already Redeemed"); uint256[] memory ids = walletOfOwner(msg.sender); bool ownsID = false; for(uint i=0; i<ids.length; i++) { if(ids[i] == id) ownsID = true; } require(ownsID, "Must Own NFT ID"); isRedeemed[id] = true; } function redeemAllMine() external { uint256[] memory ids = walletOfOwner(msg.sender); require(ids.length > 0,"Must own at least 1"); for(uint i=0; i<ids.length; i++) { isRedeemed[ids[i]] = true; } } function resetRedeem(uint256 id) external onlyOwner { isRedeemed[id] = false; } function resetAll() external onlyOwner { for(uint256 i=1; i<=totalSupply();i++){ isRedeemed[i] = false; } } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"string","name":"_initBaseURI","type":"string"},{"internalType":"uint256","name":"_maxSupply","type":"uint256"},{"internalType":"uint256","name":"_costBNB","type":"uint256"}],"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"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256[]","name":"ids","type":"uint256[]"}],"name":"mintedIds","type":"event"},{"inputs":[{"internalType":"address[]","name":"_user","type":"address[]"}],"name":"AddWhiteList","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"_user","type":"address[]"}],"name":"RemoveWhiteList","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"amountMinted","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":"costBNB","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":"goPublic","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"howMany","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"isRedeemed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[{"internalType":"uint256[]","name":"ids","type":"uint256[]"}],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"ownerMint","outputs":[{"internalType":"uint256[]","name":"ids","type":"uint256[]"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"id","type":"uint256"}],"name":"redeem","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"redeemAllMine","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"resetAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"id","type":"uint256"}],"name":"resetRedeem","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newCost","type":"uint256"}],"name":"setCostBNB","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setGoPublic","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newmaxMintAmount","type":"uint256"}],"name":"setmaxMintAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"whiteMint","outputs":[{"internalType":"uint256[]","name":"ids","type":"uint256[]"}],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"whitelisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdrawBNB","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_tokenAddress","type":"address"}],"name":"withdrawlToken","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60c06040526005608081905264173539b7b760d91b60a09081526200002891600c91906200019d565b506004600f556010805460ff191690553480156200004557600080fd5b5060405162003305380380620033058339810160408190526200006891620002fa565b845185908590620000819060009060208501906200019d565b508051620000979060019060208401906200019d565b505050620000b4620000ae620000cf60201b60201c565b620000d3565b620000bf8362000125565b600d55600e5550620003f1915050565b3390565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600a546001600160a01b03163314620001845760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640160405180910390fd5b80516200019990600b9060208401906200019d565b5050565b828054620001ab906200039e565b90600052602060002090601f016020900481019282620001cf57600085556200021a565b82601f10620001ea57805160ff19168380011785556200021a565b828001600101855582156200021a579182015b828111156200021a578251825591602001919060010190620001fd565b50620002289291506200022c565b5090565b5b808211156200022857600081556001016200022d565b600082601f8301126200025557600080fd5b81516001600160401b0380821115620002725762000272620003db565b604051601f8301601f19908116603f011681019082821181831017156200029d576200029d620003db565b81604052838152602092508683858801011115620002ba57600080fd5b600091505b83821015620002de5785820183015181830184015290820190620002bf565b83821115620002f05760008385830101525b9695505050505050565b600080600080600060a086880312156200031357600080fd5b85516001600160401b03808211156200032b57600080fd5b6200033989838a0162000243565b965060208801519150808211156200035057600080fd5b6200035e89838a0162000243565b955060408801519150808211156200037557600080fd5b50620003848882890162000243565b606088015160809098015196999598509695949350505050565b600181811c90821680620003b357607f821691505b60208210811415620003d557634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b612f0480620004016000396000f3fe60806040526004361061025c5760003560e01c8063602977ad11610144578063a22cb465116100b6578063d8354c361161007a578063d8354c36146106e6578063d936547e14610706578063db006a7514610736578063e103aef514610756578063e985e9c51461076b578063f2fde38b146107b457600080fd5b8063a22cb46514610650578063ac5cad5614610670578063b88d4fde14610690578063c87b56dd146106b0578063d5abeb01146106d057600080fd5b80637b6e74ba116101085780637b6e74ba146105a15780637f00c7a6146105b65780638417fa2f146105d65780638da5cb5b146105f0578063926df1b21461060e57806395d89b411461063b57600080fd5b8063602977ad146105175780636352211e1461054457806370a0823114610564578063715018a6146105845780637479b6b61461059957600080fd5b80632f745c59116101dd57806342842e0e116101a157806342842e0e14610462578063438b630014610482578063484b973c146104a25780634f6ccce7146104c25780635310db0c146104e257806355f804b3146104f757600080fd5b80632f745c59146103b257806331a21fc6146103d257806332d33cd0146103f25780633b8d3c561461042257806340c10f191461044257600080fd5b80631d111d13116102245780631d111d1314610331578063239c70ae1461034657806323b872dd1461035c5780632a555c4f1461037c5780632b30b5d81461039257600080fd5b806301ffc9a71461026157806306fdde0314610296578063081812fc146102b8578063095ea7b3146102f057806318160ddd14610312575b600080fd5b34801561026d57600080fd5b5061028161027c3660046129a8565b6107d4565b60405190151581526020015b60405180910390f35b3480156102a257600080fd5b506102ab6107ff565b60405161028d9190612bfc565b3480156102c457600080fd5b506102d86102d3366004612a2b565b610891565b6040516001600160a01b03909116815260200161028d565b3480156102fc57600080fd5b5061031061030b3660046128ad565b61092b565b005b34801561031e57600080fd5b506008545b60405190815260200161028d565b34801561033d57600080fd5b50610310610a41565b34801561035257600080fd5b50610323600f5481565b34801561036857600080fd5b506103106103773660046127be565b610a91565b34801561038857600080fd5b50610323600d5481565b34801561039e57600080fd5b506103106103ad3660046128d7565b610ac2565b3480156103be57600080fd5b506103236103cd3660046128ad565b610baa565b3480156103de57600080fd5b506103106103ed3660046128d7565b610c40565b3480156103fe57600080fd5b5061028161040d366004612a2b565b60116020526000908152604090205460ff1681565b34801561042e57600080fd5b5061031061043d366004612a2b565b610d34565b6104556104503660046128ad565b610d63565b60405161028d9190612be9565b34801561046e57600080fd5b5061031061047d3660046127be565b610fb2565b34801561048e57600080fd5b5061045561049d366004612770565b610fcd565b3480156104ae57600080fd5b506104556104bd3660046128ad565b61106f565b3480156104ce57600080fd5b506103236104dd366004612a2b565b6111bd565b3480156104ee57600080fd5b50610310611250565b34801561050357600080fd5b506103106105123660046129e2565b611308565b34801561052357600080fd5b50610323610532366004612770565b60136020526000908152604090205481565b34801561055057600080fd5b506102d861055f366004612a2b565b611345565b34801561057057600080fd5b5061032361057f366004612770565b6113bc565b34801561059057600080fd5b50610310611443565b610455611477565b3480156105ad57600080fd5b50610310611681565b3480156105c257600080fd5b506103106105d1366004612a2b565b611703565b3480156105e257600080fd5b506010546102819060ff1681565b3480156105fc57600080fd5b50600a546001600160a01b03166102d8565b34801561061a57600080fd5b50610323610629366004612a2b565b60146020526000908152604090205481565b34801561064757600080fd5b506102ab611732565b34801561065c57600080fd5b5061031061066b366004612876565b611741565b34801561067c57600080fd5b5061031061068b366004612770565b611806565b34801561069c57600080fd5b506103106106ab3660046127fa565b61192f565b3480156106bc57600080fd5b506102ab6106cb366004612a2b565b611967565b3480156106dc57600080fd5b50610323600e5481565b3480156106f257600080fd5b50610310610701366004612a2b565b611a45565b34801561071257600080fd5b50610281610721366004612770565b60126020526000908152604090205460ff1681565b34801561074257600080fd5b50610310610751366004612a2b565b611a87565b34801561076257600080fd5b50610310611b88565b34801561077757600080fd5b5061028161078636600461278b565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b3480156107c057600080fd5b506103106107cf366004612770565b611be9565b60006001600160e01b0319821663780e9d6360e01b14806107f957506107f982611c81565b92915050565b60606000805461080e90612dd2565b80601f016020809104026020016040519081016040528092919081815260200182805461083a90612dd2565b80156108875780601f1061085c57610100808354040283529160200191610887565b820191906000526020600020905b81548152906001019060200180831161086a57829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b031661090f5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061093682611345565b9050806001600160a01b0316836001600160a01b031614156109a45760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610906565b336001600160a01b03821614806109c057506109c08133610786565b610a325760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610906565b610a3c8383611cd1565b505050565b600a546001600160a01b03163314610a6b5760405162461bcd60e51b815260040161090690612c61565b60405133904780156108fc02916000818181858888f19350505050610a8f57600080fd5b565b610a9b3382611d3f565b610ab75760405162461bcd60e51b815260040161090690612c96565b610a3c838383611e36565b600a546001600160a01b03163314610aec5760405162461bcd60e51b815260040161090690612c61565b60005b8151811015610ba657600060126000848481518110610b1057610b10612e7e565b60200260200101516001600160a01b03166001600160a01b0316815260200190815260200160002060006101000a81548160ff021916908315150217905550600060136000848481518110610b6757610b67612e7e565b60200260200101516001600160a01b03166001600160a01b03168152602001908152602001600020819055508080610b9e90612e0d565b915050610aef565b5050565b6000610bb5836113bc565b8210610c175760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610906565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600a546001600160a01b03163314610c6a5760405162461bcd60e51b815260040161090690612c61565b60005b8151811015610ba657600160126000848481518110610c8e57610c8e612e7e565b60200260200101516001600160a01b03166001600160a01b0316815260200190815260200160002060006101000a81548160ff021916908315150217905550600160136000848481518110610ce557610ce5612e7e565b60200260200101516001600160a01b03166001600160a01b031681526020019081526020016000206000828254610d1c9190612d44565b90915550819050610d2c81612e0d565b915050610c6d565b600a546001600160a01b03163314610d5e5760405162461bcd60e51b815260040161090690612c61565b600d55565b60105460609060ff16610db15760405162461bcd60e51b81526020600482015260166024820152752737ba10283ab13634b1b63c902634bb32902cb2ba1760511b6044820152606401610906565b600d5415610e075781600d54610dc79190612d70565b341015610e075760405162461bcd60e51b815260206004820152600e60248201526d2737ba1022b737bab3b41021272160911b6044820152606401610906565b6000610e1260085490565b905060008311610e5b5760405162461bcd60e51b81526020600482015260146024820152734d757374206d696e74206174206c65617374203160601b6044820152606401610906565b600f54831115610ea45760405162461bcd60e51b815260206004820152601460248201527309ad2dce840c2dadeeadce840a8dede4090d2ced60631b6044820152606401610906565b600e54610eb18483612d44565b1115610ecf5760405162461bcd60e51b815260040161090690612ce7565b8267ffffffffffffffff811115610ee857610ee8612e94565b604051908082528060200260200182016040528015610f11578160200160208202803683370190505b50915060015b838111610f71576000610f2a8284612d44565b9050610f368682611fe1565b8084610f43600185612d8f565b81518110610f5357610f53612e7e565b60209081029190910101525080610f6981612e0d565b915050610f17565b507f807353be1b17c00f363c8d635aef4d159ccc6e5e2412ffbe1aab88c3df5c9e8c8483604051610fa3929190612bc5565b60405180910390a15092915050565b610a3c8383836040518060200160405280600081525061192f565b60606000610fda836113bc565b905060008167ffffffffffffffff811115610ff757610ff7612e94565b604051908082528060200260200182016040528015611020578160200160208202803683370190505b50905060005b82811015611067576110388582610baa565b82828151811061104a5761104a612e7e565b60209081029190910101528061105f81612e0d565b915050611026565b509392505050565b600a546060906001600160a01b0316331461109c5760405162461bcd60e51b815260040161090690612c61565b60006110a760085490565b9050600083116110f05760405162461bcd60e51b81526020600482015260146024820152734d757374206d696e74206174206c65617374203160601b6044820152606401610906565b600e546110fd8483612d44565b111561111b5760405162461bcd60e51b815260040161090690612ce7565b8267ffffffffffffffff81111561113457611134612e94565b60405190808252806020026020018201604052801561115d578160200160208202803683370190505b50915060015b838111610f715760006111768284612d44565b90506111828682611fe1565b808461118f600185612d8f565b8151811061119f5761119f612e7e565b602090810291909101015250806111b581612e0d565b915050611163565b60006111c860085490565b821061122b5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610906565b6008828154811061123e5761123e612e7e565b90600052602060002001549050919050565b600061125b33610fcd565b905060008151116112a45760405162461bcd60e51b81526020600482015260136024820152724d757374206f776e206174206c65617374203160681b6044820152606401610906565b60005b8151811015610ba6576001601160008484815181106112c8576112c8612e7e565b6020026020010151815260200190815260200160002060006101000a81548160ff021916908315150217905550808061130090612e0d565b9150506112a7565b600a546001600160a01b031633146113325760405162461bcd60e51b815260040161090690612c61565b8051610ba690600b906020840190612663565b6000818152600260205260408120546001600160a01b0316806107f95760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610906565b60006001600160a01b0382166114275760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610906565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b0316331461146d5760405162461bcd60e51b815260040161090690612c61565b610a8f6000611ffb565b600d54606090156114c557600d543410156114c55760405162461bcd60e51b815260206004820152600e60248201526d2737ba1022b737bab3b41021272160911b6044820152606401610906565b60006114d060085490565b600e549091506114e1826001612d44565b11156114ff5760405162461bcd60e51b815260040161090690612ce7565b3360009081526012602052604090205460ff166115505760405162461bcd60e51b815260206004820152600f60248201526e139bdd0815da1a5d195b1a5cdd1959608a1b6044820152606401610906565b336000908152601360205260409020546115965760405162461bcd60e51b815260206004820152600760248201526614985b8813dd5d60ca1b6044820152606401610906565b604080516001808252818301909252906020808301908036833701905050915060006115c3826001612d44565b90506115cf3382611fe1565b80836000815181106115e3576115e3612e7e565b602090810291909101810191909152336000908152601390915260408120805460019290611612908490612d8f565b90915550503360009081526013602052604090205461164357336000908152601260205260409020805460ff191690555b7f807353be1b17c00f363c8d635aef4d159ccc6e5e2412ffbe1aab88c3df5c9e8c3384604051611674929190612bc5565b60405180910390a1505090565b600a546001600160a01b031633146116ab5760405162461bcd60e51b815260040161090690612c61565b60105460ff16156116f45760405162461bcd60e51b8152602060048201526013602482015272616c726561647920676f6e65207075626c696360681b6044820152606401610906565b6010805460ff19166001179055565b600a546001600160a01b0316331461172d5760405162461bcd60e51b815260040161090690612c61565b600f55565b60606001805461080e90612dd2565b6001600160a01b03821633141561179a5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610906565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600a546001600160a01b031633146118305760405162461bcd60e51b815260040161090690612c61565b6040516370a0823160e01b81523060048201526001600160a01b0382169063a9059cbb90339083906370a082319060240160206040518083038186803b15801561187957600080fd5b505afa15801561188d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906118b19190612a44565b6040516001600160e01b031960e085901b1681526001600160a01b0390921660048301526024820152604401602060405180830381600087803b1580156118f757600080fd5b505af115801561190b573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ba6919061298b565b6119393383611d3f565b6119555760405162461bcd60e51b815260040161090690612c96565b6119618484848461204d565b50505050565b6000818152600260205260409020546060906001600160a01b03166119e65760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610906565b60006119f0612080565b90506000815111611a105760405180602001604052806000815250611a3e565b80611a1a8461208f565b600c604051602001611a2e93929190612ac4565b6040516020818303038152906040525b9392505050565b600a546001600160a01b03163314611a6f5760405162461bcd60e51b815260040161090690612c61565b6000908152601160205260409020805460ff19169055565b60008181526011602052604090205460ff1615611ad95760405162461bcd60e51b815260206004820152601060248201526f105b1c9958591e4814995919595b595960821b6044820152606401610906565b6000611ae433610fcd565b90506000805b8251811015611b2b5783838281518110611b0657611b06612e7e565b60200260200101511415611b1957600191505b80611b2381612e0d565b915050611aea565b5080611b6b5760405162461bcd60e51b815260206004820152600f60248201526e135d5cdd0813dddb88139195081251608a1b6044820152606401610906565b50506000908152601160205260409020805460ff19166001179055565b600a546001600160a01b03163314611bb25760405162461bcd60e51b815260040161090690612c61565b60015b6008548111611be6576000818152601160205260409020805460ff1916905580611bde81612e0d565b915050611bb5565b50565b600a546001600160a01b03163314611c135760405162461bcd60e51b815260040161090690612c61565b6001600160a01b038116611c785760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610906565b611be681611ffb565b60006001600160e01b031982166380ac58cd60e01b1480611cb257506001600160e01b03198216635b5e139f60e01b145b806107f957506301ffc9a760e01b6001600160e01b03198316146107f9565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190611d0682611345565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b0316611db85760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610906565b6000611dc383611345565b9050806001600160a01b0316846001600160a01b03161480611dfe5750836001600160a01b0316611df384610891565b6001600160a01b0316145b80611e2e57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316611e4982611345565b6001600160a01b031614611eb15760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610906565b6001600160a01b038216611f135760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610906565b611f1e83838361218d565b611f29600082611cd1565b6001600160a01b0383166000908152600360205260408120805460019290611f52908490612d8f565b90915550506001600160a01b0382166000908152600360205260408120805460019290611f80908490612d44565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b610ba6828260405180602001604052806000815250612245565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b612058848484611e36565b61206484848484612278565b6119615760405162461bcd60e51b815260040161090690612c0f565b6060600b805461080e90612dd2565b6060816120b35750506040805180820190915260018152600360fc1b602082015290565b8160005b81156120dd57806120c781612e0d565b91506120d69050600a83612d5c565b91506120b7565b60008167ffffffffffffffff8111156120f8576120f8612e94565b6040519080825280601f01601f191660200182016040528015612122576020820181803683370190505b5090505b8415611e2e57612137600183612d8f565b9150612144600a86612e28565b61214f906030612d44565b60f81b81838151811061216457612164612e7e565b60200101906001600160f81b031916908160001a905350612186600a86612d5c565b9450612126565b6001600160a01b0383166121e8576121e381600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b61220b565b816001600160a01b0316836001600160a01b03161461220b5761220b8382612385565b6001600160a01b03821661222257610a3c81612422565b826001600160a01b0316826001600160a01b031614610a3c57610a3c82826124d1565b61224f8383612515565b61225c6000848484612278565b610a3c5760405162461bcd60e51b815260040161090690612c0f565b60006001600160a01b0384163b1561237a57604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906122bc903390899088908890600401612b88565b602060405180830381600087803b1580156122d657600080fd5b505af1925050508015612306575060408051601f3d908101601f19168201909252612303918101906129c5565b60015b612360573d808015612334576040519150601f19603f3d011682016040523d82523d6000602084013e612339565b606091505b5080516123585760405162461bcd60e51b815260040161090690612c0f565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611e2e565b506001949350505050565b60006001612392846113bc565b61239c9190612d8f565b6000838152600760205260409020549091508082146123ef576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b60085460009061243490600190612d8f565b6000838152600960205260408120546008805493945090928490811061245c5761245c612e7e565b90600052602060002001549050806008838154811061247d5761247d612e7e565b60009182526020808320909101929092558281526009909152604080822084905585825281205560088054806124b5576124b5612e68565b6001900381819060005260206000200160009055905550505050565b60006124dc836113bc565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b03821661256b5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610906565b6000818152600260205260409020546001600160a01b0316156125d05760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610906565b6125dc6000838361218d565b6001600160a01b0382166000908152600360205260408120805460019290612605908490612d44565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b82805461266f90612dd2565b90600052602060002090601f01602090048101928261269157600085556126d7565b82601f106126aa57805160ff19168380011785556126d7565b828001600101855582156126d7579182015b828111156126d75782518255916020019190600101906126bc565b506126e39291506126e7565b5090565b5b808211156126e357600081556001016126e8565b600067ffffffffffffffff83111561271657612716612e94565b612729601f8401601f1916602001612d13565b905082815283838301111561273d57600080fd5b828260208301376000602084830101529392505050565b80356001600160a01b038116811461276b57600080fd5b919050565b60006020828403121561278257600080fd5b611a3e82612754565b6000806040838503121561279e57600080fd5b6127a783612754565b91506127b560208401612754565b90509250929050565b6000806000606084860312156127d357600080fd5b6127dc84612754565b92506127ea60208501612754565b9150604084013590509250925092565b6000806000806080858703121561281057600080fd5b61281985612754565b935061282760208601612754565b925060408501359150606085013567ffffffffffffffff81111561284a57600080fd5b8501601f8101871361285b57600080fd5b61286a878235602084016126fc565b91505092959194509250565b6000806040838503121561288957600080fd5b61289283612754565b915060208301356128a281612eaa565b809150509250929050565b600080604083850312156128c057600080fd5b6128c983612754565b946020939093013593505050565b600060208083850312156128ea57600080fd5b823567ffffffffffffffff8082111561290257600080fd5b818501915085601f83011261291657600080fd5b81358181111561292857612928612e94565b8060051b9150612939848301612d13565b8181528481019084860184860187018a101561295457600080fd5b600095505b8386101561297e5761296a81612754565b835260019590950194918601918601612959565b5098975050505050505050565b60006020828403121561299d57600080fd5b8151611a3e81612eaa565b6000602082840312156129ba57600080fd5b8135611a3e81612eb8565b6000602082840312156129d757600080fd5b8151611a3e81612eb8565b6000602082840312156129f457600080fd5b813567ffffffffffffffff811115612a0b57600080fd5b8201601f81018413612a1c57600080fd5b611e2e848235602084016126fc565b600060208284031215612a3d57600080fd5b5035919050565b600060208284031215612a5657600080fd5b5051919050565b600081518084526020808501945080840160005b83811015612a8d57815187529582019590820190600101612a71565b509495945050505050565b60008151808452612ab0816020860160208601612da6565b601f01601f19169290920160200192915050565b600084516020612ad78285838a01612da6565b855191840191612aea8184848a01612da6565b8554920191600090600181811c9080831680612b0757607f831692505b858310811415612b2557634e487b7160e01b85526022600452602485fd5b808015612b395760018114612b4a57612b77565b60ff19851688528388019550612b77565b60008b81526020902060005b85811015612b6f5781548a820152908401908801612b56565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612bbb90830184612a98565b9695505050505050565b6001600160a01b0383168152604060208201819052600090611e2e90830184612a5d565b602081526000611a3e6020830184612a5d565b602081526000611a3e6020830184612a98565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b60208082526012908201527113585e081cdd5c1c1b1e481c995858da195960721b604082015260600190565b604051601f8201601f1916810167ffffffffffffffff81118282101715612d3c57612d3c612e94565b604052919050565b60008219821115612d5757612d57612e3c565b500190565b600082612d6b57612d6b612e52565b500490565b6000816000190483118215151615612d8a57612d8a612e3c565b500290565b600082821015612da157612da1612e3c565b500390565b60005b83811015612dc1578181015183820152602001612da9565b838111156119615750506000910152565b600181811c90821680612de657607f821691505b60208210811415612e0757634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612e2157612e21612e3c565b5060010190565b600082612e3757612e37612e52565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b8015158114611be657600080fd5b6001600160e01b031981168114611be657600080fdfea264697066735822122017f5ad964557aae901bd6506cc43253d1664b7a61be87464c904ad450ea116d664736f6c6343000807003300000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000012000000000000000000000000000000000000000000000000000000000000001f40000000000000000000000000000000000000000000000000470de4df82000000000000000000000000000000000000000000000000000000000000000000012446f726b6c204576656e74205365726965730000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000344455300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d53356831464158666969744b3365374566397a4e50487a6f6245477854754c38665663747458696e347576732f00000000000000000000
Deployed Bytecode
0x60806040526004361061025c5760003560e01c8063602977ad11610144578063a22cb465116100b6578063d8354c361161007a578063d8354c36146106e6578063d936547e14610706578063db006a7514610736578063e103aef514610756578063e985e9c51461076b578063f2fde38b146107b457600080fd5b8063a22cb46514610650578063ac5cad5614610670578063b88d4fde14610690578063c87b56dd146106b0578063d5abeb01146106d057600080fd5b80637b6e74ba116101085780637b6e74ba146105a15780637f00c7a6146105b65780638417fa2f146105d65780638da5cb5b146105f0578063926df1b21461060e57806395d89b411461063b57600080fd5b8063602977ad146105175780636352211e1461054457806370a0823114610564578063715018a6146105845780637479b6b61461059957600080fd5b80632f745c59116101dd57806342842e0e116101a157806342842e0e14610462578063438b630014610482578063484b973c146104a25780634f6ccce7146104c25780635310db0c146104e257806355f804b3146104f757600080fd5b80632f745c59146103b257806331a21fc6146103d257806332d33cd0146103f25780633b8d3c561461042257806340c10f191461044257600080fd5b80631d111d13116102245780631d111d1314610331578063239c70ae1461034657806323b872dd1461035c5780632a555c4f1461037c5780632b30b5d81461039257600080fd5b806301ffc9a71461026157806306fdde0314610296578063081812fc146102b8578063095ea7b3146102f057806318160ddd14610312575b600080fd5b34801561026d57600080fd5b5061028161027c3660046129a8565b6107d4565b60405190151581526020015b60405180910390f35b3480156102a257600080fd5b506102ab6107ff565b60405161028d9190612bfc565b3480156102c457600080fd5b506102d86102d3366004612a2b565b610891565b6040516001600160a01b03909116815260200161028d565b3480156102fc57600080fd5b5061031061030b3660046128ad565b61092b565b005b34801561031e57600080fd5b506008545b60405190815260200161028d565b34801561033d57600080fd5b50610310610a41565b34801561035257600080fd5b50610323600f5481565b34801561036857600080fd5b506103106103773660046127be565b610a91565b34801561038857600080fd5b50610323600d5481565b34801561039e57600080fd5b506103106103ad3660046128d7565b610ac2565b3480156103be57600080fd5b506103236103cd3660046128ad565b610baa565b3480156103de57600080fd5b506103106103ed3660046128d7565b610c40565b3480156103fe57600080fd5b5061028161040d366004612a2b565b60116020526000908152604090205460ff1681565b34801561042e57600080fd5b5061031061043d366004612a2b565b610d34565b6104556104503660046128ad565b610d63565b60405161028d9190612be9565b34801561046e57600080fd5b5061031061047d3660046127be565b610fb2565b34801561048e57600080fd5b5061045561049d366004612770565b610fcd565b3480156104ae57600080fd5b506104556104bd3660046128ad565b61106f565b3480156104ce57600080fd5b506103236104dd366004612a2b565b6111bd565b3480156104ee57600080fd5b50610310611250565b34801561050357600080fd5b506103106105123660046129e2565b611308565b34801561052357600080fd5b50610323610532366004612770565b60136020526000908152604090205481565b34801561055057600080fd5b506102d861055f366004612a2b565b611345565b34801561057057600080fd5b5061032361057f366004612770565b6113bc565b34801561059057600080fd5b50610310611443565b610455611477565b3480156105ad57600080fd5b50610310611681565b3480156105c257600080fd5b506103106105d1366004612a2b565b611703565b3480156105e257600080fd5b506010546102819060ff1681565b3480156105fc57600080fd5b50600a546001600160a01b03166102d8565b34801561061a57600080fd5b50610323610629366004612a2b565b60146020526000908152604090205481565b34801561064757600080fd5b506102ab611732565b34801561065c57600080fd5b5061031061066b366004612876565b611741565b34801561067c57600080fd5b5061031061068b366004612770565b611806565b34801561069c57600080fd5b506103106106ab3660046127fa565b61192f565b3480156106bc57600080fd5b506102ab6106cb366004612a2b565b611967565b3480156106dc57600080fd5b50610323600e5481565b3480156106f257600080fd5b50610310610701366004612a2b565b611a45565b34801561071257600080fd5b50610281610721366004612770565b60126020526000908152604090205460ff1681565b34801561074257600080fd5b50610310610751366004612a2b565b611a87565b34801561076257600080fd5b50610310611b88565b34801561077757600080fd5b5061028161078636600461278b565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b3480156107c057600080fd5b506103106107cf366004612770565b611be9565b60006001600160e01b0319821663780e9d6360e01b14806107f957506107f982611c81565b92915050565b60606000805461080e90612dd2565b80601f016020809104026020016040519081016040528092919081815260200182805461083a90612dd2565b80156108875780601f1061085c57610100808354040283529160200191610887565b820191906000526020600020905b81548152906001019060200180831161086a57829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b031661090f5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061093682611345565b9050806001600160a01b0316836001600160a01b031614156109a45760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610906565b336001600160a01b03821614806109c057506109c08133610786565b610a325760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610906565b610a3c8383611cd1565b505050565b600a546001600160a01b03163314610a6b5760405162461bcd60e51b815260040161090690612c61565b60405133904780156108fc02916000818181858888f19350505050610a8f57600080fd5b565b610a9b3382611d3f565b610ab75760405162461bcd60e51b815260040161090690612c96565b610a3c838383611e36565b600a546001600160a01b03163314610aec5760405162461bcd60e51b815260040161090690612c61565b60005b8151811015610ba657600060126000848481518110610b1057610b10612e7e565b60200260200101516001600160a01b03166001600160a01b0316815260200190815260200160002060006101000a81548160ff021916908315150217905550600060136000848481518110610b6757610b67612e7e565b60200260200101516001600160a01b03166001600160a01b03168152602001908152602001600020819055508080610b9e90612e0d565b915050610aef565b5050565b6000610bb5836113bc565b8210610c175760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610906565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600a546001600160a01b03163314610c6a5760405162461bcd60e51b815260040161090690612c61565b60005b8151811015610ba657600160126000848481518110610c8e57610c8e612e7e565b60200260200101516001600160a01b03166001600160a01b0316815260200190815260200160002060006101000a81548160ff021916908315150217905550600160136000848481518110610ce557610ce5612e7e565b60200260200101516001600160a01b03166001600160a01b031681526020019081526020016000206000828254610d1c9190612d44565b90915550819050610d2c81612e0d565b915050610c6d565b600a546001600160a01b03163314610d5e5760405162461bcd60e51b815260040161090690612c61565b600d55565b60105460609060ff16610db15760405162461bcd60e51b81526020600482015260166024820152752737ba10283ab13634b1b63c902634bb32902cb2ba1760511b6044820152606401610906565b600d5415610e075781600d54610dc79190612d70565b341015610e075760405162461bcd60e51b815260206004820152600e60248201526d2737ba1022b737bab3b41021272160911b6044820152606401610906565b6000610e1260085490565b905060008311610e5b5760405162461bcd60e51b81526020600482015260146024820152734d757374206d696e74206174206c65617374203160601b6044820152606401610906565b600f54831115610ea45760405162461bcd60e51b815260206004820152601460248201527309ad2dce840c2dadeeadce840a8dede4090d2ced60631b6044820152606401610906565b600e54610eb18483612d44565b1115610ecf5760405162461bcd60e51b815260040161090690612ce7565b8267ffffffffffffffff811115610ee857610ee8612e94565b604051908082528060200260200182016040528015610f11578160200160208202803683370190505b50915060015b838111610f71576000610f2a8284612d44565b9050610f368682611fe1565b8084610f43600185612d8f565b81518110610f5357610f53612e7e565b60209081029190910101525080610f6981612e0d565b915050610f17565b507f807353be1b17c00f363c8d635aef4d159ccc6e5e2412ffbe1aab88c3df5c9e8c8483604051610fa3929190612bc5565b60405180910390a15092915050565b610a3c8383836040518060200160405280600081525061192f565b60606000610fda836113bc565b905060008167ffffffffffffffff811115610ff757610ff7612e94565b604051908082528060200260200182016040528015611020578160200160208202803683370190505b50905060005b82811015611067576110388582610baa565b82828151811061104a5761104a612e7e565b60209081029190910101528061105f81612e0d565b915050611026565b509392505050565b600a546060906001600160a01b0316331461109c5760405162461bcd60e51b815260040161090690612c61565b60006110a760085490565b9050600083116110f05760405162461bcd60e51b81526020600482015260146024820152734d757374206d696e74206174206c65617374203160601b6044820152606401610906565b600e546110fd8483612d44565b111561111b5760405162461bcd60e51b815260040161090690612ce7565b8267ffffffffffffffff81111561113457611134612e94565b60405190808252806020026020018201604052801561115d578160200160208202803683370190505b50915060015b838111610f715760006111768284612d44565b90506111828682611fe1565b808461118f600185612d8f565b8151811061119f5761119f612e7e565b602090810291909101015250806111b581612e0d565b915050611163565b60006111c860085490565b821061122b5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610906565b6008828154811061123e5761123e612e7e565b90600052602060002001549050919050565b600061125b33610fcd565b905060008151116112a45760405162461bcd60e51b81526020600482015260136024820152724d757374206f776e206174206c65617374203160681b6044820152606401610906565b60005b8151811015610ba6576001601160008484815181106112c8576112c8612e7e565b6020026020010151815260200190815260200160002060006101000a81548160ff021916908315150217905550808061130090612e0d565b9150506112a7565b600a546001600160a01b031633146113325760405162461bcd60e51b815260040161090690612c61565b8051610ba690600b906020840190612663565b6000818152600260205260408120546001600160a01b0316806107f95760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610906565b60006001600160a01b0382166114275760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610906565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b0316331461146d5760405162461bcd60e51b815260040161090690612c61565b610a8f6000611ffb565b600d54606090156114c557600d543410156114c55760405162461bcd60e51b815260206004820152600e60248201526d2737ba1022b737bab3b41021272160911b6044820152606401610906565b60006114d060085490565b600e549091506114e1826001612d44565b11156114ff5760405162461bcd60e51b815260040161090690612ce7565b3360009081526012602052604090205460ff166115505760405162461bcd60e51b815260206004820152600f60248201526e139bdd0815da1a5d195b1a5cdd1959608a1b6044820152606401610906565b336000908152601360205260409020546115965760405162461bcd60e51b815260206004820152600760248201526614985b8813dd5d60ca1b6044820152606401610906565b604080516001808252818301909252906020808301908036833701905050915060006115c3826001612d44565b90506115cf3382611fe1565b80836000815181106115e3576115e3612e7e565b602090810291909101810191909152336000908152601390915260408120805460019290611612908490612d8f565b90915550503360009081526013602052604090205461164357336000908152601260205260409020805460ff191690555b7f807353be1b17c00f363c8d635aef4d159ccc6e5e2412ffbe1aab88c3df5c9e8c3384604051611674929190612bc5565b60405180910390a1505090565b600a546001600160a01b031633146116ab5760405162461bcd60e51b815260040161090690612c61565b60105460ff16156116f45760405162461bcd60e51b8152602060048201526013602482015272616c726561647920676f6e65207075626c696360681b6044820152606401610906565b6010805460ff19166001179055565b600a546001600160a01b0316331461172d5760405162461bcd60e51b815260040161090690612c61565b600f55565b60606001805461080e90612dd2565b6001600160a01b03821633141561179a5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610906565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600a546001600160a01b031633146118305760405162461bcd60e51b815260040161090690612c61565b6040516370a0823160e01b81523060048201526001600160a01b0382169063a9059cbb90339083906370a082319060240160206040518083038186803b15801561187957600080fd5b505afa15801561188d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906118b19190612a44565b6040516001600160e01b031960e085901b1681526001600160a01b0390921660048301526024820152604401602060405180830381600087803b1580156118f757600080fd5b505af115801561190b573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ba6919061298b565b6119393383611d3f565b6119555760405162461bcd60e51b815260040161090690612c96565b6119618484848461204d565b50505050565b6000818152600260205260409020546060906001600160a01b03166119e65760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610906565b60006119f0612080565b90506000815111611a105760405180602001604052806000815250611a3e565b80611a1a8461208f565b600c604051602001611a2e93929190612ac4565b6040516020818303038152906040525b9392505050565b600a546001600160a01b03163314611a6f5760405162461bcd60e51b815260040161090690612c61565b6000908152601160205260409020805460ff19169055565b60008181526011602052604090205460ff1615611ad95760405162461bcd60e51b815260206004820152601060248201526f105b1c9958591e4814995919595b595960821b6044820152606401610906565b6000611ae433610fcd565b90506000805b8251811015611b2b5783838281518110611b0657611b06612e7e565b60200260200101511415611b1957600191505b80611b2381612e0d565b915050611aea565b5080611b6b5760405162461bcd60e51b815260206004820152600f60248201526e135d5cdd0813dddb88139195081251608a1b6044820152606401610906565b50506000908152601160205260409020805460ff19166001179055565b600a546001600160a01b03163314611bb25760405162461bcd60e51b815260040161090690612c61565b60015b6008548111611be6576000818152601160205260409020805460ff1916905580611bde81612e0d565b915050611bb5565b50565b600a546001600160a01b03163314611c135760405162461bcd60e51b815260040161090690612c61565b6001600160a01b038116611c785760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610906565b611be681611ffb565b60006001600160e01b031982166380ac58cd60e01b1480611cb257506001600160e01b03198216635b5e139f60e01b145b806107f957506301ffc9a760e01b6001600160e01b03198316146107f9565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190611d0682611345565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b0316611db85760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610906565b6000611dc383611345565b9050806001600160a01b0316846001600160a01b03161480611dfe5750836001600160a01b0316611df384610891565b6001600160a01b0316145b80611e2e57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316611e4982611345565b6001600160a01b031614611eb15760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610906565b6001600160a01b038216611f135760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610906565b611f1e83838361218d565b611f29600082611cd1565b6001600160a01b0383166000908152600360205260408120805460019290611f52908490612d8f565b90915550506001600160a01b0382166000908152600360205260408120805460019290611f80908490612d44565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b610ba6828260405180602001604052806000815250612245565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b612058848484611e36565b61206484848484612278565b6119615760405162461bcd60e51b815260040161090690612c0f565b6060600b805461080e90612dd2565b6060816120b35750506040805180820190915260018152600360fc1b602082015290565b8160005b81156120dd57806120c781612e0d565b91506120d69050600a83612d5c565b91506120b7565b60008167ffffffffffffffff8111156120f8576120f8612e94565b6040519080825280601f01601f191660200182016040528015612122576020820181803683370190505b5090505b8415611e2e57612137600183612d8f565b9150612144600a86612e28565b61214f906030612d44565b60f81b81838151811061216457612164612e7e565b60200101906001600160f81b031916908160001a905350612186600a86612d5c565b9450612126565b6001600160a01b0383166121e8576121e381600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b61220b565b816001600160a01b0316836001600160a01b03161461220b5761220b8382612385565b6001600160a01b03821661222257610a3c81612422565b826001600160a01b0316826001600160a01b031614610a3c57610a3c82826124d1565b61224f8383612515565b61225c6000848484612278565b610a3c5760405162461bcd60e51b815260040161090690612c0f565b60006001600160a01b0384163b1561237a57604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906122bc903390899088908890600401612b88565b602060405180830381600087803b1580156122d657600080fd5b505af1925050508015612306575060408051601f3d908101601f19168201909252612303918101906129c5565b60015b612360573d808015612334576040519150601f19603f3d011682016040523d82523d6000602084013e612339565b606091505b5080516123585760405162461bcd60e51b815260040161090690612c0f565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611e2e565b506001949350505050565b60006001612392846113bc565b61239c9190612d8f565b6000838152600760205260409020549091508082146123ef576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b60085460009061243490600190612d8f565b6000838152600960205260408120546008805493945090928490811061245c5761245c612e7e565b90600052602060002001549050806008838154811061247d5761247d612e7e565b60009182526020808320909101929092558281526009909152604080822084905585825281205560088054806124b5576124b5612e68565b6001900381819060005260206000200160009055905550505050565b60006124dc836113bc565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b03821661256b5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610906565b6000818152600260205260409020546001600160a01b0316156125d05760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610906565b6125dc6000838361218d565b6001600160a01b0382166000908152600360205260408120805460019290612605908490612d44565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b82805461266f90612dd2565b90600052602060002090601f01602090048101928261269157600085556126d7565b82601f106126aa57805160ff19168380011785556126d7565b828001600101855582156126d7579182015b828111156126d75782518255916020019190600101906126bc565b506126e39291506126e7565b5090565b5b808211156126e357600081556001016126e8565b600067ffffffffffffffff83111561271657612716612e94565b612729601f8401601f1916602001612d13565b905082815283838301111561273d57600080fd5b828260208301376000602084830101529392505050565b80356001600160a01b038116811461276b57600080fd5b919050565b60006020828403121561278257600080fd5b611a3e82612754565b6000806040838503121561279e57600080fd5b6127a783612754565b91506127b560208401612754565b90509250929050565b6000806000606084860312156127d357600080fd5b6127dc84612754565b92506127ea60208501612754565b9150604084013590509250925092565b6000806000806080858703121561281057600080fd5b61281985612754565b935061282760208601612754565b925060408501359150606085013567ffffffffffffffff81111561284a57600080fd5b8501601f8101871361285b57600080fd5b61286a878235602084016126fc565b91505092959194509250565b6000806040838503121561288957600080fd5b61289283612754565b915060208301356128a281612eaa565b809150509250929050565b600080604083850312156128c057600080fd5b6128c983612754565b946020939093013593505050565b600060208083850312156128ea57600080fd5b823567ffffffffffffffff8082111561290257600080fd5b818501915085601f83011261291657600080fd5b81358181111561292857612928612e94565b8060051b9150612939848301612d13565b8181528481019084860184860187018a101561295457600080fd5b600095505b8386101561297e5761296a81612754565b835260019590950194918601918601612959565b5098975050505050505050565b60006020828403121561299d57600080fd5b8151611a3e81612eaa565b6000602082840312156129ba57600080fd5b8135611a3e81612eb8565b6000602082840312156129d757600080fd5b8151611a3e81612eb8565b6000602082840312156129f457600080fd5b813567ffffffffffffffff811115612a0b57600080fd5b8201601f81018413612a1c57600080fd5b611e2e848235602084016126fc565b600060208284031215612a3d57600080fd5b5035919050565b600060208284031215612a5657600080fd5b5051919050565b600081518084526020808501945080840160005b83811015612a8d57815187529582019590820190600101612a71565b509495945050505050565b60008151808452612ab0816020860160208601612da6565b601f01601f19169290920160200192915050565b600084516020612ad78285838a01612da6565b855191840191612aea8184848a01612da6565b8554920191600090600181811c9080831680612b0757607f831692505b858310811415612b2557634e487b7160e01b85526022600452602485fd5b808015612b395760018114612b4a57612b77565b60ff19851688528388019550612b77565b60008b81526020902060005b85811015612b6f5781548a820152908401908801612b56565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612bbb90830184612a98565b9695505050505050565b6001600160a01b0383168152604060208201819052600090611e2e90830184612a5d565b602081526000611a3e6020830184612a5d565b602081526000611a3e6020830184612a98565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b60208082526012908201527113585e081cdd5c1c1b1e481c995858da195960721b604082015260600190565b604051601f8201601f1916810167ffffffffffffffff81118282101715612d3c57612d3c612e94565b604052919050565b60008219821115612d5757612d57612e3c565b500190565b600082612d6b57612d6b612e52565b500490565b6000816000190483118215151615612d8a57612d8a612e3c565b500290565b600082821015612da157612da1612e3c565b500390565b60005b83811015612dc1578181015183820152602001612da9565b838111156119615750506000910152565b600181811c90821680612de657607f821691505b60208210811415612e0757634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612e2157612e21612e3c565b5060010190565b600082612e3757612e37612e52565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b8015158114611be657600080fd5b6001600160e01b031981168114611be657600080fdfea264697066735822122017f5ad964557aae901bd6506cc43253d1664b7a61be87464c904ad450ea116d664736f6c63430008070033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
00000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000012000000000000000000000000000000000000000000000000000000000000001f40000000000000000000000000000000000000000000000000470de4df82000000000000000000000000000000000000000000000000000000000000000000012446f726b6c204576656e74205365726965730000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000344455300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d53356831464158666969744b3365374566397a4e50487a6f6245477854754c38665663747458696e347576732f00000000000000000000
-----Decoded View---------------
Arg [0] : _name (string): Dorkl Event Series
Arg [1] : _symbol (string): DES
Arg [2] : _initBaseURI (string): ipfs://QmS5h1FAXfiitK3e7Ef9zNPHzobEGxTuL8fVcttXin4uvs/
Arg [3] : _maxSupply (uint256): 500
Arg [4] : _costBNB (uint256): 320000000000000000
-----Encoded View---------------
12 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000120
Arg [3] : 00000000000000000000000000000000000000000000000000000000000001f4
Arg [4] : 0000000000000000000000000000000000000000000000000470de4df8200000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000012
Arg [6] : 446f726b6c204576656e74205365726965730000000000000000000000000000
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [8] : 4445530000000000000000000000000000000000000000000000000000000000
Arg [9] : 0000000000000000000000000000000000000000000000000000000000000036
Arg [10] : 697066733a2f2f516d53356831464158666969744b3365374566397a4e50487a
Arg [11] : 6f6245477854754c38665663747458696e347576732f00000000000000000000
Deployed Bytecode Sourcemap
46268:5568:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34648:224;;;;;;;;;;-1:-1:-1;34648:224:0;;;;;:::i;:::-;;:::i;:::-;;;9201:14:1;;9194:22;9176:41;;9164:2;9149:18;34648:224:0;;;;;;;;22550:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;24109:221::-;;;;;;;;;;-1:-1:-1;24109:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;7591:32:1;;;7573:51;;7561:2;7546:18;24109:221:0;7427:203:1;23632:411:0;;;;;;;;;;-1:-1:-1;23632:411:0;;;;;:::i;:::-;;:::i;:::-;;35288:113;;;;;;;;;;-1:-1:-1;35376:10:0;:17;35288:113;;;20608:25:1;;;20596:2;20581:18;35288:113:0;20462:177:1;50635:109:0;;;;;;;;;;;;;:::i;46468:32::-;;;;;;;;;;;;;;;;24999:339;;;;;;;;;;-1:-1:-1;24999:339:0;;;;;:::i;:::-;;:::i;46412:22::-;;;;;;;;;;;;;;;;50433:193;;;;;;;;;;-1:-1:-1;50433:193:0;;;;;:::i;:::-;;:::i;34956:256::-;;;;;;;;;;-1:-1:-1;34956:256:0;;;;;:::i;:::-;;:::i;50236:190::-;;;;;;;;;;-1:-1:-1;50236:190:0;;;;;:::i;:::-;;:::i;46542:42::-;;;;;;;;;;-1:-1:-1;46542:42:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;50942:86;;;;;;;;;;-1:-1:-1;50942:86:0;;;;;:::i;:::-;;:::i;48450:704::-;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;25409:185::-;;;;;;;;;;-1:-1:-1;25409:185:0;;;;;:::i;:::-;;:::i;49160:330::-;;;;;;;;;;-1:-1:-1;49160:330:0;;;;;:::i;:::-;;:::i;47193:538::-;;;;;;;;;;-1:-1:-1;47193:538:0;;;;;:::i;:::-;;:::i;35478:233::-;;;;;;;;;;-1:-1:-1;35478:233:0;;;;;:::i;:::-;;:::i;51372:230::-;;;;;;;;;;;;;:::i;50008:98::-;;;;;;;;;;-1:-1:-1;50008:98:0;;;;;:::i;:::-;;:::i;46637:42::-;;;;;;;;;;-1:-1:-1;46637:42:0;;;;;:::i;:::-;;;;;;;;;;;;;;22244:239;;;;;;;;;;-1:-1:-1;22244:239:0;;;;;:::i;:::-;;:::i;21974:208::-;;;;;;;;;;-1:-1:-1;21974:208:0;;;;;:::i;:::-;;:::i;42435:94::-;;;;;;;;;;;;;:::i;47739:686::-;;;:::i;50112:116::-;;;;;;;;;;;;;:::i;49886:::-;;;;;;;;;;-1:-1:-1;49886:116:0;;;;;:::i;:::-;;:::i;46507:28::-;;;;;;;;;;-1:-1:-1;46507:28:0;;;;;;;;41784:87;;;;;;;;;;-1:-1:-1;41857:6:0;;-1:-1:-1;;;;;41857:6:0;41784:87;;46684:47;;;;;;;;;;-1:-1:-1;46684:47:0;;;;;:::i;:::-;;;;;;;;;;;;;;22719:104;;;;;;;;;;;;;:::i;24402:295::-;;;;;;;;;;-1:-1:-1;24402:295:0;;;;;:::i;:::-;;:::i;50748:169::-;;;;;;;;;;-1:-1:-1;50748:169:0;;;;;:::i;:::-;;:::i;25665:328::-;;;;;;;;;;-1:-1:-1;25665:328:0;;;;;:::i;:::-;;:::i;49496:380::-;;;;;;;;;;-1:-1:-1;49496:380:0;;;;;:::i;:::-;;:::i;46439:24::-;;;;;;;;;;;;;;;;51608:87;;;;;;;;;;-1:-1:-1;51608:87:0;;;;;:::i;:::-;;:::i;46589:43::-;;;;;;;;;;-1:-1:-1;46589:43:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;51034:332;;;;;;;;;;-1:-1:-1;51034:332:0;;;;;:::i;:::-;;:::i;51702:129::-;;;;;;;;;;;;;:::i;24768:164::-;;;;;;;;;;-1:-1:-1;24768:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;24889:25:0;;;24865:4;24889:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;24768:164;42684:192;;;;;;;;;;-1:-1:-1;42684:192:0;;;;;:::i;:::-;;:::i;34648:224::-;34750:4;-1:-1:-1;;;;;;34774:50:0;;-1:-1:-1;;;34774:50:0;;:90;;;34828:36;34852:11;34828:23;:36::i;:::-;34767:97;34648:224;-1:-1:-1;;34648:224:0:o;22550:100::-;22604:13;22637:5;22630:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22550:100;:::o;24109:221::-;24185:7;27592:16;;;:7;:16;;;;;;-1:-1:-1;;;;;27592:16:0;24205:73;;;;-1:-1:-1;;;24205:73:0;;14721:2:1;24205:73:0;;;14703:21:1;14760:2;14740:18;;;14733:30;14799:34;14779:18;;;14772:62;-1:-1:-1;;;14850:18:1;;;14843:42;14902:19;;24205:73:0;;;;;;;;;-1:-1:-1;24298:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;24298:24:0;;24109:221::o;23632:411::-;23713:13;23729:23;23744:7;23729:14;:23::i;:::-;23713:39;;23777:5;-1:-1:-1;;;;;23771:11:0;:2;-1:-1:-1;;;;;23771:11:0;;;23763:57;;;;-1:-1:-1;;;23763:57:0;;17347:2:1;23763:57:0;;;17329:21:1;17386:2;17366:18;;;17359:30;17425:34;17405:18;;;17398:62;-1:-1:-1;;;17476:18:1;;;17469:31;17517:19;;23763:57:0;17145:397:1;23763:57:0;20161:10;-1:-1:-1;;;;;23855:21:0;;;;:62;;-1:-1:-1;23880:37:0;23897:5;20161:10;24768:164;:::i;23880:37::-;23833:168;;;;-1:-1:-1;;;23833:168:0;;13114:2:1;23833:168:0;;;13096:21:1;13153:2;13133:18;;;13126:30;13192:34;13172:18;;;13165:62;13263:26;13243:18;;;13236:54;13307:19;;23833:168:0;12912:420:1;23833:168:0;24014:21;24023:2;24027:7;24014:8;:21::i;:::-;23702:341;23632:411;;:::o;50635:109::-;41857:6;;-1:-1:-1;;;;;41857:6:0;20161:10;42004:23;41996:68;;;;-1:-1:-1;;;41996:68:0;;;;;;;:::i;:::-;50690:47:::1;::::0;50698:10:::1;::::0;50715:21:::1;50690:47:::0;::::1;;;::::0;::::1;::::0;;;50715:21;50698:10;50690:47;::::1;;;;;;50682:56;;;::::0;::::1;;50635:109::o:0;24999:339::-;25194:41;20161:10;25227:7;25194:18;:41::i;:::-;25186:103;;;;-1:-1:-1;;;25186:103:0;;;;;;;:::i;:::-;25302:28;25312:4;25318:2;25322:7;25302:9;:28::i;50433:193::-;41857:6;;-1:-1:-1;;;;;41857:6:0;20161:10;42004:23;41996:68;;;;-1:-1:-1;;;41996:68:0;;;;;;;:::i;:::-;50510:6:::1;50506:115;50522:5;:12;50520:1;:14;50506:115;;;50576:5;50552:11;:21;50564:5;50570:1;50564:8;;;;;;;;:::i;:::-;;;;;;;-1:-1:-1::0;;;;;50552:21:0::1;-1:-1:-1::0;;;;;50552:21:0::1;;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;50612:1;50592:7;:17;50600:5;50606:1;50600:8;;;;;;;;:::i;:::-;;;;;;;-1:-1:-1::0;;;;;50592:17:0::1;-1:-1:-1::0;;;;;50592:17:0::1;;;;;;;;;;;;:21;;;;50536:3;;;;;:::i;:::-;;;;50506:115;;;;50433:193:::0;:::o;34956:256::-;35053:7;35089:23;35106:5;35089:16;:23::i;:::-;35081:5;:31;35073:87;;;;-1:-1:-1;;;35073:87:0;;9654:2:1;35073:87:0;;;9636:21:1;9693:2;9673:18;;;9666:30;9732:34;9712:18;;;9705:62;-1:-1:-1;;;9783:18:1;;;9776:41;9834:19;;35073:87:0;9452:407:1;35073:87:0;-1:-1:-1;;;;;;35178:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;34956:256::o;50236:190::-;41857:6;;-1:-1:-1;;;;;41857:6:0;20161:10;42004:23;41996:68;;;;-1:-1:-1;;;41996:68:0;;;;;;;:::i;:::-;50310:6:::1;50306:115;50322:5;:12;50320:1;:14;50306:115;;;50376:4;50352:11;:21;50364:5;50370:1;50364:8;;;;;;;;:::i;:::-;;;;;;;-1:-1:-1::0;;;;;50352:21:0::1;-1:-1:-1::0;;;;;50352:21:0::1;;;;;;;;;;;;;:28;;;;;;;;;;;;;;;;;;50412:1;50391:7;:17;50399:5;50405:1;50399:8;;;;;;;;:::i;:::-;;;;;;;-1:-1:-1::0;;;;;50391:17:0::1;-1:-1:-1::0;;;;;50391:17:0::1;;;;;;;;;;;;;:22;;;;;;;:::i;:::-;::::0;;;-1:-1:-1;50336:3:0;;-1:-1:-1;50336:3:0::1;::::0;::::1;:::i;:::-;;;;50306:115;;50942:86:::0;41857:6;;-1:-1:-1;;;;;41857:6:0;20161:10;42004:23;41996:68;;;;-1:-1:-1;;;41996:68:0;;;;;;;:::i;:::-;51004:7:::1;:18:::0;50942:86::o;48450:704::-;48559:8;;48522:20;;48559:8;;48551:42;;;;-1:-1:-1;;;48551:42:0;;20313:2:1;48551:42:0;;;20295:21:1;20352:2;20332:18;;;20325:30;-1:-1:-1;;;20371:18:1;;;20364:52;20433:18;;48551:42:0;20111:346:1;48551:42:0;48603:7;;:11;48600:95;;48658:11;48648:7;;:21;;;;:::i;:::-;48635:9;:34;;48627:60;;;;-1:-1:-1;;;48627:60:0;;17004:2:1;48627:60:0;;;16986:21:1;17043:2;17023:18;;;17016:30;-1:-1:-1;;;17062:18:1;;;17055:44;17116:18;;48627:60:0;16802:338:1;48627:60:0;48701:14;48718:13;35376:10;:17;;35288:113;48718:13;48701:30;;48762:1;48748:11;:15;48740:47;;;;-1:-1:-1;;;48740:47:0;;18094:2:1;48740:47:0;;;18076:21:1;18133:2;18113:18;;;18106:30;-1:-1:-1;;;18152:18:1;;;18145:50;18212:18;;48740:47:0;17892:344:1;48740:47:0;48817:13;;48802:11;:28;;48794:60;;;;-1:-1:-1;;;48794:60:0;;11249:2:1;48794:60:0;;;11231:21:1;11288:2;11268:18;;;11261:30;-1:-1:-1;;;11307:18:1;;;11300:50;11367:18;;48794:60:0;11047:344:1;48794:60:0;48893:9;;48869:20;48878:11;48869:6;:20;:::i;:::-;:33;;48861:63;;;;-1:-1:-1;;;48861:63:0;;;;;;;:::i;:::-;48957:11;48943:26;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;48943:26:0;-1:-1:-1;48937:32:0;-1:-1:-1;48995:1:0;48978:134;49003:11;48998:1;:16;48978:134;;49031:10;49044;49053:1;49044:6;:10;:::i;:::-;49031:23;;49063:18;49073:3;49078:2;49063:9;:18::i;:::-;49102:2;49091:3;49095;49097:1;49095;:3;:::i;:::-;49091:8;;;;;;;;:::i;:::-;;;;;;;;;;:13;-1:-1:-1;49016:3:0;;;;:::i;:::-;;;;48978:134;;;;49129:19;49139:3;49144;49129:19;;;;;;;:::i;:::-;;;;;;;;48544:610;48450:704;;;;:::o;25409:185::-;25547:39;25564:4;25570:2;25574:7;25547:39;;;;;;;;;;;;:16;:39::i;49160:330::-;49220:16;49245:23;49271:17;49281:6;49271:9;:17::i;:::-;49245:43;;49295:25;49337:15;49323:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;49323:30:0;;49295:58;;49365:9;49360:103;49380:15;49376:1;:19;49360:103;;;49425:30;49445:6;49453:1;49425:19;:30::i;:::-;49411:8;49420:1;49411:11;;;;;;;;:::i;:::-;;;;;;;;;;:44;49397:3;;;;:::i;:::-;;;;49360:103;;;-1:-1:-1;49476:8:0;49160:330;-1:-1:-1;;;49160:330:0:o;47193:538::-;41857:6;;47274:20;;-1:-1:-1;;;;;41857:6:0;20161:10;42004:23;41996:68;;;;-1:-1:-1;;;41996:68:0;;;;;;;:::i;:::-;47307:14:::1;47324:13;35376:10:::0;:17;;35288:113;47324:13:::1;47307:30;;47370:1;47356:11;:15;47348:47;;;::::0;-1:-1:-1;;;47348:47:0;;18094:2:1;47348:47:0::1;::::0;::::1;18076:21:1::0;18133:2;18113:18;;;18106:30;-1:-1:-1;;;18152:18:1;;;18145:50;18212:18;;47348:47:0::1;17892:344:1::0;47348:47:0::1;47438:9;::::0;47414:20:::1;47423:11:::0;47414:6;:20:::1;:::i;:::-;:33;;47406:63;;;;-1:-1:-1::0;;;47406:63:0::1;;;;;;;:::i;:::-;47510:11;47496:26;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;-1:-1:-1;47496:26:0::1;-1:-1:-1::0;47490:32:0;-1:-1:-1;47552:1:0::1;47535:154;47560:11;47555:1;:16;47535:154;;47593:10;47606;47615:1:::0;47606:6;:10:::1;:::i;:::-;47593:23;;47631:18;47641:3;47646:2;47631:9;:18::i;:::-;47675:2:::0;47664:3;47668::::1;47670:1;47668::::0;:3:::1;:::i;:::-;47664:8;;;;;;;;:::i;:::-;;::::0;;::::1;::::0;;;;;:13;-1:-1:-1;47573:3:0;::::1;::::0;::::1;:::i;:::-;;;;47535:154;;35478:233:::0;35553:7;35589:30;35376:10;:17;;35288:113;35589:30;35581:5;:38;35573:95;;;;-1:-1:-1;;;35573:95:0;;19208:2:1;35573:95:0;;;19190:21:1;19247:2;19227:18;;;19220:30;19286:34;19266:18;;;19259:62;-1:-1:-1;;;19337:18:1;;;19330:42;19389:19;;35573:95:0;19006:408:1;35573:95:0;35686:10;35697:5;35686:17;;;;;;;;:::i;:::-;;;;;;;;;35679:24;;35478:233;;;:::o;51372:230::-;51413:20;51436:25;51450:10;51436:13;:25::i;:::-;51413:48;;51489:1;51476:3;:10;:14;51468:45;;;;-1:-1:-1;;;51468:45:0;;16240:2:1;51468:45:0;;;16222:21:1;16279:2;16259:18;;;16252:30;-1:-1:-1;;;16298:18:1;;;16291:49;16357:18;;51468:45:0;16038:343:1;51468:45:0;51524:6;51520:77;51536:3;:10;51534:1;:12;51520:77;;;51585:4;51564:10;:18;51575:3;51579:1;51575:6;;;;;;;;:::i;:::-;;;;;;;51564:18;;;;;;;;;;;;:25;;;;;;;;;;;;;;;;;;51548:3;;;;;:::i;:::-;;;;51520:77;;50008:98;41857:6;;-1:-1:-1;;;;;41857:6:0;20161:10;42004:23;41996:68;;;;-1:-1:-1;;;41996:68:0;;;;;;;:::i;:::-;50079:21;;::::1;::::0;:7:::1;::::0;:21:::1;::::0;::::1;::::0;::::1;:::i;22244:239::-:0;22316:7;22352:16;;;:7;:16;;;;;;-1:-1:-1;;;;;22352:16:0;22387:19;22379:73;;;;-1:-1:-1;;;22379:73:0;;13950:2:1;22379:73:0;;;13932:21:1;13989:2;13969:18;;;13962:30;14028:34;14008:18;;;14001:62;-1:-1:-1;;;14079:18:1;;;14072:39;14128:19;;22379:73:0;13748:405:1;21974:208:0;22046:7;-1:-1:-1;;;;;22074:19:0;;22066:74;;;;-1:-1:-1;;;22066:74:0;;13539:2:1;22066:74:0;;;13521:21:1;13578:2;13558:18;;;13551:30;13617:34;13597:18;;;13590:62;-1:-1:-1;;;13668:18:1;;;13661:40;13718:19;;22066:74:0;13337:406:1;22066:74:0;-1:-1:-1;;;;;;22158:16:0;;;;;:9;:16;;;;;;;21974:208::o;42435:94::-;41857:6;;-1:-1:-1;;;;;41857:6:0;20161:10;42004:23;41996:68;;;;-1:-1:-1;;;41996:68:0;;;;;;;:::i;:::-;42500:21:::1;42518:1;42500:9;:21::i;47739:686::-:0;47822:7;;47786:20;;47822:11;47819:89;;47871:7;;47858:9;:20;;47850:46;;;;-1:-1:-1;;;47850:46:0;;17004:2:1;47850:46:0;;;16986:21:1;17043:2;17023:18;;;17016:30;-1:-1:-1;;;17062:18:1;;;17055:44;17116:18;;47850:46:0;16802:338:1;47850:46:0;47918:14;47935:13;35376:10;:17;;35288:113;47935:13;47981:9;;47918:30;;-1:-1:-1;47967:10:0;47918:30;47976:1;47967:10;:::i;:::-;:23;;47959:53;;;;-1:-1:-1;;;47959:53:0;;;;;;;:::i;:::-;48043:10;48031:23;;;;:11;:23;;;;;;;;48023:50;;;;-1:-1:-1;;;48023:50:0;;19969:2:1;48023:50:0;;;19951:21:1;20008:2;19988:18;;;19981:30;-1:-1:-1;;;20027:18:1;;;20020:45;20082:18;;48023:50:0;19767:339:1;48023:50:0;48100:10;48114:1;48092:19;;;:7;:19;;;;;;48084:43;;;;-1:-1:-1;;;48084:43:0;;15495:2:1;48084:43:0;;;15477:21:1;15534:1;15514:18;;;15507:29;-1:-1:-1;;;15552:18:1;;;15545:37;15599:18;;48084:43:0;15293:330:1;48084:43:0;48146:16;;;48160:1;48146:16;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;48140:22:0;-1:-1:-1;48173:10:0;48186;:6;48195:1;48186:10;:::i;:::-;48173:23;;48209:25;48219:10;48231:2;48209:9;:25::i;:::-;48254:2;48245:3;48249:1;48245:6;;;;;;;;:::i;:::-;;;;;;;;;;;:11;;;;48275:10;48267:19;;;;:7;:19;;;;;;:24;;48290:1;;48267:19;:24;;48290:1;;48267:24;:::i;:::-;;;;-1:-1:-1;;48314:10:0;48306:19;;;;:7;:19;;;;;;48302:61;;48344:10;48358:5;48332:23;;;:11;:23;;;;;:31;;-1:-1:-1;;48332:31:0;;;48302:61;48389:26;48399:10;48411:3;48389:26;;;;;;;:::i;:::-;;;;;;;;47808:617;;47739:686;:::o;50112:116::-;41857:6;;-1:-1:-1;;;;;41857:6:0;20161:10;42004:23;41996:68;;;;-1:-1:-1;;;41996:68:0;;;;;;;:::i;:::-;50168:8:::1;::::0;::::1;;50167:9;50159:41;;;::::0;-1:-1:-1;;;50159:41:0;;19621:2:1;50159:41:0::1;::::0;::::1;19603:21:1::0;19660:2;19640:18;;;19633:30;-1:-1:-1;;;19679:18:1;;;19672:49;19738:18;;50159:41:0::1;19419:343:1::0;50159:41:0::1;50207:8;:15:::0;;-1:-1:-1;;50207:15:0::1;50218:4;50207:15;::::0;;50112:116::o;49886:::-;41857:6;;-1:-1:-1;;;;;41857:6:0;20161:10;42004:23;41996:68;;;;-1:-1:-1;;;41996:68:0;;;;;;;:::i;:::-;49963:13:::1;:33:::0;49886:116::o;22719:104::-;22775:13;22808:7;22801:14;;;;;:::i;24402:295::-;-1:-1:-1;;;;;24505:24:0;;20161:10;24505:24;;24497:62;;;;-1:-1:-1;;;24497:62:0;;12347:2:1;24497:62:0;;;12329:21:1;12386:2;12366:18;;;12359:30;12425:27;12405:18;;;12398:55;12470:18;;24497:62:0;12145:349:1;24497:62:0;20161:10;24572:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;24572:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;24572:53:0;;;;;;;;;;24641:48;;9176:41:1;;;24572:42:0;;20161:10;24641:48;;9149:18:1;24641:48:0;;;;;;;24402:295;;:::o;50748:169::-;41857:6;;-1:-1:-1;;;;;41857:6:0;20161:10;42004:23;41996:68;;;;-1:-1:-1;;;41996:68:0;;;;;;;:::i;:::-;50864:46:::1;::::0;-1:-1:-1;;;50864:46:0;;50904:4:::1;50864:46;::::0;::::1;7573:51:1::0;-1:-1:-1;;;;;50821:30:0;::::1;::::0;::::1;::::0;50852:10:::1;::::0;50821:30;;50864:31:::1;::::0;7546:18:1;;50864:46:0::1;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;50821:90;::::0;-1:-1:-1;;;;;;50821:90:0::1;::::0;;;;;;-1:-1:-1;;;;;8683:32:1;;;50821:90:0::1;::::0;::::1;8665:51:1::0;8732:18;;;8725:34;8638:18;;50821:90:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;25665:328::-:0;25840:41;20161:10;25873:7;25840:18;:41::i;:::-;25832:103;;;;-1:-1:-1;;;25832:103:0;;;;;;;:::i;:::-;25946:39;25960:4;25966:2;25970:7;25979:5;25946:13;:39::i;:::-;25665:328;;;;:::o;49496:380::-;27568:4;27592:16;;;:7;:16;;;;;;49569:13;;-1:-1:-1;;;;;27592:16:0;49591:78;;;;-1:-1:-1;;;49591:78:0;;16588:2:1;49591:78:0;;;16570:21:1;16627:2;16607:18;;;16600:30;16666:34;16646:18;;;16639:62;-1:-1:-1;;;16717:18:1;;;16710:45;16772:19;;49591:78:0;16386:411:1;49591:78:0;49682:28;49713:10;:8;:10::i;:::-;49682:41;;49768:1;49743:14;49737:28;:32;:133;;;;;;;;;;;;;;;;;49805:14;49821:18;:7;:16;:18::i;:::-;49841:13;49788:67;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;49737:133;49730:140;49496:380;-1:-1:-1;;;49496:380:0:o;51608:87::-;41857:6;;-1:-1:-1;;;;;41857:6:0;20161:10;42004:23;41996:68;;;;-1:-1:-1;;;41996:68:0;;;;;;;:::i;:::-;51684:5:::1;51667:14:::0;;;:10:::1;:14;::::0;;;;:22;;-1:-1:-1;;51667:22:0::1;::::0;;51608:87::o;51034:332::-;51087:14;;;;:10;:14;;;;;;;;51086:15;51078:44;;;;-1:-1:-1;;;51078:44:0;;17749:2:1;51078:44:0;;;17731:21:1;17788:2;17768:18;;;17761:30;-1:-1:-1;;;17807:18:1;;;17800:46;17863:18;;51078:44:0;17547:340:1;51078:44:0;51129:20;51152:25;51166:10;51152:13;:25::i;:::-;51129:48;;51184:11;51214:6;51210:82;51226:3;:10;51224:1;:12;51210:82;;;51267:2;51257:3;51261:1;51257:6;;;;;;;;:::i;:::-;;;;;;;:12;51254:30;;;51280:4;51271:13;;51254:30;51238:3;;;;:::i;:::-;;;;51210:82;;;;51306:6;51298:34;;;;-1:-1:-1;;;51298:34:0;;11598:2:1;51298:34:0;;;11580:21:1;11637:2;11617:18;;;11610:30;-1:-1:-1;;;11656:18:1;;;11649:45;11711:18;;51298:34:0;11396:339:1;51298:34:0;-1:-1:-1;;51339:14:0;;;;:10;:14;;;;;:21;;-1:-1:-1;;51339:21:0;51356:4;51339:21;;;51034:332::o;51702:129::-;41857:6;;-1:-1:-1;;;;;41857:6:0;20161:10;42004:23;41996:68;;;;-1:-1:-1;;;41996:68:0;;;;;;;:::i;:::-;51762:1:::1;51748:78;35376:10:::0;:17;51765:1:::1;:16;51748:78;;51813:5;51797:13:::0;;;:10:::1;:13;::::0;;;;:21;;-1:-1:-1;;51797:21:0::1;::::0;;51808:1;51782:3:::1;51808:1:::0;51782:3:::1;:::i;:::-;;;;51748:78;;;;51702:129::o:0;42684:192::-;41857:6;;-1:-1:-1;;;;;41857:6:0;20161:10;42004:23;41996:68;;;;-1:-1:-1;;;41996:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;42773:22:0;::::1;42765:73;;;::::0;-1:-1:-1;;;42765:73:0;;10485:2:1;42765:73:0::1;::::0;::::1;10467:21:1::0;10524:2;10504:18;;;10497:30;10563:34;10543:18;;;10536:62;-1:-1:-1;;;10614:18:1;;;10607:36;10660:19;;42765:73:0::1;10283:402:1::0;42765:73:0::1;42849:19;42859:8;42849:9;:19::i;21605:305::-:0;21707:4;-1:-1:-1;;;;;;21744:40:0;;-1:-1:-1;;;21744:40:0;;:105;;-1:-1:-1;;;;;;;21801:48:0;;-1:-1:-1;;;21801:48:0;21744:105;:158;;;-1:-1:-1;;;;;;;;;;7567:40:0;;;21866:36;7458:157;31485:174;31560:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;31560:29:0;-1:-1:-1;;;;;31560:29:0;;;;;;;;:24;;31614:23;31560:24;31614:14;:23::i;:::-;-1:-1:-1;;;;;31605:46:0;;;;;;;;;;;31485:174;;:::o;27797:348::-;27890:4;27592:16;;;:7;:16;;;;;;-1:-1:-1;;;;;27592:16:0;27907:73;;;;-1:-1:-1;;;27907:73:0;;12701:2:1;27907:73:0;;;12683:21:1;12740:2;12720:18;;;12713:30;12779:34;12759:18;;;12752:62;-1:-1:-1;;;12830:18:1;;;12823:42;12882:19;;27907:73:0;12499:408:1;27907:73:0;27991:13;28007:23;28022:7;28007:14;:23::i;:::-;27991:39;;28060:5;-1:-1:-1;;;;;28049:16:0;:7;-1:-1:-1;;;;;28049:16:0;;:51;;;;28093:7;-1:-1:-1;;;;;28069:31:0;:20;28081:7;28069:11;:20::i;:::-;-1:-1:-1;;;;;28069:31:0;;28049:51;:87;;;-1:-1:-1;;;;;;24889:25:0;;;24865:4;24889:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;28104:32;28041:96;27797:348;-1:-1:-1;;;;27797:348:0:o;30789:578::-;30948:4;-1:-1:-1;;;;;30921:31:0;:23;30936:7;30921:14;:23::i;:::-;-1:-1:-1;;;;;30921:31:0;;30913:85;;;;-1:-1:-1;;;30913:85:0;;15830:2:1;30913:85:0;;;15812:21:1;15869:2;15849:18;;;15842:30;15908:34;15888:18;;;15881:62;-1:-1:-1;;;15959:18:1;;;15952:39;16008:19;;30913:85:0;15628:405:1;30913:85:0;-1:-1:-1;;;;;31017:16:0;;31009:65;;;;-1:-1:-1;;;31009:65:0;;11942:2:1;31009:65:0;;;11924:21:1;11981:2;11961:18;;;11954:30;12020:34;12000:18;;;11993:62;-1:-1:-1;;;12071:18:1;;;12064:34;12115:19;;31009:65:0;11740:400:1;31009:65:0;31087:39;31108:4;31114:2;31118:7;31087:20;:39::i;:::-;31191:29;31208:1;31212:7;31191:8;:29::i;:::-;-1:-1:-1;;;;;31233:15:0;;;;;;:9;:15;;;;;:20;;31252:1;;31233:15;:20;;31252:1;;31233:20;:::i;:::-;;;;-1:-1:-1;;;;;;;31264:13:0;;;;;;:9;:13;;;;;:18;;31281:1;;31264:13;:18;;31281:1;;31264:18;:::i;:::-;;;;-1:-1:-1;;31293:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;31293:21:0;-1:-1:-1;;;;;31293:21:0;;;;;;;;;31332:27;;31293:16;;31332:27;;;;;;;30789:578;;;:::o;28487:110::-;28563:26;28573:2;28577:7;28563:26;;;;;;;;;;;;:9;:26::i;42884:173::-;42959:6;;;-1:-1:-1;;;;;42976:17:0;;;-1:-1:-1;;;;;;42976:17:0;;;;;;;43009:40;;42959:6;;;42976:17;42959:6;;43009:40;;42940:16;;43009:40;42929:128;42884:173;:::o;26875:315::-;27032:28;27042:4;27048:2;27052:7;27032:9;:28::i;:::-;27079:48;27102:4;27108:2;27112:7;27121:5;27079:22;:48::i;:::-;27071:111;;;;-1:-1:-1;;;27071:111:0;;;;;;;:::i;47080:102::-;47140:13;47169:7;47162:14;;;;;:::i;7927:723::-;7983:13;8204:10;8200:53;;-1:-1:-1;;8231:10:0;;;;;;;;;;;;-1:-1:-1;;;8231:10:0;;;;;7927:723::o;8200:53::-;8278:5;8263:12;8319:78;8326:9;;8319:78;;8352:8;;;;:::i;:::-;;-1:-1:-1;8375:10:0;;-1:-1:-1;8383:2:0;8375:10;;:::i;:::-;;;8319:78;;;8407:19;8439:6;8429:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;8429:17:0;;8407:39;;8457:154;8464:10;;8457:154;;8491:11;8501:1;8491:11;;:::i;:::-;;-1:-1:-1;8560:10:0;8568:2;8560:5;:10;:::i;:::-;8547:24;;:2;:24;:::i;:::-;8534:39;;8517:6;8524;8517:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;8517:56:0;;;;;;;;-1:-1:-1;8588:11:0;8597:2;8588:11;;:::i;:::-;;;8457:154;;36324:589;-1:-1:-1;;;;;36530:18:0;;36526:187;;36565:40;36597:7;37740:10;:17;;37713:24;;;;:15;:24;;;;;:44;;;37768:24;;;;;;;;;;;;37636:164;36565:40;36526:187;;;36635:2;-1:-1:-1;;;;;36627:10:0;:4;-1:-1:-1;;;;;36627:10:0;;36623:90;;36654:47;36687:4;36693:7;36654:32;:47::i;:::-;-1:-1:-1;;;;;36727:16:0;;36723:183;;36760:45;36797:7;36760:36;:45::i;36723:183::-;36833:4;-1:-1:-1;;;;;36827:10:0;:2;-1:-1:-1;;;;;36827:10:0;;36823:83;;36854:40;36882:2;36886:7;36854:27;:40::i;28824:321::-;28954:18;28960:2;28964:7;28954:5;:18::i;:::-;29005:54;29036:1;29040:2;29044:7;29053:5;29005:22;:54::i;:::-;28983:154;;;;-1:-1:-1;;;28983:154:0;;;;;;;:::i;32224:799::-;32379:4;-1:-1:-1;;;;;32400:13:0;;10769:20;10817:8;32396:620;;32436:72;;-1:-1:-1;;;32436:72:0;;-1:-1:-1;;;;;32436:36:0;;;;;:72;;20161:10;;32487:4;;32493:7;;32502:5;;32436:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;32436:72:0;;;;;;;;-1:-1:-1;;32436:72:0;;;;;;;;;;;;:::i;:::-;;;32432:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;32678:13:0;;32674:272;;32721:60;;-1:-1:-1;;;32721:60:0;;;;;;;:::i;32674:272::-;32896:6;32890:13;32881:6;32877:2;32873:15;32866:38;32432:529;-1:-1:-1;;;;;;32559:51:0;-1:-1:-1;;;32559:51:0;;-1:-1:-1;32552:58:0;;32396:620;-1:-1:-1;33000:4:0;32224:799;;;;;;:::o;38427:988::-;38693:22;38743:1;38718:22;38735:4;38718:16;:22::i;:::-;:26;;;;:::i;:::-;38755:18;38776:26;;;:17;:26;;;;;;38693:51;;-1:-1:-1;38909:28:0;;;38905:328;;-1:-1:-1;;;;;38976:18:0;;38954:19;38976:18;;;:12;:18;;;;;;;;:34;;;;;;;;;39027:30;;;;;;:44;;;39144:30;;:17;:30;;;;;:43;;;38905:328;-1:-1:-1;39329:26:0;;;;:17;:26;;;;;;;;39322:33;;;-1:-1:-1;;;;;39373:18:0;;;;;:12;:18;;;;;:34;;;;;;;39366:41;38427:988::o;39710:1079::-;39988:10;:17;39963:22;;39988:21;;40008:1;;39988:21;:::i;:::-;40020:18;40041:24;;;:15;:24;;;;;;40414:10;:26;;39963:46;;-1:-1:-1;40041:24:0;;39963:46;;40414:26;;;;;;:::i;:::-;;;;;;;;;40392:48;;40478:11;40453:10;40464;40453:22;;;;;;;;:::i;:::-;;;;;;;;;;;;:36;;;;40558:28;;;:15;:28;;;;;;;:41;;;40730:24;;;;;40723:31;40765:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;39781:1008;;;39710:1079;:::o;37214:221::-;37299:14;37316:20;37333:2;37316:16;:20::i;:::-;-1:-1:-1;;;;;37347:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;37392:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;37214:221:0:o;29481:382::-;-1:-1:-1;;;;;29561:16:0;;29553:61;;;;-1:-1:-1;;;29553:61:0;;14360:2:1;29553:61:0;;;14342:21:1;;;14379:18;;;14372:30;14438:34;14418:18;;;14411:62;14490:18;;29553:61:0;14158:356:1;29553:61:0;27568:4;27592:16;;;:7;:16;;;;;;-1:-1:-1;;;;;27592:16:0;:30;29625:58;;;;-1:-1:-1;;;29625:58:0;;10892:2:1;29625:58:0;;;10874:21:1;10931:2;10911:18;;;10904:30;10970;10950:18;;;10943:58;11018:18;;29625:58:0;10690:352:1;29625:58:0;29696:45;29725:1;29729:2;29733:7;29696:20;:45::i;:::-;-1:-1:-1;;;;;29754:13:0;;;;;;:9;:13;;;;;:18;;29771:1;;29754:13;:18;;29771:1;;29754:18;:::i;:::-;;;;-1:-1:-1;;29783:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;29783:21:0;-1:-1:-1;;;;;29783:21:0;;;;;;;;29822:33;;29783:16;;;29822:33;;29783:16;;29822:33;29481:382;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:406:1;78:5;112:18;104:6;101:30;98:56;;;134:18;;:::i;:::-;172:57;217:2;196:15;;-1:-1:-1;;192:29:1;223:4;188:40;172:57;:::i;:::-;163:66;;252:6;245:5;238:21;292:3;283:6;278:3;274:16;271:25;268:45;;;309:1;306;299:12;268:45;358:6;353:3;346:4;339:5;335:16;322:43;412:1;405:4;396:6;389:5;385:18;381:29;374:40;14:406;;;;;:::o;425:173::-;493:20;;-1:-1:-1;;;;;542:31:1;;532:42;;522:70;;588:1;585;578:12;522:70;425:173;;;:::o;603:186::-;662:6;715:2;703:9;694:7;690:23;686:32;683:52;;;731:1;728;721:12;683:52;754:29;773:9;754:29;:::i;794:260::-;862:6;870;923:2;911:9;902:7;898:23;894:32;891:52;;;939:1;936;929:12;891:52;962:29;981:9;962:29;:::i;:::-;952:39;;1010:38;1044:2;1033:9;1029:18;1010:38;:::i;:::-;1000:48;;794:260;;;;;:::o;1059:328::-;1136:6;1144;1152;1205:2;1193:9;1184:7;1180:23;1176:32;1173:52;;;1221:1;1218;1211:12;1173:52;1244:29;1263:9;1244:29;:::i;:::-;1234:39;;1292:38;1326:2;1315:9;1311:18;1292:38;:::i;:::-;1282:48;;1377:2;1366:9;1362:18;1349:32;1339:42;;1059:328;;;;;:::o;1392:666::-;1487:6;1495;1503;1511;1564:3;1552:9;1543:7;1539:23;1535:33;1532:53;;;1581:1;1578;1571:12;1532:53;1604:29;1623:9;1604:29;:::i;:::-;1594:39;;1652:38;1686:2;1675:9;1671:18;1652:38;:::i;:::-;1642:48;;1737:2;1726:9;1722:18;1709:32;1699:42;;1792:2;1781:9;1777:18;1764:32;1819:18;1811:6;1808:30;1805:50;;;1851:1;1848;1841:12;1805:50;1874:22;;1927:4;1919:13;;1915:27;-1:-1:-1;1905:55:1;;1956:1;1953;1946:12;1905:55;1979:73;2044:7;2039:2;2026:16;2021:2;2017;2013:11;1979:73;:::i;:::-;1969:83;;;1392:666;;;;;;;:::o;2063:315::-;2128:6;2136;2189:2;2177:9;2168:7;2164:23;2160:32;2157:52;;;2205:1;2202;2195:12;2157:52;2228:29;2247:9;2228:29;:::i;:::-;2218:39;;2307:2;2296:9;2292:18;2279:32;2320:28;2342:5;2320:28;:::i;:::-;2367:5;2357:15;;;2063:315;;;;;:::o;2383:254::-;2451:6;2459;2512:2;2500:9;2491:7;2487:23;2483:32;2480:52;;;2528:1;2525;2518:12;2480:52;2551:29;2570:9;2551:29;:::i;:::-;2541:39;2627:2;2612:18;;;;2599:32;;-1:-1:-1;;;2383:254:1:o;2642:963::-;2726:6;2757:2;2800;2788:9;2779:7;2775:23;2771:32;2768:52;;;2816:1;2813;2806:12;2768:52;2856:9;2843:23;2885:18;2926:2;2918:6;2915:14;2912:34;;;2942:1;2939;2932:12;2912:34;2980:6;2969:9;2965:22;2955:32;;3025:7;3018:4;3014:2;3010:13;3006:27;2996:55;;3047:1;3044;3037:12;2996:55;3083:2;3070:16;3105:2;3101;3098:10;3095:36;;;3111:18;;:::i;:::-;3157:2;3154:1;3150:10;3140:20;;3180:28;3204:2;3200;3196:11;3180:28;:::i;:::-;3242:15;;;3273:12;;;;3305:11;;;3335;;;3331:20;;3328:33;-1:-1:-1;3325:53:1;;;3374:1;3371;3364:12;3325:53;3396:1;3387:10;;3406:169;3420:2;3417:1;3414:9;3406:169;;;3477:23;3496:3;3477:23;:::i;:::-;3465:36;;3438:1;3431:9;;;;;3521:12;;;;3553;;3406:169;;;-1:-1:-1;3594:5:1;2642:963;-1:-1:-1;;;;;;;;2642:963:1:o;3610:245::-;3677:6;3730:2;3718:9;3709:7;3705:23;3701:32;3698:52;;;3746:1;3743;3736:12;3698:52;3778:9;3772:16;3797:28;3819:5;3797:28;:::i;3860:245::-;3918:6;3971:2;3959:9;3950:7;3946:23;3942:32;3939:52;;;3987:1;3984;3977:12;3939:52;4026:9;4013:23;4045:30;4069:5;4045:30;:::i;4110:249::-;4179:6;4232:2;4220:9;4211:7;4207:23;4203:32;4200:52;;;4248:1;4245;4238:12;4200:52;4280:9;4274:16;4299:30;4323:5;4299:30;:::i;4364:450::-;4433:6;4486:2;4474:9;4465:7;4461:23;4457:32;4454:52;;;4502:1;4499;4492:12;4454:52;4542:9;4529:23;4575:18;4567:6;4564:30;4561:50;;;4607:1;4604;4597:12;4561:50;4630:22;;4683:4;4675:13;;4671:27;-1:-1:-1;4661:55:1;;4712:1;4709;4702:12;4661:55;4735:73;4800:7;4795:2;4782:16;4777:2;4773;4769:11;4735:73;:::i;4819:180::-;4878:6;4931:2;4919:9;4910:7;4906:23;4902:32;4899:52;;;4947:1;4944;4937:12;4899:52;-1:-1:-1;4970:23:1;;4819:180;-1:-1:-1;4819:180:1:o;5004:184::-;5074:6;5127:2;5115:9;5106:7;5102:23;5098:32;5095:52;;;5143:1;5140;5133:12;5095:52;-1:-1:-1;5166:16:1;;5004:184;-1:-1:-1;5004:184:1:o;5193:435::-;5246:3;5284:5;5278:12;5311:6;5306:3;5299:19;5337:4;5366:2;5361:3;5357:12;5350:19;;5403:2;5396:5;5392:14;5424:1;5434:169;5448:6;5445:1;5442:13;5434:169;;;5509:13;;5497:26;;5543:12;;;;5578:15;;;;5470:1;5463:9;5434:169;;;-1:-1:-1;5619:3:1;;5193:435;-1:-1:-1;;;;;5193:435:1:o;5633:257::-;5674:3;5712:5;5706:12;5739:6;5734:3;5727:19;5755:63;5811:6;5804:4;5799:3;5795:14;5788:4;5781:5;5777:16;5755:63;:::i;:::-;5872:2;5851:15;-1:-1:-1;;5847:29:1;5838:39;;;;5879:4;5834:50;;5633:257;-1:-1:-1;;5633:257:1:o;5895:1527::-;6119:3;6157:6;6151:13;6183:4;6196:51;6240:6;6235:3;6230:2;6222:6;6218:15;6196:51;:::i;:::-;6310:13;;6269:16;;;;6332:55;6310:13;6269:16;6354:15;;;6332:55;:::i;:::-;6476:13;;6409:20;;;6449:1;;6536;6558:18;;;;6611;;;;6638:93;;6716:4;6706:8;6702:19;6690:31;;6638:93;6779:2;6769:8;6766:16;6746:18;6743:40;6740:167;;;-1:-1:-1;;;6806:33:1;;6862:4;6859:1;6852:15;6892:4;6813:3;6880:17;6740:167;6923:18;6950:110;;;;7074:1;7069:328;;;;6916:481;;6950:110;-1:-1:-1;;6985:24:1;;6971:39;;7030:20;;;;-1:-1:-1;6950:110:1;;7069:328;20997:1;20990:14;;;21034:4;21021:18;;7164:1;7178:169;7192:8;7189:1;7186:15;7178:169;;;7274:14;;7259:13;;;7252:37;7317:16;;;;7209:10;;7178:169;;;7182:3;;7378:8;7371:5;7367:20;7360:27;;6916:481;-1:-1:-1;7413:3:1;;5895:1527;-1:-1:-1;;;;;;;;;;;5895:1527:1:o;7635:488::-;-1:-1:-1;;;;;7904:15:1;;;7886:34;;7956:15;;7951:2;7936:18;;7929:43;8003:2;7988:18;;7981:34;;;8051:3;8046:2;8031:18;;8024:31;;;7829:4;;8072:45;;8097:19;;8089:6;8072:45;:::i;:::-;8064:53;7635:488;-1:-1:-1;;;;;;7635:488:1:o;8128:358::-;-1:-1:-1;;;;;8335:32:1;;8317:51;;8404:2;8399;8384:18;;8377:30;;;-1:-1:-1;;8424:56:1;;8461:18;;8453:6;8424:56;:::i;8770:261::-;8949:2;8938:9;8931:21;8912:4;8969:56;9021:2;9010:9;9006:18;8998:6;8969:56;:::i;9228:219::-;9377:2;9366:9;9359:21;9340:4;9397:44;9437:2;9426:9;9422:18;9414:6;9397:44;:::i;9864:414::-;10066:2;10048:21;;;10105:2;10085:18;;;10078:30;10144:34;10139:2;10124:18;;10117:62;-1:-1:-1;;;10210:2:1;10195:18;;10188:48;10268:3;10253:19;;9864:414::o;14932:356::-;15134:2;15116:21;;;15153:18;;;15146:30;15212:34;15207:2;15192:18;;15185:62;15279:2;15264:18;;14932:356::o;18241:413::-;18443:2;18425:21;;;18482:2;18462:18;;;18455:30;18521:34;18516:2;18501:18;;18494:62;-1:-1:-1;;;18587:2:1;18572:18;;18565:47;18644:3;18629:19;;18241:413::o;18659:342::-;18861:2;18843:21;;;18900:2;18880:18;;;18873:30;-1:-1:-1;;;18934:2:1;18919:18;;18912:48;18992:2;18977:18;;18659:342::o;20644:275::-;20715:2;20709:9;20780:2;20761:13;;-1:-1:-1;;20757:27:1;20745:40;;20815:18;20800:34;;20836:22;;;20797:62;20794:88;;;20862:18;;:::i;:::-;20898:2;20891:22;20644:275;;-1:-1:-1;20644:275:1:o;21050:128::-;21090:3;21121:1;21117:6;21114:1;21111:13;21108:39;;;21127:18;;:::i;:::-;-1:-1:-1;21163:9:1;;21050:128::o;21183:120::-;21223:1;21249;21239:35;;21254:18;;:::i;:::-;-1:-1:-1;21288:9:1;;21183:120::o;21308:168::-;21348:7;21414:1;21410;21406:6;21402:14;21399:1;21396:21;21391:1;21384:9;21377:17;21373:45;21370:71;;;21421:18;;:::i;:::-;-1:-1:-1;21461:9:1;;21308:168::o;21481:125::-;21521:4;21549:1;21546;21543:8;21540:34;;;21554:18;;:::i;:::-;-1:-1:-1;21591:9:1;;21481:125::o;21611:258::-;21683:1;21693:113;21707:6;21704:1;21701:13;21693:113;;;21783:11;;;21777:18;21764:11;;;21757:39;21729:2;21722:10;21693:113;;;21824:6;21821:1;21818:13;21815:48;;;-1:-1:-1;;21859:1:1;21841:16;;21834:27;21611:258::o;21874:380::-;21953:1;21949:12;;;;21996;;;22017:61;;22071:4;22063:6;22059:17;22049:27;;22017:61;22124:2;22116:6;22113:14;22093:18;22090:38;22087:161;;;22170:10;22165:3;22161:20;22158:1;22151:31;22205:4;22202:1;22195:15;22233:4;22230:1;22223:15;22087:161;;21874:380;;;:::o;22259:135::-;22298:3;-1:-1:-1;;22319:17:1;;22316:43;;;22339:18;;:::i;:::-;-1:-1:-1;22386:1:1;22375:13;;22259:135::o;22399:112::-;22431:1;22457;22447:35;;22462:18;;:::i;:::-;-1:-1:-1;22496:9:1;;22399:112::o;22516:127::-;22577:10;22572:3;22568:20;22565:1;22558:31;22608:4;22605:1;22598:15;22632:4;22629:1;22622:15;22648:127;22709:10;22704:3;22700:20;22697:1;22690:31;22740:4;22737:1;22730:15;22764:4;22761:1;22754:15;22780:127;22841:10;22836:3;22832:20;22829:1;22822:31;22872:4;22869:1;22862:15;22896:4;22893:1;22886:15;22912:127;22973:10;22968:3;22964:20;22961:1;22954:31;23004:4;23001:1;22994:15;23028:4;23025:1;23018:15;23044:127;23105:10;23100:3;23096:20;23093:1;23086:31;23136:4;23133:1;23126:15;23160:4;23157:1;23150:15;23176:118;23262:5;23255:13;23248:21;23241:5;23238:32;23228:60;;23284:1;23281;23274:12;23299:131;-1:-1:-1;;;;;;23373:32:1;;23363:43;;23353:71;;23420:1;23417;23410:12
Swarm Source
ipfs://17f5ad964557aae901bd6506cc43253d1664b7a61be87464c904ad450ea116d6
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.