ERC-721
Overview
Max Total Supply
205 IANZ
Holders
113
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
2 IANZLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
AlienzTest
Compiler Version
v0.8.7+commit.e28d00a7
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 AlienzTest is ERC721Enumerable, Ownable { using Strings for uint256; string baseURI; string public baseExtension = ".json"; uint256 public cost = 0.1 ether; uint256 public maxSupply = 10000; uint256 public maxMintAmount = 20; bool public paused = false; bool public revealed = true; string public notRevealedUri; address creator; constructor( string memory _name, string memory _symbol, string memory _initBaseURI, string memory _initNotRevealedUri ) ERC721(_name, _symbol) { setBaseURI(_initBaseURI); setNotRevealedURI(_initNotRevealedUri); creator=msg.sender; } // internal function _baseURI() internal view virtual override returns (string memory) { return baseURI; } // public function mint(uint256 _mintAmount) public payable { require(!paused); uint256 supply = totalSupply(); require(_mintAmount > 0); require(_mintAmount <= maxMintAmount); require(supply + _mintAmount <= maxSupply); if (msg.sender != owner()) { require(msg.value >= cost * _mintAmount, "insufficient funds"); } for (uint256 i = 1; i <= _mintAmount; i++) { _safeMint(msg.sender, supply + i); } } // public function mintedGift(uint256 _mintAmount, address[] memory recipients) public payable { uint256 supply = totalSupply(); require(!paused); require(_mintAmount > 0); require(_mintAmount <= maxMintAmount); require((supply + (_mintAmount*recipients.length)) <= maxSupply); if (msg.sender != owner()) { require(msg.value >= cost * _mintAmount); } for (uint256 i = 0; i < recipients.length; i++) { supply = totalSupply(); for (uint256 j = 1; j <= _mintAmount; j++) { _safeMint(recipients[i], supply + j); } } } 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 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 setBaseExtension(string memory _newBaseExtension) public onlyOwner { baseExtension = _newBaseExtension; } function pause(bool _state) public onlyOwner { paused = _state; } function withdraw() public payable onlyOwner { (bool success, ) = payable(msg.sender).call{value: address(this).balance}(""); require(success); } }
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":"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":[],"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":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"},{"internalType":"address[]","name":"recipients","type":"address[]"}],"name":"mintedGift","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":"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":"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
60c06040526005608081905264173539b7b760d91b60a09081526200002891600c919062000217565b5067016345785d8a0000600d55612710600e556014600f556010805461ffff19166101001790553480156200005c57600080fd5b5060405162002abc38038062002abc8339810160408190526200007f9162000374565b8351849084906200009890600090602085019062000217565b508051620000ae90600190602084019062000217565b505050620000cb620000c5620000fe60201b60201c565b62000102565b620000d68262000154565b620000e181620001bc565b5050601280546001600160a01b0319163317905550620004809050565b3390565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600a546001600160a01b03163314620001a35760405162461bcd60e51b8152602060048201819052602482015260008051602062002a9c83398151915260448201526064015b60405180910390fd5b8051620001b890600b90602084019062000217565b5050565b600a546001600160a01b03163314620002075760405162461bcd60e51b8152602060048201819052602482015260008051602062002a9c83398151915260448201526064016200019a565b8051620001b89060119060208401905b82805462000225906200042d565b90600052602060002090601f01602090048101928262000249576000855562000294565b82601f106200026457805160ff191683800117855562000294565b8280016001018555821562000294579182015b828111156200029457825182559160200191906001019062000277565b50620002a2929150620002a6565b5090565b5b80821115620002a25760008155600101620002a7565b600082601f830112620002cf57600080fd5b81516001600160401b0380821115620002ec57620002ec6200046a565b604051601f8301601f19908116603f011681019082821181831017156200031757620003176200046a565b816040528381526020925086838588010111156200033457600080fd5b600091505b8382101562000358578582018301518183018401529082019062000339565b838211156200036a5760008385830101525b9695505050505050565b600080600080608085870312156200038b57600080fd5b84516001600160401b0380821115620003a357600080fd5b620003b188838901620002bd565b95506020870151915080821115620003c857600080fd5b620003d688838901620002bd565b94506040870151915080821115620003ed57600080fd5b620003fb88838901620002bd565b935060608701519150808211156200041257600080fd5b506200042187828801620002bd565b91505092959194509250565b600181811c908216806200044257607f821691505b602082108114156200046457634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b61260c80620004906000396000f3fe60806040526004361061021a5760003560e01c806355f804b311610123578063a22cb465116100ab578063d5abeb011161006f578063d5abeb01146105da578063da3ef23f146105f0578063e985e9c514610610578063f2c4ce1e14610659578063f2fde38b1461067957600080fd5b8063a22cb46514610550578063a475b5dd14610570578063b88d4fde14610585578063c6682862146105a5578063c87b56dd146105ba57600080fd5b8063715018a6116100f2578063715018a6146104d55780637f00c7a6146104ea5780638da5cb5b1461050a57806395d89b4114610528578063a0712d681461053d57600080fd5b806355f804b31461045b5780635c975abb1461047b5780636352211e1461049557806370a08231146104b557600080fd5b806323b872dd116101a6578063438b630011610175578063438b6300146103bc57806344a0d68a146103e95780634ac0e1f9146104095780634f6ccce71461041c578063518302271461043c57600080fd5b806323b872dd146103545780632f745c59146103745780633ccfd60b1461039457806342842e0e1461039c57600080fd5b8063081c8c44116101ed578063081c8c44146102d0578063095ea7b3146102e557806313faede61461030557806318160ddd14610329578063239c70ae1461033e57600080fd5b806301ffc9a71461021f57806302329a291461025457806306fdde0314610276578063081812fc14610298575b600080fd5b34801561022b57600080fd5b5061023f61023a366004612071565b610699565b60405190151581526020015b60405180910390f35b34801561026057600080fd5b5061027461026f366004612056565b6106c4565b005b34801561028257600080fd5b5061028b61070a565b60405161024b919061233e565b3480156102a457600080fd5b506102b86102b33660046120f4565b61079c565b6040516001600160a01b03909116815260200161024b565b3480156102dc57600080fd5b5061028b610831565b3480156102f157600080fd5b5061027461030036600461202c565b6108bf565b34801561031157600080fd5b5061031b600d5481565b60405190815260200161024b565b34801561033557600080fd5b5060085461031b565b34801561034a57600080fd5b5061031b600f5481565b34801561036057600080fd5b5061027461036f366004611f4a565b6109d5565b34801561038057600080fd5b5061031b61038f36600461202c565b610a06565b610274610a9c565b3480156103a857600080fd5b506102746103b7366004611f4a565b610b1e565b3480156103c857600080fd5b506103dc6103d7366004611efc565b610b39565b60405161024b91906122fa565b3480156103f557600080fd5b506102746104043660046120f4565b610bdb565b61027461041736600461210d565b610c0a565b34801561042857600080fd5b5061031b6104373660046120f4565b610d08565b34801561044857600080fd5b5060105461023f90610100900460ff1681565b34801561046757600080fd5b506102746104763660046120ab565b610d9b565b34801561048757600080fd5b5060105461023f9060ff1681565b3480156104a157600080fd5b506102b86104b03660046120f4565b610ddc565b3480156104c157600080fd5b5061031b6104d0366004611efc565b610e53565b3480156104e157600080fd5b50610274610eda565b3480156104f657600080fd5b506102746105053660046120f4565b610f10565b34801561051657600080fd5b50600a546001600160a01b03166102b8565b34801561053457600080fd5b5061028b610f3f565b61027461054b3660046120f4565b610f4e565b34801561055c57600080fd5b5061027461056b366004612002565b61102d565b34801561057c57600080fd5b506102746110f2565b34801561059157600080fd5b506102746105a0366004611f86565b61112d565b3480156105b157600080fd5b5061028b61115f565b3480156105c657600080fd5b5061028b6105d53660046120f4565b61116c565b3480156105e657600080fd5b5061031b600e5481565b3480156105fc57600080fd5b5061027461060b3660046120ab565b6112eb565b34801561061c57600080fd5b5061023f61062b366004611f17565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561066557600080fd5b506102746106743660046120ab565b611328565b34801561068557600080fd5b50610274610694366004611efc565b611365565b60006001600160e01b0319821663780e9d6360e01b14806106be57506106be826113fd565b92915050565b600a546001600160a01b031633146106f75760405162461bcd60e51b81526004016106ee906123a3565b60405180910390fd5b6010805460ff1916911515919091179055565b606060008054610719906124e8565b80601f0160208091040260200160405190810160405280929190818152602001828054610745906124e8565b80156107925780601f1061076757610100808354040283529160200191610792565b820191906000526020600020905b81548152906001019060200180831161077557829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166108155760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016106ee565b506000908152600460205260409020546001600160a01b031690565b6011805461083e906124e8565b80601f016020809104026020016040519081016040528092919081815260200182805461086a906124e8565b80156108b75780601f1061088c576101008083540402835291602001916108b7565b820191906000526020600020905b81548152906001019060200180831161089a57829003601f168201915b505050505081565b60006108ca82610ddc565b9050806001600160a01b0316836001600160a01b031614156109385760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016106ee565b336001600160a01b03821614806109545750610954813361062b565b6109c65760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016106ee565b6109d0838361144d565b505050565b6109df33826114bb565b6109fb5760405162461bcd60e51b81526004016106ee906123d8565b6109d08383836115b2565b6000610a1183610e53565b8210610a735760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b60648201526084016106ee565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600a546001600160a01b03163314610ac65760405162461bcd60e51b81526004016106ee906123a3565b604051600090339047908381818185875af1925050503d8060008114610b08576040519150601f19603f3d011682016040523d82523d6000602084013e610b0d565b606091505b5050905080610b1b57600080fd5b50565b6109d08383836040518060200160405280600081525061112d565b60606000610b4683610e53565b905060008167ffffffffffffffff811115610b6357610b636125aa565b604051908082528060200260200182016040528015610b8c578160200160208202803683370190505b50905060005b82811015610bd357610ba48582610a06565b828281518110610bb657610bb6612594565b602090810291909101015280610bcb81612523565b915050610b92565b509392505050565b600a546001600160a01b03163314610c055760405162461bcd60e51b81526004016106ee906123a3565b600d55565b6000610c1560085490565b60105490915060ff1615610c2857600080fd5b60008311610c3557600080fd5b600f54831115610c4457600080fd5b600e548251610c539085612486565b610c5d908361245a565b1115610c6857600080fd5b600a546001600160a01b03163314610c945782600d54610c889190612486565b341015610c9457600080fd5b60005b8251811015610d0257600854915060015b848111610cef57610cdd848381518110610cc457610cc4612594565b60200260200101518285610cd8919061245a565b61175d565b80610ce781612523565b915050610ca8565b5080610cfa81612523565b915050610c97565b50505050565b6000610d1360085490565b8210610d765760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b60648201526084016106ee565b60088281548110610d8957610d89612594565b90600052602060002001549050919050565b600a546001600160a01b03163314610dc55760405162461bcd60e51b81526004016106ee906123a3565b8051610dd890600b906020840190611ddf565b5050565b6000818152600260205260408120546001600160a01b0316806106be5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016106ee565b60006001600160a01b038216610ebe5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016106ee565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b03163314610f045760405162461bcd60e51b81526004016106ee906123a3565b610f0e6000611777565b565b600a546001600160a01b03163314610f3a5760405162461bcd60e51b81526004016106ee906123a3565b600f55565b606060018054610719906124e8565b60105460ff1615610f5e57600080fd5b6000610f6960085490565b905060008211610f7857600080fd5b600f54821115610f8757600080fd5b600e54610f94838361245a565b1115610f9f57600080fd5b600a546001600160a01b031633146110035781600d54610fbf9190612486565b3410156110035760405162461bcd60e51b8152602060048201526012602482015271696e73756666696369656e742066756e647360701b60448201526064016106ee565b60015b8281116109d05761101b33610cd8838561245a565b8061102581612523565b915050611006565b6001600160a01b0382163314156110865760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016106ee565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600a546001600160a01b0316331461111c5760405162461bcd60e51b81526004016106ee906123a3565b6010805461ff001916610100179055565b61113733836114bb565b6111535760405162461bcd60e51b81526004016106ee906123d8565b610d02848484846117c9565b600c805461083e906124e8565b6000818152600260205260409020546060906001600160a01b03166111eb5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016106ee565b601054610100900460ff1661128c5760118054611207906124e8565b80601f0160208091040260200160405190810160405280929190818152602001828054611233906124e8565b80156112805780601f1061125557610100808354040283529160200191611280565b820191906000526020600020905b81548152906001019060200180831161126357829003601f168201915b50505050509050919050565b60006112966117fc565b905060008151116112b657604051806020016040528060008152506112e4565b806112c08461180b565b600c6040516020016112d4939291906121f9565b6040516020818303038152906040525b9392505050565b600a546001600160a01b031633146113155760405162461bcd60e51b81526004016106ee906123a3565b8051610dd890600c906020840190611ddf565b600a546001600160a01b031633146113525760405162461bcd60e51b81526004016106ee906123a3565b8051610dd8906011906020840190611ddf565b600a546001600160a01b0316331461138f5760405162461bcd60e51b81526004016106ee906123a3565b6001600160a01b0381166113f45760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016106ee565b610b1b81611777565b60006001600160e01b031982166380ac58cd60e01b148061142e57506001600160e01b03198216635b5e139f60e01b145b806106be57506301ffc9a760e01b6001600160e01b03198316146106be565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061148282610ddc565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166115345760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016106ee565b600061153f83610ddc565b9050806001600160a01b0316846001600160a01b0316148061157a5750836001600160a01b031661156f8461079c565b6001600160a01b0316145b806115aa57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b03166115c582610ddc565b6001600160a01b03161461162d5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b60648201526084016106ee565b6001600160a01b03821661168f5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016106ee565b61169a838383611909565b6116a560008261144d565b6001600160a01b03831660009081526003602052604081208054600192906116ce9084906124a5565b90915550506001600160a01b03821660009081526003602052604081208054600192906116fc90849061245a565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b610dd88282604051806020016040528060008152506119c1565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6117d48484846115b2565b6117e0848484846119f4565b610d025760405162461bcd60e51b81526004016106ee90612351565b6060600b8054610719906124e8565b60608161182f5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611859578061184381612523565b91506118529050600a83612472565b9150611833565b60008167ffffffffffffffff811115611874576118746125aa565b6040519080825280601f01601f19166020018201604052801561189e576020820181803683370190505b5090505b84156115aa576118b36001836124a5565b91506118c0600a8661253e565b6118cb90603061245a565b60f81b8183815181106118e0576118e0612594565b60200101906001600160f81b031916908160001a905350611902600a86612472565b94506118a2565b6001600160a01b0383166119645761195f81600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b611987565b816001600160a01b0316836001600160a01b031614611987576119878382611b01565b6001600160a01b03821661199e576109d081611b9e565b826001600160a01b0316826001600160a01b0316146109d0576109d08282611c4d565b6119cb8383611c91565b6119d860008484846119f4565b6109d05760405162461bcd60e51b81526004016106ee90612351565b60006001600160a01b0384163b15611af657604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611a389033908990889088906004016122bd565b602060405180830381600087803b158015611a5257600080fd5b505af1925050508015611a82575060408051601f3d908101601f19168201909252611a7f9181019061208e565b60015b611adc573d808015611ab0576040519150601f19603f3d011682016040523d82523d6000602084013e611ab5565b606091505b508051611ad45760405162461bcd60e51b81526004016106ee90612351565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506115aa565b506001949350505050565b60006001611b0e84610e53565b611b1891906124a5565b600083815260076020526040902054909150808214611b6b576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090611bb0906001906124a5565b60008381526009602052604081205460088054939450909284908110611bd857611bd8612594565b906000526020600020015490508060088381548110611bf957611bf9612594565b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480611c3157611c3161257e565b6001900381819060005260206000200160009055905550505050565b6000611c5883610e53565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b038216611ce75760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016106ee565b6000818152600260205260409020546001600160a01b031615611d4c5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016106ee565b611d5860008383611909565b6001600160a01b0382166000908152600360205260408120805460019290611d8190849061245a565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b828054611deb906124e8565b90600052602060002090601f016020900481019282611e0d5760008555611e53565b82601f10611e2657805160ff1916838001178555611e53565b82800160010185558215611e53579182015b82811115611e53578251825591602001919060010190611e38565b50611e5f929150611e63565b5090565b5b80821115611e5f5760008155600101611e64565b600067ffffffffffffffff831115611e9257611e926125aa565b611ea5601f8401601f1916602001612429565b9050828152838383011115611eb957600080fd5b828260208301376000602084830101529392505050565b80356001600160a01b0381168114611ee757600080fd5b919050565b80358015158114611ee757600080fd5b600060208284031215611f0e57600080fd5b6112e482611ed0565b60008060408385031215611f2a57600080fd5b611f3383611ed0565b9150611f4160208401611ed0565b90509250929050565b600080600060608486031215611f5f57600080fd5b611f6884611ed0565b9250611f7660208501611ed0565b9150604084013590509250925092565b60008060008060808587031215611f9c57600080fd5b611fa585611ed0565b9350611fb360208601611ed0565b925060408501359150606085013567ffffffffffffffff811115611fd657600080fd5b8501601f81018713611fe757600080fd5b611ff687823560208401611e78565b91505092959194509250565b6000806040838503121561201557600080fd5b61201e83611ed0565b9150611f4160208401611eec565b6000806040838503121561203f57600080fd5b61204883611ed0565b946020939093013593505050565b60006020828403121561206857600080fd5b6112e482611eec565b60006020828403121561208357600080fd5b81356112e4816125c0565b6000602082840312156120a057600080fd5b81516112e4816125c0565b6000602082840312156120bd57600080fd5b813567ffffffffffffffff8111156120d457600080fd5b8201601f810184136120e557600080fd5b6115aa84823560208401611e78565b60006020828403121561210657600080fd5b5035919050565b6000806040838503121561212057600080fd5b8235915060208084013567ffffffffffffffff8082111561214057600080fd5b818601915086601f83011261215457600080fd5b813581811115612166576121666125aa565b8060051b9150612177848301612429565b8181528481019084860184860187018b101561219257600080fd5b600095505b838610156121bc576121a881611ed0565b835260019590950194918601918601612197565b508096505050505050509250929050565b600081518084526121e58160208601602086016124bc565b601f01601f19169290920160200192915050565b60008451602061220c8285838a016124bc565b85519184019161221f8184848a016124bc565b8554920191600090600181811c908083168061223c57607f831692505b85831081141561225a57634e487b7160e01b85526022600452602485fd5b80801561226e576001811461227f576122ac565b60ff198516885283880195506122ac565b60008b81526020902060005b858110156122a45781548a82015290840190880161228b565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906122f0908301846121cd565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b8181101561233257835183529284019291840191600101612316565b50909695505050505050565b6020815260006112e460208301846121cd565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b604051601f8201601f1916810167ffffffffffffffff81118282101715612452576124526125aa565b604052919050565b6000821982111561246d5761246d612552565b500190565b60008261248157612481612568565b500490565b60008160001904831182151516156124a0576124a0612552565b500290565b6000828210156124b7576124b7612552565b500390565b60005b838110156124d75781810151838201526020016124bf565b83811115610d025750506000910152565b600181811c908216806124fc57607f821691505b6020821081141561251d57634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561253757612537612552565b5060010190565b60008261254d5761254d612568565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610b1b57600080fdfea2646970667358221220d376d7e1ff617ed9ae47d1f8737e3d9a20e417c3286af09dc5d68fcfbcd21a0e64736f6c634300080700334f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000160000000000000000000000000000000000000000000000000000000000000000e496c6c6567616c20416c69656e7a000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000449414e5a00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002e516d6646675472624d427161316f79506f54516646595856556876656d4b674c783668426b3559634d47455070690000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x60806040526004361061021a5760003560e01c806355f804b311610123578063a22cb465116100ab578063d5abeb011161006f578063d5abeb01146105da578063da3ef23f146105f0578063e985e9c514610610578063f2c4ce1e14610659578063f2fde38b1461067957600080fd5b8063a22cb46514610550578063a475b5dd14610570578063b88d4fde14610585578063c6682862146105a5578063c87b56dd146105ba57600080fd5b8063715018a6116100f2578063715018a6146104d55780637f00c7a6146104ea5780638da5cb5b1461050a57806395d89b4114610528578063a0712d681461053d57600080fd5b806355f804b31461045b5780635c975abb1461047b5780636352211e1461049557806370a08231146104b557600080fd5b806323b872dd116101a6578063438b630011610175578063438b6300146103bc57806344a0d68a146103e95780634ac0e1f9146104095780634f6ccce71461041c578063518302271461043c57600080fd5b806323b872dd146103545780632f745c59146103745780633ccfd60b1461039457806342842e0e1461039c57600080fd5b8063081c8c44116101ed578063081c8c44146102d0578063095ea7b3146102e557806313faede61461030557806318160ddd14610329578063239c70ae1461033e57600080fd5b806301ffc9a71461021f57806302329a291461025457806306fdde0314610276578063081812fc14610298575b600080fd5b34801561022b57600080fd5b5061023f61023a366004612071565b610699565b60405190151581526020015b60405180910390f35b34801561026057600080fd5b5061027461026f366004612056565b6106c4565b005b34801561028257600080fd5b5061028b61070a565b60405161024b919061233e565b3480156102a457600080fd5b506102b86102b33660046120f4565b61079c565b6040516001600160a01b03909116815260200161024b565b3480156102dc57600080fd5b5061028b610831565b3480156102f157600080fd5b5061027461030036600461202c565b6108bf565b34801561031157600080fd5b5061031b600d5481565b60405190815260200161024b565b34801561033557600080fd5b5060085461031b565b34801561034a57600080fd5b5061031b600f5481565b34801561036057600080fd5b5061027461036f366004611f4a565b6109d5565b34801561038057600080fd5b5061031b61038f36600461202c565b610a06565b610274610a9c565b3480156103a857600080fd5b506102746103b7366004611f4a565b610b1e565b3480156103c857600080fd5b506103dc6103d7366004611efc565b610b39565b60405161024b91906122fa565b3480156103f557600080fd5b506102746104043660046120f4565b610bdb565b61027461041736600461210d565b610c0a565b34801561042857600080fd5b5061031b6104373660046120f4565b610d08565b34801561044857600080fd5b5060105461023f90610100900460ff1681565b34801561046757600080fd5b506102746104763660046120ab565b610d9b565b34801561048757600080fd5b5060105461023f9060ff1681565b3480156104a157600080fd5b506102b86104b03660046120f4565b610ddc565b3480156104c157600080fd5b5061031b6104d0366004611efc565b610e53565b3480156104e157600080fd5b50610274610eda565b3480156104f657600080fd5b506102746105053660046120f4565b610f10565b34801561051657600080fd5b50600a546001600160a01b03166102b8565b34801561053457600080fd5b5061028b610f3f565b61027461054b3660046120f4565b610f4e565b34801561055c57600080fd5b5061027461056b366004612002565b61102d565b34801561057c57600080fd5b506102746110f2565b34801561059157600080fd5b506102746105a0366004611f86565b61112d565b3480156105b157600080fd5b5061028b61115f565b3480156105c657600080fd5b5061028b6105d53660046120f4565b61116c565b3480156105e657600080fd5b5061031b600e5481565b3480156105fc57600080fd5b5061027461060b3660046120ab565b6112eb565b34801561061c57600080fd5b5061023f61062b366004611f17565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561066557600080fd5b506102746106743660046120ab565b611328565b34801561068557600080fd5b50610274610694366004611efc565b611365565b60006001600160e01b0319821663780e9d6360e01b14806106be57506106be826113fd565b92915050565b600a546001600160a01b031633146106f75760405162461bcd60e51b81526004016106ee906123a3565b60405180910390fd5b6010805460ff1916911515919091179055565b606060008054610719906124e8565b80601f0160208091040260200160405190810160405280929190818152602001828054610745906124e8565b80156107925780601f1061076757610100808354040283529160200191610792565b820191906000526020600020905b81548152906001019060200180831161077557829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166108155760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016106ee565b506000908152600460205260409020546001600160a01b031690565b6011805461083e906124e8565b80601f016020809104026020016040519081016040528092919081815260200182805461086a906124e8565b80156108b75780601f1061088c576101008083540402835291602001916108b7565b820191906000526020600020905b81548152906001019060200180831161089a57829003601f168201915b505050505081565b60006108ca82610ddc565b9050806001600160a01b0316836001600160a01b031614156109385760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016106ee565b336001600160a01b03821614806109545750610954813361062b565b6109c65760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016106ee565b6109d0838361144d565b505050565b6109df33826114bb565b6109fb5760405162461bcd60e51b81526004016106ee906123d8565b6109d08383836115b2565b6000610a1183610e53565b8210610a735760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b60648201526084016106ee565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600a546001600160a01b03163314610ac65760405162461bcd60e51b81526004016106ee906123a3565b604051600090339047908381818185875af1925050503d8060008114610b08576040519150601f19603f3d011682016040523d82523d6000602084013e610b0d565b606091505b5050905080610b1b57600080fd5b50565b6109d08383836040518060200160405280600081525061112d565b60606000610b4683610e53565b905060008167ffffffffffffffff811115610b6357610b636125aa565b604051908082528060200260200182016040528015610b8c578160200160208202803683370190505b50905060005b82811015610bd357610ba48582610a06565b828281518110610bb657610bb6612594565b602090810291909101015280610bcb81612523565b915050610b92565b509392505050565b600a546001600160a01b03163314610c055760405162461bcd60e51b81526004016106ee906123a3565b600d55565b6000610c1560085490565b60105490915060ff1615610c2857600080fd5b60008311610c3557600080fd5b600f54831115610c4457600080fd5b600e548251610c539085612486565b610c5d908361245a565b1115610c6857600080fd5b600a546001600160a01b03163314610c945782600d54610c889190612486565b341015610c9457600080fd5b60005b8251811015610d0257600854915060015b848111610cef57610cdd848381518110610cc457610cc4612594565b60200260200101518285610cd8919061245a565b61175d565b80610ce781612523565b915050610ca8565b5080610cfa81612523565b915050610c97565b50505050565b6000610d1360085490565b8210610d765760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b60648201526084016106ee565b60088281548110610d8957610d89612594565b90600052602060002001549050919050565b600a546001600160a01b03163314610dc55760405162461bcd60e51b81526004016106ee906123a3565b8051610dd890600b906020840190611ddf565b5050565b6000818152600260205260408120546001600160a01b0316806106be5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016106ee565b60006001600160a01b038216610ebe5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016106ee565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b03163314610f045760405162461bcd60e51b81526004016106ee906123a3565b610f0e6000611777565b565b600a546001600160a01b03163314610f3a5760405162461bcd60e51b81526004016106ee906123a3565b600f55565b606060018054610719906124e8565b60105460ff1615610f5e57600080fd5b6000610f6960085490565b905060008211610f7857600080fd5b600f54821115610f8757600080fd5b600e54610f94838361245a565b1115610f9f57600080fd5b600a546001600160a01b031633146110035781600d54610fbf9190612486565b3410156110035760405162461bcd60e51b8152602060048201526012602482015271696e73756666696369656e742066756e647360701b60448201526064016106ee565b60015b8281116109d05761101b33610cd8838561245a565b8061102581612523565b915050611006565b6001600160a01b0382163314156110865760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016106ee565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600a546001600160a01b0316331461111c5760405162461bcd60e51b81526004016106ee906123a3565b6010805461ff001916610100179055565b61113733836114bb565b6111535760405162461bcd60e51b81526004016106ee906123d8565b610d02848484846117c9565b600c805461083e906124e8565b6000818152600260205260409020546060906001600160a01b03166111eb5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016106ee565b601054610100900460ff1661128c5760118054611207906124e8565b80601f0160208091040260200160405190810160405280929190818152602001828054611233906124e8565b80156112805780601f1061125557610100808354040283529160200191611280565b820191906000526020600020905b81548152906001019060200180831161126357829003601f168201915b50505050509050919050565b60006112966117fc565b905060008151116112b657604051806020016040528060008152506112e4565b806112c08461180b565b600c6040516020016112d4939291906121f9565b6040516020818303038152906040525b9392505050565b600a546001600160a01b031633146113155760405162461bcd60e51b81526004016106ee906123a3565b8051610dd890600c906020840190611ddf565b600a546001600160a01b031633146113525760405162461bcd60e51b81526004016106ee906123a3565b8051610dd8906011906020840190611ddf565b600a546001600160a01b0316331461138f5760405162461bcd60e51b81526004016106ee906123a3565b6001600160a01b0381166113f45760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016106ee565b610b1b81611777565b60006001600160e01b031982166380ac58cd60e01b148061142e57506001600160e01b03198216635b5e139f60e01b145b806106be57506301ffc9a760e01b6001600160e01b03198316146106be565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061148282610ddc565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166115345760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016106ee565b600061153f83610ddc565b9050806001600160a01b0316846001600160a01b0316148061157a5750836001600160a01b031661156f8461079c565b6001600160a01b0316145b806115aa57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b03166115c582610ddc565b6001600160a01b03161461162d5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b60648201526084016106ee565b6001600160a01b03821661168f5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016106ee565b61169a838383611909565b6116a560008261144d565b6001600160a01b03831660009081526003602052604081208054600192906116ce9084906124a5565b90915550506001600160a01b03821660009081526003602052604081208054600192906116fc90849061245a565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b610dd88282604051806020016040528060008152506119c1565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6117d48484846115b2565b6117e0848484846119f4565b610d025760405162461bcd60e51b81526004016106ee90612351565b6060600b8054610719906124e8565b60608161182f5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611859578061184381612523565b91506118529050600a83612472565b9150611833565b60008167ffffffffffffffff811115611874576118746125aa565b6040519080825280601f01601f19166020018201604052801561189e576020820181803683370190505b5090505b84156115aa576118b36001836124a5565b91506118c0600a8661253e565b6118cb90603061245a565b60f81b8183815181106118e0576118e0612594565b60200101906001600160f81b031916908160001a905350611902600a86612472565b94506118a2565b6001600160a01b0383166119645761195f81600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b611987565b816001600160a01b0316836001600160a01b031614611987576119878382611b01565b6001600160a01b03821661199e576109d081611b9e565b826001600160a01b0316826001600160a01b0316146109d0576109d08282611c4d565b6119cb8383611c91565b6119d860008484846119f4565b6109d05760405162461bcd60e51b81526004016106ee90612351565b60006001600160a01b0384163b15611af657604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611a389033908990889088906004016122bd565b602060405180830381600087803b158015611a5257600080fd5b505af1925050508015611a82575060408051601f3d908101601f19168201909252611a7f9181019061208e565b60015b611adc573d808015611ab0576040519150601f19603f3d011682016040523d82523d6000602084013e611ab5565b606091505b508051611ad45760405162461bcd60e51b81526004016106ee90612351565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506115aa565b506001949350505050565b60006001611b0e84610e53565b611b1891906124a5565b600083815260076020526040902054909150808214611b6b576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090611bb0906001906124a5565b60008381526009602052604081205460088054939450909284908110611bd857611bd8612594565b906000526020600020015490508060088381548110611bf957611bf9612594565b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480611c3157611c3161257e565b6001900381819060005260206000200160009055905550505050565b6000611c5883610e53565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b038216611ce75760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016106ee565b6000818152600260205260409020546001600160a01b031615611d4c5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016106ee565b611d5860008383611909565b6001600160a01b0382166000908152600360205260408120805460019290611d8190849061245a565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b828054611deb906124e8565b90600052602060002090601f016020900481019282611e0d5760008555611e53565b82601f10611e2657805160ff1916838001178555611e53565b82800160010185558215611e53579182015b82811115611e53578251825591602001919060010190611e38565b50611e5f929150611e63565b5090565b5b80821115611e5f5760008155600101611e64565b600067ffffffffffffffff831115611e9257611e926125aa565b611ea5601f8401601f1916602001612429565b9050828152838383011115611eb957600080fd5b828260208301376000602084830101529392505050565b80356001600160a01b0381168114611ee757600080fd5b919050565b80358015158114611ee757600080fd5b600060208284031215611f0e57600080fd5b6112e482611ed0565b60008060408385031215611f2a57600080fd5b611f3383611ed0565b9150611f4160208401611ed0565b90509250929050565b600080600060608486031215611f5f57600080fd5b611f6884611ed0565b9250611f7660208501611ed0565b9150604084013590509250925092565b60008060008060808587031215611f9c57600080fd5b611fa585611ed0565b9350611fb360208601611ed0565b925060408501359150606085013567ffffffffffffffff811115611fd657600080fd5b8501601f81018713611fe757600080fd5b611ff687823560208401611e78565b91505092959194509250565b6000806040838503121561201557600080fd5b61201e83611ed0565b9150611f4160208401611eec565b6000806040838503121561203f57600080fd5b61204883611ed0565b946020939093013593505050565b60006020828403121561206857600080fd5b6112e482611eec565b60006020828403121561208357600080fd5b81356112e4816125c0565b6000602082840312156120a057600080fd5b81516112e4816125c0565b6000602082840312156120bd57600080fd5b813567ffffffffffffffff8111156120d457600080fd5b8201601f810184136120e557600080fd5b6115aa84823560208401611e78565b60006020828403121561210657600080fd5b5035919050565b6000806040838503121561212057600080fd5b8235915060208084013567ffffffffffffffff8082111561214057600080fd5b818601915086601f83011261215457600080fd5b813581811115612166576121666125aa565b8060051b9150612177848301612429565b8181528481019084860184860187018b101561219257600080fd5b600095505b838610156121bc576121a881611ed0565b835260019590950194918601918601612197565b508096505050505050509250929050565b600081518084526121e58160208601602086016124bc565b601f01601f19169290920160200192915050565b60008451602061220c8285838a016124bc565b85519184019161221f8184848a016124bc565b8554920191600090600181811c908083168061223c57607f831692505b85831081141561225a57634e487b7160e01b85526022600452602485fd5b80801561226e576001811461227f576122ac565b60ff198516885283880195506122ac565b60008b81526020902060005b858110156122a45781548a82015290840190880161228b565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906122f0908301846121cd565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b8181101561233257835183529284019291840191600101612316565b50909695505050505050565b6020815260006112e460208301846121cd565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b604051601f8201601f1916810167ffffffffffffffff81118282101715612452576124526125aa565b604052919050565b6000821982111561246d5761246d612552565b500190565b60008261248157612481612568565b500490565b60008160001904831182151516156124a0576124a0612552565b500290565b6000828210156124b7576124b7612552565b500390565b60005b838110156124d75781810151838201526020016124bf565b83811115610d025750506000910152565b600181811c908216806124fc57607f821691505b6020821081141561251d57634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561253757612537612552565b5060010190565b60008261254d5761254d612568565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610b1b57600080fdfea2646970667358221220d376d7e1ff617ed9ae47d1f8737e3d9a20e417c3286af09dc5d68fcfbcd21a0e64736f6c63430008070033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000160000000000000000000000000000000000000000000000000000000000000000e496c6c6567616c20416c69656e7a000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000449414e5a00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002e516d6646675472624d427161316f79506f54516646595856556876656d4b674c783668426b3559634d47455070690000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : _name (string): Illegal Alienz
Arg [1] : _symbol (string): IANZ
Arg [2] : _initBaseURI (string): QmfFgTrbMBqa1oyPoTQfFYXVUhvemKgLx6hBk5YcMGEPpi
Arg [3] : _initNotRevealedUri (string):
-----Encoded View---------------
12 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000100
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000160
Arg [4] : 000000000000000000000000000000000000000000000000000000000000000e
Arg [5] : 496c6c6567616c20416c69656e7a000000000000000000000000000000000000
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [7] : 49414e5a00000000000000000000000000000000000000000000000000000000
Arg [8] : 000000000000000000000000000000000000000000000000000000000000002e
Arg [9] : 516d6646675472624d427161316f79506f54516646595856556876656d4b674c
Arg [10] : 783668426b3559634d4745507069000000000000000000000000000000000000
Arg [11] : 0000000000000000000000000000000000000000000000000000000000000000
Deployed Bytecode Sourcemap
43119:3642:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34666:224;;;;;;;;;;-1:-1:-1;34666:224:0;;;;;:::i;:::-;;:::i;:::-;;;8618:14:1;;8611:22;8593:41;;8581:2;8566:18;34666:224:0;;;;;;;;46520:73;;;;;;;;;;-1:-1:-1;46520:73:0;;;;;:::i;:::-;;:::i;:::-;;22558:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;24117:221::-;;;;;;;;;;-1:-1:-1;24117:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;7279:32:1;;;7261:51;;7249:2;7234:18;24117:221:0;7115:203:1;43440:28:0;;;;;;;;;;;;;:::i;23640:411::-;;;;;;;;;;-1:-1:-1;23640:411:0;;;;;:::i;:::-;;:::i;43266:31::-;;;;;;;;;;;;;;;;;;;16569:25:1;;;16557:2;16542:18;43266:31:0;16423:177:1;35306:113:0;;;;;;;;;;-1:-1:-1;35394:10:0;:17;35306:113;;43339:33;;;;;;;;;;;;;;;;25007:339;;;;;;;;;;-1:-1:-1;25007:339:0;;;;;:::i;:::-;;:::i;34974:256::-;;;;;;;;;;-1:-1:-1;34974:256:0;;;;;:::i;:::-;;:::i;46600:158::-;;;:::i;25417:185::-;;;;;;;;;;-1:-1:-1;25417:185:0;;;;;:::i;:::-;;:::i;45000:348::-;;;;;;;;;;-1:-1:-1;45000:348:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;45948:82::-;;;;;;;;;;-1:-1:-1;45948:82:0;;;;;:::i;:::-;;:::i;44401:593::-;;;;;;:::i;:::-;;:::i;35496:233::-;;;;;;;;;;-1:-1:-1;35496:233:0;;;;;:::i;:::-;;:::i;43408:27::-;;;;;;;;;;-1:-1:-1;43408:27:0;;;;;;;;;;;46288:98;;;;;;;;;;-1:-1:-1;46288:98:0;;;;;:::i;:::-;;:::i;43377:26::-;;;;;;;;;;-1:-1:-1;43377:26:0;;;;;;;;22252:239;;;;;;;;;;-1:-1:-1;22252:239:0;;;;;:::i;:::-;;:::i;21982:208::-;;;;;;;;;;-1:-1:-1;21982:208:0;;;;;:::i;:::-;;:::i;42455:94::-;;;;;;;;;;;;;:::i;46036:118::-;;;;;;;;;;-1:-1:-1;46036:118:0;;;;;:::i;:::-;;:::i;41804:87::-;;;;;;;;;;-1:-1:-1;41877:6:0;;-1:-1:-1;;;;;41877:6:0;41804:87;;22727:104;;;;;;;;;;;;;:::i;43921:457::-;;;;;;:::i;:::-;;:::i;24410:295::-;;;;;;;;;;-1:-1:-1;24410:295:0;;;;;:::i;:::-;;:::i;45873:67::-;;;;;;;;;;;;;:::i;25673:328::-;;;;;;;;;;-1:-1:-1;25673:328:0;;;;;:::i;:::-;;:::i;43224:37::-;;;;;;;;;;;;;:::i;45354:497::-;;;;;;;;;;-1:-1:-1;45354:497:0;;;;;:::i;:::-;;:::i;43302:32::-;;;;;;;;;;;;;;;;46392:122;;;;;;;;;;-1:-1:-1;46392:122:0;;;;;:::i;:::-;;:::i;24776:164::-;;;;;;;;;;-1:-1:-1;24776:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;24897:25:0;;;24873:4;24897:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;24776:164;46162:120;;;;;;;;;;-1:-1:-1;46162:120:0;;;;;:::i;:::-;;:::i;42704:192::-;;;;;;;;;;-1:-1:-1;42704:192:0;;;;;:::i;:::-;;:::i;34666:224::-;34768:4;-1:-1:-1;;;;;;34792:50:0;;-1:-1:-1;;;34792:50:0;;:90;;;34846:36;34870:11;34846:23;:36::i;:::-;34785:97;34666:224;-1:-1:-1;;34666:224:0:o;46520:73::-;41877:6;;-1:-1:-1;;;;;41877:6:0;20167:10;42024:23;42016:68;;;;-1:-1:-1;;;42016:68:0;;;;;;;:::i;:::-;;;;;;;;;46572:6:::1;:15:::0;;-1:-1:-1;;46572:15:0::1;::::0;::::1;;::::0;;;::::1;::::0;;46520:73::o;22558:100::-;22612:13;22645:5;22638:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22558:100;:::o;24117:221::-;24193:7;27600:16;;;:7;:16;;;;;;-1:-1:-1;;;;;27600:16:0;24213:73;;;;-1:-1:-1;;;24213:73:0;;13445:2:1;24213:73:0;;;13427:21:1;13484:2;13464:18;;;13457:30;13523:34;13503:18;;;13496:62;-1:-1:-1;;;13574:18:1;;;13567:42;13626:19;;24213:73:0;13243:408:1;24213:73:0;-1:-1:-1;24306:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;24306:24:0;;24117:221::o;43440:28::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;23640:411::-;23721:13;23737:23;23752:7;23737:14;:23::i;:::-;23721:39;;23785:5;-1:-1:-1;;;;;23779:11:0;:2;-1:-1:-1;;;;;23779:11:0;;;23771:57;;;;-1:-1:-1;;;23771:57:0;;15045:2:1;23771:57:0;;;15027:21:1;15084:2;15064:18;;;15057:30;15123:34;15103:18;;;15096:62;-1:-1:-1;;;15174:18:1;;;15167:31;15215:19;;23771:57:0;14843:397:1;23771:57:0;20167:10;-1:-1:-1;;;;;23863:21:0;;;;:62;;-1:-1:-1;23888:37:0;23905:5;20167:10;24776:164;:::i;23888:37::-;23841:168;;;;-1:-1:-1;;;23841:168:0;;11838:2:1;23841:168:0;;;11820:21:1;11877:2;11857:18;;;11850:30;11916:34;11896:18;;;11889:62;11987:26;11967:18;;;11960:54;12031:19;;23841:168:0;11636:420:1;23841:168:0;24022:21;24031:2;24035:7;24022:8;:21::i;:::-;23710:341;23640:411;;:::o;25007:339::-;25202:41;20167:10;25235:7;25202:18;:41::i;:::-;25194:103;;;;-1:-1:-1;;;25194:103:0;;;;;;;:::i;:::-;25310:28;25320:4;25326:2;25330:7;25310:9;:28::i;34974:256::-;35071:7;35107:23;35124:5;35107:16;:23::i;:::-;35099:5;:31;35091:87;;;;-1:-1:-1;;;35091:87:0;;9071:2:1;35091:87:0;;;9053:21:1;9110:2;9090:18;;;9083:30;9149:34;9129:18;;;9122:62;-1:-1:-1;;;9200:18:1;;;9193:41;9251:19;;35091:87:0;8869:407:1;35091:87:0;-1:-1:-1;;;;;;35196:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;34974:256::o;46600:158::-;41877:6;;-1:-1:-1;;;;;41877:6:0;20167:10;42024:23;42016:68;;;;-1:-1:-1;;;42016:68:0;;;;;;;:::i;:::-;46671:58:::1;::::0;46653:12:::1;::::0;46679:10:::1;::::0;46703:21:::1;::::0;46653:12;46671:58;46653:12;46671:58;46703:21;46679:10;46671:58:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46652:77;;;46744:7;46736:16;;;::::0;::::1;;46645:113;46600:158::o:0;25417:185::-;25555:39;25572:4;25578:2;25582:7;25555:39;;;;;;;;;;;;:16;:39::i;45000:348::-;45075:16;45103:23;45129:17;45139:6;45129:9;:17::i;:::-;45103:43;;45153:25;45195:15;45181:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;45181:30:0;;45153:58;;45223:9;45218:103;45238:15;45234:1;:19;45218:103;;;45283:30;45303:6;45311:1;45283:19;:30::i;:::-;45269:8;45278:1;45269:11;;;;;;;;:::i;:::-;;;;;;;;;;:44;45255:3;;;;:::i;:::-;;;;45218:103;;;-1:-1:-1;45334:8:0;45000:348;-1:-1:-1;;;45000:348:0:o;45948:82::-;41877:6;;-1:-1:-1;;;;;41877:6:0;20167:10;42024:23;42016:68;;;;-1:-1:-1;;;42016:68:0;;;;;;;:::i;:::-;46009:4:::1;:15:::0;45948:82::o;44401:593::-;44493:14;44510:13;35394:10;:17;;35306:113;44510:13;44539:6;;44493:30;;-1:-1:-1;44539:6:0;;44538:7;44530:16;;;;;;44575:1;44561:11;:15;44553:24;;;;;;44607:13;;44592:11;:28;;44584:37;;;;;;44682:9;;44659:17;;44647:29;;:11;:29;:::i;:::-;44637:40;;:6;:40;:::i;:::-;44636:55;;44628:64;;;;;;41877:6;;-1:-1:-1;;;;;41877:6:0;44703:10;:21;44699:84;;44763:11;44756:4;;:18;;;;:::i;:::-;44743:9;:31;;44735:40;;;;;;44796:9;44791:198;44815:10;:17;44811:1;:21;44791:198;;;35394:10;:17;44851:22;-1:-1:-1;44898:1:0;44881:98;44906:11;44901:1;:16;44881:98;;44934:36;44944:10;44955:1;44944:13;;;;;;;;:::i;:::-;;;;;;;44968:1;44959:6;:10;;;;:::i;:::-;44934:9;:36::i;:::-;44919:3;;;;:::i;:::-;;;;44881:98;;;-1:-1:-1;44834:3:0;;;;:::i;:::-;;;;44791:198;;;;44486:508;44401:593;;:::o;35496:233::-;35571:7;35607:30;35394:10;:17;;35306:113;35607:30;35599:5;:38;35591:95;;;;-1:-1:-1;;;35591:95:0;;16212:2:1;35591:95:0;;;16194:21:1;16251:2;16231:18;;;16224:30;16290:34;16270:18;;;16263:62;-1:-1:-1;;;16341:18:1;;;16334:42;16393:19;;35591:95:0;16010:408:1;35591:95:0;35704:10;35715:5;35704:17;;;;;;;;:::i;:::-;;;;;;;;;35697:24;;35496:233;;;:::o;46288:98::-;41877:6;;-1:-1:-1;;;;;41877:6:0;20167:10;42024:23;42016:68;;;;-1:-1:-1;;;42016:68:0;;;;;;;:::i;:::-;46359:21;;::::1;::::0;:7:::1;::::0;:21:::1;::::0;::::1;::::0;::::1;:::i;:::-;;46288:98:::0;:::o;22252:239::-;22324:7;22360:16;;;:7;:16;;;;;;-1:-1:-1;;;;;22360:16:0;22395:19;22387:73;;;;-1:-1:-1;;;22387:73:0;;12674:2:1;22387:73:0;;;12656:21:1;12713:2;12693:18;;;12686:30;12752:34;12732:18;;;12725:62;-1:-1:-1;;;12803:18:1;;;12796:39;12852:19;;22387:73:0;12472:405:1;21982:208:0;22054:7;-1:-1:-1;;;;;22082:19:0;;22074:74;;;;-1:-1:-1;;;22074:74:0;;12263:2:1;22074:74:0;;;12245:21:1;12302:2;12282:18;;;12275:30;12341:34;12321:18;;;12314:62;-1:-1:-1;;;12392:18:1;;;12385:40;12442:19;;22074:74:0;12061:406:1;22074:74:0;-1:-1:-1;;;;;;22166:16:0;;;;;:9;:16;;;;;;;21982:208::o;42455:94::-;41877:6;;-1:-1:-1;;;;;41877:6:0;20167:10;42024:23;42016:68;;;;-1:-1:-1;;;42016:68:0;;;;;;;:::i;:::-;42520:21:::1;42538:1;42520:9;:21::i;:::-;42455:94::o:0;46036:118::-;41877:6;;-1:-1:-1;;;;;41877:6:0;20167:10;42024:23;42016:68;;;;-1:-1:-1;;;42016:68:0;;;;;;;:::i;:::-;46115:13:::1;:33:::0;46036:118::o;22727:104::-;22783:13;22816:7;22809:14;;;;;:::i;43921:457::-;43987:6;;;;43986:7;43978:16;;;;;;44001:14;44018:13;35394:10;:17;;35306:113;44018:13;44001:30;;44060:1;44046:11;:15;44038:24;;;;;;44092:13;;44077:11;:28;;44069:37;;;;;;44145:9;;44121:20;44130:11;44121:6;:20;:::i;:::-;:33;;44113:42;;;;;;41877:6;;-1:-1:-1;;;;;41877:6:0;44168:10;:21;44164:108;;44230:11;44223:4;;:18;;;;:::i;:::-;44210:9;:31;;44202:62;;;;-1:-1:-1;;;44202:62:0;;15447:2:1;44202:62:0;;;15429:21:1;15486:2;15466:18;;;15459:30;-1:-1:-1;;;15505:18:1;;;15498:48;15563:18;;44202:62:0;15245:342:1;44202:62:0;44297:1;44280:93;44305:11;44300:1;:16;44280:93;;44332:33;44342:10;44354;44363:1;44354:6;:10;:::i;44332:33::-;44318:3;;;;:::i;:::-;;;;44280:93;;24410:295;-1:-1:-1;;;;;24513:24:0;;20167:10;24513:24;;24505:62;;;;-1:-1:-1;;;24505:62:0;;11071:2:1;24505:62:0;;;11053:21:1;11110:2;11090:18;;;11083:30;11149:27;11129:18;;;11122:55;11194:18;;24505:62:0;10869:349:1;24505:62:0;20167:10;24580:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;24580:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;24580:53:0;;;;;;;;;;24649:48;;8593:41:1;;;24580:42:0;;20167:10;24649:48;;8566:18:1;24649:48:0;;;;;;;24410:295;;:::o;45873:67::-;41877:6;;-1:-1:-1;;;;;41877:6:0;20167:10;42024:23;42016:68;;;;-1:-1:-1;;;42016:68:0;;;;;;;:::i;:::-;45919:8:::1;:15:::0;;-1:-1:-1;;45919:15:0::1;;;::::0;;45873:67::o;25673:328::-;25848:41;20167:10;25881:7;25848:18;:41::i;:::-;25840:103;;;;-1:-1:-1;;;25840:103:0;;;;;;;:::i;:::-;25954:39;25968:4;25974:2;25978:7;25987:5;25954:13;:39::i;43224:37::-;;;;;;;:::i;45354:497::-;27576:4;27600:16;;;:7;:16;;;;;;45452:13;;-1:-1:-1;;;;;27600:16:0;45477:97;;;;-1:-1:-1;;;45477:97:0;;14629:2:1;45477:97:0;;;14611:21:1;14668:2;14648:18;;;14641:30;14707:34;14687:18;;;14680:62;-1:-1:-1;;;14758:18:1;;;14751:45;14813:19;;45477:97:0;14427:411:1;45477:97:0;45590:8;;;;;;;45587:62;;45627:14;45620:21;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45354:497;;;:::o;45587:62::-;45657:28;45688:10;:8;:10::i;:::-;45657:41;;45743:1;45718:14;45712:28;:32;:133;;;;;;;;;;;;;;;;;45780:14;45796:18;:7;:16;:18::i;:::-;45816:13;45763:67;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;45712:133;45705:140;45354:497;-1:-1:-1;;;45354:497:0:o;46392:122::-;41877:6;;-1:-1:-1;;;;;41877:6:0;20167:10;42024:23;42016:68;;;;-1:-1:-1;;;42016:68:0;;;;;;;:::i;:::-;46475:33;;::::1;::::0;:13:::1;::::0;:33:::1;::::0;::::1;::::0;::::1;:::i;46162:120::-:0;41877:6;;-1:-1:-1;;;;;41877:6:0;20167:10;42024:23;42016:68;;;;-1:-1:-1;;;42016:68:0;;;;;;;:::i;:::-;46244:32;;::::1;::::0;:14:::1;::::0;:32:::1;::::0;::::1;::::0;::::1;:::i;42704:192::-:0;41877:6;;-1:-1:-1;;;;;41877:6:0;20167:10;42024:23;42016:68;;;;-1:-1:-1;;;42016:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;42793:22:0;::::1;42785:73;;;::::0;-1:-1:-1;;;42785:73:0;;9902:2:1;42785:73:0::1;::::0;::::1;9884:21:1::0;9941:2;9921:18;;;9914:30;9980:34;9960:18;;;9953:62;-1:-1:-1;;;10031:18:1;;;10024:36;10077:19;;42785:73:0::1;9700:402:1::0;42785:73:0::1;42869:19;42879:8;42869:9;:19::i;21613:305::-:0;21715:4;-1:-1:-1;;;;;;21752:40:0;;-1:-1:-1;;;21752:40:0;;:105;;-1:-1:-1;;;;;;;21809:48:0;;-1:-1:-1;;;21809:48:0;21752:105;:158;;;-1:-1:-1;;;;;;;;;;7553:40:0;;;21874:36;7444:157;31493:174;31568:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;31568:29:0;-1:-1:-1;;;;;31568:29:0;;;;;;;;:24;;31622:23;31568:24;31622:14;:23::i;:::-;-1:-1:-1;;;;;31613:46:0;;;;;;;;;;;31493:174;;:::o;27805:348::-;27898:4;27600:16;;;:7;:16;;;;;;-1:-1:-1;;;;;27600:16:0;27915:73;;;;-1:-1:-1;;;27915:73:0;;11425:2:1;27915:73:0;;;11407:21:1;11464:2;11444:18;;;11437:30;11503:34;11483:18;;;11476:62;-1:-1:-1;;;11554:18:1;;;11547:42;11606:19;;27915:73:0;11223:408:1;27915:73:0;27999:13;28015:23;28030:7;28015:14;:23::i;:::-;27999:39;;28068:5;-1:-1:-1;;;;;28057:16:0;:7;-1:-1:-1;;;;;28057:16:0;;:51;;;;28101:7;-1:-1:-1;;;;;28077:31:0;:20;28089:7;28077:11;:20::i;:::-;-1:-1:-1;;;;;28077:31:0;;28057:51;:87;;;-1:-1:-1;;;;;;24897:25:0;;;24873:4;24897:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;28112:32;28049:96;27805:348;-1:-1:-1;;;;27805:348:0:o;30797:578::-;30956:4;-1:-1:-1;;;;;30929:31:0;:23;30944:7;30929:14;:23::i;:::-;-1:-1:-1;;;;;30929:31:0;;30921:85;;;;-1:-1:-1;;;30921:85:0;;14219:2:1;30921:85:0;;;14201:21:1;14258:2;14238:18;;;14231:30;14297:34;14277:18;;;14270:62;-1:-1:-1;;;14348:18:1;;;14341:39;14397:19;;30921:85:0;14017:405:1;30921:85:0;-1:-1:-1;;;;;31025:16:0;;31017:65;;;;-1:-1:-1;;;31017:65:0;;10666:2:1;31017:65:0;;;10648:21:1;10705:2;10685:18;;;10678:30;10744:34;10724:18;;;10717:62;-1:-1:-1;;;10795:18:1;;;10788:34;10839:19;;31017:65:0;10464:400:1;31017:65:0;31095:39;31116:4;31122:2;31126:7;31095:20;:39::i;:::-;31199:29;31216:1;31220:7;31199:8;:29::i;:::-;-1:-1:-1;;;;;31241:15:0;;;;;;:9;:15;;;;;:20;;31260:1;;31241:15;:20;;31260:1;;31241:20;:::i;:::-;;;;-1:-1:-1;;;;;;;31272:13:0;;;;;;:9;:13;;;;;:18;;31289:1;;31272:13;:18;;31289:1;;31272:18;:::i;:::-;;;;-1:-1:-1;;31301:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;31301:21:0;-1:-1:-1;;;;;31301:21:0;;;;;;;;;31340:27;;31301:16;;31340:27;;;;;;;30797:578;;;:::o;28495:110::-;28571:26;28581:2;28585:7;28571:26;;;;;;;;;;;;:9;:26::i;42904:173::-;42979:6;;;-1:-1:-1;;;;;42996:17:0;;;-1:-1:-1;;;;;;42996:17:0;;;;;;;43029:40;;42979:6;;;42996:17;42979:6;;43029:40;;42960:16;;43029:40;42949:128;42904:173;:::o;26883:315::-;27040:28;27050:4;27056:2;27060:7;27040:9;:28::i;:::-;27087:48;27110:4;27116:2;27120:7;27129:5;27087:22;:48::i;:::-;27079:111;;;;-1:-1:-1;;;27079:111:0;;;;;;;:::i;43796:102::-;43856:13;43885:7;43878:14;;;;;:::i;7919:723::-;7975:13;8196:10;8192:53;;-1:-1:-1;;8223:10:0;;;;;;;;;;;;-1:-1:-1;;;8223:10:0;;;;;7919:723::o;8192:53::-;8270:5;8255:12;8311:78;8318:9;;8311:78;;8344:8;;;;:::i;:::-;;-1:-1:-1;8367:10:0;;-1:-1:-1;8375:2:0;8367:10;;:::i;:::-;;;8311:78;;;8399:19;8431:6;8421:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;8421:17:0;;8399:39;;8449:154;8456:10;;8449:154;;8483:11;8493:1;8483:11;;:::i;:::-;;-1:-1:-1;8552:10:0;8560:2;8552:5;:10;:::i;:::-;8539:24;;:2;:24;:::i;:::-;8526:39;;8509:6;8516;8509:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;8509:56:0;;;;;;;;-1:-1:-1;8580:11:0;8589:2;8580:11;;:::i;:::-;;;8449:154;;36342:589;-1:-1:-1;;;;;36548:18:0;;36544:187;;36583:40;36615:7;37758:10;:17;;37731:24;;;;:15;:24;;;;;:44;;;37786:24;;;;;;;;;;;;37654:164;36583:40;36544:187;;;36653:2;-1:-1:-1;;;;;36645:10:0;:4;-1:-1:-1;;;;;36645:10:0;;36641:90;;36672:47;36705:4;36711:7;36672:32;:47::i;:::-;-1:-1:-1;;;;;36745:16:0;;36741:183;;36778:45;36815:7;36778:36;:45::i;36741:183::-;36851:4;-1:-1:-1;;;;;36845:10:0;:2;-1:-1:-1;;;;;36845:10:0;;36841:83;;36872:40;36900:2;36904:7;36872:27;:40::i;28832:321::-;28962:18;28968:2;28972:7;28962:5;:18::i;:::-;29013:54;29044:1;29048:2;29052:7;29061:5;29013:22;:54::i;:::-;28991:154;;;;-1:-1:-1;;;28991:154:0;;;;;;;:::i;32232:799::-;32387:4;-1:-1:-1;;;;;32408:13:0;;10767:20;10815:8;32404:620;;32444:72;;-1:-1:-1;;;32444:72:0;;-1:-1:-1;;;;;32444:36:0;;;;;:72;;20167:10;;32495:4;;32501:7;;32510:5;;32444:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;32444:72:0;;;;;;;;-1:-1:-1;;32444:72:0;;;;;;;;;;;;:::i;:::-;;;32440:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;32686:13:0;;32682:272;;32729:60;;-1:-1:-1;;;32729:60:0;;;;;;;:::i;32682:272::-;32904:6;32898:13;32889:6;32885:2;32881:15;32874:38;32440:529;-1:-1:-1;;;;;;32567:51:0;-1:-1:-1;;;32567:51:0;;-1:-1:-1;32560:58:0;;32404:620;-1:-1:-1;33008:4:0;32232:799;;;;;;:::o;38445:988::-;38711:22;38761:1;38736:22;38753:4;38736:16;:22::i;:::-;:26;;;;:::i;:::-;38773:18;38794:26;;;:17;:26;;;;;;38711:51;;-1:-1:-1;38927:28:0;;;38923:328;;-1:-1:-1;;;;;38994:18:0;;38972:19;38994:18;;;:12;:18;;;;;;;;:34;;;;;;;;;39045:30;;;;;;:44;;;39162:30;;:17;:30;;;;;:43;;;38923:328;-1:-1:-1;39347:26:0;;;;:17;:26;;;;;;;;39340:33;;;-1:-1:-1;;;;;39391:18:0;;;;;:12;:18;;;;;:34;;;;;;;39384:41;38445:988::o;39728:1079::-;40006:10;:17;39981:22;;40006:21;;40026:1;;40006:21;:::i;:::-;40038:18;40059:24;;;:15;:24;;;;;;40432:10;:26;;39981:46;;-1:-1:-1;40059:24:0;;39981:46;;40432:26;;;;;;:::i;:::-;;;;;;;;;40410:48;;40496:11;40471:10;40482;40471:22;;;;;;;;:::i;:::-;;;;;;;;;;;;:36;;;;40576:28;;;:15;:28;;;;;;;:41;;;40748:24;;;;;40741:31;40783:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;39799:1008;;;39728:1079;:::o;37232:221::-;37317:14;37334:20;37351:2;37334:16;:20::i;:::-;-1:-1:-1;;;;;37365:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;37410:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;37232:221:0:o;29489:382::-;-1:-1:-1;;;;;29569:16:0;;29561:61;;;;-1:-1:-1;;;29561:61:0;;13084:2:1;29561:61:0;;;13066:21:1;;;13103:18;;;13096:30;13162:34;13142:18;;;13135:62;13214:18;;29561:61:0;12882:356:1;29561:61:0;27576:4;27600:16;;;:7;:16;;;;;;-1:-1:-1;;;;;27600:16:0;:30;29633:58;;;;-1:-1:-1;;;29633:58:0;;10309:2:1;29633:58:0;;;10291:21:1;10348:2;10328:18;;;10321:30;10387;10367:18;;;10360:58;10435:18;;29633:58:0;10107:352:1;29633:58:0;29704:45;29733:1;29737:2;29741:7;29704:20;:45::i;:::-;-1:-1:-1;;;;;29762:13:0;;;;;;:9;:13;;;;;:18;;29779:1;;29762:13;:18;;29779:1;;29762:18;:::i;:::-;;;;-1:-1:-1;;29791:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;29791:21:0;-1:-1:-1;;;;;29791:21:0;;;;;;;;29830:33;;29791:16;;;29830:33;;29791:16;;29830:33;29489:382;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:406:1;78:5;112:18;104:6;101:30;98:56;;;134:18;;:::i;:::-;172:57;217:2;196:15;;-1:-1:-1;;192:29:1;223:4;188:40;172:57;:::i;:::-;163:66;;252:6;245:5;238:21;292:3;283:6;278:3;274:16;271:25;268:45;;;309:1;306;299:12;268:45;358:6;353:3;346:4;339:5;335:16;322:43;412:1;405:4;396:6;389:5;385:18;381:29;374:40;14:406;;;;;:::o;425:173::-;493:20;;-1:-1:-1;;;;;542:31:1;;532:42;;522:70;;588:1;585;578:12;522:70;425:173;;;:::o;603:160::-;668:20;;724:13;;717:21;707:32;;697:60;;753:1;750;743:12;768:186;827:6;880:2;868:9;859:7;855:23;851:32;848:52;;;896:1;893;886:12;848:52;919:29;938:9;919:29;:::i;959:260::-;1027:6;1035;1088:2;1076:9;1067:7;1063:23;1059:32;1056:52;;;1104:1;1101;1094:12;1056:52;1127:29;1146:9;1127:29;:::i;:::-;1117:39;;1175:38;1209:2;1198:9;1194:18;1175:38;:::i;:::-;1165:48;;959:260;;;;;:::o;1224:328::-;1301:6;1309;1317;1370:2;1358:9;1349:7;1345:23;1341:32;1338:52;;;1386:1;1383;1376:12;1338:52;1409:29;1428:9;1409:29;:::i;:::-;1399:39;;1457:38;1491:2;1480:9;1476:18;1457:38;:::i;:::-;1447:48;;1542:2;1531:9;1527:18;1514:32;1504:42;;1224:328;;;;;:::o;1557:666::-;1652:6;1660;1668;1676;1729:3;1717:9;1708:7;1704:23;1700:33;1697:53;;;1746:1;1743;1736:12;1697:53;1769:29;1788:9;1769:29;:::i;:::-;1759:39;;1817:38;1851:2;1840:9;1836:18;1817:38;:::i;:::-;1807:48;;1902:2;1891:9;1887:18;1874:32;1864:42;;1957:2;1946:9;1942:18;1929:32;1984:18;1976:6;1973:30;1970:50;;;2016:1;2013;2006:12;1970:50;2039:22;;2092:4;2084:13;;2080:27;-1:-1:-1;2070:55:1;;2121:1;2118;2111:12;2070:55;2144:73;2209:7;2204:2;2191:16;2186:2;2182;2178:11;2144:73;:::i;:::-;2134:83;;;1557:666;;;;;;;:::o;2228:254::-;2293:6;2301;2354:2;2342:9;2333:7;2329:23;2325:32;2322:52;;;2370:1;2367;2360:12;2322:52;2393:29;2412:9;2393:29;:::i;:::-;2383:39;;2441:35;2472:2;2461:9;2457:18;2441:35;:::i;2487:254::-;2555:6;2563;2616:2;2604:9;2595:7;2591:23;2587:32;2584:52;;;2632:1;2629;2622:12;2584:52;2655:29;2674:9;2655:29;:::i;:::-;2645:39;2731:2;2716:18;;;;2703:32;;-1:-1:-1;;;2487:254:1:o;2746:180::-;2802:6;2855:2;2843:9;2834:7;2830:23;2826:32;2823:52;;;2871:1;2868;2861:12;2823:52;2894:26;2910:9;2894:26;:::i;2931:245::-;2989:6;3042:2;3030:9;3021:7;3017:23;3013:32;3010:52;;;3058:1;3055;3048:12;3010:52;3097:9;3084:23;3116:30;3140:5;3116:30;:::i;3181:249::-;3250:6;3303:2;3291:9;3282:7;3278:23;3274:32;3271:52;;;3319:1;3316;3309:12;3271:52;3351:9;3345:16;3370:30;3394:5;3370:30;:::i;3435:450::-;3504:6;3557:2;3545:9;3536:7;3532:23;3528:32;3525:52;;;3573:1;3570;3563:12;3525:52;3613:9;3600:23;3646:18;3638:6;3635:30;3632:50;;;3678:1;3675;3668:12;3632:50;3701:22;;3754:4;3746:13;;3742:27;-1:-1:-1;3732:55:1;;3783:1;3780;3773:12;3732:55;3806:73;3871:7;3866:2;3853:16;3848:2;3844;3840:11;3806:73;:::i;3890:180::-;3949:6;4002:2;3990:9;3981:7;3977:23;3973:32;3970:52;;;4018:1;4015;4008:12;3970:52;-1:-1:-1;4041:23:1;;3890:180;-1:-1:-1;3890:180:1:o;4075:1031::-;4168:6;4176;4229:2;4217:9;4208:7;4204:23;4200:32;4197:52;;;4245:1;4242;4235:12;4197:52;4281:9;4268:23;4258:33;;4310:2;4363;4352:9;4348:18;4335:32;4386:18;4427:2;4419:6;4416:14;4413:34;;;4443:1;4440;4433:12;4413:34;4481:6;4470:9;4466:22;4456:32;;4526:7;4519:4;4515:2;4511:13;4507:27;4497:55;;4548:1;4545;4538:12;4497:55;4584:2;4571:16;4606:2;4602;4599:10;4596:36;;;4612:18;;:::i;:::-;4658:2;4655:1;4651:10;4641:20;;4681:28;4705:2;4701;4697:11;4681:28;:::i;:::-;4743:15;;;4774:12;;;;4806:11;;;4836;;;4832:20;;4829:33;-1:-1:-1;4826:53:1;;;4875:1;4872;4865:12;4826:53;4897:1;4888:10;;4907:169;4921:2;4918:1;4915:9;4907:169;;;4978:23;4997:3;4978:23;:::i;:::-;4966:36;;4939:1;4932:9;;;;;5022:12;;;;5054;;4907:169;;;4911:3;5095:5;5085:15;;;;;;;;4075:1031;;;;;:::o;5111:257::-;5152:3;5190:5;5184:12;5217:6;5212:3;5205:19;5233:63;5289:6;5282:4;5277:3;5273:14;5266:4;5259:5;5255:16;5233:63;:::i;:::-;5350:2;5329:15;-1:-1:-1;;5325:29:1;5316:39;;;;5357:4;5312:50;;5111:257;-1:-1:-1;;5111:257:1:o;5373:1527::-;5597:3;5635:6;5629:13;5661:4;5674:51;5718:6;5713:3;5708:2;5700:6;5696:15;5674:51;:::i;:::-;5788:13;;5747:16;;;;5810:55;5788:13;5747:16;5832:15;;;5810:55;:::i;:::-;5954:13;;5887:20;;;5927:1;;6014;6036:18;;;;6089;;;;6116:93;;6194:4;6184:8;6180:19;6168:31;;6116:93;6257:2;6247:8;6244:16;6224:18;6221:40;6218:167;;;-1:-1:-1;;;6284:33:1;;6340:4;6337:1;6330:15;6370:4;6291:3;6358:17;6218:167;6401:18;6428:110;;;;6552:1;6547:328;;;;6394:481;;6428:110;-1:-1:-1;;6463:24:1;;6449:39;;6508:20;;;;-1:-1:-1;6428:110:1;;6547:328;16958:1;16951:14;;;16995:4;16982:18;;6642:1;6656:169;6670:8;6667:1;6664:15;6656:169;;;6752:14;;6737:13;;;6730:37;6795:16;;;;6687:10;;6656:169;;;6660:3;;6856:8;6849:5;6845:20;6838:27;;6394:481;-1:-1:-1;6891:3:1;;5373:1527;-1:-1:-1;;;;;;;;;;;5373:1527:1:o;7323:488::-;-1:-1:-1;;;;;7592:15:1;;;7574:34;;7644:15;;7639:2;7624:18;;7617:43;7691:2;7676:18;;7669:34;;;7739:3;7734:2;7719:18;;7712:31;;;7517:4;;7760:45;;7785:19;;7777:6;7760:45;:::i;:::-;7752:53;7323:488;-1:-1:-1;;;;;;7323:488:1:o;7816:632::-;7987:2;8039:21;;;8109:13;;8012:18;;;8131:22;;;7958:4;;7987:2;8210:15;;;;8184:2;8169:18;;;7958:4;8253:169;8267:6;8264:1;8261:13;8253:169;;;8328:13;;8316:26;;8397:15;;;;8362:12;;;;8289:1;8282:9;8253:169;;;-1:-1:-1;8439:3:1;;7816:632;-1:-1:-1;;;;;;7816:632:1:o;8645:219::-;8794:2;8783:9;8776:21;8757:4;8814:44;8854:2;8843:9;8839:18;8831:6;8814:44;:::i;9281:414::-;9483:2;9465:21;;;9522:2;9502:18;;;9495:30;9561:34;9556:2;9541:18;;9534:62;-1:-1:-1;;;9627:2:1;9612:18;;9605:48;9685:3;9670:19;;9281:414::o;13656:356::-;13858:2;13840:21;;;13877:18;;;13870:30;13936:34;13931:2;13916:18;;13909:62;14003:2;13988:18;;13656:356::o;15592:413::-;15794:2;15776:21;;;15833:2;15813:18;;;15806:30;15872:34;15867:2;15852:18;;15845:62;-1:-1:-1;;;15938:2:1;15923:18;;15916:47;15995:3;15980:19;;15592:413::o;16605:275::-;16676:2;16670:9;16741:2;16722:13;;-1:-1:-1;;16718:27:1;16706:40;;16776:18;16761:34;;16797:22;;;16758:62;16755:88;;;16823:18;;:::i;:::-;16859:2;16852:22;16605:275;;-1:-1:-1;16605:275:1:o;17011:128::-;17051:3;17082:1;17078:6;17075:1;17072:13;17069:39;;;17088:18;;:::i;:::-;-1:-1:-1;17124:9:1;;17011:128::o;17144:120::-;17184:1;17210;17200:35;;17215:18;;:::i;:::-;-1:-1:-1;17249:9:1;;17144:120::o;17269:168::-;17309:7;17375:1;17371;17367:6;17363:14;17360:1;17357:21;17352:1;17345:9;17338:17;17334:45;17331:71;;;17382:18;;:::i;:::-;-1:-1:-1;17422:9:1;;17269:168::o;17442:125::-;17482:4;17510:1;17507;17504:8;17501:34;;;17515:18;;:::i;:::-;-1:-1:-1;17552:9:1;;17442:125::o;17572:258::-;17644:1;17654:113;17668:6;17665:1;17662:13;17654:113;;;17744:11;;;17738:18;17725:11;;;17718:39;17690:2;17683:10;17654:113;;;17785:6;17782:1;17779:13;17776:48;;;-1:-1:-1;;17820:1:1;17802:16;;17795:27;17572:258::o;17835:380::-;17914:1;17910:12;;;;17957;;;17978:61;;18032:4;18024:6;18020:17;18010:27;;17978:61;18085:2;18077:6;18074:14;18054:18;18051:38;18048:161;;;18131:10;18126:3;18122:20;18119:1;18112:31;18166:4;18163:1;18156:15;18194:4;18191:1;18184:15;18048:161;;17835:380;;;:::o;18220:135::-;18259:3;-1:-1:-1;;18280:17:1;;18277:43;;;18300:18;;:::i;:::-;-1:-1:-1;18347:1:1;18336:13;;18220:135::o;18360:112::-;18392:1;18418;18408:35;;18423:18;;:::i;:::-;-1:-1:-1;18457:9:1;;18360:112::o;18477:127::-;18538:10;18533:3;18529:20;18526:1;18519:31;18569:4;18566:1;18559:15;18593:4;18590:1;18583:15;18609:127;18670:10;18665:3;18661:20;18658:1;18651:31;18701:4;18698:1;18691:15;18725:4;18722:1;18715:15;18741:127;18802:10;18797:3;18793:20;18790:1;18783:31;18833:4;18830:1;18823:15;18857:4;18854:1;18847:15;18873:127;18934:10;18929:3;18925:20;18922:1;18915:31;18965:4;18962:1;18955:15;18989:4;18986:1;18979:15;19005:127;19066:10;19061:3;19057:20;19054:1;19047:31;19097:4;19094:1;19087:15;19121:4;19118:1;19111:15;19137:131;-1:-1:-1;;;;;;19211:32:1;;19201:43;;19191:71;;19258:1;19255;19248:12
Swarm Source
ipfs://d376d7e1ff617ed9ae47d1f8737e3d9a20e417c3286af09dc5d68fcfbcd21a0e
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.