Feature Tip: Add private address tag to any address under My Name Tag !
ERC-721
Overview
Max Total Supply
998 FF6RCK
Holders
408
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
1 FF6RCKLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
FF6000Rocks
Compiler Version
v0.8.13+commit.abaa5c0e
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2023-06-21 */ // SPDX-License-Identifier: MIT // File: IOperatorFilterRegistry.sol pragma solidity ^0.8.13; interface IOperatorFilterRegistry { function isOperatorAllowed(address registrant, address operator) external view returns (bool); function register(address registrant) external; function registerAndSubscribe(address registrant, address subscription) external; function registerAndCopyEntries(address registrant, address registrantToCopy) external; function unregister(address addr) external; function updateOperator(address registrant, address operator, bool filtered) external; function updateOperators(address registrant, address[] calldata operators, bool filtered) external; function updateCodeHash(address registrant, bytes32 codehash, bool filtered) external; function updateCodeHashes(address registrant, bytes32[] calldata codeHashes, bool filtered) external; function subscribe(address registrant, address registrantToSubscribe) external; function unsubscribe(address registrant, bool copyExistingEntries) external; function subscriptionOf(address addr) external returns (address registrant); function subscribers(address registrant) external returns (address[] memory); function subscriberAt(address registrant, uint256 index) external returns (address); function copyEntriesOf(address registrant, address registrantToCopy) external; function isOperatorFiltered(address registrant, address operator) external returns (bool); function isCodeHashOfFiltered(address registrant, address operatorWithCode) external returns (bool); function isCodeHashFiltered(address registrant, bytes32 codeHash) external returns (bool); function filteredOperators(address addr) external returns (address[] memory); function filteredCodeHashes(address addr) external returns (bytes32[] memory); function filteredOperatorAt(address registrant, uint256 index) external returns (address); function filteredCodeHashAt(address registrant, uint256 index) external returns (bytes32); function isRegistered(address addr) external returns (bool); function codeHashOf(address addr) external returns (bytes32); } // File: OperatorFilterer.sol pragma solidity ^0.8.13; /** * @title OperatorFilterer * @notice Abstract contract whose constructor automatically registers and optionally subscribes to or copies another * registrant's entries in the OperatorFilterRegistry. * @dev This smart contract is meant to be inherited by token contracts so they can use the following: * - `onlyAllowedOperator` modifier for `transferFrom` and `safeTransferFrom` methods. * - `onlyAllowedOperatorApproval` modifier for `approve` and `setApprovalForAll` methods. */ abstract contract OperatorFilterer { error OperatorNotAllowed(address operator); IOperatorFilterRegistry public constant OPERATOR_FILTER_REGISTRY = IOperatorFilterRegistry(0x000000000000AAeB6D7670E522A718067333cd4E); constructor(address subscriptionOrRegistrantToCopy, bool subscribe) { // If an inheriting token contract is deployed to a network without the registry deployed, the modifier // will not revert, but the contract will need to be registered with the registry once it is deployed in // order for the modifier to filter addresses. if (address(OPERATOR_FILTER_REGISTRY).code.length > 0) { if (subscribe) { OPERATOR_FILTER_REGISTRY.registerAndSubscribe(address(this), subscriptionOrRegistrantToCopy); } else { if (subscriptionOrRegistrantToCopy != address(0)) { OPERATOR_FILTER_REGISTRY.registerAndCopyEntries(address(this), subscriptionOrRegistrantToCopy); } else { OPERATOR_FILTER_REGISTRY.register(address(this)); } } } } modifier onlyAllowedOperator(address from) virtual { // Allow spending tokens from addresses with balance // Note that this still allows listings and marketplaces with escrow to transfer tokens if transferred // from an EOA. if (from != msg.sender) { _checkFilterOperator(msg.sender); } _; } modifier onlyAllowedOperatorApproval(address operator) virtual { _checkFilterOperator(operator); _; } function _checkFilterOperator(address operator) internal view virtual { // Check registry code length to facilitate testing in environments without a deployed registry. if (address(OPERATOR_FILTER_REGISTRY).code.length > 0) { if (!OPERATOR_FILTER_REGISTRY.isOperatorAllowed(address(this), operator)) { revert OperatorNotAllowed(operator); } } } } // File: DefaultOperatorFilterer.sol pragma solidity ^0.8.13; /** * @title DefaultOperatorFilterer * @notice Inherits from OperatorFilterer and automatically subscribes to the default OpenSea subscription. */ abstract contract DefaultOperatorFilterer is OperatorFilterer { address constant DEFAULT_SUBSCRIPTION = address(0x3cc6CddA760b79bAfa08dF41ECFA224f810dCeB6); constructor() OperatorFilterer(DEFAULT_SUBSCRIPTION, true) {} } // File: MerkleProof.sol // contracts/MerkleProofVerify.sol // based upon https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v3.0.1/contracts/mocks/MerkleProofWrapper.sol pragma solidity ^0.8.0; /** * @dev These functions deal with verification of Merkle trees (hash trees), */ library MerkleProof { /** * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree * defined by `root`. For this, a `proof` must be provided, containing * sibling hashes on the branch from the leaf to the root of the tree. Each * pair of leaves and each pair of pre-images are assumed to be sorted. */ function verify(bytes32[] calldata proof, bytes32 leaf, bytes32 root) internal pure returns (bool) { bytes32 computedHash = leaf; for (uint256 i = 0; i < proof.length; i++) { bytes32 proofElement = proof[i]; if (computedHash <= proofElement) { // Hash(current computed hash + current element of the proof) computedHash = keccak256(abi.encodePacked(computedHash, proofElement)); } else { // Hash(current element of the proof + current computed hash) computedHash = keccak256(abi.encodePacked(proofElement, computedHash)); } } // Check if the computed hash (root) is equal to the provided root return computedHash == root; } } /* pragma solidity ^0.8.0; contract MerkleProofVerify { function verify(bytes32[] calldata proof, bytes32 root) public view returns (bool) { bytes32 leaf = keccak256(abi.encodePacked(msg.sender)); return MerkleProof.verify(proof, root, leaf); } } */ // File: Strings.sol pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { /** * @dev Converts a `uint256` to its ASCII `string` 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); uint256 index = digits; temp = value; while (temp != 0) { buffer[--index] = bytes1(uint8(48 + uint256(temp % 10))); temp /= 10; } return string(buffer); } } // File: 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 GSN 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 memory) { this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691 return msg.data; } } // File: 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: Address.sol pragma solidity ^0.8.0; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; // solhint-disable-next-line no-inline-assembly assembly { size := extcodesize(account) } return size > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); // solhint-disable-next-line avoid-low-level-calls, avoid-call-value (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"); // solhint-disable-next-line avoid-low-level-calls (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"); // solhint-disable-next-line avoid-low-level-calls (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.3._ */ 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.3._ */ function functionDelegateCall(address target, bytes memory data, string memory errorMessage) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); // solhint-disable-next-line avoid-low-level-calls (bool success, bytes memory returndata) = target.delegatecall(data); return _verifyCallResult(success, returndata, errorMessage); } function _verifyCallResult(bool success, bytes memory returndata, string memory errorMessage) private 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 // solhint-disable-next-line no-inline-assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } // File: IERC721Receiver.sol pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`. */ function onERC721Received(address operator, address from, uint256 tokenId, bytes calldata data) external returns (bytes4); } // File: 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: IERC2981.sol // OpenZeppelin Contracts (last updated v4.6.0) (interfaces/IERC2981.sol) pragma solidity ^0.8.0; /** * @dev Interface for the NFT Royalty Standard. * * A standardized way to retrieve royalty payment information for non-fungible tokens (NFTs) to enable universal * support for royalty payments across all NFT marketplaces and ecosystem participants. * * _Available since v4.5._ */ interface IERC2981 is IERC165 { /** * @dev Returns how much royalty is owed and to whom, based on a sale price that may be denominated in any unit of * exchange. The royalty amount is denominated and should be paid in that same unit of exchange. */ function royaltyInfo(uint256 tokenId, uint256 salePrice) external view returns (address receiver, uint256 royaltyAmount); } // File: 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: ERC2981.sol // OpenZeppelin Contracts (last updated v4.7.0) (token/common/ERC2981.sol) pragma solidity ^0.8.0; /** * @dev Implementation of the NFT Royalty Standard, a standardized way to retrieve royalty payment information. * * Royalty information can be specified globally for all token ids via {_setDefaultRoyalty}, and/or individually for * specific token ids via {_setTokenRoyalty}. The latter takes precedence over the first. * * Royalty is specified as a fraction of sale price. {_feeDenominator} is overridable but defaults to 10000, meaning the * fee is specified in basis points by default. * * IMPORTANT: ERC-2981 only specifies a way to signal royalty information and does not enforce its payment. See * https://eips.ethereum.org/EIPS/eip-2981#optional-royalty-payments[Rationale] in the EIP. Marketplaces are expected to * voluntarily pay royalties together with sales, but note that this standard is not yet widely supported. * * _Available since v4.5._ */ abstract contract ERC2981 is IERC2981, ERC165 { struct RoyaltyInfo { address receiver; uint96 royaltyFraction; } RoyaltyInfo private _defaultRoyaltyInfo; mapping(uint256 => RoyaltyInfo) private _tokenRoyaltyInfo; /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(IERC165, ERC165) returns (bool) { return interfaceId == type(IERC2981).interfaceId || super.supportsInterface(interfaceId); } /** * @inheritdoc IERC2981 */ function royaltyInfo(uint256 _tokenId, uint256 _salePrice) public view virtual override returns (address, uint256) { RoyaltyInfo memory royalty = _tokenRoyaltyInfo[_tokenId]; if (royalty.receiver == address(0)) { royalty = _defaultRoyaltyInfo; } uint256 royaltyAmount = (_salePrice * royalty.royaltyFraction) / _feeDenominator(); return (royalty.receiver, royaltyAmount); } /** * @dev The denominator with which to interpret the fee set in {_setTokenRoyalty} and {_setDefaultRoyalty} as a * fraction of the sale price. Defaults to 10000 so fees are expressed in basis points, but may be customized by an * override. */ function _feeDenominator() internal pure virtual returns (uint96) { return 10000; } /** * @dev Sets the royalty information that all ids in this contract will default to. * * Requirements: * * - `receiver` cannot be the zero address. * - `feeNumerator` cannot be greater than the fee denominator. */ function _setDefaultRoyalty(address receiver, uint96 feeNumerator) internal virtual { require(feeNumerator <= _feeDenominator(), "ERC2981: royalty fee will exceed salePrice"); require(receiver != address(0), "ERC2981: invalid receiver"); _defaultRoyaltyInfo = RoyaltyInfo(receiver, feeNumerator); } /** * @dev Removes default royalty information. */ function _deleteDefaultRoyalty() internal virtual { delete _defaultRoyaltyInfo; } /** * @dev Sets the royalty information for a specific token id, overriding the global default. * * Requirements: * * - `receiver` cannot be the zero address. * - `feeNumerator` cannot be greater than the fee denominator. */ function _setTokenRoyalty( uint256 tokenId, address receiver, uint96 feeNumerator ) internal virtual { require(feeNumerator <= _feeDenominator(), "ERC2981: royalty fee will exceed salePrice"); require(receiver != address(0), "ERC2981: Invalid parameters"); _tokenRoyaltyInfo[tokenId] = RoyaltyInfo(receiver, feeNumerator); } /** * @dev Resets royalty information for the token id back to the global default. */ function _resetTokenRoyalty(uint256 tokenId) internal virtual { delete _tokenRoyaltyInfo[tokenId]; } } // File: IERC721.sol pragma solidity ^0.8.0; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom(address from, address to, uint256 tokenId) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom(address from, address to, uint256 tokenId) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom(address from, address to, uint256 tokenId, bytes calldata data) external; } // File: 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: 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: ERC721A.sol // Creator: Chiru Labs pragma solidity ^0.8.4; error ApprovalCallerNotOwnerNorApproved(); error ApprovalQueryForNonexistentToken(); error ApproveToCaller(); error ApprovalToCurrentOwner(); error BalanceQueryForZeroAddress(); error MintedQueryForZeroAddress(); error BurnedQueryForZeroAddress(); error MintToZeroAddress(); error MintZeroQuantity(); error OwnerIndexOutOfBounds(); error OwnerQueryForNonexistentToken(); error TokenIndexOutOfBounds(); error TransferCallerNotOwnerNorApproved(); error TransferFromIncorrectOwner(); error TransferToNonERC721ReceiverImplementer(); error TransferToZeroAddress(); error URIQueryForNonexistentToken(); /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata and Enumerable extension. Built to optimize for lower gas during batch mints. * * Assumes serials are sequentially minted starting at 0 (e.g. 0, 1, 2, 3..). * * Assumes that an owner cannot have more than 2**64 - 1 (max value of uint64) of supply. * * Assumes that the maximum token id cannot exceed 2**128 - 1 (max value of uint128). */ contract ERC721A is Context, ERC165, IERC721, IERC721Metadata, IERC721Enumerable { using Address for address; using Strings for uint256; // Compiler will pack this into a single 256bit word. struct TokenOwnership { // The address of the owner. address addr; // Keeps track of the start time of ownership with minimal overhead for tokenomics. uint64 startTimestamp; // Whether the token has been burned. bool burned; } // Compiler will pack this into a single 256bit word. struct AddressData { // Realistically, 2**64-1 is more than enough. uint64 balance; // Keeps track of mint count with minimal overhead for tokenomics. uint64 numberMinted; // Keeps track of burn count with minimal overhead for tokenomics. uint64 numberBurned; } // Compiler will pack the following // _currentIndex and _burnCounter into a single 256bit word. // The tokenId of the next token to be minted. uint128 internal _currentIndex = 1; // The number of tokens burned. uint128 internal _burnCounter = 1; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to ownership details // An empty struct value does not necessarily mean the token is unowned. See ownershipOf implementation for details. mapping(uint256 => TokenOwnership) internal _ownerships; // Mapping owner address to address data mapping(address => AddressData) private _addressData; // Mapping from token ID to approved address mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev See {IERC721Enumerable-totalSupply}. */ function totalSupply() public view override returns (uint256) { // Counter underflow is impossible as _burnCounter cannot be incremented // more than _currentIndex times unchecked { return _currentIndex - _burnCounter; } } /** * @dev See {IERC721Enumerable-tokenByIndex}. * This read function is O(totalSupply). If calling from a separate contract, be sure to test gas first. * It may also degrade with extremely large collection sizes (e.g >> 10000), test for your use case. */ function tokenByIndex(uint256 index) public view override returns (uint256) { uint256 numMintedSoFar = _currentIndex; uint256 tokenIdsIdx; // Counter overflow is impossible as the loop breaks when // uint256 i is equal to another uint256 numMintedSoFar. unchecked { for (uint256 i; i < numMintedSoFar; i++) { TokenOwnership memory ownership = _ownerships[i]; if (!ownership.burned) { if (tokenIdsIdx == index) { return i; } tokenIdsIdx++; } } } revert TokenIndexOutOfBounds(); } /** * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}. * This read function is O(totalSupply). If calling from a separate contract, be sure to test gas first. * It may also degrade with extremely large collection sizes (e.g >> 10000), test for your use case. */ function tokenOfOwnerByIndex(address owner, uint256 index) public view override returns (uint256) { if (index >= balanceOf(owner)) revert OwnerIndexOutOfBounds(); uint256 numMintedSoFar = _currentIndex; uint256 tokenIdsIdx; address currOwnershipAddr; // Counter overflow is impossible as the loop breaks when // uint256 i is equal to another uint256 numMintedSoFar. unchecked { for (uint256 i; i < numMintedSoFar; i++) { TokenOwnership memory ownership = _ownerships[i]; if (ownership.burned) { continue; } if (ownership.addr != address(0)) { currOwnershipAddr = ownership.addr; } if (currOwnershipAddr == owner) { if (tokenIdsIdx == index) { return i; } tokenIdsIdx++; } } } // Execution should never reach this point. revert(); } /** * @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 || interfaceId == type(IERC721Enumerable).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view override returns (uint256) { if (owner == address(0)) revert BalanceQueryForZeroAddress(); return uint256(_addressData[owner].balance); } function _numberMinted(address owner) internal view returns (uint256) { if (owner == address(0)) revert MintedQueryForZeroAddress(); return uint256(_addressData[owner].numberMinted); } function _numberBurned(address owner) internal view returns (uint256) { if (owner == address(0)) revert BurnedQueryForZeroAddress(); return uint256(_addressData[owner].numberBurned); } /** * Gas spent here starts off proportional to the maximum mint batch size. * It gradually moves to O(1) as tokens get transferred around in the collection over time. */ function ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) { uint256 curr = tokenId; unchecked { if (curr < _currentIndex) { TokenOwnership memory ownership = _ownerships[curr]; if (!ownership.burned) { if (ownership.addr != address(0)) { return ownership; } // Invariant: // There will always be an ownership that has an address and is not burned // before an ownership that does not have an address and is not burned. // Hence, curr will not underflow. while (true) { curr--; ownership = _ownerships[curr]; if (ownership.addr != address(0)) { return ownership; } } } } } revert OwnerQueryForNonexistentToken(); } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view override returns (address) { return ownershipOf(tokenId).addr; } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { if (!_exists(tokenId)) revert URIQueryForNonexistentToken(); string memory baseURI = _baseURI(); return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ''; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overriden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ''; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public virtual override { address owner = ERC721A.ownerOf(tokenId); if (to == owner) revert ApprovalToCurrentOwner(); if (_msgSender() != owner && !isApprovedForAll(owner, _msgSender())) { revert ApprovalCallerNotOwnerNorApproved(); } _approve(to, tokenId, owner); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view override returns (address) { if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken(); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { if (operator == _msgSender()) revert ApproveToCaller(); _operatorApprovals[_msgSender()][operator] = approved; emit ApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ''); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public virtual override { _transfer(from, to, tokenId); if (!_checkOnERC721Received(from, to, tokenId, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), */ function _exists(uint256 tokenId) internal view returns (bool) { return tokenId < _currentIndex && !_ownerships[tokenId].burned; } function _safeMint(address to, uint256 quantity) internal { _safeMint(to, quantity, ''); } /** * @dev Safely mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called for each safe transfer. * - `quantity` must be greater than 0. * * Emits a {Transfer} event. */ function _safeMint( address to, uint256 quantity, bytes memory _data ) internal { _mint(to, quantity, _data, true); } /** * @dev Mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `quantity` must be greater than 0. * * Emits a {Transfer} event. */ function _mint( address to, uint256 quantity, bytes memory _data, bool safe ) internal { uint256 startTokenId = _currentIndex; if (to == address(0)) revert MintToZeroAddress(); if (quantity == 0) revert MintZeroQuantity(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are incredibly unrealistic. // balance or numberMinted overflow if current value of either + quantity > 3.4e38 (2**128) - 1 // updatedIndex overflows if _currentIndex + quantity > 3.4e38 (2**128) - 1 unchecked { _addressData[to].balance += uint64(quantity); _addressData[to].numberMinted += uint64(quantity); _ownerships[startTokenId].addr = to; _ownerships[startTokenId].startTimestamp = uint64(block.timestamp); uint256 updatedIndex = startTokenId; for (uint256 i; i < quantity; i++) { emit Transfer(address(0), to, updatedIndex); if (safe && !_checkOnERC721Received(address(0), to, updatedIndex, _data)) { revert TransferToNonERC721ReceiverImplementer(); } updatedIndex++; } _currentIndex = uint128(updatedIndex); } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Transfers `tokenId` from `from` to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) private { TokenOwnership memory prevOwnership = ownershipOf(tokenId); bool isApprovedOrOwner = (_msgSender() == prevOwnership.addr || isApprovedForAll(prevOwnership.addr, _msgSender()) || getApproved(tokenId) == _msgSender()); if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved(); if (prevOwnership.addr != from) revert TransferFromIncorrectOwner(); if (to == address(0)) revert TransferToZeroAddress(); _beforeTokenTransfers(from, to, tokenId, 1); // Clear approvals from the previous owner _approve(address(0), tokenId, prevOwnership.addr); // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as tokenId would have to be 2**128. unchecked { _addressData[from].balance -= 1; _addressData[to].balance += 1; _ownerships[tokenId].addr = to; _ownerships[tokenId].startTimestamp = uint64(block.timestamp); // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it. // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls. uint256 nextTokenId = tokenId + 1; if (_ownerships[nextTokenId].addr == address(0)) { // This will suffice for checking _exists(nextTokenId), // as a burned slot cannot contain the zero address. if (nextTokenId < _currentIndex) { _ownerships[nextTokenId].addr = prevOwnership.addr; _ownerships[nextTokenId].startTimestamp = prevOwnership.startTimestamp; } } } emit Transfer(from, to, tokenId); _afterTokenTransfers(from, to, tokenId, 1); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId) internal virtual { TokenOwnership memory prevOwnership = ownershipOf(tokenId); _beforeTokenTransfers(prevOwnership.addr, address(0), tokenId, 1); // Clear approvals from the previous owner _approve(address(0), tokenId, prevOwnership.addr); // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as tokenId would have to be 2**128. unchecked { _addressData[prevOwnership.addr].balance -= 1; _addressData[prevOwnership.addr].numberBurned += 1; // Keep track of who burned the token, and the timestamp of burning. _ownerships[tokenId].addr = prevOwnership.addr; _ownerships[tokenId].startTimestamp = uint64(block.timestamp); _ownerships[tokenId].burned = true; // If the ownership slot of tokenId+1 is not explicitly set, that means the burn initiator owns it. // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls. uint256 nextTokenId = tokenId + 1; if (_ownerships[nextTokenId].addr == address(0)) { // This will suffice for checking _exists(nextTokenId), // as a burned slot cannot contain the zero address. if (nextTokenId < _currentIndex) { _ownerships[nextTokenId].addr = prevOwnership.addr; _ownerships[nextTokenId].startTimestamp = prevOwnership.startTimestamp; } } } emit Transfer(prevOwnership.addr, address(0), tokenId); _afterTokenTransfers(prevOwnership.addr, address(0), tokenId, 1); // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times. unchecked { _burnCounter++; } } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve( address to, uint256 tokenId, address owner ) private { _tokenApprovals[tokenId] = to; emit Approval(owner, to, tokenId); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address. * The call is not executed if the target address is not a contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { if (to.isContract()) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) { return retval == IERC721Receiver(to).onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert TransferToNonERC721ReceiverImplementer(); } else { assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting. * And also called before burning one token. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, `tokenId` will be burned by `from`. * - `from` and `to` are never both zero. */ function _beforeTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes * minting. * And also called after one token has been burned. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` has been * transferred to `to`. * - When `from` is zero, `tokenId` has been minted for `to`. * - When `to` is zero, `tokenId` has been burned by `from`. * - `from` and `to` are never both zero. */ function _afterTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} } pragma solidity ^0.8.4; contract FF6000Rocks is ERC721A, Ownable, ERC2981, DefaultOperatorFilterer { using Strings for uint256; string private baseURI; string public notRevealedUri; string public contractURI; bool public public_mint_status = false; bool public free_mint_status = true; uint256 public MAX_SUPPLY = 999; bool public revealed = true; uint256 public publicSaleCost = 0.002 ether; uint256 public max_per_wallet = 999; uint256 public max_free_per_wallet = 1; uint256 public max_per_txn = 10; uint256 public freeMintCount; uint256 public freeMintCountLimit = 999; mapping(address => uint256) public publicMinted; mapping(address => uint256) public freeMinted; constructor(string memory _initBaseURI, string memory _initNotRevealedUri, string memory _contractURI) ERC721A("FF6000Rocks", "FF6RCK") { setBaseURI(_initBaseURI); setNotRevealedURI(_initNotRevealedUri); setRoyaltyInfo(owner(),500); contractURI = _contractURI; _mint(1); } function airdrop(address[] calldata receiver, uint256[] calldata quantity) public payable onlyOwner { require(receiver.length == quantity.length, "Airdrop data does not match"); for(uint256 x = 0; x < receiver.length; x++){ _safeMint(receiver[x], quantity[x]); } } function _mint(uint256 quantity) public payable nonContract { require(totalSupply() + quantity <= MAX_SUPPLY,"No More NFTs to Mint"); if (msg.sender != owner()) { require(public_mint_status, "Public mint status is off"); require(balanceOf(msg.sender) + quantity <= max_per_wallet, "Per Wallet Limit Reached"); require(quantity <= max_per_txn, "Max per txn exceeded"); require(freeMintCount + quantity <= freeMintCountLimit, "Maximum free mint for the contract reached"); uint256 balanceFreeMint = max_free_per_wallet - freeMinted[msg.sender]; require(msg.value >= (publicSaleCost * (quantity - balanceFreeMint)), "Not Enough ETH Sent"); freeMinted[msg.sender] = freeMinted[msg.sender] + balanceFreeMint; freeMintCount = freeMintCount + balanceFreeMint; } _safeMint(msg.sender, quantity); } modifier nonContract() { require(tx.origin == msg.sender, "Contracts not allowed to mint"); _; } function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { if (!_exists(tokenId)) revert URIQueryForNonexistentToken(); if(revealed == false) { return notRevealedUri; } return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, tokenId.toString(),".json")) : ''; } function setApprovalForAll(address operator, bool approved) public override onlyAllowedOperatorApproval(operator) { super.setApprovalForAll(operator, approved); } function approve(address operator, uint256 tokenId) public override onlyAllowedOperatorApproval(operator) { super.approve(operator, tokenId); } function transferFrom(address from, address to, uint256 tokenId) public override onlyAllowedOperator(from) { super.transferFrom(from, to, tokenId); } function safeTransferFrom(address from, address to, uint256 tokenId) public override onlyAllowedOperator(from) { super.safeTransferFrom(from, to, tokenId); } function safeTransferFrom(address from, address to, uint256 tokenId, bytes memory data) public override onlyAllowedOperator(from) { super.safeTransferFrom(from, to, tokenId, data); } function supportsInterface(bytes4 interfaceId) public view virtual override(ERC721A, ERC2981) returns (bool) { // Supports the following `interfaceId`s: // - IERC165: 0x01ffc9a7 // - IERC721: 0x80ac58cd // - IERC721Metadata: 0x5b5e139f // - IERC2981: 0x2a55205a return ERC721A.supportsInterface(interfaceId) || ERC2981.supportsInterface(interfaceId); } function setRoyaltyInfo(address _receiver, uint96 _royaltyFeesInBips) public onlyOwner { _setDefaultRoyalty(_receiver, _royaltyFeesInBips); } //only owner function toggleReveal() external onlyOwner { if(revealed==false){ revealed = true; }else{ revealed = false; } } function toggle_public_mint_status() external onlyOwner { if(public_mint_status==false){ public_mint_status = true; }else{ public_mint_status = false; } } function toggle_free_mint_status() external onlyOwner { if(free_mint_status==false){ free_mint_status = true; }else{ free_mint_status = false; } } function setNotRevealedURI(string memory _notRevealedURI) public onlyOwner { notRevealedUri = _notRevealedURI; } function setContractURI(string memory _contractURI) external onlyOwner { contractURI = _contractURI; } function withdraw() external payable onlyOwner { (bool main, ) = payable(owner()).call{value: address(this).balance}(""); require(main); } function setPublicSaleCost(uint256 _publicSaleCost) external onlyOwner { publicSaleCost = _publicSaleCost; } function setMax_per_wallet(uint256 _max_per_wallet) external onlyOwner { max_per_wallet = _max_per_wallet; } function setMax_free_per_wallet(uint256 _max_free_per_wallet) external onlyOwner { max_free_per_wallet = _max_free_per_wallet; } function setMax_per_txn(uint256 _max_per_txn) external onlyOwner { max_per_txn = _max_per_txn; } function setMAX_SUPPLY(uint256 _MAX_SUPPLY) external onlyOwner { MAX_SUPPLY = _MAX_SUPPLY; } function setfreeMintCountLimit(uint256 _freeMintCountLimit) external onlyOwner { freeMintCountLimit = _freeMintCountLimit; } function setBaseURI(string memory _newBaseURI) public onlyOwner { baseURI = _newBaseURI; } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"string","name":"_initBaseURI","type":"string"},{"internalType":"string","name":"_initNotRevealedUri","type":"string"},{"internalType":"string","name":"_contractURI","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[{"internalType":"address","name":"operator","type":"address"}],"name":"OperatorNotAllowed","type":"error"},{"inputs":[],"name":"OwnerIndexOutOfBounds","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TokenIndexOutOfBounds","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"OPERATOR_FILTER_REGISTRY","outputs":[{"internalType":"contract IOperatorFilterRegistry","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"_mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address[]","name":"receiver","type":"address[]"},{"internalType":"uint256[]","name":"quantity","type":"uint256[]"}],"name":"airdrop","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","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":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"freeMintCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"freeMintCountLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"freeMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"free_mint_status","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":[],"name":"max_free_per_wallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"max_per_txn","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"max_per_wallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"notRevealedUri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"publicMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicSaleCost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"public_mint_status","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"},{"internalType":"uint256","name":"_salePrice","type":"uint256"}],"name":"royaltyInfo","outputs":[{"internalType":"address","name":"","type":"address"},{"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":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_contractURI","type":"string"}],"name":"setContractURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_MAX_SUPPLY","type":"uint256"}],"name":"setMAX_SUPPLY","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_max_free_per_wallet","type":"uint256"}],"name":"setMax_free_per_wallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_max_per_txn","type":"uint256"}],"name":"setMax_per_txn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_max_per_wallet","type":"uint256"}],"name":"setMax_per_wallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_notRevealedURI","type":"string"}],"name":"setNotRevealedURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_publicSaleCost","type":"uint256"}],"name":"setPublicSaleCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_receiver","type":"address"},{"internalType":"uint96","name":"_royaltyFeesInBips","type":"uint96"}],"name":"setRoyaltyInfo","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_freeMintCountLimit","type":"uint256"}],"name":"setfreeMintCountLimit","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":[],"name":"toggleReveal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"toggle_free_mint_status","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"toggle_public_mint_status","outputs":[],"stateMutability":"nonpayable","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":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]
Contract Creation Code
6080604052700100000000000000000000000000000001600055600d805461ffff19166101001790556103e7600e819055600f805460ff1916600190811790915566071afd498d00006010556011829055601255600a6013556015553480156200006857600080fd5b506040516200379b3803806200379b8339810160408190526200008b9162000cfa565b604080518082018252600b81526a464636303030526f636b7360a81b60208083019182528351808501909452600684526546463652434b60d01b908401528151733cc6cdda760b79bafa08df41ecfa224f810dceb693600193929091620000f491859162000b7e565b5080516200010a90600290602084019062000b7e565b5050506200012762000121620002d060201b60201c565b620002d4565b6daaeb6d7670e522a718067333cd4e3b156200026c578015620001ba57604051633e9f1edf60e11b81523060048201526001600160a01b03831660248201526daaeb6d7670e522a718067333cd4e90637d3e3dbe906044015b600060405180830381600087803b1580156200019b57600080fd5b505af1158015620001b0573d6000803e3d6000fd5b505050506200026c565b6001600160a01b038216156200020b5760405163a0af290360e01b81523060048201526001600160a01b03831660248201526daaeb6d7670e522a718067333cd4e9063a0af29039060440162000180565b604051632210724360e11b81523060048201526daaeb6d7670e522a718067333cd4e90634420e48690602401600060405180830381600087803b1580156200025257600080fd5b505af115801562000267573d6000803e3d6000fd5b505050505b506200027a90508362000326565b620002858262000349565b620002a56200029c6007546001600160a01b031690565b6101f462000368565b8051620002ba90600c90602084019062000b7e565b50620002c760016200037e565b50505062000ebd565b3390565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b62000330620006d0565b80516200034590600a90602084019062000b7e565b5050565b62000353620006d0565b80516200034590600b90602084019062000b7e565b62000372620006d0565b6200034582826200072e565b323314620003d35760405162461bcd60e51b815260206004820152601d60248201527f436f6e747261637473206e6f7420616c6c6f77656420746f206d696e7400000060448201526064015b60405180910390fd5b600e5481620003fa6000546001600160801b03600160801b82048116918116919091031690565b62000406919062000da1565b1115620004565760405162461bcd60e51b815260206004820152601460248201527f4e6f204d6f7265204e46547320746f204d696e740000000000000000000000006044820152606401620003ca565b6007546001600160a01b03163314620006c157600d5460ff16620004bd5760405162461bcd60e51b815260206004820152601960248201527f5075626c6963206d696e7420737461747573206973206f6666000000000000006044820152606401620003ca565b60115481620004cc336200082f565b620004d8919062000da1565b1115620005285760405162461bcd60e51b815260206004820152601860248201527f5065722057616c6c6574204c696d6974205265616368656400000000000000006044820152606401620003ca565b6013548111156200057c5760405162461bcd60e51b815260206004820152601460248201527f4d6178207065722074786e2065786365656465640000000000000000000000006044820152606401620003ca565b601554816014546200058f919062000da1565b1115620005f25760405162461bcd60e51b815260206004820152602a60248201527f4d6178696d756d2066726565206d696e7420666f722074686520636f6e74726160448201526918dd081c995858da195960b21b6064820152608401620003ca565b3360009081526017602052604081205460125462000611919062000dbc565b90506200061f818362000dbc565b6010546200062e919062000dd6565b3410156200067f5760405162461bcd60e51b815260206004820152601360248201527f4e6f7420456e6f756768204554482053656e74000000000000000000000000006044820152606401620003ca565b336000908152601760205260409020546200069c90829062000da1565b33600090815260176020526040902055601454620006bc90829062000da1565b601455505b620006cd33826200087e565b50565b6007546001600160a01b031633146200072c5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401620003ca565b565b6127106001600160601b03821611156200079e5760405162461bcd60e51b815260206004820152602a60248201527f455243323938313a20726f79616c7479206665652077696c6c206578636565646044820152692073616c65507269636560b01b6064820152608401620003ca565b6001600160a01b038216620007f65760405162461bcd60e51b815260206004820152601960248201527f455243323938313a20696e76616c6964207265636569766572000000000000006044820152606401620003ca565b604080518082019091526001600160a01b039092168083526001600160601b039091166020909201829052600160a01b90910217600855565b60006001600160a01b03821662000859576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600460205260409020546001600160401b031690565b62000345828260405180602001604052806000815250620008a060201b60201c565b620008af8383836001620008b4565b505050565b6000546001600160801b03166001600160a01b038516620008e757604051622e076360e81b815260040160405180910390fd5b83600003620009095760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260046020908152604080832080546001600160801b031981166001600160401b038083168c018116918217680100000000000000006001600160401b031990941690921783900481168c018116909202179091558584526003909252822080546001600160e01b031916909317600160a01b42909216919091021790915581905b8581101562000a205760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4838015620009f45750620009f2600088848862000a56565b155b1562000a13576040516368d2bf6b60e11b815260040160405180910390fd5b6001918201910162000999565b50600080546001600160801b0319166001600160801b039290921691909117815562000a499050565b5050505050565b50505050565b600062000a77846001600160a01b031662000b7860201b6200156b1760201c565b1562000b6c57604051630a85bd0160e11b81526001600160a01b0385169063150b7a029062000ab190339089908890889060040162000df8565b6020604051808303816000875af192505050801562000aef575060408051601f3d908101601f1916820190925262000aec9181019062000e4e565b60015b62000b51573d80801562000b20576040519150601f19603f3d011682016040523d82523d6000602084013e62000b25565b606091505b50805160000362000b49576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905062000b70565b5060015b949350505050565b3b151590565b82805462000b8c9062000e81565b90600052602060002090601f01602090048101928262000bb0576000855562000bfb565b82601f1062000bcb57805160ff191683800117855562000bfb565b8280016001018555821562000bfb579182015b8281111562000bfb57825182559160200191906001019062000bde565b5062000c0992915062000c0d565b5090565b5b8082111562000c09576000815560010162000c0e565b634e487b7160e01b600052604160045260246000fd5b60005b8381101562000c5757818101518382015260200162000c3d565b8381111562000a505750506000910152565b600082601f83011262000c7b57600080fd5b81516001600160401b038082111562000c985762000c9862000c24565b604051601f8301601f19908116603f0116810190828211818310171562000cc35762000cc362000c24565b8160405283815286602085880101111562000cdd57600080fd5b62000cf084602083016020890162000c3a565b9695505050505050565b60008060006060848603121562000d1057600080fd5b83516001600160401b038082111562000d2857600080fd5b62000d368783880162000c69565b9450602086015191508082111562000d4d57600080fd5b62000d5b8783880162000c69565b9350604086015191508082111562000d7257600080fd5b5062000d818682870162000c69565b9150509250925092565b634e487b7160e01b600052601160045260246000fd5b6000821982111562000db75762000db762000d8b565b500190565b60008282101562000dd15762000dd162000d8b565b500390565b600081600019048311821515161562000df35762000df362000d8b565b500290565b600060018060a01b03808716835280861660208401525083604083015260806060830152825180608084015262000e378160a085016020870162000c3a565b601f01601f19169190910160a00195945050505050565b60006020828403121562000e6157600080fd5b81516001600160e01b03198116811462000e7a57600080fd5b9392505050565b600181811c9082168062000e9657607f821691505b60208210810362000eb757634e487b7160e01b600052602260045260246000fd5b50919050565b6128ce8062000ecd6000396000f3fe6080604052600436106102e45760003560e01c80635b8ad42911610190578063aab3e3cf116100dc578063dcc7eb3511610095578063e985e9c51161006f578063e985e9c51461087e578063ec9496ba146108c7578063f2c4ce1e146108e7578063f2fde38b1461090757600080fd5b8063dcc7eb351461083e578063e55f58bb14610853578063e8a3d4851461086957600080fd5b8063aab3e3cf14610793578063ab53fcaa146107b3578063b88d4fde146107c9578063c87b56dd146107e9578063d1e1457714610809578063d685b6451461082857600080fd5b806381c4cede116101495780638dbb7c06116101235780638dbb7c061461071e578063938e3d7b1461073e57806395d89b411461075e578063a22cb4651461077357600080fd5b806381c4cede146106c6578063835d997e146106e05780638da5cb5b1461070057600080fd5b80635b8ad429146106295780636352211e1461063e578063672434821461065e5780636d1b9ebc1461067157806370a0823114610691578063715018a6146106b157600080fd5b80632c5261961161024f5780633ccfd60b11610208578063453afb0f116101e2578063453afb0f146105b95780634f6ccce7146105cf57806351830227146105ef57806355f804b31461060957600080fd5b80633ccfd60b1461056f57806341f434341461057757806342842e0e1461059957600080fd5b80632c526196146104ce5780632f745c59146104e157806332a825ce1461050157806332cb6b0c14610517578063389fcf061461052d57806339eea0131461055a57600080fd5b8063095ea7b3116102a1578063095ea7b3146103cf5780631015805b146103ef57806311f1eaee1461042a57806318160ddd1461044057806323b872dd1461046f5780632a55205a1461048f57600080fd5b806301ffc9a7146102e957806302fa7c471461031e578063040d19241461034057806306fdde0314610360578063081812fc14610382578063081c8c44146103ba575b600080fd5b3480156102f557600080fd5b50610309610304366004612215565b610927565b60405190151581526020015b60405180910390f35b34801561032a57600080fd5b5061033e610339366004612255565b610947565b005b34801561034c57600080fd5b5061033e61035b366004612298565b61095d565b34801561036c57600080fd5b5061037561096a565b6040516103159190612309565b34801561038e57600080fd5b506103a261039d366004612298565b6109fc565b6040516001600160a01b039091168152602001610315565b3480156103c657600080fd5b50610375610a40565b3480156103db57600080fd5b5061033e6103ea36600461231c565b610ace565b3480156103fb57600080fd5b5061041c61040a366004612346565b60166020526000908152604090205481565b604051908152602001610315565b34801561043657600080fd5b5061041c60155481565b34801561044c57600080fd5b5061041c6000546001600160801b03600160801b82048116918116919091031690565b34801561047b57600080fd5b5061033e61048a366004612361565b610ae7565b34801561049b57600080fd5b506104af6104aa36600461239d565b610b12565b604080516001600160a01b039093168352602083019190915201610315565b61033e6104dc366004612298565b610bc0565b3480156104ed57600080fd5b5061041c6104fc36600461231c565b610ed3565b34801561050d57600080fd5b5061041c60125481565b34801561052357600080fd5b5061041c600e5481565b34801561053957600080fd5b5061041c610548366004612346565b60176020526000908152604090205481565b34801561056657600080fd5b5061033e610fcd565b61033e611008565b34801561058357600080fd5b506103a26daaeb6d7670e522a718067333cd4e81565b3480156105a557600080fd5b5061033e6105b4366004612361565b611081565b3480156105c557600080fd5b5061041c60105481565b3480156105db57600080fd5b5061041c6105ea366004612298565b6110a6565b3480156105fb57600080fd5b50600f546103099060ff1681565b34801561061557600080fd5b5061033e61062436600461244a565b61114f565b34801561063557600080fd5b5061033e61116a565b34801561064a57600080fd5b506103a2610659366004612298565b61119c565b61033e61066c3660046124d6565b6111ae565b34801561067d57600080fd5b5061033e61068c366004612298565b611271565b34801561069d57600080fd5b5061041c6106ac366004612346565b61127e565b3480156106bd57600080fd5b5061033e6112cc565b3480156106d257600080fd5b50600d546103099060ff1681565b3480156106ec57600080fd5b5061033e6106fb366004612298565b6112de565b34801561070c57600080fd5b506007546001600160a01b03166103a2565b34801561072a57600080fd5b5061033e610739366004612298565b6112eb565b34801561074a57600080fd5b5061033e61075936600461244a565b6112f8565b34801561076a57600080fd5b50610375611313565b34801561077f57600080fd5b5061033e61078e36600461254f565b611322565b34801561079f57600080fd5b5061033e6107ae366004612298565b611336565b3480156107bf57600080fd5b5061041c60115481565b3480156107d557600080fd5b5061033e6107e436600461257b565b611343565b3480156107f557600080fd5b50610375610804366004612298565b611369565b34801561081557600080fd5b50600d5461030990610100900460ff1681565b34801561083457600080fd5b5061041c60135481565b34801561084a57600080fd5b5061033e61148e565b34801561085f57600080fd5b5061041c60145481565b34801561087557600080fd5b506103756114c0565b34801561088a57600080fd5b506103096108993660046125f6565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b3480156108d357600080fd5b5061033e6108e2366004612298565b6114cd565b3480156108f357600080fd5b5061033e61090236600461244a565b6114da565b34801561091357600080fd5b5061033e610922366004612346565b6114f5565b600061093282611571565b806109415750610941826115dc565b92915050565b61094f611601565b610959828261165b565b5050565b610965611601565b601255565b60606001805461097990612629565b80601f01602080910402602001604051908101604052809291908181526020018280546109a590612629565b80156109f25780601f106109c7576101008083540402835291602001916109f2565b820191906000526020600020905b8154815290600101906020018083116109d557829003601f168201915b5050505050905090565b6000610a0782611758565b610a24576040516333d1c03960e21b815260040160405180910390fd5b506000908152600560205260409020546001600160a01b031690565b600b8054610a4d90612629565b80601f0160208091040260200160405190810160405280929190818152602001828054610a7990612629565b8015610ac65780601f10610a9b57610100808354040283529160200191610ac6565b820191906000526020600020905b815481529060010190602001808311610aa957829003601f168201915b505050505081565b81610ad88161178c565b610ae28383611845565b505050565b826001600160a01b0381163314610b0157610b013361178c565b610b0c8484846118cd565b50505050565b60008281526009602090815260408083208151808301909252546001600160a01b038116808352600160a01b9091046001600160601b0316928201929092528291610b875750604080518082019091526008546001600160a01b0381168252600160a01b90046001600160601b031660208201525b602081015160009061271090610ba6906001600160601b031687612679565b610bb091906126ae565b91519350909150505b9250929050565b323314610c145760405162461bcd60e51b815260206004820152601d60248201527f436f6e747261637473206e6f7420616c6c6f77656420746f206d696e7400000060448201526064015b60405180910390fd5b600e5481610c3a6000546001600160801b03600160801b82048116918116919091031690565b610c4491906126c2565b1115610c895760405162461bcd60e51b8152602060048201526014602482015273139bc8135bdc99481391951cc81d1bc8135a5b9d60621b6044820152606401610c0b565b6007546001600160a01b03163314610ec657600d5460ff16610ced5760405162461bcd60e51b815260206004820152601960248201527f5075626c6963206d696e7420737461747573206973206f6666000000000000006044820152606401610c0b565b60115481610cfa3361127e565b610d0491906126c2565b1115610d525760405162461bcd60e51b815260206004820152601860248201527f5065722057616c6c6574204c696d6974205265616368656400000000000000006044820152606401610c0b565b601354811115610d9b5760405162461bcd60e51b815260206004820152601460248201527313585e081c195c881d1e1b88195e18d95959195960621b6044820152606401610c0b565b60155481601454610dac91906126c2565b1115610e0d5760405162461bcd60e51b815260206004820152602a60248201527f4d6178696d756d2066726565206d696e7420666f722074686520636f6e74726160448201526918dd081c995858da195960b21b6064820152608401610c0b565b33600090815260176020526040812054601254610e2a91906126da565b9050610e3681836126da565b601054610e439190612679565b341015610e885760405162461bcd60e51b8152602060048201526013602482015272139bdd08115b9bdd59da081155120814d95b9d606a1b6044820152606401610c0b565b33600090815260176020526040902054610ea39082906126c2565b33600090815260176020526040902055601454610ec19082906126c2565b601455505b610ed033826118d8565b50565b6000610ede8361127e565b8210610efd576040516306ed618760e11b815260040160405180910390fd5b600080546001600160801b03169080805b83811015610fc757600081815260036020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff161580159282019290925290610f755750610fbf565b80516001600160a01b031615610f8a57805192505b876001600160a01b0316836001600160a01b031603610fbd57868403610fb65750935061094192505050565b6001909301925b505b600101610f0e565b50600080fd5b610fd5611601565b600d54610100900460ff161515600003610ffa57600d805461ff001916610100179055565b600d805461ff00191690555b565b611010611601565b60006110246007546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d806000811461106e576040519150601f19603f3d011682016040523d82523d6000602084013e611073565b606091505b5050905080610ed057600080fd5b826001600160a01b038116331461109b5761109b3361178c565b610b0c8484846118f2565b600080546001600160801b031681805b8281101561113557600081815260036020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff1615159181018290529061112c578583036111255750949350505050565b6001909201915b506001016110b6565b506040516329c8c00760e21b815260040160405180910390fd5b611157611601565b805161095990600a906020840190612166565b611172611601565b600f5460ff16151560000361119057600f805460ff19166001179055565b600f805460ff19169055565b60006111a78261190d565b5192915050565b6111b6611601565b8281146112055760405162461bcd60e51b815260206004820152601b60248201527f41697264726f70206461746120646f6573206e6f74206d6174636800000000006044820152606401610c0b565b60005b8381101561126a57611258858583818110611225576112256126f1565b905060200201602081019061123a9190612346565b84848481811061124c5761124c6126f1565b905060200201356118d8565b8061126281612707565b915050611208565b5050505050565b611279611601565b601555565b60006001600160a01b0382166112a7576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600460205260409020546001600160401b031690565b6112d4611601565b6110066000611a2f565b6112e6611601565b601155565b6112f3611601565b601055565b611300611601565b805161095990600c906020840190612166565b60606002805461097990612629565b8161132c8161178c565b610ae28383611a81565b61133e611601565b601355565b836001600160a01b038116331461135d5761135d3361178c565b61126a85858585611b16565b606061137482611758565b61139157604051630a14c4b560e41b815260040160405180910390fd5b600f5460ff16151560000361143257600b80546113ad90612629565b80601f01602080910402602001604051908101604052809291908181526020018280546113d990612629565b80156114265780601f106113fb57610100808354040283529160200191611426565b820191906000526020600020905b81548152906001019060200180831161140957829003601f168201915b50505050509050919050565b600a805461143f90612629565b905060000361145d5760405180602001604052806000815250610941565b600a61146883611b4a565b60405160200161147992919061273c565b60405160208183030381529060405292915050565b611496611601565b600d5460ff1615156000036114b457600d805460ff19166001179055565b600d805460ff19169055565b600c8054610a4d90612629565b6114d5611601565b600e55565b6114e2611601565b805161095990600b906020840190612166565b6114fd611601565b6001600160a01b0381166115625760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610c0b565b610ed081611a2f565b3b151590565b60006001600160e01b031982166380ac58cd60e01b14806115a257506001600160e01b03198216635b5e139f60e01b145b806115bd57506001600160e01b0319821663780e9d6360e01b145b8061094157506301ffc9a760e01b6001600160e01b0319831614610941565b60006001600160e01b0319821663152a902d60e11b1480610941575061094182611571565b6007546001600160a01b031633146110065760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610c0b565b6127106001600160601b03821611156116c95760405162461bcd60e51b815260206004820152602a60248201527f455243323938313a20726f79616c7479206665652077696c6c206578636565646044820152692073616c65507269636560b01b6064820152608401610c0b565b6001600160a01b03821661171f5760405162461bcd60e51b815260206004820152601960248201527f455243323938313a20696e76616c6964207265636569766572000000000000006044820152606401610c0b565b604080518082019091526001600160a01b039092168083526001600160601b039091166020909201829052600160a01b90910217600855565b600080546001600160801b031682108015610941575050600090815260036020526040902054600160e01b900460ff161590565b6daaeb6d7670e522a718067333cd4e3b15610ed057604051633185c44d60e21b81523060048201526001600160a01b03821660248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa1580156117f9573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061181d91906127f6565b610ed057604051633b79c77360e21b81526001600160a01b0382166004820152602401610c0b565b60006118508261119c565b9050806001600160a01b0316836001600160a01b0316036118845760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b038216148015906118a457506118a28133610899565b155b156118c2576040516367d9dca160e11b815260040160405180910390fd5b610ae2838383611c55565b610ae2838383611cb1565b610959828260405180602001604052806000815250611ecb565b610ae283838360405180602001604052806000815250611343565b60408051606081018252600080825260208201819052918101829052905482906001600160801b0316811015611a1657600081815260036020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff16151591810182905290611a145780516001600160a01b0316156119ab579392505050565b5060001901600081815260036020908152604091829020825160608101845290546001600160a01b038116808352600160a01b82046001600160401b031693830193909352600160e01b900460ff1615159281019290925215611a0f579392505050565b6119ab565b505b604051636f96cda160e11b815260040160405180910390fd5b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b336001600160a01b03831603611aaa5760405163b06307db60e01b815260040160405180910390fd5b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b611b21848484611cb1565b611b2d84848484611ed8565b610b0c576040516368d2bf6b60e11b815260040160405180910390fd5b606081600003611b715750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611b9b5780611b8581612707565b9150611b949050600a836126ae565b9150611b75565b6000816001600160401b03811115611bb557611bb56123bf565b6040519080825280601f01601f191660200182016040528015611bdf576020820181803683370190505b508593509050815b8315611c4c57611bf8600a85612813565b611c039060306126c2565b60f81b82611c1083612827565b92508281518110611c2357611c236126f1565b60200101906001600160f81b031916908160001a905350611c45600a856126ae565b9350611be7565b50949350505050565b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000611cbc8261190d565b80519091506000906001600160a01b0316336001600160a01b03161480611cea57508151611cea9033610899565b80611d05575033611cfa846109fc565b6001600160a01b0316145b905080611d2557604051632ce44b5f60e11b815260040160405180910390fd5b846001600160a01b031682600001516001600160a01b031614611d5a5760405162a1148160e81b815260040160405180910390fd5b6001600160a01b038416611d8157604051633a954ecd60e21b815260040160405180910390fd5b611d916000848460000151611c55565b6001600160a01b038581166000908152600460209081526040808320805467ffffffffffffffff198082166001600160401b0392831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600390945282852080546001600160e01b031916909417600160a01b429092169190910217909255908601808352912054909116611e84576000546001600160801b0316811015611e8457825160008281526003602090815260409091208054918601516001600160401b0316600160a01b026001600160e01b03199092166001600160a01b03909316929092171790555b5082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461126a565b610ae28383836001611fdb565b60006001600160a01b0384163b15611fcf57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611f1c90339089908890889060040161283e565b6020604051808303816000875af1925050508015611f57575060408051601f3d908101601f19168201909252611f549181019061287b565b60015b611fb5573d808015611f85576040519150601f19603f3d011682016040523d82523d6000602084013e611f8a565b606091505b508051600003611fad576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611fd3565b5060015b949350505050565b6000546001600160801b03166001600160a01b03851661200d57604051622e076360e81b815260040160405180910390fd5b8360000361202e5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260046020908152604080832080546001600160801b031981166001600160401b038083168c0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168c018116909202179091558584526003909252822080546001600160e01b031916909317600160a01b42909216919091021790915581905b858110156121405760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a483801561211657506121146000888488611ed8565b155b15612134576040516368d2bf6b60e11b815260040160405180910390fd5b600191820191016120bf565b50600080546001600160801b0319166001600160801b039290921691909117905561126a565b82805461217290612629565b90600052602060002090601f01602090048101928261219457600085556121da565b82601f106121ad57805160ff19168380011785556121da565b828001600101855582156121da579182015b828111156121da5782518255916020019190600101906121bf565b506121e69291506121ea565b5090565b5b808211156121e657600081556001016121eb565b6001600160e01b031981168114610ed057600080fd5b60006020828403121561222757600080fd5b8135612232816121ff565b9392505050565b80356001600160a01b038116811461225057600080fd5b919050565b6000806040838503121561226857600080fd5b61227183612239565b915060208301356001600160601b038116811461228d57600080fd5b809150509250929050565b6000602082840312156122aa57600080fd5b5035919050565b60005b838110156122cc5781810151838201526020016122b4565b83811115610b0c5750506000910152565b600081518084526122f58160208601602086016122b1565b601f01601f19169290920160200192915050565b60208152600061223260208301846122dd565b6000806040838503121561232f57600080fd5b61233883612239565b946020939093013593505050565b60006020828403121561235857600080fd5b61223282612239565b60008060006060848603121561237657600080fd5b61237f84612239565b925061238d60208501612239565b9150604084013590509250925092565b600080604083850312156123b057600080fd5b50508035926020909101359150565b634e487b7160e01b600052604160045260246000fd5b60006001600160401b03808411156123ef576123ef6123bf565b604051601f8501601f19908116603f01168101908282118183101715612417576124176123bf565b8160405280935085815286868601111561243057600080fd5b858560208301376000602087830101525050509392505050565b60006020828403121561245c57600080fd5b81356001600160401b0381111561247257600080fd5b8201601f8101841361248357600080fd5b611fd3848235602084016123d5565b60008083601f8401126124a457600080fd5b5081356001600160401b038111156124bb57600080fd5b6020830191508360208260051b8501011115610bb957600080fd5b600080600080604085870312156124ec57600080fd5b84356001600160401b038082111561250357600080fd5b61250f88838901612492565b9096509450602087013591508082111561252857600080fd5b5061253587828801612492565b95989497509550505050565b8015158114610ed057600080fd5b6000806040838503121561256257600080fd5b61256b83612239565b9150602083013561228d81612541565b6000806000806080858703121561259157600080fd5b61259a85612239565b93506125a860208601612239565b92506040850135915060608501356001600160401b038111156125ca57600080fd5b8501601f810187136125db57600080fd5b6125ea878235602084016123d5565b91505092959194509250565b6000806040838503121561260957600080fd5b61261283612239565b915061262060208401612239565b90509250929050565b600181811c9082168061263d57607f821691505b60208210810361265d57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b600081600019048311821515161561269357612693612663565b500290565b634e487b7160e01b600052601260045260246000fd5b6000826126bd576126bd612698565b500490565b600082198211156126d5576126d5612663565b500190565b6000828210156126ec576126ec612663565b500390565b634e487b7160e01b600052603260045260246000fd5b60006001820161271957612719612663565b5060010190565b600081516127328185602086016122b1565b9290920192915050565b600080845481600182811c91508083168061275857607f831692505b6020808410820361277757634e487b7160e01b86526022600452602486fd5b81801561278b576001811461279c576127c9565b60ff198616895284890196506127c9565b60008b81526020902060005b868110156127c15781548b8201529085019083016127a8565b505084890196505b5050505050506127ed6127dc8286612720565b64173539b7b760d91b815260050190565b95945050505050565b60006020828403121561280857600080fd5b815161223281612541565b60008261282257612822612698565b500690565b60008161283657612836612663565b506000190190565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612871908301846122dd565b9695505050505050565b60006020828403121561288d57600080fd5b8151612232816121ff56fea26469706673582212200727f46bd1bc8d64cd863b745c6899a9445e6d1caad0667f5fa4cedf2fc0e56c64736f6c634300080d0033000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000e000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000042697066733a2f2f626166796265696135716f3333766f75757a36706c786572727569703665377a7132656c786676616a753473676732773278707777376a6d706c7500000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x6080604052600436106102e45760003560e01c80635b8ad42911610190578063aab3e3cf116100dc578063dcc7eb3511610095578063e985e9c51161006f578063e985e9c51461087e578063ec9496ba146108c7578063f2c4ce1e146108e7578063f2fde38b1461090757600080fd5b8063dcc7eb351461083e578063e55f58bb14610853578063e8a3d4851461086957600080fd5b8063aab3e3cf14610793578063ab53fcaa146107b3578063b88d4fde146107c9578063c87b56dd146107e9578063d1e1457714610809578063d685b6451461082857600080fd5b806381c4cede116101495780638dbb7c06116101235780638dbb7c061461071e578063938e3d7b1461073e57806395d89b411461075e578063a22cb4651461077357600080fd5b806381c4cede146106c6578063835d997e146106e05780638da5cb5b1461070057600080fd5b80635b8ad429146106295780636352211e1461063e578063672434821461065e5780636d1b9ebc1461067157806370a0823114610691578063715018a6146106b157600080fd5b80632c5261961161024f5780633ccfd60b11610208578063453afb0f116101e2578063453afb0f146105b95780634f6ccce7146105cf57806351830227146105ef57806355f804b31461060957600080fd5b80633ccfd60b1461056f57806341f434341461057757806342842e0e1461059957600080fd5b80632c526196146104ce5780632f745c59146104e157806332a825ce1461050157806332cb6b0c14610517578063389fcf061461052d57806339eea0131461055a57600080fd5b8063095ea7b3116102a1578063095ea7b3146103cf5780631015805b146103ef57806311f1eaee1461042a57806318160ddd1461044057806323b872dd1461046f5780632a55205a1461048f57600080fd5b806301ffc9a7146102e957806302fa7c471461031e578063040d19241461034057806306fdde0314610360578063081812fc14610382578063081c8c44146103ba575b600080fd5b3480156102f557600080fd5b50610309610304366004612215565b610927565b60405190151581526020015b60405180910390f35b34801561032a57600080fd5b5061033e610339366004612255565b610947565b005b34801561034c57600080fd5b5061033e61035b366004612298565b61095d565b34801561036c57600080fd5b5061037561096a565b6040516103159190612309565b34801561038e57600080fd5b506103a261039d366004612298565b6109fc565b6040516001600160a01b039091168152602001610315565b3480156103c657600080fd5b50610375610a40565b3480156103db57600080fd5b5061033e6103ea36600461231c565b610ace565b3480156103fb57600080fd5b5061041c61040a366004612346565b60166020526000908152604090205481565b604051908152602001610315565b34801561043657600080fd5b5061041c60155481565b34801561044c57600080fd5b5061041c6000546001600160801b03600160801b82048116918116919091031690565b34801561047b57600080fd5b5061033e61048a366004612361565b610ae7565b34801561049b57600080fd5b506104af6104aa36600461239d565b610b12565b604080516001600160a01b039093168352602083019190915201610315565b61033e6104dc366004612298565b610bc0565b3480156104ed57600080fd5b5061041c6104fc36600461231c565b610ed3565b34801561050d57600080fd5b5061041c60125481565b34801561052357600080fd5b5061041c600e5481565b34801561053957600080fd5b5061041c610548366004612346565b60176020526000908152604090205481565b34801561056657600080fd5b5061033e610fcd565b61033e611008565b34801561058357600080fd5b506103a26daaeb6d7670e522a718067333cd4e81565b3480156105a557600080fd5b5061033e6105b4366004612361565b611081565b3480156105c557600080fd5b5061041c60105481565b3480156105db57600080fd5b5061041c6105ea366004612298565b6110a6565b3480156105fb57600080fd5b50600f546103099060ff1681565b34801561061557600080fd5b5061033e61062436600461244a565b61114f565b34801561063557600080fd5b5061033e61116a565b34801561064a57600080fd5b506103a2610659366004612298565b61119c565b61033e61066c3660046124d6565b6111ae565b34801561067d57600080fd5b5061033e61068c366004612298565b611271565b34801561069d57600080fd5b5061041c6106ac366004612346565b61127e565b3480156106bd57600080fd5b5061033e6112cc565b3480156106d257600080fd5b50600d546103099060ff1681565b3480156106ec57600080fd5b5061033e6106fb366004612298565b6112de565b34801561070c57600080fd5b506007546001600160a01b03166103a2565b34801561072a57600080fd5b5061033e610739366004612298565b6112eb565b34801561074a57600080fd5b5061033e61075936600461244a565b6112f8565b34801561076a57600080fd5b50610375611313565b34801561077f57600080fd5b5061033e61078e36600461254f565b611322565b34801561079f57600080fd5b5061033e6107ae366004612298565b611336565b3480156107bf57600080fd5b5061041c60115481565b3480156107d557600080fd5b5061033e6107e436600461257b565b611343565b3480156107f557600080fd5b50610375610804366004612298565b611369565b34801561081557600080fd5b50600d5461030990610100900460ff1681565b34801561083457600080fd5b5061041c60135481565b34801561084a57600080fd5b5061033e61148e565b34801561085f57600080fd5b5061041c60145481565b34801561087557600080fd5b506103756114c0565b34801561088a57600080fd5b506103096108993660046125f6565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b3480156108d357600080fd5b5061033e6108e2366004612298565b6114cd565b3480156108f357600080fd5b5061033e61090236600461244a565b6114da565b34801561091357600080fd5b5061033e610922366004612346565b6114f5565b600061093282611571565b806109415750610941826115dc565b92915050565b61094f611601565b610959828261165b565b5050565b610965611601565b601255565b60606001805461097990612629565b80601f01602080910402602001604051908101604052809291908181526020018280546109a590612629565b80156109f25780601f106109c7576101008083540402835291602001916109f2565b820191906000526020600020905b8154815290600101906020018083116109d557829003601f168201915b5050505050905090565b6000610a0782611758565b610a24576040516333d1c03960e21b815260040160405180910390fd5b506000908152600560205260409020546001600160a01b031690565b600b8054610a4d90612629565b80601f0160208091040260200160405190810160405280929190818152602001828054610a7990612629565b8015610ac65780601f10610a9b57610100808354040283529160200191610ac6565b820191906000526020600020905b815481529060010190602001808311610aa957829003601f168201915b505050505081565b81610ad88161178c565b610ae28383611845565b505050565b826001600160a01b0381163314610b0157610b013361178c565b610b0c8484846118cd565b50505050565b60008281526009602090815260408083208151808301909252546001600160a01b038116808352600160a01b9091046001600160601b0316928201929092528291610b875750604080518082019091526008546001600160a01b0381168252600160a01b90046001600160601b031660208201525b602081015160009061271090610ba6906001600160601b031687612679565b610bb091906126ae565b91519350909150505b9250929050565b323314610c145760405162461bcd60e51b815260206004820152601d60248201527f436f6e747261637473206e6f7420616c6c6f77656420746f206d696e7400000060448201526064015b60405180910390fd5b600e5481610c3a6000546001600160801b03600160801b82048116918116919091031690565b610c4491906126c2565b1115610c895760405162461bcd60e51b8152602060048201526014602482015273139bc8135bdc99481391951cc81d1bc8135a5b9d60621b6044820152606401610c0b565b6007546001600160a01b03163314610ec657600d5460ff16610ced5760405162461bcd60e51b815260206004820152601960248201527f5075626c6963206d696e7420737461747573206973206f6666000000000000006044820152606401610c0b565b60115481610cfa3361127e565b610d0491906126c2565b1115610d525760405162461bcd60e51b815260206004820152601860248201527f5065722057616c6c6574204c696d6974205265616368656400000000000000006044820152606401610c0b565b601354811115610d9b5760405162461bcd60e51b815260206004820152601460248201527313585e081c195c881d1e1b88195e18d95959195960621b6044820152606401610c0b565b60155481601454610dac91906126c2565b1115610e0d5760405162461bcd60e51b815260206004820152602a60248201527f4d6178696d756d2066726565206d696e7420666f722074686520636f6e74726160448201526918dd081c995858da195960b21b6064820152608401610c0b565b33600090815260176020526040812054601254610e2a91906126da565b9050610e3681836126da565b601054610e439190612679565b341015610e885760405162461bcd60e51b8152602060048201526013602482015272139bdd08115b9bdd59da081155120814d95b9d606a1b6044820152606401610c0b565b33600090815260176020526040902054610ea39082906126c2565b33600090815260176020526040902055601454610ec19082906126c2565b601455505b610ed033826118d8565b50565b6000610ede8361127e565b8210610efd576040516306ed618760e11b815260040160405180910390fd5b600080546001600160801b03169080805b83811015610fc757600081815260036020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff161580159282019290925290610f755750610fbf565b80516001600160a01b031615610f8a57805192505b876001600160a01b0316836001600160a01b031603610fbd57868403610fb65750935061094192505050565b6001909301925b505b600101610f0e565b50600080fd5b610fd5611601565b600d54610100900460ff161515600003610ffa57600d805461ff001916610100179055565b600d805461ff00191690555b565b611010611601565b60006110246007546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d806000811461106e576040519150601f19603f3d011682016040523d82523d6000602084013e611073565b606091505b5050905080610ed057600080fd5b826001600160a01b038116331461109b5761109b3361178c565b610b0c8484846118f2565b600080546001600160801b031681805b8281101561113557600081815260036020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff1615159181018290529061112c578583036111255750949350505050565b6001909201915b506001016110b6565b506040516329c8c00760e21b815260040160405180910390fd5b611157611601565b805161095990600a906020840190612166565b611172611601565b600f5460ff16151560000361119057600f805460ff19166001179055565b600f805460ff19169055565b60006111a78261190d565b5192915050565b6111b6611601565b8281146112055760405162461bcd60e51b815260206004820152601b60248201527f41697264726f70206461746120646f6573206e6f74206d6174636800000000006044820152606401610c0b565b60005b8381101561126a57611258858583818110611225576112256126f1565b905060200201602081019061123a9190612346565b84848481811061124c5761124c6126f1565b905060200201356118d8565b8061126281612707565b915050611208565b5050505050565b611279611601565b601555565b60006001600160a01b0382166112a7576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600460205260409020546001600160401b031690565b6112d4611601565b6110066000611a2f565b6112e6611601565b601155565b6112f3611601565b601055565b611300611601565b805161095990600c906020840190612166565b60606002805461097990612629565b8161132c8161178c565b610ae28383611a81565b61133e611601565b601355565b836001600160a01b038116331461135d5761135d3361178c565b61126a85858585611b16565b606061137482611758565b61139157604051630a14c4b560e41b815260040160405180910390fd5b600f5460ff16151560000361143257600b80546113ad90612629565b80601f01602080910402602001604051908101604052809291908181526020018280546113d990612629565b80156114265780601f106113fb57610100808354040283529160200191611426565b820191906000526020600020905b81548152906001019060200180831161140957829003601f168201915b50505050509050919050565b600a805461143f90612629565b905060000361145d5760405180602001604052806000815250610941565b600a61146883611b4a565b60405160200161147992919061273c565b60405160208183030381529060405292915050565b611496611601565b600d5460ff1615156000036114b457600d805460ff19166001179055565b600d805460ff19169055565b600c8054610a4d90612629565b6114d5611601565b600e55565b6114e2611601565b805161095990600b906020840190612166565b6114fd611601565b6001600160a01b0381166115625760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610c0b565b610ed081611a2f565b3b151590565b60006001600160e01b031982166380ac58cd60e01b14806115a257506001600160e01b03198216635b5e139f60e01b145b806115bd57506001600160e01b0319821663780e9d6360e01b145b8061094157506301ffc9a760e01b6001600160e01b0319831614610941565b60006001600160e01b0319821663152a902d60e11b1480610941575061094182611571565b6007546001600160a01b031633146110065760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610c0b565b6127106001600160601b03821611156116c95760405162461bcd60e51b815260206004820152602a60248201527f455243323938313a20726f79616c7479206665652077696c6c206578636565646044820152692073616c65507269636560b01b6064820152608401610c0b565b6001600160a01b03821661171f5760405162461bcd60e51b815260206004820152601960248201527f455243323938313a20696e76616c6964207265636569766572000000000000006044820152606401610c0b565b604080518082019091526001600160a01b039092168083526001600160601b039091166020909201829052600160a01b90910217600855565b600080546001600160801b031682108015610941575050600090815260036020526040902054600160e01b900460ff161590565b6daaeb6d7670e522a718067333cd4e3b15610ed057604051633185c44d60e21b81523060048201526001600160a01b03821660248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa1580156117f9573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061181d91906127f6565b610ed057604051633b79c77360e21b81526001600160a01b0382166004820152602401610c0b565b60006118508261119c565b9050806001600160a01b0316836001600160a01b0316036118845760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b038216148015906118a457506118a28133610899565b155b156118c2576040516367d9dca160e11b815260040160405180910390fd5b610ae2838383611c55565b610ae2838383611cb1565b610959828260405180602001604052806000815250611ecb565b610ae283838360405180602001604052806000815250611343565b60408051606081018252600080825260208201819052918101829052905482906001600160801b0316811015611a1657600081815260036020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff16151591810182905290611a145780516001600160a01b0316156119ab579392505050565b5060001901600081815260036020908152604091829020825160608101845290546001600160a01b038116808352600160a01b82046001600160401b031693830193909352600160e01b900460ff1615159281019290925215611a0f579392505050565b6119ab565b505b604051636f96cda160e11b815260040160405180910390fd5b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b336001600160a01b03831603611aaa5760405163b06307db60e01b815260040160405180910390fd5b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b611b21848484611cb1565b611b2d84848484611ed8565b610b0c576040516368d2bf6b60e11b815260040160405180910390fd5b606081600003611b715750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611b9b5780611b8581612707565b9150611b949050600a836126ae565b9150611b75565b6000816001600160401b03811115611bb557611bb56123bf565b6040519080825280601f01601f191660200182016040528015611bdf576020820181803683370190505b508593509050815b8315611c4c57611bf8600a85612813565b611c039060306126c2565b60f81b82611c1083612827565b92508281518110611c2357611c236126f1565b60200101906001600160f81b031916908160001a905350611c45600a856126ae565b9350611be7565b50949350505050565b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000611cbc8261190d565b80519091506000906001600160a01b0316336001600160a01b03161480611cea57508151611cea9033610899565b80611d05575033611cfa846109fc565b6001600160a01b0316145b905080611d2557604051632ce44b5f60e11b815260040160405180910390fd5b846001600160a01b031682600001516001600160a01b031614611d5a5760405162a1148160e81b815260040160405180910390fd5b6001600160a01b038416611d8157604051633a954ecd60e21b815260040160405180910390fd5b611d916000848460000151611c55565b6001600160a01b038581166000908152600460209081526040808320805467ffffffffffffffff198082166001600160401b0392831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600390945282852080546001600160e01b031916909417600160a01b429092169190910217909255908601808352912054909116611e84576000546001600160801b0316811015611e8457825160008281526003602090815260409091208054918601516001600160401b0316600160a01b026001600160e01b03199092166001600160a01b03909316929092171790555b5082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461126a565b610ae28383836001611fdb565b60006001600160a01b0384163b15611fcf57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611f1c90339089908890889060040161283e565b6020604051808303816000875af1925050508015611f57575060408051601f3d908101601f19168201909252611f549181019061287b565b60015b611fb5573d808015611f85576040519150601f19603f3d011682016040523d82523d6000602084013e611f8a565b606091505b508051600003611fad576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611fd3565b5060015b949350505050565b6000546001600160801b03166001600160a01b03851661200d57604051622e076360e81b815260040160405180910390fd5b8360000361202e5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260046020908152604080832080546001600160801b031981166001600160401b038083168c0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168c018116909202179091558584526003909252822080546001600160e01b031916909317600160a01b42909216919091021790915581905b858110156121405760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a483801561211657506121146000888488611ed8565b155b15612134576040516368d2bf6b60e11b815260040160405180910390fd5b600191820191016120bf565b50600080546001600160801b0319166001600160801b039290921691909117905561126a565b82805461217290612629565b90600052602060002090601f01602090048101928261219457600085556121da565b82601f106121ad57805160ff19168380011785556121da565b828001600101855582156121da579182015b828111156121da5782518255916020019190600101906121bf565b506121e69291506121ea565b5090565b5b808211156121e657600081556001016121eb565b6001600160e01b031981168114610ed057600080fd5b60006020828403121561222757600080fd5b8135612232816121ff565b9392505050565b80356001600160a01b038116811461225057600080fd5b919050565b6000806040838503121561226857600080fd5b61227183612239565b915060208301356001600160601b038116811461228d57600080fd5b809150509250929050565b6000602082840312156122aa57600080fd5b5035919050565b60005b838110156122cc5781810151838201526020016122b4565b83811115610b0c5750506000910152565b600081518084526122f58160208601602086016122b1565b601f01601f19169290920160200192915050565b60208152600061223260208301846122dd565b6000806040838503121561232f57600080fd5b61233883612239565b946020939093013593505050565b60006020828403121561235857600080fd5b61223282612239565b60008060006060848603121561237657600080fd5b61237f84612239565b925061238d60208501612239565b9150604084013590509250925092565b600080604083850312156123b057600080fd5b50508035926020909101359150565b634e487b7160e01b600052604160045260246000fd5b60006001600160401b03808411156123ef576123ef6123bf565b604051601f8501601f19908116603f01168101908282118183101715612417576124176123bf565b8160405280935085815286868601111561243057600080fd5b858560208301376000602087830101525050509392505050565b60006020828403121561245c57600080fd5b81356001600160401b0381111561247257600080fd5b8201601f8101841361248357600080fd5b611fd3848235602084016123d5565b60008083601f8401126124a457600080fd5b5081356001600160401b038111156124bb57600080fd5b6020830191508360208260051b8501011115610bb957600080fd5b600080600080604085870312156124ec57600080fd5b84356001600160401b038082111561250357600080fd5b61250f88838901612492565b9096509450602087013591508082111561252857600080fd5b5061253587828801612492565b95989497509550505050565b8015158114610ed057600080fd5b6000806040838503121561256257600080fd5b61256b83612239565b9150602083013561228d81612541565b6000806000806080858703121561259157600080fd5b61259a85612239565b93506125a860208601612239565b92506040850135915060608501356001600160401b038111156125ca57600080fd5b8501601f810187136125db57600080fd5b6125ea878235602084016123d5565b91505092959194509250565b6000806040838503121561260957600080fd5b61261283612239565b915061262060208401612239565b90509250929050565b600181811c9082168061263d57607f821691505b60208210810361265d57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b600081600019048311821515161561269357612693612663565b500290565b634e487b7160e01b600052601260045260246000fd5b6000826126bd576126bd612698565b500490565b600082198211156126d5576126d5612663565b500190565b6000828210156126ec576126ec612663565b500390565b634e487b7160e01b600052603260045260246000fd5b60006001820161271957612719612663565b5060010190565b600081516127328185602086016122b1565b9290920192915050565b600080845481600182811c91508083168061275857607f831692505b6020808410820361277757634e487b7160e01b86526022600452602486fd5b81801561278b576001811461279c576127c9565b60ff198616895284890196506127c9565b60008b81526020902060005b868110156127c15781548b8201529085019083016127a8565b505084890196505b5050505050506127ed6127dc8286612720565b64173539b7b760d91b815260050190565b95945050505050565b60006020828403121561280857600080fd5b815161223281612541565b60008261282257612822612698565b500690565b60008161283657612836612663565b506000190190565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612871908301846122dd565b9695505050505050565b60006020828403121561288d57600080fd5b8151612232816121ff56fea26469706673582212200727f46bd1bc8d64cd863b745c6899a9445e6d1caad0667f5fa4cedf2fc0e56c64736f6c634300080d0033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000e000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000042697066733a2f2f626166796265696135716f3333766f75757a36706c786572727569703665377a7132656c786676616a753473676732773278707777376a6d706c7500000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : _initBaseURI (string): ipfs://bafybeia5qo33vouuz6plxerruip6e7zq2elxfvaju4sgg2w2xpww7jmplu
Arg [1] : _initNotRevealedUri (string):
Arg [2] : _contractURI (string):
-----Encoded View---------------
9 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000100
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000042
Arg [4] : 697066733a2f2f626166796265696135716f3333766f75757a36706c78657272
Arg [5] : 7569703665377a7132656c786676616a753473676732773278707777376a6d70
Arg [6] : 6c75000000000000000000000000000000000000000000000000000000000000
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [8] : 0000000000000000000000000000000000000000000000000000000000000000
Deployed Bytecode Sourcemap
56355:6519:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;60196:487;;;;;;;;;;-1:-1:-1;60196:487:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;60196:487:0;;;;;;;;60693:155;;;;;;;;;;-1:-1:-1;60693:155:0;;;;;:::i;:::-;;:::i;:::-;;62230:142;;;;;;;;;;-1:-1:-1;62230:142:0;;;;;:::i;:::-;;:::i;42456:100::-;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;43967:204::-;;;;;;;;;;-1:-1:-1;43967:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;2263:32:1;;;2245:51;;2233:2;2218:18;43967:204:0;2099:203:1;56500:28:0;;;;;;;;;;;;;:::i;59444:157::-;;;;;;;;;;-1:-1:-1;59444:157:0;;;;;:::i;:::-;;:::i;57008:47::-;;;;;;;;;;-1:-1:-1;57008:47:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;;2903:25:1;;;2891:2;2876:18;57008:47:0;2757:177:1;56960:39:0;;;;;;;;;;;;;;;;37083:280;;;;;;;;;;;;37136:7;37328:12;-1:-1:-1;;;;;;;;37328:12:0;;;;37312:13;;;:28;;;;37305:35;;37083:280;59609:163;;;;;;;;;;-1:-1:-1;59609:163:0;;;;;:::i;:::-;;:::i;24954:442::-;;;;;;;;;;-1:-1:-1;24954:442:0;;;;;:::i;:::-;;:::i;:::-;;;;-1:-1:-1;;;;;3717:32:1;;;3699:51;;3781:2;3766:18;;3759:34;;;;3672:18;24954:442:0;3525:274:1;57755:989:0;;;;;;:::i;:::-;;:::i;38669:1105::-;;;;;;;;;;-1:-1:-1;38669:1105:0;;;;;:::i;:::-;;:::i;56838:38::-;;;;;;;;;;;;;;;;56658:31;;;;;;;;;;;;;;;;57062:45;;;;;;;;;;-1:-1:-1;57062:45:0;;;;;:::i;:::-;;;;;;;;;;;;;;61316:214;;;;;;;;;;;;;:::i;61805:157::-;;;:::i;2902:143::-;;;;;;;;;;;;3002:42;2902:143;;59780:171;;;;;;;;;;-1:-1:-1;59780:171:0;;;;;:::i;:::-;;:::i;56742:43::-;;;;;;;;;;;;;;;;37656:713;;;;;;;;;;-1:-1:-1;37656:713:0;;;;;:::i;:::-;;:::i;56706:27::-;;;;;;;;;;-1:-1:-1;56706:27:0;;;;;;;;62758:103;;;;;;;;;;-1:-1:-1;62758:103:0;;;;;:::i;:::-;;:::i;60886:179::-;;;;;;;;;;;;;:::i;42265:124::-;;;;;;;;;;-1:-1:-1;42265:124:0;;;;;:::i;:::-;;:::i;57436:311::-;;;;;;:::i;:::-;;:::i;62612:138::-;;;;;;;;;;-1:-1:-1;62612:138:0;;;;;:::i;:::-;;:::i;40282:206::-;;;;;;;;;;-1:-1:-1;40282:206:0;;;;;:::i;:::-;;:::i;10928:103::-;;;;;;;;;;;;;:::i;56569:38::-;;;;;;;;;;-1:-1:-1;56569:38:0;;;;;;;;62100:122;;;;;;;;;;-1:-1:-1;62100:122:0;;;;;:::i;:::-;;:::i;10280:87::-;;;;;;;;;;-1:-1:-1;10353:6:0;;-1:-1:-1;;;;;10353:6:0;10280:87;;61970:122;;;;;;;;;;-1:-1:-1;61970:122:0;;;;;:::i;:::-;;:::i;61678:116::-;;;;;;;;;;-1:-1:-1;61678:116:0;;;;;:::i;:::-;;:::i;42625:104::-;;;;;;;;;;;;;:::i;59260:176::-;;;;;;;;;;-1:-1:-1;59260:176:0;;;;;:::i;:::-;;:::i;62380:110::-;;;;;;;;;;-1:-1:-1;62380:110:0;;;;;:::i;:::-;;:::i;56792:35::-;;;;;;;;;;;;;;;;59959:228;;;;;;;;;;-1:-1:-1;59959:228:0;;;;;:::i;:::-;;:::i;58887:365::-;;;;;;;;;;-1:-1:-1;58887:365:0;;;;;:::i;:::-;;:::i;56614:35::-;;;;;;;;;;-1:-1:-1;56614:35:0;;;;;;;;;;;56887:31;;;;;;;;;;;;;;;;61084:222;;;;;;;;;;;;;:::i;56925:28::-;;;;;;;;;;;;;;;;56535:25;;;;;;;;;;;;;:::i;44601:164::-;;;;;;;;;;-1:-1:-1;44601:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;44722:25:0;;;44698:4;44722:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;44601:164;62498:106;;;;;;;;;;-1:-1:-1;62498:106:0;;;;;:::i;:::-;;:::i;61540:126::-;;;;;;;;;;-1:-1:-1;61540:126:0;;;;;:::i;:::-;;:::i;11186:201::-;;;;;;;;;;-1:-1:-1;11186:201:0;;;;;:::i;:::-;;:::i;60196:487::-;60344:4;60582:38;60608:11;60582:25;:38::i;:::-;:93;;;;60637:38;60663:11;60637:25;:38::i;:::-;60562:113;60196:487;-1:-1:-1;;60196:487:0:o;60693:155::-;10166:13;:11;:13::i;:::-;60791:49:::1;60810:9;60821:18;60791;:49::i;:::-;60693:155:::0;;:::o;62230:142::-;10166:13;:11;:13::i;:::-;62322:19:::1;:42:::0;62230:142::o;42456:100::-;42510:13;42543:5;42536:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42456:100;:::o;43967:204::-;44035:7;44060:16;44068:7;44060;:16::i;:::-;44055:64;;44085:34;;-1:-1:-1;;;44085:34:0;;;;;;;;;;;44055:64;-1:-1:-1;44139:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;44139:24:0;;43967:204::o;56500:28::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;59444:157::-;59540:8;4423:30;4444:8;4423:20;:30::i;:::-;59561:32:::1;59575:8;59585:7;59561:13;:32::i;:::-;59444:157:::0;;;:::o;59609:163::-;59710:4;-1:-1:-1;;;;;4243:18:0;;4251:10;4243:18;4239:83;;4278:32;4299:10;4278:20;:32::i;:::-;59727:37:::1;59746:4;59752:2;59756:7;59727:18;:37::i;:::-;59609:163:::0;;;;:::o;24954:442::-;25051:7;25109:27;;;:17;:27;;;;;;;;25080:56;;;;;;;;;-1:-1:-1;;;;;25080:56:0;;;;;-1:-1:-1;;;25080:56:0;;;-1:-1:-1;;;;;25080:56:0;;;;;;;;25051:7;;25149:92;;-1:-1:-1;25200:29:0;;;;;;;;;25210:19;25200:29;-1:-1:-1;;;;;25200:29:0;;;;-1:-1:-1;;;25200:29:0;;-1:-1:-1;;;;;25200:29:0;;;;;25149:92;25291:23;;;;25253:21;;25762:5;;25278:36;;-1:-1:-1;;;;;25278:36:0;:10;:36;:::i;:::-;25277:58;;;;:::i;:::-;25356:16;;;-1:-1:-1;25253:82:0;;-1:-1:-1;;24954:442:0;;;;;;:::o;57755:989::-;58796:9;58809:10;58796:23;58788:65;;;;-1:-1:-1;;;58788:65:0;;8947:2:1;58788:65:0;;;8929:21:1;8986:2;8966:18;;;8959:30;9025:31;9005:18;;;8998:59;9074:18;;58788:65:0;;;;;;;;;57868:10:::1;;57856:8;57840:13;37136:7:::0;37328:12;-1:-1:-1;;;;;;;;37328:12:0;;;;37312:13;;;:28;;;;37305:35;;37083:280;57840:13:::1;:24;;;;:::i;:::-;:38;;57832:70;;;::::0;-1:-1:-1;;;57832:70:0;;9438:2:1;57832:70:0::1;::::0;::::1;9420:21:1::0;9477:2;9457:18;;;9450:30;-1:-1:-1;;;9496:18:1;;;9489:50;9556:18;;57832:70:0::1;9236:344:1::0;57832:70:0::1;10353:6:::0;;-1:-1:-1;;;;;10353:6:0;57923:10:::1;:21;57919:764;;57971:18;::::0;::::1;;57963:56;;;::::0;-1:-1:-1;;;57963:56:0;;9787:2:1;57963:56:0::1;::::0;::::1;9769:21:1::0;9826:2;9806:18;;;9799:30;9865:27;9845:18;;;9838:55;9910:18;;57963:56:0::1;9585:349:1::0;57963:56:0::1;58079:14;;58067:8;58043:21;58053:10;58043:9;:21::i;:::-;:32;;;;:::i;:::-;:50;;58035:87;;;::::0;-1:-1:-1;;;58035:87:0;;10141:2:1;58035:87:0::1;::::0;::::1;10123:21:1::0;10180:2;10160:18;;;10153:30;10219:26;10199:18;;;10192:54;10263:18;;58035:87:0::1;9939:348:1::0;58035:87:0::1;58167:11;;58155:8;:23;;58147:56;;;::::0;-1:-1:-1;;;58147:56:0;;10494:2:1;58147:56:0::1;::::0;::::1;10476:21:1::0;10533:2;10513:18;;;10506:30;-1:-1:-1;;;10552:18:1;;;10545:50;10612:18;;58147:56:0::1;10292:344:1::0;58147:56:0::1;58254:18;;58242:8;58226:13;;:24;;;;:::i;:::-;:46;;58218:101;;;::::0;-1:-1:-1;;;58218:101:0;;10843:2:1;58218:101:0::1;::::0;::::1;10825:21:1::0;10882:2;10862:18;;;10855:30;10921:34;10901:18;;;10894:62;-1:-1:-1;;;10972:18:1;;;10965:40;11022:19;;58218:101:0::1;10641:406:1::0;58218:101:0::1;58397:10;58338:23;58386:22:::0;;;:10:::1;:22;::::0;;;;;58364:19:::1;::::0;:44:::1;::::0;58386:22;58364:44:::1;:::i;:::-;58338:70:::0;-1:-1:-1;58463:26:0::1;58338:70:::0;58463:8;:26:::1;:::i;:::-;58445:14;;:45;;;;:::i;:::-;58431:9;:60;;58423:92;;;::::0;-1:-1:-1;;;58423:92:0;;11384:2:1;58423:92:0::1;::::0;::::1;11366:21:1::0;11423:2;11403:18;;;11396:30;-1:-1:-1;;;11442:18:1;;;11435:49;11501:18;;58423:92:0::1;11182:343:1::0;58423:92:0::1;58568:10;58557:22;::::0;;;:10:::1;:22;::::0;;;;;:40:::1;::::0;58582:15;;58557:40:::1;:::i;:::-;58543:10;58532:22;::::0;;;:10:::1;:22;::::0;;;;:65;58629:13:::1;::::0;:31:::1;::::0;58645:15;;58629:31:::1;:::i;:::-;58613:13;:47:::0;-1:-1:-1;57919:764:0::1;58695:31;58705:10;58717:8;58695:9;:31::i;:::-;57755:989:::0;:::o;38669:1105::-;38758:7;38791:16;38801:5;38791:9;:16::i;:::-;38782:5;:25;38778:61;;38816:23;;-1:-1:-1;;;38816:23:0;;;;;;;;;;;38778:61;38850:22;38875:13;;-1:-1:-1;;;;;38875:13:0;;38850:22;;39125:557;39145:14;39141:1;:18;39125:557;;;39185:31;39219:14;;;:11;:14;;;;;;;;;39185:48;;;;;;;;;-1:-1:-1;;;;;39185:48:0;;;;-1:-1:-1;;;39185:48:0;;-1:-1:-1;;;;;39185:48:0;;;;;;;;-1:-1:-1;;;39185:48:0;;;;;;;;;;;;;;;;39252:73;;39297:8;;;39252:73;39347:14;;-1:-1:-1;;;;;39347:28:0;;39343:111;;39420:14;;;-1:-1:-1;39343:111:0;39497:5;-1:-1:-1;;;;;39476:26:0;:17;-1:-1:-1;;;;;39476:26:0;;39472:195;;39546:5;39531:11;:20;39527:85;;-1:-1:-1;39587:1:0;-1:-1:-1;39580:8:0;;-1:-1:-1;;;39580:8:0;39527:85;39634:13;;;;;39472:195;39166:516;39125:557;39161:3;;39125:557;;;;39758:8;;;61316:214;10166:13;:11;:13::i;:::-;61394:16:::1;::::0;::::1;::::0;::::1;;;:23;;61412:5;61394:23:::0;61391:132:::1;;61433:16;:23:::0;;-1:-1:-1;;61433:23:0::1;;;::::0;;61316:214::o;61391:132::-:1;61487:16;:24:::0;;-1:-1:-1;;61487:24:0::1;::::0;;61391:132:::1;61316:214::o:0;61805:157::-;10166:13;:11;:13::i;:::-;61864:9:::1;61887:7;10353:6:::0;;-1:-1:-1;;;;;10353:6:0;;10280:87;61887:7:::1;-1:-1:-1::0;;;;;61879:21:0::1;61908;61879:55;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;61863:71;;;61949:4;61941:13;;;::::0;::::1;59780:171:::0;59885:4;-1:-1:-1;;;;;4243:18:0;;4251:10;4243:18;4239:83;;4278:32;4299:10;4278:20;:32::i;:::-;59902:41:::1;59925:4;59931:2;59935:7;59902:22;:41::i;37656:713::-:0;37723:7;37768:13;;-1:-1:-1;;;;;37768:13:0;37723:7;;37982:328;38002:14;37998:1;:18;37982:328;;;38042:31;38076:14;;;:11;:14;;;;;;;;;38042:48;;;;;;;;;-1:-1:-1;;;;;38042:48:0;;;;-1:-1:-1;;;38042:48:0;;-1:-1:-1;;;;;38042:48:0;;;;;;;;-1:-1:-1;;;38042:48:0;;;;;;;;;;;;;;38109:186;;38174:5;38159:11;:20;38155:85;;-1:-1:-1;38215:1:0;37656:713;-1:-1:-1;;;;37656:713:0:o;38155:85::-;38262:13;;;;;38109:186;-1:-1:-1;38018:3:0;;37982:328;;;;38338:23;;-1:-1:-1;;;38338:23:0;;;;;;;;;;;62758:103;10166:13;:11;:13::i;:::-;62833:21;;::::1;::::0;:7:::1;::::0;:21:::1;::::0;::::1;::::0;::::1;:::i;60886:179::-:0;10166:13;:11;:13::i;:::-;60953:8:::1;::::0;::::1;;:15;;:8;:15:::0;60950:108:::1;;60984:8;:15:::0;;-1:-1:-1;;60984:15:0::1;60995:4;60984:15;::::0;;61316:214::o;60950:108::-:1;61030:8;:16:::0;;-1:-1:-1;;61030:16:0::1;::::0;;60886:179::o;42265:124::-;42329:7;42356:20;42368:7;42356:11;:20::i;:::-;:25;;42265:124;-1:-1:-1;;42265:124:0:o;57436:311::-;10166:13;:11;:13::i;:::-;57559:34;;::::1;57551:74;;;::::0;-1:-1:-1;;;57551:74:0;;11942:2:1;57551:74:0::1;::::0;::::1;11924:21:1::0;11981:2;11961:18;;;11954:30;12020:29;12000:18;;;11993:57;12067:18;;57551:74:0::1;11740:351:1::0;57551:74:0::1;57642:9;57638:102;57657:19:::0;;::::1;57638:102;;;57693:35;57703:8;;57712:1;57703:11;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;57716:8;;57725:1;57716:11;;;;;;;:::i;:::-;;;;;;;57693:9;:35::i;:::-;57678:3:::0;::::1;::::0;::::1;:::i;:::-;;;;57638:102;;;;57436:311:::0;;;;:::o;62612:138::-;10166:13;:11;:13::i;:::-;62702:18:::1;:40:::0;62612:138::o;40282:206::-;40346:7;-1:-1:-1;;;;;40370:19:0;;40366:60;;40398:28;;-1:-1:-1;;;40398:28:0;;;;;;;;;;;40366:60;-1:-1:-1;;;;;;40452:19:0;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;40452:27:0;;40282:206::o;10928:103::-;10166:13;:11;:13::i;:::-;10993:30:::1;11020:1;10993:18;:30::i;62100:122::-:0;10166:13;:11;:13::i;:::-;62182:14:::1;:32:::0;62100:122::o;61970:::-;10166:13;:11;:13::i;:::-;62052:14:::1;:32:::0;61970:122::o;61678:116::-;10166:13;:11;:13::i;:::-;61760:26;;::::1;::::0;:11:::1;::::0;:26:::1;::::0;::::1;::::0;::::1;:::i;42625:104::-:0;42681:13;42714:7;42707:14;;;;;:::i;59260:176::-;59364:8;4423:30;4444:8;4423:20;:30::i;:::-;59385:43:::1;59409:8;59419;59385:23;:43::i;62380:110::-:0;10166:13;:11;:13::i;:::-;62456:11:::1;:26:::0;62380:110::o;59959:228::-;60110:4;-1:-1:-1;;;;;4243:18:0;;4251:10;4243:18;4239:83;;4278:32;4299:10;4278:20;:32::i;:::-;60132:47:::1;60155:4;60161:2;60165:7;60174:4;60132:22;:47::i;58887:365::-:0;58960:13;58991:16;58999:7;58991;:16::i;:::-;58986:59;;59016:29;;-1:-1:-1;;;59016:29:0;;;;;;;;;;;58986:59;59061:8;;;;:17;;:8;:17;59058:66;;59098:14;59091:21;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;58887:365;;;:::o;59058:66::-;59155:7;59149:21;;;;;:::i;:::-;;;59174:1;59149:26;:95;;;;;;;;;;;;;;;;;59202:7;59211:18;:7;:16;:18::i;:::-;59185:53;;;;;;;;;:::i;:::-;;;;;;;;;;;;;59142:102;58887:365;-1:-1:-1;;58887:365:0:o;61084:222::-;10166:13;:11;:13::i;:::-;61164:18:::1;::::0;::::1;;:25;;:18;:25:::0;61161:138:::1;;61205:18;:25:::0;;-1:-1:-1;;61205:25:0::1;61226:4;61205:25;::::0;;61316:214::o;61161:138::-:1;61261:18;:26:::0;;-1:-1:-1;;61261:26:0::1;::::0;;61084:222::o;56535:25::-;;;;;;;:::i;62498:106::-;10166:13;:11;:13::i;:::-;62572:10:::1;:24:::0;62498:106::o;61540:126::-;10166:13;:11;:13::i;:::-;61626:32;;::::1;::::0;:14:::1;::::0;:32:::1;::::0;::::1;::::0;::::1;:::i;11186:201::-:0;10166:13;:11;:13::i;:::-;-1:-1:-1;;;;;11275:22:0;::::1;11267:73;;;::::0;-1:-1:-1;;;11267:73:0;;14310:2:1;11267:73:0::1;::::0;::::1;14292:21:1::0;14349:2;14329:18;;;14322:30;14388:34;14368:18;;;14361:62;-1:-1:-1;;;14439:18:1;;;14432:36;14485:19;;11267:73:0::1;14108:402:1::0;11267:73:0::1;11351:28;11370:8;11351:18;:28::i;12479:422::-:0;12846:20;12885:8;;;12479:422::o;39846:372::-;39948:4;-1:-1:-1;;;;;;39985:40:0;;-1:-1:-1;;;39985:40:0;;:105;;-1:-1:-1;;;;;;;40042:48:0;;-1:-1:-1;;;40042:48:0;39985:105;:172;;;-1:-1:-1;;;;;;;40107:50:0;;-1:-1:-1;;;40107:50:0;39985:172;:225;;;-1:-1:-1;;;;;;;;;;23282:40:0;;;40174:36;23173:157;24684:215;24786:4;-1:-1:-1;;;;;;24810:41:0;;-1:-1:-1;;;24810:41:0;;:81;;;24855:36;24879:11;24855:23;:36::i;10445:132::-;10353:6;;-1:-1:-1;;;;;10353:6:0;8810:10;10509:23;10501:68;;;;-1:-1:-1;;;10501:68:0;;14717:2:1;10501:68:0;;;14699:21:1;;;14736:18;;;14729:30;14795:34;14775:18;;;14768:62;14847:18;;10501:68:0;14515:356:1;26046:332:0;25762:5;-1:-1:-1;;;;;26149:33:0;;;;26141:88;;;;-1:-1:-1;;;26141:88:0;;15078:2:1;26141:88:0;;;15060:21:1;15117:2;15097:18;;;15090:30;15156:34;15136:18;;;15129:62;-1:-1:-1;;;15207:18:1;;;15200:40;15257:19;;26141:88:0;14876:406:1;26141:88:0;-1:-1:-1;;;;;26248:22:0;;26240:60;;;;-1:-1:-1;;;26240:60:0;;15489:2:1;26240:60:0;;;15471:21:1;15528:2;15508:18;;;15501:30;15567:27;15547:18;;;15540:55;15612:18;;26240:60:0;15287:349:1;26240:60:0;26335:35;;;;;;;;;-1:-1:-1;;;;;26335:35:0;;;;;;-1:-1:-1;;;;;26335:35:0;;;;;;;;;;-1:-1:-1;;;26313:57:0;;;;:19;:57;26046:332::o;45926:144::-;45983:4;46017:13;;-1:-1:-1;;;;;46017:13:0;46007:23;;:55;;;;-1:-1:-1;;46035:20:0;;;;:11;:20;;;;;:27;-1:-1:-1;;;46035:27:0;;;;46034:28;;45926:144::o;4481:419::-;3002:42;4672:45;:49;4668:225;;4743:67;;-1:-1:-1;;;4743:67:0;;4794:4;4743:67;;;15853:34:1;-1:-1:-1;;;;;15923:15:1;;15903:18;;;15896:43;3002:42:0;;4743;;15788:18:1;;4743:67:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;4738:144;;4838:28;;-1:-1:-1;;;4838:28:0;;-1:-1:-1;;;;;2263:32:1;;4838:28:0;;;2245:51:1;2218:18;;4838:28:0;2099:203:1;43522:379:0;43603:13;43619:24;43635:7;43619:15;:24::i;:::-;43603:40;;43664:5;-1:-1:-1;;;;;43658:11:0;:2;-1:-1:-1;;;;;43658:11:0;;43654:48;;43678:24;;-1:-1:-1;;;43678:24:0;;;;;;;;;;;43654:48;8810:10;-1:-1:-1;;;;;43719:21:0;;;;;;:63;;-1:-1:-1;43745:37:0;43762:5;8810:10;44601:164;:::i;43745:37::-;43744:38;43719:63;43715:138;;;43806:35;;-1:-1:-1;;;43806:35:0;;;;;;;;;;;43715:138;43865:28;43874:2;43878:7;43887:5;43865:8;:28::i;44832:170::-;44966:28;44976:4;44982:2;44986:7;44966:9;:28::i;46078:104::-;46147:27;46157:2;46161:8;46147:27;;;;;;;;;;;;:9;:27::i;45073:185::-;45211:39;45228:4;45234:2;45238:7;45211:39;;;;;;;;;;;;:16;:39::i;41120:1083::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;41286:13:0;;41230:7;;-1:-1:-1;;;;;41286:13:0;41279:20;;41275:861;;;41320:31;41354:17;;;:11;:17;;;;;;;;;41320:51;;;;;;;;;-1:-1:-1;;;;;41320:51:0;;;;-1:-1:-1;;;41320:51:0;;-1:-1:-1;;;;;41320:51:0;;;;;;;;-1:-1:-1;;;41320:51:0;;;;;;;;;;;;;;41390:731;;41440:14;;-1:-1:-1;;;;;41440:28:0;;41436:101;;41504:9;41120:1083;-1:-1:-1;;;41120:1083:0:o;41436:101::-;-1:-1:-1;;;41881:6:0;41926:17;;;;:11;:17;;;;;;;;;41914:29;;;;;;;;;-1:-1:-1;;;;;41914:29:0;;;;;-1:-1:-1;;;41914:29:0;;-1:-1:-1;;;;;41914:29:0;;;;;;;;-1:-1:-1;;;41914:29:0;;;;;;;;;;;;;41974:28;41970:109;;42042:9;41120:1083;-1:-1:-1;;;41120:1083:0:o;41970:109::-;41841:261;;;41301:835;41275:861;42164:31;;-1:-1:-1;;;42164:31:0;;;;;;;;;;;11547:191;11640:6;;;-1:-1:-1;;;;;11657:17:0;;;-1:-1:-1;;;;;;11657:17:0;;;;;;;11690:40;;11640:6;;;11657:17;11640:6;;11690:40;;11621:16;;11690:40;11610:128;11547:191;:::o;44243:287::-;8810:10;-1:-1:-1;;;;;44342:24:0;;;44338:54;;44375:17;;-1:-1:-1;;;44375:17:0;;;;;;;;;;;44338:54;8810:10;44405:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;44405:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;44405:53:0;;;;;;;;;;44474:48;;540:41:1;;;44405:42:0;;8810:10;44474:48;;513:18:1;44474:48:0;;;;;;;44243:287;;:::o;45329:342::-;45496:28;45506:4;45512:2;45516:7;45496:9;:28::i;:::-;45540:48;45563:4;45569:2;45573:7;45582:5;45540:22;:48::i;:::-;45535:129;;45612:40;;-1:-1:-1;;;45612:40:0;;;;;;;;;;;7374:751;7430:13;7651:5;7660:1;7651:10;7647:53;;-1:-1:-1;;7678:10:0;;;;;;;;;;;;-1:-1:-1;;;7678:10:0;;;;;7374:751::o;7647:53::-;7725:5;7710:12;7766:78;7773:9;;7766:78;;7799:8;;;;:::i;:::-;;-1:-1:-1;7822:10:0;;-1:-1:-1;7830:2:0;7822:10;;:::i;:::-;;;7766:78;;;7854:19;7886:6;-1:-1:-1;;;;;7876:17:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;7876:17:0;-1:-1:-1;7944:5:0;;-1:-1:-1;7854:39:0;-1:-1:-1;7920:6:0;7960:126;7967:9;;7960:126;;8037:9;8044:2;8037:4;:9;:::i;:::-;8024:23;;:2;:23;:::i;:::-;8011:38;;7993:6;8000:7;;;:::i;:::-;;;;7993:15;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;7993:56:0;;;;;;;;-1:-1:-1;8064:10:0;8072:2;8064:10;;:::i;:::-;;;7960:126;;;-1:-1:-1;8110:6:0;7374:751;-1:-1:-1;;;;7374:751:0:o;53142:196::-;53257:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;53257:29:0;-1:-1:-1;;;;;53257:29:0;;;;;;;;;53302:28;;53257:24;;53302:28;;;;;;;53142:196;;;:::o;48643:2112::-;48758:35;48796:20;48808:7;48796:11;:20::i;:::-;48871:18;;48758:58;;-1:-1:-1;48829:22:0;;-1:-1:-1;;;;;48855:34:0;8810:10;-1:-1:-1;;;;;48855:34:0;;:101;;;-1:-1:-1;48923:18:0;;48906:50;;8810:10;44601:164;:::i;48906:50::-;48855:154;;;-1:-1:-1;8810:10:0;48973:20;48985:7;48973:11;:20::i;:::-;-1:-1:-1;;;;;48973:36:0;;48855:154;48829:181;;49028:17;49023:66;;49054:35;;-1:-1:-1;;;49054:35:0;;;;;;;;;;;49023:66;49126:4;-1:-1:-1;;;;;49104:26:0;:13;:18;;;-1:-1:-1;;;;;49104:26:0;;49100:67;;49139:28;;-1:-1:-1;;;49139:28:0;;;;;;;;;;;49100:67;-1:-1:-1;;;;;49182:16:0;;49178:52;;49207:23;;-1:-1:-1;;;49207:23:0;;;;;;;;;;;49178:52;49351:49;49368:1;49372:7;49381:13;:18;;;49351:8;:49::i;:::-;-1:-1:-1;;;;;49696:18:0;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;49696:31:0;;;-1:-1:-1;;;;;49696:31:0;;;-1:-1:-1;;49696:31:0;;;;;;;49742:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;49742:29:0;;;;;;;;;;;49788:20;;;:11;:20;;;;;;:30;;-1:-1:-1;;;;;;49833:61:0;;;;-1:-1:-1;;;49878:15:0;49833:61;;;;;;;;;;;50168:11;;;50198:24;;;;;:29;50168:11;;50198:29;50194:445;;50423:13;;-1:-1:-1;;;;;50423:13:0;50409:27;;50405:219;;;50493:18;;;50461:24;;;:11;:24;;;;;;;;:50;;50576:28;;;;-1:-1:-1;;;;;50534:70:0;-1:-1:-1;;;50534:70:0;-1:-1:-1;;;;;;50534:70:0;;;-1:-1:-1;;;;;50461:50:0;;;50534:70;;;;;;;50405:219;49671:979;50686:7;50682:2;-1:-1:-1;;;;;50667:27:0;50676:4;-1:-1:-1;;;;;50667:27:0;;;;;;;;;;;50705:42;59609:163;46545;46668:32;46674:2;46678:8;46688:5;46695:4;46668:5;:32::i;53903:790::-;54058:4;-1:-1:-1;;;;;54079:13:0;;12846:20;12885:8;54075:611;;54115:72;;-1:-1:-1;;;54115:72:0;;-1:-1:-1;;;;;54115:36:0;;;;;:72;;8810:10;;54166:4;;54172:7;;54181:5;;54115:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;54115:72:0;;;;;;;;-1:-1:-1;;54115:72:0;;;;;;;;;;;;:::i;:::-;;;54111:520;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54361:6;:13;54378:1;54361:18;54357:259;;54411:40;;-1:-1:-1;;;54411:40:0;;;;;;;;;;;54357:259;54566:6;54560:13;54551:6;54547:2;54543:15;54536:38;54111:520;-1:-1:-1;;;;;;54238:55:0;-1:-1:-1;;;54238:55:0;;-1:-1:-1;54231:62:0;;54075:611;-1:-1:-1;54670:4:0;54075:611;53903:790;;;;;;:::o;46967:1422::-;47106:20;47129:13;-1:-1:-1;;;;;47129:13:0;-1:-1:-1;;;;;47157:16:0;;47153:48;;47182:19;;-1:-1:-1;;;47182:19:0;;;;;;;;;;;47153:48;47216:8;47228:1;47216:13;47212:44;;47238:18;;-1:-1:-1;;;47238:18:0;;;;;;;;;;;47212:44;-1:-1:-1;;;;;47608:16:0;;;;;;:12;:16;;;;;;;;:44;;-1:-1:-1;;;;;;47667:49:0;;-1:-1:-1;;;;;47608:44:0;;;;;;;47667:49;;;;-1:-1:-1;;47608:44:0;;;;;;47667:49;;;;;;;;;;;;;;;;47733:25;;;:11;:25;;;;;:35;;-1:-1:-1;;;;;;47783:66:0;;;;-1:-1:-1;;;47833:15:0;47783:66;;;;;;;;;;;47733:25;;47918:328;47938:8;47934:1;:12;47918:328;;;47977:38;;48002:12;;-1:-1:-1;;;;;47977:38:0;;;47994:1;;47977:38;;47994:1;;47977:38;48038:4;:68;;;;;48047:59;48078:1;48082:2;48086:12;48100:5;48047:22;:59::i;:::-;48046:60;48038:68;48034:164;;;48138:40;;-1:-1:-1;;;48138:40:0;;;;;;;;;;;48034:164;48216:14;;;;;47948:3;47918:328;;;-1:-1:-1;48262:13:0;:37;;-1:-1:-1;;;;;;48262:37:0;-1:-1:-1;;;;;48262:37:0;;;;;;;;;;48321:60;59609:163;-1:-1:-1;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:131:1;-1:-1:-1;;;;;;88:32:1;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;:::-;384:5;150:245;-1:-1:-1;;;150:245:1:o;592:173::-;660:20;;-1:-1:-1;;;;;709:31:1;;699:42;;689:70;;755:1;752;745:12;689:70;592:173;;;:::o;770:366::-;837:6;845;898:2;886:9;877:7;873:23;869:32;866:52;;;914:1;911;904:12;866:52;937:29;956:9;937:29;:::i;:::-;927:39;;1016:2;1005:9;1001:18;988:32;-1:-1:-1;;;;;1053:5:1;1049:38;1042:5;1039:49;1029:77;;1102:1;1099;1092:12;1029:77;1125:5;1115:15;;;770:366;;;;;:::o;1141:180::-;1200:6;1253:2;1241:9;1232:7;1228:23;1224:32;1221:52;;;1269:1;1266;1259:12;1221:52;-1:-1:-1;1292:23:1;;1141:180;-1:-1:-1;1141:180:1:o;1326:258::-;1398:1;1408:113;1422:6;1419:1;1416:13;1408:113;;;1498:11;;;1492:18;1479:11;;;1472:39;1444:2;1437:10;1408:113;;;1539:6;1536:1;1533:13;1530:48;;;-1:-1:-1;;1574:1:1;1556:16;;1549:27;1326:258::o;1589:269::-;1642:3;1680:5;1674:12;1707:6;1702:3;1695:19;1723:63;1779:6;1772:4;1767:3;1763:14;1756:4;1749:5;1745:16;1723:63;:::i;:::-;1840:2;1819:15;-1:-1:-1;;1815:29:1;1806:39;;;;1847:4;1802:50;;1589:269;-1:-1:-1;;1589:269:1:o;1863:231::-;2012:2;2001:9;1994:21;1975:4;2032:56;2084:2;2073:9;2069:18;2061:6;2032:56;:::i;2307:254::-;2375:6;2383;2436:2;2424:9;2415:7;2411:23;2407:32;2404:52;;;2452:1;2449;2442:12;2404:52;2475:29;2494:9;2475:29;:::i;:::-;2465:39;2551:2;2536:18;;;;2523:32;;-1:-1:-1;;;2307:254:1:o;2566:186::-;2625:6;2678:2;2666:9;2657:7;2653:23;2649:32;2646:52;;;2694:1;2691;2684:12;2646:52;2717:29;2736:9;2717:29;:::i;2939:328::-;3016:6;3024;3032;3085:2;3073:9;3064:7;3060:23;3056:32;3053:52;;;3101:1;3098;3091:12;3053:52;3124:29;3143:9;3124:29;:::i;:::-;3114:39;;3172:38;3206:2;3195:9;3191:18;3172:38;:::i;:::-;3162:48;;3257:2;3246:9;3242:18;3229:32;3219:42;;2939:328;;;;;:::o;3272:248::-;3340:6;3348;3401:2;3389:9;3380:7;3376:23;3372:32;3369:52;;;3417:1;3414;3407:12;3369:52;-1:-1:-1;;3440:23:1;;;3510:2;3495:18;;;3482:32;;-1:-1:-1;3272:248:1:o;4043:127::-;4104:10;4099:3;4095:20;4092:1;4085:31;4135:4;4132:1;4125:15;4159:4;4156:1;4149:15;4175:632;4240:5;-1:-1:-1;;;;;4311:2:1;4303:6;4300:14;4297:40;;;4317:18;;:::i;:::-;4392:2;4386:9;4360:2;4446:15;;-1:-1:-1;;4442:24:1;;;4468:2;4438:33;4434:42;4422:55;;;4492:18;;;4512:22;;;4489:46;4486:72;;;4538:18;;:::i;:::-;4578:10;4574:2;4567:22;4607:6;4598:15;;4637:6;4629;4622:22;4677:3;4668:6;4663:3;4659:16;4656:25;4653:45;;;4694:1;4691;4684:12;4653:45;4744:6;4739:3;4732:4;4724:6;4720:17;4707:44;4799:1;4792:4;4783:6;4775;4771:19;4767:30;4760:41;;;;4175:632;;;;;:::o;4812:451::-;4881:6;4934:2;4922:9;4913:7;4909:23;4905:32;4902:52;;;4950:1;4947;4940:12;4902:52;4990:9;4977:23;-1:-1:-1;;;;;5015:6:1;5012:30;5009:50;;;5055:1;5052;5045:12;5009:50;5078:22;;5131:4;5123:13;;5119:27;-1:-1:-1;5109:55:1;;5160:1;5157;5150:12;5109:55;5183:74;5249:7;5244:2;5231:16;5226:2;5222;5218:11;5183:74;:::i;5268:367::-;5331:8;5341:6;5395:3;5388:4;5380:6;5376:17;5372:27;5362:55;;5413:1;5410;5403:12;5362:55;-1:-1:-1;5436:20:1;;-1:-1:-1;;;;;5468:30:1;;5465:50;;;5511:1;5508;5501:12;5465:50;5548:4;5540:6;5536:17;5524:29;;5608:3;5601:4;5591:6;5588:1;5584:14;5576:6;5572:27;5568:38;5565:47;5562:67;;;5625:1;5622;5615:12;5640:773;5762:6;5770;5778;5786;5839:2;5827:9;5818:7;5814:23;5810:32;5807:52;;;5855:1;5852;5845:12;5807:52;5895:9;5882:23;-1:-1:-1;;;;;5965:2:1;5957:6;5954:14;5951:34;;;5981:1;5978;5971:12;5951:34;6020:70;6082:7;6073:6;6062:9;6058:22;6020:70;:::i;:::-;6109:8;;-1:-1:-1;5994:96:1;-1:-1:-1;6197:2:1;6182:18;;6169:32;;-1:-1:-1;6213:16:1;;;6210:36;;;6242:1;6239;6232:12;6210:36;;6281:72;6345:7;6334:8;6323:9;6319:24;6281:72;:::i;:::-;5640:773;;;;-1:-1:-1;6372:8:1;-1:-1:-1;;;;5640:773:1:o;6418:118::-;6504:5;6497:13;6490:21;6483:5;6480:32;6470:60;;6526:1;6523;6516:12;6541:315;6606:6;6614;6667:2;6655:9;6646:7;6642:23;6638:32;6635:52;;;6683:1;6680;6673:12;6635:52;6706:29;6725:9;6706:29;:::i;:::-;6696:39;;6785:2;6774:9;6770:18;6757:32;6798:28;6820:5;6798:28;:::i;6861:667::-;6956:6;6964;6972;6980;7033:3;7021:9;7012:7;7008:23;7004:33;7001:53;;;7050:1;7047;7040:12;7001:53;7073:29;7092:9;7073:29;:::i;:::-;7063:39;;7121:38;7155:2;7144:9;7140:18;7121:38;:::i;:::-;7111:48;;7206:2;7195:9;7191:18;7178:32;7168:42;;7261:2;7250:9;7246:18;7233:32;-1:-1:-1;;;;;7280:6:1;7277:30;7274:50;;;7320:1;7317;7310:12;7274:50;7343:22;;7396:4;7388:13;;7384:27;-1:-1:-1;7374:55:1;;7425:1;7422;7415:12;7374:55;7448:74;7514:7;7509:2;7496:16;7491:2;7487;7483:11;7448:74;:::i;:::-;7438:84;;;6861:667;;;;;;;:::o;7533:260::-;7601:6;7609;7662:2;7650:9;7641:7;7637:23;7633:32;7630:52;;;7678:1;7675;7668:12;7630:52;7701:29;7720:9;7701:29;:::i;:::-;7691:39;;7749:38;7783:2;7772:9;7768:18;7749:38;:::i;:::-;7739:48;;7533:260;;;;;:::o;7798:380::-;7877:1;7873:12;;;;7920;;;7941:61;;7995:4;7987:6;7983:17;7973:27;;7941:61;8048:2;8040:6;8037:14;8017:18;8014:38;8011:161;;8094:10;8089:3;8085:20;8082:1;8075:31;8129:4;8126:1;8119:15;8157:4;8154:1;8147:15;8011:161;;7798:380;;;:::o;8183:127::-;8244:10;8239:3;8235:20;8232:1;8225:31;8275:4;8272:1;8265:15;8299:4;8296:1;8289:15;8315:168;8355:7;8421:1;8417;8413:6;8409:14;8406:1;8403:21;8398:1;8391:9;8384:17;8380:45;8377:71;;;8428:18;;:::i;:::-;-1:-1:-1;8468:9:1;;8315:168::o;8488:127::-;8549:10;8544:3;8540:20;8537:1;8530:31;8580:4;8577:1;8570:15;8604:4;8601:1;8594:15;8620:120;8660:1;8686;8676:35;;8691:18;;:::i;:::-;-1:-1:-1;8725:9:1;;8620:120::o;9103:128::-;9143:3;9174:1;9170:6;9167:1;9164:13;9161:39;;;9180:18;;:::i;:::-;-1:-1:-1;9216:9:1;;9103:128::o;11052:125::-;11092:4;11120:1;11117;11114:8;11111:34;;;11125:18;;:::i;:::-;-1:-1:-1;11162:9:1;;11052:125::o;12096:127::-;12157:10;12152:3;12148:20;12145:1;12138:31;12188:4;12185:1;12178:15;12212:4;12209:1;12202:15;12228:135;12267:3;12288:17;;;12285:43;;12308:18;;:::i;:::-;-1:-1:-1;12355:1:1;12344:13;;12228:135::o;12494:185::-;12536:3;12574:5;12568:12;12589:52;12634:6;12629:3;12622:4;12615:5;12611:16;12589:52;:::i;:::-;12657:16;;;;;12494:185;-1:-1:-1;;12494:185:1:o;12802:1301::-;13079:3;13108:1;13141:6;13135:13;13171:3;13193:1;13221:9;13217:2;13213:18;13203:28;;13281:2;13270:9;13266:18;13303;13293:61;;13347:4;13339:6;13335:17;13325:27;;13293:61;13373:2;13421;13413:6;13410:14;13390:18;13387:38;13384:165;;-1:-1:-1;;;13448:33:1;;13504:4;13501:1;13494:15;13534:4;13455:3;13522:17;13384:165;13565:18;13592:104;;;;13710:1;13705:320;;;;13558:467;;13592:104;-1:-1:-1;;13625:24:1;;13613:37;;13670:16;;;;-1:-1:-1;13592:104:1;;13705:320;12441:1;12434:14;;;12478:4;12465:18;;13800:1;13814:165;13828:6;13825:1;13822:13;13814:165;;;13906:14;;13893:11;;;13886:35;13949:16;;;;13843:10;;13814:165;;;13818:3;;14008:6;14003:3;13999:16;13992:23;;13558:467;;;;;;;14041:56;14066:30;14092:3;14084:6;14066:30;:::i;:::-;-1:-1:-1;;;12744:20:1;;12789:1;12780:11;;12684:113;14041:56;14034:63;12802:1301;-1:-1:-1;;;;;12802:1301:1:o;15950:245::-;16017:6;16070:2;16058:9;16049:7;16045:23;16041:32;16038:52;;;16086:1;16083;16076:12;16038:52;16118:9;16112:16;16137:28;16159:5;16137:28;:::i;16200:112::-;16232:1;16258;16248:35;;16263:18;;:::i;:::-;-1:-1:-1;16297:9:1;;16200:112::o;16317:136::-;16356:3;16384:5;16374:39;;16393:18;;:::i;:::-;-1:-1:-1;;;16429:18:1;;16317:136::o;16458:500::-;-1:-1:-1;;;;;16727:15:1;;;16709:34;;16779:15;;16774:2;16759:18;;16752:43;16826:2;16811:18;;16804:34;;;16874:3;16869:2;16854:18;;16847:31;;;16652:4;;16895:57;;16932:19;;16924:6;16895:57;:::i;:::-;16887:65;16458:500;-1:-1:-1;;;;;;16458:500:1:o;16963:249::-;17032:6;17085:2;17073:9;17064:7;17060:23;17056:32;17053:52;;;17101:1;17098;17091:12;17053:52;17133:9;17127:16;17152:30;17176:5;17152:30;:::i
Swarm Source
ipfs://0727f46bd1bc8d64cd863b745c6899a9445e6d1caad0667f5fa4cedf2fc0e56c
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.