Feature Tip: Add private address tag to any address under My Name Tag !
ERC-721
Overview
Max Total Supply
516 Hustlers MarketPass
Holders
445
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
1 Hustlers MarketPassLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
HustlersMarketPass
Compiler Version
v0.8.13+commit.abaa5c0e
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-11-30 */ // SPDX-License-Identifier: MIT // File: @openzeppelin/contracts/utils/Strings.sol // OpenZeppelin Contracts v4.4.1 (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } } // File: @openzeppelin/contracts/utils/Context.sol // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File: @openzeppelin/contracts/utils/Address.sol // OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol) pragma solidity ^0.8.1; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== * * [IMPORTANT] * ==== * You shouldn't rely on `isContract` to protect against flash loan attacks! * * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract * constructor. * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize/address.code.length, which returns 0 // for contracts in construction, since the code is only stored at the end // of the constructor execution. return account.code.length > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } // File: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol) pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } // File: @openzeppelin/contracts/utils/introspection/IERC165.sol // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); } // File: @openzeppelin/contracts/utils/introspection/ERC165.sol // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) pragma solidity ^0.8.0; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } } // File: @openzeppelin/contracts/token/ERC721/IERC721.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol) pragma solidity ^0.8.0; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; } // File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol) pragma solidity ^0.8.0; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); } // File: contracts/new.sol pragma solidity ^0.8.4; error ApprovalCallerNotOwnerNorApproved(); error ApprovalQueryForNonexistentToken(); error ApproveToCaller(); error ApprovalToCurrentOwner(); error BalanceQueryForZeroAddress(); error MintToZeroAddress(); error MintZeroQuantity(); error OwnerQueryForNonexistentToken(); error TransferCallerNotOwnerNorApproved(); error TransferFromIncorrectOwner(); error TransferToNonERC721ReceiverImplementer(); error TransferToZeroAddress(); error URIQueryForNonexistentToken(); /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension. Built to optimize for lower gas during batch mints. * * Assumes serials are sequentially minted starting at _startTokenId() (defaults to 0, e.g. 0, 1, 2, 3..). * * Assumes that an owner cannot have more than 2**64 - 1 (max value of uint64) of supply. * * Assumes that the maximum token id cannot exceed 2**256 - 1 (max value of uint256). */ contract ERC721A is Context, ERC165, IERC721, IERC721Metadata { using Address for address; using Strings for uint256; // Compiler will pack this into a single 256bit word. struct TokenOwnership { // The address of the owner. address addr; // Keeps track of the start time of ownership with minimal overhead for tokenomics. uint64 startTimestamp; // Whether the token has been burned. bool burned; } // Compiler will pack this into a single 256bit word. struct AddressData { // Realistically, 2**64-1 is more than enough. uint64 balance; // Keeps track of mint count with minimal overhead for tokenomics. uint64 numberMinted; // Keeps track of burn count with minimal overhead for tokenomics. uint64 numberBurned; // For miscellaneous variable(s) pertaining to the address // (e.g. number of whitelist mint slots used). // If there are multiple variables, please pack them into a uint64. uint64 aux; } // The tokenId of the next token to be minted. uint256 internal _currentIndex; // The number of tokens burned. uint256 internal _burnCounter; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to ownership details // An empty struct value does not necessarily mean the token is unowned. See _ownershipOf implementation for details. mapping(uint256 => TokenOwnership) internal _ownerships; // Mapping owner address to address data mapping(address => AddressData) private _addressData; // Mapping from token ID to approved address mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; _currentIndex = _startTokenId(); } /** * To change the starting tokenId, please override this function. */ function _startTokenId() internal view virtual returns (uint256) { return 1; } /** * @dev Burned tokens are calculated here, use _totalMinted() if you want to count just minted tokens. */ function totalSupply() public view returns (uint256) { // Counter underflow is impossible as _burnCounter cannot be incremented // more than _currentIndex - _startTokenId() times unchecked { return _currentIndex - _burnCounter - _startTokenId(); } } /** * Returns the total amount of tokens minted in the contract. */ function _totalMinted() internal view returns (uint256) { // Counter underflow is impossible as _currentIndex does not decrement, // and it is initialized to _startTokenId() unchecked { return _currentIndex - _startTokenId(); } } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view override returns (uint256) { if (owner == address(0)) revert BalanceQueryForZeroAddress(); return uint256(_addressData[owner].balance); } /** * Returns the number of tokens minted by `owner`. */ function _numberMinted(address owner) internal view returns (uint256) { return uint256(_addressData[owner].numberMinted); } /** * Returns the number of tokens burned by or on behalf of `owner`. */ function _numberBurned(address owner) internal view returns (uint256) { return uint256(_addressData[owner].numberBurned); } /** * Returns the auxillary data for `owner`. (e.g. number of whitelist mint slots used). */ function _getAux(address owner) internal view returns (uint64) { return _addressData[owner].aux; } /** * Sets the auxillary data for `owner`. (e.g. number of whitelist mint slots used). * If there are multiple variables, please pack them into a uint64. */ function _setAux(address owner, uint64 aux) internal { _addressData[owner].aux = aux; } /** * Gas spent here starts off proportional to the maximum mint batch size. * It gradually moves to O(1) as tokens get transferred around in the collection over time. */ function _ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) { uint256 curr = tokenId; unchecked { if (_startTokenId() <= curr && curr < _currentIndex) { TokenOwnership memory ownership = _ownerships[curr]; if (!ownership.burned) { if (ownership.addr != address(0)) { return ownership; } // Invariant: // There will always be an ownership that has an address and is not burned // before an ownership that does not have an address and is not burned. // Hence, curr will not underflow. while (true) { curr--; ownership = _ownerships[curr]; if (ownership.addr != address(0)) { return ownership; } } } } } revert OwnerQueryForNonexistentToken(); } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view override returns (address) { return _ownershipOf(tokenId).addr; } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { if (!_exists(tokenId)) revert URIQueryForNonexistentToken(); string memory baseURI = _baseURI(); return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ''; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overriden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ''; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public override { address owner = ERC721A.ownerOf(tokenId); if (to == owner) revert ApprovalToCurrentOwner(); if (_msgSender() != owner && !isApprovedForAll(owner, _msgSender())) { revert ApprovalCallerNotOwnerNorApproved(); } _approve(to, tokenId, owner); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view override returns (address) { if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken(); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { if (operator == _msgSender()) revert ApproveToCaller(); _operatorApprovals[_msgSender()][operator] = approved; emit ApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ''); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public virtual override { _transfer(from, to, tokenId); if (to.isContract() && !_checkContractOnERC721Received(from, to, tokenId, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), */ function _exists(uint256 tokenId) internal view returns (bool) { return _startTokenId() <= tokenId && tokenId < _currentIndex && !_ownerships[tokenId].burned; } function _safeMint(address to, uint256 quantity) internal { _safeMint(to, quantity, ''); } /** * @dev Safely mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called for each safe transfer. * - `quantity` must be greater than 0. * * Emits a {Transfer} event. */ function _safeMint( address to, uint256 quantity, bytes memory _data ) internal { _mint(to, quantity, _data, true); } /** * @dev Mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `quantity` must be greater than 0. * * Emits a {Transfer} event. */ function _mint( address to, uint256 quantity, bytes memory _data, bool safe ) internal { uint256 startTokenId = _currentIndex; if (to == address(0)) revert MintToZeroAddress(); if (quantity == 0) revert MintZeroQuantity(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are incredibly unrealistic. // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1 // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1 unchecked { _addressData[to].balance += uint64(quantity); _addressData[to].numberMinted += uint64(quantity); _ownerships[startTokenId].addr = to; _ownerships[startTokenId].startTimestamp = uint64(block.timestamp); uint256 updatedIndex = startTokenId; uint256 end = updatedIndex + quantity; if (safe && to.isContract()) { do { emit Transfer(address(0), to, updatedIndex); if (!_checkContractOnERC721Received(address(0), to, updatedIndex++, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } while (updatedIndex != end); // Reentrancy protection if (_currentIndex != startTokenId) revert(); } else { do { emit Transfer(address(0), to, updatedIndex++); } while (updatedIndex != end); } _currentIndex = updatedIndex; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Transfers `tokenId` from `from` to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) private { TokenOwnership memory prevOwnership = _ownershipOf(tokenId); if (prevOwnership.addr != from) revert TransferFromIncorrectOwner(); bool isApprovedOrOwner = (_msgSender() == from || isApprovedForAll(from, _msgSender()) || getApproved(tokenId) == _msgSender()); if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved(); if (to == address(0)) revert TransferToZeroAddress(); _beforeTokenTransfers(from, to, tokenId, 1); // Clear approvals from the previous owner _approve(address(0), tokenId, from); // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256. unchecked { _addressData[from].balance -= 1; _addressData[to].balance += 1; TokenOwnership storage currSlot = _ownerships[tokenId]; currSlot.addr = to; currSlot.startTimestamp = uint64(block.timestamp); // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it. // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls. uint256 nextTokenId = tokenId + 1; TokenOwnership storage nextSlot = _ownerships[nextTokenId]; if (nextSlot.addr == address(0)) { // This will suffice for checking _exists(nextTokenId), // as a burned slot cannot contain the zero address. if (nextTokenId != _currentIndex) { nextSlot.addr = from; nextSlot.startTimestamp = prevOwnership.startTimestamp; } } } emit Transfer(from, to, tokenId); _afterTokenTransfers(from, to, tokenId, 1); } /** * @dev This is equivalent to _burn(tokenId, false) */ function _burn(uint256 tokenId) internal virtual { _burn(tokenId, false); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId, bool approvalCheck) internal virtual { TokenOwnership memory prevOwnership = _ownershipOf(tokenId); address from = prevOwnership.addr; if (approvalCheck) { bool isApprovedOrOwner = (_msgSender() == from || isApprovedForAll(from, _msgSender()) || getApproved(tokenId) == _msgSender()); if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved(); } _beforeTokenTransfers(from, address(0), tokenId, 1); // Clear approvals from the previous owner _approve(address(0), tokenId, from); // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256. unchecked { AddressData storage addressData = _addressData[from]; addressData.balance -= 1; addressData.numberBurned += 1; // Keep track of who burned the token, and the timestamp of burning. TokenOwnership storage currSlot = _ownerships[tokenId]; currSlot.addr = from; currSlot.startTimestamp = uint64(block.timestamp); currSlot.burned = true; // If the ownership slot of tokenId+1 is not explicitly set, that means the burn initiator owns it. // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls. uint256 nextTokenId = tokenId + 1; TokenOwnership storage nextSlot = _ownerships[nextTokenId]; if (nextSlot.addr == address(0)) { // This will suffice for checking _exists(nextTokenId), // as a burned slot cannot contain the zero address. if (nextTokenId != _currentIndex) { nextSlot.addr = from; nextSlot.startTimestamp = prevOwnership.startTimestamp; } } } emit Transfer(from, address(0), tokenId); _afterTokenTransfers(from, address(0), tokenId, 1); // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times. unchecked { _burnCounter++; } } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve( address to, uint256 tokenId, address owner ) private { _tokenApprovals[tokenId] = to; emit Approval(owner, to, tokenId); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkContractOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) { return retval == IERC721Receiver(to).onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert TransferToNonERC721ReceiverImplementer(); } else { assembly { revert(add(32, reason), mload(reason)) } } } } /** * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting. * And also called before burning one token. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, `tokenId` will be burned by `from`. * - `from` and `to` are never both zero. */ function _beforeTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes * minting. * And also called after one token has been burned. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` has been * transferred to `to`. * - When `from` is zero, `tokenId` has been minted for `to`. * - When `to` is zero, `tokenId` has been burned by `from`. * - `from` and `to` are never both zero. */ function _afterTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} } pragma solidity ^0.8.0; /** * @dev These functions deal with verification of Merkle Trees proofs. * * The proofs can be generated using the JavaScript library * https://github.com/miguelmota/merkletreejs[merkletreejs]. * Note: the hashing algorithm should be keccak256 and pair sorting should be enabled. * * See `test/utils/cryptography/MerkleProof.test.js` for some examples. */ 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[] memory proof, bytes32 root, bytes32 leaf ) internal pure returns (bool) { return processProof(proof, leaf) == root; } /** * @dev Calldata version of {verify} * * _Available since v4.7._ */ function verifyCalldata( bytes32[] calldata proof, bytes32 root, bytes32 leaf ) internal pure returns (bool) { return processProofCalldata(proof, leaf) == root; } /** * @dev Returns the rebuilt hash obtained by traversing a Merkle tree up * from `leaf` using `proof`. A `proof` is valid if and only if the rebuilt * hash matches the root of the tree. When processing the proof, the pairs * of leafs & pre-images are assumed to be sorted. * * _Available since v4.4._ */ function processProof(bytes32[] memory proof, bytes32 leaf) internal pure returns (bytes32) { bytes32 computedHash = leaf; for (uint256 i = 0; i < proof.length; i++) { computedHash = _hashPair(computedHash, proof[i]); } return computedHash; } /** * @dev Calldata version of {processProof} * * _Available since v4.7._ */ function processProofCalldata(bytes32[] calldata proof, bytes32 leaf) internal pure returns (bytes32) { bytes32 computedHash = leaf; for (uint256 i = 0; i < proof.length; i++) { computedHash = _hashPair(computedHash, proof[i]); } return computedHash; } /** * @dev Returns true if the `leaves` can be proved to be a part of a Merkle tree defined by * `root`, according to `proof` and `proofFlags` as described in {processMultiProof}. * * _Available since v4.7._ */ function multiProofVerify( bytes32[] memory proof, bool[] memory proofFlags, bytes32 root, bytes32[] memory leaves ) internal pure returns (bool) { return processMultiProof(proof, proofFlags, leaves) == root; } /** * @dev Calldata version of {multiProofVerify} * * _Available since v4.7._ */ function multiProofVerifyCalldata( bytes32[] calldata proof, bool[] calldata proofFlags, bytes32 root, bytes32[] memory leaves ) internal pure returns (bool) { return processMultiProofCalldata(proof, proofFlags, leaves) == root; } /** * @dev Returns the root of a tree reconstructed from `leaves` and the sibling nodes in `proof`, * consuming from one or the other at each step according to the instructions given by * `proofFlags`. * * _Available since v4.7._ */ function processMultiProof( bytes32[] memory proof, bool[] memory proofFlags, bytes32[] memory leaves ) internal pure returns (bytes32 merkleRoot) { // This function rebuild the root hash by traversing the tree up from the leaves. The root is rebuilt by // consuming and producing values on a queue. The queue starts with the `leaves` array, then goes onto the // `hashes` array. At the end of the process, the last hash in the `hashes` array should contain the root of // the merkle tree. uint256 leavesLen = leaves.length; uint256 totalHashes = proofFlags.length; // Check proof validity. require(leavesLen + proof.length - 1 == totalHashes, "MerkleProof: invalid multiproof"); // The xxxPos values are "pointers" to the next value to consume in each array. All accesses are done using // `xxx[xxxPos++]`, which return the current value and increment the pointer, thus mimicking a queue's "pop". bytes32[] memory hashes = new bytes32[](totalHashes); uint256 leafPos = 0; uint256 hashPos = 0; uint256 proofPos = 0; // At each step, we compute the next hash using two values: // - a value from the "main queue". If not all leaves have been consumed, we get the next leaf, otherwise we // get the next hash. // - depending on the flag, either another value for the "main queue" (merging branches) or an element from the // `proof` array. for (uint256 i = 0; i < totalHashes; i++) { bytes32 a = leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++]; bytes32 b = proofFlags[i] ? leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++] : proof[proofPos++]; hashes[i] = _hashPair(a, b); } if (totalHashes > 0) { return hashes[totalHashes - 1]; } else if (leavesLen > 0) { return leaves[0]; } else { return proof[0]; } } /** * @dev Calldata version of {processMultiProof} * * _Available since v4.7._ */ function processMultiProofCalldata( bytes32[] calldata proof, bool[] calldata proofFlags, bytes32[] memory leaves ) internal pure returns (bytes32 merkleRoot) { // This function rebuild the root hash by traversing the tree up from the leaves. The root is rebuilt by // consuming and producing values on a queue. The queue starts with the `leaves` array, then goes onto the // `hashes` array. At the end of the process, the last hash in the `hashes` array should contain the root of // the merkle tree. uint256 leavesLen = leaves.length; uint256 totalHashes = proofFlags.length; // Check proof validity. require(leavesLen + proof.length - 1 == totalHashes, "MerkleProof: invalid multiproof"); // The xxxPos values are "pointers" to the next value to consume in each array. All accesses are done using // `xxx[xxxPos++]`, which return the current value and increment the pointer, thus mimicking a queue's "pop". bytes32[] memory hashes = new bytes32[](totalHashes); uint256 leafPos = 0; uint256 hashPos = 0; uint256 proofPos = 0; // At each step, we compute the next hash using two values: // - a value from the "main queue". If not all leaves have been consumed, we get the next leaf, otherwise we // get the next hash. // - depending on the flag, either another value for the "main queue" (merging branches) or an element from the // `proof` array. for (uint256 i = 0; i < totalHashes; i++) { bytes32 a = leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++]; bytes32 b = proofFlags[i] ? leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++] : proof[proofPos++]; hashes[i] = _hashPair(a, b); } if (totalHashes > 0) { return hashes[totalHashes - 1]; } else if (leavesLen > 0) { return leaves[0]; } else { return proof[0]; } } function _hashPair(bytes32 a, bytes32 b) private pure returns (bytes32) { return a < b ? _efficientHash(a, b) : _efficientHash(b, a); } function _efficientHash(bytes32 a, bytes32 b) private pure returns (bytes32 value) { /// @solidity memory-safe-assembly assembly { mstore(0x00, a) mstore(0x20, b) value := keccak256(0x00, 0x40) } } } abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender() , "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } pragma solidity ^0.8.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 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); } pragma solidity ^0.8.13; abstract contract OperatorFilterer { error OperatorNotAllowed(address operator); IOperatorFilterRegistry constant operatorFilterRegistry = 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(operatorFilterRegistry).code.length > 0) { if (subscribe) { operatorFilterRegistry.registerAndSubscribe(address(this), subscriptionOrRegistrantToCopy); } else { if (subscriptionOrRegistrantToCopy != address(0)) { operatorFilterRegistry.registerAndCopyEntries(address(this), subscriptionOrRegistrantToCopy); } else { operatorFilterRegistry.register(address(this)); } } } } modifier onlyAllowedOperator(address from) virtual { // Check registry code length to facilitate testing in environments without a deployed registry. if (address(operatorFilterRegistry).code.length > 0) { // 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) { _; return; } if ( !( operatorFilterRegistry.isOperatorAllowed(address(this), msg.sender) && operatorFilterRegistry.isOperatorAllowed(address(this), from) ) ) { revert OperatorNotAllowed(msg.sender); } } _; } } pragma solidity ^0.8.13; abstract contract DefaultOperatorFilterer is OperatorFilterer { address constant DEFAULT_SUBSCRIPTION = address(0x3cc6CddA760b79bAfa08dF41ECFA224f810dCeB6); constructor() OperatorFilterer(DEFAULT_SUBSCRIPTION, true) {} } pragma solidity ^0.8.13; contract HustlersMarketPass is ERC721A, DefaultOperatorFilterer , Ownable { using Strings for uint256; string private uriPrefix = "ipfs://QmU7jwNYtxSzfbNeAHtTaHwWnykqnwU11jtb5f1DunYppv/"; string private uriSuffix = ".json"; uint16 public constant maxSupply = 8000; bool public WLpaused = true; bool public paused = true; mapping (address => uint8) public NFTPerWLAddress; mapping (address => uint8) public NFTPerAddress; uint8 public maxMintAmountPerWallet = 1; bytes32 public whitelistMerkleRoot = 0x7e00bf1322941382c1009b87d1a7b45c9d2da6100a02cc608f41c183c7153a63; constructor() ERC721A("Hustlers MarketPass", "Hustlers MarketPass") { } function mint(uint8 _mintAmount) external { uint16 totalSupply = uint16(totalSupply()); require(totalSupply + _mintAmount <= maxSupply, "Exceeds max supply."); uint8 _txPerAddress = NFTPerAddress[msg.sender]; require (_txPerAddress + _mintAmount <= maxMintAmountPerWallet, "Exceeds max nft limit per address"); require(!paused, "The contract is paused!"); NFTPerAddress[msg.sender] = _txPerAddress + _mintAmount; _safeMint(msg.sender , _mintAmount); delete totalSupply; delete _mintAmount; } function Reserve(uint16 _mintAmount, address _receiver) external onlyOwner { uint16 totalSupply = uint16(totalSupply()); require(totalSupply + _mintAmount <= maxSupply, "Exceeds max supply."); _safeMint(_receiver , _mintAmount); delete _mintAmount; delete _receiver; delete totalSupply; } function tokenURI(uint256 _tokenId) public view virtual override returns (string memory) { require( _exists(_tokenId), "ERC721Metadata: URI query for nonexistent token" ); string memory currentBaseURI = _baseURI(); return bytes(currentBaseURI).length > 0 ? string(abi.encodePacked(currentBaseURI, _tokenId.toString() ,uriSuffix)) : ""; } function setWLPaused() external onlyOwner { WLpaused = !WLpaused; } function setMaxNftLimitPerAddress(uint8 _limit) external onlyOwner{ maxMintAmountPerWallet = _limit; delete _limit; } function setWhitelistMerkleRoot(bytes32 _whitelistMerkleRoot) external onlyOwner { whitelistMerkleRoot = _whitelistMerkleRoot; } function getLeafNode(address _leaf) internal pure returns (bytes32 temp) { return keccak256(abi.encodePacked(_leaf)); } function _verify(bytes32 leaf, bytes32[] calldata proof) internal view returns (bool) { return MerkleProof.verifyCalldata(proof, whitelistMerkleRoot, leaf); } function whitelistMint(uint8 _mintAmount, bytes32[] calldata merkleProof) external { bytes32 leafnode = getLeafNode(msg.sender); uint8 _txPerAddress = NFTPerWLAddress[msg.sender]; require(_verify(leafnode , merkleProof ), "Invalid merkle proof"); require (_txPerAddress + _mintAmount <= maxMintAmountPerWallet, "Exceeds max nft limit per address"); require(!WLpaused, "Whitelist minting is over!"); uint16 totalSupply = uint16(totalSupply()); require(totalSupply + _mintAmount <= maxSupply, "Exceeds max supply."); _safeMint(msg.sender , _mintAmount); NFTPerWLAddress[msg.sender] =_txPerAddress + _mintAmount; delete _mintAmount; delete _txPerAddress; } function setUriPrefix(string memory _uriPrefix) external onlyOwner { uriPrefix = _uriPrefix; } function setPaused() external onlyOwner { paused = !paused; WLpaused = true; } function _baseURI() internal view override returns (string memory) { return uriPrefix; } 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); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"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":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"NFTPerAddress","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"NFTPerWLAddress","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint16","name":"_mintAmount","type":"uint16"},{"internalType":"address","name":"_receiver","type":"address"}],"name":"Reserve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"WLpaused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"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":"maxMintAmountPerWallet","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint8","name":"_mintAmount","type":"uint8"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint8","name":"_limit","type":"uint8"}],"name":"setMaxNftLimitPerAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setPaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriPrefix","type":"string"}],"name":"setUriPrefix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setWLPaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_whitelistMerkleRoot","type":"bytes32"}],"name":"setWhitelistMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"whitelistMerkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint8","name":"_mintAmount","type":"uint8"},{"internalType":"bytes32[]","name":"merkleProof","type":"bytes32[]"}],"name":"whitelistMint","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60e060405260366080818152906200264860a03980516200002991600991602090910190620002e1565b5060408051808201909152600580825264173539b7b760d91b60209092019182526200005891600a91620002e1565b50600b805461ffff1916610101179055600e805460ff191660011790557f7e00bf1322941382c1009b87d1a7b45c9d2da6100a02cc608f41c183c7153a63600f55348015620000a657600080fd5b5060408051808201825260138082527f487573746c657273204d61726b65745061737300000000000000000000000000602080840182815285518087019096529285528401528151733cc6cdda760b79bafa08df41ecfa224f810dceb6936001939290916200011891600291620002e1565b5080516200012e906003906020840190620002e1565b50600160005550506daaeb6d7670e522a718067333cd4e3b156200027b578015620001c957604051633e9f1edf60e11b81523060048201526001600160a01b03831660248201526daaeb6d7670e522a718067333cd4e90637d3e3dbe906044015b600060405180830381600087803b158015620001aa57600080fd5b505af1158015620001bf573d6000803e3d6000fd5b505050506200027b565b6001600160a01b038216156200021a5760405163a0af290360e01b81523060048201526001600160a01b03831660248201526daaeb6d7670e522a718067333cd4e9063a0af2903906044016200018f565b604051632210724360e11b81523060048201526daaeb6d7670e522a718067333cd4e90634420e48690602401600060405180830381600087803b1580156200026157600080fd5b505af115801562000276573d6000803e3d6000fd5b505050505b50620002899050336200028f565b620003c3565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b828054620002ef9062000387565b90600052602060002090601f0160209004810192826200031357600085556200035e565b82601f106200032e57805160ff19168380011785556200035e565b828001600101855582156200035e579182015b828111156200035e57825182559160200191906001019062000341565b506200036c92915062000370565b5090565b5b808211156200036c576000815560010162000371565b600181811c908216806200039c57607f821691505b602082108103620003bd57634e487b7160e01b600052602260045260246000fd5b50919050565b61227580620003d36000396000f3fe608060405234801561001057600080fd5b50600436106101f05760003560e01c806370a082311161010f578063b88d4fde116100a2578063d5abeb0111610071578063d5abeb0114610423578063dbd37cf41461043f578063e985e9c514610462578063f2fde38b1461049e57600080fd5b8063b88d4fde146103dd578063bc951b91146103f0578063bd32fb66146103fd578063c87b56dd1461041057600080fd5b80638da5cb5b116100de5780638da5cb5b146103a857806395d89b41146103b9578063a22cb465146103c1578063aa98e0c6146103d457600080fd5b806370a082311461036d578063715018a6146103805780637ec4a659146103885780637f6e90931461039b57600080fd5b80633445e3461161018757806359bf5dbb1161015657806359bf5dbb146103005780635c975abb146103355780636352211e146103475780636ecd23061461035a57600080fd5b80633445e346146102bf57806337a66d85146102d257806342842e0e146102da57806358381669146102ed57600080fd5b8063095ea7b3116101c3578063095ea7b31461026757806318160ddd1461027a57806323b872dd146102995780632f6f98e1146102ac57600080fd5b806301ffc9a7146101f557806306fdde031461021d578063081812fc14610232578063093cfa631461025d575b600080fd5b610208610203366004611b4d565b6104b1565b60405190151581526020015b60405180910390f35b610225610503565b6040516102149190611bc2565b610245610240366004611bd5565b610595565b6040516001600160a01b039091168152602001610214565b6102656105d9565b005b610265610275366004611c0a565b610620565b61028b600154600054036000190190565b604051908152602001610214565b6102656102a7366004611c34565b6106ad565b6102656102ba366004611c70565b610809565b6102656102cd366004611cbd565b610885565b6102656108c5565b6102656102e8366004611c34565b610914565b6102656102fb366004611cd8565b610a65565b61032361030e366004611d5e565b600c6020526000908152604090205460ff1681565b60405160ff9091168152602001610214565b600b5461020890610100900460ff1681565b610245610355366004611bd5565b610c0e565b610265610368366004611cbd565b610c20565b61028b61037b366004611d5e565b610d36565b610265610d85565b610265610396366004611e05565b610dbb565b600b546102089060ff1681565b6008546001600160a01b0316610245565b610225610dfc565b6102656103cf366004611e5c565b610e0b565b61028b600f5481565b6102656103eb366004611e93565b610ea0565b600e546103239060ff1681565b61026561040b366004611bd5565b610fff565b61022561041e366004611bd5565b61102e565b61042c611f4081565b60405161ffff9091168152602001610214565b61032361044d366004611d5e565b600d6020526000908152604090205460ff1681565b610208610470366004611f0f565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b6102656104ac366004611d5e565b6110fc565b60006001600160e01b031982166380ac58cd60e01b14806104e257506001600160e01b03198216635b5e139f60e01b145b806104fd57506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606002805461051290611f2b565b80601f016020809104026020016040519081016040528092919081815260200182805461053e90611f2b565b801561058b5780601f106105605761010080835404028352916020019161058b565b820191906000526020600020905b81548152906001019060200180831161056e57829003601f168201915b5050505050905090565b60006105a082611197565b6105bd576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b6008546001600160a01b0316331461060c5760405162461bcd60e51b815260040161060390611f65565b60405180910390fd5b600b805460ff19811660ff90911615179055565b600061062b82610c0e565b9050806001600160a01b0316836001600160a01b03160361065f5760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b0382161480159061067f575061067d8133610470565b155b1561069d576040516367d9dca160e11b815260040160405180910390fd5b6106a88383836111d0565b505050565b826daaeb6d7670e522a718067333cd4e3b156107f857336001600160a01b038216036106e3576106de84848461122c565b610803565b604051633185c44d60e21b81523060048201523360248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa158015610732573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906107569190611f9a565b80156107d95750604051633185c44d60e21b81523060048201526001600160a01b03821660248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa1580156107b5573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906107d99190611f9a565b6107f857604051633b79c77360e21b8152336004820152602401610603565b61080384848461122c565b50505050565b6008546001600160a01b031633146108335760405162461bcd60e51b815260040161060390611f65565b6000610846600154600054036000190190565b9050611f406108558483611fcd565b61ffff1611156108775760405162461bcd60e51b815260040161060390611ff3565b6106a8828461ffff16611237565b6008546001600160a01b031633146108af5760405162461bcd60e51b815260040161060390611f65565b600e805460ff191660ff92909216919091179055565b6008546001600160a01b031633146108ef5760405162461bcd60e51b815260040161060390611f65565b600b805460ff1960ff6101008084049190911615021661ffff19909116176001179055565b826daaeb6d7670e522a718067333cd4e3b15610a5a57336001600160a01b03821603610945576106de848484611251565b604051633185c44d60e21b81523060048201523360248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa158015610994573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109b89190611f9a565b8015610a3b5750604051633185c44d60e21b81523060048201526001600160a01b03821660248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa158015610a17573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a3b9190611f9a565b610a5a57604051633b79c77360e21b8152336004820152602401610603565b610803848484611251565b604080513360601b6bffffffffffffffffffffffff19166020808301919091528251601481840301815260349092019092528051910120600090336000908152600c602052604090205490915060ff16610ac082858561126c565b610b035760405162461bcd60e51b815260206004820152601460248201527324b73b30b634b21036b2b935b63290383937b7b360611b6044820152606401610603565b600e5460ff16610b138683612020565b60ff161115610b345760405162461bcd60e51b815260040161060390612045565b600b5460ff1615610b875760405162461bcd60e51b815260206004820152601a60248201527f57686974656c697374206d696e74696e67206973206f766572210000000000006044820152606401610603565b6000610b9a600154600054036000190190565b9050611f40610bac60ff881683611fcd565b61ffff161115610bce5760405162461bcd60e51b815260040161060390611ff3565b610bdb338760ff16611237565b610be58683612020565b336000908152600c60205260409020805460ff191660ff92909216919091179055505050505050565b6000610c1982611284565b5192915050565b6000610c33600154600054036000190190565b9050611f40610c4560ff841683611fcd565b61ffff161115610c675760405162461bcd60e51b815260040161060390611ff3565b336000908152600d6020526040902054600e5460ff9182169116610c8b8483612020565b60ff161115610cac5760405162461bcd60e51b815260040161060390612045565b600b54610100900460ff1615610d045760405162461bcd60e51b815260206004820152601760248201527f54686520636f6e747261637420697320706175736564210000000000000000006044820152606401610603565b610d0e8382612020565b336000818152600d60205260409020805460ff191660ff9384161790556106a8918516611237565b60006001600160a01b038216610d5f576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6008546001600160a01b03163314610daf5760405162461bcd60e51b815260040161060390611f65565b610db960006113ad565b565b6008546001600160a01b03163314610de55760405162461bcd60e51b815260040161060390611f65565b8051610df8906009906020840190611a9e565b5050565b60606003805461051290611f2b565b336001600160a01b03831603610e345760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b836daaeb6d7670e522a718067333cd4e3b15610fec57336001600160a01b03821603610ed757610ed2858585856113ff565b610ff8565b604051633185c44d60e21b81523060048201523360248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa158015610f26573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f4a9190611f9a565b8015610fcd5750604051633185c44d60e21b81523060048201526001600160a01b03821660248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa158015610fa9573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610fcd9190611f9a565b610fec57604051633b79c77360e21b8152336004820152602401610603565b610ff8858585856113ff565b5050505050565b6008546001600160a01b031633146110295760405162461bcd60e51b815260040161060390611f65565b600f55565b606061103982611197565b61109d5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610603565b60006110a761144a565b905060008151116110c757604051806020016040528060008152506110f5565b806110d184611459565b600a6040516020016110e593929190612086565b6040516020818303038152906040525b9392505050565b6008546001600160a01b031633146111265760405162461bcd60e51b815260040161060390611f65565b6001600160a01b03811661118b5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610603565b611194816113ad565b50565b6000816001111580156111ab575060005482105b80156104fd575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6106a883838361155a565b610df8828260405180602001604052806000815250611747565b6106a883838360405180602001604052806000815250610ea0565b600061127c8383600f5487611754565b949350505050565b604080516060810182526000808252602082018190529181019190915281806001111580156112b4575060005481105b1561139457600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b810467ffffffffffffffff1692820192909252600160e01b90910460ff161515918101829052906113925780516001600160a01b031615611328579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b820467ffffffffffffffff1693830193909352600160e01b900460ff161515928101929092521561138d579392505050565b611328565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b61140a84848461155a565b6001600160a01b0383163b1515801561142c575061142a8484848461176c565b155b15610803576040516368d2bf6b60e11b815260040160405180910390fd5b60606009805461051290611f2b565b6060816000036114805750506040805180820190915260018152600360fc1b602082015290565b8160005b81156114aa578061149481612149565b91506114a39050600a83612178565b9150611484565b60008167ffffffffffffffff8111156114c5576114c5611d79565b6040519080825280601f01601f1916602001820160405280156114ef576020820181803683370190505b5090505b841561127c5761150460018361218c565b9150611511600a866121a3565b61151c9060306121b7565b60f81b818381518110611531576115316121cf565b60200101906001600160f81b031916908160001a905350611553600a86612178565b94506114f3565b600061156582611284565b9050836001600160a01b031681600001516001600160a01b03161461159c5760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b03861614806115ba57506115ba8533610470565b806115d55750336115ca84610595565b6001600160a01b0316145b9050806115f557604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b03841661161c57604051633a954ecd60e21b815260040160405180910390fd5b611628600084876111d0565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff1980821667ffffffffffffffff92831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b429092169190910217835587018084529220805491939091166116fe5760005482146116fe578054602086015167ffffffffffffffff16600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610ff8565b6106a88383836001611854565b600082611762868685611a26565b1495945050505050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a02906117a19033908990889088906004016121e5565b6020604051808303816000875af19250505080156117dc575060408051601f3d908101601f191682019092526117d991810190612222565b60015b61183a573d80801561180a576040519150601f19603f3d011682016040523d82523d6000602084013e61180f565b606091505b508051600003611832576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061127c565b6000546001600160a01b03851661187d57604051622e076360e81b815260040160405180910390fd5b8360000361189e5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff19811667ffffffffffffffff8083168c0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168c01811690920217909155858452600490925290912080546001600160e01b031916909217600160a01b42909216919091021790558080850183801561195057506001600160a01b0387163b15155b156119d8575b60405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a46119a1600088848060010195508861176c565b6119be576040516368d2bf6b60e11b815260040160405180910390fd5b8082036119565782600054146119d357600080fd5b611a1d565b5b6040516001830192906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a48082036119d9575b50600055610ff8565b600081815b84811015611a6957611a5582878784818110611a4957611a496121cf565b90506020020135611a72565b915080611a6181612149565b915050611a2b565b50949350505050565b6000818310611a8e5760008281526020849052604090206110f5565b5060009182526020526040902090565b828054611aaa90611f2b565b90600052602060002090601f016020900481019282611acc5760008555611b12565b82601f10611ae557805160ff1916838001178555611b12565b82800160010185558215611b12579182015b82811115611b12578251825591602001919060010190611af7565b50611b1e929150611b22565b5090565b5b80821115611b1e5760008155600101611b23565b6001600160e01b03198116811461119457600080fd5b600060208284031215611b5f57600080fd5b81356110f581611b37565b60005b83811015611b85578181015183820152602001611b6d565b838111156108035750506000910152565b60008151808452611bae816020860160208601611b6a565b601f01601f19169290920160200192915050565b6020815260006110f56020830184611b96565b600060208284031215611be757600080fd5b5035919050565b80356001600160a01b0381168114611c0557600080fd5b919050565b60008060408385031215611c1d57600080fd5b611c2683611bee565b946020939093013593505050565b600080600060608486031215611c4957600080fd5b611c5284611bee565b9250611c6060208501611bee565b9150604084013590509250925092565b60008060408385031215611c8357600080fd5b823561ffff81168114611c9557600080fd5b9150611ca360208401611bee565b90509250929050565b803560ff81168114611c0557600080fd5b600060208284031215611ccf57600080fd5b6110f582611cac565b600080600060408486031215611ced57600080fd5b611cf684611cac565b9250602084013567ffffffffffffffff80821115611d1357600080fd5b818601915086601f830112611d2757600080fd5b813581811115611d3657600080fd5b8760208260051b8501011115611d4b57600080fd5b6020830194508093505050509250925092565b600060208284031215611d7057600080fd5b6110f582611bee565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff80841115611daa57611daa611d79565b604051601f8501601f19908116603f01168101908282118183101715611dd257611dd2611d79565b81604052809350858152868686011115611deb57600080fd5b858560208301376000602087830101525050509392505050565b600060208284031215611e1757600080fd5b813567ffffffffffffffff811115611e2e57600080fd5b8201601f81018413611e3f57600080fd5b61127c84823560208401611d8f565b801515811461119457600080fd5b60008060408385031215611e6f57600080fd5b611e7883611bee565b91506020830135611e8881611e4e565b809150509250929050565b60008060008060808587031215611ea957600080fd5b611eb285611bee565b9350611ec060208601611bee565b925060408501359150606085013567ffffffffffffffff811115611ee357600080fd5b8501601f81018713611ef457600080fd5b611f0387823560208401611d8f565b91505092959194509250565b60008060408385031215611f2257600080fd5b611c9583611bee565b600181811c90821680611f3f57607f821691505b602082108103611f5f57634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600060208284031215611fac57600080fd5b81516110f581611e4e565b634e487b7160e01b600052601160045260246000fd5b600061ffff808316818516808303821115611fea57611fea611fb7565b01949350505050565b60208082526013908201527222bc31b2b2b2399036b0bc1039bab838363c9760691b604082015260600190565b600060ff821660ff84168060ff0382111561203d5761203d611fb7565b019392505050565b60208082526021908201527f45786365656473206d6178206e6674206c696d697420706572206164647265736040820152607360f81b606082015260800190565b6000845160206120998285838a01611b6a565b8551918401916120ac8184848a01611b6a565b8554920191600090600181811c90808316806120c957607f831692505b85831081036120e657634e487b7160e01b85526022600452602485fd5b8080156120fa576001811461210b57612138565b60ff19851688528388019550612138565b60008b81526020902060005b858110156121305781548a820152908401908801612117565b505083880195505b50939b9a5050505050505050505050565b60006001820161215b5761215b611fb7565b5060010190565b634e487b7160e01b600052601260045260246000fd5b60008261218757612187612162565b500490565b60008282101561219e5761219e611fb7565b500390565b6000826121b2576121b2612162565b500690565b600082198211156121ca576121ca611fb7565b500190565b634e487b7160e01b600052603260045260246000fd5b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061221890830184611b96565b9695505050505050565b60006020828403121561223457600080fd5b81516110f581611b3756fea2646970667358221220d7c15c582cf662beb844c9b09cb3af716e21dfd5a399931c01c6b2e235164d4364736f6c634300080d0033697066733a2f2f516d55376a774e597478537a66624e6541487454614877576e796b716e775531316a746235663144756e597070762f
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101f05760003560e01c806370a082311161010f578063b88d4fde116100a2578063d5abeb0111610071578063d5abeb0114610423578063dbd37cf41461043f578063e985e9c514610462578063f2fde38b1461049e57600080fd5b8063b88d4fde146103dd578063bc951b91146103f0578063bd32fb66146103fd578063c87b56dd1461041057600080fd5b80638da5cb5b116100de5780638da5cb5b146103a857806395d89b41146103b9578063a22cb465146103c1578063aa98e0c6146103d457600080fd5b806370a082311461036d578063715018a6146103805780637ec4a659146103885780637f6e90931461039b57600080fd5b80633445e3461161018757806359bf5dbb1161015657806359bf5dbb146103005780635c975abb146103355780636352211e146103475780636ecd23061461035a57600080fd5b80633445e346146102bf57806337a66d85146102d257806342842e0e146102da57806358381669146102ed57600080fd5b8063095ea7b3116101c3578063095ea7b31461026757806318160ddd1461027a57806323b872dd146102995780632f6f98e1146102ac57600080fd5b806301ffc9a7146101f557806306fdde031461021d578063081812fc14610232578063093cfa631461025d575b600080fd5b610208610203366004611b4d565b6104b1565b60405190151581526020015b60405180910390f35b610225610503565b6040516102149190611bc2565b610245610240366004611bd5565b610595565b6040516001600160a01b039091168152602001610214565b6102656105d9565b005b610265610275366004611c0a565b610620565b61028b600154600054036000190190565b604051908152602001610214565b6102656102a7366004611c34565b6106ad565b6102656102ba366004611c70565b610809565b6102656102cd366004611cbd565b610885565b6102656108c5565b6102656102e8366004611c34565b610914565b6102656102fb366004611cd8565b610a65565b61032361030e366004611d5e565b600c6020526000908152604090205460ff1681565b60405160ff9091168152602001610214565b600b5461020890610100900460ff1681565b610245610355366004611bd5565b610c0e565b610265610368366004611cbd565b610c20565b61028b61037b366004611d5e565b610d36565b610265610d85565b610265610396366004611e05565b610dbb565b600b546102089060ff1681565b6008546001600160a01b0316610245565b610225610dfc565b6102656103cf366004611e5c565b610e0b565b61028b600f5481565b6102656103eb366004611e93565b610ea0565b600e546103239060ff1681565b61026561040b366004611bd5565b610fff565b61022561041e366004611bd5565b61102e565b61042c611f4081565b60405161ffff9091168152602001610214565b61032361044d366004611d5e565b600d6020526000908152604090205460ff1681565b610208610470366004611f0f565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b6102656104ac366004611d5e565b6110fc565b60006001600160e01b031982166380ac58cd60e01b14806104e257506001600160e01b03198216635b5e139f60e01b145b806104fd57506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606002805461051290611f2b565b80601f016020809104026020016040519081016040528092919081815260200182805461053e90611f2b565b801561058b5780601f106105605761010080835404028352916020019161058b565b820191906000526020600020905b81548152906001019060200180831161056e57829003601f168201915b5050505050905090565b60006105a082611197565b6105bd576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b6008546001600160a01b0316331461060c5760405162461bcd60e51b815260040161060390611f65565b60405180910390fd5b600b805460ff19811660ff90911615179055565b600061062b82610c0e565b9050806001600160a01b0316836001600160a01b03160361065f5760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b0382161480159061067f575061067d8133610470565b155b1561069d576040516367d9dca160e11b815260040160405180910390fd5b6106a88383836111d0565b505050565b826daaeb6d7670e522a718067333cd4e3b156107f857336001600160a01b038216036106e3576106de84848461122c565b610803565b604051633185c44d60e21b81523060048201523360248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa158015610732573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906107569190611f9a565b80156107d95750604051633185c44d60e21b81523060048201526001600160a01b03821660248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa1580156107b5573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906107d99190611f9a565b6107f857604051633b79c77360e21b8152336004820152602401610603565b61080384848461122c565b50505050565b6008546001600160a01b031633146108335760405162461bcd60e51b815260040161060390611f65565b6000610846600154600054036000190190565b9050611f406108558483611fcd565b61ffff1611156108775760405162461bcd60e51b815260040161060390611ff3565b6106a8828461ffff16611237565b6008546001600160a01b031633146108af5760405162461bcd60e51b815260040161060390611f65565b600e805460ff191660ff92909216919091179055565b6008546001600160a01b031633146108ef5760405162461bcd60e51b815260040161060390611f65565b600b805460ff1960ff6101008084049190911615021661ffff19909116176001179055565b826daaeb6d7670e522a718067333cd4e3b15610a5a57336001600160a01b03821603610945576106de848484611251565b604051633185c44d60e21b81523060048201523360248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa158015610994573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109b89190611f9a565b8015610a3b5750604051633185c44d60e21b81523060048201526001600160a01b03821660248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa158015610a17573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a3b9190611f9a565b610a5a57604051633b79c77360e21b8152336004820152602401610603565b610803848484611251565b604080513360601b6bffffffffffffffffffffffff19166020808301919091528251601481840301815260349092019092528051910120600090336000908152600c602052604090205490915060ff16610ac082858561126c565b610b035760405162461bcd60e51b815260206004820152601460248201527324b73b30b634b21036b2b935b63290383937b7b360611b6044820152606401610603565b600e5460ff16610b138683612020565b60ff161115610b345760405162461bcd60e51b815260040161060390612045565b600b5460ff1615610b875760405162461bcd60e51b815260206004820152601a60248201527f57686974656c697374206d696e74696e67206973206f766572210000000000006044820152606401610603565b6000610b9a600154600054036000190190565b9050611f40610bac60ff881683611fcd565b61ffff161115610bce5760405162461bcd60e51b815260040161060390611ff3565b610bdb338760ff16611237565b610be58683612020565b336000908152600c60205260409020805460ff191660ff92909216919091179055505050505050565b6000610c1982611284565b5192915050565b6000610c33600154600054036000190190565b9050611f40610c4560ff841683611fcd565b61ffff161115610c675760405162461bcd60e51b815260040161060390611ff3565b336000908152600d6020526040902054600e5460ff9182169116610c8b8483612020565b60ff161115610cac5760405162461bcd60e51b815260040161060390612045565b600b54610100900460ff1615610d045760405162461bcd60e51b815260206004820152601760248201527f54686520636f6e747261637420697320706175736564210000000000000000006044820152606401610603565b610d0e8382612020565b336000818152600d60205260409020805460ff191660ff9384161790556106a8918516611237565b60006001600160a01b038216610d5f576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6008546001600160a01b03163314610daf5760405162461bcd60e51b815260040161060390611f65565b610db960006113ad565b565b6008546001600160a01b03163314610de55760405162461bcd60e51b815260040161060390611f65565b8051610df8906009906020840190611a9e565b5050565b60606003805461051290611f2b565b336001600160a01b03831603610e345760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b836daaeb6d7670e522a718067333cd4e3b15610fec57336001600160a01b03821603610ed757610ed2858585856113ff565b610ff8565b604051633185c44d60e21b81523060048201523360248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa158015610f26573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f4a9190611f9a565b8015610fcd5750604051633185c44d60e21b81523060048201526001600160a01b03821660248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa158015610fa9573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610fcd9190611f9a565b610fec57604051633b79c77360e21b8152336004820152602401610603565b610ff8858585856113ff565b5050505050565b6008546001600160a01b031633146110295760405162461bcd60e51b815260040161060390611f65565b600f55565b606061103982611197565b61109d5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610603565b60006110a761144a565b905060008151116110c757604051806020016040528060008152506110f5565b806110d184611459565b600a6040516020016110e593929190612086565b6040516020818303038152906040525b9392505050565b6008546001600160a01b031633146111265760405162461bcd60e51b815260040161060390611f65565b6001600160a01b03811661118b5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610603565b611194816113ad565b50565b6000816001111580156111ab575060005482105b80156104fd575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6106a883838361155a565b610df8828260405180602001604052806000815250611747565b6106a883838360405180602001604052806000815250610ea0565b600061127c8383600f5487611754565b949350505050565b604080516060810182526000808252602082018190529181019190915281806001111580156112b4575060005481105b1561139457600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b810467ffffffffffffffff1692820192909252600160e01b90910460ff161515918101829052906113925780516001600160a01b031615611328579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b820467ffffffffffffffff1693830193909352600160e01b900460ff161515928101929092521561138d579392505050565b611328565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b61140a84848461155a565b6001600160a01b0383163b1515801561142c575061142a8484848461176c565b155b15610803576040516368d2bf6b60e11b815260040160405180910390fd5b60606009805461051290611f2b565b6060816000036114805750506040805180820190915260018152600360fc1b602082015290565b8160005b81156114aa578061149481612149565b91506114a39050600a83612178565b9150611484565b60008167ffffffffffffffff8111156114c5576114c5611d79565b6040519080825280601f01601f1916602001820160405280156114ef576020820181803683370190505b5090505b841561127c5761150460018361218c565b9150611511600a866121a3565b61151c9060306121b7565b60f81b818381518110611531576115316121cf565b60200101906001600160f81b031916908160001a905350611553600a86612178565b94506114f3565b600061156582611284565b9050836001600160a01b031681600001516001600160a01b03161461159c5760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b03861614806115ba57506115ba8533610470565b806115d55750336115ca84610595565b6001600160a01b0316145b9050806115f557604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b03841661161c57604051633a954ecd60e21b815260040160405180910390fd5b611628600084876111d0565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff1980821667ffffffffffffffff92831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b429092169190910217835587018084529220805491939091166116fe5760005482146116fe578054602086015167ffffffffffffffff16600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610ff8565b6106a88383836001611854565b600082611762868685611a26565b1495945050505050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a02906117a19033908990889088906004016121e5565b6020604051808303816000875af19250505080156117dc575060408051601f3d908101601f191682019092526117d991810190612222565b60015b61183a573d80801561180a576040519150601f19603f3d011682016040523d82523d6000602084013e61180f565b606091505b508051600003611832576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061127c565b6000546001600160a01b03851661187d57604051622e076360e81b815260040160405180910390fd5b8360000361189e5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff19811667ffffffffffffffff8083168c0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168c01811690920217909155858452600490925290912080546001600160e01b031916909217600160a01b42909216919091021790558080850183801561195057506001600160a01b0387163b15155b156119d8575b60405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a46119a1600088848060010195508861176c565b6119be576040516368d2bf6b60e11b815260040160405180910390fd5b8082036119565782600054146119d357600080fd5b611a1d565b5b6040516001830192906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a48082036119d9575b50600055610ff8565b600081815b84811015611a6957611a5582878784818110611a4957611a496121cf565b90506020020135611a72565b915080611a6181612149565b915050611a2b565b50949350505050565b6000818310611a8e5760008281526020849052604090206110f5565b5060009182526020526040902090565b828054611aaa90611f2b565b90600052602060002090601f016020900481019282611acc5760008555611b12565b82601f10611ae557805160ff1916838001178555611b12565b82800160010185558215611b12579182015b82811115611b12578251825591602001919060010190611af7565b50611b1e929150611b22565b5090565b5b80821115611b1e5760008155600101611b23565b6001600160e01b03198116811461119457600080fd5b600060208284031215611b5f57600080fd5b81356110f581611b37565b60005b83811015611b85578181015183820152602001611b6d565b838111156108035750506000910152565b60008151808452611bae816020860160208601611b6a565b601f01601f19169290920160200192915050565b6020815260006110f56020830184611b96565b600060208284031215611be757600080fd5b5035919050565b80356001600160a01b0381168114611c0557600080fd5b919050565b60008060408385031215611c1d57600080fd5b611c2683611bee565b946020939093013593505050565b600080600060608486031215611c4957600080fd5b611c5284611bee565b9250611c6060208501611bee565b9150604084013590509250925092565b60008060408385031215611c8357600080fd5b823561ffff81168114611c9557600080fd5b9150611ca360208401611bee565b90509250929050565b803560ff81168114611c0557600080fd5b600060208284031215611ccf57600080fd5b6110f582611cac565b600080600060408486031215611ced57600080fd5b611cf684611cac565b9250602084013567ffffffffffffffff80821115611d1357600080fd5b818601915086601f830112611d2757600080fd5b813581811115611d3657600080fd5b8760208260051b8501011115611d4b57600080fd5b6020830194508093505050509250925092565b600060208284031215611d7057600080fd5b6110f582611bee565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff80841115611daa57611daa611d79565b604051601f8501601f19908116603f01168101908282118183101715611dd257611dd2611d79565b81604052809350858152868686011115611deb57600080fd5b858560208301376000602087830101525050509392505050565b600060208284031215611e1757600080fd5b813567ffffffffffffffff811115611e2e57600080fd5b8201601f81018413611e3f57600080fd5b61127c84823560208401611d8f565b801515811461119457600080fd5b60008060408385031215611e6f57600080fd5b611e7883611bee565b91506020830135611e8881611e4e565b809150509250929050565b60008060008060808587031215611ea957600080fd5b611eb285611bee565b9350611ec060208601611bee565b925060408501359150606085013567ffffffffffffffff811115611ee357600080fd5b8501601f81018713611ef457600080fd5b611f0387823560208401611d8f565b91505092959194509250565b60008060408385031215611f2257600080fd5b611c9583611bee565b600181811c90821680611f3f57607f821691505b602082108103611f5f57634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600060208284031215611fac57600080fd5b81516110f581611e4e565b634e487b7160e01b600052601160045260246000fd5b600061ffff808316818516808303821115611fea57611fea611fb7565b01949350505050565b60208082526013908201527222bc31b2b2b2399036b0bc1039bab838363c9760691b604082015260600190565b600060ff821660ff84168060ff0382111561203d5761203d611fb7565b019392505050565b60208082526021908201527f45786365656473206d6178206e6674206c696d697420706572206164647265736040820152607360f81b606082015260800190565b6000845160206120998285838a01611b6a565b8551918401916120ac8184848a01611b6a565b8554920191600090600181811c90808316806120c957607f831692505b85831081036120e657634e487b7160e01b85526022600452602485fd5b8080156120fa576001811461210b57612138565b60ff19851688528388019550612138565b60008b81526020902060005b858110156121305781548a820152908401908801612117565b505083880195505b50939b9a5050505050505050505050565b60006001820161215b5761215b611fb7565b5060010190565b634e487b7160e01b600052601260045260246000fd5b60008261218757612187612162565b500490565b60008282101561219e5761219e611fb7565b500390565b6000826121b2576121b2612162565b500690565b600082198211156121ca576121ca611fb7565b500190565b634e487b7160e01b600052603260045260246000fd5b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061221890830184611b96565b9695505050505050565b60006020828403121561223457600080fd5b81516110f581611b3756fea2646970667358221220d7c15c582cf662beb844c9b09cb3af716e21dfd5a399931c01c6b2e235164d4364736f6c634300080d0033
Deployed Bytecode Sourcemap
56823:4512:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24445:305;;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;24445:305:0;;;;;;;;27558:100;;;:::i;:::-;;;;;;;:::i;29061:204::-;;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1692:32:1;;;1674:51;;1662:2;1647:18;29061:204:0;1528:203:1;58950:75:0;;;:::i;:::-;;28624:371;;;;;;:::i;:::-;;:::i;23694:303::-;;23551:1;23948:12;23738:7;23932:13;:28;-1:-1:-1;;23932:46:0;;23694:303;;;;2319:25:1;;;2307:2;2292:18;23694:303:0;2173:177:1;60754:163:0;;;;;;:::i;:::-;;:::i;58171:326::-;;;;;;:::i;:::-;;:::i;59036:129::-;;;;;;:::i;:::-;;:::i;60554:91::-;;;:::i;60925:171::-;;;;;;:::i;:::-;;:::i;59643:792::-;;;;;;:::i;:::-;;:::i;57244:49::-;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;4440:4:1;4428:17;;;4410:36;;4398:2;4383:18;57244:49:0;4268:184:1;57212:25:0;;;;;;;;;;;;27366:125;;;;;;:::i;:::-;;:::i;57605:558::-;;;;;;:::i;:::-;;:::i;24814:206::-;;;;;;:::i;:::-;;:::i;51531:103::-;;;:::i;60441:102::-;;;;;;:::i;:::-;;:::i;57180:27::-;;;;;;;;;50879:87;50952:6;;-1:-1:-1;;;;;50952:6:0;50879:87;;27727:104;;;:::i;29337:287::-;;;;;;:::i;:::-;;:::i;57404:103::-;;;;;;61104:228;;;;;;:::i;:::-;;:::i;57350:39::-;;;;;;;;;59167:142;;;;;;:::i;:::-;;:::i;58510:432::-;;;;;;:::i;:::-;;:::i;57070:39::-;;57105:4;57070:39;;;;;7338:6:1;7326:19;;;7308:38;;7296:2;7281:18;57070:39:0;7164:188:1;57298:47:0;;;;;;:::i;:::-;;;;;;;;;;;;;;;;29695:164;;;;;;:::i;:::-;-1:-1:-1;;;;;29816:25:0;;;29792:4;29816:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;29695:164;51789:201;;;;;;:::i;:::-;;:::i;24445:305::-;24547:4;-1:-1:-1;;;;;;24584:40:0;;-1:-1:-1;;;24584:40:0;;:105;;-1:-1:-1;;;;;;;24641:48:0;;-1:-1:-1;;;24641:48:0;24584:105;:158;;;-1:-1:-1;;;;;;;;;;14479:40:0;;;24706:36;24564:178;24445:305;-1:-1:-1;;24445:305:0:o;27558:100::-;27612:13;27645:5;27638:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27558:100;:::o;29061:204::-;29129:7;29154:16;29162:7;29154;:16::i;:::-;29149:64;;29179:34;;-1:-1:-1;;;29179:34:0;;;;;;;;;;;29149:64;-1:-1:-1;29233:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;29233:24:0;;29061:204::o;58950:75::-;50952:6;;-1:-1:-1;;;;;50952:6:0;2920:10;51099:23;51091:69;;;;-1:-1:-1;;;51091:69:0;;;;;;;:::i;:::-;;;;;;;;;59011:8:::1;::::0;;-1:-1:-1;;58999:20:0;::::1;59011:8;::::0;;::::1;59010:9;58999:20;::::0;;58950:75::o;28624:371::-;28697:13;28713:24;28729:7;28713:15;:24::i;:::-;28697:40;;28758:5;-1:-1:-1;;;;;28752:11:0;:2;-1:-1:-1;;;;;28752:11:0;;28748:48;;28772:24;;-1:-1:-1;;;28772:24:0;;;;;;;;;;;28748:48;2920:10;-1:-1:-1;;;;;28813:21:0;;;;;;:63;;-1:-1:-1;28839:37:0;28856:5;2920:10;29695:164;:::i;28839:37::-;28838:38;28813:63;28809:138;;;28900:35;;-1:-1:-1;;;28900:35:0;;;;;;;;;;;28809:138;28959:28;28968:2;28972:7;28981:5;28959:8;:28::i;:::-;28686:309;28624:371;;:::o;60754:163::-;60855:4;54657:42;55797:43;:47;55793:699;;56084:10;-1:-1:-1;;;;;56076:18:0;;;56072:85;;60872:37:::1;60891:4;60897:2;60901:7;60872:18;:37::i;:::-;56135:7:::0;;56072:85;56217:67;;-1:-1:-1;;;56217:67:0;;56266:4;56217:67;;;8580:34:1;56273:10:0;8630:18:1;;;8623:43;54657:42:0;;56217:40;;8515:18:1;;56217:67:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:157;;;;-1:-1:-1;56313:61:0;;-1:-1:-1;;;56313:61:0;;56362:4;56313:61;;;8580:34:1;-1:-1:-1;;;;;8650:15:1;;8630:18;;;8623:43;54657:42:0;;56313:40;;8515:18:1;;56313:61:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;56171:310;;56435:30;;-1:-1:-1;;;56435:30:0;;56454:10;56435:30;;;1674:51:1;1647:18;;56435:30:0;1528:203:1;56171:310:0;60872:37:::1;60891:4;60897:2;60901:7;60872:18;:37::i;:::-;60754:163:::0;;;;:::o;58171:326::-;50952:6;;-1:-1:-1;;;;;50952:6:0;2920:10;51099:23;51091:69;;;;-1:-1:-1;;;51091:69:0;;;;;;;:::i;:::-;58254:18:::1;58282:13;23551:1:::0;23948:12;23738:7;23932:13;:28;-1:-1:-1;;23932:46:0;;23694:303;58282:13:::1;58254:42:::0;-1:-1:-1;57105:4:0::1;58311:25;58325:11:::0;58254:42;58311:25:::1;:::i;:::-;:38;;;;58303:70;;;;-1:-1:-1::0;;;58303:70:0::1;;;;;;;:::i;:::-;58381:34;58391:9;58403:11;58381:34;;:9;:34::i;59036:129::-:0;50952:6;;-1:-1:-1;;;;;50952:6:0;2920:10;51099:23;51091:69;;;;-1:-1:-1;;;51091:69:0;;;;;;;:::i;:::-;59109:22:::1;:31:::0;;-1:-1:-1;;59109:31:0::1;;::::0;;;::::1;::::0;;;::::1;::::0;;59036:129::o;60554:91::-;50952:6;;-1:-1:-1;;;;;50952:6:0;2920:10;51099:23;51091:69;;;;-1:-1:-1;;;51091:69:0;;;;;;;:::i;:::-;60611:6:::1;::::0;;-1:-1:-1;;60611:6:0::1;;::::0;;::::1;::::0;;;::::1;60610:7;60601:16;60624:15:::0;-1:-1:-1;;60624:15:0;;;;60611:6:::1;60624:15;::::0;;60554:91::o;60925:171::-;61030:4;54657:42;55797:43;:47;55793:699;;56084:10;-1:-1:-1;;;;;56076:18:0;;;56072:85;;61047:41:::1;61070:4;61076:2;61080:7;61047:22;:41::i;56072:85::-:0;56217:67;;-1:-1:-1;;;56217:67:0;;56266:4;56217:67;;;8580:34:1;56273:10:0;8630:18:1;;;8623:43;54657:42:0;;56217:40;;8515:18:1;;56217:67:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:157;;;;-1:-1:-1;56313:61:0;;-1:-1:-1;;;56313:61:0;;56362:4;56313:61;;;8580:34:1;-1:-1:-1;;;;;8650:15:1;;8630:18;;;8623:43;54657:42:0;;56313:40;;8515:18:1;;56313:61:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;56171:310;;56435:30;;-1:-1:-1;;;56435:30:0;;56454:10;56435:30;;;1674:51:1;1647:18;;56435:30:0;1528:203:1;56171:310:0;61047:41:::1;61070:4;61076:2;61080:7;61047:22;:41::i;59643:792::-:0;59429:23;;;59778:10;13933:2:1;13929:15;-1:-1:-1;;13925:53:1;59429:23:0;;;;13913:66:1;;;;59429:23:0;;;;;;;;;13995:12:1;;;;59429:23:0;;;59419:34;;;;;59746:17;;59838:10;59800:19;59822:27;;;:15;:27;;;;;;59746:43;;-1:-1:-1;59822:27:0;;59867:36;59746:43;59888:11;;59867:7;:36::i;:::-;59859:70;;;;-1:-1:-1;;;59859:70:0;;9838:2:1;59859:70:0;;;9820:21:1;9877:2;9857:18;;;9850:30;-1:-1:-1;;;9896:18:1;;;9889:50;9956:18;;59859:70:0;9636:344:1;59859:70:0;59979:22;;;;59948:27;59964:11;59948:13;:27;:::i;:::-;:53;;;;59939:100;;;;-1:-1:-1;;;59939:100:0;;;;;;;:::i;:::-;60067:8;;;;60066:9;60058:48;;;;-1:-1:-1;;;60058:48:0;;10798:2:1;60058:48:0;;;10780:21:1;10837:2;10817:18;;;10810:30;10876:28;10856:18;;;10849:56;10922:18;;60058:48:0;10596:350:1;60058:48:0;60120:18;60148:13;23551:1;23948:12;23738:7;23932:13;:28;-1:-1:-1;;23932:46:0;;23694:303;60148:13;60120:42;-1:-1:-1;57105:4:0;60177:25;;;;60120:42;60177:25;:::i;:::-;:38;;;;60169:70;;;;-1:-1:-1;;;60169:70:0;;;;;;;:::i;:::-;60257:35;60267:10;60280:11;60257:35;;:9;:35::i;:::-;60330:27;60346:11;60330:13;:27;:::i;:::-;60317:10;60301:27;;;;:15;:27;;;;;:56;;-1:-1:-1;;60301:56:0;;;;;;;;;;;;-1:-1:-1;;;;;;59643:792:0:o;27366:125::-;27430:7;27457:21;27470:7;27457:12;:21::i;:::-;:26;;27366:125;-1:-1:-1;;27366:125:0:o;57605:558::-;57656:18;57684:13;23551:1;23948:12;23738:7;23932:13;:28;-1:-1:-1;;23932:46:0;;23694:303;57684:13;57656:42;-1:-1:-1;57105:4:0;57713:25;;;;57656:42;57713:25;:::i;:::-;:38;;;;57705:70;;;;-1:-1:-1;;;57705:70:0;;;;;;;:::i;:::-;57818:10;57782:19;57804:25;;;:13;:25;;;;;;57877:22;;57804:25;;;;;57877:22;57846:27;57862:11;57804:25;57846:27;:::i;:::-;:53;;;;57837:100;;;;-1:-1:-1;;;57837:100:0;;;;;;;:::i;:::-;57955:6;;;;;;;57954:7;57946:43;;;;-1:-1:-1;;;57946:43:0;;11153:2:1;57946:43:0;;;11135:21:1;11192:2;11172:18;;;11165:30;11231:25;11211:18;;;11204:53;11274:18;;57946:43:0;10951:347:1;57946:43:0;58029:27;58045:11;58029:13;:27;:::i;:::-;58015:10;58001:25;;;;:13;:25;;;;;:55;;-1:-1:-1;;58001:55:0;;;;;;;;58063:35;;;;:9;:35::i;24814:206::-;24878:7;-1:-1:-1;;;;;24902:19:0;;24898:60;;24930:28;;-1:-1:-1;;;24930:28:0;;;;;;;;;;;24898:60;-1:-1:-1;;;;;;24984:19:0;;;;;:12;:19;;;;;:27;;;;24814:206::o;51531:103::-;50952:6;;-1:-1:-1;;;;;50952:6:0;2920:10;51099:23;51091:69;;;;-1:-1:-1;;;51091:69:0;;;;;;;:::i;:::-;51596:30:::1;51623:1;51596:18;:30::i;:::-;51531:103::o:0;60441:102::-;50952:6;;-1:-1:-1;;;;;50952:6:0;2920:10;51099:23;51091:69;;;;-1:-1:-1;;;51091:69:0;;;;;;;:::i;:::-;60515:22;;::::1;::::0;:9:::1;::::0;:22:::1;::::0;::::1;::::0;::::1;:::i;:::-;;60441:102:::0;:::o;27727:104::-;27783:13;27816:7;27809:14;;;;;:::i;29337:287::-;2920:10;-1:-1:-1;;;;;29436:24:0;;;29432:54;;29469:17;;-1:-1:-1;;;29469:17:0;;;;;;;;;;;29432:54;2920:10;29499:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;29499:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;29499:53:0;;;;;;;;;;29568:48;;540:41:1;;;29499:42:0;;2920:10;29568:48;;513:18:1;29568:48:0;;;;;;;29337:287;;:::o;61104:228::-;61255:4;54657:42;55797:43;:47;55793:699;;56084:10;-1:-1:-1;;;;;56076:18:0;;;56072:85;;61277:47:::1;61300:4;61306:2;61310:7;61319:4;61277:22;:47::i;:::-;56135:7:::0;;56072:85;56217:67;;-1:-1:-1;;;56217:67:0;;56266:4;56217:67;;;8580:34:1;56273:10:0;8630:18:1;;;8623:43;54657:42:0;;56217:40;;8515:18:1;;56217:67:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:157;;;;-1:-1:-1;56313:61:0;;-1:-1:-1;;;56313:61:0;;56362:4;56313:61;;;8580:34:1;-1:-1:-1;;;;;8650:15:1;;8630:18;;;8623:43;54657:42:0;;56313:40;;8515:18:1;;56313:61:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;56171:310;;56435:30;;-1:-1:-1;;;56435:30:0;;56454:10;56435:30;;;1674:51:1;1647:18;;56435:30:0;1528:203:1;56171:310:0;61277:47:::1;61300:4;61306:2;61310:7;61319:4;61277:22;:47::i;:::-;61104:228:::0;;;;;:::o;59167:142::-;50952:6;;-1:-1:-1;;;;;50952:6:0;2920:10;51099:23;51091:69;;;;-1:-1:-1;;;51091:69:0;;;;;;;:::i;:::-;59259:19:::1;:42:::0;59167:142::o;58510:432::-;58609:13;58650:17;58658:8;58650:7;:17::i;:::-;58634:98;;;;-1:-1:-1;;;58634:98:0;;11505:2:1;58634:98:0;;;11487:21:1;11544:2;11524:18;;;11517:30;11583:34;11563:18;;;11556:62;-1:-1:-1;;;11634:18:1;;;11627:45;11689:19;;58634:98:0;11303:411:1;58634:98:0;58751:28;58782:10;:8;:10::i;:::-;58751:41;;58837:1;58812:14;58806:28;:32;:130;;;;;;;;;;;;;;;;;58874:14;58890:19;:8;:17;:19::i;:::-;58911:9;58857:64;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;58806:130;58799:137;58510:432;-1:-1:-1;;;58510:432:0:o;51789:201::-;50952:6;;-1:-1:-1;;;;;50952:6:0;2920:10;51099:23;51091:69;;;;-1:-1:-1;;;51091:69:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;51878:22:0;::::1;51870:73;;;::::0;-1:-1:-1;;;51870:73:0;;13579:2:1;51870:73:0::1;::::0;::::1;13561:21:1::0;13618:2;13598:18;;;13591:30;13657:34;13637:18;;;13630:62;-1:-1:-1;;;13708:18:1;;;13701:36;13754:19;;51870:73:0::1;13377:402:1::0;51870:73:0::1;51954:28;51973:8;51954:18;:28::i;:::-;51789:201:::0;:::o;31047:187::-;31104:4;31147:7;23551:1;31128:26;;:53;;;;;31168:13;;31158:7;:23;31128:53;:98;;;;-1:-1:-1;;31199:20:0;;;;:11;:20;;;;;:27;-1:-1:-1;;;31199:27:0;;;;31198:28;;31047:187::o;39217:196::-;39332:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;39332:29:0;-1:-1:-1;;;;;39332:29:0;;;;;;;;;39377:28;;39332:24;;39377:28;;;;;;;39217:196;;;:::o;29926:170::-;30060:28;30070:4;30076:2;30080:7;30060:9;:28::i;31242:104::-;31311:27;31321:2;31325:8;31311:27;;;;;;;;;;;;:9;:27::i;30167:185::-;30305:39;30322:4;30328:2;30332:7;30305:39;;;;;;;;;;;;:16;:39::i;59467:172::-;59547:4;59571:60;59598:5;;59605:19;;59626:4;59571:26;:60::i;:::-;59564:67;59467:172;-1:-1:-1;;;;59467:172:0:o;26195:1109::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;26306:7:0;;23551:1;26355:23;;:47;;;;;26389:13;;26382:4;:20;26355:47;26351:886;;;26423:31;26457:17;;;:11;:17;;;;;;;;;26423:51;;;;;;;;;-1:-1:-1;;;;;26423:51:0;;;;-1:-1:-1;;;26423:51:0;;;;;;;;;;;-1:-1:-1;;;26423:51:0;;;;;;;;;;;;;;26493:729;;26543:14;;-1:-1:-1;;;;;26543:28:0;;26539:101;;26607:9;26195:1109;-1:-1:-1;;;26195:1109:0:o;26539:101::-;-1:-1:-1;;;26982:6:0;27027:17;;;;:11;:17;;;;;;;;;27015:29;;;;;;;;;-1:-1:-1;;;;;27015:29:0;;;;;-1:-1:-1;;;27015:29:0;;;;;;;;;;;-1:-1:-1;;;27015:29:0;;;;;;;;;;;;;27075:28;27071:109;;27143:9;26195:1109;-1:-1:-1;;;26195:1109:0:o;27071:109::-;26942:261;;;26404:833;26351:886;27265:31;;-1:-1:-1;;;27265:31:0;;;;;;;;;;;52150:191;52243:6;;;-1:-1:-1;;;;;52260:17:0;;;-1:-1:-1;;;;;;52260:17:0;;;;;;;52293:40;;52243:6;;;52260:17;52243:6;;52293:40;;52224:16;;52293:40;52213:128;52150:191;:::o;30423:369::-;30590:28;30600:4;30606:2;30610:7;30590:9;:28::i;:::-;-1:-1:-1;;;;;30633:13:0;;4582:19;:23;;30633:76;;;;;30653:56;30684:4;30690:2;30694:7;30703:5;30653:30;:56::i;:::-;30652:57;30633:76;30629:156;;;30733:40;;-1:-1:-1;;;30733:40:0;;;;;;;;;;;60653:97;60706:13;60735:9;60728:16;;;;;:::i;402:723::-;458:13;679:5;688:1;679:10;675:53;;-1:-1:-1;;706:10:0;;;;;;;;;;;;-1:-1:-1;;;706:10:0;;;;;402:723::o;675:53::-;753:5;738:12;794:78;801:9;;794:78;;827:8;;;;:::i;:::-;;-1:-1:-1;850:10:0;;-1:-1:-1;858:2:0;850:10;;:::i;:::-;;;794:78;;;882:19;914:6;904:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;904:17:0;;882:39;;932:154;939:10;;932:154;;966:11;976:1;966:11;;:::i;:::-;;-1:-1:-1;1035:10:0;1043:2;1035:5;:10;:::i;:::-;1022:24;;:2;:24;:::i;:::-;1009:39;;992:6;999;992:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;992:56:0;;;;;;;;-1:-1:-1;1063:11:0;1072:2;1063:11;;:::i;:::-;;;932:154;;34160:2130;34275:35;34313:21;34326:7;34313:12;:21::i;:::-;34275:59;;34373:4;-1:-1:-1;;;;;34351:26:0;:13;:18;;;-1:-1:-1;;;;;34351:26:0;;34347:67;;34386:28;;-1:-1:-1;;;34386:28:0;;;;;;;;;;;34347:67;34427:22;2920:10;-1:-1:-1;;;;;34453:20:0;;;;:73;;-1:-1:-1;34490:36:0;34507:4;2920:10;29695:164;:::i;34490:36::-;34453:126;;;-1:-1:-1;2920:10:0;34543:20;34555:7;34543:11;:20::i;:::-;-1:-1:-1;;;;;34543:36:0;;34453:126;34427:153;;34598:17;34593:66;;34624:35;;-1:-1:-1;;;34624:35:0;;;;;;;;;;;34593:66;-1:-1:-1;;;;;34674:16:0;;34670:52;;34699:23;;-1:-1:-1;;;34699:23:0;;;;;;;;;;;34670:52;34843:35;34860:1;34864:7;34873:4;34843:8;:35::i;:::-;-1:-1:-1;;;;;35174:18:0;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;35174:31:0;;;;;;;-1:-1:-1;;35174:31:0;;;;;;;35220:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;35220:29:0;;;;;;;;;;;35300:20;;;:11;:20;;;;;;35335:18;;-1:-1:-1;;;;;;35368:49:0;;;;-1:-1:-1;;;35401:15:0;35368:49;;;;;;;;;;35691:11;;35751:24;;;;;35794:13;;35300:20;;35751:24;;35794:13;35790:384;;36004:13;;35989:11;:28;35985:174;;36042:20;;36111:28;;;;36085:54;;-1:-1:-1;;;36085:54:0;-1:-1:-1;;;;;;36085:54:0;;;-1:-1:-1;;;;;36042:20:0;;36085:54;;;;35985:174;35149:1036;;;36221:7;36217:2;-1:-1:-1;;;;;36202:27:0;36211:4;-1:-1:-1;;;;;36202:27:0;;;;;;;;;;;36240:42;60754:163;31709;31832:32;31838:2;31842:8;31852:5;31859:4;31832:5;:32::i;43261:208::-;43396:4;43457;43420:33;43441:5;;43448:4;43420:20;:33::i;:::-;:41;;43261:208;-1:-1:-1;;;;;43261:208:0:o;39905:667::-;40089:72;;-1:-1:-1;;;40089:72:0;;40068:4;;-1:-1:-1;;;;;40089:36:0;;;;;:72;;2920:10;;40140:4;;40146:7;;40155:5;;40089:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;40089:72:0;;;;;;;;-1:-1:-1;;40089:72:0;;;;;;;;;;;;:::i;:::-;;;40085:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40323:6;:13;40340:1;40323:18;40319:235;;40369:40;;-1:-1:-1;;;40369:40:0;;;;;;;;;;;40319:235;40512:6;40506:13;40497:6;40493:2;40489:15;40482:38;40085:480;-1:-1:-1;;;;;;40208:55:0;-1:-1:-1;;;40208:55:0;;-1:-1:-1;40201:62:0;;32131:1775;32270:20;32293:13;-1:-1:-1;;;;;32321:16:0;;32317:48;;32346:19;;-1:-1:-1;;;32346:19:0;;;;;;;;;;;32317:48;32380:8;32392:1;32380:13;32376:44;;32402:18;;-1:-1:-1;;;32402:18:0;;;;;;;;;;;32376:44;-1:-1:-1;;;;;32771:16:0;;;;;;:12;:16;;;;;;;;:44;;-1:-1:-1;;32830:49:0;;32771:44;;;;;;;;32830:49;;;;-1:-1:-1;;32771:44:0;;;;;;32830:49;;;;;;;;;;;;;;;;32896:25;;;:11;:25;;;;;;:35;;-1:-1:-1;;;;;;32946:66:0;;;;-1:-1:-1;;;32996:15:0;32946:66;;;;;;;;;;32896:25;33093:23;;;33137:4;:23;;;;-1:-1:-1;;;;;;33145:13:0;;4582:19;:23;;33145:15;33133:641;;;33181:314;33212:38;;33237:12;;-1:-1:-1;;;;;33212:38:0;;;33229:1;;33212:38;;33229:1;;33212:38;33278:69;33317:1;33321:2;33325:14;;;;;;33341:5;33278:30;:69::i;:::-;33273:174;;33383:40;;-1:-1:-1;;;33383:40:0;;;;;;;;;;;33273:174;33490:3;33474:12;:19;33181:314;;33576:12;33559:13;;:29;33555:43;;33590:8;;;33555:43;33133:641;;;33639:120;33670:40;;33695:14;;;;;-1:-1:-1;;;;;33670:40:0;;;33687:1;;33670:40;;33687:1;;33670:40;33754:3;33738:12;:19;33639:120;;33133:641;-1:-1:-1;33788:13:0;:28;33838:60;60754:163;44240:306;44333:7;44376:4;44333:7;44391:118;44411:16;;;44391:118;;;44464:33;44474:12;44488:5;;44494:1;44488:8;;;;;;;:::i;:::-;;;;;;;44464:9;:33::i;:::-;44449:48;-1:-1:-1;44429:3:0;;;;:::i;:::-;;;;44391:118;;;-1:-1:-1;44526:12:0;44240:306;-1:-1:-1;;;;44240:306:0:o;50037:149::-;50100:7;50131:1;50127;:5;:51;;50262:13;50356:15;;;50392:4;50385:15;;;50439:4;50423:21;;50127:51;;;-1:-1:-1;50262:13:0;50356:15;;;50392:4;50385:15;50439:4;50423:21;;;50037:149::o;-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;592:258::-;664:1;674:113;688:6;685:1;682:13;674:113;;;764:11;;;758:18;745:11;;;738:39;710:2;703:10;674:113;;;805:6;802:1;799:13;796:48;;;-1:-1:-1;;840:1:1;822:16;;815:27;592:258::o;855:::-;897:3;935:5;929:12;962:6;957:3;950:19;978:63;1034:6;1027:4;1022:3;1018:14;1011:4;1004:5;1000:16;978:63;:::i;:::-;1095:2;1074:15;-1:-1:-1;;1070:29:1;1061:39;;;;1102:4;1057:50;;855:258;-1:-1:-1;;855:258:1:o;1118:220::-;1267:2;1256:9;1249:21;1230:4;1287:45;1328:2;1317:9;1313:18;1305:6;1287:45;:::i;1343:180::-;1402:6;1455:2;1443:9;1434:7;1430:23;1426:32;1423:52;;;1471:1;1468;1461:12;1423:52;-1:-1:-1;1494:23:1;;1343:180;-1:-1:-1;1343:180:1:o;1736:173::-;1804:20;;-1:-1:-1;;;;;1853:31:1;;1843:42;;1833:70;;1899:1;1896;1889:12;1833:70;1736:173;;;:::o;1914:254::-;1982:6;1990;2043:2;2031:9;2022:7;2018:23;2014:32;2011:52;;;2059:1;2056;2049:12;2011:52;2082:29;2101:9;2082:29;:::i;:::-;2072:39;2158:2;2143:18;;;;2130:32;;-1:-1:-1;;;1914:254:1:o;2355:328::-;2432:6;2440;2448;2501:2;2489:9;2480:7;2476:23;2472:32;2469:52;;;2517:1;2514;2507:12;2469:52;2540:29;2559:9;2540:29;:::i;:::-;2530:39;;2588:38;2622:2;2611:9;2607:18;2588:38;:::i;:::-;2578:48;;2673:2;2662:9;2658:18;2645:32;2635:42;;2355:328;;;;;:::o;2688:346::-;2755:6;2763;2816:2;2804:9;2795:7;2791:23;2787:32;2784:52;;;2832:1;2829;2822:12;2784:52;2871:9;2858:23;2921:6;2914:5;2910:18;2903:5;2900:29;2890:57;;2943:1;2940;2933:12;2890:57;2966:5;-1:-1:-1;2990:38:1;3024:2;3009:18;;2990:38;:::i;:::-;2980:48;;2688:346;;;;;:::o;3039:156::-;3105:20;;3165:4;3154:16;;3144:27;;3134:55;;3185:1;3182;3175:12;3200:182;3257:6;3310:2;3298:9;3289:7;3285:23;3281:32;3278:52;;;3326:1;3323;3316:12;3278:52;3349:27;3366:9;3349:27;:::i;3387:685::-;3480:6;3488;3496;3549:2;3537:9;3528:7;3524:23;3520:32;3517:52;;;3565:1;3562;3555:12;3517:52;3588:27;3605:9;3588:27;:::i;:::-;3578:37;;3666:2;3655:9;3651:18;3638:32;3689:18;3730:2;3722:6;3719:14;3716:34;;;3746:1;3743;3736:12;3716:34;3784:6;3773:9;3769:22;3759:32;;3829:7;3822:4;3818:2;3814:13;3810:27;3800:55;;3851:1;3848;3841:12;3800:55;3891:2;3878:16;3917:2;3909:6;3906:14;3903:34;;;3933:1;3930;3923:12;3903:34;3986:7;3981:2;3971:6;3968:1;3964:14;3960:2;3956:23;3952:32;3949:45;3946:65;;;4007:1;4004;3997:12;3946:65;4038:2;4034;4030:11;4020:21;;4060:6;4050:16;;;;;3387:685;;;;;:::o;4077:186::-;4136:6;4189:2;4177:9;4168:7;4164:23;4160:32;4157:52;;;4205:1;4202;4195:12;4157:52;4228:29;4247:9;4228:29;:::i;4457:127::-;4518:10;4513:3;4509:20;4506:1;4499:31;4549:4;4546:1;4539:15;4573:4;4570:1;4563:15;4589:632;4654:5;4684:18;4725:2;4717:6;4714:14;4711:40;;;4731:18;;:::i;:::-;4806:2;4800:9;4774:2;4860:15;;-1:-1:-1;;4856:24:1;;;4882:2;4852:33;4848:42;4836:55;;;4906:18;;;4926:22;;;4903:46;4900:72;;;4952:18;;:::i;:::-;4992:10;4988:2;4981:22;5021:6;5012:15;;5051:6;5043;5036:22;5091:3;5082:6;5077:3;5073:16;5070:25;5067:45;;;5108:1;5105;5098:12;5067:45;5158:6;5153:3;5146:4;5138:6;5134:17;5121:44;5213:1;5206:4;5197:6;5189;5185:19;5181:30;5174:41;;;;4589:632;;;;;:::o;5226:451::-;5295:6;5348:2;5336:9;5327:7;5323:23;5319:32;5316:52;;;5364:1;5361;5354:12;5316:52;5404:9;5391:23;5437:18;5429:6;5426:30;5423:50;;;5469:1;5466;5459:12;5423:50;5492:22;;5545:4;5537:13;;5533:27;-1:-1:-1;5523:55:1;;5574:1;5571;5564:12;5523:55;5597:74;5663:7;5658:2;5645:16;5640:2;5636;5632:11;5597:74;:::i;5682:118::-;5768:5;5761:13;5754:21;5747:5;5744:32;5734:60;;5790:1;5787;5780:12;5805:315;5870:6;5878;5931:2;5919:9;5910:7;5906:23;5902:32;5899:52;;;5947:1;5944;5937:12;5899:52;5970:29;5989:9;5970:29;:::i;:::-;5960:39;;6049:2;6038:9;6034:18;6021:32;6062:28;6084:5;6062:28;:::i;:::-;6109:5;6099:15;;;5805:315;;;;;:::o;6307:667::-;6402:6;6410;6418;6426;6479:3;6467:9;6458:7;6454:23;6450:33;6447:53;;;6496:1;6493;6486:12;6447:53;6519:29;6538:9;6519:29;:::i;:::-;6509:39;;6567:38;6601:2;6590:9;6586:18;6567:38;:::i;:::-;6557:48;;6652:2;6641:9;6637:18;6624:32;6614:42;;6707:2;6696:9;6692:18;6679:32;6734:18;6726:6;6723:30;6720:50;;;6766:1;6763;6756:12;6720:50;6789:22;;6842:4;6834:13;;6830:27;-1:-1:-1;6820:55:1;;6871:1;6868;6861:12;6820:55;6894:74;6960:7;6955:2;6942:16;6937:2;6933;6929:11;6894:74;:::i;:::-;6884:84;;;6307:667;;;;;;;:::o;7357:260::-;7425:6;7433;7486:2;7474:9;7465:7;7461:23;7457:32;7454:52;;;7502:1;7499;7492:12;7454:52;7525:29;7544:9;7525:29;:::i;7622:380::-;7701:1;7697:12;;;;7744;;;7765:61;;7819:4;7811:6;7807:17;7797:27;;7765:61;7872:2;7864:6;7861:14;7841:18;7838:38;7835:161;;7918:10;7913:3;7909:20;7906:1;7899:31;7953:4;7950:1;7943:15;7981:4;7978:1;7971:15;7835:161;;7622:380;;;:::o;8007:356::-;8209:2;8191:21;;;8228:18;;;8221:30;8287:34;8282:2;8267:18;;8260:62;8354:2;8339:18;;8007:356::o;8677:245::-;8744:6;8797:2;8785:9;8776:7;8772:23;8768:32;8765:52;;;8813:1;8810;8803:12;8765:52;8845:9;8839:16;8864:28;8886:5;8864:28;:::i;8927:127::-;8988:10;8983:3;8979:20;8976:1;8969:31;9019:4;9016:1;9009:15;9043:4;9040:1;9033:15;9059:224;9098:3;9126:6;9159:2;9156:1;9152:10;9189:2;9186:1;9182:10;9220:3;9216:2;9212:12;9207:3;9204:21;9201:47;;;9228:18;;:::i;:::-;9264:13;;9059:224;-1:-1:-1;;;;9059:224:1:o;9288:343::-;9490:2;9472:21;;;9529:2;9509:18;;;9502:30;-1:-1:-1;;;9563:2:1;9548:18;;9541:49;9622:2;9607:18;;9288:343::o;9985:204::-;10023:3;10059:4;10056:1;10052:12;10091:4;10088:1;10084:12;10126:3;10120:4;10116:14;10111:3;10108:23;10105:49;;;10134:18;;:::i;:::-;10170:13;;9985:204;-1:-1:-1;;;9985:204:1:o;10194:397::-;10396:2;10378:21;;;10435:2;10415:18;;;10408:30;10474:34;10469:2;10454:18;;10447:62;-1:-1:-1;;;10540:2:1;10525:18;;10518:31;10581:3;10566:19;;10194:397::o;11845:1527::-;12069:3;12107:6;12101:13;12133:4;12146:51;12190:6;12185:3;12180:2;12172:6;12168:15;12146:51;:::i;:::-;12260:13;;12219:16;;;;12282:55;12260:13;12219:16;12304:15;;;12282:55;:::i;:::-;12426:13;;12359:20;;;12399:1;;12486;12508:18;;;;12561;;;;12588:93;;12666:4;12656:8;12652:19;12640:31;;12588:93;12729:2;12719:8;12716:16;12696:18;12693:40;12690:167;;-1:-1:-1;;;12756:33:1;;12812:4;12809:1;12802:15;12842:4;12763:3;12830:17;12690:167;12873:18;12900:110;;;;13024:1;13019:328;;;;12866:481;;12900:110;-1:-1:-1;;12935:24:1;;12921:39;;12980:20;;;;-1:-1:-1;12900:110:1;;13019:328;11792:1;11785:14;;;11829:4;11816:18;;13114:1;13128:169;13142:8;13139:1;13136:15;13128:169;;;13224:14;;13209:13;;;13202:37;13267:16;;;;13159:10;;13128:169;;;13132:3;;13328:8;13321:5;13317:20;13310:27;;12866:481;-1:-1:-1;13363:3:1;;11845:1527;-1:-1:-1;;;;;;;;;;;11845:1527:1:o;14018:135::-;14057:3;14078:17;;;14075:43;;14098:18;;:::i;:::-;-1:-1:-1;14145:1:1;14134:13;;14018:135::o;14158:127::-;14219:10;14214:3;14210:20;14207:1;14200:31;14250:4;14247:1;14240:15;14274:4;14271:1;14264:15;14290:120;14330:1;14356;14346:35;;14361:18;;:::i;:::-;-1:-1:-1;14395:9:1;;14290:120::o;14415:125::-;14455:4;14483:1;14480;14477:8;14474:34;;;14488:18;;:::i;:::-;-1:-1:-1;14525:9:1;;14415:125::o;14545:112::-;14577:1;14603;14593:35;;14608:18;;:::i;:::-;-1:-1:-1;14642:9:1;;14545:112::o;14662:128::-;14702:3;14733:1;14729:6;14726:1;14723:13;14720:39;;;14739:18;;:::i;:::-;-1:-1:-1;14775:9:1;;14662:128::o;14795:127::-;14856:10;14851:3;14847:20;14844:1;14837:31;14887:4;14884:1;14877:15;14911:4;14908:1;14901:15;14927:489;-1:-1:-1;;;;;15196:15:1;;;15178:34;;15248:15;;15243:2;15228:18;;15221:43;15295:2;15280:18;;15273:34;;;15343:3;15338:2;15323:18;;15316:31;;;15121:4;;15364:46;;15390:19;;15382:6;15364:46;:::i;:::-;15356:54;14927:489;-1:-1:-1;;;;;;14927:489:1:o;15421:249::-;15490:6;15543:2;15531:9;15522:7;15518:23;15514:32;15511:52;;;15559:1;15556;15549:12;15511:52;15591:9;15585:16;15610:30;15634:5;15610:30;:::i
Swarm Source
ipfs://d7c15c582cf662beb844c9b09cb3af716e21dfd5a399931c01c6b2e235164d43
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.