ERC-721
Overview
Max Total Supply
2,231 BOIS
Holders
375
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
3 BOISLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
YellowBois
Compiler Version
v0.8.9+commit.e5eed63a
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-09-13 */ // SPDX-License-Identifier: MIT // File: @openzeppelin/contracts/utils/Strings.sol // OpenZeppelin Contracts (last updated v4.7.0) (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; uint8 private constant _ADDRESS_LENGTH = 20; /** * @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); } /** * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation. */ function toHexString(address addr) internal pure returns (string memory) { return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH); } } // File: @openzeppelin/contracts/utils/Context.sol // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File: @openzeppelin/contracts/access/Ownable.sol // OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol) pragma solidity ^0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { require(owner() == _msgSender(), "Ownable: caller is not the owner"); } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // File: @openzeppelin/contracts/utils/Address.sol // OpenZeppelin Contracts (last updated v4.7.0) (utils/Address.sol) pragma solidity ^0.8.1; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== * * [IMPORTANT] * ==== * You shouldn't rely on `isContract` to protect against flash loan attacks! * * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract * constructor. * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize/address.code.length, which returns 0 // for contracts in construction, since the code is only stored at the end // of the constructor execution. return account.code.length > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly /// @solidity memory-safe-assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } // File: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol // OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721Receiver.sol) pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721Receiver.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } // File: @openzeppelin/contracts/utils/introspection/IERC165.sol // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); } // File: @openzeppelin/contracts/utils/introspection/ERC165.sol // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) pragma solidity ^0.8.0; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } } // File: @openzeppelin/contracts/token/ERC721/IERC721.sol // OpenZeppelin Contracts (last updated v4.7.0) (token/ERC721/IERC721.sol) pragma solidity ^0.8.0; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); } // File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.sol // OpenZeppelin Contracts (last updated v4.5.0) (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); /** * @dev Returns a token ID at a given `index` of all the tokens stored by the contract. * Use along with {totalSupply} to enumerate all tokens. */ function tokenByIndex(uint256 index) external view returns (uint256); } // File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol) pragma solidity ^0.8.0; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); } // File: @openzeppelin/contracts/token/ERC721/ERC721.sol // OpenZeppelin Contracts (last updated v4.7.0) (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: address zero is not a valid owner"); 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: invalid token ID"); 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) { _requireMinted(tokenId); 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 overridden 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 token owner nor approved for all" ); _approve(to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { _requireMinted(tokenId); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { _setApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { //solhint-disable-next-line max-line-length require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: caller is not token 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: caller is not token 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) { address owner = ERC721.ownerOf(tokenId); return (spender == owner || isApprovedForAll(owner, spender) || getApproved(tokenId) == 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); _afterTokenTransfer(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); _afterTokenTransfer(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 from incorrect owner"); 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); _afterTokenTransfer(from, to, tokenId); } /** * @dev Approve `to` to operate on `tokenId` * * Emits an {Approval} event. */ function _approve(address to, uint256 tokenId) internal virtual { _tokenApprovals[tokenId] = to; emit Approval(ERC721.ownerOf(tokenId), to, tokenId); } /** * @dev Approve `operator` to operate on all of `owner` tokens * * Emits an {ApprovalForAll} event. */ function _setApprovalForAll( address owner, address operator, bool approved ) internal virtual { require(owner != operator, "ERC721: approve to caller"); _operatorApprovals[owner][operator] = approved; emit ApprovalForAll(owner, operator, approved); } /** * @dev Reverts if the `tokenId` has not been minted yet. */ function _requireMinted(uint256 tokenId) internal view virtual { require(_exists(tokenId), "ERC721: invalid token ID"); } /** * @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 { /// @solidity memory-safe-assembly 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 {} /** * @dev Hook that is called after any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer( address from, address to, uint256 tokenId ) internal virtual {} } // File: @openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol // OpenZeppelin Contracts v4.4.1 (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(); } } pragma solidity >=0.7.0 <0.9.0; contract YellowBois is ERC721Enumerable, Ownable { using Strings for uint256; string public baseURI; string public baseExtension = ".json"; string public notRevealedUri; uint256 public cost = 0.05 ether; uint256 public maxSupply = 2500; uint256 public maxnTokens = 10; uint256 public nftPerAddressLimit = 200; bool public paused = false; bool public revealed = false; bool public onlyWhitelisted = true; address[] public whitelistedAddresses; mapping(address => uint256) public addressMintedBalance; constructor( string memory _name, string memory _symbol, string memory _initBaseURI, string memory _initNotRevealedUri ) ERC721(_name, _symbol) { setBaseURI(_initBaseURI); setNotRevealedURI(_initNotRevealedUri); } // internal function _baseURI() internal view virtual override returns (string memory) { return baseURI; } // public function mint(uint256 _nTokens) public payable { require(!paused, "the contract is paused"); uint256 supply = totalSupply(); require(_nTokens > 0, "need to mint at least 1 NFT"); require(_nTokens <= maxnTokens, "max mint amount per session exceeded"); require(supply + _nTokens <= maxSupply, "max NFT limit exceeded"); if (msg.sender != owner()) { if(onlyWhitelisted == true) { require(isWhitelisted(msg.sender), "user is not whitelisted"); uint256 ownerMintedCount = addressMintedBalance[msg.sender]; require(ownerMintedCount + _nTokens <= nftPerAddressLimit, "max NFT per address exceeded"); } require(msg.value >= cost * _nTokens, "insufficient funds"); } for (uint256 i = 1; i <= _nTokens; i++) { addressMintedBalance[msg.sender]++; _safeMint(msg.sender, supply + i); } } function isWhitelisted(address _user) public view returns (bool) { for (uint i = 0; i < whitelistedAddresses.length; i++) { if (whitelistedAddresses[i] == _user) { return true; } } return false; } 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" ); if(revealed == false) { return notRevealedUri; } string memory currentBaseURI = _baseURI(); return bytes(currentBaseURI).length > 0 ? string(abi.encodePacked(currentBaseURI, tokenId.toString(), baseExtension)) : ""; } //only owner function reveal() public onlyOwner { revealed = true; } function setNftPerAddressLimit(uint256 _limit) public onlyOwner { nftPerAddressLimit = _limit; } function setCost(uint256 _newCost) public onlyOwner { cost = _newCost; } function setmaxnTokens(uint256 _newmaxnTokens) public onlyOwner { maxnTokens = _newmaxnTokens; } function setBaseURI(string memory _newBaseURI) public onlyOwner { baseURI = _newBaseURI; } function setBaseExtension(string memory _newBaseExtension) public onlyOwner { baseExtension = _newBaseExtension; } function setNotRevealedURI(string memory _notRevealedURI) public onlyOwner { notRevealedUri = _notRevealedURI; } function pause(bool _state) public onlyOwner { paused = _state; } function setOnlyWhitelisted(bool _state) public onlyOwner { onlyWhitelisted = _state; } function whitelistUsers(address[] calldata _users) public onlyOwner { delete whitelistedAddresses; whitelistedAddresses = _users; } function withdrawMint() external onlyOwner { payable(msg.sender).transfer(address(this).balance); } }
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":"string","name":"_initNotRevealedUri","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"addressMintedBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_user","type":"address"}],"name":"isWhitelisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxnTokens","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_nTokens","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nftPerAddressLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"notRevealedUri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"onlyWhitelisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reveal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseExtension","type":"string"}],"name":"setBaseExtension","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newCost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_limit","type":"uint256"}],"name":"setNftPerAddressLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_notRevealedURI","type":"string"}],"name":"setNotRevealedURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setOnlyWhitelisted","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newmaxnTokens","type":"uint256"}],"name":"setmaxnTokens","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":[{"internalType":"address[]","name":"_users","type":"address[]"}],"name":"whitelistUsers","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"whitelistedAddresses","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdrawMint","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60c06040526005608081905264173539b7b760d91b60a09081526200002891600c9190620001ea565b5066b1a2bc2ec50000600e556109c4600f55600a60105560c86011556012805462ffffff1916620100001790553480156200006257600080fd5b5060405162002c0038038062002c0083398101604081905262000085916200035d565b8351849084906200009e906000906020850190620001ea565b508051620000b4906001906020840190620001ea565b505050620000d1620000cb620000f160201b60201c565b620000f5565b620000dc8262000147565b620000e7816200016a565b5050505062000453565b3390565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6200015162000189565b80516200016690600b906020840190620001ea565b5050565b6200017462000189565b80516200016690600d906020840190620001ea565b600a546001600160a01b03163314620001e85760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640160405180910390fd5b565b828054620001f89062000416565b90600052602060002090601f0160209004810192826200021c576000855562000267565b82601f106200023757805160ff191683800117855562000267565b8280016001018555821562000267579182015b82811115620002675782518255916020019190600101906200024a565b506200027592915062000279565b5090565b5b808211156200027557600081556001016200027a565b634e487b7160e01b600052604160045260246000fd5b600082601f830112620002b857600080fd5b81516001600160401b0380821115620002d557620002d562000290565b604051601f8301601f19908116603f0116810190828211818310171562000300576200030062000290565b816040528381526020925086838588010111156200031d57600080fd5b600091505b8382101562000341578582018301518183018401529082019062000322565b83821115620003535760008385830101525b9695505050505050565b600080600080608085870312156200037457600080fd5b84516001600160401b03808211156200038c57600080fd5b6200039a88838901620002a6565b95506020870151915080821115620003b157600080fd5b620003bf88838901620002a6565b94506040870151915080821115620003d657600080fd5b620003e488838901620002a6565b93506060870151915080821115620003fb57600080fd5b506200040a87828801620002a6565b91505092959194509250565b600181811c908216806200042b57607f821691505b602082108114156200044d57634e487b7160e01b600052602260045260246000fd5b50919050565b61279d80620004636000396000f3fe6080604052600436106102715760003560e01c80636c0360eb1161014f578063b88d4fde116100c1578063d5abeb011161007a578063d5abeb0114610723578063da3ef23f14610739578063e985e9c514610759578063edec5f27146107a2578063f2c4ce1e146107c2578063f2fde38b146107e257600080fd5b8063b88d4fde14610678578063ba4e5c4914610698578063ba7d2c76146106b8578063c6682862146106ce578063c87b56dd146106e3578063d0eb26b01461070357600080fd5b80639c70b512116101135780639c70b512146105db578063a0712d68146105fb578063a22cb4651461060e578063a475b5dd1461062e578063a7a1a97b14610643578063a8365f611461066357600080fd5b80636c0360eb1461055e57806370a0823114610573578063715018a6146105935780638da5cb5b146105a857806395d89b41146105c657600080fd5b80632f745c59116101e857806344a0d68a116101ac57806344a0d68a146104a55780634f6ccce7146104c557806351830227146104e557806355f804b3146105045780635c975abb146105245780636352211e1461053e57600080fd5b80632f745c59146103f85780633af32abf146104185780633c9527641461043857806342842e0e14610458578063438b63001461047857600080fd5b8063081c8c441161023a578063081c8c441461034b578063095ea7b31461036057806313faede61461038057806318160ddd1461039657806318cae269146103ab57806323b872dd146103d857600080fd5b80627e88a91461027657806301ffc9a71461029f57806302329a29146102cf57806306fdde03146102f1578063081812fc14610313575b600080fd5b34801561028257600080fd5b5061028c60105481565b6040519081526020015b60405180910390f35b3480156102ab57600080fd5b506102bf6102ba3660046120b5565b610802565b6040519015158152602001610296565b3480156102db57600080fd5b506102ef6102ea3660046120e7565b61082d565b005b3480156102fd57600080fd5b50610306610848565b604051610296919061215a565b34801561031f57600080fd5b5061033361032e36600461216d565b6108da565b6040516001600160a01b039091168152602001610296565b34801561035757600080fd5b50610306610901565b34801561036c57600080fd5b506102ef61037b36600461219d565b61098f565b34801561038c57600080fd5b5061028c600e5481565b3480156103a257600080fd5b5060085461028c565b3480156103b757600080fd5b5061028c6103c63660046121c7565b60146020526000908152604090205481565b3480156103e457600080fd5b506102ef6103f33660046121e2565b610aaa565b34801561040457600080fd5b5061028c61041336600461219d565b610adb565b34801561042457600080fd5b506102bf6104333660046121c7565b610b71565b34801561044457600080fd5b506102ef6104533660046120e7565b610bdb565b34801561046457600080fd5b506102ef6104733660046121e2565b610bff565b34801561048457600080fd5b506104986104933660046121c7565b610c1a565b604051610296919061221e565b3480156104b157600080fd5b506102ef6104c036600461216d565b610cbc565b3480156104d157600080fd5b5061028c6104e036600461216d565b610cc9565b3480156104f157600080fd5b506012546102bf90610100900460ff1681565b34801561051057600080fd5b506102ef61051f3660046122ee565b610d5c565b34801561053057600080fd5b506012546102bf9060ff1681565b34801561054a57600080fd5b5061033361055936600461216d565b610d7b565b34801561056a57600080fd5b50610306610ddb565b34801561057f57600080fd5b5061028c61058e3660046121c7565b610de8565b34801561059f57600080fd5b506102ef610e6e565b3480156105b457600080fd5b50600a546001600160a01b0316610333565b3480156105d257600080fd5b50610306610e82565b3480156105e757600080fd5b506012546102bf9062010000900460ff1681565b6102ef61060936600461216d565b610e91565b34801561061a57600080fd5b506102ef610629366004612337565b611178565b34801561063a57600080fd5b506102ef611183565b34801561064f57600080fd5b506102ef61065e36600461216d565b61119c565b34801561066f57600080fd5b506102ef6111a9565b34801561068457600080fd5b506102ef61069336600461236a565b6111e0565b3480156106a457600080fd5b506103336106b336600461216d565b611218565b3480156106c457600080fd5b5061028c60115481565b3480156106da57600080fd5b50610306611242565b3480156106ef57600080fd5b506103066106fe36600461216d565b61124f565b34801561070f57600080fd5b506102ef61071e36600461216d565b6113ce565b34801561072f57600080fd5b5061028c600f5481565b34801561074557600080fd5b506102ef6107543660046122ee565b6113db565b34801561076557600080fd5b506102bf6107743660046123e6565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b3480156107ae57600080fd5b506102ef6107bd366004612410565b6113f6565b3480156107ce57600080fd5b506102ef6107dd3660046122ee565b611416565b3480156107ee57600080fd5b506102ef6107fd3660046121c7565b611431565b60006001600160e01b0319821663780e9d6360e01b14806108275750610827826114a7565b92915050565b6108356114f7565b6012805460ff1916911515919091179055565b60606000805461085790612485565b80601f016020809104026020016040519081016040528092919081815260200182805461088390612485565b80156108d05780601f106108a5576101008083540402835291602001916108d0565b820191906000526020600020905b8154815290600101906020018083116108b357829003601f168201915b5050505050905090565b60006108e582611551565b506000908152600460205260409020546001600160a01b031690565b600d805461090e90612485565b80601f016020809104026020016040519081016040528092919081815260200182805461093a90612485565b80156109875780601f1061095c57610100808354040283529160200191610987565b820191906000526020600020905b81548152906001019060200180831161096a57829003601f168201915b505050505081565b600061099a82610d7b565b9050806001600160a01b0316836001600160a01b03161415610a0d5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084015b60405180910390fd5b336001600160a01b0382161480610a295750610a298133610774565b610a9b5760405162461bcd60e51b815260206004820152603e60248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60448201527f6b656e206f776e6572206e6f7220617070726f76656420666f7220616c6c00006064820152608401610a04565b610aa583836115b0565b505050565b610ab4338261161e565b610ad05760405162461bcd60e51b8152600401610a04906124c0565b610aa583838361169d565b6000610ae683610de8565b8210610b485760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610a04565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b6000805b601354811015610bd257826001600160a01b031660138281548110610b9c57610b9c61250e565b6000918252602090912001546001600160a01b03161415610bc05750600192915050565b80610bca8161253a565b915050610b75565b50600092915050565b610be36114f7565b60128054911515620100000262ff000019909216919091179055565b610aa5838383604051806020016040528060008152506111e0565b60606000610c2783610de8565b905060008167ffffffffffffffff811115610c4457610c44612262565b604051908082528060200260200182016040528015610c6d578160200160208202803683370190505b50905060005b82811015610cb457610c858582610adb565b828281518110610c9757610c9761250e565b602090810291909101015280610cac8161253a565b915050610c73565b509392505050565b610cc46114f7565b600e55565b6000610cd460085490565b8210610d375760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610a04565b60088281548110610d4a57610d4a61250e565b90600052602060002001549050919050565b610d646114f7565b8051610d7790600b906020840190611f95565b5050565b6000818152600260205260408120546001600160a01b0316806108275760405162461bcd60e51b8152602060048201526018602482015277115490cdcc8c4e881a5b9d985b1a59081d1bdad95b88125160421b6044820152606401610a04565b600b805461090e90612485565b60006001600160a01b038216610e525760405162461bcd60e51b815260206004820152602960248201527f4552433732313a2061646472657373207a65726f206973206e6f7420612076616044820152683634b21037bbb732b960b91b6064820152608401610a04565b506001600160a01b031660009081526003602052604090205490565b610e766114f7565b610e806000611844565b565b60606001805461085790612485565b60125460ff1615610edd5760405162461bcd60e51b81526020600482015260166024820152751d1a194818dbdb9d1c9858dd081a5cc81c185d5cd95960521b6044820152606401610a04565b6000610ee860085490565b905060008211610f3a5760405162461bcd60e51b815260206004820152601b60248201527f6e65656420746f206d696e74206174206c656173742031204e465400000000006044820152606401610a04565b601054821115610f985760405162461bcd60e51b8152602060048201526024808201527f6d6178206d696e7420616d6f756e74207065722073657373696f6e20657863656044820152631959195960e21b6064820152608401610a04565b600f54610fa58383612555565b1115610fec5760405162461bcd60e51b81526020600482015260166024820152751b585e08139195081b1a5b5a5d08195e18d95959195960521b6044820152606401610a04565b600a546001600160a01b031633146111285760125462010000900460ff161515600114156110d65761101d33610b71565b6110695760405162461bcd60e51b815260206004820152601760248201527f75736572206973206e6f742077686974656c69737465640000000000000000006044820152606401610a04565b336000908152601460205260409020546011546110868483612555565b11156110d45760405162461bcd60e51b815260206004820152601c60248201527f6d6178204e4654207065722061646472657373206578636565646564000000006044820152606401610a04565b505b81600e546110e4919061256d565b3410156111285760405162461bcd60e51b8152602060048201526012602482015271696e73756666696369656e742066756e647360701b6044820152606401610a04565b60015b828111610aa55733600090815260146020526040812080549161114d8361253a565b909155506111669050336111618385612555565b611896565b806111708161253a565b91505061112b565b610d773383836118b0565b61118b6114f7565b6012805461ff001916610100179055565b6111a46114f7565b601055565b6111b16114f7565b60405133904780156108fc02916000818181858888f193505050501580156111dd573d6000803e3d6000fd5b50565b6111ea338361161e565b6112065760405162461bcd60e51b8152600401610a04906124c0565b6112128484848461197f565b50505050565b6013818154811061122857600080fd5b6000918252602090912001546001600160a01b0316905081565b600c805461090e90612485565b6000818152600260205260409020546060906001600160a01b03166112ce5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610a04565b601254610100900460ff1661136f57600d80546112ea90612485565b80601f016020809104026020016040519081016040528092919081815260200182805461131690612485565b80156113635780601f1061133857610100808354040283529160200191611363565b820191906000526020600020905b81548152906001019060200180831161134657829003601f168201915b50505050509050919050565b60006113796119b2565b9050600081511161139957604051806020016040528060008152506113c7565b806113a3846119c1565b600c6040516020016113b79392919061258c565b6040516020818303038152906040525b9392505050565b6113d66114f7565b601155565b6113e36114f7565b8051610d7790600c906020840190611f95565b6113fe6114f7565b61140a60136000612019565b610aa560138383612037565b61141e6114f7565b8051610d7790600d906020840190611f95565b6114396114f7565b6001600160a01b03811661149e5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610a04565b6111dd81611844565b60006001600160e01b031982166380ac58cd60e01b14806114d857506001600160e01b03198216635b5e139f60e01b145b8061082757506301ffc9a760e01b6001600160e01b0319831614610827565b600a546001600160a01b03163314610e805760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a04565b6000818152600260205260409020546001600160a01b03166111dd5760405162461bcd60e51b8152602060048201526018602482015277115490cdcc8c4e881a5b9d985b1a59081d1bdad95b88125160421b6044820152606401610a04565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906115e582610d7b565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60008061162a83610d7b565b9050806001600160a01b0316846001600160a01b0316148061167157506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b806116955750836001600160a01b031661168a846108da565b6001600160a01b0316145b949350505050565b826001600160a01b03166116b082610d7b565b6001600160a01b0316146117145760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201526437bbb732b960d91b6064820152608401610a04565b6001600160a01b0382166117765760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610a04565b611781838383611abf565b61178c6000826115b0565b6001600160a01b03831660009081526003602052604081208054600192906117b5908490612650565b90915550506001600160a01b03821660009081526003602052604081208054600192906117e3908490612555565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b610d77828260405180602001604052806000815250611b77565b816001600160a01b0316836001600160a01b031614156119125760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610a04565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b61198a84848461169d565b61199684848484611baa565b6112125760405162461bcd60e51b8152600401610a0490612667565b6060600b805461085790612485565b6060816119e55750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611a0f57806119f98161253a565b9150611a089050600a836126cf565b91506119e9565b60008167ffffffffffffffff811115611a2a57611a2a612262565b6040519080825280601f01601f191660200182016040528015611a54576020820181803683370190505b5090505b841561169557611a69600183612650565b9150611a76600a866126e3565b611a81906030612555565b60f81b818381518110611a9657611a9661250e565b60200101906001600160f81b031916908160001a905350611ab8600a866126cf565b9450611a58565b6001600160a01b038316611b1a57611b1581600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b611b3d565b816001600160a01b0316836001600160a01b031614611b3d57611b3d8382611cb7565b6001600160a01b038216611b5457610aa581611d54565b826001600160a01b0316826001600160a01b031614610aa557610aa58282611e03565b611b818383611e47565b611b8e6000848484611baa565b610aa55760405162461bcd60e51b8152600401610a0490612667565b60006001600160a01b0384163b15611cac57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611bee9033908990889088906004016126f7565b602060405180830381600087803b158015611c0857600080fd5b505af1925050508015611c38575060408051601f3d908101601f19168201909252611c3591810190612734565b60015b611c92573d808015611c66576040519150601f19603f3d011682016040523d82523d6000602084013e611c6b565b606091505b508051611c8a5760405162461bcd60e51b8152600401610a0490612667565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611695565b506001949350505050565b60006001611cc484610de8565b611cce9190612650565b600083815260076020526040902054909150808214611d21576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090611d6690600190612650565b60008381526009602052604081205460088054939450909284908110611d8e57611d8e61250e565b906000526020600020015490508060088381548110611daf57611daf61250e565b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480611de757611de7612751565b6001900381819060005260206000200160009055905550505050565b6000611e0e83610de8565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b038216611e9d5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610a04565b6000818152600260205260409020546001600160a01b031615611f025760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610a04565b611f0e60008383611abf565b6001600160a01b0382166000908152600360205260408120805460019290611f37908490612555565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b828054611fa190612485565b90600052602060002090601f016020900481019282611fc35760008555612009565b82601f10611fdc57805160ff1916838001178555612009565b82800160010185558215612009579182015b82811115612009578251825591602001919060010190611fee565b5061201592915061208a565b5090565b50805460008255906000526020600020908101906111dd919061208a565b828054828255906000526020600020908101928215612009579160200282015b828111156120095781546001600160a01b0319166001600160a01b03843516178255602090920191600190910190612057565b5b80821115612015576000815560010161208b565b6001600160e01b0319811681146111dd57600080fd5b6000602082840312156120c757600080fd5b81356113c78161209f565b803580151581146120e257600080fd5b919050565b6000602082840312156120f957600080fd5b6113c7826120d2565b60005b8381101561211d578181015183820152602001612105565b838111156112125750506000910152565b60008151808452612146816020860160208601612102565b601f01601f19169290920160200192915050565b6020815260006113c7602083018461212e565b60006020828403121561217f57600080fd5b5035919050565b80356001600160a01b03811681146120e257600080fd5b600080604083850312156121b057600080fd5b6121b983612186565b946020939093013593505050565b6000602082840312156121d957600080fd5b6113c782612186565b6000806000606084860312156121f757600080fd5b61220084612186565b925061220e60208501612186565b9150604084013590509250925092565b6020808252825182820181905260009190848201906040850190845b818110156122565783518352928401929184019160010161223a565b50909695505050505050565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff8084111561229357612293612262565b604051601f8501601f19908116603f011681019082821181831017156122bb576122bb612262565b816040528093508581528686860111156122d457600080fd5b858560208301376000602087830101525050509392505050565b60006020828403121561230057600080fd5b813567ffffffffffffffff81111561231757600080fd5b8201601f8101841361232857600080fd5b61169584823560208401612278565b6000806040838503121561234a57600080fd5b61235383612186565b9150612361602084016120d2565b90509250929050565b6000806000806080858703121561238057600080fd5b61238985612186565b935061239760208601612186565b925060408501359150606085013567ffffffffffffffff8111156123ba57600080fd5b8501601f810187136123cb57600080fd5b6123da87823560208401612278565b91505092959194509250565b600080604083850312156123f957600080fd5b61240283612186565b915061236160208401612186565b6000806020838503121561242357600080fd5b823567ffffffffffffffff8082111561243b57600080fd5b818501915085601f83011261244f57600080fd5b81358181111561245e57600080fd5b8660208260051b850101111561247357600080fd5b60209290920196919550909350505050565b600181811c9082168061249957607f821691505b602082108114156124ba57634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252602e908201527f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560408201526d1c881b9bdc88185c1c1c9bdd995960921b606082015260800190565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b600060001982141561254e5761254e612524565b5060010190565b6000821982111561256857612568612524565b500190565b600081600019048311821515161561258757612587612524565b500290565b60008451602061259f8285838a01612102565b8551918401916125b28184848a01612102565b8554920191600090600181811c90808316806125cf57607f831692505b8583108114156125ed57634e487b7160e01b85526022600452602485fd5b80801561260157600181146126125761263f565b60ff1985168852838801955061263f565b60008b81526020902060005b858110156126375781548a82015290840190880161261e565b505083880195505b50939b9a5050505050505050505050565b60008282101561266257612662612524565b500390565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b634e487b7160e01b600052601260045260246000fd5b6000826126de576126de6126b9565b500490565b6000826126f2576126f26126b9565b500690565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061272a9083018461212e565b9695505050505050565b60006020828403121561274657600080fd5b81516113c78161209f565b634e487b7160e01b600052603160045260246000fdfea26469706673582212209742bd50e6c3f3cf6a248f7cb3d4eb56712162e5e9c8e844ec65d90f90e400d764736f6c63430008090033000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000140000000000000000000000000000000000000000000000000000000000000000a59656c6c6f77626f6973000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004424f49530000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000012c000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x6080604052600436106102715760003560e01c80636c0360eb1161014f578063b88d4fde116100c1578063d5abeb011161007a578063d5abeb0114610723578063da3ef23f14610739578063e985e9c514610759578063edec5f27146107a2578063f2c4ce1e146107c2578063f2fde38b146107e257600080fd5b8063b88d4fde14610678578063ba4e5c4914610698578063ba7d2c76146106b8578063c6682862146106ce578063c87b56dd146106e3578063d0eb26b01461070357600080fd5b80639c70b512116101135780639c70b512146105db578063a0712d68146105fb578063a22cb4651461060e578063a475b5dd1461062e578063a7a1a97b14610643578063a8365f611461066357600080fd5b80636c0360eb1461055e57806370a0823114610573578063715018a6146105935780638da5cb5b146105a857806395d89b41146105c657600080fd5b80632f745c59116101e857806344a0d68a116101ac57806344a0d68a146104a55780634f6ccce7146104c557806351830227146104e557806355f804b3146105045780635c975abb146105245780636352211e1461053e57600080fd5b80632f745c59146103f85780633af32abf146104185780633c9527641461043857806342842e0e14610458578063438b63001461047857600080fd5b8063081c8c441161023a578063081c8c441461034b578063095ea7b31461036057806313faede61461038057806318160ddd1461039657806318cae269146103ab57806323b872dd146103d857600080fd5b80627e88a91461027657806301ffc9a71461029f57806302329a29146102cf57806306fdde03146102f1578063081812fc14610313575b600080fd5b34801561028257600080fd5b5061028c60105481565b6040519081526020015b60405180910390f35b3480156102ab57600080fd5b506102bf6102ba3660046120b5565b610802565b6040519015158152602001610296565b3480156102db57600080fd5b506102ef6102ea3660046120e7565b61082d565b005b3480156102fd57600080fd5b50610306610848565b604051610296919061215a565b34801561031f57600080fd5b5061033361032e36600461216d565b6108da565b6040516001600160a01b039091168152602001610296565b34801561035757600080fd5b50610306610901565b34801561036c57600080fd5b506102ef61037b36600461219d565b61098f565b34801561038c57600080fd5b5061028c600e5481565b3480156103a257600080fd5b5060085461028c565b3480156103b757600080fd5b5061028c6103c63660046121c7565b60146020526000908152604090205481565b3480156103e457600080fd5b506102ef6103f33660046121e2565b610aaa565b34801561040457600080fd5b5061028c61041336600461219d565b610adb565b34801561042457600080fd5b506102bf6104333660046121c7565b610b71565b34801561044457600080fd5b506102ef6104533660046120e7565b610bdb565b34801561046457600080fd5b506102ef6104733660046121e2565b610bff565b34801561048457600080fd5b506104986104933660046121c7565b610c1a565b604051610296919061221e565b3480156104b157600080fd5b506102ef6104c036600461216d565b610cbc565b3480156104d157600080fd5b5061028c6104e036600461216d565b610cc9565b3480156104f157600080fd5b506012546102bf90610100900460ff1681565b34801561051057600080fd5b506102ef61051f3660046122ee565b610d5c565b34801561053057600080fd5b506012546102bf9060ff1681565b34801561054a57600080fd5b5061033361055936600461216d565b610d7b565b34801561056a57600080fd5b50610306610ddb565b34801561057f57600080fd5b5061028c61058e3660046121c7565b610de8565b34801561059f57600080fd5b506102ef610e6e565b3480156105b457600080fd5b50600a546001600160a01b0316610333565b3480156105d257600080fd5b50610306610e82565b3480156105e757600080fd5b506012546102bf9062010000900460ff1681565b6102ef61060936600461216d565b610e91565b34801561061a57600080fd5b506102ef610629366004612337565b611178565b34801561063a57600080fd5b506102ef611183565b34801561064f57600080fd5b506102ef61065e36600461216d565b61119c565b34801561066f57600080fd5b506102ef6111a9565b34801561068457600080fd5b506102ef61069336600461236a565b6111e0565b3480156106a457600080fd5b506103336106b336600461216d565b611218565b3480156106c457600080fd5b5061028c60115481565b3480156106da57600080fd5b50610306611242565b3480156106ef57600080fd5b506103066106fe36600461216d565b61124f565b34801561070f57600080fd5b506102ef61071e36600461216d565b6113ce565b34801561072f57600080fd5b5061028c600f5481565b34801561074557600080fd5b506102ef6107543660046122ee565b6113db565b34801561076557600080fd5b506102bf6107743660046123e6565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b3480156107ae57600080fd5b506102ef6107bd366004612410565b6113f6565b3480156107ce57600080fd5b506102ef6107dd3660046122ee565b611416565b3480156107ee57600080fd5b506102ef6107fd3660046121c7565b611431565b60006001600160e01b0319821663780e9d6360e01b14806108275750610827826114a7565b92915050565b6108356114f7565b6012805460ff1916911515919091179055565b60606000805461085790612485565b80601f016020809104026020016040519081016040528092919081815260200182805461088390612485565b80156108d05780601f106108a5576101008083540402835291602001916108d0565b820191906000526020600020905b8154815290600101906020018083116108b357829003601f168201915b5050505050905090565b60006108e582611551565b506000908152600460205260409020546001600160a01b031690565b600d805461090e90612485565b80601f016020809104026020016040519081016040528092919081815260200182805461093a90612485565b80156109875780601f1061095c57610100808354040283529160200191610987565b820191906000526020600020905b81548152906001019060200180831161096a57829003601f168201915b505050505081565b600061099a82610d7b565b9050806001600160a01b0316836001600160a01b03161415610a0d5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084015b60405180910390fd5b336001600160a01b0382161480610a295750610a298133610774565b610a9b5760405162461bcd60e51b815260206004820152603e60248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60448201527f6b656e206f776e6572206e6f7220617070726f76656420666f7220616c6c00006064820152608401610a04565b610aa583836115b0565b505050565b610ab4338261161e565b610ad05760405162461bcd60e51b8152600401610a04906124c0565b610aa583838361169d565b6000610ae683610de8565b8210610b485760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610a04565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b6000805b601354811015610bd257826001600160a01b031660138281548110610b9c57610b9c61250e565b6000918252602090912001546001600160a01b03161415610bc05750600192915050565b80610bca8161253a565b915050610b75565b50600092915050565b610be36114f7565b60128054911515620100000262ff000019909216919091179055565b610aa5838383604051806020016040528060008152506111e0565b60606000610c2783610de8565b905060008167ffffffffffffffff811115610c4457610c44612262565b604051908082528060200260200182016040528015610c6d578160200160208202803683370190505b50905060005b82811015610cb457610c858582610adb565b828281518110610c9757610c9761250e565b602090810291909101015280610cac8161253a565b915050610c73565b509392505050565b610cc46114f7565b600e55565b6000610cd460085490565b8210610d375760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610a04565b60088281548110610d4a57610d4a61250e565b90600052602060002001549050919050565b610d646114f7565b8051610d7790600b906020840190611f95565b5050565b6000818152600260205260408120546001600160a01b0316806108275760405162461bcd60e51b8152602060048201526018602482015277115490cdcc8c4e881a5b9d985b1a59081d1bdad95b88125160421b6044820152606401610a04565b600b805461090e90612485565b60006001600160a01b038216610e525760405162461bcd60e51b815260206004820152602960248201527f4552433732313a2061646472657373207a65726f206973206e6f7420612076616044820152683634b21037bbb732b960b91b6064820152608401610a04565b506001600160a01b031660009081526003602052604090205490565b610e766114f7565b610e806000611844565b565b60606001805461085790612485565b60125460ff1615610edd5760405162461bcd60e51b81526020600482015260166024820152751d1a194818dbdb9d1c9858dd081a5cc81c185d5cd95960521b6044820152606401610a04565b6000610ee860085490565b905060008211610f3a5760405162461bcd60e51b815260206004820152601b60248201527f6e65656420746f206d696e74206174206c656173742031204e465400000000006044820152606401610a04565b601054821115610f985760405162461bcd60e51b8152602060048201526024808201527f6d6178206d696e7420616d6f756e74207065722073657373696f6e20657863656044820152631959195960e21b6064820152608401610a04565b600f54610fa58383612555565b1115610fec5760405162461bcd60e51b81526020600482015260166024820152751b585e08139195081b1a5b5a5d08195e18d95959195960521b6044820152606401610a04565b600a546001600160a01b031633146111285760125462010000900460ff161515600114156110d65761101d33610b71565b6110695760405162461bcd60e51b815260206004820152601760248201527f75736572206973206e6f742077686974656c69737465640000000000000000006044820152606401610a04565b336000908152601460205260409020546011546110868483612555565b11156110d45760405162461bcd60e51b815260206004820152601c60248201527f6d6178204e4654207065722061646472657373206578636565646564000000006044820152606401610a04565b505b81600e546110e4919061256d565b3410156111285760405162461bcd60e51b8152602060048201526012602482015271696e73756666696369656e742066756e647360701b6044820152606401610a04565b60015b828111610aa55733600090815260146020526040812080549161114d8361253a565b909155506111669050336111618385612555565b611896565b806111708161253a565b91505061112b565b610d773383836118b0565b61118b6114f7565b6012805461ff001916610100179055565b6111a46114f7565b601055565b6111b16114f7565b60405133904780156108fc02916000818181858888f193505050501580156111dd573d6000803e3d6000fd5b50565b6111ea338361161e565b6112065760405162461bcd60e51b8152600401610a04906124c0565b6112128484848461197f565b50505050565b6013818154811061122857600080fd5b6000918252602090912001546001600160a01b0316905081565b600c805461090e90612485565b6000818152600260205260409020546060906001600160a01b03166112ce5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610a04565b601254610100900460ff1661136f57600d80546112ea90612485565b80601f016020809104026020016040519081016040528092919081815260200182805461131690612485565b80156113635780601f1061133857610100808354040283529160200191611363565b820191906000526020600020905b81548152906001019060200180831161134657829003601f168201915b50505050509050919050565b60006113796119b2565b9050600081511161139957604051806020016040528060008152506113c7565b806113a3846119c1565b600c6040516020016113b79392919061258c565b6040516020818303038152906040525b9392505050565b6113d66114f7565b601155565b6113e36114f7565b8051610d7790600c906020840190611f95565b6113fe6114f7565b61140a60136000612019565b610aa560138383612037565b61141e6114f7565b8051610d7790600d906020840190611f95565b6114396114f7565b6001600160a01b03811661149e5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610a04565b6111dd81611844565b60006001600160e01b031982166380ac58cd60e01b14806114d857506001600160e01b03198216635b5e139f60e01b145b8061082757506301ffc9a760e01b6001600160e01b0319831614610827565b600a546001600160a01b03163314610e805760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a04565b6000818152600260205260409020546001600160a01b03166111dd5760405162461bcd60e51b8152602060048201526018602482015277115490cdcc8c4e881a5b9d985b1a59081d1bdad95b88125160421b6044820152606401610a04565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906115e582610d7b565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60008061162a83610d7b565b9050806001600160a01b0316846001600160a01b0316148061167157506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b806116955750836001600160a01b031661168a846108da565b6001600160a01b0316145b949350505050565b826001600160a01b03166116b082610d7b565b6001600160a01b0316146117145760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201526437bbb732b960d91b6064820152608401610a04565b6001600160a01b0382166117765760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610a04565b611781838383611abf565b61178c6000826115b0565b6001600160a01b03831660009081526003602052604081208054600192906117b5908490612650565b90915550506001600160a01b03821660009081526003602052604081208054600192906117e3908490612555565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b610d77828260405180602001604052806000815250611b77565b816001600160a01b0316836001600160a01b031614156119125760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610a04565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b61198a84848461169d565b61199684848484611baa565b6112125760405162461bcd60e51b8152600401610a0490612667565b6060600b805461085790612485565b6060816119e55750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611a0f57806119f98161253a565b9150611a089050600a836126cf565b91506119e9565b60008167ffffffffffffffff811115611a2a57611a2a612262565b6040519080825280601f01601f191660200182016040528015611a54576020820181803683370190505b5090505b841561169557611a69600183612650565b9150611a76600a866126e3565b611a81906030612555565b60f81b818381518110611a9657611a9661250e565b60200101906001600160f81b031916908160001a905350611ab8600a866126cf565b9450611a58565b6001600160a01b038316611b1a57611b1581600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b611b3d565b816001600160a01b0316836001600160a01b031614611b3d57611b3d8382611cb7565b6001600160a01b038216611b5457610aa581611d54565b826001600160a01b0316826001600160a01b031614610aa557610aa58282611e03565b611b818383611e47565b611b8e6000848484611baa565b610aa55760405162461bcd60e51b8152600401610a0490612667565b60006001600160a01b0384163b15611cac57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611bee9033908990889088906004016126f7565b602060405180830381600087803b158015611c0857600080fd5b505af1925050508015611c38575060408051601f3d908101601f19168201909252611c3591810190612734565b60015b611c92573d808015611c66576040519150601f19603f3d011682016040523d82523d6000602084013e611c6b565b606091505b508051611c8a5760405162461bcd60e51b8152600401610a0490612667565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611695565b506001949350505050565b60006001611cc484610de8565b611cce9190612650565b600083815260076020526040902054909150808214611d21576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090611d6690600190612650565b60008381526009602052604081205460088054939450909284908110611d8e57611d8e61250e565b906000526020600020015490508060088381548110611daf57611daf61250e565b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480611de757611de7612751565b6001900381819060005260206000200160009055905550505050565b6000611e0e83610de8565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b038216611e9d5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610a04565b6000818152600260205260409020546001600160a01b031615611f025760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610a04565b611f0e60008383611abf565b6001600160a01b0382166000908152600360205260408120805460019290611f37908490612555565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b828054611fa190612485565b90600052602060002090601f016020900481019282611fc35760008555612009565b82601f10611fdc57805160ff1916838001178555612009565b82800160010185558215612009579182015b82811115612009578251825591602001919060010190611fee565b5061201592915061208a565b5090565b50805460008255906000526020600020908101906111dd919061208a565b828054828255906000526020600020908101928215612009579160200282015b828111156120095781546001600160a01b0319166001600160a01b03843516178255602090920191600190910190612057565b5b80821115612015576000815560010161208b565b6001600160e01b0319811681146111dd57600080fd5b6000602082840312156120c757600080fd5b81356113c78161209f565b803580151581146120e257600080fd5b919050565b6000602082840312156120f957600080fd5b6113c7826120d2565b60005b8381101561211d578181015183820152602001612105565b838111156112125750506000910152565b60008151808452612146816020860160208601612102565b601f01601f19169290920160200192915050565b6020815260006113c7602083018461212e565b60006020828403121561217f57600080fd5b5035919050565b80356001600160a01b03811681146120e257600080fd5b600080604083850312156121b057600080fd5b6121b983612186565b946020939093013593505050565b6000602082840312156121d957600080fd5b6113c782612186565b6000806000606084860312156121f757600080fd5b61220084612186565b925061220e60208501612186565b9150604084013590509250925092565b6020808252825182820181905260009190848201906040850190845b818110156122565783518352928401929184019160010161223a565b50909695505050505050565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff8084111561229357612293612262565b604051601f8501601f19908116603f011681019082821181831017156122bb576122bb612262565b816040528093508581528686860111156122d457600080fd5b858560208301376000602087830101525050509392505050565b60006020828403121561230057600080fd5b813567ffffffffffffffff81111561231757600080fd5b8201601f8101841361232857600080fd5b61169584823560208401612278565b6000806040838503121561234a57600080fd5b61235383612186565b9150612361602084016120d2565b90509250929050565b6000806000806080858703121561238057600080fd5b61238985612186565b935061239760208601612186565b925060408501359150606085013567ffffffffffffffff8111156123ba57600080fd5b8501601f810187136123cb57600080fd5b6123da87823560208401612278565b91505092959194509250565b600080604083850312156123f957600080fd5b61240283612186565b915061236160208401612186565b6000806020838503121561242357600080fd5b823567ffffffffffffffff8082111561243b57600080fd5b818501915085601f83011261244f57600080fd5b81358181111561245e57600080fd5b8660208260051b850101111561247357600080fd5b60209290920196919550909350505050565b600181811c9082168061249957607f821691505b602082108114156124ba57634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252602e908201527f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560408201526d1c881b9bdc88185c1c1c9bdd995960921b606082015260800190565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b600060001982141561254e5761254e612524565b5060010190565b6000821982111561256857612568612524565b500190565b600081600019048311821515161561258757612587612524565b500290565b60008451602061259f8285838a01612102565b8551918401916125b28184848a01612102565b8554920191600090600181811c90808316806125cf57607f831692505b8583108114156125ed57634e487b7160e01b85526022600452602485fd5b80801561260157600181146126125761263f565b60ff1985168852838801955061263f565b60008b81526020902060005b858110156126375781548a82015290840190880161261e565b505083880195505b50939b9a5050505050505050505050565b60008282101561266257612662612524565b500390565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b634e487b7160e01b600052601260045260246000fd5b6000826126de576126de6126b9565b500490565b6000826126f2576126f26126b9565b500690565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061272a9083018461212e565b9695505050505050565b60006020828403121561274657600080fd5b81516113c78161209f565b634e487b7160e01b600052603160045260246000fdfea26469706673582212209742bd50e6c3f3cf6a248f7cb3d4eb56712162e5e9c8e844ec65d90f90e400d764736f6c63430008090033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000140000000000000000000000000000000000000000000000000000000000000000a59656c6c6f77626f6973000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004424f49530000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000012c000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : _name (string): Yellowbois
Arg [1] : _symbol (string): BOIS
Arg [2] : _initBaseURI (string): ,
Arg [3] : _initNotRevealedUri (string):
-----Encoded View---------------
11 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000100
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000140
Arg [4] : 000000000000000000000000000000000000000000000000000000000000000a
Arg [5] : 59656c6c6f77626f697300000000000000000000000000000000000000000000
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [7] : 424f495300000000000000000000000000000000000000000000000000000000
Arg [8] : 0000000000000000000000000000000000000000000000000000000000000001
Arg [9] : 2c00000000000000000000000000000000000000000000000000000000000000
Arg [10] : 0000000000000000000000000000000000000000000000000000000000000000
Deployed Bytecode Sourcemap
46242:4172:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46502:30;;;;;;;;;;;;;;;;;;;160:25:1;;;148:2;133:18;46502:30:0;;;;;;;;40045:224;;;;;;;;;;-1:-1:-1;40045:224:0;;;;;:::i;:::-;;:::i;:::-;;;747:14:1;;740:22;722:41;;710:2;695:18;40045:224:0;582:187:1;49961:73:0;;;;;;;;;;-1:-1:-1;49961:73:0;;;;;:::i;:::-;;:::i;:::-;;26779:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;28292:171::-;;;;;;;;;;-1:-1:-1;28292:171:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;2224:32:1;;;2206:51;;2194:2;2179:18;28292:171:0;2060:203:1;46396:28:0;;;;;;;;;;;;;:::i;27809:417::-;;;;;;;;;;-1:-1:-1;27809:417:0;;;;;:::i;:::-;;:::i;46429:32::-;;;;;;;;;;;;;;;;40685:113;;;;;;;;;;-1:-1:-1;40773:10:0;:17;40685:113;;46726:55;;;;;;;;;;-1:-1:-1;46726:55:0;;;;;:::i;:::-;;;;;;;;;;;;;;28992:336;;;;;;;;;;-1:-1:-1;28992:336:0;;;;;:::i;:::-;;:::i;40353:256::-;;;;;;;;;;-1:-1:-1;40353:256:0;;;;;:::i;:::-;;:::i;48102:239::-;;;;;;;;;;-1:-1:-1;48102:239:0;;;;;:::i;:::-;;:::i;50042:95::-;;;;;;;;;;-1:-1:-1;50042:95:0;;;;;:::i;:::-;;:::i;29399:185::-;;;;;;;;;;-1:-1:-1;29399:185:0;;;;;:::i;:::-;;:::i;48347:348::-;;;;;;;;;;-1:-1:-1;48347:348:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;49405:80::-;;;;;;;;;;-1:-1:-1;49405:80:0;;;;;:::i;:::-;;:::i;40875:233::-;;;;;;;;;;-1:-1:-1;40875:233:0;;;;;:::i;:::-;;:::i;46612:28::-;;;;;;;;;;-1:-1:-1;46612:28:0;;;;;;;;;;;49601:98;;;;;;;;;;-1:-1:-1;49601:98:0;;;;;:::i;:::-;;:::i;46581:26::-;;;;;;;;;;-1:-1:-1;46581:26:0;;;;;;;;26490:222;;;;;;;;;;-1:-1:-1;26490:222:0;;;;;:::i;:::-;;:::i;46328:21::-;;;;;;;;;;;;;:::i;26221:207::-;;;;;;;;;;-1:-1:-1;26221:207:0;;;;;:::i;:::-;;:::i;5308:103::-;;;;;;;;;;;;;:::i;4660:87::-;;;;;;;;;;-1:-1:-1;4733:6:0;;-1:-1:-1;;;;;4733:6:0;4660:87;;26948:104;;;;;;;;;;;;;:::i;46645:34::-;;;;;;;;;;-1:-1:-1;46645:34:0;;;;;;;;;;;47181:913;;;;;;:::i;:::-;;:::i;28535:155::-;;;;;;;;;;-1:-1:-1;28535:155:0;;;;;:::i;:::-;;:::i;49220:65::-;;;;;;;;;;;;;:::i;49491:104::-;;;;;;;;;;-1:-1:-1;49491:104:0;;;;;:::i;:::-;;:::i;50298:113::-;;;;;;;;;;;;;:::i;29655:323::-;;;;;;;;;;-1:-1:-1;29655:323:0;;;;;:::i;:::-;;:::i;46684:37::-;;;;;;;;;;-1:-1:-1;46684:37:0;;;;;:::i;:::-;;:::i;46537:39::-;;;;;;;;;;;;;;;;46354:37;;;;;;;;;;;;;:::i;48701:497::-;;;;;;;;;;-1:-1:-1;48701:497:0;;;;;:::i;:::-;;:::i;49293:104::-;;;;;;;;;;-1:-1:-1;49293:104:0;;;;;:::i;:::-;;:::i;46466:31::-;;;;;;;;;;;;;;;;49705:122;;;;;;;;;;-1:-1:-1;49705:122:0;;;;;:::i;:::-;;:::i;28761:164::-;;;;;;;;;;-1:-1:-1;28761:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;28882:25:0;;;28858:4;28882:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;28761:164;50145:144;;;;;;;;;;-1:-1:-1;50145:144:0;;;;;:::i;:::-;;:::i;49835:120::-;;;;;;;;;;-1:-1:-1;49835:120:0;;;;;:::i;:::-;;:::i;5566:201::-;;;;;;;;;;-1:-1:-1;5566:201:0;;;;;:::i;:::-;;:::i;40045:224::-;40147:4;-1:-1:-1;;;;;;40171:50:0;;-1:-1:-1;;;40171:50:0;;:90;;;40225:36;40249:11;40225:23;:36::i;:::-;40164:97;40045:224;-1:-1:-1;;40045:224:0:o;49961:73::-;4546:13;:11;:13::i;:::-;50013:6:::1;:15:::0;;-1:-1:-1;;50013:15:0::1;::::0;::::1;;::::0;;;::::1;::::0;;49961:73::o;26779:100::-;26833:13;26866:5;26859:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26779:100;:::o;28292:171::-;28368:7;28388:23;28403:7;28388:14;:23::i;:::-;-1:-1:-1;28431:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;28431:24:0;;28292:171::o;46396:28::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;27809:417::-;27890:13;27906:23;27921:7;27906:14;:23::i;:::-;27890:39;;27954:5;-1:-1:-1;;;;;27948:11:0;:2;-1:-1:-1;;;;;27948:11:0;;;27940:57;;;;-1:-1:-1;;;27940:57:0;;7494:2:1;27940:57:0;;;7476:21:1;7533:2;7513:18;;;7506:30;7572:34;7552:18;;;7545:62;-1:-1:-1;;;7623:18:1;;;7616:31;7664:19;;27940:57:0;;;;;;;;;3291:10;-1:-1:-1;;;;;28032:21:0;;;;:62;;-1:-1:-1;28057:37:0;28074:5;3291:10;28761:164;:::i;28057:37::-;28010:174;;;;-1:-1:-1;;;28010:174:0;;7896:2:1;28010:174:0;;;7878:21:1;7935:2;7915:18;;;7908:30;7974:34;7954:18;;;7947:62;8045:32;8025:18;;;8018:60;8095:19;;28010:174:0;7694:426:1;28010:174:0;28197:21;28206:2;28210:7;28197:8;:21::i;:::-;27879:347;27809:417;;:::o;28992:336::-;29187:41;3291:10;29220:7;29187:18;:41::i;:::-;29179:100;;;;-1:-1:-1;;;29179:100:0;;;;;;;:::i;:::-;29292:28;29302:4;29308:2;29312:7;29292:9;:28::i;40353:256::-;40450:7;40486:23;40503:5;40486:16;:23::i;:::-;40478:5;:31;40470:87;;;;-1:-1:-1;;;40470:87:0;;8742:2:1;40470:87:0;;;8724:21:1;8781:2;8761:18;;;8754:30;8820:34;8800:18;;;8793:62;-1:-1:-1;;;8871:18:1;;;8864:41;8922:19;;40470:87:0;8540:407:1;40470:87:0;-1:-1:-1;;;;;;40575:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;40353:256::o;48102:239::-;48161:4;;48174:143;48195:20;:27;48191:31;;48174:143;;;48269:5;-1:-1:-1;;;;;48242:32:0;:20;48263:1;48242:23;;;;;;;;:::i;:::-;;;;;;;;;;;-1:-1:-1;;;;;48242:23:0;:32;48238:72;;;-1:-1:-1;48296:4:0;;48102:239;-1:-1:-1;;48102:239:0:o;48238:72::-;48224:3;;;;:::i;:::-;;;;48174:143;;;-1:-1:-1;48330:5:0;;48102:239;-1:-1:-1;;48102:239:0:o;50042:95::-;4546:13;:11;:13::i;:::-;50107:15:::1;:24:::0;;;::::1;;::::0;::::1;-1:-1:-1::0;;50107:24:0;;::::1;::::0;;;::::1;::::0;;50042:95::o;29399:185::-;29537:39;29554:4;29560:2;29564:7;29537:39;;;;;;;;;;;;:16;:39::i;48347:348::-;48422:16;48450:23;48476:17;48486:6;48476:9;:17::i;:::-;48450:43;;48500:25;48542:15;48528:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;48528:30:0;;48500:58;;48570:9;48565:103;48585:15;48581:1;:19;48565:103;;;48630:30;48650:6;48658:1;48630:19;:30::i;:::-;48616:8;48625:1;48616:11;;;;;;;;:::i;:::-;;;;;;;;;;:44;48602:3;;;;:::i;:::-;;;;48565:103;;;-1:-1:-1;48681:8:0;48347:348;-1:-1:-1;;;48347:348:0:o;49405:80::-;4546:13;:11;:13::i;:::-;49464:4:::1;:15:::0;49405:80::o;40875:233::-;40950:7;40986:30;40773:10;:17;;40685:113;40986:30;40978:5;:38;40970:95;;;;-1:-1:-1;;;40970:95:0;;9558:2:1;40970:95:0;;;9540:21:1;9597:2;9577:18;;;9570:30;9636:34;9616:18;;;9609:62;-1:-1:-1;;;9687:18:1;;;9680:42;9739:19;;40970:95:0;9356:408:1;40970:95:0;41083:10;41094:5;41083:17;;;;;;;;:::i;:::-;;;;;;;;;41076:24;;40875:233;;;:::o;49601:98::-;4546:13;:11;:13::i;:::-;49672:21;;::::1;::::0;:7:::1;::::0;:21:::1;::::0;::::1;::::0;::::1;:::i;:::-;;49601:98:::0;:::o;26490:222::-;26562:7;26598:16;;;:7;:16;;;;;;-1:-1:-1;;;;;26598:16:0;26633:19;26625:56;;;;-1:-1:-1;;;26625:56:0;;9971:2:1;26625:56:0;;;9953:21:1;10010:2;9990:18;;;9983:30;-1:-1:-1;;;10029:18:1;;;10022:54;10093:18;;26625:56:0;9769:348:1;46328:21:0;;;;;;;:::i;26221:207::-;26293:7;-1:-1:-1;;;;;26321:19:0;;26313:73;;;;-1:-1:-1;;;26313:73:0;;10324:2:1;26313:73:0;;;10306:21:1;10363:2;10343:18;;;10336:30;10402:34;10382:18;;;10375:62;-1:-1:-1;;;10453:18:1;;;10446:39;10502:19;;26313:73:0;10122:405:1;26313:73:0;-1:-1:-1;;;;;;26404:16:0;;;;;:9;:16;;;;;;;26221:207::o;5308:103::-;4546:13;:11;:13::i;:::-;5373:30:::1;5400:1;5373:18;:30::i;:::-;5308:103::o:0;26948:104::-;27004:13;27037:7;27030:14;;;;;:::i;47181:913::-;47244:6;;;;47243:7;47235:42;;;;-1:-1:-1;;;47235:42:0;;10734:2:1;47235:42:0;;;10716:21:1;10773:2;10753:18;;;10746:30;-1:-1:-1;;;10792:18:1;;;10785:52;10854:18;;47235:42:0;10532:346:1;47235:42:0;47284:14;47301:13;40773:10;:17;;40685:113;47301:13;47284:30;;47340:1;47329:8;:12;47321:52;;;;-1:-1:-1;;;47321:52:0;;11085:2:1;47321:52:0;;;11067:21:1;11124:2;11104:18;;;11097:30;11163:29;11143:18;;;11136:57;11210:18;;47321:52:0;10883:351:1;47321:52:0;47400:10;;47388:8;:22;;47380:71;;;;-1:-1:-1;;;47380:71:0;;11441:2:1;47380:71:0;;;11423:21:1;11480:2;11460:18;;;11453:30;11519:34;11499:18;;;11492:62;-1:-1:-1;;;11570:18:1;;;11563:34;11614:19;;47380:71:0;11239:400:1;47380:71:0;47487:9;;47466:17;47475:8;47466:6;:17;:::i;:::-;:30;;47458:65;;;;-1:-1:-1;;;47458:65:0;;11979:2:1;47458:65:0;;;11961:21:1;12018:2;11998:18;;;11991:30;-1:-1:-1;;;12037:18:1;;;12030:52;12099:18;;47458:65:0;11777:346:1;47458:65:0;4733:6;;-1:-1:-1;;;;;4733:6:0;47536:10;:21;47532:410;;47573:15;;;;;;;:23;;47592:4;47573:23;47570:295;;;47621:25;47635:10;47621:13;:25::i;:::-;47613:61;;;;-1:-1:-1;;;47613:61:0;;12330:2:1;47613:61:0;;;12312:21:1;12369:2;12349:18;;;12342:30;12408:25;12388:18;;;12381:53;12451:18;;47613:61:0;12128:347:1;47613:61:0;47737:10;47689:24;47716:32;;;:20;:32;;;;;;47802:18;;47771:27;47790:8;47716:32;47771:27;:::i;:::-;:49;;47763:90;;;;-1:-1:-1;;;47763:90:0;;12682:2:1;47763:90:0;;;12664:21:1;12721:2;12701:18;;;12694:30;12760;12740:18;;;12733:58;12808:18;;47763:90:0;12480:352:1;47763:90:0;47598:267;47570:295;47903:8;47896:4;;:15;;;;:::i;:::-;47883:9;:28;;47875:59;;;;-1:-1:-1;;;47875:59:0;;13212:2:1;47875:59:0;;;13194:21:1;13251:2;13231:18;;;13224:30;-1:-1:-1;;;13270:18:1;;;13263:48;13328:18;;47875:59:0;13010:342:1;47875:59:0;47971:1;47954:135;47979:8;47974:1;:13;47954:135;;48026:10;48005:32;;;;:20;:32;;;;;:34;;;;;;:::i;:::-;;;;-1:-1:-1;48048:33:0;;-1:-1:-1;48058:10:0;48070;48079:1;48070:6;:10;:::i;:::-;48048:9;:33::i;:::-;47989:3;;;;:::i;:::-;;;;47954:135;;28535:155;28630:52;3291:10;28663:8;28673;28630:18;:52::i;49220:65::-;4546:13;:11;:13::i;:::-;49264:8:::1;:15:::0;;-1:-1:-1;;49264:15:0::1;;;::::0;;49220:65::o;49491:104::-;4546:13;:11;:13::i;:::-;49562:10:::1;:27:::0;49491:104::o;50298:113::-;4546:13;:11;:13::i;:::-;50352:51:::1;::::0;50360:10:::1;::::0;50381:21:::1;50352:51:::0;::::1;;;::::0;::::1;::::0;;;50381:21;50360:10;50352:51;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;50298:113::o:0;29655:323::-;29829:41;3291:10;29862:7;29829:18;:41::i;:::-;29821:100;;;;-1:-1:-1;;;29821:100:0;;;;;;;:::i;:::-;29932:38;29946:4;29952:2;29956:7;29965:4;29932:13;:38::i;:::-;29655:323;;;;:::o;46684:37::-;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;46684:37:0;;-1:-1:-1;46684:37:0;:::o;46354:::-;;;;;;;:::i;48701:497::-;31550:4;31574:16;;;:7;:16;;;;;;48799:13;;-1:-1:-1;;;;;31574:16:0;48824:97;;;;-1:-1:-1;;;48824:97:0;;13559:2:1;48824:97:0;;;13541:21:1;13598:2;13578:18;;;13571:30;13637:34;13617:18;;;13610:62;-1:-1:-1;;;13688:18:1;;;13681:45;13743:19;;48824:97:0;13357:411:1;48824:97:0;48937:8;;;;;;;48934:62;;48974:14;48967:21;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48701:497;;;:::o;48934:62::-;49004:28;49035:10;:8;:10::i;:::-;49004:41;;49090:1;49065:14;49059:28;:32;:133;;;;;;;;;;;;;;;;;49127:14;49143:18;:7;:16;:18::i;:::-;49163:13;49110:67;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;49059:133;49052:140;48701:497;-1:-1:-1;;;48701:497:0:o;49293:104::-;4546:13;:11;:13::i;:::-;49364:18:::1;:27:::0;49293:104::o;49705:122::-;4546:13;:11;:13::i;:::-;49788:33;;::::1;::::0;:13:::1;::::0;:33:::1;::::0;::::1;::::0;::::1;:::i;50145:144::-:0;4546:13;:11;:13::i;:::-;50220:27:::1;50227:20;;50220:27;:::i;:::-;50254:29;:20;50277:6:::0;;50254:29:::1;:::i;49835:120::-:0;4546:13;:11;:13::i;:::-;49917:32;;::::1;::::0;:14:::1;::::0;:32:::1;::::0;::::1;::::0;::::1;:::i;5566:201::-:0;4546:13;:11;:13::i;:::-;-1:-1:-1;;;;;5655:22:0;::::1;5647:73;;;::::0;-1:-1:-1;;;5647:73:0;;15633:2:1;5647:73:0::1;::::0;::::1;15615:21:1::0;15672:2;15652:18;;;15645:30;15711:34;15691:18;;;15684:62;-1:-1:-1;;;15762:18:1;;;15755:36;15808:19;;5647:73:0::1;15431:402:1::0;5647:73:0::1;5731:28;5750:8;5731:18;:28::i;25852:305::-:0;25954:4;-1:-1:-1;;;;;;25991:40:0;;-1:-1:-1;;;25991:40:0;;:105;;-1:-1:-1;;;;;;;26048:48:0;;-1:-1:-1;;;26048:48:0;25991:105;:158;;;-1:-1:-1;;;;;;;;;;17623:40:0;;;26113:36;17514:157;4825:132;4733:6;;-1:-1:-1;;;;;4733:6:0;3291:10;4889:23;4881:68;;;;-1:-1:-1;;;4881:68:0;;16040:2:1;4881:68:0;;;16022:21:1;;;16059:18;;;16052:30;16118:34;16098:18;;;16091:62;16170:18;;4881:68:0;15838:356:1;36267:135:0;31550:4;31574:16;;;:7;:16;;;;;;-1:-1:-1;;;;;31574:16:0;36341:53;;;;-1:-1:-1;;;36341:53:0;;9971:2:1;36341:53:0;;;9953:21:1;10010:2;9990:18;;;9983:30;-1:-1:-1;;;10029:18:1;;;10022:54;10093:18;;36341:53:0;9769:348:1;35546:174:0;35621:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;35621:29:0;-1:-1:-1;;;;;35621:29:0;;;;;;;;:24;;35675:23;35621:24;35675:14;:23::i;:::-;-1:-1:-1;;;;;35666:46:0;;;;;;;;;;;35546:174;;:::o;31779:264::-;31872:4;31889:13;31905:23;31920:7;31905:14;:23::i;:::-;31889:39;;31958:5;-1:-1:-1;;;;;31947:16:0;:7;-1:-1:-1;;;;;31947:16:0;;:52;;;-1:-1:-1;;;;;;28882:25:0;;;28858:4;28882:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;31967:32;31947:87;;;;32027:7;-1:-1:-1;;;;;32003:31:0;:20;32015:7;32003:11;:20::i;:::-;-1:-1:-1;;;;;32003:31:0;;31947:87;31939:96;31779:264;-1:-1:-1;;;;31779:264:0:o;34802:625::-;34961:4;-1:-1:-1;;;;;34934:31:0;:23;34949:7;34934:14;:23::i;:::-;-1:-1:-1;;;;;34934:31:0;;34926:81;;;;-1:-1:-1;;;34926:81:0;;16401:2:1;34926:81:0;;;16383:21:1;16440:2;16420:18;;;16413:30;16479:34;16459:18;;;16452:62;-1:-1:-1;;;16530:18:1;;;16523:35;16575:19;;34926:81:0;16199:401:1;34926:81:0;-1:-1:-1;;;;;35026:16:0;;35018:65;;;;-1:-1:-1;;;35018:65:0;;16807:2:1;35018:65:0;;;16789:21:1;16846:2;16826:18;;;16819:30;16885:34;16865:18;;;16858:62;-1:-1:-1;;;16936:18:1;;;16929:34;16980:19;;35018:65:0;16605:400:1;35018:65:0;35096:39;35117:4;35123:2;35127:7;35096:20;:39::i;:::-;35200:29;35217:1;35221:7;35200:8;:29::i;:::-;-1:-1:-1;;;;;35242:15:0;;;;;;:9;:15;;;;;:20;;35261:1;;35242:15;:20;;35261:1;;35242:20;:::i;:::-;;;;-1:-1:-1;;;;;;;35273:13:0;;;;;;:9;:13;;;;;:18;;35290:1;;35273:13;:18;;35290:1;;35273:18;:::i;:::-;;;;-1:-1:-1;;35302:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;35302:21:0;-1:-1:-1;;;;;35302:21:0;;;;;;;;;35341:27;;35302:16;;35341:27;;;;;;;27879:347;27809:417;;:::o;5927:191::-;6020:6;;;-1:-1:-1;;;;;6037:17:0;;;-1:-1:-1;;;;;;6037:17:0;;;;;;;6070:40;;6020:6;;;6037:17;6020:6;;6070:40;;6001:16;;6070:40;5990:128;5927:191;:::o;32385:110::-;32461:26;32471:2;32475:7;32461:26;;;;;;;;;;;;:9;:26::i;35863:315::-;36018:8;-1:-1:-1;;;;;36009:17:0;:5;-1:-1:-1;;;;;36009:17:0;;;36001:55;;;;-1:-1:-1;;;36001:55:0;;17342:2:1;36001:55:0;;;17324:21:1;17381:2;17361:18;;;17354:30;17420:27;17400:18;;;17393:55;17465:18;;36001:55:0;17140:349:1;36001:55:0;-1:-1:-1;;;;;36067:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;36067:46:0;;;;;;;;;;36129:41;;722::1;;;36129::0;;695:18:1;36129:41:0;;;;;;;35863:315;;;:::o;30859:313::-;31015:28;31025:4;31031:2;31035:7;31015:9;:28::i;:::-;31062:47;31085:4;31091:2;31095:7;31104:4;31062:22;:47::i;:::-;31054:110;;;;-1:-1:-1;;;31054:110:0;;;;;;;:::i;47060:102::-;47120:13;47149:7;47142:14;;;;;:::i;465:723::-;521:13;742:10;738:53;;-1:-1:-1;;769:10:0;;;;;;;;;;;;-1:-1:-1;;;769:10:0;;;;;465:723::o;738:53::-;816:5;801:12;857:78;864:9;;857:78;;890:8;;;;:::i;:::-;;-1:-1:-1;913:10:0;;-1:-1:-1;921:2:0;913:10;;:::i;:::-;;;857:78;;;945:19;977:6;967:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;967:17:0;;945:39;;995:154;1002:10;;995:154;;1029:11;1039:1;1029:11;;:::i;:::-;;-1:-1:-1;1098:10:0;1106:2;1098:5;:10;:::i;:::-;1085:24;;:2;:24;:::i;:::-;1072:39;;1055:6;1062;1055:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;1055:56:0;;;;;;;;-1:-1:-1;1126:11:0;1135:2;1126:11;;:::i;:::-;;;995:154;;41721:589;-1:-1:-1;;;;;41927:18:0;;41923:187;;41962:40;41994:7;43137:10;:17;;43110:24;;;;:15;:24;;;;;:44;;;43165:24;;;;;;;;;;;;43033:164;41962:40;41923:187;;;42032:2;-1:-1:-1;;;;;42024:10:0;:4;-1:-1:-1;;;;;42024:10:0;;42020:90;;42051:47;42084:4;42090:7;42051:32;:47::i;:::-;-1:-1:-1;;;;;42124:16:0;;42120:183;;42157:45;42194:7;42157:36;:45::i;42120:183::-;42230:4;-1:-1:-1;;;;;42224:10:0;:2;-1:-1:-1;;;;;42224:10:0;;42220:83;;42251:40;42279:2;42283:7;42251:27;:40::i;32722:319::-;32851:18;32857:2;32861:7;32851:5;:18::i;:::-;32902:53;32933:1;32937:2;32941:7;32950:4;32902:22;:53::i;:::-;32880:153;;;;-1:-1:-1;;;32880:153:0;;;;;;;:::i;36966:853::-;37120:4;-1:-1:-1;;;;;37141:13:0;;7653:19;:23;37137:675;;37177:71;;-1:-1:-1;;;37177:71:0;;-1:-1:-1;;;;;37177:36:0;;;;;:71;;3291:10;;37228:4;;37234:7;;37243:4;;37177:71;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;37177:71:0;;;;;;;;-1:-1:-1;;37177:71:0;;;;;;;;;;;;:::i;:::-;;;37173:584;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;37418:13:0;;37414:328;;37461:60;;-1:-1:-1;;;37461:60:0;;;;;;;:::i;37414:328::-;37692:6;37686:13;37677:6;37673:2;37669:15;37662:38;37173:584;-1:-1:-1;;;;;;37299:51:0;-1:-1:-1;;;37299:51:0;;-1:-1:-1;37292:58:0;;37137:675;-1:-1:-1;37796:4:0;36966:853;;;;;;:::o;43824:988::-;44090:22;44140:1;44115:22;44132:4;44115:16;:22::i;:::-;:26;;;;:::i;:::-;44152:18;44173:26;;;:17;:26;;;;;;44090:51;;-1:-1:-1;44306:28:0;;;44302:328;;-1:-1:-1;;;;;44373:18:0;;44351:19;44373:18;;;:12;:18;;;;;;;;:34;;;;;;;;;44424:30;;;;;;:44;;;44541:30;;:17;:30;;;;;:43;;;44302:328;-1:-1:-1;44726:26:0;;;;:17;:26;;;;;;;;44719:33;;;-1:-1:-1;;;;;44770:18:0;;;;;:12;:18;;;;;:34;;;;;;;44763:41;43824:988::o;45107:1079::-;45385:10;:17;45360:22;;45385:21;;45405:1;;45385:21;:::i;:::-;45417:18;45438:24;;;:15;:24;;;;;;45811:10;:26;;45360:46;;-1:-1:-1;45438:24:0;;45360:46;;45811:26;;;;;;:::i;:::-;;;;;;;;;45789:48;;45875:11;45850:10;45861;45850:22;;;;;;;;:::i;:::-;;;;;;;;;;;;:36;;;;45955:28;;;:15;:28;;;;;;;:41;;;46127:24;;;;;46120:31;46162:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;45178:1008;;;45107:1079;:::o;42611:221::-;42696:14;42713:20;42730:2;42713:16;:20::i;:::-;-1:-1:-1;;;;;42744:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;42789:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;42611:221:0:o;33377:439::-;-1:-1:-1;;;;;33457:16:0;;33449:61;;;;-1:-1:-1;;;33449:61:0;;19369:2:1;33449:61:0;;;19351:21:1;;;19388:18;;;19381:30;19447:34;19427:18;;;19420:62;19499:18;;33449:61:0;19167:356:1;33449:61:0;31550:4;31574:16;;;:7;:16;;;;;;-1:-1:-1;;;;;31574:16:0;:30;33521:58;;;;-1:-1:-1;;;33521:58:0;;19730:2:1;33521:58:0;;;19712:21:1;19769:2;19749:18;;;19742:30;19808;19788:18;;;19781:58;19856:18;;33521:58:0;19528:352:1;33521:58:0;33592:45;33621:1;33625:2;33629:7;33592:20;:45::i;:::-;-1:-1:-1;;;;;33650:13:0;;;;;;:9;:13;;;;;:18;;33667:1;;33650:13;:18;;33667:1;;33650:18;:::i;:::-;;;;-1:-1:-1;;33679:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;33679:21:0;-1:-1:-1;;;;;33679:21:0;;;;;;;;33718:33;;33679:16;;;33718:33;;33679:16;;33718:33;49672:21:::1;49601:98:::0;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;196:131:1;-1:-1:-1;;;;;;270:32:1;;260:43;;250:71;;317:1;314;307:12;332:245;390:6;443:2;431:9;422:7;418:23;414:32;411:52;;;459:1;456;449:12;411:52;498:9;485:23;517:30;541:5;517:30;:::i;774:160::-;839:20;;895:13;;888:21;878:32;;868:60;;924:1;921;914:12;868:60;774:160;;;:::o;939:180::-;995:6;1048:2;1036:9;1027:7;1023:23;1019:32;1016:52;;;1064:1;1061;1054:12;1016:52;1087:26;1103:9;1087:26;:::i;1124:258::-;1196:1;1206:113;1220:6;1217:1;1214:13;1206:113;;;1296:11;;;1290:18;1277:11;;;1270:39;1242:2;1235:10;1206:113;;;1337:6;1334:1;1331:13;1328:48;;;-1:-1:-1;;1372:1:1;1354:16;;1347:27;1124:258::o;1387:::-;1429:3;1467:5;1461:12;1494:6;1489:3;1482:19;1510:63;1566:6;1559:4;1554:3;1550:14;1543:4;1536:5;1532:16;1510:63;:::i;:::-;1627:2;1606:15;-1:-1:-1;;1602:29:1;1593:39;;;;1634:4;1589:50;;1387:258;-1:-1:-1;;1387:258:1:o;1650:220::-;1799:2;1788:9;1781:21;1762:4;1819:45;1860:2;1849:9;1845:18;1837:6;1819:45;:::i;1875:180::-;1934:6;1987:2;1975:9;1966:7;1962:23;1958:32;1955:52;;;2003:1;2000;1993:12;1955:52;-1:-1:-1;2026:23:1;;1875:180;-1:-1:-1;1875:180:1:o;2268:173::-;2336:20;;-1:-1:-1;;;;;2385:31:1;;2375:42;;2365:70;;2431:1;2428;2421:12;2446:254;2514:6;2522;2575:2;2563:9;2554:7;2550:23;2546:32;2543:52;;;2591:1;2588;2581:12;2543:52;2614:29;2633:9;2614:29;:::i;:::-;2604:39;2690:2;2675:18;;;;2662:32;;-1:-1:-1;;;2446:254:1:o;2705:186::-;2764:6;2817:2;2805:9;2796:7;2792:23;2788:32;2785:52;;;2833:1;2830;2823:12;2785:52;2856:29;2875:9;2856:29;:::i;2896:328::-;2973:6;2981;2989;3042:2;3030:9;3021:7;3017:23;3013:32;3010:52;;;3058:1;3055;3048:12;3010:52;3081:29;3100:9;3081:29;:::i;:::-;3071:39;;3129:38;3163:2;3152:9;3148:18;3129:38;:::i;:::-;3119:48;;3214:2;3203:9;3199:18;3186:32;3176:42;;2896:328;;;;;:::o;3229:632::-;3400:2;3452:21;;;3522:13;;3425:18;;;3544:22;;;3371:4;;3400:2;3623:15;;;;3597:2;3582:18;;;3371:4;3666:169;3680:6;3677:1;3674:13;3666:169;;;3741:13;;3729:26;;3810:15;;;;3775:12;;;;3702:1;3695:9;3666:169;;;-1:-1:-1;3852:3:1;;3229:632;-1:-1:-1;;;;;;3229:632:1:o;3866:127::-;3927:10;3922:3;3918:20;3915:1;3908:31;3958:4;3955:1;3948:15;3982:4;3979:1;3972:15;3998:632;4063:5;4093:18;4134:2;4126:6;4123:14;4120:40;;;4140:18;;:::i;:::-;4215:2;4209:9;4183:2;4269:15;;-1:-1:-1;;4265:24:1;;;4291:2;4261:33;4257:42;4245:55;;;4315:18;;;4335:22;;;4312:46;4309:72;;;4361:18;;:::i;:::-;4401:10;4397:2;4390:22;4430:6;4421:15;;4460:6;4452;4445:22;4500:3;4491:6;4486:3;4482:16;4479:25;4476:45;;;4517:1;4514;4507:12;4476:45;4567:6;4562:3;4555:4;4547:6;4543:17;4530:44;4622:1;4615:4;4606:6;4598;4594:19;4590:30;4583:41;;;;3998:632;;;;;:::o;4635:451::-;4704:6;4757:2;4745:9;4736:7;4732:23;4728:32;4725:52;;;4773:1;4770;4763:12;4725:52;4813:9;4800:23;4846:18;4838:6;4835:30;4832:50;;;4878:1;4875;4868:12;4832:50;4901:22;;4954:4;4946:13;;4942:27;-1:-1:-1;4932:55:1;;4983:1;4980;4973:12;4932:55;5006:74;5072:7;5067:2;5054:16;5049:2;5045;5041:11;5006:74;:::i;5091:254::-;5156:6;5164;5217:2;5205:9;5196:7;5192:23;5188:32;5185:52;;;5233:1;5230;5223:12;5185:52;5256:29;5275:9;5256:29;:::i;:::-;5246:39;;5304:35;5335:2;5324:9;5320:18;5304:35;:::i;:::-;5294:45;;5091:254;;;;;:::o;5350:667::-;5445:6;5453;5461;5469;5522:3;5510:9;5501:7;5497:23;5493:33;5490:53;;;5539:1;5536;5529:12;5490:53;5562:29;5581:9;5562:29;:::i;:::-;5552:39;;5610:38;5644:2;5633:9;5629:18;5610:38;:::i;:::-;5600:48;;5695:2;5684:9;5680:18;5667:32;5657:42;;5750:2;5739:9;5735:18;5722:32;5777:18;5769:6;5766:30;5763:50;;;5809:1;5806;5799:12;5763:50;5832:22;;5885:4;5877:13;;5873:27;-1:-1:-1;5863:55:1;;5914:1;5911;5904:12;5863:55;5937:74;6003:7;5998:2;5985:16;5980:2;5976;5972:11;5937:74;:::i;:::-;5927:84;;;5350:667;;;;;;;:::o;6022:260::-;6090:6;6098;6151:2;6139:9;6130:7;6126:23;6122:32;6119:52;;;6167:1;6164;6157:12;6119:52;6190:29;6209:9;6190:29;:::i;:::-;6180:39;;6238:38;6272:2;6261:9;6257:18;6238:38;:::i;6287:615::-;6373:6;6381;6434:2;6422:9;6413:7;6409:23;6405:32;6402:52;;;6450:1;6447;6440:12;6402:52;6490:9;6477:23;6519:18;6560:2;6552:6;6549:14;6546:34;;;6576:1;6573;6566:12;6546:34;6614:6;6603:9;6599:22;6589:32;;6659:7;6652:4;6648:2;6644:13;6640:27;6630:55;;6681:1;6678;6671:12;6630:55;6721:2;6708:16;6747:2;6739:6;6736:14;6733:34;;;6763:1;6760;6753:12;6733:34;6816:7;6811:2;6801:6;6798:1;6794:14;6790:2;6786:23;6782:32;6779:45;6776:65;;;6837:1;6834;6827:12;6776:65;6868:2;6860:11;;;;;6890:6;;-1:-1:-1;6287:615:1;;-1:-1:-1;;;;6287:615:1:o;6907:380::-;6986:1;6982:12;;;;7029;;;7050:61;;7104:4;7096:6;7092:17;7082:27;;7050:61;7157:2;7149:6;7146:14;7126:18;7123:38;7120:161;;;7203:10;7198:3;7194:20;7191:1;7184:31;7238:4;7235:1;7228:15;7266:4;7263:1;7256:15;7120:161;;6907:380;;;:::o;8125:410::-;8327:2;8309:21;;;8366:2;8346:18;;;8339:30;8405:34;8400:2;8385:18;;8378:62;-1:-1:-1;;;8471:2:1;8456:18;;8449:44;8525:3;8510:19;;8125:410::o;8952:127::-;9013:10;9008:3;9004:20;9001:1;8994:31;9044:4;9041:1;9034:15;9068:4;9065:1;9058:15;9084:127;9145:10;9140:3;9136:20;9133:1;9126:31;9176:4;9173:1;9166:15;9200:4;9197:1;9190:15;9216:135;9255:3;-1:-1:-1;;9276:17:1;;9273:43;;;9296:18;;:::i;:::-;-1:-1:-1;9343:1:1;9332:13;;9216:135::o;11644:128::-;11684:3;11715:1;11711:6;11708:1;11705:13;11702:39;;;11721:18;;:::i;:::-;-1:-1:-1;11757:9:1;;11644:128::o;12837:168::-;12877:7;12943:1;12939;12935:6;12931:14;12928:1;12925:21;12920:1;12913:9;12906:17;12902:45;12899:71;;;12950:18;;:::i;:::-;-1:-1:-1;12990:9:1;;12837:168::o;13899:1527::-;14123:3;14161:6;14155:13;14187:4;14200:51;14244:6;14239:3;14234:2;14226:6;14222:15;14200:51;:::i;:::-;14314:13;;14273:16;;;;14336:55;14314:13;14273:16;14358:15;;;14336:55;:::i;:::-;14480:13;;14413:20;;;14453:1;;14540;14562:18;;;;14615;;;;14642:93;;14720:4;14710:8;14706:19;14694:31;;14642:93;14783:2;14773:8;14770:16;14750:18;14747:40;14744:167;;;-1:-1:-1;;;14810:33:1;;14866:4;14863:1;14856:15;14896:4;14817:3;14884:17;14744:167;14927:18;14954:110;;;;15078:1;15073:328;;;;14920:481;;14954:110;-1:-1:-1;;14989:24:1;;14975:39;;15034:20;;;;-1:-1:-1;14954:110:1;;15073:328;13846:1;13839:14;;;13883:4;13870:18;;15168:1;15182:169;15196:8;15193:1;15190:15;15182:169;;;15278:14;;15263:13;;;15256:37;15321:16;;;;15213:10;;15182:169;;;15186:3;;15382:8;15375:5;15371:20;15364:27;;14920:481;-1:-1:-1;15417:3:1;;13899:1527;-1:-1:-1;;;;;;;;;;;13899:1527:1:o;17010:125::-;17050:4;17078:1;17075;17072:8;17069:34;;;17083:18;;:::i;:::-;-1:-1:-1;17120:9:1;;17010:125::o;17494:414::-;17696:2;17678:21;;;17735:2;17715:18;;;17708:30;17774:34;17769:2;17754:18;;17747:62;-1:-1:-1;;;17840:2:1;17825:18;;17818:48;17898:3;17883:19;;17494:414::o;17913:127::-;17974:10;17969:3;17965:20;17962:1;17955:31;18005:4;18002:1;17995:15;18029:4;18026:1;18019:15;18045:120;18085:1;18111;18101:35;;18116:18;;:::i;:::-;-1:-1:-1;18150:9:1;;18045:120::o;18170:112::-;18202:1;18228;18218:35;;18233:18;;:::i;:::-;-1:-1:-1;18267:9:1;;18170:112::o;18287:489::-;-1:-1:-1;;;;;18556:15:1;;;18538:34;;18608:15;;18603:2;18588:18;;18581:43;18655:2;18640:18;;18633:34;;;18703:3;18698:2;18683:18;;18676:31;;;18481:4;;18724:46;;18750:19;;18742:6;18724:46;:::i;:::-;18716:54;18287:489;-1:-1:-1;;;;;;18287:489:1:o;18781:249::-;18850:6;18903:2;18891:9;18882:7;18878:23;18874:32;18871:52;;;18919:1;18916;18909:12;18871:52;18951:9;18945:16;18970:30;18994:5;18970:30;:::i;19035:127::-;19096:10;19091:3;19087:20;19084:1;19077:31;19127:4;19124:1;19117:15;19151:4;19148:1;19141:15
Swarm Source
ipfs://9742bd50e6c3f3cf6a248f7cb3d4eb56712162e5e9c8e844ec65d90f90e400d7
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.