ERC-721
Overview
Max Total Supply
527 MMC
Holders
282
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
3 MMCLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
Metamini
Compiler Version
v0.8.11+commit.d7f03943
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-02-02 */ // File: @openzeppelin/contracts/utils/Strings.sol // OpenZeppelin Contracts v4.4.1 (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } } // File: @openzeppelin/contracts/utils/Address.sol // OpenZeppelin Contracts v4.4.1 (utils/Address.sol) pragma solidity ^0.8.0; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; assembly { size := extcodesize(account) } return size > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } // File: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol) pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } // File: @openzeppelin/contracts/utils/introspection/IERC165.sol // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); } // File: @openzeppelin/contracts/utils/introspection/ERC165.sol // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) pragma solidity ^0.8.0; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } } // File: @openzeppelin/contracts/token/ERC721/IERC721.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol) pragma solidity ^0.8.0; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; } // File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Enumerable.sol) pragma solidity ^0.8.0; /** * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Enumerable is IERC721 { /** * @dev Returns the total amount of tokens stored by the contract. */ function totalSupply() external view returns (uint256); /** * @dev Returns a token ID owned by `owner` at a given `index` of its token list. * Use along with {balanceOf} to enumerate all of ``owner``'s tokens. */ function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256 tokenId); /** * @dev Returns a token ID at a given `index` of all the tokens stored by the contract. * Use along with {totalSupply} to enumerate all tokens. */ function tokenByIndex(uint256 index) external view returns (uint256); } // File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol) pragma solidity ^0.8.0; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); } // File: @openzeppelin/contracts/utils/Context.sol // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File: https://github.com/heyOnuoha/ERC721A/blob/main/contracts/ERC721A.sol // Creator: Chiru Labs pragma solidity ^0.8.0; /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata and Enumerable extension. Built to optimize for lower gas during batch mints. * * Assumes serials are sequentially minted starting at 0 (e.g. 0, 1, 2, 3..). * * Does not support burning tokens to address(0). */ contract ERC721A is Context, ERC165, IERC721, IERC721Metadata, IERC721Enumerable { using Address for address; using Strings for uint256; struct TokenOwnership { address addr; uint64 startTimestamp; } struct AddressData { uint128 balance; uint128 numberMinted; } uint256 private currentIndex = 0; uint256 internal immutable maxBatchSize; // 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) private _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; /** * @dev * `maxBatchSize` refers to how much a minter can mint at a time. */ constructor( string memory name_, string memory symbol_, uint256 maxBatchSize_ ) { require(maxBatchSize_ > 0, "ERC721A: max batch size must be nonzero"); _name = name_; _symbol = symbol_; maxBatchSize = maxBatchSize_; } /** * @dev See {IERC721Enumerable-totalSupply}. */ function totalSupply() public view override returns (uint256) { return currentIndex; } /** * @dev See {IERC721Enumerable-tokenByIndex}. */ function tokenByIndex(uint256 index) public view override returns (uint256) { require(index < totalSupply(), "ERC721A: global index out of bounds"); return index; } /** * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}. * This read function is O(totalSupply). If calling from a separate contract, be sure to test gas first. * It may also degrade with extremely large collection sizes (e.g >> 10000), test for your use case. */ function tokenOfOwnerByIndex(address owner, uint256 index) public view override returns (uint256) { require(index < balanceOf(owner), "ERC721A: owner index out of bounds"); uint256 numMintedSoFar = totalSupply(); uint256 tokenIdsIdx = 0; address currOwnershipAddr = address(0); for (uint256 i = 0; i < numMintedSoFar; i++) { TokenOwnership memory ownership = _ownerships[i]; if (ownership.addr != address(0)) { currOwnershipAddr = ownership.addr; } if (currOwnershipAddr == owner) { if (tokenIdsIdx == index) { return i; } tokenIdsIdx++; } } revert("ERC721A: unable to get token of owner by index"); } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || interfaceId == type(IERC721Enumerable).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view override returns (uint256) { require(owner != address(0), "ERC721A: balance query for the zero address"); return uint256(_addressData[owner].balance); } function _numberMinted(address owner) internal view returns (uint256) { require(owner != address(0), "ERC721A: number minted query for the zero address"); return uint256(_addressData[owner].numberMinted); } function ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) { require(_exists(tokenId), "ERC721A: owner query for nonexistent token"); uint256 lowestTokenToCheck; if (tokenId >= maxBatchSize) { lowestTokenToCheck = tokenId - maxBatchSize + 1; } for (uint256 curr = tokenId; curr >= lowestTokenToCheck; curr--) { TokenOwnership memory ownership = _ownerships[curr]; if (ownership.addr != address(0)) { return ownership; } } revert("ERC721A: unable to determine the owner of token"); } /** * @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) { require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token"); string memory baseURI = _baseURI(); return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ""; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overriden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ""; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public override { address owner = ERC721A.ownerOf(tokenId); require(to != owner, "ERC721A: approval to current owner"); require( _msgSender() == owner || isApprovedForAll(owner, _msgSender()), "ERC721A: approve caller is not owner nor approved for all" ); _approve(to, tokenId, owner); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view override returns (address) { require(_exists(tokenId), "ERC721A: approved query for nonexistent token"); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public override { require(operator != _msgSender(), "ERC721A: approve to caller"); _operatorApprovals[_msgSender()][operator] = approved; emit ApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public override { _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public override { safeTransferFrom(from, to, tokenId, ""); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public override { _transfer(from, to, tokenId); require( _checkOnERC721Received(from, to, tokenId, _data), "ERC721A: transfer to non ERC721Receiver implementer" ); } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), */ function _exists(uint256 tokenId) internal view returns (bool) { return tokenId < currentIndex; } function _safeMint(address to, uint256 quantity) internal { _safeMint(to, quantity, ""); } /** * @dev Mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `quantity` cannot be larger than the max batch size. * * Emits a {Transfer} event. */ function _safeMint( address to, uint256 quantity, bytes memory _data ) internal { uint256 startTokenId = currentIndex; require(to != address(0), "ERC721A: mint to the zero address"); // We know if the first token in the batch doesn't exist, the other ones don't as well, because of serial ordering. require(!_exists(startTokenId), "ERC721A: token already minted"); require(quantity <= maxBatchSize, "ERC721A: quantity to mint too high"); _beforeTokenTransfers(address(0), to, startTokenId, quantity); AddressData memory addressData = _addressData[to]; _addressData[to] = AddressData( addressData.balance + uint128(quantity), addressData.numberMinted + uint128(quantity) ); _ownerships[startTokenId] = TokenOwnership(to, uint64(block.timestamp)); uint256 updatedIndex = startTokenId; for (uint256 i = 0; i < quantity; i++) { emit Transfer(address(0), to, updatedIndex); require( _checkOnERC721Received(address(0), to, updatedIndex, _data), "ERC721A: transfer to non ERC721Receiver implementer" ); updatedIndex++; } 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); bool isApprovedOrOwner = (_msgSender() == prevOwnership.addr || getApproved(tokenId) == _msgSender() || isApprovedForAll(prevOwnership.addr, _msgSender())); require(isApprovedOrOwner, "ERC721A: transfer caller is not owner nor approved"); require(prevOwnership.addr == from, "ERC721A: transfer from incorrect owner"); require(to != address(0), "ERC721A: transfer to the zero address"); _beforeTokenTransfers(from, to, tokenId, 1); // Clear approvals from the previous owner _approve(address(0), tokenId, prevOwnership.addr); _addressData[from].balance -= 1; _addressData[to].balance += 1; _ownerships[tokenId] = TokenOwnership(to, uint64(block.timestamp)); // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it. // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls. uint256 nextTokenId = tokenId + 1; if (_ownerships[nextTokenId].addr == address(0)) { if (_exists(nextTokenId)) { _ownerships[nextTokenId] = TokenOwnership(prevOwnership.addr, prevOwnership.startTimestamp); } } emit Transfer(from, to, tokenId); _afterTokenTransfers(from, to, tokenId, 1); } /** * @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); } uint256 public nextOwnerToExplicitlySet = 0; /** * @dev Explicitly set `owners` to eliminate loops in future calls of ownerOf(). */ function _setOwnersExplicit(uint256 quantity) internal { uint256 oldNextOwnerToSet = nextOwnerToExplicitlySet; require(quantity > 0, "quantity must be nonzero"); uint256 endIndex = oldNextOwnerToSet + quantity - 1; if (endIndex > currentIndex - 1) { endIndex = currentIndex - 1; } // We know if the last one in the group exists, all in the group exist, due to serial ordering. require(_exists(endIndex), "not enough minted yet for this cleanup"); for (uint256 i = oldNextOwnerToSet; i <= endIndex; i++) { if (_ownerships[i].addr == address(0)) { TokenOwnership memory ownership = ownershipOf(i); _ownerships[i] = TokenOwnership(ownership.addr, ownership.startTimestamp); } } nextOwnerToExplicitlySet = endIndex + 1; } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address. * The call is not executed if the target address is not a contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { if (to.isContract()) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) { return retval == IERC721Receiver(to).onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert("ERC721A: transfer to non ERC721Receiver implementer"); } else { assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting. * * 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`. */ 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. * * 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` and `to` are never both zero. */ function _afterTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} } // File: @openzeppelin/contracts/access/Ownable.sol // OpenZeppelin Contracts v4.4.1 (access/Ownable.sol) pragma solidity ^0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev 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/Metamini.sol //SPDX-License-Identifier: MIT pragma solidity >=0.7.0 <0.9.0; contract Metamini is ERC721A, Ownable { using Strings for uint256; address public contractOwner; bool public paused = false; bool public revealed = false; bool public whitelistEnabled = true; uint256 public mintPrice = 0.078 ether; uint256 public maxNFTcountWL = 3; uint256 public maxNFTcountOG = 4; uint256 public supply = 1888; uint256 public counter; string public notRevealedUri; string baseURI; constructor () ERC721A ("Metamini", "MMC", 100) {contractOwner = msg.sender;} function mint(string memory _listName, uint256 _mintAmount) public payable { require(!paused, "Contract paused"); require(counter <= supply, "Exceeded max number of NFTs!"); require(_mintAmount > 0, "You cannot mint 0 NFTs"); require(counter + _mintAmount <= supply, "You can't mint the total NFT supply"); if (msg.sender == contractOwner) { counter = counter + _mintAmount; _safeMint(contractOwner, _mintAmount); return; } require(msg.value >= mintPrice * _mintAmount, "Insufficient funds"); if (whitelistEnabled) { if (compareStrings(_listName, "OG")) { require(balanceOf(msg.sender) + _mintAmount <= maxNFTcountOG, "OG address cannot mint more than 4"); counter = counter + _mintAmount; _safeMint(msg.sender, _mintAmount); return; } if (compareStrings(_listName, "WL")) { require(balanceOf(msg.sender) + _mintAmount <= maxNFTcountWL, "WL address cannot mint more than 3"); counter = counter + _mintAmount; _safeMint(msg.sender, _mintAmount); return; } revert("Whitelist does not exist"); } counter = counter + _mintAmount; _safeMint(msg.sender, _mintAmount); } function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token"); if(!revealed) {return notRevealedUri;} return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, counter.toString(), ".json")) : ""; } function compareStrings(string memory a, string memory b) internal pure returns (bool) { return (keccak256(abi.encodePacked((a))) == keccak256(abi.encodePacked((b)))); } function mintForAddress(uint256 _mintAmount, address _receiver) public onlyOwner { counter = counter + _mintAmount; _safeMint(_receiver, _mintAmount); } function reveal() public onlyOwner {revealed = true;} function setNotRevealedURI(string memory _notRevealedURI) public onlyOwner {notRevealedUri = _notRevealedURI;} function setMintPrice (uint256 _newPrice) public onlyOwner {mintPrice = _newPrice;} function setMaxNFTcountOG (uint256 _count) public onlyOwner {maxNFTcountOG = _count;} function setMaxNFTcountWL (uint256 _count) public onlyOwner {maxNFTcountWL = _count;} function setPaused (bool _pausedState) public onlyOwner {paused = _pausedState;} function setBaseURI (string memory _newBaseURI) public onlyOwner {baseURI = _newBaseURI;} function getContractBalance () public view onlyOwner returns (uint256) {return address(this).balance;} function setWhitelistEnabled(bool _state) public onlyOwner {whitelistEnabled = _state;} function getBaseURI() public onlyOwner view returns (string memory ) {return baseURI;} function withdraw() public payable onlyOwner { (bool os, ) = payable(contractOwner).call{value: address(this).balance}(""); require(os); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"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":"contractOwner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"counter","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getBaseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getContractBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxNFTcountOG","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxNFTcountWL","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"string","name":"_listName","type":"string"},{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"},{"internalType":"address","name":"_receiver","type":"address"}],"name":"mintForAddress","outputs":[],"stateMutability":"nonpayable","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":[],"name":"notRevealedUri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reveal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_count","type":"uint256"}],"name":"setMaxNFTcountOG","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_count","type":"uint256"}],"name":"setMaxNFTcountWL","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newPrice","type":"uint256"}],"name":"setMintPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_notRevealedURI","type":"string"}],"name":"setNotRevealedURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_pausedState","type":"bool"}],"name":"setPaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setWhitelistEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"supply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"whitelistEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]
Contract Creation Code
60a060405260008080556007556009805462ffffff60a01b1916600160b01b1790556701151c96347b0000600a556003600b556004600c55610760600d553480156200004a57600080fd5b50604051806040016040528060088152602001674d6574616d696e6960c01b815250604051806040016040528060038152602001624d4d4360e81b815250606460008111620000ef5760405162461bcd60e51b815260206004820152602760248201527f455243373231413a206d61782062617463682073697a65206d757374206265206044820152666e6f6e7a65726f60c81b606482015260840160405180910390fd5b82516200010490600190602086019062000196565b5081516200011a90600290602085019062000196565b50608052506200012c90503362000144565b600980546001600160a01b0319163317905562000279565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b828054620001a4906200023c565b90600052602060002090601f016020900481019282620001c8576000855562000213565b82601f10620001e357805160ff191683800117855562000213565b8280016001018555821562000213579182015b8281111562000213578251825591602001919060010190620001f6565b506200022192915062000225565b5090565b5b8082111562000221576000815560010162000226565b600181811c908216806200025157607f821691505b602082108114156200027357634e487b7160e01b600052602260045260246000fd5b50919050565b608051612a20620002a360003960008181611c1301528181611c3d01526120470152612a206000f3fe60806040526004361061025c5760003560e01c806361bc221a11610144578063b714945f116100b6578063dc28977a1161007a578063dc28977a1461069d578063e985e9c5146106b3578063efbd73f4146106fc578063f2c4ce1e1461071c578063f2fde38b1461073c578063f4a0a5281461075c57600080fd5b8063b714945f14610607578063b88d4fde14610627578063c87b56dd14610647578063ce606ee014610667578063d7224ba01461068757600080fd5b8063714c539811610108578063714c539814610575578063715018a61461058a5780638da5cb5b1461059f57806395d89b41146105bd578063a22cb465146105d2578063a475b5dd146105f257600080fd5b806361bc221a146104f45780636352211e1461050a5780636817c76c1461052a5780636f9fb98a1461054057806370a082311461055557600080fd5b806323b872dd116101dd5780634f6ccce7116101a15780634f6ccce714610431578063518302271461045157806351fb012d1461047257806355f804b3146104935780635c975abb146104b35780636098ee60146104d457600080fd5b806323b872dd146103b35780632f745c59146103d35780633ccfd60b146103f357806342842e0e146103fb578063458dfd251461041b57600080fd5b8063081812fc11610224578063081812fc14610311578063081c8c4414610349578063095ea7b31461035e57806316c38b3c1461037e57806318160ddd1461039e57600080fd5b806301ffc9a714610261578063047fc9aa14610296578063052d9e7e146102ba578063056b01ce146102dc57806306fdde03146102ef575b600080fd5b34801561026d57600080fd5b5061028161027c36600461230b565b61077c565b60405190151581526020015b60405180910390f35b3480156102a257600080fd5b506102ac600d5481565b60405190815260200161028d565b3480156102c657600080fd5b506102da6102d5366004612344565b6107e9565b005b6102da6102ea36600461240b565b61083a565b3480156102fb57600080fd5b50610304610bc5565b60405161028d91906124a8565b34801561031d57600080fd5b5061033161032c3660046124bb565b610c57565b6040516001600160a01b03909116815260200161028d565b34801561035557600080fd5b50610304610ce2565b34801561036a57600080fd5b506102da6103793660046124eb565b610d70565b34801561038a57600080fd5b506102da610399366004612344565b610e88565b3480156103aa57600080fd5b506000546102ac565b3480156103bf57600080fd5b506102da6103ce366004612515565b610ed0565b3480156103df57600080fd5b506102ac6103ee3660046124eb565b610edb565b6102da611049565b34801561040757600080fd5b506102da610416366004612515565b6110d6565b34801561042757600080fd5b506102ac600b5481565b34801561043d57600080fd5b506102ac61044c3660046124bb565b6110f1565b34801561045d57600080fd5b5060095461028190600160a81b900460ff1681565b34801561047e57600080fd5b5060095461028190600160b01b900460ff1681565b34801561049f57600080fd5b506102da6104ae366004612551565b611153565b3480156104bf57600080fd5b5060095461028190600160a01b900460ff1681565b3480156104e057600080fd5b506102da6104ef3660046124bb565b611190565b34801561050057600080fd5b506102ac600e5481565b34801561051657600080fd5b506103316105253660046124bb565b6111bf565b34801561053657600080fd5b506102ac600a5481565b34801561054c57600080fd5b506102ac6111d1565b34801561056157600080fd5b506102ac610570366004612586565b611203565b34801561058157600080fd5b50610304611294565b34801561059657600080fd5b506102da6112ce565b3480156105ab57600080fd5b506008546001600160a01b0316610331565b3480156105c957600080fd5b50610304611304565b3480156105de57600080fd5b506102da6105ed3660046125a1565b611313565b3480156105fe57600080fd5b506102da6113d8565b34801561061357600080fd5b506102da6106223660046124bb565b611417565b34801561063357600080fd5b506102da6106423660046125d4565b611446565b34801561065357600080fd5b506103046106623660046124bb565b61147f565b34801561067357600080fd5b50600954610331906001600160a01b031681565b34801561069357600080fd5b506102ac60075481565b3480156106a957600080fd5b506102ac600c5481565b3480156106bf57600080fd5b506102816106ce366004612650565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b34801561070857600080fd5b506102da61071736600461267a565b6115f1565b34801561072857600080fd5b506102da610737366004612551565b611636565b34801561074857600080fd5b506102da610757366004612586565b611673565b34801561076857600080fd5b506102da6107773660046124bb565b61170b565b60006001600160e01b031982166380ac58cd60e01b14806107ad57506001600160e01b03198216635b5e139f60e01b145b806107c857506001600160e01b0319821663780e9d6360e01b145b806107e357506301ffc9a760e01b6001600160e01b03198316145b92915050565b6008546001600160a01b0316331461081c5760405162461bcd60e51b81526004016108139061269d565b60405180910390fd5b60098054911515600160b01b0260ff60b01b19909216919091179055565b600954600160a01b900460ff16156108865760405162461bcd60e51b815260206004820152600f60248201526e10dbdb9d1c9858dd081c185d5cd959608a1b6044820152606401610813565b600d54600e5411156108da5760405162461bcd60e51b815260206004820152601c60248201527f4578636565646564206d6178206e756d626572206f66204e46547321000000006044820152606401610813565b600081116109235760405162461bcd60e51b8152602060048201526016602482015275596f752063616e6e6f74206d696e742030204e46547360501b6044820152606401610813565b600d5481600e5461093491906126e8565b111561098e5760405162461bcd60e51b815260206004820152602360248201527f596f752063616e2774206d696e742074686520746f74616c204e465420737570604482015262706c7960e81b6064820152608401610813565b6009546001600160a01b03163314156109cc5780600e546109af91906126e8565b600e556009546109c8906001600160a01b03168261173a565b5050565b80600a546109da9190612700565b341015610a1e5760405162461bcd60e51b8152602060048201526012602482015271496e73756666696369656e742066756e647360701b6044820152606401610813565b600954600160b01b900460ff1615610ac957610a5482604051806040016040528060028152602001614f4760f01b815250611754565b15610ae457600c5481610a6633611203565b610a7091906126e8565b1115610ac95760405162461bcd60e51b815260206004820152602260248201527f4f4720616464726573732063616e6e6f74206d696e74206d6f7265207468616e604482015261080d60f21b6064820152608401610813565b80600e54610ad791906126e8565b600e556109c8338261173a565b610b08826040518060400160405280600281526020016115d360f21b815250611754565b15610b7d57600b5481610b1a33611203565b610b2491906126e8565b1115610ac95760405162461bcd60e51b815260206004820152602260248201527f574c20616464726573732063616e6e6f74206d696e74206d6f7265207468616e604482015261203360f01b6064820152608401610813565b60405162461bcd60e51b815260206004820152601860248201527f57686974656c69737420646f6573206e6f7420657869737400000000000000006044820152606401610813565b606060018054610bd49061271f565b80601f0160208091040260200160405190810160405280929190818152602001828054610c009061271f565b8015610c4d5780601f10610c2257610100808354040283529160200191610c4d565b820191906000526020600020905b815481529060010190602001808311610c3057829003601f168201915b5050505050905090565b6000610c64826000541190565b610cc65760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b6064820152608401610813565b506000908152600560205260409020546001600160a01b031690565b600f8054610cef9061271f565b80601f0160208091040260200160405190810160405280929190818152602001828054610d1b9061271f565b8015610d685780601f10610d3d57610100808354040283529160200191610d68565b820191906000526020600020905b815481529060010190602001808311610d4b57829003601f168201915b505050505081565b6000610d7b826111bf565b9050806001600160a01b0316836001600160a01b03161415610dea5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b6064820152608401610813565b336001600160a01b0382161480610e065750610e0681336106ce565b610e785760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c000000000000006064820152608401610813565b610e838383836117ad565b505050565b6008546001600160a01b03163314610eb25760405162461bcd60e51b81526004016108139061269d565b60098054911515600160a01b0260ff60a01b19909216919091179055565b610e83838383611809565b6000610ee683611203565b8210610f3f5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b6064820152608401610813565b600080549080805b83811015610fe9576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215610f9a57805192505b876001600160a01b0316836001600160a01b03161415610fd65786841415610fc8575093506107e392505050565b83610fd28161275a565b9450505b5080610fe18161275a565b915050610f47565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b6064820152608401610813565b6008546001600160a01b031633146110735760405162461bcd60e51b81526004016108139061269d565b6009546040516000916001600160a01b03169047908381818185875af1925050503d80600081146110c0576040519150601f19603f3d011682016040523d82523d6000602084013e6110c5565b606091505b50509050806110d357600080fd5b50565b610e8383838360405180602001604052806000815250611446565b60008054821061114f5760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b6064820152608401610813565b5090565b6008546001600160a01b0316331461117d5760405162461bcd60e51b81526004016108139061269d565b80516109c8906010906020840190612265565b6008546001600160a01b031633146111ba5760405162461bcd60e51b81526004016108139061269d565b600c55565b60006111ca82611b91565b5192915050565b6008546000906001600160a01b031633146111fe5760405162461bcd60e51b81526004016108139061269d565b504790565b60006001600160a01b03821661126f5760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b6064820152608401610813565b506001600160a01b03166000908152600460205260409020546001600160801b031690565b6008546060906001600160a01b031633146112c15760405162461bcd60e51b81526004016108139061269d565b60108054610bd49061271f565b6008546001600160a01b031633146112f85760405162461bcd60e51b81526004016108139061269d565b6113026000611d3b565b565b606060028054610bd49061271f565b6001600160a01b03821633141561136c5760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c65720000000000006044820152606401610813565b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6008546001600160a01b031633146114025760405162461bcd60e51b81526004016108139061269d565b6009805460ff60a81b1916600160a81b179055565b6008546001600160a01b031633146114415760405162461bcd60e51b81526004016108139061269d565b600b55565b611451848484611809565b61145d84848484611d8d565b6114795760405162461bcd60e51b815260040161081390612775565b50505050565b606061148c826000541190565b6114f05760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610813565b600954600160a81b900460ff1661159357600f805461150e9061271f565b80601f016020809104026020016040519081016040528092919081815260200182805461153a9061271f565b80156115875780601f1061155c57610100808354040283529160200191611587565b820191906000526020600020905b81548152906001019060200180831161156a57829003601f168201915b50505050509050919050565b6000601080546115a29061271f565b9050116115be57604051806020016040528060008152506107e3565b60106115cb600e54611e8c565b6040516020016115dc9291906127e4565b60405160208183030381529060405292915050565b6008546001600160a01b0316331461161b5760405162461bcd60e51b81526004016108139061269d565b81600e5461162991906126e8565b600e556109c8818361173a565b6008546001600160a01b031633146116605760405162461bcd60e51b81526004016108139061269d565b80516109c890600f906020840190612265565b6008546001600160a01b0316331461169d5760405162461bcd60e51b81526004016108139061269d565b6001600160a01b0381166117025760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610813565b6110d381611d3b565b6008546001600160a01b031633146117355760405162461bcd60e51b81526004016108139061269d565b600a55565b6109c8828260405180602001604052806000815250611f8a565b600081604051602001611767919061289f565b604051602081830303815290604052805190602001208360405160200161178e919061289f565b6040516020818303038152906040528051906020012014905092915050565b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600061181482611b91565b80519091506000906001600160a01b0316336001600160a01b0316148061184b57503361184084610c57565b6001600160a01b0316145b8061185d5750815161185d90336106ce565b9050806118c75760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b6064820152608401610813565b846001600160a01b031682600001516001600160a01b03161461193b5760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b6064820152608401610813565b6001600160a01b03841661199f5760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b6064820152608401610813565b6119af60008484600001516117ad565b6001600160a01b03851660009081526004602052604081208054600192906119e19084906001600160801b03166128bb565b82546101009290920a6001600160801b038181021990931691831602179091556001600160a01b03861660009081526004602052604081208054600194509092611a2d918591166128e3565b82546001600160801b039182166101009390930a9283029190920219909116179055506040805180820182526001600160a01b03808716825267ffffffffffffffff428116602080850191825260008981526003909152948520935184549151909216600160a01b026001600160e01b03199091169190921617179055611ab58460016126e8565b6000818152600360205260409020549091506001600160a01b0316611b4757611adf816000541190565b15611b475760408051808201825284516001600160a01b03908116825260208087015167ffffffffffffffff9081168285019081526000878152600390935294909120925183549451909116600160a01b026001600160e01b03199094169116179190911790555b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b6040805180820190915260008082526020820152611bb0826000541190565b611c0f5760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b6064820152608401610813565b60007f00000000000000000000000000000000000000000000000000000000000000008310611c7057611c627f00000000000000000000000000000000000000000000000000000000000000008461290e565b611c6d9060016126e8565b90505b825b818110611cda576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215611cc757949350505050565b5080611cd281612925565b915050611c72565b5060405162461bcd60e51b815260206004820152602f60248201527f455243373231413a20756e61626c6520746f2064657465726d696e652074686560448201526e1037bbb732b91037b3103a37b5b2b760891b6064820152608401610813565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60006001600160a01b0384163b15611e8057604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611dd190339089908890889060040161293c565b6020604051808303816000875af1925050508015611e0c575060408051601f3d908101601f19168201909252611e0991810190612979565b60015b611e66573d808015611e3a576040519150601f19603f3d011682016040523d82523d6000602084013e611e3f565b606091505b508051611e5e5760405162461bcd60e51b815260040161081390612775565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611e84565b5060015b949350505050565b606081611eb05750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611eda5780611ec48161275a565b9150611ed39050600a836129ac565b9150611eb4565b60008167ffffffffffffffff811115611ef557611ef561235f565b6040519080825280601f01601f191660200182016040528015611f1f576020820181803683370190505b5090505b8415611e8457611f3460018361290e565b9150611f41600a866129c0565b611f4c9060306126e8565b60f81b818381518110611f6157611f616129d4565b60200101906001600160f81b031916908160001a905350611f83600a866129ac565b9450611f23565b6000546001600160a01b038416611fed5760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b6064820152608401610813565b611ff8816000541190565b156120455760405162461bcd60e51b815260206004820152601d60248201527f455243373231413a20746f6b656e20616c7265616479206d696e7465640000006044820152606401610813565b7f00000000000000000000000000000000000000000000000000000000000000008311156120c05760405162461bcd60e51b815260206004820152602260248201527f455243373231413a207175616e7469747920746f206d696e7420746f6f2068696044820152610ced60f31b6064820152608401610813565b6001600160a01b0384166000908152600460209081526040918290208251808401845290546001600160801b038082168352600160801b909104169181019190915281518083019092528051909190819061211c9087906128e3565b6001600160801b0316815260200185836020015161213a91906128e3565b6001600160801b039081169091526001600160a01b0380881660008181526004602090815260408083208751978301518716600160801b0297909616969096179094558451808601865291825267ffffffffffffffff4281168386019081528883526003909552948120915182549451909516600160a01b026001600160e01b031990941694909216939093179190911790915582905b8581101561225a5760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a461221e6000888488611d8d565b61223a5760405162461bcd60e51b815260040161081390612775565b816122448161275a565b92505080806122529061275a565b9150506121d1565b506000819055611b89565b8280546122719061271f565b90600052602060002090601f01602090048101928261229357600085556122d9565b82601f106122ac57805160ff19168380011785556122d9565b828001600101855582156122d9579182015b828111156122d95782518255916020019190600101906122be565b5061114f9291505b8082111561114f57600081556001016122e1565b6001600160e01b0319811681146110d357600080fd5b60006020828403121561231d57600080fd5b8135612328816122f5565b9392505050565b8035801515811461233f57600080fd5b919050565b60006020828403121561235657600080fd5b6123288261232f565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff808411156123905761239061235f565b604051601f8501601f19908116603f011681019082821181831017156123b8576123b861235f565b816040528093508581528686860111156123d157600080fd5b858560208301376000602087830101525050509392505050565b600082601f8301126123fc57600080fd5b61232883833560208501612375565b6000806040838503121561241e57600080fd5b823567ffffffffffffffff81111561243557600080fd5b612441858286016123eb565b95602094909401359450505050565b60005b8381101561246b578181015183820152602001612453565b838111156114795750506000910152565b60008151808452612494816020860160208601612450565b601f01601f19169290920160200192915050565b602081526000612328602083018461247c565b6000602082840312156124cd57600080fd5b5035919050565b80356001600160a01b038116811461233f57600080fd5b600080604083850312156124fe57600080fd5b612507836124d4565b946020939093013593505050565b60008060006060848603121561252a57600080fd5b612533846124d4565b9250612541602085016124d4565b9150604084013590509250925092565b60006020828403121561256357600080fd5b813567ffffffffffffffff81111561257a57600080fd5b611e84848285016123eb565b60006020828403121561259857600080fd5b612328826124d4565b600080604083850312156125b457600080fd5b6125bd836124d4565b91506125cb6020840161232f565b90509250929050565b600080600080608085870312156125ea57600080fd5b6125f3856124d4565b9350612601602086016124d4565b925060408501359150606085013567ffffffffffffffff81111561262457600080fd5b8501601f8101871361263557600080fd5b61264487823560208401612375565b91505092959194509250565b6000806040838503121561266357600080fd5b61266c836124d4565b91506125cb602084016124d4565b6000806040838503121561268d57600080fd5b823591506125cb602084016124d4565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b600082198211156126fb576126fb6126d2565b500190565b600081600019048311821515161561271a5761271a6126d2565b500290565b600181811c9082168061273357607f821691505b6020821081141561275457634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561276e5761276e6126d2565b5060010190565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b600081516127da818560208601612450565b9290920192915050565b600080845481600182811c91508083168061280057607f831692505b602080841082141561282057634e487b7160e01b86526022600452602486fd5b818015612834576001811461284557612872565b60ff19861689528489019650612872565b60008b81526020902060005b8681101561286a5781548b820152908501908301612851565b505084890196505b50505050505061289661288582866127c8565b64173539b7b760d91b815260050190565b95945050505050565b600082516128b1818460208701612450565b9190910192915050565b60006001600160801b03838116908316818110156128db576128db6126d2565b039392505050565b60006001600160801b03808316818516808303821115612905576129056126d2565b01949350505050565b600082821015612920576129206126d2565b500390565b600081612934576129346126d2565b506000190190565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061296f9083018461247c565b9695505050505050565b60006020828403121561298b57600080fd5b8151612328816122f5565b634e487b7160e01b600052601260045260246000fd5b6000826129bb576129bb612996565b500490565b6000826129cf576129cf612996565b500690565b634e487b7160e01b600052603260045260246000fdfea2646970667358221220139434b41527e14907fdeae0a34dacc677d94fa1b9948793145c242d3c29479064736f6c634300080b0033
Deployed Bytecode
0x60806040526004361061025c5760003560e01c806361bc221a11610144578063b714945f116100b6578063dc28977a1161007a578063dc28977a1461069d578063e985e9c5146106b3578063efbd73f4146106fc578063f2c4ce1e1461071c578063f2fde38b1461073c578063f4a0a5281461075c57600080fd5b8063b714945f14610607578063b88d4fde14610627578063c87b56dd14610647578063ce606ee014610667578063d7224ba01461068757600080fd5b8063714c539811610108578063714c539814610575578063715018a61461058a5780638da5cb5b1461059f57806395d89b41146105bd578063a22cb465146105d2578063a475b5dd146105f257600080fd5b806361bc221a146104f45780636352211e1461050a5780636817c76c1461052a5780636f9fb98a1461054057806370a082311461055557600080fd5b806323b872dd116101dd5780634f6ccce7116101a15780634f6ccce714610431578063518302271461045157806351fb012d1461047257806355f804b3146104935780635c975abb146104b35780636098ee60146104d457600080fd5b806323b872dd146103b35780632f745c59146103d35780633ccfd60b146103f357806342842e0e146103fb578063458dfd251461041b57600080fd5b8063081812fc11610224578063081812fc14610311578063081c8c4414610349578063095ea7b31461035e57806316c38b3c1461037e57806318160ddd1461039e57600080fd5b806301ffc9a714610261578063047fc9aa14610296578063052d9e7e146102ba578063056b01ce146102dc57806306fdde03146102ef575b600080fd5b34801561026d57600080fd5b5061028161027c36600461230b565b61077c565b60405190151581526020015b60405180910390f35b3480156102a257600080fd5b506102ac600d5481565b60405190815260200161028d565b3480156102c657600080fd5b506102da6102d5366004612344565b6107e9565b005b6102da6102ea36600461240b565b61083a565b3480156102fb57600080fd5b50610304610bc5565b60405161028d91906124a8565b34801561031d57600080fd5b5061033161032c3660046124bb565b610c57565b6040516001600160a01b03909116815260200161028d565b34801561035557600080fd5b50610304610ce2565b34801561036a57600080fd5b506102da6103793660046124eb565b610d70565b34801561038a57600080fd5b506102da610399366004612344565b610e88565b3480156103aa57600080fd5b506000546102ac565b3480156103bf57600080fd5b506102da6103ce366004612515565b610ed0565b3480156103df57600080fd5b506102ac6103ee3660046124eb565b610edb565b6102da611049565b34801561040757600080fd5b506102da610416366004612515565b6110d6565b34801561042757600080fd5b506102ac600b5481565b34801561043d57600080fd5b506102ac61044c3660046124bb565b6110f1565b34801561045d57600080fd5b5060095461028190600160a81b900460ff1681565b34801561047e57600080fd5b5060095461028190600160b01b900460ff1681565b34801561049f57600080fd5b506102da6104ae366004612551565b611153565b3480156104bf57600080fd5b5060095461028190600160a01b900460ff1681565b3480156104e057600080fd5b506102da6104ef3660046124bb565b611190565b34801561050057600080fd5b506102ac600e5481565b34801561051657600080fd5b506103316105253660046124bb565b6111bf565b34801561053657600080fd5b506102ac600a5481565b34801561054c57600080fd5b506102ac6111d1565b34801561056157600080fd5b506102ac610570366004612586565b611203565b34801561058157600080fd5b50610304611294565b34801561059657600080fd5b506102da6112ce565b3480156105ab57600080fd5b506008546001600160a01b0316610331565b3480156105c957600080fd5b50610304611304565b3480156105de57600080fd5b506102da6105ed3660046125a1565b611313565b3480156105fe57600080fd5b506102da6113d8565b34801561061357600080fd5b506102da6106223660046124bb565b611417565b34801561063357600080fd5b506102da6106423660046125d4565b611446565b34801561065357600080fd5b506103046106623660046124bb565b61147f565b34801561067357600080fd5b50600954610331906001600160a01b031681565b34801561069357600080fd5b506102ac60075481565b3480156106a957600080fd5b506102ac600c5481565b3480156106bf57600080fd5b506102816106ce366004612650565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b34801561070857600080fd5b506102da61071736600461267a565b6115f1565b34801561072857600080fd5b506102da610737366004612551565b611636565b34801561074857600080fd5b506102da610757366004612586565b611673565b34801561076857600080fd5b506102da6107773660046124bb565b61170b565b60006001600160e01b031982166380ac58cd60e01b14806107ad57506001600160e01b03198216635b5e139f60e01b145b806107c857506001600160e01b0319821663780e9d6360e01b145b806107e357506301ffc9a760e01b6001600160e01b03198316145b92915050565b6008546001600160a01b0316331461081c5760405162461bcd60e51b81526004016108139061269d565b60405180910390fd5b60098054911515600160b01b0260ff60b01b19909216919091179055565b600954600160a01b900460ff16156108865760405162461bcd60e51b815260206004820152600f60248201526e10dbdb9d1c9858dd081c185d5cd959608a1b6044820152606401610813565b600d54600e5411156108da5760405162461bcd60e51b815260206004820152601c60248201527f4578636565646564206d6178206e756d626572206f66204e46547321000000006044820152606401610813565b600081116109235760405162461bcd60e51b8152602060048201526016602482015275596f752063616e6e6f74206d696e742030204e46547360501b6044820152606401610813565b600d5481600e5461093491906126e8565b111561098e5760405162461bcd60e51b815260206004820152602360248201527f596f752063616e2774206d696e742074686520746f74616c204e465420737570604482015262706c7960e81b6064820152608401610813565b6009546001600160a01b03163314156109cc5780600e546109af91906126e8565b600e556009546109c8906001600160a01b03168261173a565b5050565b80600a546109da9190612700565b341015610a1e5760405162461bcd60e51b8152602060048201526012602482015271496e73756666696369656e742066756e647360701b6044820152606401610813565b600954600160b01b900460ff1615610ac957610a5482604051806040016040528060028152602001614f4760f01b815250611754565b15610ae457600c5481610a6633611203565b610a7091906126e8565b1115610ac95760405162461bcd60e51b815260206004820152602260248201527f4f4720616464726573732063616e6e6f74206d696e74206d6f7265207468616e604482015261080d60f21b6064820152608401610813565b80600e54610ad791906126e8565b600e556109c8338261173a565b610b08826040518060400160405280600281526020016115d360f21b815250611754565b15610b7d57600b5481610b1a33611203565b610b2491906126e8565b1115610ac95760405162461bcd60e51b815260206004820152602260248201527f574c20616464726573732063616e6e6f74206d696e74206d6f7265207468616e604482015261203360f01b6064820152608401610813565b60405162461bcd60e51b815260206004820152601860248201527f57686974656c69737420646f6573206e6f7420657869737400000000000000006044820152606401610813565b606060018054610bd49061271f565b80601f0160208091040260200160405190810160405280929190818152602001828054610c009061271f565b8015610c4d5780601f10610c2257610100808354040283529160200191610c4d565b820191906000526020600020905b815481529060010190602001808311610c3057829003601f168201915b5050505050905090565b6000610c64826000541190565b610cc65760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b6064820152608401610813565b506000908152600560205260409020546001600160a01b031690565b600f8054610cef9061271f565b80601f0160208091040260200160405190810160405280929190818152602001828054610d1b9061271f565b8015610d685780601f10610d3d57610100808354040283529160200191610d68565b820191906000526020600020905b815481529060010190602001808311610d4b57829003601f168201915b505050505081565b6000610d7b826111bf565b9050806001600160a01b0316836001600160a01b03161415610dea5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b6064820152608401610813565b336001600160a01b0382161480610e065750610e0681336106ce565b610e785760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c000000000000006064820152608401610813565b610e838383836117ad565b505050565b6008546001600160a01b03163314610eb25760405162461bcd60e51b81526004016108139061269d565b60098054911515600160a01b0260ff60a01b19909216919091179055565b610e83838383611809565b6000610ee683611203565b8210610f3f5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b6064820152608401610813565b600080549080805b83811015610fe9576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215610f9a57805192505b876001600160a01b0316836001600160a01b03161415610fd65786841415610fc8575093506107e392505050565b83610fd28161275a565b9450505b5080610fe18161275a565b915050610f47565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b6064820152608401610813565b6008546001600160a01b031633146110735760405162461bcd60e51b81526004016108139061269d565b6009546040516000916001600160a01b03169047908381818185875af1925050503d80600081146110c0576040519150601f19603f3d011682016040523d82523d6000602084013e6110c5565b606091505b50509050806110d357600080fd5b50565b610e8383838360405180602001604052806000815250611446565b60008054821061114f5760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b6064820152608401610813565b5090565b6008546001600160a01b0316331461117d5760405162461bcd60e51b81526004016108139061269d565b80516109c8906010906020840190612265565b6008546001600160a01b031633146111ba5760405162461bcd60e51b81526004016108139061269d565b600c55565b60006111ca82611b91565b5192915050565b6008546000906001600160a01b031633146111fe5760405162461bcd60e51b81526004016108139061269d565b504790565b60006001600160a01b03821661126f5760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b6064820152608401610813565b506001600160a01b03166000908152600460205260409020546001600160801b031690565b6008546060906001600160a01b031633146112c15760405162461bcd60e51b81526004016108139061269d565b60108054610bd49061271f565b6008546001600160a01b031633146112f85760405162461bcd60e51b81526004016108139061269d565b6113026000611d3b565b565b606060028054610bd49061271f565b6001600160a01b03821633141561136c5760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c65720000000000006044820152606401610813565b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6008546001600160a01b031633146114025760405162461bcd60e51b81526004016108139061269d565b6009805460ff60a81b1916600160a81b179055565b6008546001600160a01b031633146114415760405162461bcd60e51b81526004016108139061269d565b600b55565b611451848484611809565b61145d84848484611d8d565b6114795760405162461bcd60e51b815260040161081390612775565b50505050565b606061148c826000541190565b6114f05760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610813565b600954600160a81b900460ff1661159357600f805461150e9061271f565b80601f016020809104026020016040519081016040528092919081815260200182805461153a9061271f565b80156115875780601f1061155c57610100808354040283529160200191611587565b820191906000526020600020905b81548152906001019060200180831161156a57829003601f168201915b50505050509050919050565b6000601080546115a29061271f565b9050116115be57604051806020016040528060008152506107e3565b60106115cb600e54611e8c565b6040516020016115dc9291906127e4565b60405160208183030381529060405292915050565b6008546001600160a01b0316331461161b5760405162461bcd60e51b81526004016108139061269d565b81600e5461162991906126e8565b600e556109c8818361173a565b6008546001600160a01b031633146116605760405162461bcd60e51b81526004016108139061269d565b80516109c890600f906020840190612265565b6008546001600160a01b0316331461169d5760405162461bcd60e51b81526004016108139061269d565b6001600160a01b0381166117025760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610813565b6110d381611d3b565b6008546001600160a01b031633146117355760405162461bcd60e51b81526004016108139061269d565b600a55565b6109c8828260405180602001604052806000815250611f8a565b600081604051602001611767919061289f565b604051602081830303815290604052805190602001208360405160200161178e919061289f565b6040516020818303038152906040528051906020012014905092915050565b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600061181482611b91565b80519091506000906001600160a01b0316336001600160a01b0316148061184b57503361184084610c57565b6001600160a01b0316145b8061185d5750815161185d90336106ce565b9050806118c75760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b6064820152608401610813565b846001600160a01b031682600001516001600160a01b03161461193b5760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b6064820152608401610813565b6001600160a01b03841661199f5760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b6064820152608401610813565b6119af60008484600001516117ad565b6001600160a01b03851660009081526004602052604081208054600192906119e19084906001600160801b03166128bb565b82546101009290920a6001600160801b038181021990931691831602179091556001600160a01b03861660009081526004602052604081208054600194509092611a2d918591166128e3565b82546001600160801b039182166101009390930a9283029190920219909116179055506040805180820182526001600160a01b03808716825267ffffffffffffffff428116602080850191825260008981526003909152948520935184549151909216600160a01b026001600160e01b03199091169190921617179055611ab58460016126e8565b6000818152600360205260409020549091506001600160a01b0316611b4757611adf816000541190565b15611b475760408051808201825284516001600160a01b03908116825260208087015167ffffffffffffffff9081168285019081526000878152600390935294909120925183549451909116600160a01b026001600160e01b03199094169116179190911790555b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b6040805180820190915260008082526020820152611bb0826000541190565b611c0f5760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b6064820152608401610813565b60007f00000000000000000000000000000000000000000000000000000000000000648310611c7057611c627f00000000000000000000000000000000000000000000000000000000000000648461290e565b611c6d9060016126e8565b90505b825b818110611cda576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215611cc757949350505050565b5080611cd281612925565b915050611c72565b5060405162461bcd60e51b815260206004820152602f60248201527f455243373231413a20756e61626c6520746f2064657465726d696e652074686560448201526e1037bbb732b91037b3103a37b5b2b760891b6064820152608401610813565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60006001600160a01b0384163b15611e8057604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611dd190339089908890889060040161293c565b6020604051808303816000875af1925050508015611e0c575060408051601f3d908101601f19168201909252611e0991810190612979565b60015b611e66573d808015611e3a576040519150601f19603f3d011682016040523d82523d6000602084013e611e3f565b606091505b508051611e5e5760405162461bcd60e51b815260040161081390612775565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611e84565b5060015b949350505050565b606081611eb05750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611eda5780611ec48161275a565b9150611ed39050600a836129ac565b9150611eb4565b60008167ffffffffffffffff811115611ef557611ef561235f565b6040519080825280601f01601f191660200182016040528015611f1f576020820181803683370190505b5090505b8415611e8457611f3460018361290e565b9150611f41600a866129c0565b611f4c9060306126e8565b60f81b818381518110611f6157611f616129d4565b60200101906001600160f81b031916908160001a905350611f83600a866129ac565b9450611f23565b6000546001600160a01b038416611fed5760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b6064820152608401610813565b611ff8816000541190565b156120455760405162461bcd60e51b815260206004820152601d60248201527f455243373231413a20746f6b656e20616c7265616479206d696e7465640000006044820152606401610813565b7f00000000000000000000000000000000000000000000000000000000000000648311156120c05760405162461bcd60e51b815260206004820152602260248201527f455243373231413a207175616e7469747920746f206d696e7420746f6f2068696044820152610ced60f31b6064820152608401610813565b6001600160a01b0384166000908152600460209081526040918290208251808401845290546001600160801b038082168352600160801b909104169181019190915281518083019092528051909190819061211c9087906128e3565b6001600160801b0316815260200185836020015161213a91906128e3565b6001600160801b039081169091526001600160a01b0380881660008181526004602090815260408083208751978301518716600160801b0297909616969096179094558451808601865291825267ffffffffffffffff4281168386019081528883526003909552948120915182549451909516600160a01b026001600160e01b031990941694909216939093179190911790915582905b8581101561225a5760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a461221e6000888488611d8d565b61223a5760405162461bcd60e51b815260040161081390612775565b816122448161275a565b92505080806122529061275a565b9150506121d1565b506000819055611b89565b8280546122719061271f565b90600052602060002090601f01602090048101928261229357600085556122d9565b82601f106122ac57805160ff19168380011785556122d9565b828001600101855582156122d9579182015b828111156122d95782518255916020019190600101906122be565b5061114f9291505b8082111561114f57600081556001016122e1565b6001600160e01b0319811681146110d357600080fd5b60006020828403121561231d57600080fd5b8135612328816122f5565b9392505050565b8035801515811461233f57600080fd5b919050565b60006020828403121561235657600080fd5b6123288261232f565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff808411156123905761239061235f565b604051601f8501601f19908116603f011681019082821181831017156123b8576123b861235f565b816040528093508581528686860111156123d157600080fd5b858560208301376000602087830101525050509392505050565b600082601f8301126123fc57600080fd5b61232883833560208501612375565b6000806040838503121561241e57600080fd5b823567ffffffffffffffff81111561243557600080fd5b612441858286016123eb565b95602094909401359450505050565b60005b8381101561246b578181015183820152602001612453565b838111156114795750506000910152565b60008151808452612494816020860160208601612450565b601f01601f19169290920160200192915050565b602081526000612328602083018461247c565b6000602082840312156124cd57600080fd5b5035919050565b80356001600160a01b038116811461233f57600080fd5b600080604083850312156124fe57600080fd5b612507836124d4565b946020939093013593505050565b60008060006060848603121561252a57600080fd5b612533846124d4565b9250612541602085016124d4565b9150604084013590509250925092565b60006020828403121561256357600080fd5b813567ffffffffffffffff81111561257a57600080fd5b611e84848285016123eb565b60006020828403121561259857600080fd5b612328826124d4565b600080604083850312156125b457600080fd5b6125bd836124d4565b91506125cb6020840161232f565b90509250929050565b600080600080608085870312156125ea57600080fd5b6125f3856124d4565b9350612601602086016124d4565b925060408501359150606085013567ffffffffffffffff81111561262457600080fd5b8501601f8101871361263557600080fd5b61264487823560208401612375565b91505092959194509250565b6000806040838503121561266357600080fd5b61266c836124d4565b91506125cb602084016124d4565b6000806040838503121561268d57600080fd5b823591506125cb602084016124d4565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b600082198211156126fb576126fb6126d2565b500190565b600081600019048311821515161561271a5761271a6126d2565b500290565b600181811c9082168061273357607f821691505b6020821081141561275457634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561276e5761276e6126d2565b5060010190565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b600081516127da818560208601612450565b9290920192915050565b600080845481600182811c91508083168061280057607f831692505b602080841082141561282057634e487b7160e01b86526022600452602486fd5b818015612834576001811461284557612872565b60ff19861689528489019650612872565b60008b81526020902060005b8681101561286a5781548b820152908501908301612851565b505084890196505b50505050505061289661288582866127c8565b64173539b7b760d91b815260050190565b95945050505050565b600082516128b1818460208701612450565b9190910192915050565b60006001600160801b03838116908316818110156128db576128db6126d2565b039392505050565b60006001600160801b03808316818516808303821115612905576129056126d2565b01949350505050565b600082821015612920576129206126d2565b500390565b600081612934576129346126d2565b506000190190565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061296f9083018461247c565b9695505050505050565b60006020828403121561298b57600080fd5b8151612328816122f5565b634e487b7160e01b600052601260045260246000fd5b6000826129bb576129bb612996565b500490565b6000826129cf576129cf612996565b500690565b634e487b7160e01b600052603260045260246000fdfea2646970667358221220139434b41527e14907fdeae0a34dacc677d94fa1b9948793145c242d3c29479064736f6c634300080b0033
Deployed Bytecode Sourcemap
40195:3854:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24540:372;;;;;;;;;;-1:-1:-1;24540:372:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;24540:372:0;;;;;;;;40542:28;;;;;;;;;;;;;;;;;;;738:25:1;;;726:2;711:18;40542:28:0;592:177:1;43696:87:0;;;;;;;;;;-1:-1:-1;43696:87:0;;;;;:::i;:::-;;:::i;:::-;;40749:1423;;;;;;:::i;:::-;;:::i;26345:100::-;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;27906:214::-;;;;;;;;;;-1:-1:-1;27906:214:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;3637:32:1;;;3619:51;;3607:2;3592:18;27906:214:0;3473:203:1;40606:28:0;;;;;;;;;;;;;:::i;27427:413::-;;;;;;;;;;-1:-1:-1;27427:413:0;;;;;:::i;:::-;;:::i;43401:80::-;;;;;;;;;;-1:-1:-1;43401:80:0;;;;;:::i;:::-;;:::i;22981:100::-;;;;;;;;;;-1:-1:-1;23034:7:0;23061:12;22981:100;;28782:162;;;;;;;;;;-1:-1:-1;28782:162:0;;;;;:::i;:::-;;:::i;23645:823::-;;;;;;;;;;-1:-1:-1;23645:823:0;;;;;:::i;:::-;;:::i;43885:161::-;;;:::i;29015:177::-;;;;;;;;;;-1:-1:-1;29015:177:0;;;;;:::i;:::-;;:::i;40464:32::-;;;;;;;;;;;;;;;;23158:187;;;;;;;;;;-1:-1:-1;23158:187:0;;;;;:::i;:::-;;:::i;40342:28::-;;;;;;;;;;-1:-1:-1;40342:28:0;;;;-1:-1:-1;;;40342:28:0;;;;;;40377:35;;;;;;;;;;-1:-1:-1;40377:35:0;;;;-1:-1:-1;;;40377:35:0;;;;;;43489:89;;;;;;;;;;-1:-1:-1;43489:89:0;;;;;:::i;:::-;;:::i;40309:26::-;;;;;;;;;;-1:-1:-1;40309:26:0;;;;-1:-1:-1;;;40309:26:0;;;;;;43215:85;;;;;;;;;;-1:-1:-1;43215:85:0;;;;;:::i;:::-;;:::i;40577:22::-;;;;;;;;;;;;;;;;26154:124;;;;;;;;;;-1:-1:-1;26154:124:0;;;;;:::i;:::-;;:::i;40419:38::-;;;;;;;;;;;;;;;;43586:102;;;;;;;;;;;;;:::i;24976:221::-;;;;;;;;;;-1:-1:-1;24976:221:0;;;;;:::i;:::-;;:::i;43791:86::-;;;;;;;;;;;;;:::i;39270:103::-;;;;;;;;;;;;;:::i;38619:87::-;;;;;;;;;;-1:-1:-1;38692:6:0;;-1:-1:-1;;;;;38692:6:0;38619:87;;26514:104;;;;;;;;;;;;;:::i;28192:288::-;;;;;;;;;;-1:-1:-1;28192:288:0;;;;;:::i;:::-;;:::i;42937:53::-;;;;;;;;;;;;;:::i;43308:85::-;;;;;;;;;;-1:-1:-1;43308:85:0;;;;;:::i;:::-;;:::i;29263:355::-;;;;;;;;;;-1:-1:-1;29263:355:0;;;;;:::i;:::-;;:::i;42180:374::-;;;;;;;;;;-1:-1:-1;42180:374:0;;;;;:::i;:::-;;:::i;40274:28::-;;;;;;;;;;-1:-1:-1;40274:28:0;;;;-1:-1:-1;;;;;40274:28:0;;;33923:43;;;;;;;;;;;;;;;;40503:32;;;;;;;;;;;;;;;;28551:164;;;;;;;;;;-1:-1:-1;28551:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;28672:25:0;;;28648:4;28672:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;28551:164;42754:175;;;;;;;;;;-1:-1:-1;42754:175:0;;;;;:::i;:::-;;:::i;43002:110::-;;;;;;;;;;-1:-1:-1;43002:110:0;;;;;:::i;:::-;;:::i;39528:201::-;;;;;;;;;;-1:-1:-1;39528:201:0;;;;;:::i;:::-;;:::i;43124:83::-;;;;;;;;;;-1:-1:-1;43124:83:0;;;;;:::i;:::-;;:::i;24540:372::-;24642:4;-1:-1:-1;;;;;;24679:40:0;;-1:-1:-1;;;24679:40:0;;:105;;-1:-1:-1;;;;;;;24736:48:0;;-1:-1:-1;;;24736:48:0;24679:105;:172;;;-1:-1:-1;;;;;;;24801:50:0;;-1:-1:-1;;;24801:50:0;24679:172;:225;;;-1:-1:-1;;;;;;;;;;13197:40:0;;;24868:36;24659:245;24540:372;-1:-1:-1;;24540:372:0:o;43696:87::-;38692:6;;-1:-1:-1;;;;;38692:6:0;20759:10;38839:23;38831:68;;;;-1:-1:-1;;;38831:68:0;;;;;;;:::i;:::-;;;;;;;;;43756:16:::1;:25:::0;;;::::1;;-1:-1:-1::0;;;43756:25:0::1;-1:-1:-1::0;;;;43756:25:0;;::::1;::::0;;;::::1;::::0;;43696:87::o;40749:1423::-;40846:6;;-1:-1:-1;;;40846:6:0;;;;40845:7;40837:35;;;;-1:-1:-1;;;40837:35:0;;6987:2:1;40837:35:0;;;6969:21:1;7026:2;7006:18;;;6999:30;-1:-1:-1;;;7045:18:1;;;7038:45;7100:18;;40837:35:0;6785:339:1;40837:35:0;40902:6;;40891:7;;:17;;40883:58;;;;-1:-1:-1;;;40883:58:0;;7331:2:1;40883:58:0;;;7313:21:1;7370:2;7350:18;;;7343:30;7409;7389:18;;;7382:58;7457:18;;40883:58:0;7129:352:1;40883:58:0;40974:1;40960:11;:15;40952:50;;;;-1:-1:-1;;;40952:50:0;;7688:2:1;40952:50:0;;;7670:21:1;7727:2;7707:18;;;7700:30;-1:-1:-1;;;7746:18:1;;;7739:52;7808:18;;40952:50:0;7486:346:1;40952:50:0;41046:6;;41031:11;41021:7;;:21;;;;:::i;:::-;:31;;41013:79;;;;-1:-1:-1;;;41013:79:0;;8304:2:1;41013:79:0;;;8286:21:1;8343:2;8323:18;;;8316:30;8382:34;8362:18;;;8355:62;-1:-1:-1;;;8433:18:1;;;8426:33;8476:19;;41013:79:0;8102:399:1;41013:79:0;41123:13;;-1:-1:-1;;;;;41123:13:0;41109:10;:27;41105:164;;;41173:11;41163:7;;:21;;;;:::i;:::-;41153:7;:31;41209:13;;41199:37;;-1:-1:-1;;;;;41209:13:0;41224:11;41199:9;:37::i;:::-;40749:1423;;:::o;41105:164::-;41314:11;41302:9;;:23;;;;:::i;:::-;41289:9;:36;;41281:67;;;;-1:-1:-1;;;41281:67:0;;8881:2:1;41281:67:0;;;8863:21:1;8920:2;8900:18;;;8893:30;-1:-1:-1;;;8939:18:1;;;8932:48;8997:18;;41281:67:0;8679:342:1;41281:67:0;41365:16;;-1:-1:-1;;;41365:16:0;;;;41361:715;;;41404:31;41419:9;41404:31;;;;;;;;;;;;;-1:-1:-1;;;41404:31:0;;;:14;:31::i;:::-;41400:299;;;41503:13;;41488:11;41464:21;41474:10;41464:9;:21::i;:::-;:35;;;;:::i;:::-;:52;;41456:99;;;;-1:-1:-1;;;41456:99:0;;9228:2:1;41456:99:0;;;9210:21:1;9267:2;9247:18;;;9240:30;9306:34;9286:18;;;9279:62;-1:-1:-1;;;9357:18:1;;;9350:32;9399:19;;41456:99:0;9026:398:1;41456:99:0;41594:11;41584:7;;:21;;;;:::i;:::-;41574:7;:31;41624:34;41634:10;41646:11;41624:9;:34::i;41400:299::-;41719:31;41734:9;41719:31;;;;;;;;;;;;;-1:-1:-1;;;41719:31:0;;;:14;:31::i;:::-;41715:299;;;41818:13;;41803:11;41779:21;41789:10;41779:9;:21::i;:::-;:35;;;;:::i;:::-;:52;;41771:99;;;;-1:-1:-1;;;41771:99:0;;9631:2:1;41771:99:0;;;9613:21:1;9670:2;9650:18;;;9643:30;9709:34;9689:18;;;9682:62;-1:-1:-1;;;9760:18:1;;;9753:32;9802:19;;41771:99:0;9429:398:1;41715:299:0;42030:34;;-1:-1:-1;;;42030:34:0;;10034:2:1;42030:34:0;;;10016:21:1;10073:2;10053:18;;;10046:30;10112:26;10092:18;;;10085:54;10156:18;;42030:34:0;9832:348:1;26345:100:0;26399:13;26432:5;26425:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26345:100;:::o;27906:214::-;27974:7;28002:16;28010:7;29930:4;29964:12;-1:-1:-1;29954:22:0;29873:111;28002:16;27994:74;;;;-1:-1:-1;;;27994:74:0;;10772:2:1;27994:74:0;;;10754:21:1;10811:2;10791:18;;;10784:30;10850:34;10830:18;;;10823:62;-1:-1:-1;;;10901:18:1;;;10894:43;10954:19;;27994:74:0;10570:409:1;27994:74:0;-1:-1:-1;28088:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;28088:24:0;;27906:214::o;40606:28::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;27427:413::-;27500:13;27516:24;27532:7;27516:15;:24::i;:::-;27500:40;;27565:5;-1:-1:-1;;;;;27559:11:0;:2;-1:-1:-1;;;;;27559:11:0;;;27551:58;;;;-1:-1:-1;;;27551:58:0;;11186:2:1;27551:58:0;;;11168:21:1;11225:2;11205:18;;;11198:30;11264:34;11244:18;;;11237:62;-1:-1:-1;;;11315:18:1;;;11308:32;11357:19;;27551:58:0;10984:398:1;27551:58:0;20759:10;-1:-1:-1;;;;;27644:21:0;;;;:62;;-1:-1:-1;27669:37:0;27686:5;20759:10;28551:164;:::i;27669:37::-;27622:169;;;;-1:-1:-1;;;27622:169:0;;11589:2:1;27622:169:0;;;11571:21:1;11628:2;11608:18;;;11601:30;11667:34;11647:18;;;11640:62;11738:27;11718:18;;;11711:55;11783:19;;27622:169:0;11387:421:1;27622:169:0;27804:28;27813:2;27817:7;27826:5;27804:8;:28::i;:::-;27489:351;27427:413;;:::o;43401:80::-;38692:6;;-1:-1:-1;;;;;38692:6:0;20759:10;38839:23;38831:68;;;;-1:-1:-1;;;38831:68:0;;;;;;;:::i;:::-;43458:6:::1;:21:::0;;;::::1;;-1:-1:-1::0;;;43458:21:0::1;-1:-1:-1::0;;;;43458:21:0;;::::1;::::0;;;::::1;::::0;;43401:80::o;28782:162::-;28908:28;28918:4;28924:2;28928:7;28908:9;:28::i;23645:823::-;23734:7;23770:16;23780:5;23770:9;:16::i;:::-;23762:5;:24;23754:71;;;;-1:-1:-1;;;23754:71:0;;12015:2:1;23754:71:0;;;11997:21:1;12054:2;12034:18;;;12027:30;12093:34;12073:18;;;12066:62;-1:-1:-1;;;12144:18:1;;;12137:32;12186:19;;23754:71:0;11813:398:1;23754:71:0;23836:22;23061:12;;;23836:22;;23968:426;23992:14;23988:1;:18;23968:426;;;24028:31;24062:14;;;:11;:14;;;;;;;;;24028:48;;;;;;;;;-1:-1:-1;;;;;24028:48:0;;;;;-1:-1:-1;;;24028:48:0;;;;;;;;;;;;24095:28;24091:103;;24164:14;;;-1:-1:-1;24091:103:0;24233:5;-1:-1:-1;;;;;24212:26:0;:17;-1:-1:-1;;;;;24212:26:0;;24208:175;;;24278:5;24263:11;:20;24259:77;;;-1:-1:-1;24315:1:0;-1:-1:-1;24308:8:0;;-1:-1:-1;;;24308:8:0;24259:77;24354:13;;;;:::i;:::-;;;;24208:175;-1:-1:-1;24008:3:0;;;;:::i;:::-;;;;23968:426;;;-1:-1:-1;24404:56:0;;-1:-1:-1;;;24404:56:0;;12558:2:1;24404:56:0;;;12540:21:1;12597:2;12577:18;;;12570:30;12636:34;12616:18;;;12609:62;-1:-1:-1;;;12687:18:1;;;12680:44;12741:19;;24404:56:0;12356:410:1;43885:161:0;38692:6;;-1:-1:-1;;;;;38692:6:0;20759:10;38839:23;38831:68;;;;-1:-1:-1;;;38831:68:0;;;;;;;:::i;:::-;43963:13:::1;::::0;43955:61:::1;::::0;43942:7:::1;::::0;-1:-1:-1;;;;;43963:13:0::1;::::0;43990:21:::1;::::0;43942:7;43955:61;43942:7;43955:61;43990:21;43963:13;43955:61:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43941:75;;;44035:2;44027:11;;;::::0;::::1;;43930:116;43885:161::o:0;29015:177::-;29145:39;29162:4;29168:2;29172:7;29145:39;;;;;;;;;;;;:16;:39::i;23158:187::-;23225:7;23061:12;;23253:5;:21;23245:69;;;;-1:-1:-1;;;23245:69:0;;13183:2:1;23245:69:0;;;13165:21:1;13222:2;13202:18;;;13195:30;13261:34;13241:18;;;13234:62;-1:-1:-1;;;13312:18:1;;;13305:33;13355:19;;23245:69:0;12981:399:1;23245:69:0;-1:-1:-1;23332:5:0;23158:187::o;43489:89::-;38692:6;;-1:-1:-1;;;;;38692:6:0;20759:10;38839:23;38831:68;;;;-1:-1:-1;;;38831:68:0;;;;;;;:::i;:::-;43555:21;;::::1;::::0;:7:::1;::::0;:21:::1;::::0;::::1;::::0;::::1;:::i;43215:85::-:0;38692:6;;-1:-1:-1;;;;;38692:6:0;20759:10;38839:23;38831:68;;;;-1:-1:-1;;;38831:68:0;;;;;;;:::i;:::-;43276:13:::1;:22:::0;43215:85::o;26154:124::-;26218:7;26245:20;26257:7;26245:11;:20::i;:::-;:25;;26154:124;-1:-1:-1;;26154:124:0:o;43586:102::-;38692:6;;43648:7;;-1:-1:-1;;;;;38692:6:0;20759:10;38839:23;38831:68;;;;-1:-1:-1;;;38831:68:0;;;;;;;:::i;:::-;-1:-1:-1;43665:21:0::1;43586:102:::0;:::o;24976:221::-;25040:7;-1:-1:-1;;;;;25068:19:0;;25060:75;;;;-1:-1:-1;;;25060:75:0;;13587:2:1;25060:75:0;;;13569:21:1;13626:2;13606:18;;;13599:30;13665:34;13645:18;;;13638:62;-1:-1:-1;;;13716:18:1;;;13709:41;13767:19;;25060:75:0;13385:407:1;25060:75:0;-1:-1:-1;;;;;;25161:19:0;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;25161:27:0;;24976:221::o;43791:86::-;38692:6;;43844:13;;-1:-1:-1;;;;;38692:6:0;20759:10;38839:23;38831:68;;;;-1:-1:-1;;;38831:68:0;;;;;;;:::i;:::-;43868:7:::1;43861:14;;;;;:::i;39270:103::-:0;38692:6;;-1:-1:-1;;;;;38692:6:0;20759:10;38839:23;38831:68;;;;-1:-1:-1;;;38831:68:0;;;;;;;:::i;:::-;39335:30:::1;39362:1;39335:18;:30::i;:::-;39270:103::o:0;26514:104::-;26570:13;26603:7;26596:14;;;;;:::i;28192:288::-;-1:-1:-1;;;;;28287:24:0;;20759:10;28287:24;;28279:63;;;;-1:-1:-1;;;28279:63:0;;13999:2:1;28279:63:0;;;13981:21:1;14038:2;14018:18;;;14011:30;14077:28;14057:18;;;14050:56;14123:18;;28279:63:0;13797:350:1;28279:63:0;20759:10;28355:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;28355:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;28355:53:0;;;;;;;;;;28424:48;;540:41:1;;;28355:42:0;;20759:10;28424:48;;513:18:1;28424:48:0;;;;;;;28192:288;;:::o;42937:53::-;38692:6;;-1:-1:-1;;;;;38692:6:0;20759:10;38839:23;38831:68;;;;-1:-1:-1;;;38831:68:0;;;;;;;:::i;:::-;42973:8:::1;:15:::0;;-1:-1:-1;;;;42973:15:0::1;-1:-1:-1::0;;;42973:15:0::1;::::0;;42937:53::o;43308:85::-;38692:6;;-1:-1:-1;;;;;38692:6:0;20759:10;38839:23;38831:68;;;;-1:-1:-1;;;38831:68:0;;;;;;;:::i;:::-;43369:13:::1;:22:::0;43308:85::o;29263:355::-;29422:28;29432:4;29438:2;29442:7;29422:9;:28::i;:::-;29483:48;29506:4;29512:2;29516:7;29525:5;29483:22;:48::i;:::-;29461:149;;;;-1:-1:-1;;;29461:149:0;;;;;;;:::i;:::-;29263:355;;;;:::o;42180:374::-;42253:13;42287:16;42295:7;29930:4;29964:12;-1:-1:-1;29954:22:0;29873:111;42287:16;42279:76;;;;-1:-1:-1;;;42279:76:0;;14774:2:1;42279:76:0;;;14756:21:1;14813:2;14793:18;;;14786:30;14852:34;14832:18;;;14825:62;-1:-1:-1;;;14903:18:1;;;14896:45;14958:19;;42279:76:0;14572:411:1;42279:76:0;42372:8;;-1:-1:-1;;;42372:8:0;;;;42368:38;;42390:14;42383:21;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42180:374;;;:::o;42368:38::-;42449:1;42431:7;42425:21;;;;;:::i;:::-;;;:25;:121;;;;;;;;;;;;;;;;;42490:7;42499:18;:7;;:16;:18::i;:::-;42473:54;;;;;;;;;:::i;:::-;;;;;;;;;;;;;42418:128;42180:374;-1:-1:-1;;42180:374:0:o;42754:175::-;38692:6;;-1:-1:-1;;;;;38692:6:0;20759:10;38839:23;38831:68;;;;-1:-1:-1;;;38831:68:0;;;;;;;:::i;:::-;42866:11:::1;42856:7;;:21;;;;:::i;:::-;42846:7;:31:::0;42888:33:::1;42898:9:::0;42909:11;42888:9:::1;:33::i;43002:110::-:0;38692:6;;-1:-1:-1;;;;;38692:6:0;20759:10;38839:23;38831:68;;;;-1:-1:-1;;;38831:68:0;;;;;;;:::i;:::-;43078:32;;::::1;::::0;:14:::1;::::0;:32:::1;::::0;::::1;::::0;::::1;:::i;39528:201::-:0;38692:6;;-1:-1:-1;;;;;38692:6:0;20759:10;38839:23;38831:68;;;;-1:-1:-1;;;38831:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;39617:22:0;::::1;39609:73;;;::::0;-1:-1:-1;;;39609:73:0;;16930:2:1;39609:73:0::1;::::0;::::1;16912:21:1::0;16969:2;16949:18;;;16942:30;17008:34;16988:18;;;16981:62;-1:-1:-1;;;17059:18:1;;;17052:36;17105:19;;39609:73:0::1;16728:402:1::0;39609:73:0::1;39693:28;39712:8;39693:18;:28::i;43124:83::-:0;38692:6;;-1:-1:-1;;;;;38692:6:0;20759:10;38839:23;38831:68;;;;-1:-1:-1;;;38831:68:0;;;;;;;:::i;:::-;43184:9:::1;:21:::0;43124:83::o;29992:104::-;30061:27;30071:2;30075:8;30061:27;;;;;;;;;;;;:9;:27::i;42562:184::-;42644:4;42733:1;42715:21;;;;;;;;:::i;:::-;;;;;;;;;;;;;42705:32;;;;;;42697:1;42679:21;;;;;;;;:::i;:::-;;;;;;;;;;;;;42669:32;;;;;;:68;42661:77;;42562:184;;;;:::o;33719:196::-;33834:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;33834:29:0;-1:-1:-1;;;;;33834:29:0;;;;;;;;;33879:28;;33834:24;;33879:28;;;;;;;33719:196;;;:::o;32027:1574::-;32142:35;32180:20;32192:7;32180:11;:20::i;:::-;32255:18;;32142:58;;-1:-1:-1;32213:22:0;;-1:-1:-1;;;;;32239:34:0;20759:10;-1:-1:-1;;;;;32239:34:0;;:87;;;-1:-1:-1;20759:10:0;32290:20;32302:7;32290:11;:20::i;:::-;-1:-1:-1;;;;;32290:36:0;;32239:87;:154;;;-1:-1:-1;32360:18:0;;32343:50;;20759:10;28551:164;:::i;32343:50::-;32213:181;;32415:17;32407:80;;;;-1:-1:-1;;;32407:80:0;;17618:2:1;32407:80:0;;;17600:21:1;17657:2;17637:18;;;17630:30;17696:34;17676:18;;;17669:62;-1:-1:-1;;;17747:18:1;;;17740:48;17805:19;;32407:80:0;17416:414:1;32407:80:0;32530:4;-1:-1:-1;;;;;32508:26:0;:13;:18;;;-1:-1:-1;;;;;32508:26:0;;32500:77;;;;-1:-1:-1;;;32500:77:0;;18037:2:1;32500:77:0;;;18019:21:1;18076:2;18056:18;;;18049:30;18115:34;18095:18;;;18088:62;-1:-1:-1;;;18166:18:1;;;18159:36;18212:19;;32500:77:0;17835:402:1;32500:77:0;-1:-1:-1;;;;;32596:16:0;;32588:66;;;;-1:-1:-1;;;32588:66:0;;18444:2:1;32588:66:0;;;18426:21:1;18483:2;18463:18;;;18456:30;18522:34;18502:18;;;18495:62;-1:-1:-1;;;18573:18:1;;;18566:35;18618:19;;32588:66:0;18242:401:1;32588:66:0;32775:49;32792:1;32796:7;32805:13;:18;;;32775:8;:49::i;:::-;-1:-1:-1;;;;;32837:18:0;;;;;;:12;:18;;;;;:31;;32867:1;;32837:18;:31;;32867:1;;-1:-1:-1;;;;;32837:31:0;;:::i;:::-;;;;;;;;-1:-1:-1;;;;;32837:31:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;32879:16:0;;-1:-1:-1;32879:16:0;;;:12;:16;;;;;:29;;-1:-1:-1;;;32879:16:0;;:29;;-1:-1:-1;;32879:29:0;;:::i;:::-;;;-1:-1:-1;;;;;32879:29:0;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;32942:43:0;;;;;;;;-1:-1:-1;;;;;32942:43:0;;;;;;32968:15;32942:43;;;;;;;;;-1:-1:-1;32919:20:0;;;:11;:20;;;;;;:66;;;;;;;;;-1:-1:-1;;;32919:66:0;-1:-1:-1;;;;;;32919:66:0;;;;;;;;;;;33247:11;32931:7;-1:-1:-1;33247:11:0;:::i;:::-;33314:1;33273:24;;;:11;:24;;;;;:29;33225:33;;-1:-1:-1;;;;;;33273:29:0;33269:227;;33337:20;33345:11;29930:4;29964:12;-1:-1:-1;29954:22:0;29873:111;33337:20;33333:152;;;33405:64;;;;;;;;33420:18;;-1:-1:-1;;;;;33405:64:0;;;;;;33440:28;;;;33405:64;;;;;;;;;;-1:-1:-1;33378:24:0;;;:11;:24;;;;;;;:91;;;;;;;;;-1:-1:-1;;;33378:91:0;-1:-1:-1;;;;;;33378:91:0;;;;;;;;;;;;33333:152;33532:7;33528:2;-1:-1:-1;;;;;33513:27:0;33522:4;-1:-1:-1;;;;;33513:27:0;;;;;;;;;;;33551:42;32131:1470;;;32027:1574;;;:::o;25442:650::-;-1:-1:-1;;;;;;;;;;;;;;;;;25545:16:0;25553:7;29930:4;29964:12;-1:-1:-1;29954:22:0;29873:111;25545:16;25537:71;;;;-1:-1:-1;;;25537:71:0;;19359:2:1;25537:71:0;;;19341:21:1;19398:2;19378:18;;;19371:30;19437:34;19417:18;;;19410:62;-1:-1:-1;;;19488:18:1;;;19481:40;19538:19;;25537:71:0;19157:406:1;25537:71:0;25621:26;25673:12;25662:7;:23;25658:103;;25723:22;25733:12;25723:7;:22;:::i;:::-;:26;;25748:1;25723:26;:::i;:::-;25702:47;;25658:103;25793:7;25773:242;25810:18;25802:4;:26;25773:242;;25853:31;25887:17;;;:11;:17;;;;;;;;;25853:51;;;;;;;;;-1:-1:-1;;;;;25853:51:0;;;;;-1:-1:-1;;;25853:51:0;;;;;;;;;;;;25923:28;25919:85;;25979:9;25442:650;-1:-1:-1;;;;25442:650:0:o;25919:85::-;-1:-1:-1;25830:6:0;;;;:::i;:::-;;;;25773:242;;;-1:-1:-1;26027:57:0;;-1:-1:-1;;;26027:57:0;;20041:2:1;26027:57:0;;;20023:21:1;20080:2;20060:18;;;20053:30;20119:34;20099:18;;;20092:62;-1:-1:-1;;;20170:18:1;;;20163:45;20225:19;;26027:57:0;19839:411:1;39889:191:0;39982:6;;;-1:-1:-1;;;;;39999:17:0;;;-1:-1:-1;;;;;;39999:17:0;;;;;;;40032:40;;39982:6;;;39999:17;39982:6;;40032:40;;39963:16;;40032:40;39952:128;39889:191;:::o;35529:804::-;35684:4;-1:-1:-1;;;;;35705:13:0;;3267:20;3315:8;35701:625;;35741:72;;-1:-1:-1;;;35741:72:0;;-1:-1:-1;;;;;35741:36:0;;;;;:72;;20759:10;;35792:4;;35798:7;;35807:5;;35741:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;35741:72:0;;;;;;;;-1:-1:-1;;35741:72:0;;;;;;;;;;;;:::i;:::-;;;35737:534;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;35987:13:0;;35983:273;;36030:61;;-1:-1:-1;;;36030:61:0;;;;;;;:::i;35983:273::-;36206:6;36200:13;36191:6;36187:2;36183:15;36176:38;35737:534;-1:-1:-1;;;;;;35864:55:0;-1:-1:-1;;;35864:55:0;;-1:-1:-1;35857:62:0;;35701:625;-1:-1:-1;36310:4:0;35701:625;35529:804;;;;;;:::o;365:723::-;421:13;642:10;638:53;;-1:-1:-1;;669:10:0;;;;;;;;;;;;-1:-1:-1;;;669:10:0;;;;;365:723::o;638:53::-;716:5;701:12;757:78;764:9;;757:78;;790:8;;;;:::i;:::-;;-1:-1:-1;813:10:0;;-1:-1:-1;821:2:0;813:10;;:::i;:::-;;;757:78;;;845:19;877:6;867:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;867:17:0;;845:39;;895:154;902:10;;895:154;;929:11;939:1;929:11;;:::i;:::-;;-1:-1:-1;998:10:0;1006:2;998:5;:10;:::i;:::-;985:24;;:2;:24;:::i;:::-;972:39;;955:6;962;955:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;955:56:0;;;;;;;;-1:-1:-1;1026:11:0;1035:2;1026:11;;:::i;:::-;;;895:154;;30373:1400;30496:20;30519:12;-1:-1:-1;;;;;30550:16:0;;30542:62;;;;-1:-1:-1;;;30542:62:0;;21722:2:1;30542:62:0;;;21704:21:1;21761:2;21741:18;;;21734:30;21800:34;21780:18;;;21773:62;-1:-1:-1;;;21851:18:1;;;21844:31;21892:19;;30542:62:0;21520:397:1;30542:62:0;30749:21;30757:12;29930:4;29964:12;-1:-1:-1;29954:22:0;29873:111;30749:21;30748:22;30740:64;;;;-1:-1:-1;;;30740:64:0;;22124:2:1;30740:64:0;;;22106:21:1;22163:2;22143:18;;;22136:30;22202:31;22182:18;;;22175:59;22251:18;;30740:64:0;21922:353:1;30740:64:0;30835:12;30823:8;:24;;30815:71;;;;-1:-1:-1;;;30815:71:0;;22482:2:1;30815:71:0;;;22464:21:1;22521:2;22501:18;;;22494:30;22560:34;22540:18;;;22533:62;-1:-1:-1;;;22611:18:1;;;22604:32;22653:19;;30815:71:0;22280:398:1;30815:71:0;-1:-1:-1;;;;;31006:16:0;;30973:30;31006:16;;;:12;:16;;;;;;;;;30973:49;;;;;;;;;-1:-1:-1;;;;;30973:49:0;;;;;-1:-1:-1;;;30973:49:0;;;;;;;;;;;31052:135;;;;;;;;31078:19;;30973:49;;31052:135;;;31078:39;;31108:8;;31078:39;:::i;:::-;-1:-1:-1;;;;;31052:135:0;;;;;31167:8;31132:11;:24;;;:44;;;;:::i;:::-;-1:-1:-1;;;;;31052:135:0;;;;;;-1:-1:-1;;;;;31033:16:0;;;;;;;:12;:16;;;;;;;;:154;;;;;;;;-1:-1:-1;;;31033:154:0;;;;;;;;;;;;31226:43;;;;;;;;;;;31252:15;31226:43;;;;;;;;31198:25;;;:11;:25;;;;;;:71;;;;;;;;;-1:-1:-1;;;31198:71:0;-1:-1:-1;;;;;;31198:71:0;;;;;;;;;;;;;;;;;;31210:12;;31330:325;31354:8;31350:1;:12;31330:325;;;31389:38;;31414:12;;-1:-1:-1;;;;;31389:38:0;;;31406:1;;31389:38;;31406:1;;31389:38;31468:59;31499:1;31503:2;31507:12;31521:5;31468:22;:59::i;:::-;31442:172;;;;-1:-1:-1;;;31442:172:0;;;;;;;:::i;:::-;31629:14;;;;:::i;:::-;;;;31364:3;;;;;:::i;:::-;;;;31330:325;;;-1:-1:-1;31667:12:0;:27;;;31705:60;29263:355;-1:-1:-1;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14:131:1;-1:-1:-1;;;;;;88:32:1;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;:::-;384:5;150:245;-1:-1:-1;;;150:245:1:o;774:160::-;839:20;;895:13;;888:21;878:32;;868:60;;924:1;921;914:12;868:60;774:160;;;:::o;939:180::-;995:6;1048:2;1036:9;1027:7;1023:23;1019:32;1016:52;;;1064:1;1061;1054:12;1016:52;1087:26;1103:9;1087:26;:::i;1124:127::-;1185:10;1180:3;1176:20;1173:1;1166:31;1216:4;1213:1;1206:15;1240:4;1237:1;1230:15;1256:632;1321:5;1351:18;1392:2;1384:6;1381:14;1378:40;;;1398:18;;:::i;:::-;1473:2;1467:9;1441:2;1527:15;;-1:-1:-1;;1523:24:1;;;1549:2;1519:33;1515:42;1503:55;;;1573:18;;;1593:22;;;1570:46;1567:72;;;1619:18;;:::i;:::-;1659:10;1655:2;1648:22;1688:6;1679:15;;1718:6;1710;1703:22;1758:3;1749:6;1744:3;1740:16;1737:25;1734:45;;;1775:1;1772;1765:12;1734:45;1825:6;1820:3;1813:4;1805:6;1801:17;1788:44;1880:1;1873:4;1864:6;1856;1852:19;1848:30;1841:41;;;;1256:632;;;;;:::o;1893:222::-;1936:5;1989:3;1982:4;1974:6;1970:17;1966:27;1956:55;;2007:1;2004;1997:12;1956:55;2029:80;2105:3;2096:6;2083:20;2076:4;2068:6;2064:17;2029:80;:::i;2120:390::-;2198:6;2206;2259:2;2247:9;2238:7;2234:23;2230:32;2227:52;;;2275:1;2272;2265:12;2227:52;2315:9;2302:23;2348:18;2340:6;2337:30;2334:50;;;2380:1;2377;2370:12;2334:50;2403;2445:7;2436:6;2425:9;2421:22;2403:50;:::i;:::-;2393:60;2500:2;2485:18;;;;2472:32;;-1:-1:-1;;;;2120:390:1:o;2515:258::-;2587:1;2597:113;2611:6;2608:1;2605:13;2597:113;;;2687:11;;;2681:18;2668:11;;;2661:39;2633:2;2626:10;2597:113;;;2728:6;2725:1;2722:13;2719:48;;;-1:-1:-1;;2763:1:1;2745:16;;2738:27;2515:258::o;2778:269::-;2831:3;2869:5;2863:12;2896:6;2891:3;2884:19;2912:63;2968:6;2961:4;2956:3;2952:14;2945:4;2938:5;2934:16;2912:63;:::i;:::-;3029:2;3008:15;-1:-1:-1;;3004:29:1;2995:39;;;;3036:4;2991:50;;2778:269;-1:-1:-1;;2778:269:1:o;3052:231::-;3201:2;3190:9;3183:21;3164:4;3221:56;3273:2;3262:9;3258:18;3250:6;3221:56;:::i;3288:180::-;3347:6;3400:2;3388:9;3379:7;3375:23;3371:32;3368:52;;;3416:1;3413;3406:12;3368:52;-1:-1:-1;3439:23:1;;3288:180;-1:-1:-1;3288:180:1:o;3681:173::-;3749:20;;-1:-1:-1;;;;;3798:31:1;;3788:42;;3778:70;;3844:1;3841;3834:12;3859:254;3927:6;3935;3988:2;3976:9;3967:7;3963:23;3959:32;3956:52;;;4004:1;4001;3994:12;3956:52;4027:29;4046:9;4027:29;:::i;:::-;4017:39;4103:2;4088:18;;;;4075:32;;-1:-1:-1;;;3859:254:1:o;4118:328::-;4195:6;4203;4211;4264:2;4252:9;4243:7;4239:23;4235:32;4232:52;;;4280:1;4277;4270:12;4232:52;4303:29;4322:9;4303:29;:::i;:::-;4293:39;;4351:38;4385:2;4374:9;4370:18;4351:38;:::i;:::-;4341:48;;4436:2;4425:9;4421:18;4408:32;4398:42;;4118:328;;;;;:::o;4451:322::-;4520:6;4573:2;4561:9;4552:7;4548:23;4544:32;4541:52;;;4589:1;4586;4579:12;4541:52;4629:9;4616:23;4662:18;4654:6;4651:30;4648:50;;;4694:1;4691;4684:12;4648:50;4717;4759:7;4750:6;4739:9;4735:22;4717:50;:::i;4778:186::-;4837:6;4890:2;4878:9;4869:7;4865:23;4861:32;4858:52;;;4906:1;4903;4896:12;4858:52;4929:29;4948:9;4929:29;:::i;4969:254::-;5034:6;5042;5095:2;5083:9;5074:7;5070:23;5066:32;5063:52;;;5111:1;5108;5101:12;5063:52;5134:29;5153:9;5134:29;:::i;:::-;5124:39;;5182:35;5213:2;5202:9;5198:18;5182:35;:::i;:::-;5172:45;;4969:254;;;;;:::o;5228:667::-;5323:6;5331;5339;5347;5400:3;5388:9;5379:7;5375:23;5371:33;5368:53;;;5417:1;5414;5407:12;5368:53;5440:29;5459:9;5440:29;:::i;:::-;5430:39;;5488:38;5522:2;5511:9;5507:18;5488:38;:::i;:::-;5478:48;;5573:2;5562:9;5558:18;5545:32;5535:42;;5628:2;5617:9;5613:18;5600:32;5655:18;5647:6;5644:30;5641:50;;;5687:1;5684;5677:12;5641:50;5710:22;;5763:4;5755:13;;5751:27;-1:-1:-1;5741:55:1;;5792:1;5789;5782:12;5741:55;5815:74;5881:7;5876:2;5863:16;5858:2;5854;5850:11;5815:74;:::i;:::-;5805:84;;;5228:667;;;;;;;:::o;5900:260::-;5968:6;5976;6029:2;6017:9;6008:7;6004:23;6000:32;5997:52;;;6045:1;6042;6035:12;5997:52;6068:29;6087:9;6068:29;:::i;:::-;6058:39;;6116:38;6150:2;6139:9;6135:18;6116:38;:::i;6165:254::-;6233:6;6241;6294:2;6282:9;6273:7;6269:23;6265:32;6262:52;;;6310:1;6307;6300:12;6262:52;6346:9;6333:23;6323:33;;6375:38;6409:2;6398:9;6394:18;6375:38;:::i;6424:356::-;6626:2;6608:21;;;6645:18;;;6638:30;6704:34;6699:2;6684:18;;6677:62;6771:2;6756:18;;6424:356::o;7837:127::-;7898:10;7893:3;7889:20;7886:1;7879:31;7929:4;7926:1;7919:15;7953:4;7950:1;7943:15;7969:128;8009:3;8040:1;8036:6;8033:1;8030:13;8027:39;;;8046:18;;:::i;:::-;-1:-1:-1;8082:9:1;;7969:128::o;8506:168::-;8546:7;8612:1;8608;8604:6;8600:14;8597:1;8594:21;8589:1;8582:9;8575:17;8571:45;8568:71;;;8619:18;;:::i;:::-;-1:-1:-1;8659:9:1;;8506:168::o;10185:380::-;10264:1;10260:12;;;;10307;;;10328:61;;10382:4;10374:6;10370:17;10360:27;;10328:61;10435:2;10427:6;10424:14;10404:18;10401:38;10398:161;;;10481:10;10476:3;10472:20;10469:1;10462:31;10516:4;10513:1;10506:15;10544:4;10541:1;10534:15;10398:161;;10185:380;;;:::o;12216:135::-;12255:3;-1:-1:-1;;12276:17:1;;12273:43;;;12296:18;;:::i;:::-;-1:-1:-1;12343:1:1;12332:13;;12216:135::o;14152:415::-;14354:2;14336:21;;;14393:2;14373:18;;;14366:30;14432:34;14427:2;14412:18;;14405:62;-1:-1:-1;;;14498:2:1;14483:18;;14476:49;14557:3;14542:19;;14152:415::o;15114:185::-;15156:3;15194:5;15188:12;15209:52;15254:6;15249:3;15242:4;15235:5;15231:16;15209:52;:::i;:::-;15277:16;;;;;15114:185;-1:-1:-1;;15114:185:1:o;15422:1301::-;15699:3;15728:1;15761:6;15755:13;15791:3;15813:1;15841:9;15837:2;15833:18;15823:28;;15901:2;15890:9;15886:18;15923;15913:61;;15967:4;15959:6;15955:17;15945:27;;15913:61;15993:2;16041;16033:6;16030:14;16010:18;16007:38;16004:165;;;-1:-1:-1;;;16068:33:1;;16124:4;16121:1;16114:15;16154:4;16075:3;16142:17;16004:165;16185:18;16212:104;;;;16330:1;16325:320;;;;16178:467;;16212:104;-1:-1:-1;;16245:24:1;;16233:37;;16290:16;;;;-1:-1:-1;16212:104:1;;16325:320;15061:1;15054:14;;;15098:4;15085:18;;16420:1;16434:165;16448:6;16445:1;16442:13;16434:165;;;16526:14;;16513:11;;;16506:35;16569:16;;;;16463:10;;16434:165;;;16438:3;;16628:6;16623:3;16619:16;16612:23;;16178:467;;;;;;;16661:56;16686:30;16712:3;16704:6;16686:30;:::i;:::-;-1:-1:-1;;;15364:20:1;;15409:1;15400:11;;15304:113;16661:56;16654:63;15422:1301;-1:-1:-1;;;;;15422:1301:1:o;17135:276::-;17266:3;17304:6;17298:13;17320:53;17366:6;17361:3;17354:4;17346:6;17342:17;17320:53;:::i;:::-;17389:16;;;;;17135:276;-1:-1:-1;;17135:276:1:o;18648:246::-;18688:4;-1:-1:-1;;;;;18801:10:1;;;;18771;;18823:12;;;18820:38;;;18838:18;;:::i;:::-;18875:13;;18648:246;-1:-1:-1;;;18648:246:1:o;18899:253::-;18939:3;-1:-1:-1;;;;;19028:2:1;19025:1;19021:10;19058:2;19055:1;19051:10;19089:3;19085:2;19081:12;19076:3;19073:21;19070:47;;;19097:18;;:::i;:::-;19133:13;;18899:253;-1:-1:-1;;;;18899:253:1:o;19568:125::-;19608:4;19636:1;19633;19630:8;19627:34;;;19641:18;;:::i;:::-;-1:-1:-1;19678:9:1;;19568:125::o;19698:136::-;19737:3;19765:5;19755:39;;19774:18;;:::i;:::-;-1:-1:-1;;;19810:18:1;;19698:136::o;20255:500::-;-1:-1:-1;;;;;20524:15:1;;;20506:34;;20576:15;;20571:2;20556:18;;20549:43;20623:2;20608:18;;20601:34;;;20671:3;20666:2;20651:18;;20644:31;;;20449:4;;20692:57;;20729:19;;20721:6;20692:57;:::i;:::-;20684:65;20255:500;-1:-1:-1;;;;;;20255:500:1:o;20760:249::-;20829:6;20882:2;20870:9;20861:7;20857:23;20853:32;20850:52;;;20898:1;20895;20888:12;20850:52;20930:9;20924:16;20949:30;20973:5;20949:30;:::i;21014:127::-;21075:10;21070:3;21066:20;21063:1;21056:31;21106:4;21103:1;21096:15;21130:4;21127:1;21120:15;21146:120;21186:1;21212;21202:35;;21217:18;;:::i;:::-;-1:-1:-1;21251:9:1;;21146:120::o;21271:112::-;21303:1;21329;21319:35;;21334:18;;:::i;:::-;-1:-1:-1;21368:9:1;;21271:112::o;21388:127::-;21449:10;21444:3;21440:20;21437:1;21430:31;21480:4;21477:1;21470:15;21504:4;21501:1;21494:15
Swarm Source
ipfs://139434b41527e14907fdeae0a34dacc677d94fa1b9948793145c242d3c294790
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.