ERC-721
Overview
Max Total Supply
10,720 MP
Holders
331
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
1 MPLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
MetaPlaces
Compiler Version
v0.8.12+commit.f00d7308
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-04-16 */ // File contracts/Archive/lib/utils/introspection/IERC165.sol // SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) pragma solidity ^0.8.4; /** * @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 contracts/Archive/lib/token/ERC721/IERC721.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol) /** * @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 contracts/Archive/lib/token/ERC721/IERC721Receiver.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol) /** * @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 contracts/Archive/lib/token/ERC721/extensions/IERC721Metadata.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol) /** * @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/Archive/lib/utils/Address.sol // OpenZeppelin Contracts v4.4.1 (utils/Address.sol) /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; assembly { size := extcodesize(account) } return size > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } // File contracts/Archive/lib/utils/Context.sol // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) /** * @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 contracts/Archive/lib/utils/Strings.sol // OpenZeppelin Contracts v4.4.1 (utils/Strings.sol) /** * @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 contracts/Archive/lib/utils/introspection/ERC165.sol // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) /** * @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 contracts/Archive/lib/token/ERC721A.sol // Creator: Chiru Labs 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 0; } /** * @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 {} } // File contracts/Archive/lib/token/ERC721AOwnersExplicit.sol // Creator: Chiru Labs error AllOwnershipsHaveBeenSet(); error QuantityMustBeNonZero(); error NoTokensMintedYet(); abstract contract ERC721AOwnersExplicit is ERC721A { uint256 public nextOwnerToExplicitlySet; /** * @dev Explicitly set `owners` to eliminate loops in future calls of ownerOf(). */ function _setOwnersExplicit(uint256 quantity) internal { if (quantity == 0) revert QuantityMustBeNonZero(); if (_currentIndex == _startTokenId()) revert NoTokensMintedYet(); uint256 _nextOwnerToExplicitlySet = nextOwnerToExplicitlySet; if (_nextOwnerToExplicitlySet == 0) { _nextOwnerToExplicitlySet = _startTokenId(); } if (_nextOwnerToExplicitlySet >= _currentIndex) revert AllOwnershipsHaveBeenSet(); // Index underflow is impossible. // Counter or index overflow is incredibly unrealistic. unchecked { uint256 endIndex = _nextOwnerToExplicitlySet + quantity - 1; // Set the end index to be the last token index if (endIndex + 1 > _currentIndex) { endIndex = _currentIndex - 1; } for (uint256 i = _nextOwnerToExplicitlySet; i <= endIndex; i++) { if (_ownerships[i].addr == address(0) && !_ownerships[i].burned) { TokenOwnership memory ownership = _ownershipOf(i); _ownerships[i].addr = ownership.addr; _ownerships[i].startTimestamp = ownership.startTimestamp; } } nextOwnerToExplicitlySet = endIndex + 1; } } } // File contracts/Archive/lib/token/ERC721/extensions/ERC721Ownable.sol // OpenZeppelin Contracts v4.4.1 (access/Ownable.sol) /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // File contracts/Archive/lib/utils/cryptography/MerkleProof.sol // OpenZeppelin Contracts v4.4.1 (utils/cryptography/MerkleProof.sol) /** * @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 Returns the rebuilt hash obtained by traversing a Merklee 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++) { bytes32 proofElement = proof[i]; if (computedHash <= proofElement) { // Hash(current computed hash + current element of the proof) computedHash = keccak256(abi.encodePacked(computedHash, proofElement)); } else { // Hash(current element of the proof + current computed hash) computedHash = keccak256(abi.encodePacked(proofElement, computedHash)); } } return computedHash; } } // File contracts/Archive/contracts/Erc721amp.sol // Creators: Chiru Labs // import "../lib/utils/ReentrancyGuard.sol"; contract ERC721AMP is ERC721AOwnersExplicit, Ownable { // Mint Sale dates uint32 private wlSaleStartTime; uint32 private publicSaleStartTime; // Max Supply uint16 public constant maxSupply = 6000; // Mint config uint16 private constant maxBatchSize = 20; uint16 private constant maxWlMintNumber = 12; uint16 private constant maxMintTx = 12; // Number of NFTs reserved for the dev & marketing team uint16 private constant devMintAmount = 60; bool private devMinted = false; bytes32 private rootmt; // Mint Price uint256 public constant mintPrice = 0.18 ether; uint256 public constant wlMintPrice = 0.149 ether; // Metadata URI string private _baseTokenURI; constructor(string memory name_, string memory symbol_) ERC721A(name_, symbol_) {} modifier callerIsUser() { require(tx.origin == msg.sender, "The caller is another contract"); _; } function numberMinted(address owner) public view returns (uint256) { return _numberMinted(owner); } function totalMinted() public view returns (uint256) { return _totalMinted(); } function baseURI() public view returns (string memory) { return _baseURI(); } function exists(uint256 tokenId) public view returns (bool) { return _exists(tokenId); } // Verifying whitelist spot function checkValidity(bytes32[] calldata _merkleProof) public view returns (bool) { bytes32 leaf = keccak256(abi.encodePacked(_msgSender())); require( MerkleProof.verify(_merkleProof, rootmt, leaf), "Incorrect proof" ); return true; } function setRootMerkleHash(bytes32 _rootmt) external onlyOwner { rootmt = _rootmt; } // Mint dates could be set to a distant future to stop the mint function setMintDates(uint32 wlDate, uint32 publicDate) external onlyOwner { require(wlDate != 0 && publicDate != 0, "dates must be defined"); wlSaleStartTime = wlDate; publicSaleStartTime = publicDate; } function publicMint(address to, uint256 quantity) external payable callerIsUser { require(isPublicSaleOn(), "public sale has not started yet"); require(quantity <= maxMintTx, "can not mint this many at once"); require(msg.value >= mintPrice * quantity, "need to send more ETH"); safeMint(to, quantity); } // Only whitelisted addresses are authorized to mint during the Whitelist Mint function whitelistMint( address to, uint256 quantity, bytes32[] calldata _merkleProof ) external payable { require(isWlSaleOn(), "whitelist sale has not started yet"); require( numberMinted(to) + quantity <= maxWlMintNumber, "can not mint this many" ); // Checking address to instead of _msgSender() bytes32 leaf = keccak256(abi.encodePacked(to)); require( MerkleProof.verify(_merkleProof, rootmt, leaf), "Incorrect proof" ); require(msg.value >= wlMintPrice * quantity, "need to send more ETH"); safeMint(to, quantity); } function safeMint(address to, uint256 quantity) private { require( totalSupply() + quantity <= maxSupply, "insufficient remaining supply for desired mint amount" ); require( quantity > 0 && quantity <= maxBatchSize, "incorrect mint quantity" ); _safeMint(to, quantity); } receive() external payable {} function isWlSaleOn() public view returns (bool) { uint256 _wlSaleStartTime = uint256(wlSaleStartTime); return _wlSaleStartTime != 0 && block.timestamp >= _wlSaleStartTime; } function isPublicSaleOn() public view returns (bool) { uint256 _publicSaleStartTime = uint256(publicSaleStartTime); return _publicSaleStartTime != 0 && block.timestamp >= _publicSaleStartTime; } // Executed only once at contract creation to generate NFTs for marketing and developers function devMint(address _address) external onlyOwner { uint _mintQuantity = devMintAmount; uint _maxBatchSize = maxBatchSize; require(devMinted == false, "Dev already minted"); require( totalSupply() + _mintQuantity <= maxSupply, "insufficient supply" ); require( _mintQuantity % _maxBatchSize == 0, "can only mint a multiple of the maxBatchSize" ); uint numChunks = _mintQuantity / _maxBatchSize; devMinted = true; for (uint i = 0; i < numChunks; i++) { _safeMint(_address, _maxBatchSize); } } function _baseURI() internal view virtual override returns (string memory) { return _baseTokenURI; } function setBaseURI(string calldata baseURIValue) external onlyOwner { _baseTokenURI = baseURIValue; } function withdraw() external onlyOwner { (bool success, ) = msg.sender.call{value: address(this).balance}(""); require(success, "Transfer failed."); } function setOwnersExplicit(uint256 quantity) external onlyOwner { _setOwnersExplicit(quantity); } function getOwnershipData(uint256 tokenId) external view returns (TokenOwnership memory) { return _ownershipOf(tokenId); } } // File contracts/Archive/contracts/MP.sol contract MetaPlaces is ERC721AMP { constructor() ERC721AMP("MP", "MP") {} function mint(uint256 quantity) external payable { // _safeMint's second argument now takes in a quantity, not a tokenId. _safeMint(msg.sender, quantity); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"AllOwnershipsHaveBeenSet","type":"error"},{"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":[],"name":"NoTokensMintedYet","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"QuantityMustBeNonZero","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"_merkleProof","type":"bytes32[]"}],"name":"checkValidity","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"devMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"exists","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getOwnershipData","outputs":[{"components":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"uint64","name":"startTimestamp","type":"uint64"},{"internalType":"bool","name":"burned","type":"bool"}],"internalType":"struct ERC721A.TokenOwnership","name":"","type":"tuple"}],"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":"isPublicSaleOn","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isWlSaleOn","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nextOwnerToExplicitlySet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"numberMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"publicMint","outputs":[],"stateMutability":"payable","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":"string","name":"baseURIValue","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint32","name":"wlDate","type":"uint32"},{"internalType":"uint32","name":"publicDate","type":"uint32"}],"name":"setMintDates","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"setOwnersExplicit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_rootmt","type":"bytes32"}],"name":"setRootMerkleHash","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":"totalMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"quantity","type":"uint256"},{"internalType":"bytes32[]","name":"_merkleProof","type":"bytes32[]"}],"name":"whitelistMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"wlMintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
60806040526009805460ff60e01b191690553480156200001e57600080fd5b506040518060400160405280600281526020016104d560f41b8152506040518060400160405280600281526020016104d560f41b815250818181600290805190602001906200006f929190620000f1565b50805162000085906003906020840190620000f1565b5050600080555062000097336200009f565b5050620001d4565b600980546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b828054620000ff9062000197565b90600052602060002090601f0160209004810192826200012357600085556200016e565b82601f106200013e57805160ff19168380011785556200016e565b828001600101855582156200016e579182015b828111156200016e57825182559160200191906001019062000151565b506200017c92915062000180565b5090565b5b808211156200017c576000815560010162000181565b600181811c90821680620001ac57607f821691505b60208210811415620001ce57634e487b7160e01b600052602260045260246000fd5b50919050565b61259380620001e46000396000f3fe6080604052600436106102295760003560e01c806370a0823111610123578063b88d4fde116100ab578063d5abeb011161006f578063d5abeb0114610641578063d7224ba01461066a578063dc33e68114610680578063e985e9c5146106a0578063f2fde38b146106e957600080fd5b8063b88d4fde146105b9578063c507b806146105d9578063c87b56dd146105f9578063ce6df2b914610619578063d334c54f1461062c57600080fd5b8063954d90d0116100f2578063954d90d01461053c57806395d89b411461055c578063a0712d6814610571578063a22cb46514610584578063a2309ff8146105a457600080fd5b806370a0823114610493578063715018a6146104b35780638da5cb5b146104c85780639231ab2a146104e657600080fd5b80633ccfd60b116101b15780634f558e79116101755780634f558e791461040257806355f804b3146104225780636352211e146104425780636817c76c146104625780636c0360eb1461047e57600080fd5b80633ccfd60b146103855780633f5e47411461039a57806341ee05f7146103af57806342842e0e146103cf5780634b11faaf146103ef57600080fd5b806318160ddd116101f857806318160ddd146102e657806323b872dd146103095780632c4e9fc6146103295780632d20fb60146103455780632d4d87651461036557600080fd5b806301ffc9a71461023557806306fdde031461026a578063081812fc1461028c578063095ea7b3146102c457600080fd5b3661023057005b600080fd5b34801561024157600080fd5b50610255610250366004611f5f565b610709565b60405190151581526020015b60405180910390f35b34801561027657600080fd5b5061027f61075b565b6040516102619190611fd4565b34801561029857600080fd5b506102ac6102a7366004611fe7565b6107ed565b6040516001600160a01b039091168152602001610261565b3480156102d057600080fd5b506102e46102df36600461201c565b610831565b005b3480156102f257600080fd5b50600154600054035b604051908152602001610261565b34801561031557600080fd5b506102e4610324366004612046565b6108bf565b34801561033557600080fd5b506102fb6702115ab5e788800081565b34801561035157600080fd5b506102e4610360366004611fe7565b6108ca565b34801561037157600080fd5b506102e4610380366004611fe7565b610909565b34801561039157600080fd5b506102e4610938565b3480156103a657600080fd5b506102556109ed565b3480156103bb57600080fd5b506102e46103ca366004612082565b610a15565b3480156103db57600080fd5b506102e46103ea366004612046565b610bae565b6102e46103fd3660046120e8565b610bc9565b34801561040e57600080fd5b5061025561041d366004611fe7565b610da1565b34801561042e57600080fd5b506102e461043d366004612141565b610dac565b34801561044e57600080fd5b506102ac61045d366004611fe7565b610de2565b34801561046e57600080fd5b506102fb67027f7d0bdb92000081565b34801561048a57600080fd5b5061027f610df4565b34801561049f57600080fd5b506102fb6104ae366004612082565b610e03565b3480156104bf57600080fd5b506102e4610e51565b3480156104d457600080fd5b506009546001600160a01b03166102ac565b3480156104f257600080fd5b50610506610501366004611fe7565b610e87565b6040805182516001600160a01b031681526020808401516001600160401b03169082015291810151151590820152606001610261565b34801561054857600080fd5b506102556105573660046121b2565b610ead565b34801561056857600080fd5b5061027f610f71565b6102e461057f366004611fe7565b610f80565b34801561059057600080fd5b506102e461059f3660046121f3565b610f8a565b3480156105b057600080fd5b506000546102fb565b3480156105c557600080fd5b506102e46105d4366004612245565b611020565b3480156105e557600080fd5b506102e46105f4366004612334565b611071565b34801561060557600080fd5b5061027f610614366004611fe7565b611139565b6102e461062736600461201c565b6111be565b34801561063857600080fd5b50610255611319565b34801561064d57600080fd5b5061065761177081565b60405161ffff9091168152602001610261565b34801561067657600080fd5b506102fb60085481565b34801561068c57600080fd5b506102fb61069b366004612082565b61133e565b3480156106ac57600080fd5b506102556106bb366004612367565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b3480156106f557600080fd5b506102e4610704366004612082565b61136c565b60006001600160e01b031982166380ac58cd60e01b148061073a57506001600160e01b03198216635b5e139f60e01b145b8061075557506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606002805461076a90612391565b80601f016020809104026020016040519081016040528092919081815260200182805461079690612391565b80156107e35780601f106107b8576101008083540402835291602001916107e3565b820191906000526020600020905b8154815290600101906020018083116107c657829003601f168201915b5050505050905090565b60006107f882611404565b610815576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600061083c82610de2565b9050806001600160a01b0316836001600160a01b031614156108715760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b03821614801590610891575061088f81336106bb565b155b156108af576040516367d9dca160e11b815260040160405180910390fd5b6108ba83838361142f565b505050565b6108ba83838361148b565b6009546001600160a01b031633146108fd5760405162461bcd60e51b81526004016108f4906123cc565b60405180910390fd5b61090681611676565b50565b6009546001600160a01b031633146109335760405162461bcd60e51b81526004016108f4906123cc565b600a55565b6009546001600160a01b031633146109625760405162461bcd60e51b81526004016108f4906123cc565b604051600090339047908381818185875af1925050503d80600081146109a4576040519150601f19603f3d011682016040523d82523d6000602084013e6109a9565b606091505b50509050806109065760405162461bcd60e51b815260206004820152601060248201526f2a3930b739b332b9103330b4b632b21760811b60448201526064016108f4565b600954600090600160c01b900463ffffffff168015801590610a0f5750804210155b91505090565b6009546001600160a01b03163314610a3f5760405162461bcd60e51b81526004016108f4906123cc565b600954603c90601490600160e01b900460ff1615610a945760405162461bcd60e51b815260206004820152601260248201527111195d88185b1c9958591e481b5a5b9d195960721b60448201526064016108f4565b61177082610aa56001546000540390565b610aaf9190612417565b1115610af35760405162461bcd60e51b8152602060048201526013602482015272696e73756666696369656e7420737570706c7960681b60448201526064016108f4565b610afd8183612445565b15610b5f5760405162461bcd60e51b815260206004820152602c60248201527f63616e206f6e6c79206d696e742061206d756c7469706c65206f66207468652060448201526b6d6178426174636853697a6560a01b60648201526084016108f4565b6000610b6b8284612459565b6009805460ff60e01b1916600160e01b179055905060005b81811015610ba757610b9585846117ad565b80610b9f8161246d565b915050610b83565b5050505050565b6108ba83838360405180602001604052806000815250611020565b610bd1611319565b610c285760405162461bcd60e51b815260206004820152602260248201527f77686974656c6973742073616c6520686173206e6f7420737461727465642079604482015261195d60f21b60648201526084016108f4565b600c83610c348661133e565b610c3e9190612417565b1115610c855760405162461bcd60e51b815260206004820152601660248201527563616e206e6f74206d696e742074686973206d616e7960501b60448201526064016108f4565b6040516bffffffffffffffffffffffff19606086901b166020820152600090603401604051602081830303815290604052805190602001209050610d0083838080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050600a5491508490506117c7565b610d3e5760405162461bcd60e51b815260206004820152600f60248201526e24b731b7b93932b1ba10383937b7b360891b60448201526064016108f4565b610d50846702115ab5e7888000612488565b341015610d975760405162461bcd60e51b81526020600482015260156024820152740dccacac840e8de40e6cadcc840dadee4ca408aa89605b1b60448201526064016108f4565b610ba785856117dd565b600061075582611404565b6009546001600160a01b03163314610dd65760405162461bcd60e51b81526004016108f4906123cc565b6108ba600b8383611eb0565b6000610ded826118cb565b5192915050565b6060610dfe6119e5565b905090565b60006001600160a01b038216610e2c576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600560205260409020546001600160401b031690565b6009546001600160a01b03163314610e7b5760405162461bcd60e51b81526004016108f4906123cc565b610e8560006119f4565b565b6040805160608101825260008082526020820181905291810191909152610755826118cb565b6040516bffffffffffffffffffffffff193360601b1660208201526000908190603401604051602081830303815290604052805190602001209050610f2984848080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050600a5491508490506117c7565b610f675760405162461bcd60e51b815260206004820152600f60248201526e24b731b7b93932b1ba10383937b7b360891b60448201526064016108f4565b5060019392505050565b60606003805461076a90612391565b61090633826117ad565b6001600160a01b038216331415610fb45760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b61102b84848461148b565b6001600160a01b0383163b1515801561104d575061104b84848484611a46565b155b1561106b576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6009546001600160a01b0316331461109b5760405162461bcd60e51b81526004016108f4906123cc565b63ffffffff8216158015906110b5575063ffffffff811615155b6110f95760405162461bcd60e51b815260206004820152601560248201527419185d195cc81b5d5cdd081899481919599a5b9959605a1b60448201526064016108f4565b6009805467ffffffffffffffff60a01b1916600160a01b63ffffffff9485160263ffffffff60c01b191617600160c01b9290931691909102919091179055565b606061114482611404565b61116157604051630a14c4b560e41b815260040160405180910390fd5b600061116b6119e5565b905080516000141561118c57604051806020016040528060008152506111b7565b8061119684611b2f565b6040516020016111a79291906124a7565b6040516020818303038152906040525b9392505050565b32331461120d5760405162461bcd60e51b815260206004820152601e60248201527f5468652063616c6c657220697320616e6f7468657220636f6e7472616374000060448201526064016108f4565b6112156109ed565b6112615760405162461bcd60e51b815260206004820152601f60248201527f7075626c69632073616c6520686173206e6f742073746172746564207965740060448201526064016108f4565b600c8111156112b25760405162461bcd60e51b815260206004820152601e60248201527f63616e206e6f74206d696e742074686973206d616e79206174206f6e6365000060448201526064016108f4565b6112c48167027f7d0bdb920000612488565b34101561130b5760405162461bcd60e51b81526020600482015260156024820152740dccacac840e8de40e6cadcc840dadee4ca408aa89605b1b60448201526064016108f4565b61131582826117dd565b5050565b600954600090600160a01b900463ffffffff168015801590610a0f5750421015919050565b6001600160a01b038116600090815260056020526040812054600160401b90046001600160401b0316610755565b6009546001600160a01b031633146113965760405162461bcd60e51b81526004016108f4906123cc565b6001600160a01b0381166113fb5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016108f4565b610906816119f4565b6000805482108015610755575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000611496826118cb565b9050836001600160a01b031681600001516001600160a01b0316146114cd5760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b03861614806114eb57506114eb85336106bb565b806115065750336114fb846107ed565b6001600160a01b0316145b90508061152657604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b03841661154d57604051633a954ecd60e21b815260040160405180910390fd5b6115596000848761142f565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff198082166001600160401b0392831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b4290921691909102178355870180845292208054919390911661162d57600054821461162d57805460208601516001600160401b0316600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610ba7565b80611694576040516356be441560e01b815260040160405180910390fd5b6000546116b45760405163c0367cab60e01b815260040160405180910390fd5b600854806116c0575060005b60005481106116e2576040516370e89b1b60e01b815260040160405180910390fd5b60005482820160001981019110156116fd5750600054600019015b815b8181116117a2576000818152600460205260409020546001600160a01b03161580156117415750600081815260046020526040902054600160e01b900460ff16155b1561179a576000611751826118cb565b80516000848152600460209081526040909120805491909301516001600160401b0316600160a01b026001600160e01b03199091166001600160a01b0390921691909117179055505b6001016116ff565b506001016008555050565b611315828260405180602001604052806000815250611c2c565b6000826117d48584611c39565b14949350505050565b611770816117ee6001546000540390565b6117f89190612417565b11156118645760405162461bcd60e51b815260206004820152603560248201527f696e73756666696369656e742072656d61696e696e6720737570706c7920666f6044820152741c8819195cda5c9959081b5a5b9d08185b5bdd5b9d605a1b60648201526084016108f4565b600081118015611875575060148111155b6118c15760405162461bcd60e51b815260206004820152601760248201527f696e636f7272656374206d696e74207175616e7469747900000000000000000060448201526064016108f4565b61131582826117ad565b6040805160608101825260008082526020820181905291810191909152816000548110156119cc57600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff161515918101829052906119ca5780516001600160a01b031615611961579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b82046001600160401b031693830193909352600160e01b900460ff16151592810192909252156119c5579392505050565b611961565b505b604051636f96cda160e11b815260040160405180910390fd5b6060600b805461076a90612391565b600980546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290611a7b9033908990889088906004016124d6565b6020604051808303816000875af1925050508015611ab6575060408051601f3d908101601f19168201909252611ab391810190612513565b60015b611b11573d808015611ae4576040519150601f19603f3d011682016040523d82523d6000602084013e611ae9565b606091505b508051611b09576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b606081611b535750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611b7d5780611b678161246d565b9150611b769050600a83612459565b9150611b57565b6000816001600160401b03811115611b9757611b9761222f565b6040519080825280601f01601f191660200182016040528015611bc1576020820181803683370190505b5090505b8415611b2757611bd6600183612530565b9150611be3600a86612445565b611bee906030612417565b60f81b818381518110611c0357611c03612547565b60200101906001600160f81b031916908160001a905350611c25600a86612459565b9450611bc5565b6108ba8383836001611ce5565b600081815b8451811015611cdd576000858281518110611c5b57611c5b612547565b60200260200101519050808311611c9d576040805160208101859052908101829052606001604051602081830303815290604052805190602001209250611cca565b60408051602081018390529081018490526060016040516020818303038152906040528051906020012092505b5080611cd58161246d565b915050611c3e565b509392505050565b6000546001600160a01b038516611d0e57604051622e076360e81b815260040160405180910390fd5b83611d2c5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff1981166001600160401b038083168c018116918217600160401b67ffffffffffffffff1990941690921783900481168c01811690920217909155858452600490925290912080546001600160e01b031916909217600160a01b429092169190910217905580808501838015611dd857506001600160a01b0387163b15155b15611e61575b60405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4611e296000888480600101955088611a46565b611e46576040516368d2bf6b60e11b815260040160405180910390fd5b80821415611dde578260005414611e5c57600080fd5b611ea7565b5b6040516001830192906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a480821415611e62575b50600055610ba7565b828054611ebc90612391565b90600052602060002090601f016020900481019282611ede5760008555611f24565b82601f10611ef75782800160ff19823516178555611f24565b82800160010185558215611f24579182015b82811115611f24578235825591602001919060010190611f09565b50611f30929150611f34565b5090565b5b80821115611f305760008155600101611f35565b6001600160e01b03198116811461090657600080fd5b600060208284031215611f7157600080fd5b81356111b781611f49565b60005b83811015611f97578181015183820152602001611f7f565b8381111561106b5750506000910152565b60008151808452611fc0816020860160208601611f7c565b601f01601f19169290920160200192915050565b6020815260006111b76020830184611fa8565b600060208284031215611ff957600080fd5b5035919050565b80356001600160a01b038116811461201757600080fd5b919050565b6000806040838503121561202f57600080fd5b61203883612000565b946020939093013593505050565b60008060006060848603121561205b57600080fd5b61206484612000565b925061207260208501612000565b9150604084013590509250925092565b60006020828403121561209457600080fd5b6111b782612000565b60008083601f8401126120af57600080fd5b5081356001600160401b038111156120c657600080fd5b6020830191508360208260051b85010111156120e157600080fd5b9250929050565b600080600080606085870312156120fe57600080fd5b61210785612000565b93506020850135925060408501356001600160401b0381111561212957600080fd5b6121358782880161209d565b95989497509550505050565b6000806020838503121561215457600080fd5b82356001600160401b038082111561216b57600080fd5b818501915085601f83011261217f57600080fd5b81358181111561218e57600080fd5b8660208285010111156121a057600080fd5b60209290920196919550909350505050565b600080602083850312156121c557600080fd5b82356001600160401b038111156121db57600080fd5b6121e78582860161209d565b90969095509350505050565b6000806040838503121561220657600080fd5b61220f83612000565b91506020830135801515811461222457600080fd5b809150509250929050565b634e487b7160e01b600052604160045260246000fd5b6000806000806080858703121561225b57600080fd5b61226485612000565b935061227260208601612000565b92506040850135915060608501356001600160401b038082111561229557600080fd5b818701915087601f8301126122a957600080fd5b8135818111156122bb576122bb61222f565b604051601f8201601f19908116603f011681019083821181831017156122e3576122e361222f565b816040528281528a60208487010111156122fc57600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b803563ffffffff8116811461201757600080fd5b6000806040838503121561234757600080fd5b61235083612320565b915061235e60208401612320565b90509250929050565b6000806040838503121561237a57600080fd5b61238383612000565b915061235e60208401612000565b600181811c908216806123a557607f821691505b602082108114156123c657634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b6000821982111561242a5761242a612401565b500190565b634e487b7160e01b600052601260045260246000fd5b6000826124545761245461242f565b500690565b6000826124685761246861242f565b500490565b600060001982141561248157612481612401565b5060010190565b60008160001904831182151516156124a2576124a2612401565b500290565b600083516124b9818460208801611f7c565b8351908301906124cd818360208801611f7c565b01949350505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061250990830184611fa8565b9695505050505050565b60006020828403121561252557600080fd5b81516111b781611f49565b60008282101561254257612542612401565b500390565b634e487b7160e01b600052603260045260246000fdfea2646970667358221220381f8d9543bee16102c17442cd188dc6d3131f3576684fe4b1c4d4ff8488642e64736f6c634300080c0033
Deployed Bytecode
0x6080604052600436106102295760003560e01c806370a0823111610123578063b88d4fde116100ab578063d5abeb011161006f578063d5abeb0114610641578063d7224ba01461066a578063dc33e68114610680578063e985e9c5146106a0578063f2fde38b146106e957600080fd5b8063b88d4fde146105b9578063c507b806146105d9578063c87b56dd146105f9578063ce6df2b914610619578063d334c54f1461062c57600080fd5b8063954d90d0116100f2578063954d90d01461053c57806395d89b411461055c578063a0712d6814610571578063a22cb46514610584578063a2309ff8146105a457600080fd5b806370a0823114610493578063715018a6146104b35780638da5cb5b146104c85780639231ab2a146104e657600080fd5b80633ccfd60b116101b15780634f558e79116101755780634f558e791461040257806355f804b3146104225780636352211e146104425780636817c76c146104625780636c0360eb1461047e57600080fd5b80633ccfd60b146103855780633f5e47411461039a57806341ee05f7146103af57806342842e0e146103cf5780634b11faaf146103ef57600080fd5b806318160ddd116101f857806318160ddd146102e657806323b872dd146103095780632c4e9fc6146103295780632d20fb60146103455780632d4d87651461036557600080fd5b806301ffc9a71461023557806306fdde031461026a578063081812fc1461028c578063095ea7b3146102c457600080fd5b3661023057005b600080fd5b34801561024157600080fd5b50610255610250366004611f5f565b610709565b60405190151581526020015b60405180910390f35b34801561027657600080fd5b5061027f61075b565b6040516102619190611fd4565b34801561029857600080fd5b506102ac6102a7366004611fe7565b6107ed565b6040516001600160a01b039091168152602001610261565b3480156102d057600080fd5b506102e46102df36600461201c565b610831565b005b3480156102f257600080fd5b50600154600054035b604051908152602001610261565b34801561031557600080fd5b506102e4610324366004612046565b6108bf565b34801561033557600080fd5b506102fb6702115ab5e788800081565b34801561035157600080fd5b506102e4610360366004611fe7565b6108ca565b34801561037157600080fd5b506102e4610380366004611fe7565b610909565b34801561039157600080fd5b506102e4610938565b3480156103a657600080fd5b506102556109ed565b3480156103bb57600080fd5b506102e46103ca366004612082565b610a15565b3480156103db57600080fd5b506102e46103ea366004612046565b610bae565b6102e46103fd3660046120e8565b610bc9565b34801561040e57600080fd5b5061025561041d366004611fe7565b610da1565b34801561042e57600080fd5b506102e461043d366004612141565b610dac565b34801561044e57600080fd5b506102ac61045d366004611fe7565b610de2565b34801561046e57600080fd5b506102fb67027f7d0bdb92000081565b34801561048a57600080fd5b5061027f610df4565b34801561049f57600080fd5b506102fb6104ae366004612082565b610e03565b3480156104bf57600080fd5b506102e4610e51565b3480156104d457600080fd5b506009546001600160a01b03166102ac565b3480156104f257600080fd5b50610506610501366004611fe7565b610e87565b6040805182516001600160a01b031681526020808401516001600160401b03169082015291810151151590820152606001610261565b34801561054857600080fd5b506102556105573660046121b2565b610ead565b34801561056857600080fd5b5061027f610f71565b6102e461057f366004611fe7565b610f80565b34801561059057600080fd5b506102e461059f3660046121f3565b610f8a565b3480156105b057600080fd5b506000546102fb565b3480156105c557600080fd5b506102e46105d4366004612245565b611020565b3480156105e557600080fd5b506102e46105f4366004612334565b611071565b34801561060557600080fd5b5061027f610614366004611fe7565b611139565b6102e461062736600461201c565b6111be565b34801561063857600080fd5b50610255611319565b34801561064d57600080fd5b5061065761177081565b60405161ffff9091168152602001610261565b34801561067657600080fd5b506102fb60085481565b34801561068c57600080fd5b506102fb61069b366004612082565b61133e565b3480156106ac57600080fd5b506102556106bb366004612367565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b3480156106f557600080fd5b506102e4610704366004612082565b61136c565b60006001600160e01b031982166380ac58cd60e01b148061073a57506001600160e01b03198216635b5e139f60e01b145b8061075557506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606002805461076a90612391565b80601f016020809104026020016040519081016040528092919081815260200182805461079690612391565b80156107e35780601f106107b8576101008083540402835291602001916107e3565b820191906000526020600020905b8154815290600101906020018083116107c657829003601f168201915b5050505050905090565b60006107f882611404565b610815576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600061083c82610de2565b9050806001600160a01b0316836001600160a01b031614156108715760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b03821614801590610891575061088f81336106bb565b155b156108af576040516367d9dca160e11b815260040160405180910390fd5b6108ba83838361142f565b505050565b6108ba83838361148b565b6009546001600160a01b031633146108fd5760405162461bcd60e51b81526004016108f4906123cc565b60405180910390fd5b61090681611676565b50565b6009546001600160a01b031633146109335760405162461bcd60e51b81526004016108f4906123cc565b600a55565b6009546001600160a01b031633146109625760405162461bcd60e51b81526004016108f4906123cc565b604051600090339047908381818185875af1925050503d80600081146109a4576040519150601f19603f3d011682016040523d82523d6000602084013e6109a9565b606091505b50509050806109065760405162461bcd60e51b815260206004820152601060248201526f2a3930b739b332b9103330b4b632b21760811b60448201526064016108f4565b600954600090600160c01b900463ffffffff168015801590610a0f5750804210155b91505090565b6009546001600160a01b03163314610a3f5760405162461bcd60e51b81526004016108f4906123cc565b600954603c90601490600160e01b900460ff1615610a945760405162461bcd60e51b815260206004820152601260248201527111195d88185b1c9958591e481b5a5b9d195960721b60448201526064016108f4565b61177082610aa56001546000540390565b610aaf9190612417565b1115610af35760405162461bcd60e51b8152602060048201526013602482015272696e73756666696369656e7420737570706c7960681b60448201526064016108f4565b610afd8183612445565b15610b5f5760405162461bcd60e51b815260206004820152602c60248201527f63616e206f6e6c79206d696e742061206d756c7469706c65206f66207468652060448201526b6d6178426174636853697a6560a01b60648201526084016108f4565b6000610b6b8284612459565b6009805460ff60e01b1916600160e01b179055905060005b81811015610ba757610b9585846117ad565b80610b9f8161246d565b915050610b83565b5050505050565b6108ba83838360405180602001604052806000815250611020565b610bd1611319565b610c285760405162461bcd60e51b815260206004820152602260248201527f77686974656c6973742073616c6520686173206e6f7420737461727465642079604482015261195d60f21b60648201526084016108f4565b600c83610c348661133e565b610c3e9190612417565b1115610c855760405162461bcd60e51b815260206004820152601660248201527563616e206e6f74206d696e742074686973206d616e7960501b60448201526064016108f4565b6040516bffffffffffffffffffffffff19606086901b166020820152600090603401604051602081830303815290604052805190602001209050610d0083838080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050600a5491508490506117c7565b610d3e5760405162461bcd60e51b815260206004820152600f60248201526e24b731b7b93932b1ba10383937b7b360891b60448201526064016108f4565b610d50846702115ab5e7888000612488565b341015610d975760405162461bcd60e51b81526020600482015260156024820152740dccacac840e8de40e6cadcc840dadee4ca408aa89605b1b60448201526064016108f4565b610ba785856117dd565b600061075582611404565b6009546001600160a01b03163314610dd65760405162461bcd60e51b81526004016108f4906123cc565b6108ba600b8383611eb0565b6000610ded826118cb565b5192915050565b6060610dfe6119e5565b905090565b60006001600160a01b038216610e2c576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600560205260409020546001600160401b031690565b6009546001600160a01b03163314610e7b5760405162461bcd60e51b81526004016108f4906123cc565b610e8560006119f4565b565b6040805160608101825260008082526020820181905291810191909152610755826118cb565b6040516bffffffffffffffffffffffff193360601b1660208201526000908190603401604051602081830303815290604052805190602001209050610f2984848080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050600a5491508490506117c7565b610f675760405162461bcd60e51b815260206004820152600f60248201526e24b731b7b93932b1ba10383937b7b360891b60448201526064016108f4565b5060019392505050565b60606003805461076a90612391565b61090633826117ad565b6001600160a01b038216331415610fb45760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b61102b84848461148b565b6001600160a01b0383163b1515801561104d575061104b84848484611a46565b155b1561106b576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6009546001600160a01b0316331461109b5760405162461bcd60e51b81526004016108f4906123cc565b63ffffffff8216158015906110b5575063ffffffff811615155b6110f95760405162461bcd60e51b815260206004820152601560248201527419185d195cc81b5d5cdd081899481919599a5b9959605a1b60448201526064016108f4565b6009805467ffffffffffffffff60a01b1916600160a01b63ffffffff9485160263ffffffff60c01b191617600160c01b9290931691909102919091179055565b606061114482611404565b61116157604051630a14c4b560e41b815260040160405180910390fd5b600061116b6119e5565b905080516000141561118c57604051806020016040528060008152506111b7565b8061119684611b2f565b6040516020016111a79291906124a7565b6040516020818303038152906040525b9392505050565b32331461120d5760405162461bcd60e51b815260206004820152601e60248201527f5468652063616c6c657220697320616e6f7468657220636f6e7472616374000060448201526064016108f4565b6112156109ed565b6112615760405162461bcd60e51b815260206004820152601f60248201527f7075626c69632073616c6520686173206e6f742073746172746564207965740060448201526064016108f4565b600c8111156112b25760405162461bcd60e51b815260206004820152601e60248201527f63616e206e6f74206d696e742074686973206d616e79206174206f6e6365000060448201526064016108f4565b6112c48167027f7d0bdb920000612488565b34101561130b5760405162461bcd60e51b81526020600482015260156024820152740dccacac840e8de40e6cadcc840dadee4ca408aa89605b1b60448201526064016108f4565b61131582826117dd565b5050565b600954600090600160a01b900463ffffffff168015801590610a0f5750421015919050565b6001600160a01b038116600090815260056020526040812054600160401b90046001600160401b0316610755565b6009546001600160a01b031633146113965760405162461bcd60e51b81526004016108f4906123cc565b6001600160a01b0381166113fb5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016108f4565b610906816119f4565b6000805482108015610755575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000611496826118cb565b9050836001600160a01b031681600001516001600160a01b0316146114cd5760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b03861614806114eb57506114eb85336106bb565b806115065750336114fb846107ed565b6001600160a01b0316145b90508061152657604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b03841661154d57604051633a954ecd60e21b815260040160405180910390fd5b6115596000848761142f565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff198082166001600160401b0392831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b4290921691909102178355870180845292208054919390911661162d57600054821461162d57805460208601516001600160401b0316600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610ba7565b80611694576040516356be441560e01b815260040160405180910390fd5b6000546116b45760405163c0367cab60e01b815260040160405180910390fd5b600854806116c0575060005b60005481106116e2576040516370e89b1b60e01b815260040160405180910390fd5b60005482820160001981019110156116fd5750600054600019015b815b8181116117a2576000818152600460205260409020546001600160a01b03161580156117415750600081815260046020526040902054600160e01b900460ff16155b1561179a576000611751826118cb565b80516000848152600460209081526040909120805491909301516001600160401b0316600160a01b026001600160e01b03199091166001600160a01b0390921691909117179055505b6001016116ff565b506001016008555050565b611315828260405180602001604052806000815250611c2c565b6000826117d48584611c39565b14949350505050565b611770816117ee6001546000540390565b6117f89190612417565b11156118645760405162461bcd60e51b815260206004820152603560248201527f696e73756666696369656e742072656d61696e696e6720737570706c7920666f6044820152741c8819195cda5c9959081b5a5b9d08185b5bdd5b9d605a1b60648201526084016108f4565b600081118015611875575060148111155b6118c15760405162461bcd60e51b815260206004820152601760248201527f696e636f7272656374206d696e74207175616e7469747900000000000000000060448201526064016108f4565b61131582826117ad565b6040805160608101825260008082526020820181905291810191909152816000548110156119cc57600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff161515918101829052906119ca5780516001600160a01b031615611961579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b82046001600160401b031693830193909352600160e01b900460ff16151592810192909252156119c5579392505050565b611961565b505b604051636f96cda160e11b815260040160405180910390fd5b6060600b805461076a90612391565b600980546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290611a7b9033908990889088906004016124d6565b6020604051808303816000875af1925050508015611ab6575060408051601f3d908101601f19168201909252611ab391810190612513565b60015b611b11573d808015611ae4576040519150601f19603f3d011682016040523d82523d6000602084013e611ae9565b606091505b508051611b09576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b606081611b535750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611b7d5780611b678161246d565b9150611b769050600a83612459565b9150611b57565b6000816001600160401b03811115611b9757611b9761222f565b6040519080825280601f01601f191660200182016040528015611bc1576020820181803683370190505b5090505b8415611b2757611bd6600183612530565b9150611be3600a86612445565b611bee906030612417565b60f81b818381518110611c0357611c03612547565b60200101906001600160f81b031916908160001a905350611c25600a86612459565b9450611bc5565b6108ba8383836001611ce5565b600081815b8451811015611cdd576000858281518110611c5b57611c5b612547565b60200260200101519050808311611c9d576040805160208101859052908101829052606001604051602081830303815290604052805190602001209250611cca565b60408051602081018390529081018490526060016040516020818303038152906040528051906020012092505b5080611cd58161246d565b915050611c3e565b509392505050565b6000546001600160a01b038516611d0e57604051622e076360e81b815260040160405180910390fd5b83611d2c5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff1981166001600160401b038083168c018116918217600160401b67ffffffffffffffff1990941690921783900481168c01811690920217909155858452600490925290912080546001600160e01b031916909217600160a01b429092169190910217905580808501838015611dd857506001600160a01b0387163b15155b15611e61575b60405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4611e296000888480600101955088611a46565b611e46576040516368d2bf6b60e11b815260040160405180910390fd5b80821415611dde578260005414611e5c57600080fd5b611ea7565b5b6040516001830192906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a480821415611e62575b50600055610ba7565b828054611ebc90612391565b90600052602060002090601f016020900481019282611ede5760008555611f24565b82601f10611ef75782800160ff19823516178555611f24565b82800160010185558215611f24579182015b82811115611f24578235825591602001919060010190611f09565b50611f30929150611f34565b5090565b5b80821115611f305760008155600101611f35565b6001600160e01b03198116811461090657600080fd5b600060208284031215611f7157600080fd5b81356111b781611f49565b60005b83811015611f97578181015183820152602001611f7f565b8381111561106b5750506000910152565b60008151808452611fc0816020860160208601611f7c565b601f01601f19169290920160200192915050565b6020815260006111b76020830184611fa8565b600060208284031215611ff957600080fd5b5035919050565b80356001600160a01b038116811461201757600080fd5b919050565b6000806040838503121561202f57600080fd5b61203883612000565b946020939093013593505050565b60008060006060848603121561205b57600080fd5b61206484612000565b925061207260208501612000565b9150604084013590509250925092565b60006020828403121561209457600080fd5b6111b782612000565b60008083601f8401126120af57600080fd5b5081356001600160401b038111156120c657600080fd5b6020830191508360208260051b85010111156120e157600080fd5b9250929050565b600080600080606085870312156120fe57600080fd5b61210785612000565b93506020850135925060408501356001600160401b0381111561212957600080fd5b6121358782880161209d565b95989497509550505050565b6000806020838503121561215457600080fd5b82356001600160401b038082111561216b57600080fd5b818501915085601f83011261217f57600080fd5b81358181111561218e57600080fd5b8660208285010111156121a057600080fd5b60209290920196919550909350505050565b600080602083850312156121c557600080fd5b82356001600160401b038111156121db57600080fd5b6121e78582860161209d565b90969095509350505050565b6000806040838503121561220657600080fd5b61220f83612000565b91506020830135801515811461222457600080fd5b809150509250929050565b634e487b7160e01b600052604160045260246000fd5b6000806000806080858703121561225b57600080fd5b61226485612000565b935061227260208601612000565b92506040850135915060608501356001600160401b038082111561229557600080fd5b818701915087601f8301126122a957600080fd5b8135818111156122bb576122bb61222f565b604051601f8201601f19908116603f011681019083821181831017156122e3576122e361222f565b816040528281528a60208487010111156122fc57600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b803563ffffffff8116811461201757600080fd5b6000806040838503121561234757600080fd5b61235083612320565b915061235e60208401612320565b90509250929050565b6000806040838503121561237a57600080fd5b61238383612000565b915061235e60208401612000565b600181811c908216806123a557607f821691505b602082108114156123c657634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b6000821982111561242a5761242a612401565b500190565b634e487b7160e01b600052601260045260246000fd5b6000826124545761245461242f565b500690565b6000826124685761246861242f565b500490565b600060001982141561248157612481612401565b5060010190565b60008160001904831182151516156124a2576124a2612401565b500290565b600083516124b9818460208801611f7c565b8351908301906124cd818360208801611f7c565b01949350505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061250990830184611fa8565b9695505050505050565b60006020828403121561252557600080fd5b81516111b781611f49565b60008282101561254257612542612401565b500390565b634e487b7160e01b600052603260045260246000fdfea2646970667358221220381f8d9543bee16102c17442cd188dc6d3131f3576684fe4b1c4d4ff8488642e64736f6c634300080c0033
Deployed Bytecode Sourcemap
53567:268:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23944:293;;;;;;;;;;-1:-1:-1;23944:293:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;23944:293:0;;;;;;;;26961:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;28464:204::-;;;;;;;;;;-1:-1:-1;28464:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1692:32:1;;;1674:51;;1662:2;1647:18;28464:204:0;1528:203:1;28027:371:0;;;;;;;;;;-1:-1:-1;28027:371:0;;;;;:::i;:::-;;:::i;:::-;;23217:291;;;;;;;;;;-1:-1:-1;23463:12:0;;23261:7;23447:13;:28;23217:291;;;2319:25:1;;;2307:2;2292:18;23217:291:0;2173:177:1;29329:170:0;;;;;;;;;;-1:-1:-1;29329:170:0;;;;;:::i;:::-;;:::i;48457:49::-;;;;;;;;;;;;48495:11;48457:49;;53233:111;;;;;;;;;;-1:-1:-1;53233:111:0;;;;;:::i;:::-;;:::i;49596:98::-;;;;;;;;;;-1:-1:-1;49596:98:0;;;;;:::i;:::-;;:::i;53052:173::-;;;;;;;;;;;;;:::i;51797:235::-;;;;;;;;;;;;;:::i;52134:664::-;;;;;;;;;;-1:-1:-1;52134:664:0;;;;;:::i;:::-;;:::i;29570:185::-;;;;;;;;;;-1:-1:-1;29570:185:0;;;;;:::i;:::-;;:::i;50472:692::-;;;;;;:::i;:::-;;:::i;49123:102::-;;;;;;;;;;-1:-1:-1;49123:102:0;;;;;:::i;:::-;;:::i;52928:116::-;;;;;;;;;;-1:-1:-1;52928:116:0;;;;;:::i;:::-;;:::i;26769:125::-;;;;;;;;;;-1:-1:-1;26769:125:0;;;;;:::i;:::-;;:::i;48404:46::-;;;;;;;;;;;;48440:10;48404:46;;49024:91;;;;;;;;;;;;;:::i;24301:206::-;;;;;;;;;;-1:-1:-1;24301:206:0;;;;;:::i;:::-;;:::i;44712:103::-;;;;;;;;;;;;;:::i;44061:87::-;;;;;;;;;;-1:-1:-1;44134:6:0;;-1:-1:-1;;;;;44134:6:0;44061:87;;53352:156;;;;;;;;;;-1:-1:-1;53352:156:0;;;;;:::i;:::-;;:::i;:::-;;;;4847:13:1;;-1:-1:-1;;;;;4843:39:1;4825:58;;4943:4;4931:17;;;4925:24;-1:-1:-1;;;;;4921:49:1;4899:20;;;4892:79;5029:17;;;5023:24;5016:32;5009:40;4987:20;;;4980:70;4813:2;4798:18;53352:156:0;4617:439:1;49266:322:0;;;;;;;;;;-1:-1:-1;49266:322:0;;;;;:::i;:::-;;:::i;27130:104::-;;;;;;;;;;;;;:::i;53653:179::-;;;;;;:::i;:::-;;:::i;28740:287::-;;;;;;;;;;-1:-1:-1;28740:287:0;;;;;:::i;:::-;;:::i;48923:93::-;;;;;;;;;;-1:-1:-1;48967:7:0;23826:13;48923:93;49024:91;29826:369;;;;;;;;;;-1:-1:-1;29826:369:0;;;;;:::i;:::-;;:::i;49771:236::-;;;;;;;;;;-1:-1:-1;49771:236:0;;;;;:::i;:::-;;:::i;27305:318::-;;;;;;;;;;-1:-1:-1;27305:318:0;;;;;:::i;:::-;;:::i;50015:365::-;;;;;;:::i;:::-;;:::i;51592:197::-;;;;;;;;;;;;;:::i;47991:39::-;;;;;;;;;;;;48026:4;47991:39;;;;;7733:6:1;7721:19;;;7703:38;;7691:2;7676:18;47991:39:0;7559:188:1;41573:39:0;;;;;;;;;;;;;;;;48802:113;;;;;;;;;;-1:-1:-1;48802:113:0;;;;;:::i;:::-;;:::i;29098:164::-;;;;;;;;;;-1:-1:-1;29098:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;29219:25:0;;;29195:4;29219:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;29098:164;44970:201;;;;;;;;;;-1:-1:-1;44970:201:0;;;;;:::i;:::-;;:::i;23944:293::-;24046:4;-1:-1:-1;;;;;;24079:40:0;;-1:-1:-1;;;24079:40:0;;:101;;-1:-1:-1;;;;;;;24132:48:0;;-1:-1:-1;;;24132:48:0;24079:101;:150;;;-1:-1:-1;;;;;;;;;;19607:40:0;;;24193:36;24063:166;23944:293;-1:-1:-1;;23944:293:0:o;26961:100::-;27015:13;27048:5;27041:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26961:100;:::o;28464:204::-;28532:7;28557:16;28565:7;28557;:16::i;:::-;28552:64;;28582:34;;-1:-1:-1;;;28582:34:0;;;;;;;;;;;28552:64;-1:-1:-1;28636:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;28636:24:0;;28464:204::o;28027:371::-;28100:13;28116:24;28132:7;28116:15;:24::i;:::-;28100:40;;28161:5;-1:-1:-1;;;;;28155:11:0;:2;-1:-1:-1;;;;;28155:11:0;;28151:48;;;28175:24;;-1:-1:-1;;;28175:24:0;;;;;;;;;;;28151:48;16429:10;-1:-1:-1;;;;;28216:21:0;;;;;;:63;;-1:-1:-1;28242:37:0;28259:5;16429:10;29098:164;:::i;28242:37::-;28241:38;28216:63;28212:138;;;28303:35;;-1:-1:-1;;;28303:35:0;;;;;;;;;;;28212:138;28362:28;28371:2;28375:7;28384:5;28362:8;:28::i;:::-;28089:309;28027:371;;:::o;29329:170::-;29463:28;29473:4;29479:2;29483:7;29463:9;:28::i;53233:111::-;44134:6;;-1:-1:-1;;;;;44134:6:0;16429:10;44281:23;44273:68;;;;-1:-1:-1;;;44273:68:0;;;;;;;:::i;:::-;;;;;;;;;53308:28:::1;53327:8;53308:18;:28::i;:::-;53233:111:::0;:::o;49596:98::-;44134:6;;-1:-1:-1;;;;;44134:6:0;16429:10;44281:23;44273:68;;;;-1:-1:-1;;;44273:68:0;;;;;;;:::i;:::-;49670:6:::1;:16:::0;49596:98::o;53052:173::-;44134:6;;-1:-1:-1;;;;;44134:6:0;16429:10;44281:23;44273:68;;;;-1:-1:-1;;;44273:68:0;;;;;;;:::i;:::-;53121:49:::1;::::0;53103:12:::1;::::0;53121:10:::1;::::0;53144:21:::1;::::0;53103:12;53121:49;53103:12;53121:49;53144:21;53121:10;:49:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53102:68;;;53189:7;53181:36;;;::::0;-1:-1:-1;;;53181:36:0;;9175:2:1;53181:36:0::1;::::0;::::1;9157:21:1::0;9214:2;9194:18;;;9187:30;-1:-1:-1;;;9233:18:1;;;9226:46;9289:18;;53181:36:0::1;8973:340:1::0;51797:235:0;51900:19;;51844:4;;-1:-1:-1;;;51900:19:0;;;;51947:25;;;;;:77;;;52004:20;51985:15;:39;;51947:77;51931:93;;;51797:235;:::o;52134:664::-;44134:6;;-1:-1:-1;;;;;44134:6:0;16429:10;44281:23;44273:68;;;;-1:-1:-1;;;44273:68:0;;;;;;;:::i;:::-;52296:9:::1;::::0;48306:2:::1;::::0;48098::::1;::::0;-1:-1:-1;;;52296:9:0;::::1;;;:18;52288:49;;;::::0;-1:-1:-1;;;52288:49:0;;9520:2:1;52288:49:0::1;::::0;::::1;9502:21:1::0;9559:2;9539:18;;;9532:30;-1:-1:-1;;;9578:18:1;;;9571:48;9636:18;;52288:49:0::1;9318:342:1::0;52288:49:0::1;48026:4;52386:13:::0;52370::::1;23463:12:::0;;23261:7;23447:13;:28;;23217:291;52370:13:::1;:29;;;;:::i;:::-;:42;;52348:111;;;::::0;-1:-1:-1;;;52348:111:0;;10132:2:1;52348:111:0::1;::::0;::::1;10114:21:1::0;10171:2;10151:18;;;10144:30;-1:-1:-1;;;10190:18:1;;;10183:49;10249:18;;52348:111:0::1;9930:343:1::0;52348:111:0::1;52492:29;52508:13:::0;52492;:29:::1;:::i;:::-;:34:::0;52470:128:::1;;;::::0;-1:-1:-1;;;52470:128:0;;10729:2:1;52470:128:0::1;::::0;::::1;10711:21:1::0;10768:2;10748:18;;;10741:30;10807:34;10787:18;;;10780:62;-1:-1:-1;;;10858:18:1;;;10851:42;10910:19;;52470:128:0::1;10527:408:1::0;52470:128:0::1;52609:14;52626:29;52642:13:::0;52626;:29:::1;:::i;:::-;52666:9;:16:::0;;-1:-1:-1;;;;52666:16:0::1;-1:-1:-1::0;;;52666:16:0::1;::::0;;52609:46;-1:-1:-1;52666:16:0;52693:98:::1;52714:9;52710:1;:13;52693:98;;;52745:34;52755:8;52765:13;52745:9;:34::i;:::-;52725:3:::0;::::1;::::0;::::1;:::i;:::-;;;;52693:98;;;;52188:610;;;52134:664:::0;:::o;29570:185::-;29708:39;29725:4;29731:2;29735:7;29708:39;;;;;;;;;;;;:16;:39::i;50472:692::-;50628:12;:10;:12::i;:::-;50620:59;;;;-1:-1:-1;;;50620:59:0;;11407:2:1;50620:59:0;;;11389:21:1;11446:2;11426:18;;;11419:30;11485:34;11465:18;;;11458:62;-1:-1:-1;;;11536:18:1;;;11529:32;11578:19;;50620:59:0;11205:398:1;50620:59:0;48149:2;50731:8;50712:16;50725:2;50712:12;:16::i;:::-;:27;;;;:::i;:::-;:46;;50690:118;;;;-1:-1:-1;;;50690:118:0;;11810:2:1;50690:118:0;;;11792:21:1;11849:2;11829:18;;;11822:30;-1:-1:-1;;;11868:18:1;;;11861:52;11930:18;;50690:118:0;11608:346:1;50690:118:0;50900:20;;-1:-1:-1;;12108:2:1;12104:15;;;12100:53;50900:20:0;;;12088:66:1;50875:12:0;;12170::1;;50900:20:0;;;;;;;;;;;;50890:31;;;;;;50875:46;;50954;50973:12;;50954:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;50987:6:0;;;-1:-1:-1;50995:4:0;;-1:-1:-1;50954:18:0;:46::i;:::-;50932:111;;;;-1:-1:-1;;;50932:111:0;;12395:2:1;50932:111:0;;;12377:21:1;12434:2;12414:18;;;12407:30;-1:-1:-1;;;12453:18:1;;;12446:45;12508:18;;50932:111:0;12193:339:1;50932:111:0;51075:22;51089:8;48495:11;51075:22;:::i;:::-;51062:9;:35;;51054:69;;;;-1:-1:-1;;;51054:69:0;;12912:2:1;51054:69:0;;;12894:21:1;12951:2;12931:18;;;12924:30;-1:-1:-1;;;12970:18:1;;;12963:51;13031:18;;51054:69:0;12710:345:1;51054:69:0;51134:22;51143:2;51147:8;51134;:22::i;49123:102::-;49177:4;49201:16;49209:7;49201;:16::i;52928:116::-;44134:6;;-1:-1:-1;;;;;44134:6:0;16429:10;44281:23;44273:68;;;;-1:-1:-1;;;44273:68:0;;;;;;;:::i;:::-;53008:28:::1;:13;53024:12:::0;;53008:28:::1;:::i;26769:125::-:0;26833:7;26860:21;26873:7;26860:12;:21::i;:::-;:26;;26769:125;-1:-1:-1;;26769:125:0:o;49024:91::-;49064:13;49097:10;:8;:10::i;:::-;49090:17;;49024:91;:::o;24301:206::-;24365:7;-1:-1:-1;;;;;24389:19:0;;24385:60;;24417:28;;-1:-1:-1;;;24417:28:0;;;;;;;;;;;24385:60;-1:-1:-1;;;;;;24471:19:0;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;24471:27:0;;24301:206::o;44712:103::-;44134:6;;-1:-1:-1;;;;;44134:6:0;16429:10;44281:23;44273:68;;;;-1:-1:-1;;;44273:68:0;;;;;;;:::i;:::-;44777:30:::1;44804:1;44777:18;:30::i;:::-;44712:103::o:0;53352:156::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;53479:21:0;53492:7;53479:12;:21::i;49266:322::-;49405:30;;-1:-1:-1;;16429:10:0;12108:2:1;12104:15;12100:53;49405:30:0;;;12088:66:1;49358:4:0;;;;12170:12:1;;49405:30:0;;;;;;;;;;;;49395:41;;;;;;49380:56;;49469:46;49488:12;;49469:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;49502:6:0;;;-1:-1:-1;49510:4:0;;-1:-1:-1;49469:18:0;:46::i;:::-;49447:111;;;;-1:-1:-1;;;49447:111:0;;12395:2:1;49447:111:0;;;12377:21:1;12434:2;12414:18;;;12407:30;-1:-1:-1;;;12453:18:1;;;12446:45;12508:18;;49447:111:0;12193:339:1;49447:111:0;-1:-1:-1;49576:4:0;;49266:322;-1:-1:-1;;;49266:322:0:o;27130:104::-;27186:13;27219:7;27212:14;;;;;:::i;53653:179::-;53793:31;53803:10;53815:8;53793:9;:31::i;28740:287::-;-1:-1:-1;;;;;28839:24:0;;16429:10;28839:24;28835:54;;;28872:17;;-1:-1:-1;;;28872:17:0;;;;;;;;;;;28835:54;16429:10;28902:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;28902:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;28902:53:0;;;;;;;;;;28971:48;;540:41:1;;;28902:42:0;;16429:10;28971:48;;513:18:1;28971:48:0;;;;;;;28740:287;;:::o;29826:369::-;29993:28;30003:4;30009:2;30013:7;29993:9;:28::i;:::-;-1:-1:-1;;;;;30036:13:0;;8688:20;8736:8;;30036:76;;;;;30056:56;30087:4;30093:2;30097:7;30106:5;30056:30;:56::i;:::-;30055:57;30036:76;30032:156;;;30136:40;;-1:-1:-1;;;30136:40:0;;;;;;;;;;;30032:156;29826:369;;;;:::o;49771:236::-;44134:6;;-1:-1:-1;;;;;44134:6:0;16429:10;44281:23;44273:68;;;;-1:-1:-1;;;44273:68:0;;;;;;;:::i;:::-;49865:11:::1;::::0;::::1;::::0;;::::1;::::0;:30:::1;;-1:-1:-1::0;49880:15:0::1;::::0;::::1;::::0;::::1;49865:30;49857:64;;;::::0;-1:-1:-1;;;49857:64:0;;13262:2:1;49857:64:0::1;::::0;::::1;13244:21:1::0;13301:2;13281:18;;;13274:30;-1:-1:-1;;;13320:18:1;;;13313:51;13381:18;;49857:64:0::1;13060:345:1::0;49857:64:0::1;49932:15;:24:::0;;-1:-1:-1;;;;49967:32:0;-1:-1:-1;;;49932:24:0::1;::::0;;::::1;;-1:-1:-1::0;;;;49967:32:0;;-1:-1:-1;;;49967:32:0;;;::::1;::::0;;;::::1;::::0;;;::::1;::::0;;49771:236::o;27305:318::-;27378:13;27409:16;27417:7;27409;:16::i;:::-;27404:59;;27434:29;;-1:-1:-1;;;27434:29:0;;;;;;;;;;;27404:59;27476:21;27500:10;:8;:10::i;:::-;27476:34;;27534:7;27528:21;27553:1;27528:26;;:87;;;;;;;;;;;;;;;;;27581:7;27590:18;:7;:16;:18::i;:::-;27564:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;27528:87;27521:94;27305:318;-1:-1:-1;;;27305:318:0:o;50015:365::-;48716:9;48729:10;48716:23;48708:66;;;;-1:-1:-1;;;48708:66:0;;14087:2:1;48708:66:0;;;14069:21:1;14126:2;14106:18;;;14099:30;14165:32;14145:18;;;14138:60;14215:18;;48708:66:0;13885:354:1;48708:66:0;50134:16:::1;:14;:16::i;:::-;50126:60;;;::::0;-1:-1:-1;;;50126:60:0;;14446:2:1;50126:60:0::1;::::0;::::1;14428:21:1::0;14485:2;14465:18;;;14458:30;14524:33;14504:18;;;14497:61;14575:18;;50126:60:0::1;14244:355:1::0;50126:60:0::1;48194:2;50205:21:::0;::::1;;50197:64;;;::::0;-1:-1:-1;;;50197:64:0;;14806:2:1;50197:64:0::1;::::0;::::1;14788:21:1::0;14845:2;14825:18;;;14818:30;14884:32;14864:18;;;14857:60;14934:18;;50197:64:0::1;14604:354:1::0;50197:64:0::1;50293:20;50305:8:::0;48440:10:::1;50293:20;:::i;:::-;50280:9;:33;;50272:67;;;::::0;-1:-1:-1;;;50272:67:0;;12912:2:1;50272:67:0::1;::::0;::::1;12894:21:1::0;12951:2;12931:18;;;12924:30;-1:-1:-1;;;12970:18:1;;;12963:51;13031:18;;50272:67:0::1;12710:345:1::0;50272:67:0::1;50350:22;50359:2;50363:8;50350;:22::i;:::-;50015:365:::0;;:::o;51592:197::-;51687:15;;51635:4;;-1:-1:-1;;;51687:15:0;;;;51721:21;;;;;:60;;-1:-1:-1;51746:15:0;:35;;;51592:197;-1:-1:-1;51592:197:0:o;48802:113::-;-1:-1:-1;;;;;24685:19:0;;48860:7;24685:19;;;:12;:19;;;;;:32;-1:-1:-1;;;24685:32:0;;-1:-1:-1;;;;;24685:32:0;48887:20;24589:137;44970:201;44134:6;;-1:-1:-1;;;;;44134:6:0;16429:10;44281:23;44273:68;;;;-1:-1:-1;;;44273:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;45059:22:0;::::1;45051:73;;;::::0;-1:-1:-1;;;45051:73:0;;15165:2:1;45051:73:0::1;::::0;::::1;15147:21:1::0;15204:2;15184:18;;;15177:30;15243:34;15223:18;;;15216:62;-1:-1:-1;;;15294:18:1;;;15287:36;15340:19;;45051:73:0::1;14963:402:1::0;45051:73:0::1;45135:28;45154:8;45135:18;:28::i;30450:174::-:0;30507:4;30571:13;;30561:7;:23;30531:85;;;;-1:-1:-1;;30589:20:0;;;;:11;:20;;;;;:27;-1:-1:-1;;;30589:27:0;;;;30588:28;;30450:174::o;38323:196::-;38438:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;38438:29:0;-1:-1:-1;;;;;38438:29:0;;;;;;;;;38483:28;;38438:24;;38483:28;;;;;;;38323:196;;;:::o;33458:2046::-;33573:35;33611:21;33624:7;33611:12;:21::i;:::-;33573:59;;33671:4;-1:-1:-1;;;;;33649:26:0;:13;:18;;;-1:-1:-1;;;;;33649:26:0;;33645:67;;33684:28;;-1:-1:-1;;;33684:28:0;;;;;;;;;;;33645:67;33725:22;16429:10;-1:-1:-1;;;;;33751:20:0;;;;:69;;-1:-1:-1;33784:36:0;33801:4;16429:10;29098:164;:::i;33784:36::-;33751:118;;;-1:-1:-1;16429:10:0;33833:20;33845:7;33833:11;:20::i;:::-;-1:-1:-1;;;;;33833:36:0;;33751:118;33725:145;;33888:17;33883:66;;33914:35;;-1:-1:-1;;;33914:35:0;;;;;;;;;;;33883:66;-1:-1:-1;;;;;33964:16:0;;33960:52;;33989:23;;-1:-1:-1;;;33989:23:0;;;;;;;;;;;33960:52;34133:35;34150:1;34154:7;34163:4;34133:8;:35::i;:::-;-1:-1:-1;;;;;34456:18:0;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;34456:31:0;;;-1:-1:-1;;;;;34456:31:0;;;-1:-1:-1;;34456:31:0;;;;;;;34498:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;34498:29:0;;;;;;;;;;;34574:20;;;:11;:20;;;;;;34605:18;;-1:-1:-1;;;;;;34634:49:0;;;;-1:-1:-1;;;34667:15:0;34634:49;;;;;;;;;;34945:11;;35001:24;;;;;35040:13;;34574:20;;35001:24;;35040:13;35036:356;;35238:13;;35223:11;:28;35219:162;;35272:20;;35337:28;;;;-1:-1:-1;;;;;35311:54:0;-1:-1:-1;;;35311:54:0;-1:-1:-1;;;;;;35311:54:0;;;-1:-1:-1;;;;;35272:20:0;;35311:54;;;;35219:162;34435:964;;;35435:7;35431:2;-1:-1:-1;;;;;35416:27:0;35425:4;-1:-1:-1;;;;;35416:27:0;;;;;;;;;;;35454:42;29826:369;41725:1272;41795:13;41791:49;;41817:23;;-1:-1:-1;;;41817:23:0;;;;;;;;;;;41791:49;23047:7;41855:13;41851:64;;41896:19;;-1:-1:-1;;;41896:19:0;;;;;;;;;;;41851:64;41962:24;;42001:30;41997:106;;-1:-1:-1;23047:7:0;41997:106;42146:13;;42117:25;:42;42113:81;;42168:26;;-1:-1:-1;;;42168:26:0;;;;;;;;;;;42113:81;42332:16;42480:13;42351:36;;;-1:-1:-1;;42351:40:0;;;-1:-1:-1;42461:89:0;;;-1:-1:-1;42521:13:0;;-1:-1:-1;;42521:17:0;42461:89;42579:25;42562:369;42611:8;42606:1;:13;42562:369;;42676:1;42645:14;;;:11;:14;;;;;:19;-1:-1:-1;;;;;42645:19:0;:33;:59;;;;-1:-1:-1;42683:14:0;;;;:11;:14;;;;;:21;-1:-1:-1;;;42683:21:0;;;;42682:22;42645:59;42641:279;;;42725:31;42759:15;42772:1;42759:12;:15::i;:::-;42815:14;;;42793;;;:11;:14;;;;;;;;:36;;42880:24;;;;;-1:-1:-1;;;;;42848:56:0;-1:-1:-1;;;42848:56:0;-1:-1:-1;;;;;;42848:56:0;;;-1:-1:-1;;;;;42793:36:0;;;42848:56;;;;;;;-1:-1:-1;42641:279:0;42621:3;;42562:369;;;-1:-1:-1;42981:1:0;42970:12;42943:24;:39;-1:-1:-1;;41725:1272:0:o;30632:104::-;30701:27;30711:2;30715:8;30701:27;;;;;;;;;;;;:9;:27::i;46411:190::-;46536:4;46589;46560:25;46573:5;46580:4;46560:12;:25::i;:::-;:33;;46411:190;-1:-1:-1;;;;46411:190:0:o;51172:375::-;48026:4;51277:8;51261:13;23463:12;;23261:7;23447:13;:28;;23217:291;51261:13;:24;;;;:::i;:::-;:37;;51239:140;;;;-1:-1:-1;;;51239:140:0;;15572:2:1;51239:140:0;;;15554:21:1;15611:2;15591:18;;;15584:30;15650:34;15630:18;;;15623:62;-1:-1:-1;;;15701:18:1;;;15694:51;15762:19;;51239:140:0;15370:417:1;51239:140:0;51423:1;51412:8;:12;:40;;;;-1:-1:-1;48098:2:0;51428:24;;;51412:40;51390:113;;;;-1:-1:-1;;;51390:113:0;;15994:2:1;51390:113:0;;;15976:21:1;16033:2;16013:18;;;16006:30;16072:25;16052:18;;;16045:53;16115:18;;51390:113:0;15792:347:1;51390:113:0;51516:23;51526:2;51530:8;51516:9;:23::i;25682:1025::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;25793:7:0;25868:13;;25861:4;:20;25830:814;;;25898:31;25932:17;;;:11;:17;;;;;;;;;25898:51;;;;;;;;;-1:-1:-1;;;;;25898:51:0;;;;-1:-1:-1;;;25898:51:0;;-1:-1:-1;;;;;25898:51:0;;;;;;;;-1:-1:-1;;;25898:51:0;;;;;;;;;;;;;;25964:669;;26010:14;;-1:-1:-1;;;;;26010:28:0;;26006:93;;26070:9;25682:1025;-1:-1:-1;;;25682:1025:0:o;26006:93::-;-1:-1:-1;;;26417:6:0;26458:17;;;;:11;:17;;;;;;;;;26446:29;;;;;;;;;-1:-1:-1;;;;;26446:29:0;;;;;-1:-1:-1;;;26446:29:0;;-1:-1:-1;;;;;26446:29:0;;;;;;;;-1:-1:-1;;;26446:29:0;;;;;;;;;;;;;26502:28;26498:101;;26566:9;25682:1025;-1:-1:-1;;;25682:1025:0:o;26498:101::-;26381:237;;;25883:761;25830:814;26668:31;;-1:-1:-1;;;26668:31:0;;;;;;;;;;;52806:114;52866:13;52899;52892:20;;;;;:::i;45331:191::-;45424:6;;;-1:-1:-1;;;;;45441:17:0;;;-1:-1:-1;;;;;;45441:17:0;;;;;;;45474:40;;45424:6;;;45441:17;45424:6;;45474:40;;45405:16;;45474:40;45394:128;45331:191;:::o;39011:667::-;39195:72;;-1:-1:-1;;;39195:72:0;;39174:4;;-1:-1:-1;;;;;39195:36:0;;;;;:72;;16429:10;;39246:4;;39252:7;;39261:5;;39195:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;39195:72:0;;;;;;;;-1:-1:-1;;39195:72:0;;;;;;;;;;;;:::i;:::-;;;39191:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;39429:13:0;;39425:235;;39475:40;;-1:-1:-1;;;39475:40:0;;;;;;;;;;;39425:235;39618:6;39612:13;39603:6;39599:2;39595:15;39588:38;39191:480;-1:-1:-1;;;;;;39314:55:0;-1:-1:-1;;;39314:55:0;;-1:-1:-1;39191:480:0;39011:667;;;;;;:::o;16902:723::-;16958:13;17179:10;17175:53;;-1:-1:-1;;17206:10:0;;;;;;;;;;;;-1:-1:-1;;;17206:10:0;;;;;16902:723::o;17175:53::-;17253:5;17238:12;17294:78;17301:9;;17294:78;;17327:8;;;;:::i;:::-;;-1:-1:-1;17350:10:0;;-1:-1:-1;17358:2:0;17350:10;;:::i;:::-;;;17294:78;;;17382:19;17414:6;-1:-1:-1;;;;;17404:17:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;17404:17:0;;17382:39;;17432:154;17439:10;;17432:154;;17466:11;17476:1;17466:11;;:::i;:::-;;-1:-1:-1;17535:10:0;17543:2;17535:5;:10;:::i;:::-;17522:24;;:2;:24;:::i;:::-;17509:39;;17492:6;17499;17492:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;17492:56:0;;;;;;;;-1:-1:-1;17563:11:0;17572:2;17563:11;;:::i;:::-;;;17432:154;;31099:163;31222:32;31228:2;31232:8;31242:5;31249:4;31222:5;:32::i;46963:701::-;47046:7;47089:4;47046:7;47104:523;47128:5;:12;47124:1;:16;47104:523;;;47162:20;47185:5;47191:1;47185:8;;;;;;;;:::i;:::-;;;;;;;47162:31;;47228:12;47212;:28;47208:408;;47365:44;;;;;;17311:19:1;;;17346:12;;;17339:28;;;17383:12;;47365:44:0;;;;;;;;;;;;47355:55;;;;;;47340:70;;47208:408;;;47555:44;;;;;;17311:19:1;;;17346:12;;;17339:28;;;17383:12;;47555:44:0;;;;;;;;;;;;47545:55;;;;;;47530:70;;47208:408;-1:-1:-1;47142:3:0;;;;:::i;:::-;;;;47104:523;;;-1:-1:-1;47644:12:0;46963:701;-1:-1:-1;;;46963:701:0:o;31521:1683::-;31660:20;31683:13;-1:-1:-1;;;;;31711:16:0;;31707:48;;31736:19;;-1:-1:-1;;;31736:19:0;;;;;;;;;;;31707:48;31770:13;31766:44;;31792:18;;-1:-1:-1;;;31792:18:0;;;;;;;;;;;31766:44;-1:-1:-1;;;;;32153:16:0;;;;;;:12;:16;;;;;;;;:44;;-1:-1:-1;;32208:49:0;;-1:-1:-1;;;;;32153:44:0;;;;;;;32208:49;;;-1:-1:-1;;;;;32153:44:0;;;;;;32208:49;;;;;;;;;;;;;;;;32270:25;;;:11;:25;;;;;;:35;;-1:-1:-1;;;;;;32316:66:0;;;;-1:-1:-1;;;32366:15:0;32316:66;;;;;;;;;;32270:25;32455:23;;;32495:4;:23;;;;-1:-1:-1;;;;;;32503:13:0;;8688:20;8736:8;;32503:15;32491:589;;;32535:294;32562:38;;32587:12;;-1:-1:-1;;;;;32562:38:0;;;32579:1;;32562:38;;32579:1;;32562:38;32624:69;32663:1;32667:2;32671:14;;;;;;32687:5;32624:30;:69::i;:::-;32619:166;;32725:40;;-1:-1:-1;;;32725:40:0;;;;;;;;;;;32619:166;32824:3;32808:12;:19;;32535:294;;32902:12;32885:13;;:29;32881:43;;32916:8;;;32881:43;32491:589;;;32957:112;32984:40;;33009:14;;;;;-1:-1:-1;;;;;32984:40:0;;;33001:1;;32984:40;;33001:1;;32984:40;33064:3;33048:12;:19;;32957:112;;32491:589;-1:-1:-1;33090:13:0;:28;33136:60;29826:369;-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;2873:186::-;2932:6;2985:2;2973:9;2964:7;2960:23;2956:32;2953:52;;;3001:1;2998;2991:12;2953:52;3024:29;3043:9;3024:29;:::i;3064:367::-;3127:8;3137:6;3191:3;3184:4;3176:6;3172:17;3168:27;3158:55;;3209:1;3206;3199:12;3158:55;-1:-1:-1;3232:20:1;;-1:-1:-1;;;;;3264:30:1;;3261:50;;;3307:1;3304;3297:12;3261:50;3344:4;3336:6;3332:17;3320:29;;3404:3;3397:4;3387:6;3384:1;3380:14;3372:6;3368:27;3364:38;3361:47;3358:67;;;3421:1;3418;3411:12;3358:67;3064:367;;;;;:::o;3436:579::-;3540:6;3548;3556;3564;3617:2;3605:9;3596:7;3592:23;3588:32;3585:52;;;3633:1;3630;3623:12;3585:52;3656:29;3675:9;3656:29;:::i;:::-;3646:39;;3732:2;3721:9;3717:18;3704:32;3694:42;;3787:2;3776:9;3772:18;3759:32;-1:-1:-1;;;;;3806:6:1;3803:30;3800:50;;;3846:1;3843;3836:12;3800:50;3885:70;3947:7;3938:6;3927:9;3923:22;3885:70;:::i;:::-;3436:579;;;;-1:-1:-1;3974:8:1;-1:-1:-1;;;;3436:579:1:o;4020:592::-;4091:6;4099;4152:2;4140:9;4131:7;4127:23;4123:32;4120:52;;;4168:1;4165;4158:12;4120:52;4208:9;4195:23;-1:-1:-1;;;;;4278:2:1;4270:6;4267:14;4264:34;;;4294:1;4291;4284:12;4264:34;4332:6;4321:9;4317:22;4307:32;;4377:7;4370:4;4366:2;4362:13;4358:27;4348:55;;4399:1;4396;4389:12;4348:55;4439:2;4426:16;4465:2;4457:6;4454:14;4451:34;;;4481:1;4478;4471:12;4451:34;4526:7;4521:2;4512:6;4508:2;4504:15;4500:24;4497:37;4494:57;;;4547:1;4544;4537:12;4494:57;4578:2;4570:11;;;;;4600:6;;-1:-1:-1;4020:592:1;;-1:-1:-1;;;;4020:592:1:o;5061:437::-;5147:6;5155;5208:2;5196:9;5187:7;5183:23;5179:32;5176:52;;;5224:1;5221;5214:12;5176:52;5264:9;5251:23;-1:-1:-1;;;;;5289:6:1;5286:30;5283:50;;;5329:1;5326;5319:12;5283:50;5368:70;5430:7;5421:6;5410:9;5406:22;5368:70;:::i;:::-;5457:8;;5342:96;;-1:-1:-1;5061:437:1;-1:-1:-1;;;;5061:437:1:o;5503:347::-;5568:6;5576;5629:2;5617:9;5608:7;5604:23;5600:32;5597:52;;;5645:1;5642;5635:12;5597:52;5668:29;5687:9;5668:29;:::i;:::-;5658:39;;5747:2;5736:9;5732:18;5719:32;5794:5;5787:13;5780:21;5773:5;5770:32;5760:60;;5816:1;5813;5806:12;5760:60;5839:5;5829:15;;;5503:347;;;;;:::o;5855:127::-;5916:10;5911:3;5907:20;5904:1;5897:31;5947:4;5944:1;5937:15;5971:4;5968:1;5961:15;5987:1138;6082:6;6090;6098;6106;6159:3;6147:9;6138:7;6134:23;6130:33;6127:53;;;6176:1;6173;6166:12;6127:53;6199:29;6218:9;6199:29;:::i;:::-;6189:39;;6247:38;6281:2;6270:9;6266:18;6247:38;:::i;:::-;6237:48;;6332:2;6321:9;6317:18;6304:32;6294:42;;6387:2;6376:9;6372:18;6359:32;-1:-1:-1;;;;;6451:2:1;6443:6;6440:14;6437:34;;;6467:1;6464;6457:12;6437:34;6505:6;6494:9;6490:22;6480:32;;6550:7;6543:4;6539:2;6535:13;6531:27;6521:55;;6572:1;6569;6562:12;6521:55;6608:2;6595:16;6630:2;6626;6623:10;6620:36;;;6636:18;;:::i;:::-;6711:2;6705:9;6679:2;6765:13;;-1:-1:-1;;6761:22:1;;;6785:2;6757:31;6753:40;6741:53;;;6809:18;;;6829:22;;;6806:46;6803:72;;;6855:18;;:::i;:::-;6895:10;6891:2;6884:22;6930:2;6922:6;6915:18;6970:7;6965:2;6960;6956;6952:11;6948:20;6945:33;6942:53;;;6991:1;6988;6981:12;6942:53;7047:2;7042;7038;7034:11;7029:2;7021:6;7017:15;7004:46;7092:1;7087:2;7082;7074:6;7070:15;7066:24;7059:35;7113:6;7103:16;;;;;;;5987:1138;;;;;;;:::o;7130:163::-;7197:20;;7257:10;7246:22;;7236:33;;7226:61;;7283:1;7280;7273:12;7298:256;7364:6;7372;7425:2;7413:9;7404:7;7400:23;7396:32;7393:52;;;7441:1;7438;7431:12;7393:52;7464:28;7482:9;7464:28;:::i;:::-;7454:38;;7511:37;7544:2;7533:9;7529:18;7511:37;:::i;:::-;7501:47;;7298:256;;;;;:::o;7752:260::-;7820:6;7828;7881:2;7869:9;7860:7;7856:23;7852:32;7849:52;;;7897:1;7894;7887:12;7849:52;7920:29;7939:9;7920:29;:::i;:::-;7910:39;;7968:38;8002:2;7991:9;7987:18;7968:38;:::i;8017:380::-;8096:1;8092:12;;;;8139;;;8160:61;;8214:4;8206:6;8202:17;8192:27;;8160:61;8267:2;8259:6;8256:14;8236:18;8233:38;8230:161;;;8313:10;8308:3;8304:20;8301:1;8294:31;8348:4;8345:1;8338:15;8376:4;8373:1;8366:15;8230:161;;8017:380;;;:::o;8402:356::-;8604:2;8586:21;;;8623:18;;;8616:30;8682:34;8677:2;8662:18;;8655:62;8749:2;8734:18;;8402:356::o;9665:127::-;9726:10;9721:3;9717:20;9714:1;9707:31;9757:4;9754:1;9747:15;9781:4;9778:1;9771:15;9797:128;9837:3;9868:1;9864:6;9861:1;9858:13;9855:39;;;9874:18;;:::i;:::-;-1:-1:-1;9910:9:1;;9797:128::o;10278:127::-;10339:10;10334:3;10330:20;10327:1;10320:31;10370:4;10367:1;10360:15;10394:4;10391:1;10384:15;10410:112;10442:1;10468;10458:35;;10473:18;;:::i;:::-;-1:-1:-1;10507:9:1;;10410:112::o;10940:120::-;10980:1;11006;10996:35;;11011:18;;:::i;:::-;-1:-1:-1;11045:9:1;;10940:120::o;11065:135::-;11104:3;-1:-1:-1;;11125:17:1;;11122:43;;;11145:18;;:::i;:::-;-1:-1:-1;11192:1:1;11181:13;;11065:135::o;12537:168::-;12577:7;12643:1;12639;12635:6;12631:14;12628:1;12625:21;12620:1;12613:9;12606:17;12602:45;12599:71;;;12650:18;;:::i;:::-;-1:-1:-1;12690:9:1;;12537:168::o;13410:470::-;13589:3;13627:6;13621:13;13643:53;13689:6;13684:3;13677:4;13669:6;13665:17;13643:53;:::i;:::-;13759:13;;13718:16;;;;13781:57;13759:13;13718:16;13815:4;13803:17;;13781:57;:::i;:::-;13854:20;;13410:470;-1:-1:-1;;;;13410:470:1:o;16144:489::-;-1:-1:-1;;;;;16413:15:1;;;16395:34;;16465:15;;16460:2;16445:18;;16438:43;16512:2;16497:18;;16490:34;;;16560:3;16555:2;16540:18;;16533:31;;;16338:4;;16581:46;;16607:19;;16599:6;16581:46;:::i;:::-;16573:54;16144:489;-1:-1:-1;;;;;;16144:489:1:o;16638:249::-;16707:6;16760:2;16748:9;16739:7;16735:23;16731:32;16728:52;;;16776:1;16773;16766:12;16728:52;16808:9;16802:16;16827:30;16851:5;16827:30;:::i;16892:125::-;16932:4;16960:1;16957;16954:8;16951:34;;;16965:18;;:::i;:::-;-1:-1:-1;17002:9:1;;16892:125::o;17022:127::-;17083:10;17078:3;17074:20;17071:1;17064:31;17114:4;17111:1;17104:15;17138:4;17135:1;17128:15
Swarm Source
ipfs://381f8d9543bee16102c17442cd188dc6d3131f3576684fe4b1c4d4ff8488642e
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.