ERC-721
Overview
Max Total Supply
1,026 MOW
Holders
505
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
1 MOWLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
MultiverseOfWomen
Compiler Version
v0.8.0+commit.c7dfd78e
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2021-11-07 */ // SPDX-License-Identifier: MIT // File: @openzeppelin/contracts/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/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 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/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/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 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/extensions/IERC721Metadata.sol pragma solidity ^0.8.0; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); } // File: @openzeppelin/contracts/token/ERC721/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/Context.sol pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File: @openzeppelin/contracts/token/ERC721/ERC721.sol pragma solidity ^0.8.0; /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension, but not including the Enumerable extension, which is available separately as * {ERC721Enumerable}. */ contract ERC721 is Context, ERC165, IERC721, IERC721Metadata { using Address for address; using Strings for uint256; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to owner address mapping(uint256 => address) private _owners; // Mapping owner address to token count mapping(address => uint256) private _balances; // Mapping from token ID to approved address mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; /** * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view virtual override returns (uint256) { require(owner != address(0), "ERC721: balance query for the zero address"); return _balances[owner]; } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { address owner = _owners[tokenId]; require(owner != address(0), "ERC721: owner query for nonexistent token"); return owner; } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { 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 virtual override { address owner = ERC721.ownerOf(tokenId); require(to != owner, "ERC721: approval to current owner"); require( _msgSender() == owner || isApprovedForAll(owner, _msgSender()), "ERC721: approve caller is not owner nor approved for all" ); _approve(to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { require(_exists(tokenId), "ERC721: approved query for nonexistent token"); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { require(operator != _msgSender(), "ERC721: 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 virtual override { //solhint-disable-next-line max-line-length require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ""); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public virtual override { require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _safeTransfer(from, to, tokenId, _data); } /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * `_data` is additional data, it has no specified format and it is sent in call to `to`. * * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g. * implement alternative mechanisms to perform token transfer, such as signature-based. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeTransfer( address from, address to, uint256 tokenId, bytes memory _data ) internal virtual { _transfer(from, to, tokenId); require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer"); } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), * and stop existing when they are burned (`_burn`). */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return _owners[tokenId] != address(0); } /** * @dev Returns whether `spender` is allowed to manage `tokenId`. * * Requirements: * * - `tokenId` must exist. */ function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) { require(_exists(tokenId), "ERC721: operator query for nonexistent token"); address owner = ERC721.ownerOf(tokenId); return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender)); } /** * @dev Safely mints `tokenId` and transfers it to `to`. * * Requirements: * * - `tokenId` must not exist. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeMint(address to, uint256 tokenId) internal virtual { _safeMint(to, tokenId, ""); } /** * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is * forwarded in {IERC721Receiver-onERC721Received} to contract recipients. */ function _safeMint( address to, uint256 tokenId, bytes memory _data ) internal virtual { _mint(to, tokenId); require( _checkOnERC721Received(address(0), to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer" ); } /** * @dev Mints `tokenId` and transfers it to `to`. * * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible * * Requirements: * * - `tokenId` must not exist. * - `to` cannot be the zero address. * * Emits a {Transfer} event. */ function _mint(address to, uint256 tokenId) internal virtual { require(to != address(0), "ERC721: mint to the zero address"); require(!_exists(tokenId), "ERC721: token already minted"); _beforeTokenTransfer(address(0), to, tokenId); _balances[to] += 1; _owners[tokenId] = to; emit Transfer(address(0), to, tokenId); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId) internal virtual { address owner = ERC721.ownerOf(tokenId); _beforeTokenTransfer(owner, address(0), tokenId); // Clear approvals _approve(address(0), tokenId); _balances[owner] -= 1; delete _owners[tokenId]; emit Transfer(owner, address(0), tokenId); } /** * @dev Transfers `tokenId` from `from` to `to`. * As opposed to {transferFrom}, this imposes no restrictions on msg.sender. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) internal virtual { require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer of token that is not own"); require(to != address(0), "ERC721: transfer to the zero address"); _beforeTokenTransfer(from, to, tokenId); // Clear approvals from the previous owner _approve(address(0), tokenId); _balances[from] -= 1; _balances[to] += 1; _owners[tokenId] = to; emit Transfer(from, to, tokenId); } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve(address to, uint256 tokenId) internal virtual { _tokenApprovals[tokenId] = to; emit Approval(ERC721.ownerOf(tokenId), to, tokenId); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address. * The call is not executed if the target address is not a contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { if (to.isContract()) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) { return retval == IERC721Receiver.onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert("ERC721: transfer to non ERC721Receiver implementer"); } else { assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, ``from``'s `tokenId` will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual {} } // File: @openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol pragma solidity ^0.8.0; /** * @dev This implements an optional extension of {ERC721} defined in the EIP that adds * enumerability of all the token ids in the contract as well as all token ids owned by each * account. */ abstract contract ERC721Enumerable is ERC721, IERC721Enumerable { // Mapping from owner to list of owned token IDs mapping(address => mapping(uint256 => uint256)) private _ownedTokens; // Mapping from token ID to index of the owner tokens list mapping(uint256 => uint256) private _ownedTokensIndex; // Array with all token ids, used for enumeration uint256[] private _allTokens; // Mapping from token id to position in the allTokens array mapping(uint256 => uint256) private _allTokensIndex; /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(IERC165, ERC721) returns (bool) { return interfaceId == type(IERC721Enumerable).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}. */ function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) { require(index < ERC721.balanceOf(owner), "ERC721Enumerable: owner index out of bounds"); return _ownedTokens[owner][index]; } /** * @dev See {IERC721Enumerable-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _allTokens.length; } /** * @dev See {IERC721Enumerable-tokenByIndex}. */ function tokenByIndex(uint256 index) public view virtual override returns (uint256) { require(index < ERC721Enumerable.totalSupply(), "ERC721Enumerable: global index out of bounds"); return _allTokens[index]; } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, ``from``'s `tokenId` will be burned. * - `from` cannot be the zero address. * - `to` cannot be the zero address. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual override { super._beforeTokenTransfer(from, to, tokenId); if (from == address(0)) { _addTokenToAllTokensEnumeration(tokenId); } else if (from != to) { _removeTokenFromOwnerEnumeration(from, tokenId); } if (to == address(0)) { _removeTokenFromAllTokensEnumeration(tokenId); } else if (to != from) { _addTokenToOwnerEnumeration(to, tokenId); } } /** * @dev Private function to add a token to this extension's ownership-tracking data structures. * @param to address representing the new owner of the given token ID * @param tokenId uint256 ID of the token to be added to the tokens list of the given address */ function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private { uint256 length = ERC721.balanceOf(to); _ownedTokens[to][length] = tokenId; _ownedTokensIndex[tokenId] = length; } /** * @dev Private function to add a token to this extension's token tracking data structures. * @param tokenId uint256 ID of the token to be added to the tokens list */ function _addTokenToAllTokensEnumeration(uint256 tokenId) private { _allTokensIndex[tokenId] = _allTokens.length; _allTokens.push(tokenId); } /** * @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that * while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for * gas optimizations e.g. when performing a transfer operation (avoiding double writes). * This has O(1) time complexity, but alters the order of the _ownedTokens array. * @param from address representing the previous owner of the given token ID * @param tokenId uint256 ID of the token to be removed from the tokens list of the given address */ function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private { // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and // then delete the last slot (swap and pop). uint256 lastTokenIndex = ERC721.balanceOf(from) - 1; uint256 tokenIndex = _ownedTokensIndex[tokenId]; // When the token to delete is the last token, the swap operation is unnecessary if (tokenIndex != lastTokenIndex) { uint256 lastTokenId = _ownedTokens[from][lastTokenIndex]; _ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token _ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index } // This also deletes the contents at the last position of the array delete _ownedTokensIndex[tokenId]; delete _ownedTokens[from][lastTokenIndex]; } /** * @dev Private function to remove a token from this extension's token tracking data structures. * This has O(1) time complexity, but alters the order of the _allTokens array. * @param tokenId uint256 ID of the token to be removed from the tokens list */ function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private { // To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and // then delete the last slot (swap and pop). uint256 lastTokenIndex = _allTokens.length - 1; uint256 tokenIndex = _allTokensIndex[tokenId]; // When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so // rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding // an 'if' statement (like in _removeTokenFromOwnerEnumeration) uint256 lastTokenId = _allTokens[lastTokenIndex]; _allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token _allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index // This also deletes the contents at the last position of the array delete _allTokensIndex[tokenId]; _allTokens.pop(); } } // File: @openzeppelin/contracts/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() { _setOwner(_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 { _setOwner(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"); _setOwner(newOwner); } function _setOwner(address newOwner) private { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } pragma solidity >=0.7.0 <0.9.0; contract MultiverseOfWomen is ERC721Enumerable, Ownable { using Strings for uint256; string baseURI; string public baseExtension = ".json"; uint256 public PresalePrice = 0.0375 ether; uint256 public cost = 0.05 ether; uint256 public maxSupply = 10000; uint256 private preSaleMax = 250; uint256 public maxMintAmount = 10; uint256 private reserved = 100; uint256 private maxPerTranscationPreSale = 1; bool public paused = true; bool public revealed = false; string public notRevealedUri; bool private saleStarted; bool public preSaleStarted = false; struct _canPreSale{ bool _canMint; } mapping(address => _canPreSale) public PresaleList; constructor( string memory _name, string memory _symbol, string memory _initBaseURI, string memory _initNotRevealedUri ) ERC721(_name, _symbol) { setBaseURI(_initBaseURI); setNotRevealedURI(_initNotRevealedUri); } modifier onlyPresaleListed() { require( PresaleList[msg.sender]._canMint, "You're not on the whitelist!"); _; } function sub(uint256 a, uint256 b) internal pure returns (uint256) { return a - b; } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {trySub}. * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b <= a, errorMessage); return a - b; } } // internal function _baseURI() internal view virtual override returns (string memory) { return baseURI; } // public function mint(uint256 _mintAmount) public payable { uint256 supply = totalSupply(); require(!paused,"Sale Not Started Yet"); require(_mintAmount > 0,"Atleast mint more than 1 token"); require(_mintAmount <= maxMintAmount,"Cannot mint more than 10 tokens."); require(supply + _mintAmount <= maxSupply,"Exceeds Supply"); if (msg.sender != owner()) { require(msg.value >= cost * _mintAmount,"Make sure you sent the correct amount"); } for (uint256 i = 1; i <= _mintAmount; i++) { _safeMint(msg.sender, supply + i); } } function presale(uint8 numberTokens) external payable onlyPresaleListed { uint256 supply = totalSupply(); require(preSaleStarted,"Presale Not Started"); require(numberTokens <= maxPerTranscationPreSale,"You can only mint one in presale!"); require(supply + numberTokens <= maxSupply , "No More Tokens Left"); require(supply+ numberTokens <= preSaleMax,"Enough Tokens are not left!"); require(numberTokens*PresalePrice <= msg.value,"Amount sent is less"); for (uint256 i=1; i <= numberTokens; i++) { _safeMint(msg.sender, supply + i); preSaleMax = preSaleMax--; } PresaleList[msg.sender]._canMint = false; } function addAddressesToPresaleList(address[] memory addrs) public onlyOwner { for (uint256 i = 0; i < addrs.length; i++) { PresaleList[addrs[i]]._canMint = true; } } function claimReserved(address[] memory addrs) external onlyOwner { uint256 len = addrs.length; require( len <= reserved, "That would exceed the max reserved."); uint256 _tokenId = totalSupply(); for (uint256 i = 0 ; i < len; i++) { _safeMint(addrs[i], _tokenId + i); } reserved = reserved - len ; } function walletOfOwner(address _owner) public view returns (uint256[] memory) { uint256 ownerTokenCount = balanceOf(_owner); uint256[] memory tokenIds = new uint256[](ownerTokenCount); for (uint256 i; i < ownerTokenCount; i++) { tokenIds[i] = tokenOfOwnerByIndex(_owner, i); } return tokenIds; } function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require( _exists(tokenId), "ERC721Metadata: URI query for nonexistent token" ); if(revealed == false) { return notRevealedUri; } string memory currentBaseURI = _baseURI(); return bytes(currentBaseURI).length > 0 ? string(abi.encodePacked(currentBaseURI, tokenId.toString(), baseExtension)) : ""; } //only owner function reveal() public onlyOwner { revealed = true; } function setCost(uint256 _newCost) public onlyOwner { cost = _newCost; } function setPresaleCost(uint256 _newPreCost) public onlyOwner { PresalePrice = _newPreCost; } function setmaxMintAmount(uint256 _newmaxMintAmount) public onlyOwner { maxMintAmount = _newmaxMintAmount; } function setNotRevealedURI(string memory _notRevealedURI) public onlyOwner { notRevealedUri = _notRevealedURI; } function setBaseURI(string memory _newBaseURI) public onlyOwner { baseURI = _newBaseURI; } function setPresale(bool _state) public onlyOwner { preSaleStarted = _state; } function setBaseExtension(string memory _newBaseExtension) public onlyOwner { baseExtension = _newBaseExtension; } function pause(bool _state) public onlyOwner { paused = _state; } function withdraw() public payable onlyOwner { (bool os, ) = payable(owner()).call{value: address(this).balance}(""); require(os); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"string","name":"_initBaseURI","type":"string"},{"internalType":"string","name":"_initNotRevealedUri","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"PresaleList","outputs":[{"internalType":"bool","name":"_canMint","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PresalePrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"addrs","type":"address[]"}],"name":"addAddressesToPresaleList","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"addrs","type":"address[]"}],"name":"claimReserved","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"notRevealedUri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"preSaleStarted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint8","name":"numberTokens","type":"uint8"}],"name":"presale","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reveal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseExtension","type":"string"}],"name":"setBaseExtension","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newCost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_notRevealedURI","type":"string"}],"name":"setNotRevealedURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setPresale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newPreCost","type":"uint256"}],"name":"setPresaleCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newmaxMintAmount","type":"uint256"}],"name":"setmaxMintAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]
Contract Creation Code
60c06040526005608081905264173539b7b760d91b60a09081526200002891600c91906200023d565b5066853a0d2313c000600d5566b1a2bc2ec50000600e55612710600f5560fa601055600a6011556064601255600160138190556014805461ff001960ff19909116909217821690556016805490911690553480156200008657600080fd5b50604051620033d3380380620033d3833981016040819052620000a9916200038e565b835184908490620000c29060009060208501906200023d565b508051620000d89060019060208401906200023d565b505050620000f5620000ef6200011560201b60201c565b62000119565b62000100826200016b565b6200010b81620001d3565b50505050620004ca565b3390565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6200017562000115565b6001600160a01b0316620001886200022e565b6001600160a01b031614620001ba5760405162461bcd60e51b8152600401620001b19062000442565b60405180910390fd5b8051620001cf90600b9060208401906200023d565b5050565b620001dd62000115565b6001600160a01b0316620001f06200022e565b6001600160a01b031614620002195760405162461bcd60e51b8152600401620001b19062000442565b8051620001cf9060159060208401906200023d565b600a546001600160a01b031690565b8280546200024b9062000477565b90600052602060002090601f0160209004810192826200026f5760008555620002ba565b82601f106200028a57805160ff1916838001178555620002ba565b82800160010185558215620002ba579182015b82811115620002ba5782518255916020019190600101906200029d565b50620002c8929150620002cc565b5090565b5b80821115620002c85760008155600101620002cd565b600082601f830112620002f4578081fd5b81516001600160401b0380821115620003115762000311620004b4565b6040516020601f8401601f1916820181018381118382101715620003395762000339620004b4565b604052838252858401810187101562000350578485fd5b8492505b8383101562000373578583018101518284018201529182019162000354565b838311156200038457848185840101525b5095945050505050565b60008060008060808587031215620003a4578384fd5b84516001600160401b0380821115620003bb578586fd5b620003c988838901620002e3565b95506020870151915080821115620003df578485fd5b620003ed88838901620002e3565b9450604087015191508082111562000403578384fd5b6200041188838901620002e3565b9350606087015191508082111562000427578283fd5b506200043687828801620002e3565b91505092959194509250565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6002810460018216806200048c57607f821691505b60208210811415620004ae57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b612ef980620004da6000396000f3fe6080604052600436106102675760003560e01c806370a0823111610144578063a475b5dd116100b6578063d49930fe1161007a578063d49930fe146106b7578063d5abeb01146106cc578063da3ef23f146106e1578063e985e9c514610701578063f2c4ce1e14610721578063f2fde38b1461074157610267565b8063a475b5dd1461062d578063b88d4fde14610642578063c54e73e314610662578063c668286214610682578063c87b56dd1461069757610267565b80638da5cb5b116101085780638da5cb5b146105905780638fdcf942146105a557806395d89b41146105c55780639c791e99146105da578063a0712d68146105fa578063a22cb4651461060d57610267565b806370a08231146104fb578063715018a61461051b57806377fb63f1146105305780637f00c7a614610550578063809e993b1461057057610267565b80633ccfd60b116101dd57806351830227116101a1578063518302271461046957806355f804b31461047e5780635c975abb1461049e5780636352211e146104b3578063690cf0d1146104d35780636d9f8ef1146104e857610267565b80633ccfd60b146103d457806342842e0e146103dc578063438b6300146103fc57806344a0d68a146104295780634f6ccce71461044957610267565b8063095ea7b31161022f578063095ea7b31461032857806313faede61461034857806318160ddd1461036a578063239c70ae1461037f57806323b872dd146103945780632f745c59146103b457610267565b806301ffc9a71461026c57806302329a29146102a257806306fdde03146102c4578063081812fc146102e6578063081c8c4414610313575b600080fd5b34801561027857600080fd5b5061028c610287366004612345565b610761565b6040516102999190612582565b60405180910390f35b3480156102ae57600080fd5b506102c26102bd36600461232b565b61078e565b005b3480156102d057600080fd5b506102d96107e9565b604051610299919061258d565b3480156102f257600080fd5b506103066103013660046123c3565b61087b565b60405161029991906124ed565b34801561031f57600080fd5b506102d96108be565b34801561033457600080fd5b506102c2610343366004612254565b61094c565b34801561035457600080fd5b5061035d6109e4565b6040516102999190612d1d565b34801561037657600080fd5b5061035d6109ea565b34801561038b57600080fd5b5061035d6109f0565b3480156103a057600080fd5b506102c26103af366004612177565b6109f6565b3480156103c057600080fd5b5061035d6103cf366004612254565b610a2e565b6102c2610a80565b3480156103e857600080fd5b506102c26103f7366004612177565b610b32565b34801561040857600080fd5b5061041c61041736600461212b565b610b4d565b604051610299919061253e565b34801561043557600080fd5b506102c26104443660046123c3565b610c0b565b34801561045557600080fd5b5061035d6104643660046123c3565b610c4f565b34801561047557600080fd5b5061028c610caa565b34801561048a57600080fd5b506102c261049936600461237d565b610cb8565b3480156104aa57600080fd5b5061028c610d0e565b3480156104bf57600080fd5b506103066104ce3660046123c3565b610d17565b3480156104df57600080fd5b5061028c610d4c565b6102c26104f63660046123db565b610d5a565b34801561050757600080fd5b5061035d61051636600461212b565b610ed3565b34801561052757600080fd5b506102c2610f17565b34801561053c57600080fd5b506102c261054b36600461227d565b610f62565b34801561055c57600080fd5b506102c261056b3660046123c3565b61103c565b34801561057c57600080fd5b5061028c61058b36600461212b565b611080565b34801561059c57600080fd5b50610306611095565b3480156105b157600080fd5b506102c26105c03660046123c3565b6110a4565b3480156105d157600080fd5b506102d96110e8565b3480156105e657600080fd5b506102c26105f536600461227d565b6110f7565b6102c26106083660046123c3565b6111ac565b34801561061957600080fd5b506102c261062836600461222b565b6112c0565b34801561063957600080fd5b506102c261138e565b34801561064e57600080fd5b506102c261065d3660046121b2565b6113de565b34801561066e57600080fd5b506102c261067d36600461232b565b61141d565b34801561068e57600080fd5b506102d9611476565b3480156106a357600080fd5b506102d96106b23660046123c3565b611483565b3480156106c357600080fd5b5061035d6115aa565b3480156106d857600080fd5b5061035d6115b0565b3480156106ed57600080fd5b506102c26106fc36600461237d565b6115b6565b34801561070d57600080fd5b5061028c61071c366004612145565b611608565b34801561072d57600080fd5b506102c261073c36600461237d565b611636565b34801561074d57600080fd5b506102c261075c36600461212b565b611688565b60006001600160e01b0319821663780e9d6360e01b14806107865750610786826116f6565b90505b919050565b610796611736565b6001600160a01b03166107a7611095565b6001600160a01b0316146107d65760405162461bcd60e51b81526004016107cd90612aa7565b60405180910390fd5b6014805460ff1916911515919091179055565b6060600080546107f890612e01565b80601f016020809104026020016040519081016040528092919081815260200182805461082490612e01565b80156108715780601f1061084657610100808354040283529160200191610871565b820191906000526020600020905b81548152906001019060200180831161085457829003601f168201915b5050505050905090565b60006108868261173a565b6108a25760405162461bcd60e51b81526004016107cd90612a5b565b506000908152600460205260409020546001600160a01b031690565b601580546108cb90612e01565b80601f01602080910402602001604051908101604052809291908181526020018280546108f790612e01565b80156109445780601f1061091957610100808354040283529160200191610944565b820191906000526020600020905b81548152906001019060200180831161092757829003601f168201915b505050505081565b600061095782610d17565b9050806001600160a01b0316836001600160a01b0316141561098b5760405162461bcd60e51b81526004016107cd90612b74565b806001600160a01b031661099d611736565b6001600160a01b031614806109b957506109b98161071c611736565b6109d55760405162461bcd60e51b81526004016107cd906128ba565b6109df8383611757565b505050565b600e5481565b60085490565b60115481565b610a07610a01611736565b826117c5565b610a235760405162461bcd60e51b81526004016107cd90612c26565b6109df83838361184a565b6000610a3983610ed3565b8210610a575760405162461bcd60e51b81526004016107cd906125e1565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b610a88611736565b6001600160a01b0316610a99611095565b6001600160a01b031614610abf5760405162461bcd60e51b81526004016107cd90612aa7565b6000610ac9611095565b6001600160a01b031647604051610adf906124ea565b60006040518083038185875af1925050503d8060008114610b1c576040519150601f19603f3d011682016040523d82523d6000602084013e610b21565b606091505b5050905080610b2f57600080fd5b50565b6109df838383604051806020016040528060008152506113de565b60606000610b5a83610ed3565b905060008167ffffffffffffffff811115610b8557634e487b7160e01b600052604160045260246000fd5b604051908082528060200260200182016040528015610bae578160200160208202803683370190505b50905060005b82811015610c0357610bc68582610a2e565b828281518110610be657634e487b7160e01b600052603260045260246000fd5b602090810291909101015280610bfb81612e3c565b915050610bb4565b509392505050565b610c13611736565b6001600160a01b0316610c24611095565b6001600160a01b031614610c4a5760405162461bcd60e51b81526004016107cd90612aa7565b600e55565b6000610c596109ea565b8210610c775760405162461bcd60e51b81526004016107cd90612c77565b60088281548110610c9857634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050919050565b601454610100900460ff1681565b610cc0611736565b6001600160a01b0316610cd1611095565b6001600160a01b031614610cf75760405162461bcd60e51b81526004016107cd90612aa7565b8051610d0a90600b906020840190612013565b5050565b60145460ff1681565b6000818152600260205260408120546001600160a01b0316806107865760405162461bcd60e51b81526004016107cd906129a6565b601654610100900460ff1681565b3360009081526017602052604090205460ff16610d895760405162461bcd60e51b81526004016107cd90612a24565b6000610d936109ea565b601654909150610100900460ff16610dbd5760405162461bcd60e51b81526004016107cd90612cf0565b6013548260ff161115610de25760405162461bcd60e51b81526004016107cd906125a0565b600f54610df260ff841683612d5c565b1115610e105760405162461bcd60e51b81526004016107cd9061280a565b601054610e2060ff841683612d5c565b1115610e3e5760405162461bcd60e51b81526004016107cd90612837565b34600d548360ff16610e509190612d88565b1115610e6e5760405162461bcd60e51b81526004016107cd90612cc3565b60015b8260ff168111610eb757610e8e33610e898385612d5c565b611977565b60108054906000610e9e83612dea565b9091555060105580610eaf81612e3c565b915050610e71565b5050336000908152601760205260409020805460ff1916905550565b60006001600160a01b038216610efb5760405162461bcd60e51b81526004016107cd9061295c565b506001600160a01b031660009081526003602052604090205490565b610f1f611736565b6001600160a01b0316610f30611095565b6001600160a01b031614610f565760405162461bcd60e51b81526004016107cd90612aa7565b610f606000611991565b565b610f6a611736565b6001600160a01b0316610f7b611095565b6001600160a01b031614610fa15760405162461bcd60e51b81526004016107cd90612aa7565b8051601254811115610fc55760405162461bcd60e51b81526004016107cd90612bb5565b6000610fcf6109ea565b905060005b8281101561102557611013848281518110610fff57634e487b7160e01b600052603260045260246000fd5b60200260200101518284610e899190612d5c565b8061101d81612e3c565b915050610fd4565b50816012546110349190612da7565b601255505050565b611044611736565b6001600160a01b0316611055611095565b6001600160a01b03161461107b5760405162461bcd60e51b81526004016107cd90612aa7565b601155565b60176020526000908152604090205460ff1681565b600a546001600160a01b031690565b6110ac611736565b6001600160a01b03166110bd611095565b6001600160a01b0316146110e35760405162461bcd60e51b81526004016107cd90612aa7565b600d55565b6060600180546107f890612e01565b6110ff611736565b6001600160a01b0316611110611095565b6001600160a01b0316146111365760405162461bcd60e51b81526004016107cd90612aa7565b60005b8151811015610d0a5760016017600084848151811061116857634e487b7160e01b600052603260045260246000fd5b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff1916911515919091179055806111a481612e3c565b915050611139565b60006111b66109ea565b60145490915060ff16156111dc5760405162461bcd60e51b81526004016107cd90612bf8565b600082116111fc5760405162461bcd60e51b81526004016107cd906126ec565b60115482111561121e5760405162461bcd60e51b81526004016107cd9061275a565b600f5461122b8383612d5c565b11156112495760405162461bcd60e51b81526004016107cd9061267e565b611251611095565b6001600160a01b0316336001600160a01b0316146112965781600e546112779190612d88565b3410156112965760405162461bcd60e51b81526004016107cd90612917565b60015b8281116109df576112ae33610e898385612d5c565b806112b881612e3c565b915050611299565b6112c8611736565b6001600160a01b0316826001600160a01b031614156112f95760405162461bcd60e51b81526004016107cd906127d3565b8060056000611306611736565b6001600160a01b03908116825260208083019390935260409182016000908120918716808252919093529120805460ff19169215159290921790915561134a611736565b6001600160a01b03167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516113829190612582565b60405180910390a35050565b611396611736565b6001600160a01b03166113a7611095565b6001600160a01b0316146113cd5760405162461bcd60e51b81526004016107cd90612aa7565b6014805461ff001916610100179055565b6113ef6113e9611736565b836117c5565b61140b5760405162461bcd60e51b81526004016107cd90612c26565b611417848484846119e3565b50505050565b611425611736565b6001600160a01b0316611436611095565b6001600160a01b03161461145c5760405162461bcd60e51b81526004016107cd90612aa7565b601680549115156101000261ff0019909216919091179055565b600c80546108cb90612e01565b606061148e8261173a565b6114aa5760405162461bcd60e51b81526004016107cd90612b25565b601454610100900460ff1661154b57601580546114c690612e01565b80601f01602080910402602001604051908101604052809291908181526020018280546114f290612e01565b801561153f5780601f106115145761010080835404028352916020019161153f565b820191906000526020600020905b81548152906001019060200180831161152257829003601f168201915b50505050509050610789565b6000611555611a16565b9050600081511161157557604051806020016040528060008152506115a3565b8061157f84611a25565b600c60405160200161159393929190612428565b6040516020818303038152906040525b9392505050565b600d5481565b600f5481565b6115be611736565b6001600160a01b03166115cf611095565b6001600160a01b0316146115f55760405162461bcd60e51b81526004016107cd90612aa7565b8051610d0a90600c906020840190612013565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b61163e611736565b6001600160a01b031661164f611095565b6001600160a01b0316146116755760405162461bcd60e51b81526004016107cd90612aa7565b8051610d0a906015906020840190612013565b611690611736565b6001600160a01b03166116a1611095565b6001600160a01b0316146116c75760405162461bcd60e51b81526004016107cd90612aa7565b6001600160a01b0381166116ed5760405162461bcd60e51b81526004016107cd906126a6565b610b2f81611991565b60006001600160e01b031982166380ac58cd60e01b148061172757506001600160e01b03198216635b5e139f60e01b145b80610786575061078682611b40565b3390565b6000908152600260205260409020546001600160a01b0316151590565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061178c82610d17565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006117d08261173a565b6117ec5760405162461bcd60e51b81526004016107cd9061286e565b60006117f783610d17565b9050806001600160a01b0316846001600160a01b031614806118325750836001600160a01b03166118278461087b565b6001600160a01b0316145b8061184257506118428185611608565b949350505050565b826001600160a01b031661185d82610d17565b6001600160a01b0316146118835760405162461bcd60e51b81526004016107cd90612adc565b6001600160a01b0382166118a95760405162461bcd60e51b81526004016107cd9061278f565b6118b4838383611b59565b6118bf600082611757565b6001600160a01b03831660009081526003602052604081208054600192906118e8908490612da7565b90915550506001600160a01b0382166000908152600360205260408120805460019290611916908490612d5c565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b610d0a828260405180602001604052806000815250611be2565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6119ee84848461184a565b6119fa84848484611c15565b6114175760405162461bcd60e51b81526004016107cd9061262c565b6060600b80546107f890612e01565b606081611a4a57506040805180820190915260018152600360fc1b6020820152610789565b8160005b8115611a745780611a5e81612e3c565b9150611a6d9050600a83612d74565b9150611a4e565b60008167ffffffffffffffff811115611a9d57634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611ac7576020820181803683370190505b5090505b841561184257611adc600183612da7565b9150611ae9600a86612e57565b611af4906030612d5c565b60f81b818381518110611b1757634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350611b39600a86612d74565b9450611acb565b6001600160e01b031981166301ffc9a760e01b14919050565b611b648383836109df565b6001600160a01b038316611b8057611b7b81611d30565b611ba3565b816001600160a01b0316836001600160a01b031614611ba357611ba38382611d74565b6001600160a01b038216611bbf57611bba81611e11565b6109df565b826001600160a01b0316826001600160a01b0316146109df576109df8282611eea565b611bec8383611f2e565b611bf96000848484611c15565b6109df5760405162461bcd60e51b81526004016107cd9061262c565b6000611c29846001600160a01b031661200d565b15611d2557836001600160a01b031663150b7a02611c45611736565b8786866040518563ffffffff1660e01b8152600401611c679493929190612501565b602060405180830381600087803b158015611c8157600080fd5b505af1925050508015611cb1575060408051601f3d908101601f19168201909252611cae91810190612361565b60015b611d0b573d808015611cdf576040519150601f19603f3d011682016040523d82523d6000602084013e611ce4565b606091505b508051611d035760405162461bcd60e51b81526004016107cd9061262c565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611842565b506001949350505050565b600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b60006001611d8184610ed3565b611d8b9190612da7565b600083815260076020526040902054909150808214611dde576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090611e2390600190612da7565b60008381526009602052604081205460088054939450909284908110611e5957634e487b7160e01b600052603260045260246000fd5b906000526020600020015490508060088381548110611e8857634e487b7160e01b600052603260045260246000fd5b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480611ece57634e487b7160e01b600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b6000611ef583610ed3565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b038216611f545760405162461bcd60e51b81526004016107cd906129ef565b611f5d8161173a565b15611f7a5760405162461bcd60e51b81526004016107cd90612723565b611f8660008383611b59565b6001600160a01b0382166000908152600360205260408120805460019290611faf908490612d5c565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b3b151590565b82805461201f90612e01565b90600052602060002090601f0160209004810192826120415760008555612087565b82601f1061205a57805160ff1916838001178555612087565b82800160010185558215612087579182015b8281111561208757825182559160200191906001019061206c565b50612093929150612097565b5090565b5b808211156120935760008155600101612098565b600067ffffffffffffffff8311156120c6576120c6612e97565b6120d9601f8401601f1916602001612d26565b90508281528383830111156120ed57600080fd5b828260208301376000602084830101529392505050565b80356001600160a01b038116811461078957600080fd5b8035801515811461078957600080fd5b60006020828403121561213c578081fd5b6115a382612104565b60008060408385031215612157578081fd5b61216083612104565b915061216e60208401612104565b90509250929050565b60008060006060848603121561218b578081fd5b61219484612104565b92506121a260208501612104565b9150604084013590509250925092565b600080600080608085870312156121c7578081fd5b6121d085612104565b93506121de60208601612104565b925060408501359150606085013567ffffffffffffffff811115612200578182fd5b8501601f81018713612210578182fd5b61221f878235602084016120ac565b91505092959194509250565b6000806040838503121561223d578182fd5b61224683612104565b915061216e6020840161211b565b60008060408385031215612266578182fd5b61226f83612104565b946020939093013593505050565b6000602080838503121561228f578182fd5b823567ffffffffffffffff808211156122a6578384fd5b818501915085601f8301126122b9578384fd5b8135818111156122cb576122cb612e97565b83810291506122db848301612d26565b8181528481019084860184860187018a10156122f5578788fd5b8795505b8386101561231e5761230a81612104565b8352600195909501949186019186016122f9565b5098975050505050505050565b60006020828403121561233c578081fd5b6115a38261211b565b600060208284031215612356578081fd5b81356115a381612ead565b600060208284031215612372578081fd5b81516115a381612ead565b60006020828403121561238e578081fd5b813567ffffffffffffffff8111156123a4578182fd5b8201601f810184136123b4578182fd5b611842848235602084016120ac565b6000602082840312156123d4578081fd5b5035919050565b6000602082840312156123ec578081fd5b813560ff811681146115a3578182fd5b60008151808452612414816020860160208601612dbe565b601f01601f19169290920160200192915050565b60008451602061243b8285838a01612dbe565b85519184019161244e8184848a01612dbe565b855492019183906002810460018083168061246a57607f831692505b85831081141561248857634e487b7160e01b88526022600452602488fd5b80801561249c57600181146124ad576124d9565b60ff198516885283880195506124d9565b6124b68b612d50565b895b858110156124d15781548a8201529084019088016124b8565b505083880195505b50939b9a5050505050505050505050565b90565b6001600160a01b0391909116815260200190565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612534908301846123fc565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b818110156125765783518352928401929184019160010161255a565b50909695505050505050565b901515815260200190565b6000602082526115a360208301846123fc565b60208082526021908201527f596f752063616e206f6e6c79206d696e74206f6e6520696e2070726573616c656040820152602160f81b606082015260800190565b6020808252602b908201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560408201526a74206f6620626f756e647360a81b606082015260800190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252600e908201526d4578636565647320537570706c7960901b604082015260600190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b6020808252601e908201527f41746c65617374206d696e74206d6f7265207468616e203120746f6b656e0000604082015260600190565b6020808252601c908201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604082015260600190565b6020808252818101527f43616e6e6f74206d696e74206d6f7265207468616e20313020746f6b656e732e604082015260600190565b60208082526024908201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526019908201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604082015260600190565b602080825260139082015272139bc8135bdc9948151bdad95b9cc81319599d606a1b604082015260600190565b6020808252601b908201527f456e6f75676820546f6b656e7320617265206e6f74206c656674210000000000604082015260600190565b6020808252602c908201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b60208082526038908201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760408201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606082015260800190565b60208082526025908201527f4d616b65207375726520796f752073656e742074686520636f727265637420616040820152641b5bdd5b9d60da1b606082015260800190565b6020808252602a908201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604082015269726f206164647265737360b01b606082015260800190565b60208082526029908201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460408201526832b73a103a37b5b2b760b91b606082015260800190565b6020808252818101527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604082015260600190565b6020808252601c908201527f596f75277265206e6f74206f6e207468652077686974656c6973742100000000604082015260600190565b6020808252602c908201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526029908201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960408201526839903737ba1037bbb760b91b606082015260800190565b6020808252602f908201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60408201526e3732bc34b9ba32b73a103a37b5b2b760891b606082015260800190565b60208082526021908201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656040820152603960f91b606082015260800190565b60208082526023908201527f5468617420776f756c642065786365656420746865206d61782072657365727660408201526232b21760e91b606082015260800190565b60208082526014908201527314d85b1948139bdd0814dd185c9d19590816595d60621b604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6020808252602c908201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60408201526b7574206f6620626f756e647360a01b606082015260800190565b602080825260139082015272416d6f756e742073656e74206973206c65737360681b604082015260600190565b602080825260139082015272141c995cd85b1948139bdd0814dd185c9d1959606a1b604082015260600190565b90815260200190565b60405181810167ffffffffffffffff81118282101715612d4857612d48612e97565b604052919050565b60009081526020902090565b60008219821115612d6f57612d6f612e6b565b500190565b600082612d8357612d83612e81565b500490565b6000816000190483118215151615612da257612da2612e6b565b500290565b600082821015612db957612db9612e6b565b500390565b60005b83811015612dd9578181015183820152602001612dc1565b838111156114175750506000910152565b600081612df957612df9612e6b565b506000190190565b600281046001821680612e1557607f821691505b60208210811415612e3657634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612e5057612e50612e6b565b5060010190565b600082612e6657612e66612e81565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610b2f57600080fdfea26469706673582212207343bf5ca917e0e0924114678c9768293f954ee8d1afa7b6ff30aeef970f9f4464736f6c63430008000033000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000016000000000000000000000000000000000000000000000000000000000000000114d756c746976657273654f66576f6d656e00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000034d4f5700000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d65457a4734634132554c425445426453654d41666673764c396b6f517a616d693544464468453355345a6e382f000000000000000000000000000000000000000000000000000000000000000000000000000000000047697066733a2f2f516d66596b3344526459366458585271434a72694d4c68434736624a3856686f6f6e3664444a4831384b665346552f506c616365486f6c6465722e6a736f6e2f00000000000000000000000000000000000000000000000000
Deployed Bytecode
0x6080604052600436106102675760003560e01c806370a0823111610144578063a475b5dd116100b6578063d49930fe1161007a578063d49930fe146106b7578063d5abeb01146106cc578063da3ef23f146106e1578063e985e9c514610701578063f2c4ce1e14610721578063f2fde38b1461074157610267565b8063a475b5dd1461062d578063b88d4fde14610642578063c54e73e314610662578063c668286214610682578063c87b56dd1461069757610267565b80638da5cb5b116101085780638da5cb5b146105905780638fdcf942146105a557806395d89b41146105c55780639c791e99146105da578063a0712d68146105fa578063a22cb4651461060d57610267565b806370a08231146104fb578063715018a61461051b57806377fb63f1146105305780637f00c7a614610550578063809e993b1461057057610267565b80633ccfd60b116101dd57806351830227116101a1578063518302271461046957806355f804b31461047e5780635c975abb1461049e5780636352211e146104b3578063690cf0d1146104d35780636d9f8ef1146104e857610267565b80633ccfd60b146103d457806342842e0e146103dc578063438b6300146103fc57806344a0d68a146104295780634f6ccce71461044957610267565b8063095ea7b31161022f578063095ea7b31461032857806313faede61461034857806318160ddd1461036a578063239c70ae1461037f57806323b872dd146103945780632f745c59146103b457610267565b806301ffc9a71461026c57806302329a29146102a257806306fdde03146102c4578063081812fc146102e6578063081c8c4414610313575b600080fd5b34801561027857600080fd5b5061028c610287366004612345565b610761565b6040516102999190612582565b60405180910390f35b3480156102ae57600080fd5b506102c26102bd36600461232b565b61078e565b005b3480156102d057600080fd5b506102d96107e9565b604051610299919061258d565b3480156102f257600080fd5b506103066103013660046123c3565b61087b565b60405161029991906124ed565b34801561031f57600080fd5b506102d96108be565b34801561033457600080fd5b506102c2610343366004612254565b61094c565b34801561035457600080fd5b5061035d6109e4565b6040516102999190612d1d565b34801561037657600080fd5b5061035d6109ea565b34801561038b57600080fd5b5061035d6109f0565b3480156103a057600080fd5b506102c26103af366004612177565b6109f6565b3480156103c057600080fd5b5061035d6103cf366004612254565b610a2e565b6102c2610a80565b3480156103e857600080fd5b506102c26103f7366004612177565b610b32565b34801561040857600080fd5b5061041c61041736600461212b565b610b4d565b604051610299919061253e565b34801561043557600080fd5b506102c26104443660046123c3565b610c0b565b34801561045557600080fd5b5061035d6104643660046123c3565b610c4f565b34801561047557600080fd5b5061028c610caa565b34801561048a57600080fd5b506102c261049936600461237d565b610cb8565b3480156104aa57600080fd5b5061028c610d0e565b3480156104bf57600080fd5b506103066104ce3660046123c3565b610d17565b3480156104df57600080fd5b5061028c610d4c565b6102c26104f63660046123db565b610d5a565b34801561050757600080fd5b5061035d61051636600461212b565b610ed3565b34801561052757600080fd5b506102c2610f17565b34801561053c57600080fd5b506102c261054b36600461227d565b610f62565b34801561055c57600080fd5b506102c261056b3660046123c3565b61103c565b34801561057c57600080fd5b5061028c61058b36600461212b565b611080565b34801561059c57600080fd5b50610306611095565b3480156105b157600080fd5b506102c26105c03660046123c3565b6110a4565b3480156105d157600080fd5b506102d96110e8565b3480156105e657600080fd5b506102c26105f536600461227d565b6110f7565b6102c26106083660046123c3565b6111ac565b34801561061957600080fd5b506102c261062836600461222b565b6112c0565b34801561063957600080fd5b506102c261138e565b34801561064e57600080fd5b506102c261065d3660046121b2565b6113de565b34801561066e57600080fd5b506102c261067d36600461232b565b61141d565b34801561068e57600080fd5b506102d9611476565b3480156106a357600080fd5b506102d96106b23660046123c3565b611483565b3480156106c357600080fd5b5061035d6115aa565b3480156106d857600080fd5b5061035d6115b0565b3480156106ed57600080fd5b506102c26106fc36600461237d565b6115b6565b34801561070d57600080fd5b5061028c61071c366004612145565b611608565b34801561072d57600080fd5b506102c261073c36600461237d565b611636565b34801561074d57600080fd5b506102c261075c36600461212b565b611688565b60006001600160e01b0319821663780e9d6360e01b14806107865750610786826116f6565b90505b919050565b610796611736565b6001600160a01b03166107a7611095565b6001600160a01b0316146107d65760405162461bcd60e51b81526004016107cd90612aa7565b60405180910390fd5b6014805460ff1916911515919091179055565b6060600080546107f890612e01565b80601f016020809104026020016040519081016040528092919081815260200182805461082490612e01565b80156108715780601f1061084657610100808354040283529160200191610871565b820191906000526020600020905b81548152906001019060200180831161085457829003601f168201915b5050505050905090565b60006108868261173a565b6108a25760405162461bcd60e51b81526004016107cd90612a5b565b506000908152600460205260409020546001600160a01b031690565b601580546108cb90612e01565b80601f01602080910402602001604051908101604052809291908181526020018280546108f790612e01565b80156109445780601f1061091957610100808354040283529160200191610944565b820191906000526020600020905b81548152906001019060200180831161092757829003601f168201915b505050505081565b600061095782610d17565b9050806001600160a01b0316836001600160a01b0316141561098b5760405162461bcd60e51b81526004016107cd90612b74565b806001600160a01b031661099d611736565b6001600160a01b031614806109b957506109b98161071c611736565b6109d55760405162461bcd60e51b81526004016107cd906128ba565b6109df8383611757565b505050565b600e5481565b60085490565b60115481565b610a07610a01611736565b826117c5565b610a235760405162461bcd60e51b81526004016107cd90612c26565b6109df83838361184a565b6000610a3983610ed3565b8210610a575760405162461bcd60e51b81526004016107cd906125e1565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b610a88611736565b6001600160a01b0316610a99611095565b6001600160a01b031614610abf5760405162461bcd60e51b81526004016107cd90612aa7565b6000610ac9611095565b6001600160a01b031647604051610adf906124ea565b60006040518083038185875af1925050503d8060008114610b1c576040519150601f19603f3d011682016040523d82523d6000602084013e610b21565b606091505b5050905080610b2f57600080fd5b50565b6109df838383604051806020016040528060008152506113de565b60606000610b5a83610ed3565b905060008167ffffffffffffffff811115610b8557634e487b7160e01b600052604160045260246000fd5b604051908082528060200260200182016040528015610bae578160200160208202803683370190505b50905060005b82811015610c0357610bc68582610a2e565b828281518110610be657634e487b7160e01b600052603260045260246000fd5b602090810291909101015280610bfb81612e3c565b915050610bb4565b509392505050565b610c13611736565b6001600160a01b0316610c24611095565b6001600160a01b031614610c4a5760405162461bcd60e51b81526004016107cd90612aa7565b600e55565b6000610c596109ea565b8210610c775760405162461bcd60e51b81526004016107cd90612c77565b60088281548110610c9857634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050919050565b601454610100900460ff1681565b610cc0611736565b6001600160a01b0316610cd1611095565b6001600160a01b031614610cf75760405162461bcd60e51b81526004016107cd90612aa7565b8051610d0a90600b906020840190612013565b5050565b60145460ff1681565b6000818152600260205260408120546001600160a01b0316806107865760405162461bcd60e51b81526004016107cd906129a6565b601654610100900460ff1681565b3360009081526017602052604090205460ff16610d895760405162461bcd60e51b81526004016107cd90612a24565b6000610d936109ea565b601654909150610100900460ff16610dbd5760405162461bcd60e51b81526004016107cd90612cf0565b6013548260ff161115610de25760405162461bcd60e51b81526004016107cd906125a0565b600f54610df260ff841683612d5c565b1115610e105760405162461bcd60e51b81526004016107cd9061280a565b601054610e2060ff841683612d5c565b1115610e3e5760405162461bcd60e51b81526004016107cd90612837565b34600d548360ff16610e509190612d88565b1115610e6e5760405162461bcd60e51b81526004016107cd90612cc3565b60015b8260ff168111610eb757610e8e33610e898385612d5c565b611977565b60108054906000610e9e83612dea565b9091555060105580610eaf81612e3c565b915050610e71565b5050336000908152601760205260409020805460ff1916905550565b60006001600160a01b038216610efb5760405162461bcd60e51b81526004016107cd9061295c565b506001600160a01b031660009081526003602052604090205490565b610f1f611736565b6001600160a01b0316610f30611095565b6001600160a01b031614610f565760405162461bcd60e51b81526004016107cd90612aa7565b610f606000611991565b565b610f6a611736565b6001600160a01b0316610f7b611095565b6001600160a01b031614610fa15760405162461bcd60e51b81526004016107cd90612aa7565b8051601254811115610fc55760405162461bcd60e51b81526004016107cd90612bb5565b6000610fcf6109ea565b905060005b8281101561102557611013848281518110610fff57634e487b7160e01b600052603260045260246000fd5b60200260200101518284610e899190612d5c565b8061101d81612e3c565b915050610fd4565b50816012546110349190612da7565b601255505050565b611044611736565b6001600160a01b0316611055611095565b6001600160a01b03161461107b5760405162461bcd60e51b81526004016107cd90612aa7565b601155565b60176020526000908152604090205460ff1681565b600a546001600160a01b031690565b6110ac611736565b6001600160a01b03166110bd611095565b6001600160a01b0316146110e35760405162461bcd60e51b81526004016107cd90612aa7565b600d55565b6060600180546107f890612e01565b6110ff611736565b6001600160a01b0316611110611095565b6001600160a01b0316146111365760405162461bcd60e51b81526004016107cd90612aa7565b60005b8151811015610d0a5760016017600084848151811061116857634e487b7160e01b600052603260045260246000fd5b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff1916911515919091179055806111a481612e3c565b915050611139565b60006111b66109ea565b60145490915060ff16156111dc5760405162461bcd60e51b81526004016107cd90612bf8565b600082116111fc5760405162461bcd60e51b81526004016107cd906126ec565b60115482111561121e5760405162461bcd60e51b81526004016107cd9061275a565b600f5461122b8383612d5c565b11156112495760405162461bcd60e51b81526004016107cd9061267e565b611251611095565b6001600160a01b0316336001600160a01b0316146112965781600e546112779190612d88565b3410156112965760405162461bcd60e51b81526004016107cd90612917565b60015b8281116109df576112ae33610e898385612d5c565b806112b881612e3c565b915050611299565b6112c8611736565b6001600160a01b0316826001600160a01b031614156112f95760405162461bcd60e51b81526004016107cd906127d3565b8060056000611306611736565b6001600160a01b03908116825260208083019390935260409182016000908120918716808252919093529120805460ff19169215159290921790915561134a611736565b6001600160a01b03167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516113829190612582565b60405180910390a35050565b611396611736565b6001600160a01b03166113a7611095565b6001600160a01b0316146113cd5760405162461bcd60e51b81526004016107cd90612aa7565b6014805461ff001916610100179055565b6113ef6113e9611736565b836117c5565b61140b5760405162461bcd60e51b81526004016107cd90612c26565b611417848484846119e3565b50505050565b611425611736565b6001600160a01b0316611436611095565b6001600160a01b03161461145c5760405162461bcd60e51b81526004016107cd90612aa7565b601680549115156101000261ff0019909216919091179055565b600c80546108cb90612e01565b606061148e8261173a565b6114aa5760405162461bcd60e51b81526004016107cd90612b25565b601454610100900460ff1661154b57601580546114c690612e01565b80601f01602080910402602001604051908101604052809291908181526020018280546114f290612e01565b801561153f5780601f106115145761010080835404028352916020019161153f565b820191906000526020600020905b81548152906001019060200180831161152257829003601f168201915b50505050509050610789565b6000611555611a16565b9050600081511161157557604051806020016040528060008152506115a3565b8061157f84611a25565b600c60405160200161159393929190612428565b6040516020818303038152906040525b9392505050565b600d5481565b600f5481565b6115be611736565b6001600160a01b03166115cf611095565b6001600160a01b0316146115f55760405162461bcd60e51b81526004016107cd90612aa7565b8051610d0a90600c906020840190612013565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b61163e611736565b6001600160a01b031661164f611095565b6001600160a01b0316146116755760405162461bcd60e51b81526004016107cd90612aa7565b8051610d0a906015906020840190612013565b611690611736565b6001600160a01b03166116a1611095565b6001600160a01b0316146116c75760405162461bcd60e51b81526004016107cd90612aa7565b6001600160a01b0381166116ed5760405162461bcd60e51b81526004016107cd906126a6565b610b2f81611991565b60006001600160e01b031982166380ac58cd60e01b148061172757506001600160e01b03198216635b5e139f60e01b145b80610786575061078682611b40565b3390565b6000908152600260205260409020546001600160a01b0316151590565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061178c82610d17565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006117d08261173a565b6117ec5760405162461bcd60e51b81526004016107cd9061286e565b60006117f783610d17565b9050806001600160a01b0316846001600160a01b031614806118325750836001600160a01b03166118278461087b565b6001600160a01b0316145b8061184257506118428185611608565b949350505050565b826001600160a01b031661185d82610d17565b6001600160a01b0316146118835760405162461bcd60e51b81526004016107cd90612adc565b6001600160a01b0382166118a95760405162461bcd60e51b81526004016107cd9061278f565b6118b4838383611b59565b6118bf600082611757565b6001600160a01b03831660009081526003602052604081208054600192906118e8908490612da7565b90915550506001600160a01b0382166000908152600360205260408120805460019290611916908490612d5c565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b610d0a828260405180602001604052806000815250611be2565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6119ee84848461184a565b6119fa84848484611c15565b6114175760405162461bcd60e51b81526004016107cd9061262c565b6060600b80546107f890612e01565b606081611a4a57506040805180820190915260018152600360fc1b6020820152610789565b8160005b8115611a745780611a5e81612e3c565b9150611a6d9050600a83612d74565b9150611a4e565b60008167ffffffffffffffff811115611a9d57634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611ac7576020820181803683370190505b5090505b841561184257611adc600183612da7565b9150611ae9600a86612e57565b611af4906030612d5c565b60f81b818381518110611b1757634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350611b39600a86612d74565b9450611acb565b6001600160e01b031981166301ffc9a760e01b14919050565b611b648383836109df565b6001600160a01b038316611b8057611b7b81611d30565b611ba3565b816001600160a01b0316836001600160a01b031614611ba357611ba38382611d74565b6001600160a01b038216611bbf57611bba81611e11565b6109df565b826001600160a01b0316826001600160a01b0316146109df576109df8282611eea565b611bec8383611f2e565b611bf96000848484611c15565b6109df5760405162461bcd60e51b81526004016107cd9061262c565b6000611c29846001600160a01b031661200d565b15611d2557836001600160a01b031663150b7a02611c45611736565b8786866040518563ffffffff1660e01b8152600401611c679493929190612501565b602060405180830381600087803b158015611c8157600080fd5b505af1925050508015611cb1575060408051601f3d908101601f19168201909252611cae91810190612361565b60015b611d0b573d808015611cdf576040519150601f19603f3d011682016040523d82523d6000602084013e611ce4565b606091505b508051611d035760405162461bcd60e51b81526004016107cd9061262c565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611842565b506001949350505050565b600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b60006001611d8184610ed3565b611d8b9190612da7565b600083815260076020526040902054909150808214611dde576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090611e2390600190612da7565b60008381526009602052604081205460088054939450909284908110611e5957634e487b7160e01b600052603260045260246000fd5b906000526020600020015490508060088381548110611e8857634e487b7160e01b600052603260045260246000fd5b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480611ece57634e487b7160e01b600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b6000611ef583610ed3565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b038216611f545760405162461bcd60e51b81526004016107cd906129ef565b611f5d8161173a565b15611f7a5760405162461bcd60e51b81526004016107cd90612723565b611f8660008383611b59565b6001600160a01b0382166000908152600360205260408120805460019290611faf908490612d5c565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b3b151590565b82805461201f90612e01565b90600052602060002090601f0160209004810192826120415760008555612087565b82601f1061205a57805160ff1916838001178555612087565b82800160010185558215612087579182015b8281111561208757825182559160200191906001019061206c565b50612093929150612097565b5090565b5b808211156120935760008155600101612098565b600067ffffffffffffffff8311156120c6576120c6612e97565b6120d9601f8401601f1916602001612d26565b90508281528383830111156120ed57600080fd5b828260208301376000602084830101529392505050565b80356001600160a01b038116811461078957600080fd5b8035801515811461078957600080fd5b60006020828403121561213c578081fd5b6115a382612104565b60008060408385031215612157578081fd5b61216083612104565b915061216e60208401612104565b90509250929050565b60008060006060848603121561218b578081fd5b61219484612104565b92506121a260208501612104565b9150604084013590509250925092565b600080600080608085870312156121c7578081fd5b6121d085612104565b93506121de60208601612104565b925060408501359150606085013567ffffffffffffffff811115612200578182fd5b8501601f81018713612210578182fd5b61221f878235602084016120ac565b91505092959194509250565b6000806040838503121561223d578182fd5b61224683612104565b915061216e6020840161211b565b60008060408385031215612266578182fd5b61226f83612104565b946020939093013593505050565b6000602080838503121561228f578182fd5b823567ffffffffffffffff808211156122a6578384fd5b818501915085601f8301126122b9578384fd5b8135818111156122cb576122cb612e97565b83810291506122db848301612d26565b8181528481019084860184860187018a10156122f5578788fd5b8795505b8386101561231e5761230a81612104565b8352600195909501949186019186016122f9565b5098975050505050505050565b60006020828403121561233c578081fd5b6115a38261211b565b600060208284031215612356578081fd5b81356115a381612ead565b600060208284031215612372578081fd5b81516115a381612ead565b60006020828403121561238e578081fd5b813567ffffffffffffffff8111156123a4578182fd5b8201601f810184136123b4578182fd5b611842848235602084016120ac565b6000602082840312156123d4578081fd5b5035919050565b6000602082840312156123ec578081fd5b813560ff811681146115a3578182fd5b60008151808452612414816020860160208601612dbe565b601f01601f19169290920160200192915050565b60008451602061243b8285838a01612dbe565b85519184019161244e8184848a01612dbe565b855492019183906002810460018083168061246a57607f831692505b85831081141561248857634e487b7160e01b88526022600452602488fd5b80801561249c57600181146124ad576124d9565b60ff198516885283880195506124d9565b6124b68b612d50565b895b858110156124d15781548a8201529084019088016124b8565b505083880195505b50939b9a5050505050505050505050565b90565b6001600160a01b0391909116815260200190565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612534908301846123fc565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b818110156125765783518352928401929184019160010161255a565b50909695505050505050565b901515815260200190565b6000602082526115a360208301846123fc565b60208082526021908201527f596f752063616e206f6e6c79206d696e74206f6e6520696e2070726573616c656040820152602160f81b606082015260800190565b6020808252602b908201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560408201526a74206f6620626f756e647360a81b606082015260800190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252600e908201526d4578636565647320537570706c7960901b604082015260600190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b6020808252601e908201527f41746c65617374206d696e74206d6f7265207468616e203120746f6b656e0000604082015260600190565b6020808252601c908201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604082015260600190565b6020808252818101527f43616e6e6f74206d696e74206d6f7265207468616e20313020746f6b656e732e604082015260600190565b60208082526024908201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526019908201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604082015260600190565b602080825260139082015272139bc8135bdc9948151bdad95b9cc81319599d606a1b604082015260600190565b6020808252601b908201527f456e6f75676820546f6b656e7320617265206e6f74206c656674210000000000604082015260600190565b6020808252602c908201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b60208082526038908201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760408201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606082015260800190565b60208082526025908201527f4d616b65207375726520796f752073656e742074686520636f727265637420616040820152641b5bdd5b9d60da1b606082015260800190565b6020808252602a908201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604082015269726f206164647265737360b01b606082015260800190565b60208082526029908201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460408201526832b73a103a37b5b2b760b91b606082015260800190565b6020808252818101527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604082015260600190565b6020808252601c908201527f596f75277265206e6f74206f6e207468652077686974656c6973742100000000604082015260600190565b6020808252602c908201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526029908201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960408201526839903737ba1037bbb760b91b606082015260800190565b6020808252602f908201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60408201526e3732bc34b9ba32b73a103a37b5b2b760891b606082015260800190565b60208082526021908201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656040820152603960f91b606082015260800190565b60208082526023908201527f5468617420776f756c642065786365656420746865206d61782072657365727660408201526232b21760e91b606082015260800190565b60208082526014908201527314d85b1948139bdd0814dd185c9d19590816595d60621b604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6020808252602c908201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60408201526b7574206f6620626f756e647360a01b606082015260800190565b602080825260139082015272416d6f756e742073656e74206973206c65737360681b604082015260600190565b602080825260139082015272141c995cd85b1948139bdd0814dd185c9d1959606a1b604082015260600190565b90815260200190565b60405181810167ffffffffffffffff81118282101715612d4857612d48612e97565b604052919050565b60009081526020902090565b60008219821115612d6f57612d6f612e6b565b500190565b600082612d8357612d83612e81565b500490565b6000816000190483118215151615612da257612da2612e6b565b500290565b600082821015612db957612db9612e6b565b500390565b60005b83811015612dd9578181015183820152602001612dc1565b838111156114175750506000910152565b600081612df957612df9612e6b565b506000190190565b600281046001821680612e1557607f821691505b60208210811415612e3657634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612e5057612e50612e6b565b5060010190565b600082612e6657612e66612e81565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610b2f57600080fdfea26469706673582212207343bf5ca917e0e0924114678c9768293f954ee8d1afa7b6ff30aeef970f9f4464736f6c63430008000033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000016000000000000000000000000000000000000000000000000000000000000000114d756c746976657273654f66576f6d656e00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000034d4f5700000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d65457a4734634132554c425445426453654d41666673764c396b6f517a616d693544464468453355345a6e382f000000000000000000000000000000000000000000000000000000000000000000000000000000000047697066733a2f2f516d66596b3344526459366458585271434a72694d4c68434736624a3856686f6f6e3664444a4831384b665346552f506c616365486f6c6465722e6a736f6e2f00000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : _name (string): MultiverseOfWomen
Arg [1] : _symbol (string): MOW
Arg [2] : _initBaseURI (string): ipfs://QmeEzG4cA2ULBTEBdSeMAffsvL9koQzami5DFDhE3U4Zn8/
Arg [3] : _initNotRevealedUri (string): ipfs://QmfYk3DRdY6dXXRqCJriMLhCG6bJ8Vhoon6dDJH18KfSFU/PlaceHolder.json/
-----Encoded View---------------
15 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000100
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000160
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000011
Arg [5] : 4d756c746976657273654f66576f6d656e000000000000000000000000000000
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [7] : 4d4f570000000000000000000000000000000000000000000000000000000000
Arg [8] : 0000000000000000000000000000000000000000000000000000000000000036
Arg [9] : 697066733a2f2f516d65457a4734634132554c425445426453654d4166667376
Arg [10] : 4c396b6f517a616d693544464468453355345a6e382f00000000000000000000
Arg [11] : 0000000000000000000000000000000000000000000000000000000000000047
Arg [12] : 697066733a2f2f516d66596b3344526459366458585271434a72694d4c684347
Arg [13] : 36624a3856686f6f6e3664444a4831384b665346552f506c616365486f6c6465
Arg [14] : 722e6a736f6e2f00000000000000000000000000000000000000000000000000
Deployed Bytecode Sourcemap
43121:6028:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34668:224;;;;;;;;;;-1:-1:-1;34668:224:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48915:73;;;;;;;;;;-1:-1:-1;48915:73:0;;;;;:::i;:::-;;:::i;:::-;;22560:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;24119:221::-;;;;;;;;;;-1:-1:-1;24119:221:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;43616:28::-;;;;;;;;;;;;;:::i;23642:411::-;;;;;;;;;;-1:-1:-1;23642:411:0;;;;;:::i;:::-;;:::i;43320:32::-;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;35308:113::-;;;;;;;;;;;;;:::i;43431:33::-;;;;;;;;;;;;;:::i;25009:339::-;;;;;;;;;;-1:-1:-1;25009:339:0;;;;;:::i;:::-;;:::i;34976:256::-;;;;;;;;;;-1:-1:-1;34976:256:0;;;;;:::i;:::-;;:::i;48995:151::-;;;:::i;25419:185::-;;;;;;;;;;-1:-1:-1;25419:185:0;;;;;:::i;:::-;;:::i;47204:348::-;;;;;;;;;;-1:-1:-1;47204:348:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;48150:80::-;;;;;;;;;;-1:-1:-1;48150:80:0;;;;;:::i;:::-;;:::i;35498:233::-;;;;;;;;;;-1:-1:-1;35498:233:0;;;;;:::i;:::-;;:::i;43583:28::-;;;;;;;;;;;;;:::i;48593:98::-;;;;;;;;;;-1:-1:-1;48593:98:0;;;;;:::i;:::-;;:::i;43553:25::-;;;;;;;;;;;;;:::i;22254:239::-;;;;;;;;;;-1:-1:-1;22254:239:0;;;;;:::i;:::-;;:::i;43680:34::-;;;;;;;;;;;;;:::i;45834:749::-;;;;;;:::i;:::-;;:::i;21984:208::-;;;;;;;;;;-1:-1:-1;21984:208:0;;;;;:::i;:::-;;:::i;42457:94::-;;;;;;;;;;;;;:::i;46812:376::-;;;;;;;;;;-1:-1:-1;46812:376:0;;;;;:::i;:::-;;:::i;48343:116::-;;;;;;;;;;-1:-1:-1;48343:116:0;;;;;:::i;:::-;;:::i;43782:50::-;;;;;;;;;;-1:-1:-1;43782:50:0;;;;;:::i;:::-;;:::i;41806:87::-;;;;;;;;;;;;;:::i;48236:101::-;;;;;;;;;;-1:-1:-1;48236:101:0;;;;;:::i;:::-;;:::i;22729:104::-;;;;;;;;;;;;;:::i;46595:201::-;;;;;;;;;;-1:-1:-1;46595:201:0;;;;;:::i;:::-;;:::i;45245:581::-;;;;;;:::i;:::-;;:::i;24412:295::-;;;;;;;;;;-1:-1:-1;24412:295:0;;;;;:::i;:::-;;:::i;48077:65::-;;;;;;;;;;;;;:::i;25675:328::-;;;;;;;;;;-1:-1:-1;25675:328:0;;;;;:::i;:::-;;:::i;48695:86::-;;;;;;;;;;-1:-1:-1;48695:86:0;;;;;:::i;:::-;;:::i;43231:37::-;;;;;;;;;;;;;:::i;47558:497::-;;;;;;;;;;-1:-1:-1;47558:497:0;;;;;:::i;:::-;;:::i;43273:42::-;;;;;;;;;;;;;:::i;43357:32::-;;;;;;;;;;;;;:::i;48787:122::-;;;;;;;;;;-1:-1:-1;48787:122:0;;;;;:::i;:::-;;:::i;24778:164::-;;;;;;;;;;-1:-1:-1;24778:164:0;;;;;:::i;:::-;;:::i;48467:120::-;;;;;;;;;;-1:-1:-1;48467:120:0;;;;;:::i;:::-;;:::i;42706:192::-;;;;;;;;;;-1:-1:-1;42706:192:0;;;;;:::i;:::-;;:::i;34668:224::-;34770:4;-1:-1:-1;;;;;;34794:50:0;;-1:-1:-1;;;34794:50:0;;:90;;;34848:36;34872:11;34848:23;:36::i;:::-;34787:97;;34668:224;;;;:::o;48915:73::-;42037:12;:10;:12::i;:::-;-1:-1:-1;;;;;42026:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;42026:23:0;;42018:68;;;;-1:-1:-1;;;42018:68:0;;;;;;;:::i;:::-;;;;;;;;;48967:6:::1;:15:::0;;-1:-1:-1;;48967:15:0::1;::::0;::::1;;::::0;;;::::1;::::0;;48915:73::o;22560:100::-;22614:13;22647:5;22640:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22560:100;:::o;24119:221::-;24195:7;24223:16;24231:7;24223;:16::i;:::-;24215:73;;;;-1:-1:-1;;;24215:73:0;;;;;;;:::i;:::-;-1:-1:-1;24308:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;24308:24:0;;24119:221::o;43616:28::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;23642:411::-;23723:13;23739:23;23754:7;23739:14;:23::i;:::-;23723:39;;23787:5;-1:-1:-1;;;;;23781:11:0;:2;-1:-1:-1;;;;;23781:11:0;;;23773:57;;;;-1:-1:-1;;;23773:57:0;;;;;;;:::i;:::-;23881:5;-1:-1:-1;;;;;23865:21:0;:12;:10;:12::i;:::-;-1:-1:-1;;;;;23865:21:0;;:62;;;;23890:37;23907:5;23914:12;:10;:12::i;23890:37::-;23843:168;;;;-1:-1:-1;;;23843:168:0;;;;;;;:::i;:::-;24024:21;24033:2;24037:7;24024:8;:21::i;:::-;23642:411;;;:::o;43320:32::-;;;;:::o;35308:113::-;35396:10;:17;35308:113;:::o;43431:33::-;;;;:::o;25009:339::-;25204:41;25223:12;:10;:12::i;:::-;25237:7;25204:18;:41::i;:::-;25196:103;;;;-1:-1:-1;;;25196:103:0;;;;;;;:::i;:::-;25312:28;25322:4;25328:2;25332:7;25312:9;:28::i;34976:256::-;35073:7;35109:23;35126:5;35109:16;:23::i;:::-;35101:5;:31;35093:87;;;;-1:-1:-1;;;35093:87:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;;35198:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;34976:256::o;48995:151::-;42037:12;:10;:12::i;:::-;-1:-1:-1;;;;;42026:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;42026:23:0;;42018:68;;;;-1:-1:-1;;;42018:68:0;;;;;;;:::i;:::-;49054:7:::1;49075;:5;:7::i;:::-;-1:-1:-1::0;;;;;49067:21:0::1;49096;49067:55;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49053:69;;;49137:2;49129:11;;;::::0;::::1;;42097:1;48995:151::o:0;25419:185::-;25557:39;25574:4;25580:2;25584:7;25557:39;;;;;;;;;;;;:16;:39::i;47204:348::-;47279:16;47307:23;47333:17;47343:6;47333:9;:17::i;:::-;47307:43;;47357:25;47399:15;47385:30;;;;;;-1:-1:-1;;;47385:30:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;47385:30:0;;47357:58;;47427:9;47422:103;47442:15;47438:1;:19;47422:103;;;47487:30;47507:6;47515:1;47487:19;:30::i;:::-;47473:8;47482:1;47473:11;;;;;;-1:-1:-1;;;47473:11:0;;;;;;;;;;;;;;;;;;:44;47459:3;;;;:::i;:::-;;;;47422:103;;;-1:-1:-1;47538:8:0;47204:348;-1:-1:-1;;;47204:348:0:o;48150:80::-;42037:12;:10;:12::i;:::-;-1:-1:-1;;;;;42026:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;42026:23:0;;42018:68;;;;-1:-1:-1;;;42018:68:0;;;;;;;:::i;:::-;48209:4:::1;:15:::0;48150:80::o;35498:233::-;35573:7;35609:30;:28;:30::i;:::-;35601:5;:38;35593:95;;;;-1:-1:-1;;;35593:95:0;;;;;;;:::i;:::-;35706:10;35717:5;35706:17;;;;;;-1:-1:-1;;;35706:17:0;;;;;;;;;;;;;;;;;35699:24;;35498:233;;;:::o;43583:28::-;;;;;;;;;:::o;48593:98::-;42037:12;:10;:12::i;:::-;-1:-1:-1;;;;;42026:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;42026:23:0;;42018:68;;;;-1:-1:-1;;;42018:68:0;;;;;;;:::i;:::-;48664:21;;::::1;::::0;:7:::1;::::0;:21:::1;::::0;::::1;::::0;::::1;:::i;:::-;;48593:98:::0;:::o;43553:25::-;;;;;;:::o;22254:239::-;22326:7;22362:16;;;:7;:16;;;;;;-1:-1:-1;;;;;22362:16:0;22397:19;22389:73;;;;-1:-1:-1;;;22389:73:0;;;;;;;:::i;43680:34::-;;;;;;;;;:::o;45834:749::-;44178:10;44166:23;;;;:11;:23;;;;;:32;;;44144:100;;;;-1:-1:-1;;;44144:100:0;;;;;;;:::i;:::-;45917:14:::1;45934:13;:11;:13::i;:::-;45966:14;::::0;45917:30;;-1:-1:-1;45966:14:0::1;::::0;::::1;;;45958:45;;;;-1:-1:-1::0;;;45958:45:0::1;;;;;;;:::i;:::-;46038:24;;46022:12;:40;;;;46014:85;;;;-1:-1:-1::0;;;46014:85:0::1;;;;;;;:::i;:::-;46143:9;::::0;46118:21:::1;;::::0;::::1;:6:::0;:21:::1;:::i;:::-;:34;;46110:67;;;;-1:-1:-1::0;;;46110:67:0::1;;;;;;;:::i;:::-;46221:10;::::0;46196:20:::1;;::::0;::::1;:6:::0;:20:::1;:::i;:::-;:35;;46188:74;;;;-1:-1:-1::0;;;46188:74:0::1;;;;;;;:::i;:::-;46320:9;46304:12;;46291;:25;;;;;;:::i;:::-;:38;;46283:69;;;;-1:-1:-1::0;;;46283:69:0::1;;;;;;;:::i;:::-;46378:1;46363:142;46386:12;46381:17;;:1;:17;46363:142;;46420:33;46430:10;46442;46451:1:::0;46442:6;:10:::1;:::i;:::-;46420:9;:33::i;:::-;46481:10;:12:::0;;;:10:::1;:12;::::0;::::1;:::i;:::-;::::0;;;-1:-1:-1;46468:10:0::1;:25:::0;46400:3;::::1;::::0;::::1;:::i;:::-;;;;46363:142;;;-1:-1:-1::0;;46527:10:0::1;46550:5;46515:23:::0;;;:11:::1;:23;::::0;;;;:40;;-1:-1:-1;;46515:40:0::1;::::0;;-1:-1:-1;45834:749:0:o;21984:208::-;22056:7;-1:-1:-1;;;;;22084:19:0;;22076:74;;;;-1:-1:-1;;;22076:74:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;;22168:16:0;;;;;:9;:16;;;;;;;21984:208::o;42457:94::-;42037:12;:10;:12::i;:::-;-1:-1:-1;;;;;42026:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;42026:23:0;;42018:68;;;;-1:-1:-1;;;42018:68:0;;;;;;;:::i;:::-;42522:21:::1;42540:1;42522:9;:21::i;:::-;42457:94::o:0;46812:376::-;42037:12;:10;:12::i;:::-;-1:-1:-1;;;;;42026:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;42026:23:0;;42018:68;;;;-1:-1:-1;;;42018:68:0;;;;;;;:::i;:::-;46903:12;;46942:8:::1;::::0;46935:15;::::1;;46926:64;;;;-1:-1:-1::0;;;46926:64:0::1;;;;;;;:::i;:::-;47003:16;47022:13;:11;:13::i;:::-;47003:32;;47051:9;47046:95;47071:3;47067:1;:7;47046:95;;;47096:33;47106:5;47112:1;47106:8;;;;;;-1:-1:-1::0;;;47106:8:0::1;;;;;;;;;;;;;;;47127:1;47116:8;:12;;;;:::i;47096:33::-;47076:3:::0;::::1;::::0;::::1;:::i;:::-;;;;47046:95;;;;47175:3;47164:8;;:14;;;;:::i;:::-;47153:8;:25:::0;-1:-1:-1;;;46812:376:0:o;48343:116::-;42037:12;:10;:12::i;:::-;-1:-1:-1;;;;;42026:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;42026:23:0;;42018:68;;;;-1:-1:-1;;;42018:68:0;;;;;;;:::i;:::-;48420:13:::1;:33:::0;48343:116::o;43782:50::-;;;;;;;;;;;;;;;:::o;41806:87::-;41879:6;;-1:-1:-1;;;;;41879:6:0;41806:87;:::o;48236:101::-;42037:12;:10;:12::i;:::-;-1:-1:-1;;;;;42026:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;42026:23:0;;42018:68;;;;-1:-1:-1;;;42018:68:0;;;;;;;:::i;:::-;48305:12:::1;:26:::0;48236:101::o;22729:104::-;22785:13;22818:7;22811:14;;;;;:::i;46595:201::-;42037:12;:10;:12::i;:::-;-1:-1:-1;;;;;42026:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;42026:23:0;;42018:68;;;;-1:-1:-1;;;42018:68:0;;;;;;;:::i;:::-;46687:9:::1;46682:107;46706:5;:12;46702:1;:16;46682:107;;;46773:4;46740:11;:21;46752:5;46758:1;46752:8;;;;;;-1:-1:-1::0;;;46752:8:0::1;;;;;;;;;;::::0;;::::1;::::0;;;;;;;-1:-1:-1;;;;;46740:21:0::1;::::0;;;::::1;::::0;;;;;;-1:-1:-1;46740:21:0;:37;;-1:-1:-1;;46740:37:0::1;::::0;::::1;;::::0;;;::::1;::::0;;46720:3;::::1;::::0;::::1;:::i;:::-;;;;46682:107;;45245:581:::0;45302:14;45319:13;:11;:13::i;:::-;45348:6;;45302:30;;-1:-1:-1;45348:6:0;;45347:7;45339:39;;;;-1:-1:-1;;;45339:39:0;;;;;;;:::i;:::-;45407:1;45393:11;:15;45385:57;;;;-1:-1:-1;;;45385:57:0;;;;;;;:::i;:::-;45472:13;;45457:11;:28;;45449:72;;;;-1:-1:-1;;;45449:72:0;;;;;;;:::i;:::-;45560:9;;45536:20;45545:11;45536:6;:20;:::i;:::-;:33;;45528:59;;;;-1:-1:-1;;;45528:59:0;;;;;;;:::i;:::-;45614:7;:5;:7::i;:::-;-1:-1:-1;;;;;45600:21:0;:10;-1:-1:-1;;;;;45600:21:0;;45596:124;;45660:11;45653:4;;:18;;;;:::i;:::-;45640:9;:31;;45632:80;;;;-1:-1:-1;;;45632:80:0;;;;;;;:::i;:::-;45745:1;45728:93;45753:11;45748:1;:16;45728:93;;45780:33;45790:10;45802;45811:1;45802:6;:10;:::i;45780:33::-;45766:3;;;;:::i;:::-;;;;45728:93;;24412:295;24527:12;:10;:12::i;:::-;-1:-1:-1;;;;;24515:24:0;:8;-1:-1:-1;;;;;24515:24:0;;;24507:62;;;;-1:-1:-1;;;24507:62:0;;;;;;;:::i;:::-;24627:8;24582:18;:32;24601:12;:10;:12::i;:::-;-1:-1:-1;;;;;24582:32:0;;;;;;;;;;;;;;;;;-1:-1:-1;24582:32:0;;;:42;;;;;;;;;;;;:53;;-1:-1:-1;;24582:53:0;;;;;;;;;;;24666:12;:10;:12::i;:::-;-1:-1:-1;;;;;24651:48:0;;24690:8;24651:48;;;;;;:::i;:::-;;;;;;;;24412:295;;:::o;48077:65::-;42037:12;:10;:12::i;:::-;-1:-1:-1;;;;;42026:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;42026:23:0;;42018:68;;;;-1:-1:-1;;;42018:68:0;;;;;;;:::i;:::-;48121:8:::1;:15:::0;;-1:-1:-1;;48121:15:0::1;;;::::0;;48077:65::o;25675:328::-;25850:41;25869:12;:10;:12::i;:::-;25883:7;25850:18;:41::i;:::-;25842:103;;;;-1:-1:-1;;;25842:103:0;;;;;;;:::i;:::-;25956:39;25970:4;25976:2;25980:7;25989:5;25956:13;:39::i;:::-;25675:328;;;;:::o;48695:86::-;42037:12;:10;:12::i;:::-;-1:-1:-1;;;;;42026:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;42026:23:0;;42018:68;;;;-1:-1:-1;;;42018:68:0;;;;;;;:::i;:::-;48752:14:::1;:23:::0;;;::::1;;;;-1:-1:-1::0;;48752:23:0;;::::1;::::0;;;::::1;::::0;;48695:86::o;43231:37::-;;;;;;;:::i;47558:497::-;47656:13;47697:16;47705:7;47697;:16::i;:::-;47681:97;;;;-1:-1:-1;;;47681:97:0;;;;;;;:::i;:::-;47794:8;;;;;;;47791:62;;47831:14;47824:21;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47791:62;47861:28;47892:10;:8;:10::i;:::-;47861:41;;47947:1;47922:14;47916:28;:32;:133;;;;;;;;;;;;;;;;;47984:14;48000:18;:7;:16;:18::i;:::-;48020:13;47967:67;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;47916:133;47909:140;47558:497;-1:-1:-1;;;47558:497:0:o;43273:42::-;;;;:::o;43357:32::-;;;;:::o;48787:122::-;42037:12;:10;:12::i;:::-;-1:-1:-1;;;;;42026:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;42026:23:0;;42018:68;;;;-1:-1:-1;;;42018:68:0;;;;;;;:::i;:::-;48870:33;;::::1;::::0;:13:::1;::::0;:33:::1;::::0;::::1;::::0;::::1;:::i;24778:164::-:0;-1:-1:-1;;;;;24899:25:0;;;24875:4;24899:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;24778:164::o;48467:120::-;42037:12;:10;:12::i;:::-;-1:-1:-1;;;;;42026:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;42026:23:0;;42018:68;;;;-1:-1:-1;;;42018:68:0;;;;;;;:::i;:::-;48549:32;;::::1;::::0;:14:::1;::::0;:32:::1;::::0;::::1;::::0;::::1;:::i;42706:192::-:0;42037:12;:10;:12::i;:::-;-1:-1:-1;;;;;42026:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;42026:23:0;;42018:68;;;;-1:-1:-1;;;42018:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;42795:22:0;::::1;42787:73;;;;-1:-1:-1::0;;;42787:73:0::1;;;;;;;:::i;:::-;42871:19;42881:8;42871:9;:19::i;21615:305::-:0;21717:4;-1:-1:-1;;;;;;21754:40:0;;-1:-1:-1;;;21754:40:0;;:105;;-1:-1:-1;;;;;;;21811:48:0;;-1:-1:-1;;;21811:48:0;21754:105;:158;;;;21876:36;21900:11;21876:23;:36::i;20089:98::-;20169:10;20089:98;:::o;27513:127::-;27578:4;27602:16;;;:7;:16;;;;;;-1:-1:-1;;;;;27602:16:0;:30;;;27513:127::o;31495:174::-;31570:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;31570:29:0;-1:-1:-1;;;;;31570:29:0;;;;;;;;:24;;31624:23;31570:24;31624:14;:23::i;:::-;-1:-1:-1;;;;;31615:46:0;;;;;;;;;;;31495:174;;:::o;27807:348::-;27900:4;27925:16;27933:7;27925;:16::i;:::-;27917:73;;;;-1:-1:-1;;;27917:73:0;;;;;;;:::i;:::-;28001:13;28017:23;28032:7;28017:14;:23::i;:::-;28001:39;;28070:5;-1:-1:-1;;;;;28059:16:0;:7;-1:-1:-1;;;;;28059:16:0;;:51;;;;28103:7;-1:-1:-1;;;;;28079:31:0;:20;28091:7;28079:11;:20::i;:::-;-1:-1:-1;;;;;28079:31:0;;28059:51;:87;;;;28114:32;28131:5;28138:7;28114:16;:32::i;:::-;28051:96;27807:348;-1:-1:-1;;;;27807:348:0:o;30799:578::-;30958:4;-1:-1:-1;;;;;30931:31:0;:23;30946:7;30931:14;:23::i;:::-;-1:-1:-1;;;;;30931:31:0;;30923:85;;;;-1:-1:-1;;;30923:85:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;31027:16:0;;31019:65;;;;-1:-1:-1;;;31019:65:0;;;;;;;:::i;:::-;31097:39;31118:4;31124:2;31128:7;31097:20;:39::i;:::-;31201:29;31218:1;31222:7;31201:8;:29::i;:::-;-1:-1:-1;;;;;31243:15:0;;;;;;:9;:15;;;;;:20;;31262:1;;31243:15;:20;;31262:1;;31243:20;:::i;:::-;;;;-1:-1:-1;;;;;;;31274:13:0;;;;;;:9;:13;;;;;:18;;31291:1;;31274:13;:18;;31291:1;;31274:18;:::i;:::-;;;;-1:-1:-1;;31303:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;31303:21:0;-1:-1:-1;;;;;31303:21:0;;;;;;;;;31342:27;;31303:16;;31342:27;;;;;;;30799:578;;;:::o;28497:110::-;28573:26;28583:2;28587:7;28573:26;;;;;;;;;;;;:9;:26::i;42906:173::-;42981:6;;;-1:-1:-1;;;;;42998:17:0;;;-1:-1:-1;;;;;;42998:17:0;;;;;;;43031:40;;42981:6;;;42998:17;42981:6;;43031:40;;42962:16;;43031:40;42906:173;;:::o;26885:315::-;27042:28;27052:4;27058:2;27062:7;27042:9;:28::i;:::-;27089:48;27112:4;27118:2;27122:7;27131:5;27089:22;:48::i;:::-;27081:111;;;;-1:-1:-1;;;27081:111:0;;;;;;;:::i;45124:102::-;45184:13;45213:7;45206:14;;;;;:::i;7921:723::-;7977:13;8198:10;8194:53;;-1:-1:-1;8225:10:0;;;;;;;;;;;;-1:-1:-1;;;8225:10:0;;;;;;8194:53;8272:5;8257:12;8313:78;8320:9;;8313:78;;8346:8;;;;:::i;:::-;;-1:-1:-1;8369:10:0;;-1:-1:-1;8377:2:0;8369:10;;:::i;:::-;;;8313:78;;;8401:19;8433:6;8423:17;;;;;;-1:-1:-1;;;8423:17:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;8423:17:0;;8401:39;;8451:154;8458:10;;8451:154;;8485:11;8495:1;8485:11;;:::i;:::-;;-1:-1:-1;8554:10:0;8562:2;8554:5;:10;:::i;:::-;8541:24;;:2;:24;:::i;:::-;8528:39;;8511:6;8518;8511:14;;;;;;-1:-1:-1;;;8511:14:0;;;;;;;;;;;;:56;-1:-1:-1;;;;;8511:56:0;;;;;;;;-1:-1:-1;8582:11:0;8591:2;8582:11;;:::i;:::-;;;8451:154;;7446:157;-1:-1:-1;;;;;;7555:40:0;;-1:-1:-1;;;7555:40:0;7446:157;;;:::o;36344:589::-;36488:45;36515:4;36521:2;36525:7;36488:26;:45::i;:::-;-1:-1:-1;;;;;36550:18:0;;36546:187;;36585:40;36617:7;36585:31;:40::i;:::-;36546:187;;;36655:2;-1:-1:-1;;;;;36647:10:0;:4;-1:-1:-1;;;;;36647:10:0;;36643:90;;36674:47;36707:4;36713:7;36674:32;:47::i;:::-;-1:-1:-1;;;;;36747:16:0;;36743:183;;36780:45;36817:7;36780:36;:45::i;:::-;36743:183;;;36853:4;-1:-1:-1;;;;;36847:10:0;:2;-1:-1:-1;;;;;36847:10:0;;36843:83;;36874:40;36902:2;36906:7;36874:27;:40::i;28834:321::-;28964:18;28970:2;28974:7;28964:5;:18::i;:::-;29015:54;29046:1;29050:2;29054:7;29063:5;29015:22;:54::i;:::-;28993:154;;;;-1:-1:-1;;;28993:154:0;;;;;;;:::i;32234:799::-;32389:4;32410:15;:2;-1:-1:-1;;;;;32410:13:0;;:15::i;:::-;32406:620;;;32462:2;-1:-1:-1;;;;;32446:36:0;;32483:12;:10;:12::i;:::-;32497:4;32503:7;32512:5;32446:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;32446:72:0;;;;;;;;-1:-1:-1;;32446:72:0;;;;;;;;;;;;:::i;:::-;;;32442:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;32688:13:0;;32684:272;;32731:60;;-1:-1:-1;;;32731:60:0;;;;;;;:::i;32684:272::-;32906:6;32900:13;32891:6;32887:2;32883:15;32876:38;32442:529;-1:-1:-1;;;;;;32569:51:0;-1:-1:-1;;;32569:51:0;;-1:-1:-1;32562:58:0;;32406:620;-1:-1:-1;33010:4:0;32234:799;;;;;;:::o;37656:164::-;37760:10;:17;;37733:24;;;;:15;:24;;;;;:44;;;37788:24;;;;;;;;;;;;37656:164::o;38447:988::-;38713:22;38763:1;38738:22;38755:4;38738:16;:22::i;:::-;:26;;;;:::i;:::-;38775:18;38796:26;;;:17;:26;;;;;;38713:51;;-1:-1:-1;38929:28:0;;;38925:328;;-1:-1:-1;;;;;38996:18:0;;38974:19;38996:18;;;:12;:18;;;;;;;;:34;;;;;;;;;39047:30;;;;;;:44;;;39164:30;;:17;:30;;;;;:43;;;38925:328;-1:-1:-1;39349:26:0;;;;:17;:26;;;;;;;;39342:33;;;-1:-1:-1;;;;;39393:18:0;;;;;:12;:18;;;;;:34;;;;;;;39386:41;38447:988::o;39730:1079::-;40008:10;:17;39983:22;;40008:21;;40028:1;;40008:21;:::i;:::-;40040:18;40061:24;;;:15;:24;;;;;;40434:10;:26;;39983:46;;-1:-1:-1;40061:24:0;;39983:46;;40434:26;;;;-1:-1:-1;;;40434:26:0;;;;;;;;;;;;;;;;;40412:48;;40498:11;40473:10;40484;40473:22;;;;;;-1:-1:-1;;;40473:22:0;;;;;;;;;;;;;;;;;;;;:36;;;;40578:28;;;:15;:28;;;;;;;:41;;;40750:24;;;;;40743:31;40785:10;:16;;;;;-1:-1:-1;;;40785:16:0;;;;;;;;;;;;;;;;;;;;;;;;;;39730:1079;;;;:::o;37234:221::-;37319:14;37336:20;37353:2;37336:16;:20::i;:::-;-1:-1:-1;;;;;37367:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;37412:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;37234:221:0:o;29491:382::-;-1:-1:-1;;;;;29571:16:0;;29563:61;;;;-1:-1:-1;;;29563:61:0;;;;;;;:::i;:::-;29644:16;29652:7;29644;:16::i;:::-;29643:17;29635:58;;;;-1:-1:-1;;;29635:58:0;;;;;;;:::i;:::-;29706:45;29735:1;29739:2;29743:7;29706:20;:45::i;:::-;-1:-1:-1;;;;;29764:13:0;;;;;;:9;:13;;;;;:18;;29781:1;;29764:13;:18;;29781:1;;29764:18;:::i;:::-;;;;-1:-1:-1;;29793:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;29793:21:0;-1:-1:-1;;;;;29793:21:0;;;;;;;;29832:33;;29793:16;;;29832:33;;29793:16;;29832:33;29491:382;;:::o;10446:387::-;10769:20;10817:8;;;10446:387::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:409:1;;114:18;106:6;103:30;100:2;;;136:18;;:::i;:::-;174:58;220:2;197:17;;-1:-1:-1;;193:31:1;226:4;189:42;174:58;:::i;:::-;165:67;;255:6;248:5;241:21;295:3;286:6;281:3;277:16;274:25;271:2;;;312:1;309;302:12;271:2;361:6;356:3;349:4;342:5;338:16;325:43;415:1;408:4;399:6;392:5;388:18;384:29;377:40;90:333;;;;;:::o;428:175::-;498:20;;-1:-1:-1;;;;;547:31:1;;537:42;;527:2;;593:1;590;583:12;608:162;675:20;;731:13;;724:21;714:32;;704:2;;760:1;757;750:12;775:198;;887:2;875:9;866:7;862:23;858:32;855:2;;;908:6;900;893:22;855:2;936:31;957:9;936:31;:::i;978:274::-;;;1107:2;1095:9;1086:7;1082:23;1078:32;1075:2;;;1128:6;1120;1113:22;1075:2;1156:31;1177:9;1156:31;:::i;:::-;1146:41;;1206:40;1242:2;1231:9;1227:18;1206:40;:::i;:::-;1196:50;;1065:187;;;;;:::o;1257:342::-;;;;1403:2;1391:9;1382:7;1378:23;1374:32;1371:2;;;1424:6;1416;1409:22;1371:2;1452:31;1473:9;1452:31;:::i;:::-;1442:41;;1502:40;1538:2;1527:9;1523:18;1502:40;:::i;:::-;1492:50;;1589:2;1578:9;1574:18;1561:32;1551:42;;1361:238;;;;;:::o;1604:702::-;;;;;1776:3;1764:9;1755:7;1751:23;1747:33;1744:2;;;1798:6;1790;1783:22;1744:2;1826:31;1847:9;1826:31;:::i;:::-;1816:41;;1876:40;1912:2;1901:9;1897:18;1876:40;:::i;:::-;1866:50;;1963:2;1952:9;1948:18;1935:32;1925:42;;2018:2;2007:9;2003:18;1990:32;2045:18;2037:6;2034:30;2031:2;;;2082:6;2074;2067:22;2031:2;2110:22;;2163:4;2155:13;;2151:27;-1:-1:-1;2141:2:1;;2197:6;2189;2182:22;2141:2;2225:75;2292:7;2287:2;2274:16;2269:2;2265;2261:11;2225:75;:::i;:::-;2215:85;;;1734:572;;;;;;;:::o;2311:268::-;;;2437:2;2425:9;2416:7;2412:23;2408:32;2405:2;;;2458:6;2450;2443:22;2405:2;2486:31;2507:9;2486:31;:::i;:::-;2476:41;;2536:37;2569:2;2558:9;2554:18;2536:37;:::i;2584:266::-;;;2713:2;2701:9;2692:7;2688:23;2684:32;2681:2;;;2734:6;2726;2719:22;2681:2;2762:31;2783:9;2762:31;:::i;:::-;2752:41;2840:2;2825:18;;;;2812:32;;-1:-1:-1;;;2671:179:1:o;2855:1010::-;;2970:2;3013;3001:9;2992:7;2988:23;2984:32;2981:2;;;3034:6;3026;3019:22;2981:2;3079:9;3066:23;3108:18;3149:2;3141:6;3138:14;3135:2;;;3170:6;3162;3155:22;3135:2;3213:6;3202:9;3198:22;3188:32;;3258:7;3251:4;3247:2;3243:13;3239:27;3229:2;;3285:6;3277;3270:22;3229:2;3326;3313:16;3348:2;3344;3341:10;3338:2;;;3354:18;;:::i;:::-;3401:2;3397;3393:11;3383:21;;3424:27;3447:2;3443;3439:11;3424:27;:::i;:::-;3485:15;;;3516:12;;;;3548:11;;;3578;;;3574:20;;3571:33;-1:-1:-1;3568:2:1;;;3622:6;3614;3607:22;3568:2;3649:6;3640:15;;3664:171;3678:2;3675:1;3672:9;3664:171;;;3735:25;3756:3;3735:25;:::i;:::-;3723:38;;3696:1;3689:9;;;;;3781:12;;;;3813;;3664:171;;;-1:-1:-1;3854:5:1;2950:915;-1:-1:-1;;;;;;;;2950:915:1:o;3870:192::-;;3979:2;3967:9;3958:7;3954:23;3950:32;3947:2;;;4000:6;3992;3985:22;3947:2;4028:28;4046:9;4028:28;:::i;4067:257::-;;4178:2;4166:9;4157:7;4153:23;4149:32;4146:2;;;4199:6;4191;4184:22;4146:2;4243:9;4230:23;4262:32;4288:5;4262:32;:::i;4329:261::-;;4451:2;4439:9;4430:7;4426:23;4422:32;4419:2;;;4472:6;4464;4457:22;4419:2;4509:9;4503:16;4528:32;4554:5;4528:32;:::i;4595:482::-;;4717:2;4705:9;4696:7;4692:23;4688:32;4685:2;;;4738:6;4730;4723:22;4685:2;4783:9;4770:23;4816:18;4808:6;4805:30;4802:2;;;4853:6;4845;4838:22;4802:2;4881:22;;4934:4;4926:13;;4922:27;-1:-1:-1;4912:2:1;;4968:6;4960;4953:22;4912:2;4996:75;5063:7;5058:2;5045:16;5040:2;5036;5032:11;4996:75;:::i;5082:190::-;;5194:2;5182:9;5173:7;5169:23;5165:32;5162:2;;;5215:6;5207;5200:22;5162:2;-1:-1:-1;5243:23:1;;5152:120;-1:-1:-1;5152:120:1:o;5277:289::-;;5387:2;5375:9;5366:7;5362:23;5358:32;5355:2;;;5408:6;5400;5393:22;5355:2;5452:9;5439:23;5502:4;5495:5;5491:16;5484:5;5481:27;5471:2;;5527:6;5519;5512:22;5571:259;;5652:5;5646:12;5679:6;5674:3;5667:19;5695:63;5751:6;5744:4;5739:3;5735:14;5728:4;5721:5;5717:16;5695:63;:::i;:::-;5812:2;5791:15;-1:-1:-1;;5787:29:1;5778:39;;;;5819:4;5774:50;;5622:208;-1:-1:-1;;5622:208:1:o;5835:1532::-;;6097:6;6091:13;6123:4;6136:51;6180:6;6175:3;6170:2;6162:6;6158:15;6136:51;:::i;:::-;6250:13;;6209:16;;;;6272:55;6250:13;6209:16;6294:15;;;6272:55;:::i;:::-;6418:13;;6349:20;;;6389:3;;6495:1;6480:17;;6516:1;6552:18;;;;6579:2;;6657:4;6647:8;6643:19;6631:31;;6579:2;6720;6710:8;6707:16;6687:18;6684:40;6681:2;;;-1:-1:-1;;;6747:33:1;;6803:4;6800:1;6793:15;6833:4;6754:3;6821:17;6681:2;6864:18;6891:110;;;;7015:1;7010:332;;;;6857:485;;6891:110;-1:-1:-1;;6926:24:1;;6912:39;;6971:20;;;;-1:-1:-1;6891:110:1;;7010:332;7046:39;7078:6;7046:39;:::i;:::-;7107:3;7123:169;7137:8;7134:1;7131:15;7123:169;;;7219:14;;7204:13;;;7197:37;7262:16;;;;7154:10;;7123:169;;;7127:3;;7323:8;7316:5;7312:20;7305:27;;6857:485;-1:-1:-1;7358:3:1;;6067:1300;-1:-1:-1;;;;;;;;;;;6067:1300:1:o;7372:205::-;7572:3;7563:14::o;7582:203::-;-1:-1:-1;;;;;7746:32:1;;;;7728:51;;7716:2;7701:18;;7683:102::o;7790:490::-;-1:-1:-1;;;;;8059:15:1;;;8041:34;;8111:15;;8106:2;8091:18;;8084:43;8158:2;8143:18;;8136:34;;;8206:3;8201:2;8186:18;;8179:31;;;7790:490;;8227:47;;8254:19;;8246:6;8227:47;:::i;:::-;8219:55;7993:287;-1:-1:-1;;;;;;7993:287:1:o;8285:635::-;8456:2;8508:21;;;8578:13;;8481:18;;;8600:22;;;8285:635;;8456:2;8679:15;;;;8653:2;8638:18;;;8285:635;8725:169;8739:6;8736:1;8733:13;8725:169;;;8800:13;;8788:26;;8869:15;;;;8834:12;;;;8761:1;8754:9;8725:169;;;-1:-1:-1;8911:3:1;;8436:484;-1:-1:-1;;;;;;8436:484:1:o;8925:187::-;9090:14;;9083:22;9065:41;;9053:2;9038:18;;9020:92::o;9117:221::-;;9266:2;9255:9;9248:21;9286:46;9328:2;9317:9;9313:18;9305:6;9286:46;:::i;9343:397::-;9545:2;9527:21;;;9584:2;9564:18;;;9557:30;9623:34;9618:2;9603:18;;9596:62;-1:-1:-1;;;9689:2:1;9674:18;;9667:31;9730:3;9715:19;;9517:223::o;9745:407::-;9947:2;9929:21;;;9986:2;9966:18;;;9959:30;10025:34;10020:2;10005:18;;9998:62;-1:-1:-1;;;10091:2:1;10076:18;;10069:41;10142:3;10127:19;;9919:233::o;10157:414::-;10359:2;10341:21;;;10398:2;10378:18;;;10371:30;10437:34;10432:2;10417:18;;10410:62;-1:-1:-1;;;10503:2:1;10488:18;;10481:48;10561:3;10546:19;;10331:240::o;10576:338::-;10778:2;10760:21;;;10817:2;10797:18;;;10790:30;-1:-1:-1;;;10851:2:1;10836:18;;10829:44;10905:2;10890:18;;10750:164::o;10919:402::-;11121:2;11103:21;;;11160:2;11140:18;;;11133:30;11199:34;11194:2;11179:18;;11172:62;-1:-1:-1;;;11265:2:1;11250:18;;11243:36;11311:3;11296:19;;11093:228::o;11326:354::-;11528:2;11510:21;;;11567:2;11547:18;;;11540:30;11606:32;11601:2;11586:18;;11579:60;11671:2;11656:18;;11500:180::o;11685:352::-;11887:2;11869:21;;;11926:2;11906:18;;;11899:30;11965;11960:2;11945:18;;11938:58;12028:2;12013:18;;11859:178::o;12042:356::-;12244:2;12226:21;;;12263:18;;;12256:30;12322:34;12317:2;12302:18;;12295:62;12389:2;12374:18;;12216:182::o;12403:400::-;12605:2;12587:21;;;12644:2;12624:18;;;12617:30;12683:34;12678:2;12663:18;;12656:62;-1:-1:-1;;;12749:2:1;12734:18;;12727:34;12793:3;12778:19;;12577:226::o;12808:349::-;13010:2;12992:21;;;13049:2;13029:18;;;13022:30;13088:27;13083:2;13068:18;;13061:55;13148:2;13133:18;;12982:175::o;13162:343::-;13364:2;13346:21;;;13403:2;13383:18;;;13376:30;-1:-1:-1;;;13437:2:1;13422:18;;13415:49;13496:2;13481:18;;13336:169::o;13510:351::-;13712:2;13694:21;;;13751:2;13731:18;;;13724:30;13790:29;13785:2;13770:18;;13763:57;13852:2;13837:18;;13684:177::o;13866:408::-;14068:2;14050:21;;;14107:2;14087:18;;;14080:30;14146:34;14141:2;14126:18;;14119:62;-1:-1:-1;;;14212:2:1;14197:18;;14190:42;14264:3;14249:19;;14040:234::o;14279:420::-;14481:2;14463:21;;;14520:2;14500:18;;;14493:30;14559:34;14554:2;14539:18;;14532:62;14630:26;14625:2;14610:18;;14603:54;14689:3;14674:19;;14453:246::o;14704:401::-;14906:2;14888:21;;;14945:2;14925:18;;;14918:30;14984:34;14979:2;14964:18;;14957:62;-1:-1:-1;;;15050:2:1;15035:18;;15028:35;15095:3;15080:19;;14878:227::o;15110:406::-;15312:2;15294:21;;;15351:2;15331:18;;;15324:30;15390:34;15385:2;15370:18;;15363:62;-1:-1:-1;;;15456:2:1;15441:18;;15434:40;15506:3;15491:19;;15284:232::o;15521:405::-;15723:2;15705:21;;;15762:2;15742:18;;;15735:30;15801:34;15796:2;15781:18;;15774:62;-1:-1:-1;;;15867:2:1;15852:18;;15845:39;15916:3;15901:19;;15695:231::o;15931:356::-;16133:2;16115:21;;;16152:18;;;16145:30;16211:34;16206:2;16191:18;;16184:62;16278:2;16263:18;;16105:182::o;16292:352::-;16494:2;16476:21;;;16533:2;16513:18;;;16506:30;16572;16567:2;16552:18;;16545:58;16635:2;16620:18;;16466:178::o;16649:408::-;16851:2;16833:21;;;16890:2;16870:18;;;16863:30;16929:34;16924:2;16909:18;;16902:62;-1:-1:-1;;;16995:2:1;16980:18;;16973:42;17047:3;17032:19;;16823:234::o;17062:356::-;17264:2;17246:21;;;17283:18;;;17276:30;17342:34;17337:2;17322:18;;17315:62;17409:2;17394:18;;17236:182::o;17423:405::-;17625:2;17607:21;;;17664:2;17644:18;;;17637:30;17703:34;17698:2;17683:18;;17676:62;-1:-1:-1;;;17769:2:1;17754:18;;17747:39;17818:3;17803:19;;17597:231::o;17833:411::-;18035:2;18017:21;;;18074:2;18054:18;;;18047:30;18113:34;18108:2;18093:18;;18086:62;-1:-1:-1;;;18179:2:1;18164:18;;18157:45;18234:3;18219:19;;18007:237::o;18249:397::-;18451:2;18433:21;;;18490:2;18470:18;;;18463:30;18529:34;18524:2;18509:18;;18502:62;-1:-1:-1;;;18595:2:1;18580:18;;18573:31;18636:3;18621:19;;18423:223::o;18651:399::-;18853:2;18835:21;;;18892:2;18872:18;;;18865:30;18931:34;18926:2;18911:18;;18904:62;-1:-1:-1;;;18997:2:1;18982:18;;18975:33;19040:3;19025:19;;18825:225::o;19055:344::-;19257:2;19239:21;;;19296:2;19276:18;;;19269:30;-1:-1:-1;;;19330:2:1;19315:18;;19308:50;19390:2;19375:18;;19229:170::o;19404:413::-;19606:2;19588:21;;;19645:2;19625:18;;;19618:30;19684:34;19679:2;19664:18;;19657:62;-1:-1:-1;;;19750:2:1;19735:18;;19728:47;19807:3;19792:19;;19578:239::o;19822:408::-;20024:2;20006:21;;;20063:2;20043:18;;;20036:30;20102:34;20097:2;20082:18;;20075:62;-1:-1:-1;;;20168:2:1;20153:18;;20146:42;20220:3;20205:19;;19996:234::o;20235:343::-;20437:2;20419:21;;;20476:2;20456:18;;;20449:30;-1:-1:-1;;;20510:2:1;20495:18;;20488:49;20569:2;20554:18;;20409:169::o;20583:343::-;20785:2;20767:21;;;20824:2;20804:18;;;20797:30;-1:-1:-1;;;20858:2:1;20843:18;;20836:49;20917:2;20902:18;;20757:169::o;20931:177::-;21077:25;;;21065:2;21050:18;;21032:76::o;21113:251::-;21183:2;21177:9;21213:17;;;21260:18;21245:34;;21281:22;;;21242:62;21239:2;;;21307:18;;:::i;:::-;21343:2;21336:22;21157:207;;-1:-1:-1;21157:207:1:o;21369:129::-;;21437:17;;;21487:4;21471:21;;;21427:71::o;21503:128::-;;21574:1;21570:6;21567:1;21564:13;21561:2;;;21580:18;;:::i;:::-;-1:-1:-1;21616:9:1;;21551:80::o;21636:120::-;;21702:1;21692:2;;21707:18;;:::i;:::-;-1:-1:-1;21741:9:1;;21682:74::o;21761:168::-;;21867:1;21863;21859:6;21855:14;21852:1;21849:21;21844:1;21837:9;21830:17;21826:45;21823:2;;;21874:18;;:::i;:::-;-1:-1:-1;21914:9:1;;21813:116::o;21934:125::-;;22002:1;21999;21996:8;21993:2;;;22007:18;;:::i;:::-;-1:-1:-1;22044:9:1;;21983:76::o;22064:258::-;22136:1;22146:113;22160:6;22157:1;22154:13;22146:113;;;22236:11;;;22230:18;22217:11;;;22210:39;22182:2;22175:10;22146:113;;;22277:6;22274:1;22271:13;22268:2;;;-1:-1:-1;;22312:1:1;22294:16;;22287:27;22117:205::o;22327:136::-;;22394:5;22384:2;;22403:18;;:::i;:::-;-1:-1:-1;;;22439:18:1;;22374:89::o;22468:380::-;22553:1;22543:12;;22600:1;22590:12;;;22611:2;;22665:4;22657:6;22653:17;22643:27;;22611:2;22718;22710:6;22707:14;22687:18;22684:38;22681:2;;;22764:10;22759:3;22755:20;22752:1;22745:31;22799:4;22796:1;22789:15;22827:4;22824:1;22817:15;22681:2;;22523:325;;;:::o;22853:135::-;;-1:-1:-1;;22913:17:1;;22910:2;;;22933:18;;:::i;:::-;-1:-1:-1;22980:1:1;22969:13;;22900:88::o;22993:112::-;;23051:1;23041:2;;23056:18;;:::i;:::-;-1:-1:-1;23090:9:1;;23031:74::o;23110:127::-;23171:10;23166:3;23162:20;23159:1;23152:31;23202:4;23199:1;23192:15;23226:4;23223:1;23216:15;23242:127;23303:10;23298:3;23294:20;23291:1;23284:31;23334:4;23331:1;23324:15;23358:4;23355:1;23348:15;23374:127;23435:10;23430:3;23426:20;23423:1;23416:31;23466:4;23463:1;23456:15;23490:4;23487:1;23480:15;23506:133;-1:-1:-1;;;;;;23582:32:1;;23572:43;;23562:2;;23629:1;23626;23619:12
Swarm Source
ipfs://7343bf5ca917e0e0924114678c9768293f954ee8d1afa7b6ff30aeef970f9f44
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.