ERC-721
Overview
Max Total Supply
123 SKAM
Holders
79
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
1 SKAMLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Source Code Verified (Exact Match)
Contract Name:
Skammers
Compiler Version
v0.8.11+commit.d7f03943
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-09-09 */ // SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); } // OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721.sol) /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * 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; /** * @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 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 the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @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); } // OpenZeppelin Contracts v4.4.1 (utils/Strings.sol) /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } } // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/ERC721Enumerable.sol) // OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/ERC721.sol) // OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721Receiver.sol) /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721Receiver.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol) /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); } // OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol) /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== * * [IMPORTANT] * ==== * You shouldn't rely on `isContract` to protect against flash loan attacks! * * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract * constructor. * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize/address.code.length, which returns 0 // for contracts in construction, since the code is only stored at the end // of the constructor execution. return account.code.length > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } } /** * @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 overridden 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 { _setApprovalForAll(_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 || isApprovedForAll(owner, spender) || getApproved(tokenId) == 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); _afterTokenTransfer(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); _afterTokenTransfer(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 from incorrect owner"); 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); _afterTokenTransfer(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 Approve `operator` to operate on all of `owner` tokens * * Emits a {ApprovalForAll} event. */ function _setApprovalForAll( address owner, address operator, bool approved ) internal virtual { require(owner != operator, "ERC721: approve to caller"); _operatorApprovals[owner][operator] = approved; emit ApprovalForAll(owner, operator, approved); } /** * @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 {} /** * @dev Hook that is called after any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer( address from, address to, uint256 tokenId ) internal virtual {} } // OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/extensions/IERC721Enumerable.sol) /** * @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); /** * @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); } /** * @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(); } } // OpenZeppelin Contracts v4.4.1 (access/Ownable.sol) /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // OpenZeppelin Contracts (last updated v4.6.0) (utils/cryptography/MerkleProof.sol) /** * @dev These functions deal with verification of Merkle Trees proofs. * * The proofs can be generated using the JavaScript library * https://github.com/miguelmota/merkletreejs[merkletreejs]. * Note: the hashing algorithm should be keccak256 and pair sorting should be enabled. * * See `test/utils/cryptography/MerkleProof.test.js` for some examples. * * WARNING: You should avoid using leaf values that are 64 bytes long prior to * hashing, or use a hash function other than keccak256 for hashing leaves. * This is because the concatenation of a sorted pair of internal nodes in * the merkle tree could be reinterpreted as a leaf value. */ library MerkleProof { /** * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree * defined by `root`. For this, a `proof` must be provided, containing * sibling hashes on the branch from the leaf to the root of the tree. Each * pair of leaves and each pair of pre-images are assumed to be sorted. */ function verify( bytes32[] memory proof, bytes32 root, bytes32 leaf ) internal pure returns (bool) { return processProof(proof, leaf) == root; } /** * @dev Returns the rebuilt hash obtained by traversing a Merkle tree up * from `leaf` using `proof`. A `proof` is valid if and only if the rebuilt * hash matches the root of the tree. When processing the proof, the pairs * of leafs & pre-images are assumed to be sorted. * * _Available since v4.4._ */ function processProof(bytes32[] memory proof, bytes32 leaf) internal pure returns (bytes32) { bytes32 computedHash = leaf; for (uint256 i = 0; i < proof.length; i++) { bytes32 proofElement = proof[i]; if (computedHash <= proofElement) { // Hash(current computed hash + current element of the proof) computedHash = _efficientHash(computedHash, proofElement); } else { // Hash(current element of the proof + current computed hash) computedHash = _efficientHash(proofElement, computedHash); } } return computedHash; } function _efficientHash(bytes32 a, bytes32 b) private pure returns (bytes32 value) { assembly { mstore(0x00, a) mstore(0x20, b) value := keccak256(0x00, 0x40) } } } contract Skammers is ERC721Enumerable, Ownable { using Strings for string; uint public constant MAX_TOKENS = 1337; uint public PRESALE_LIMIT = 1337; uint public presaleTokensSold = 0; uint public constant NUMBER_RESERVED_TOKENS = 13; uint256 public PRICE = 69420000000000000; //0.06942 eth uint public perAddressLimit = 5; bool public saleIsActive = false; bool public preSaleIsActive = false; bool public whitelist = false; bool public revealed = true; uint public reservedTokensMinted = 0; string private _baseTokenURI; string public notRevealedUri; bytes32 root; mapping(address => uint) public addressMintedBalance; address payable private devguy = payable(0x2a07f1C285eeE2CEf31a1E689c445F732D17b7Ee); constructor() ERC721("Skammers", "SKAM") {} function mintToken(uint256 amount, bytes32[] memory proof) external payable { require(!whitelist || verify(proof), "Address not whitelisted"); require(msg.sender == tx.origin, "No transaction from smart contracts!"); require(preSaleIsActive || saleIsActive, "Sale must be active to mint"); require(amount > 0 && amount <= 5, "Max 5 NFTs per transaction"); require(!preSaleIsActive || presaleTokensSold + amount <= PRESALE_LIMIT, "Purchase would exceed max supply"); require(totalSupply() + amount <= MAX_TOKENS - (NUMBER_RESERVED_TOKENS - reservedTokensMinted), "Purchase would exceed max supply"); require(msg.value >= PRICE * amount, "Not enough ETH for transaction"); require(addressMintedBalance[msg.sender] + amount <= perAddressLimit, "Max NFT per address exceeded"); for (uint i = 0; i < amount; i++) { addressMintedBalance[msg.sender]++; _safeMint(msg.sender, totalSupply() + 1); } if (preSaleIsActive) presaleTokensSold++; } //case ethereum does something crazy function setPrice(uint256 newPrice) external onlyOwner { PRICE = newPrice; } function setPresaleLimit(uint newLimit) external onlyOwner { PRESALE_LIMIT = newLimit; } function setPerAddressLimit(uint newLimit) external onlyOwner { perAddressLimit = newLimit; } function setNotRevealedURI(string memory _notRevealedURI) public onlyOwner { notRevealedUri = _notRevealedURI; } function reveal() public onlyOwner { revealed = true; } function flipSaleState() external onlyOwner { saleIsActive = !saleIsActive; } function flipPreSaleState() external onlyOwner { preSaleIsActive = !preSaleIsActive; } function flipWhitelistingState() external onlyOwner { whitelist = !whitelist; } 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 mintReservedTokens(address to, uint256 amount) external onlyOwner { require(reservedTokensMinted + amount <= NUMBER_RESERVED_TOKENS, "This amount is more than max allowed"); for (uint i = 0; i < amount; i++) { _safeMint(to, totalSupply() + 1); reservedTokensMinted++; } } function withdraw() external { require(msg.sender == devguy || msg.sender == owner(), "Invalid sender"); (bool success, ) = devguy.call{value: address(this).balance / 100 * 25}(""); (bool success2, ) = owner().call{value: address(this).balance}(""); require(success, "Transfer 1 failed"); require(success2, "Transfer 2 failed"); } function setRoot(bytes32 _root) external onlyOwner { root = _root; } function verify(bytes32[] memory proof) internal view returns (bool) { bytes32 leaf = keccak256(abi.encodePacked(msg.sender)); return MerkleProof.verify(proof, root, leaf); } function _beforeTokenTransfer(address from, address to, uint256 tokenId) internal override(ERC721Enumerable) { super._beforeTokenTransfer(from, to, tokenId); } function supportsInterface(bytes4 interfaceId) public view override(ERC721Enumerable) returns (bool) { return super.supportsInterface(interfaceId); } //// //URI management part //// function _setBaseURI(string memory baseURI) internal virtual { _baseTokenURI = baseURI; } function _baseURI() internal view override returns (string memory) { return _baseTokenURI; } function setBaseURI(string memory baseURI) external onlyOwner { _setBaseURI(baseURI); } 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 _tokenURI = super.tokenURI(tokenId); return bytes(_tokenURI).length > 0 ? string(abi.encodePacked(_tokenURI, ".json")) : ""; } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_TOKENS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"NUMBER_RESERVED_TOKENS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PRESALE_LIMIT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"addressMintedBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"flipPreSaleState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"flipSaleState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"flipWhitelistingState","outputs":[],"stateMutability":"nonpayable","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":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mintReservedTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"}],"name":"mintToken","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":[],"name":"perAddressLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"preSaleIsActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"presaleTokensSold","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reservedTokensMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":[],"name":"saleIsActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_notRevealedURI","type":"string"}],"name":"setNotRevealedURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newLimit","type":"uint256"}],"name":"setPerAddressLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newLimit","type":"uint256"}],"name":"setPresaleLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newPrice","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_root","type":"bytes32"}],"name":"setRoot","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":"whitelist","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
6080604052610539600b556000600c81905566f6a11f484ec000600d556005600e55600f805463ffffffff19166301000000179055601055601580546001600160a01b031916732a07f1c285eee2cef31a1e689c445f732d17b7ee1790553480156200006a57600080fd5b506040805180820182526008815267536b616d6d65727360c01b602080830191825283518085019094526004845263534b414d60e01b908401528151919291620000b79160009162000146565b508051620000cd90600190602084019062000146565b505050620000ea620000e4620000f060201b60201c565b620000f4565b62000229565b3390565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200015490620001ec565b90600052602060002090601f016020900481019282620001785760008555620001c3565b82601f106200019357805160ff1916838001178555620001c3565b82800160010185558215620001c3579182015b82811115620001c3578251825591602001919060010190620001a6565b50620001d1929150620001d5565b5090565b5b80821115620001d15760008155600101620001d6565b600181811c908216806200020157607f821691505b602082108114156200022357634e487b7160e01b600052602260045260246000fd5b50919050565b612cda80620002396000396000f3fe60806040526004361061027d5760003560e01c806370a082311161014f578063ae7c122e116100c1578063eb8d24441161007a578063eb8d244414610766578063f032554914610780578063f2c4ce1e14610795578063f2fde38b146107b5578063f3e38821146107d5578063f47c84c5146107eb57600080fd5b8063ae7c122e14610695578063b22edfbc146106a8578063b88d4fde146106bd578063c87b56dd146106dd578063dab5f340146106fd578063e985e9c51461071d57600080fd5b806391b7f5ed1161011357806391b7f5ed146105f657806393e59dc11461061657806395d89b4114610636578063969a55ec1461064b578063a22cb46514610660578063a475b5dd1461068057600080fd5b806370a082311461056d578063715018a61461058d5780637fd255f1146105a25780638d859f3e146105c25780638da5cb5b146105d857600080fd5b80632f745c59116101f35780634f6ccce7116101ac5780634f6ccce7146104b657806351830227146104d657806355f804b3146104f757806357535c43146105175780636007eeed146105375780636352211e1461054d57600080fd5b80632f745c5914610409578063341c33041461042957806334918dfd1461043f5780633ccfd60b1461045457806342842e0e14610469578063438b63001461048957600080fd5b806318160ddd1161024557806318160ddd1461034857806318cae269146103675780631aee3f91146103945780631f0234d8146103aa57806323b872dd146103c957806329f767e8146103e957600080fd5b806301ffc9a71461028257806306fdde03146102b7578063081812fc146102d9578063081c8c4414610311578063095ea7b314610326575b600080fd5b34801561028e57600080fd5b506102a261029d3660046125a0565b610801565b60405190151581526020015b60405180910390f35b3480156102c357600080fd5b506102cc610812565b6040516102ae9190612615565b3480156102e557600080fd5b506102f96102f4366004612628565b6108a4565b6040516001600160a01b0390911681526020016102ae565b34801561031d57600080fd5b506102cc61093e565b34801561033257600080fd5b5061034661034136600461265d565b6109cc565b005b34801561035457600080fd5b506008545b6040519081526020016102ae565b34801561037357600080fd5b50610359610382366004612687565b60146020526000908152604090205481565b3480156103a057600080fd5b50610359600b5481565b3480156103b657600080fd5b50600f546102a290610100900460ff1681565b3480156103d557600080fd5b506103466103e43660046126a2565b610ae2565b3480156103f557600080fd5b50610346610404366004612628565b610b13565b34801561041557600080fd5b5061035961042436600461265d565b610b42565b34801561043557600080fd5b50610359600c5481565b34801561044b57600080fd5b50610346610bd8565b34801561046057600080fd5b50610346610c16565b34801561047557600080fd5b506103466104843660046126a2565b610dcd565b34801561049557600080fd5b506104a96104a4366004612687565b610de8565b6040516102ae91906126de565b3480156104c257600080fd5b506103596104d1366004612628565b610e8a565b3480156104e257600080fd5b50600f546102a2906301000000900460ff1681565b34801561050357600080fd5b506103466105123660046127c1565b610f1d565b34801561052357600080fd5b5061034661053236600461265d565b610f53565b34801561054357600080fd5b50610359600e5481565b34801561055957600080fd5b506102f9610568366004612628565b611037565b34801561057957600080fd5b50610359610588366004612687565b6110ae565b34801561059957600080fd5b50610346611135565b3480156105ae57600080fd5b506103466105bd366004612628565b61116b565b3480156105ce57600080fd5b50610359600d5481565b3480156105e457600080fd5b50600a546001600160a01b03166102f9565b34801561060257600080fd5b50610346610611366004612628565b61119a565b34801561062257600080fd5b50600f546102a29062010000900460ff1681565b34801561064257600080fd5b506102cc6111c9565b34801561065757600080fd5b506103466111d8565b34801561066c57600080fd5b5061034661067b36600461280a565b611221565b34801561068c57600080fd5b5061034661122c565b6103466106a3366004612846565b61126b565b3480156106b457600080fd5b50610359600d81565b3480156106c957600080fd5b506103466106d83660046128f8565b61161a565b3480156106e957600080fd5b506102cc6106f8366004612628565b611652565b34801561070957600080fd5b50610346610718366004612628565b61177f565b34801561072957600080fd5b506102a2610738366004612974565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561077257600080fd5b50600f546102a29060ff1681565b34801561078c57600080fd5b506103466117ae565b3480156107a157600080fd5b506103466107b03660046127c1565b6117f5565b3480156107c157600080fd5b506103466107d0366004612687565b611832565b3480156107e157600080fd5b5061035960105481565b3480156107f757600080fd5b5061035961053981565b600061080c826118ca565b92915050565b606060008054610821906129a7565b80601f016020809104026020016040519081016040528092919081815260200182805461084d906129a7565b801561089a5780601f1061086f5761010080835404028352916020019161089a565b820191906000526020600020905b81548152906001019060200180831161087d57829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166109225760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b6012805461094b906129a7565b80601f0160208091040260200160405190810160405280929190818152602001828054610977906129a7565b80156109c45780601f10610999576101008083540402835291602001916109c4565b820191906000526020600020905b8154815290600101906020018083116109a757829003601f168201915b505050505081565b60006109d782611037565b9050806001600160a01b0316836001600160a01b03161415610a455760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610919565b336001600160a01b0382161480610a615750610a618133610738565b610ad35760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610919565b610add83836118ef565b505050565b610aec338261195d565b610b085760405162461bcd60e51b8152600401610919906129e2565b610add838383611a54565b600a546001600160a01b03163314610b3d5760405162461bcd60e51b815260040161091990612a33565b600e55565b6000610b4d836110ae565b8210610baf5760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610919565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600a546001600160a01b03163314610c025760405162461bcd60e51b815260040161091990612a33565b600f805460ff19811660ff90911615179055565b6015546001600160a01b0316331480610c395750600a546001600160a01b031633145b610c765760405162461bcd60e51b815260206004820152600e60248201526d24b73b30b634b21039b2b73232b960911b6044820152606401610919565b6015546000906001600160a01b0316610c90606447612a94565b610c9b906019612aa8565b604051600081818185875af1925050503d8060008114610cd7576040519150601f19603f3d011682016040523d82523d6000602084013e610cdc565b606091505b505090506000610cf4600a546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d8060008114610d3e576040519150601f19603f3d011682016040523d82523d6000602084013e610d43565b606091505b5050905081610d885760405162461bcd60e51b8152602060048201526011602482015270151c985b9cd9995c880c4819985a5b1959607a1b6044820152606401610919565b80610dc95760405162461bcd60e51b8152602060048201526011602482015270151c985b9cd9995c880c8819985a5b1959607a1b6044820152606401610919565b5050565b610add8383836040518060200160405280600081525061161a565b60606000610df5836110ae565b905060008167ffffffffffffffff811115610e1257610e12612722565b604051908082528060200260200182016040528015610e3b578160200160208202803683370190505b50905060005b82811015610e8257610e538582610b42565b828281518110610e6557610e65612ac7565b602090810291909101015280610e7a81612add565b915050610e41565b509392505050565b6000610e9560085490565b8210610ef85760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610919565b60088281548110610f0b57610f0b612ac7565b90600052602060002001549050919050565b600a546001600160a01b03163314610f475760405162461bcd60e51b815260040161091990612a33565b610f5081611bfb565b50565b600a546001600160a01b03163314610f7d5760405162461bcd60e51b815260040161091990612a33565b600d81601054610f8d9190612af8565b1115610fe75760405162461bcd60e51b8152602060048201526024808201527f5468697320616d6f756e74206973206d6f7265207468616e206d617820616c6c6044820152631bddd95960e21b6064820152608401610919565b60005b81811015610add5761100f83610fff60085490565b61100a906001612af8565b611c0e565b6010805490600061101f83612add565b9190505550808061102f90612add565b915050610fea565b6000818152600260205260408120546001600160a01b03168061080c5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610919565b60006001600160a01b0382166111195760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610919565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b0316331461115f5760405162461bcd60e51b815260040161091990612a33565b6111696000611c28565b565b600a546001600160a01b031633146111955760405162461bcd60e51b815260040161091990612a33565b600b55565b600a546001600160a01b031633146111c45760405162461bcd60e51b815260040161091990612a33565b600d55565b606060018054610821906129a7565b600a546001600160a01b031633146112025760405162461bcd60e51b815260040161091990612a33565b600f805462ff0000198116620100009182900460ff1615909102179055565b610dc9338383611c7a565b600a546001600160a01b031633146112565760405162461bcd60e51b815260040161091990612a33565b600f805463ff00000019166301000000179055565b600f5462010000900460ff161580611287575061128781611d49565b6112d35760405162461bcd60e51b815260206004820152601760248201527f41646472657373206e6f742077686974656c69737465640000000000000000006044820152606401610919565b33321461132e5760405162461bcd60e51b8152602060048201526024808201527f4e6f207472616e73616374696f6e2066726f6d20736d61727420636f6e7472616044820152636374732160e01b6064820152608401610919565b600f54610100900460ff16806113465750600f5460ff165b6113925760405162461bcd60e51b815260206004820152601b60248201527f53616c65206d7573742062652061637469766520746f206d696e7400000000006044820152606401610919565b6000821180156113a3575060058211155b6113ef5760405162461bcd60e51b815260206004820152601a60248201527f4d61782035204e46547320706572207472616e73616374696f6e0000000000006044820152606401610919565b600f54610100900460ff1615806114155750600b5482600c546114129190612af8565b11155b6114615760405162461bcd60e51b815260206004820181905260248201527f507572636861736520776f756c6420657863656564206d617820737570706c796044820152606401610919565b60105461146f90600d612b10565b61147b90610539612b10565b8261148560085490565b61148f9190612af8565b11156114dd5760405162461bcd60e51b815260206004820181905260248201527f507572636861736520776f756c6420657863656564206d617820737570706c796044820152606401610919565b81600d546114eb9190612aa8565b34101561153a5760405162461bcd60e51b815260206004820152601e60248201527f4e6f7420656e6f7567682045544820666f72207472616e73616374696f6e00006044820152606401610919565b600e5433600090815260146020526040902054611558908490612af8565b11156115a65760405162461bcd60e51b815260206004820152601c60248201527f4d6178204e4654207065722061646472657373206578636565646564000000006044820152606401610919565b60005b828110156115f0573360009081526014602052604081208054916115cc83612add565b91905055506115de33610fff60085490565b806115e881612add565b9150506115a9565b50600f54610100900460ff1615610dc957600c805490600061161183612add565b91905055505050565b611624338361195d565b6116405760405162461bcd60e51b8152600401610919906129e2565b61164c84848484611d91565b50505050565b6000818152600260205260409020546060906001600160a01b03166116895760405162461bcd60e51b815260040161091990612b27565b600f546301000000900460ff1661172c57601280546116a7906129a7565b80601f01602080910402602001604051908101604052809291908181526020018280546116d3906129a7565b80156117205780601f106116f557610100808354040283529160200191611720565b820191906000526020600020905b81548152906001019060200180831161170357829003601f168201915b50505050509050919050565b600061173783611dc4565b905060008151116117575760405180602001604052806000815250611778565b806040516020016117689190612b76565b6040516020818303038152906040525b9392505050565b600a546001600160a01b031633146117a95760405162461bcd60e51b815260040161091990612a33565b601355565b600a546001600160a01b031633146117d85760405162461bcd60e51b815260040161091990612a33565b600f805461ff001981166101009182900460ff1615909102179055565b600a546001600160a01b0316331461181f5760405162461bcd60e51b815260040161091990612a33565b8051610dc99060129060208401906124f1565b600a546001600160a01b0316331461185c5760405162461bcd60e51b815260040161091990612a33565b6001600160a01b0381166118c15760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610919565b610f5081611c28565b60006001600160e01b0319821663780e9d6360e01b148061080c575061080c82611e40565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061192482611037565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166119d65760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610919565b60006119e183611037565b9050806001600160a01b0316846001600160a01b03161480611a2857506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b80611a4c5750836001600160a01b0316611a41846108a4565b6001600160a01b0316145b949350505050565b826001600160a01b0316611a6782611037565b6001600160a01b031614611acb5760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201526437bbb732b960d91b6064820152608401610919565b6001600160a01b038216611b2d5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610919565b611b38838383611e90565b611b436000826118ef565b6001600160a01b0383166000908152600360205260408120805460019290611b6c908490612b10565b90915550506001600160a01b0382166000908152600360205260408120805460019290611b9a908490612af8565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b8051610dc99060119060208401906124f1565b610dc9828260405180602001604052806000815250611e9b565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b03161415611cdc5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610919565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b6040516bffffffffffffffffffffffff193360601b16602082015260009081906034016040516020818303038152906040528051906020012090506117788360135483611ece565b611d9c848484611a54565b611da884848484611ee4565b61164c5760405162461bcd60e51b815260040161091990612b9f565b6000818152600260205260409020546060906001600160a01b0316611dfb5760405162461bcd60e51b815260040161091990612b27565b6000611e05611fe2565b90506000815111611e255760405180602001604052806000815250611778565b80611e2f84611ff1565b604051602001611768929190612bf1565b60006001600160e01b031982166380ac58cd60e01b1480611e7157506001600160e01b03198216635b5e139f60e01b145b8061080c57506301ffc9a760e01b6001600160e01b031983161461080c565b610add8383836120ef565b611ea583836121a7565b611eb26000848484611ee4565b610add5760405162461bcd60e51b815260040161091990612b9f565b600082611edb85846122f5565b14949350505050565b60006001600160a01b0384163b15611fd757604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611f28903390899088908890600401612c20565b6020604051808303816000875af1925050508015611f63575060408051601f3d908101601f19168201909252611f6091810190612c5d565b60015b611fbd573d808015611f91576040519150601f19603f3d011682016040523d82523d6000602084013e611f96565b606091505b508051611fb55760405162461bcd60e51b815260040161091990612b9f565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611a4c565b506001949350505050565b606060118054610821906129a7565b6060816120155750506040805180820190915260018152600360fc1b602082015290565b8160005b811561203f578061202981612add565b91506120389050600a83612a94565b9150612019565b60008167ffffffffffffffff81111561205a5761205a612722565b6040519080825280601f01601f191660200182016040528015612084576020820181803683370190505b5090505b8415611a4c57612099600183612b10565b91506120a6600a86612c7a565b6120b1906030612af8565b60f81b8183815181106120c6576120c6612ac7565b60200101906001600160f81b031916908160001a9053506120e8600a86612a94565b9450612088565b6001600160a01b03831661214a5761214581600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b61216d565b816001600160a01b0316836001600160a01b03161461216d5761216d8382612361565b6001600160a01b03821661218457610add816123fe565b826001600160a01b0316826001600160a01b031614610add57610add82826124ad565b6001600160a01b0382166121fd5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610919565b6000818152600260205260409020546001600160a01b0316156122625760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610919565b61226e60008383611e90565b6001600160a01b0382166000908152600360205260408120805460019290612297908490612af8565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b600081815b8451811015610e8257600085828151811061231757612317612ac7565b6020026020010151905080831161233d576000838152602082905260409020925061234e565b600081815260208490526040902092505b508061235981612add565b9150506122fa565b6000600161236e846110ae565b6123789190612b10565b6000838152600760205260409020549091508082146123cb576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b60085460009061241090600190612b10565b6000838152600960205260408120546008805493945090928490811061243857612438612ac7565b90600052602060002001549050806008838154811061245957612459612ac7565b600091825260208083209091019290925582815260099091526040808220849055858252812055600880548061249157612491612c8e565b6001900381819060005260206000200160009055905550505050565b60006124b8836110ae565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b8280546124fd906129a7565b90600052602060002090601f01602090048101928261251f5760008555612565565b82601f1061253857805160ff1916838001178555612565565b82800160010185558215612565579182015b8281111561256557825182559160200191906001019061254a565b50612571929150612575565b5090565b5b808211156125715760008155600101612576565b6001600160e01b031981168114610f5057600080fd5b6000602082840312156125b257600080fd5b81356117788161258a565b60005b838110156125d85781810151838201526020016125c0565b8381111561164c5750506000910152565b600081518084526126018160208601602086016125bd565b601f01601f19169290920160200192915050565b60208152600061177860208301846125e9565b60006020828403121561263a57600080fd5b5035919050565b80356001600160a01b038116811461265857600080fd5b919050565b6000806040838503121561267057600080fd5b61267983612641565b946020939093013593505050565b60006020828403121561269957600080fd5b61177882612641565b6000806000606084860312156126b757600080fd5b6126c084612641565b92506126ce60208501612641565b9150604084013590509250925092565b6020808252825182820181905260009190848201906040850190845b81811015612716578351835292840192918401916001016126fa565b50909695505050505050565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff8111828210171561276157612761612722565b604052919050565b600067ffffffffffffffff83111561278357612783612722565b612796601f8401601f1916602001612738565b90508281528383830111156127aa57600080fd5b828260208301376000602084830101529392505050565b6000602082840312156127d357600080fd5b813567ffffffffffffffff8111156127ea57600080fd5b8201601f810184136127fb57600080fd5b611a4c84823560208401612769565b6000806040838503121561281d57600080fd5b61282683612641565b91506020830135801515811461283b57600080fd5b809150509250929050565b6000806040838503121561285957600080fd5b8235915060208084013567ffffffffffffffff8082111561287957600080fd5b818601915086601f83011261288d57600080fd5b81358181111561289f5761289f612722565b8060051b91506128b0848301612738565b81815291830184019184810190898411156128ca57600080fd5b938501935b838510156128e8578435825293850193908501906128cf565b8096505050505050509250929050565b6000806000806080858703121561290e57600080fd5b61291785612641565b935061292560208601612641565b925060408501359150606085013567ffffffffffffffff81111561294857600080fd5b8501601f8101871361295957600080fd5b61296887823560208401612769565b91505092959194509250565b6000806040838503121561298757600080fd5b61299083612641565b915061299e60208401612641565b90509250929050565b600181811c908216806129bb57607f821691505b602082108114156129dc57634e487b7160e01b600052602260045260246000fd5b50919050565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b600082612aa357612aa3612a68565b500490565b6000816000190483118215151615612ac257612ac2612a7e565b500290565b634e487b7160e01b600052603260045260246000fd5b6000600019821415612af157612af1612a7e565b5060010190565b60008219821115612b0b57612b0b612a7e565b500190565b600082821015612b2257612b22612a7e565b500390565b6020808252602f908201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60408201526e3732bc34b9ba32b73a103a37b5b2b760891b606082015260800190565b60008251612b888184602087016125bd565b64173539b7b760d91b920191825250600501919050565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60008351612c038184602088016125bd565b835190830190612c178183602088016125bd565b01949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612c53908301846125e9565b9695505050505050565b600060208284031215612c6f57600080fd5b81516117788161258a565b600082612c8957612c89612a68565b500690565b634e487b7160e01b600052603160045260246000fdfea2646970667358221220fdb2351d7e520415ea354e16ba52955a4f26adfd50e95fa2892d90a37ca04bc664736f6c634300080b0033
Deployed Bytecode
0x60806040526004361061027d5760003560e01c806370a082311161014f578063ae7c122e116100c1578063eb8d24441161007a578063eb8d244414610766578063f032554914610780578063f2c4ce1e14610795578063f2fde38b146107b5578063f3e38821146107d5578063f47c84c5146107eb57600080fd5b8063ae7c122e14610695578063b22edfbc146106a8578063b88d4fde146106bd578063c87b56dd146106dd578063dab5f340146106fd578063e985e9c51461071d57600080fd5b806391b7f5ed1161011357806391b7f5ed146105f657806393e59dc11461061657806395d89b4114610636578063969a55ec1461064b578063a22cb46514610660578063a475b5dd1461068057600080fd5b806370a082311461056d578063715018a61461058d5780637fd255f1146105a25780638d859f3e146105c25780638da5cb5b146105d857600080fd5b80632f745c59116101f35780634f6ccce7116101ac5780634f6ccce7146104b657806351830227146104d657806355f804b3146104f757806357535c43146105175780636007eeed146105375780636352211e1461054d57600080fd5b80632f745c5914610409578063341c33041461042957806334918dfd1461043f5780633ccfd60b1461045457806342842e0e14610469578063438b63001461048957600080fd5b806318160ddd1161024557806318160ddd1461034857806318cae269146103675780631aee3f91146103945780631f0234d8146103aa57806323b872dd146103c957806329f767e8146103e957600080fd5b806301ffc9a71461028257806306fdde03146102b7578063081812fc146102d9578063081c8c4414610311578063095ea7b314610326575b600080fd5b34801561028e57600080fd5b506102a261029d3660046125a0565b610801565b60405190151581526020015b60405180910390f35b3480156102c357600080fd5b506102cc610812565b6040516102ae9190612615565b3480156102e557600080fd5b506102f96102f4366004612628565b6108a4565b6040516001600160a01b0390911681526020016102ae565b34801561031d57600080fd5b506102cc61093e565b34801561033257600080fd5b5061034661034136600461265d565b6109cc565b005b34801561035457600080fd5b506008545b6040519081526020016102ae565b34801561037357600080fd5b50610359610382366004612687565b60146020526000908152604090205481565b3480156103a057600080fd5b50610359600b5481565b3480156103b657600080fd5b50600f546102a290610100900460ff1681565b3480156103d557600080fd5b506103466103e43660046126a2565b610ae2565b3480156103f557600080fd5b50610346610404366004612628565b610b13565b34801561041557600080fd5b5061035961042436600461265d565b610b42565b34801561043557600080fd5b50610359600c5481565b34801561044b57600080fd5b50610346610bd8565b34801561046057600080fd5b50610346610c16565b34801561047557600080fd5b506103466104843660046126a2565b610dcd565b34801561049557600080fd5b506104a96104a4366004612687565b610de8565b6040516102ae91906126de565b3480156104c257600080fd5b506103596104d1366004612628565b610e8a565b3480156104e257600080fd5b50600f546102a2906301000000900460ff1681565b34801561050357600080fd5b506103466105123660046127c1565b610f1d565b34801561052357600080fd5b5061034661053236600461265d565b610f53565b34801561054357600080fd5b50610359600e5481565b34801561055957600080fd5b506102f9610568366004612628565b611037565b34801561057957600080fd5b50610359610588366004612687565b6110ae565b34801561059957600080fd5b50610346611135565b3480156105ae57600080fd5b506103466105bd366004612628565b61116b565b3480156105ce57600080fd5b50610359600d5481565b3480156105e457600080fd5b50600a546001600160a01b03166102f9565b34801561060257600080fd5b50610346610611366004612628565b61119a565b34801561062257600080fd5b50600f546102a29062010000900460ff1681565b34801561064257600080fd5b506102cc6111c9565b34801561065757600080fd5b506103466111d8565b34801561066c57600080fd5b5061034661067b36600461280a565b611221565b34801561068c57600080fd5b5061034661122c565b6103466106a3366004612846565b61126b565b3480156106b457600080fd5b50610359600d81565b3480156106c957600080fd5b506103466106d83660046128f8565b61161a565b3480156106e957600080fd5b506102cc6106f8366004612628565b611652565b34801561070957600080fd5b50610346610718366004612628565b61177f565b34801561072957600080fd5b506102a2610738366004612974565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561077257600080fd5b50600f546102a29060ff1681565b34801561078c57600080fd5b506103466117ae565b3480156107a157600080fd5b506103466107b03660046127c1565b6117f5565b3480156107c157600080fd5b506103466107d0366004612687565b611832565b3480156107e157600080fd5b5061035960105481565b3480156107f757600080fd5b5061035961053981565b600061080c826118ca565b92915050565b606060008054610821906129a7565b80601f016020809104026020016040519081016040528092919081815260200182805461084d906129a7565b801561089a5780601f1061086f5761010080835404028352916020019161089a565b820191906000526020600020905b81548152906001019060200180831161087d57829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166109225760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b6012805461094b906129a7565b80601f0160208091040260200160405190810160405280929190818152602001828054610977906129a7565b80156109c45780601f10610999576101008083540402835291602001916109c4565b820191906000526020600020905b8154815290600101906020018083116109a757829003601f168201915b505050505081565b60006109d782611037565b9050806001600160a01b0316836001600160a01b03161415610a455760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610919565b336001600160a01b0382161480610a615750610a618133610738565b610ad35760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610919565b610add83836118ef565b505050565b610aec338261195d565b610b085760405162461bcd60e51b8152600401610919906129e2565b610add838383611a54565b600a546001600160a01b03163314610b3d5760405162461bcd60e51b815260040161091990612a33565b600e55565b6000610b4d836110ae565b8210610baf5760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610919565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600a546001600160a01b03163314610c025760405162461bcd60e51b815260040161091990612a33565b600f805460ff19811660ff90911615179055565b6015546001600160a01b0316331480610c395750600a546001600160a01b031633145b610c765760405162461bcd60e51b815260206004820152600e60248201526d24b73b30b634b21039b2b73232b960911b6044820152606401610919565b6015546000906001600160a01b0316610c90606447612a94565b610c9b906019612aa8565b604051600081818185875af1925050503d8060008114610cd7576040519150601f19603f3d011682016040523d82523d6000602084013e610cdc565b606091505b505090506000610cf4600a546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d8060008114610d3e576040519150601f19603f3d011682016040523d82523d6000602084013e610d43565b606091505b5050905081610d885760405162461bcd60e51b8152602060048201526011602482015270151c985b9cd9995c880c4819985a5b1959607a1b6044820152606401610919565b80610dc95760405162461bcd60e51b8152602060048201526011602482015270151c985b9cd9995c880c8819985a5b1959607a1b6044820152606401610919565b5050565b610add8383836040518060200160405280600081525061161a565b60606000610df5836110ae565b905060008167ffffffffffffffff811115610e1257610e12612722565b604051908082528060200260200182016040528015610e3b578160200160208202803683370190505b50905060005b82811015610e8257610e538582610b42565b828281518110610e6557610e65612ac7565b602090810291909101015280610e7a81612add565b915050610e41565b509392505050565b6000610e9560085490565b8210610ef85760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610919565b60088281548110610f0b57610f0b612ac7565b90600052602060002001549050919050565b600a546001600160a01b03163314610f475760405162461bcd60e51b815260040161091990612a33565b610f5081611bfb565b50565b600a546001600160a01b03163314610f7d5760405162461bcd60e51b815260040161091990612a33565b600d81601054610f8d9190612af8565b1115610fe75760405162461bcd60e51b8152602060048201526024808201527f5468697320616d6f756e74206973206d6f7265207468616e206d617820616c6c6044820152631bddd95960e21b6064820152608401610919565b60005b81811015610add5761100f83610fff60085490565b61100a906001612af8565b611c0e565b6010805490600061101f83612add565b9190505550808061102f90612add565b915050610fea565b6000818152600260205260408120546001600160a01b03168061080c5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610919565b60006001600160a01b0382166111195760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610919565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b0316331461115f5760405162461bcd60e51b815260040161091990612a33565b6111696000611c28565b565b600a546001600160a01b031633146111955760405162461bcd60e51b815260040161091990612a33565b600b55565b600a546001600160a01b031633146111c45760405162461bcd60e51b815260040161091990612a33565b600d55565b606060018054610821906129a7565b600a546001600160a01b031633146112025760405162461bcd60e51b815260040161091990612a33565b600f805462ff0000198116620100009182900460ff1615909102179055565b610dc9338383611c7a565b600a546001600160a01b031633146112565760405162461bcd60e51b815260040161091990612a33565b600f805463ff00000019166301000000179055565b600f5462010000900460ff161580611287575061128781611d49565b6112d35760405162461bcd60e51b815260206004820152601760248201527f41646472657373206e6f742077686974656c69737465640000000000000000006044820152606401610919565b33321461132e5760405162461bcd60e51b8152602060048201526024808201527f4e6f207472616e73616374696f6e2066726f6d20736d61727420636f6e7472616044820152636374732160e01b6064820152608401610919565b600f54610100900460ff16806113465750600f5460ff165b6113925760405162461bcd60e51b815260206004820152601b60248201527f53616c65206d7573742062652061637469766520746f206d696e7400000000006044820152606401610919565b6000821180156113a3575060058211155b6113ef5760405162461bcd60e51b815260206004820152601a60248201527f4d61782035204e46547320706572207472616e73616374696f6e0000000000006044820152606401610919565b600f54610100900460ff1615806114155750600b5482600c546114129190612af8565b11155b6114615760405162461bcd60e51b815260206004820181905260248201527f507572636861736520776f756c6420657863656564206d617820737570706c796044820152606401610919565b60105461146f90600d612b10565b61147b90610539612b10565b8261148560085490565b61148f9190612af8565b11156114dd5760405162461bcd60e51b815260206004820181905260248201527f507572636861736520776f756c6420657863656564206d617820737570706c796044820152606401610919565b81600d546114eb9190612aa8565b34101561153a5760405162461bcd60e51b815260206004820152601e60248201527f4e6f7420656e6f7567682045544820666f72207472616e73616374696f6e00006044820152606401610919565b600e5433600090815260146020526040902054611558908490612af8565b11156115a65760405162461bcd60e51b815260206004820152601c60248201527f4d6178204e4654207065722061646472657373206578636565646564000000006044820152606401610919565b60005b828110156115f0573360009081526014602052604081208054916115cc83612add565b91905055506115de33610fff60085490565b806115e881612add565b9150506115a9565b50600f54610100900460ff1615610dc957600c805490600061161183612add565b91905055505050565b611624338361195d565b6116405760405162461bcd60e51b8152600401610919906129e2565b61164c84848484611d91565b50505050565b6000818152600260205260409020546060906001600160a01b03166116895760405162461bcd60e51b815260040161091990612b27565b600f546301000000900460ff1661172c57601280546116a7906129a7565b80601f01602080910402602001604051908101604052809291908181526020018280546116d3906129a7565b80156117205780601f106116f557610100808354040283529160200191611720565b820191906000526020600020905b81548152906001019060200180831161170357829003601f168201915b50505050509050919050565b600061173783611dc4565b905060008151116117575760405180602001604052806000815250611778565b806040516020016117689190612b76565b6040516020818303038152906040525b9392505050565b600a546001600160a01b031633146117a95760405162461bcd60e51b815260040161091990612a33565b601355565b600a546001600160a01b031633146117d85760405162461bcd60e51b815260040161091990612a33565b600f805461ff001981166101009182900460ff1615909102179055565b600a546001600160a01b0316331461181f5760405162461bcd60e51b815260040161091990612a33565b8051610dc99060129060208401906124f1565b600a546001600160a01b0316331461185c5760405162461bcd60e51b815260040161091990612a33565b6001600160a01b0381166118c15760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610919565b610f5081611c28565b60006001600160e01b0319821663780e9d6360e01b148061080c575061080c82611e40565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061192482611037565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166119d65760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610919565b60006119e183611037565b9050806001600160a01b0316846001600160a01b03161480611a2857506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b80611a4c5750836001600160a01b0316611a41846108a4565b6001600160a01b0316145b949350505050565b826001600160a01b0316611a6782611037565b6001600160a01b031614611acb5760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201526437bbb732b960d91b6064820152608401610919565b6001600160a01b038216611b2d5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610919565b611b38838383611e90565b611b436000826118ef565b6001600160a01b0383166000908152600360205260408120805460019290611b6c908490612b10565b90915550506001600160a01b0382166000908152600360205260408120805460019290611b9a908490612af8565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b8051610dc99060119060208401906124f1565b610dc9828260405180602001604052806000815250611e9b565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b03161415611cdc5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610919565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b6040516bffffffffffffffffffffffff193360601b16602082015260009081906034016040516020818303038152906040528051906020012090506117788360135483611ece565b611d9c848484611a54565b611da884848484611ee4565b61164c5760405162461bcd60e51b815260040161091990612b9f565b6000818152600260205260409020546060906001600160a01b0316611dfb5760405162461bcd60e51b815260040161091990612b27565b6000611e05611fe2565b90506000815111611e255760405180602001604052806000815250611778565b80611e2f84611ff1565b604051602001611768929190612bf1565b60006001600160e01b031982166380ac58cd60e01b1480611e7157506001600160e01b03198216635b5e139f60e01b145b8061080c57506301ffc9a760e01b6001600160e01b031983161461080c565b610add8383836120ef565b611ea583836121a7565b611eb26000848484611ee4565b610add5760405162461bcd60e51b815260040161091990612b9f565b600082611edb85846122f5565b14949350505050565b60006001600160a01b0384163b15611fd757604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611f28903390899088908890600401612c20565b6020604051808303816000875af1925050508015611f63575060408051601f3d908101601f19168201909252611f6091810190612c5d565b60015b611fbd573d808015611f91576040519150601f19603f3d011682016040523d82523d6000602084013e611f96565b606091505b508051611fb55760405162461bcd60e51b815260040161091990612b9f565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611a4c565b506001949350505050565b606060118054610821906129a7565b6060816120155750506040805180820190915260018152600360fc1b602082015290565b8160005b811561203f578061202981612add565b91506120389050600a83612a94565b9150612019565b60008167ffffffffffffffff81111561205a5761205a612722565b6040519080825280601f01601f191660200182016040528015612084576020820181803683370190505b5090505b8415611a4c57612099600183612b10565b91506120a6600a86612c7a565b6120b1906030612af8565b60f81b8183815181106120c6576120c6612ac7565b60200101906001600160f81b031916908160001a9053506120e8600a86612a94565b9450612088565b6001600160a01b03831661214a5761214581600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b61216d565b816001600160a01b0316836001600160a01b03161461216d5761216d8382612361565b6001600160a01b03821661218457610add816123fe565b826001600160a01b0316826001600160a01b031614610add57610add82826124ad565b6001600160a01b0382166121fd5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610919565b6000818152600260205260409020546001600160a01b0316156122625760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610919565b61226e60008383611e90565b6001600160a01b0382166000908152600360205260408120805460019290612297908490612af8565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b600081815b8451811015610e8257600085828151811061231757612317612ac7565b6020026020010151905080831161233d576000838152602082905260409020925061234e565b600081815260208490526040902092505b508061235981612add565b9150506122fa565b6000600161236e846110ae565b6123789190612b10565b6000838152600760205260409020549091508082146123cb576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b60085460009061241090600190612b10565b6000838152600960205260408120546008805493945090928490811061243857612438612ac7565b90600052602060002001549050806008838154811061245957612459612ac7565b600091825260208083209091019290925582815260099091526040808220849055858252812055600880548061249157612491612c8e565b6001900381819060005260206000200160009055905550505050565b60006124b8836110ae565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b8280546124fd906129a7565b90600052602060002090601f01602090048101928261251f5760008555612565565b82601f1061253857805160ff1916838001178555612565565b82800160010185558215612565579182015b8281111561256557825182559160200191906001019061254a565b50612571929150612575565b5090565b5b808211156125715760008155600101612576565b6001600160e01b031981168114610f5057600080fd5b6000602082840312156125b257600080fd5b81356117788161258a565b60005b838110156125d85781810151838201526020016125c0565b8381111561164c5750506000910152565b600081518084526126018160208601602086016125bd565b601f01601f19169290920160200192915050565b60208152600061177860208301846125e9565b60006020828403121561263a57600080fd5b5035919050565b80356001600160a01b038116811461265857600080fd5b919050565b6000806040838503121561267057600080fd5b61267983612641565b946020939093013593505050565b60006020828403121561269957600080fd5b61177882612641565b6000806000606084860312156126b757600080fd5b6126c084612641565b92506126ce60208501612641565b9150604084013590509250925092565b6020808252825182820181905260009190848201906040850190845b81811015612716578351835292840192918401916001016126fa565b50909695505050505050565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff8111828210171561276157612761612722565b604052919050565b600067ffffffffffffffff83111561278357612783612722565b612796601f8401601f1916602001612738565b90508281528383830111156127aa57600080fd5b828260208301376000602084830101529392505050565b6000602082840312156127d357600080fd5b813567ffffffffffffffff8111156127ea57600080fd5b8201601f810184136127fb57600080fd5b611a4c84823560208401612769565b6000806040838503121561281d57600080fd5b61282683612641565b91506020830135801515811461283b57600080fd5b809150509250929050565b6000806040838503121561285957600080fd5b8235915060208084013567ffffffffffffffff8082111561287957600080fd5b818601915086601f83011261288d57600080fd5b81358181111561289f5761289f612722565b8060051b91506128b0848301612738565b81815291830184019184810190898411156128ca57600080fd5b938501935b838510156128e8578435825293850193908501906128cf565b8096505050505050509250929050565b6000806000806080858703121561290e57600080fd5b61291785612641565b935061292560208601612641565b925060408501359150606085013567ffffffffffffffff81111561294857600080fd5b8501601f8101871361295957600080fd5b61296887823560208401612769565b91505092959194509250565b6000806040838503121561298757600080fd5b61299083612641565b915061299e60208401612641565b90509250929050565b600181811c908216806129bb57607f821691505b602082108114156129dc57634e487b7160e01b600052602260045260246000fd5b50919050565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b600082612aa357612aa3612a68565b500490565b6000816000190483118215151615612ac257612ac2612a7e565b500290565b634e487b7160e01b600052603260045260246000fd5b6000600019821415612af157612af1612a7e565b5060010190565b60008219821115612b0b57612b0b612a7e565b500190565b600082821015612b2257612b22612a7e565b500390565b6020808252602f908201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60408201526e3732bc34b9ba32b73a103a37b5b2b760891b606082015260800190565b60008251612b888184602087016125bd565b64173539b7b760d91b920191825250600501919050565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60008351612c038184602088016125bd565b835190830190612c178183602088016125bd565b01949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612c53908301846125e9565b9695505050505050565b600060208284031215612c6f57600080fd5b81516117788161258a565b600082612c8957612c89612a68565b500690565b634e487b7160e01b600052603160045260246000fdfea2646970667358221220fdb2351d7e520415ea354e16ba52955a4f26adfd50e95fa2892d90a37ca04bc664736f6c634300080b0033
Deployed Bytecode Sourcemap
47087:5591:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51627:177;;;;;;;;;;-1:-1:-1;51627:177:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;51627:177:0;;;;;;;;21929:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;23489:221::-;;;;;;;;;;-1:-1:-1;23489:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1692:32:1;;;1674:51;;1662:2;1647:18;23489:221:0;1528:203:1;47691:28:0;;;;;;;;;;;;;:::i;23012:411::-;;;;;;;;;;-1:-1:-1;23012:411:0;;;;;:::i;:::-;;:::i;:::-;;36532:113;;;;;;;;;;-1:-1:-1;36620:10:0;:17;36532:113;;;2319:25:1;;;2307:2;2292:18;36532:113:0;2173:177:1;47745:52:0;;;;;;;;;;-1:-1:-1;47745:52:0;;;;;:::i;:::-;;;;;;;;;;;;;;47221:32;;;;;;;;;;;;;;;;47499:35;;;;;;;;;;-1:-1:-1;47499:35:0;;;;;;;;;;;24239:339;;;;;;;;;;-1:-1:-1;24239:339:0;;;;;:::i;:::-;;:::i;49310:113::-;;;;;;;;;;-1:-1:-1;49310:113:0;;;;;:::i;:::-;;:::i;36200:256::-;;;;;;;;;;-1:-1:-1;36200:256:0;;;;;:::i;:::-;;:::i;47260:33::-;;;;;;;;;;;;;;;;49642:97;;;;;;;;;;;;;:::i;50715:386::-;;;;;;;;;;;;;:::i;24649:185::-;;;;;;;;;;-1:-1:-1;24649:185:0;;;;;:::i;:::-;;:::i;49968:375::-;;;;;;;;;;-1:-1:-1;49968:375:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;36722:233::-;;;;;;;;;;-1:-1:-1;36722:233:0;;;;;:::i;:::-;;:::i;47577:27::-;;;;;;;;;;-1:-1:-1;47577:27:0;;;;;;;;;;;52098:101;;;;;;;;;;-1:-1:-1;52098:101:0;;;;;:::i;:::-;;:::i;50351:356::-;;;;;;;;;;-1:-1:-1;50351:356:0;;;;;:::i;:::-;;:::i;47416:31::-;;;;;;;;;;;;;;;;21623:239;;;;;;;;;;-1:-1:-1;21623:239:0;;;;;:::i;:::-;;:::i;21353:208::-;;;;;;;;;;-1:-1:-1;21353:208:0;;;;;:::i;:::-;;:::i;43677:103::-;;;;;;;;;;;;;:::i;49194:108::-;;;;;;;;;;-1:-1:-1;49194:108:0;;;;;:::i;:::-;;:::i;47355:40::-;;;;;;;;;;;;;;;;43026:87;;;;;;;;;;-1:-1:-1;43099:6:0;;-1:-1:-1;;;;;43099:6:0;43026:87;;49090:96;;;;;;;;;;-1:-1:-1;49090:96:0;;;;;:::i;:::-;;:::i;47541:29::-;;;;;;;;;;-1:-1:-1;47541:29:0;;;;;;;;;;;22098:104;;;;;;;;;;;;;:::i;49861:99::-;;;;;;;;;;;;;:::i;23782:155::-;;;;;;;;;;-1:-1:-1;23782:155:0;;;;;:::i;:::-;;:::i;49565:69::-;;;;;;;;;;;;;:::i;47950:1090::-;;;;;;:::i;:::-;;:::i;47300:48::-;;;;;;;;;;;;47346:2;47300:48;;24905:328;;;;;;;;;;-1:-1:-1;24905:328:0;;;;;:::i;:::-;;:::i;52209:466::-;;;;;;;;;;-1:-1:-1;52209:466:0;;;;;:::i;:::-;;:::i;51109:87::-;;;;;;;;;;-1:-1:-1;51109:87:0;;;;;:::i;:::-;;:::i;24008:164::-;;;;;;;;;;-1:-1:-1;24008:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;24129:25:0;;;24105:4;24129:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;24008:164;47460:32;;;;;;;;;;-1:-1:-1;47460:32:0;;;;;;;;49747:106;;;;;;;;;;;;;:::i;49431:126::-;;;;;;;;;;-1:-1:-1;49431:126:0;;;;;:::i;:::-;;:::i;43935:201::-;;;;;;;;;;-1:-1:-1;43935:201:0;;;;;:::i;:::-;;:::i;47613:36::-;;;;;;;;;;;;;;;;47176:38;;;;;;;;;;;;47210:4;47176:38;;51627:177;51731:4;51760:36;51784:11;51760:23;:36::i;:::-;51753:43;51627:177;-1:-1:-1;;51627:177:0:o;21929:100::-;21983:13;22016:5;22009:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21929:100;:::o;23489:221::-;23565:7;26832:16;;;:7;:16;;;;;;-1:-1:-1;;;;;26832:16:0;23585:73;;;;-1:-1:-1;;;23585:73:0;;7876:2:1;23585:73:0;;;7858:21:1;7915:2;7895:18;;;7888:30;7954:34;7934:18;;;7927:62;-1:-1:-1;;;8005:18:1;;;7998:42;8057:19;;23585:73:0;;;;;;;;;-1:-1:-1;23678:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;23678:24:0;;23489:221::o;47691:28::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;23012:411::-;23093:13;23109:23;23124:7;23109:14;:23::i;:::-;23093:39;;23157:5;-1:-1:-1;;;;;23151:11:0;:2;-1:-1:-1;;;;;23151:11:0;;;23143:57;;;;-1:-1:-1;;;23143:57:0;;8289:2:1;23143:57:0;;;8271:21:1;8328:2;8308:18;;;8301:30;8367:34;8347:18;;;8340:62;-1:-1:-1;;;8418:18:1;;;8411:31;8459:19;;23143:57:0;8087:397:1;23143:57:0;8398:10;-1:-1:-1;;;;;23235:21:0;;;;:62;;-1:-1:-1;23260:37:0;23277:5;8398:10;24008:164;:::i;23260:37::-;23213:168;;;;-1:-1:-1;;;23213:168:0;;8691:2:1;23213:168:0;;;8673:21:1;8730:2;8710:18;;;8703:30;8769:34;8749:18;;;8742:62;8840:26;8820:18;;;8813:54;8884:19;;23213:168:0;8489:420:1;23213:168:0;23394:21;23403:2;23407:7;23394:8;:21::i;:::-;23082:341;23012:411;;:::o;24239:339::-;24434:41;8398:10;24467:7;24434:18;:41::i;:::-;24426:103;;;;-1:-1:-1;;;24426:103:0;;;;;;;:::i;:::-;24542:28;24552:4;24558:2;24562:7;24542:9;:28::i;49310:113::-;43099:6;;-1:-1:-1;;;;;43099:6:0;8398:10;43246:23;43238:68;;;;-1:-1:-1;;;43238:68:0;;;;;;;:::i;:::-;49389:15:::1;:26:::0;49310:113::o;36200:256::-;36297:7;36333:23;36350:5;36333:16;:23::i;:::-;36325:5;:31;36317:87;;;;-1:-1:-1;;;36317:87:0;;9895:2:1;36317:87:0;;;9877:21:1;9934:2;9914:18;;;9907:30;9973:34;9953:18;;;9946:62;-1:-1:-1;;;10024:18:1;;;10017:41;10075:19;;36317:87:0;9693:407:1;36317:87:0;-1:-1:-1;;;;;;36422:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;36200:256::o;49642:97::-;43099:6;;-1:-1:-1;;;;;43099:6:0;8398:10;43246:23;43238:68;;;;-1:-1:-1;;;43238:68:0;;;;;;;:::i;:::-;49719:12:::1;::::0;;-1:-1:-1;;49703:28:0;::::1;49719:12;::::0;;::::1;49718:13;49703:28;::::0;;49642:97::o;50715:386::-;50783:6;;-1:-1:-1;;;;;50783:6:0;50769:10;:20;;:45;;-1:-1:-1;43099:6:0;;-1:-1:-1;;;;;43099:6:0;50793:10;:21;50769:45;50761:72;;;;-1:-1:-1;;;50761:72:0;;10307:2:1;50761:72:0;;;10289:21:1;10346:2;10326:18;;;10319:30;-1:-1:-1;;;10365:18:1;;;10358:44;10419:18;;50761:72:0;10105:338:1;50761:72:0;50863:6;;50845:12;;-1:-1:-1;;;;;50863:6:0;50882:27;50906:3;50882:21;:27;:::i;:::-;:32;;50912:2;50882:32;:::i;:::-;50863:56;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50844:75;;;50931:13;50950:7;43099:6;;-1:-1:-1;;;;;43099:6:0;;43026:87;50950:7;-1:-1:-1;;;;;50950:12:0;50970:21;50950:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50930:66;;;51015:7;51007:37;;;;-1:-1:-1;;;51007:37:0;;11422:2:1;51007:37:0;;;11404:21:1;11461:2;11441:18;;;11434:30;-1:-1:-1;;;11480:18:1;;;11473:47;11537:18;;51007:37:0;11220:341:1;51007:37:0;51063:8;51055:38;;;;-1:-1:-1;;;51055:38:0;;11768:2:1;51055:38:0;;;11750:21:1;11807:2;11787:18;;;11780:30;-1:-1:-1;;;11826:18:1;;;11819:47;11883:18;;51055:38:0;11566:341:1;51055:38:0;50750:351;;50715:386::o;24649:185::-;24787:39;24804:4;24810:2;24814:7;24787:39;;;;;;;;;;;;:16;:39::i;49968:375::-;50028:16;50062:23;50088:17;50098:6;50088:9;:17::i;:::-;50062:43;;50116:25;50158:15;50144:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;50144:30:0;;50116:58;;50200:9;50195:113;50215:15;50211:1;:19;50195:113;;;50266:30;50286:6;50294:1;50266:19;:30::i;:::-;50252:8;50261:1;50252:11;;;;;;;;:::i;:::-;;;;;;;;;;:44;50232:3;;;;:::i;:::-;;;;50195:113;;;-1:-1:-1;50327:8:0;49968:375;-1:-1:-1;;;49968:375:0:o;36722:233::-;36797:7;36833:30;36620:10;:17;;36532:113;36833:30;36825:5;:38;36817:95;;;;-1:-1:-1;;;36817:95:0;;12386:2:1;36817:95:0;;;12368:21:1;12425:2;12405:18;;;12398:30;12464:34;12444:18;;;12437:62;-1:-1:-1;;;12515:18:1;;;12508:42;12567:19;;36817:95:0;12184:408:1;36817:95:0;36930:10;36941:5;36930:17;;;;;;;;:::i;:::-;;;;;;;;;36923:24;;36722:233;;;:::o;52098:101::-;43099:6;;-1:-1:-1;;;;;43099:6:0;8398:10;43246:23;43238:68;;;;-1:-1:-1;;;43238:68:0;;;;;;;:::i;:::-;52171:20:::1;52183:7;52171:11;:20::i;:::-;52098:101:::0;:::o;50351:356::-;43099:6;;-1:-1:-1;;;;;43099:6:0;8398:10;43246:23;43238:68;;;;-1:-1:-1;;;43238:68:0;;;;;;;:::i;:::-;47346:2:::1;50474:6;50451:20;;:29;;;;:::i;:::-;:55;;50443:104;;;::::0;-1:-1:-1;;;50443:104:0;;12932:2:1;50443:104:0::1;::::0;::::1;12914:21:1::0;12971:2;12951:18;;;12944:30;13010:34;12990:18;;;12983:62;-1:-1:-1;;;13061:18:1;;;13054:34;13105:19;;50443:104:0::1;12730:400:1::0;50443:104:0::1;50565:6;50560:140;50581:6;50577:1;:10;50560:140;;;50619:32;50629:2;50633:13;36620:10:::0;:17;;36532:113;50633:13:::1;:17;::::0;50649:1:::1;50633:17;:::i;:::-;50619:9;:32::i;:::-;50666:20;:22:::0;;;:20:::1;:22;::::0;::::1;:::i;:::-;;;;;;50589:3;;;;;:::i;:::-;;;;50560:140;;21623:239:::0;21695:7;21731:16;;;:7;:16;;;;;;-1:-1:-1;;;;;21731:16:0;21766:19;21758:73;;;;-1:-1:-1;;;21758:73:0;;13337:2:1;21758:73:0;;;13319:21:1;13376:2;13356:18;;;13349:30;13415:34;13395:18;;;13388:62;-1:-1:-1;;;13466:18:1;;;13459:39;13515:19;;21758:73:0;13135:405:1;21353:208:0;21425:7;-1:-1:-1;;;;;21453:19:0;;21445:74;;;;-1:-1:-1;;;21445:74:0;;13747:2:1;21445:74:0;;;13729:21:1;13786:2;13766:18;;;13759:30;13825:34;13805:18;;;13798:62;-1:-1:-1;;;13876:18:1;;;13869:40;13926:19;;21445:74:0;13545:406:1;21445:74:0;-1:-1:-1;;;;;;21537:16:0;;;;;:9;:16;;;;;;;21353:208::o;43677:103::-;43099:6;;-1:-1:-1;;;;;43099:6:0;8398:10;43246:23;43238:68;;;;-1:-1:-1;;;43238:68:0;;;;;;;:::i;:::-;43742:30:::1;43769:1;43742:18;:30::i;:::-;43677:103::o:0;49194:108::-;43099:6;;-1:-1:-1;;;;;43099:6:0;8398:10;43246:23;43238:68;;;;-1:-1:-1;;;43238:68:0;;;;;;;:::i;:::-;49270:13:::1;:24:::0;49194:108::o;49090:96::-;43099:6;;-1:-1:-1;;;;;43099:6:0;8398:10;43246:23;43238:68;;;;-1:-1:-1;;;43238:68:0;;;;;;;:::i;:::-;49162:5:::1;:16:::0;49090:96::o;22098:104::-;22154:13;22187:7;22180:14;;;;;:::i;49861:99::-;43099:6;;-1:-1:-1;;;;;43099:6:0;8398:10;43246:23;43238:68;;;;-1:-1:-1;;;43238:68:0;;;;;;;:::i;:::-;49943:9:::1;::::0;;-1:-1:-1;;49930:22:0;::::1;49943:9:::0;;;;::::1;;;49942:10;49930:22:::0;;::::1;;::::0;;49861:99::o;23782:155::-;23877:52;8398:10;23910:8;23920;23877:18;:52::i;49565:69::-;43099:6;;-1:-1:-1;;;;;43099:6:0;8398:10;43246:23;43238:68;;;;-1:-1:-1;;;43238:68:0;;;;;;;:::i;:::-;49611:8:::1;:15:::0;;-1:-1:-1;;49611:15:0::1;::::0;::::1;::::0;;49565:69::o;47950:1090::-;48051:9;;;;;;;48050:10;;:27;;;48064:13;48071:5;48064:6;:13::i;:::-;48042:63;;;;-1:-1:-1;;;48042:63:0;;14158:2:1;48042:63:0;;;14140:21:1;14197:2;14177:18;;;14170:30;14236:25;14216:18;;;14209:53;14279:18;;48042:63:0;13956:347:1;48042:63:0;48124:10;48138:9;48124:23;48116:72;;;;-1:-1:-1;;;48116:72:0;;14510:2:1;48116:72:0;;;14492:21:1;14549:2;14529:18;;;14522:30;14588:34;14568:18;;;14561:62;-1:-1:-1;;;14639:18:1;;;14632:34;14683:19;;48116:72:0;14308:400:1;48116:72:0;48207:15;;;;;;;;:31;;-1:-1:-1;48226:12:0;;;;48207:31;48199:71;;;;-1:-1:-1;;;48199:71:0;;14915:2:1;48199:71:0;;;14897:21:1;14954:2;14934:18;;;14927:30;14993:29;14973:18;;;14966:57;15040:18;;48199:71:0;14713:351:1;48199:71:0;48298:1;48289:6;:10;:25;;;;;48313:1;48303:6;:11;;48289:25;48281:64;;;;-1:-1:-1;;;48281:64:0;;15271:2:1;48281:64:0;;;15253:21:1;15310:2;15290:18;;;15283:30;15349:28;15329:18;;;15322:56;15395:18;;48281:64:0;15069:350:1;48281:64:0;48365:15;;;;;;;48364:16;;:63;;;48414:13;;48404:6;48384:17;;:26;;;;:::i;:::-;:43;;48364:63;48356:108;;;;-1:-1:-1;;;48356:108:0;;15626:2:1;48356:108:0;;;15608:21:1;;;15645:18;;;15638:30;15704:34;15684:18;;;15677:62;15756:18;;48356:108:0;15424:356:1;48356:108:0;48548:20;;48523:45;;47346:2;48523:45;:::i;:::-;48509:60;;47210:4;48509:60;:::i;:::-;48499:6;48483:13;36620:10;:17;;36532:113;48483:13;:22;;;;:::i;:::-;:86;;48475:131;;;;-1:-1:-1;;;48475:131:0;;15626:2:1;48475:131:0;;;15608:21:1;;;15645:18;;;15638:30;15704:34;15684:18;;;15677:62;15756:18;;48475:131:0;15424:356:1;48475:131:0;48646:6;48638:5;;:14;;;;:::i;:::-;48625:9;:27;;48617:70;;;;-1:-1:-1;;;48617:70:0;;16117:2:1;48617:70:0;;;16099:21:1;16156:2;16136:18;;;16129:30;16195:32;16175:18;;;16168:60;16245:18;;48617:70:0;15915:354:1;48617:70:0;48751:15;;48727:10;48706:32;;;;:20;:32;;;;;;:41;;48741:6;;48706:41;:::i;:::-;:60;;48698:101;;;;-1:-1:-1;;;48698:101:0;;16476:2:1;48698:101:0;;;16458:21:1;16515:2;16495:18;;;16488:30;16554;16534:18;;;16527:58;16602:18;;48698:101:0;16274:352:1;48698:101:0;48825:6;48820:160;48841:6;48837:1;:10;48820:160;;;48900:10;48879:32;;;;:20;:32;;;;;:34;;;;;;:::i;:::-;;;;;;48928:40;48938:10;48950:13;36620:10;:17;;36532:113;48928:40;48849:3;;;;:::i;:::-;;;;48820:160;;;-1:-1:-1;48996:15:0;;;;;;;48992:40;;;49013:17;:19;;;:17;:19;;;:::i;:::-;;;;;;47950:1090;;:::o;24905:328::-;25080:41;8398:10;25113:7;25080:18;:41::i;:::-;25072:103;;;;-1:-1:-1;;;25072:103:0;;;;;;;:::i;:::-;25186:39;25200:4;25206:2;25210:7;25219:5;25186:13;:39::i;:::-;24905:328;;;;:::o;52209:466::-;26808:4;26832:16;;;:7;:16;;;;;;52282:13;;-1:-1:-1;;;;;26832:16:0;52313:113;;;;-1:-1:-1;;;52313:113:0;;;;;;;:::i;:::-;52442:8;;;;;;;52439:70;;52483:14;52476:21;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52209:466;;;:::o;52439:70::-;52521:23;52547;52562:7;52547:14;:23::i;:::-;52521:49;;52614:1;52594:9;52588:23;:27;:79;;;;;;;;;;;;;;;;;52642:9;52625:36;;;;;;;;:::i;:::-;;;;;;;;;;;;;52588:79;52581:86;52209:466;-1:-1:-1;;;52209:466:0:o;51109:87::-;43099:6;;-1:-1:-1;;;;;43099:6:0;8398:10;43246:23;43238:68;;;;-1:-1:-1;;;43238:68:0;;;;;;;:::i;:::-;51176:4:::1;:12:::0;51109:87::o;49747:106::-;43099:6;;-1:-1:-1;;;;;43099:6:0;8398:10;43246:23;43238:68;;;;-1:-1:-1;;;43238:68:0;;;;;;;:::i;:::-;49830:15:::1;::::0;;-1:-1:-1;;49811:34:0;::::1;49830:15;::::0;;;::::1;;;49829:16;49811:34:::0;;::::1;;::::0;;49747:106::o;49431:126::-;43099:6;;-1:-1:-1;;;;;43099:6:0;8398:10;43246:23;43238:68;;;;-1:-1:-1;;;43238:68:0;;;;;;;:::i;:::-;49517:32;;::::1;::::0;:14:::1;::::0;:32:::1;::::0;::::1;::::0;::::1;:::i;43935:201::-:0;43099:6;;-1:-1:-1;;;;;43099:6:0;8398:10;43246:23;43238:68;;;;-1:-1:-1;;;43238:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;44024:22:0;::::1;44016:73;;;::::0;-1:-1:-1;;;44016:73:0;;17697:2:1;44016:73:0::1;::::0;::::1;17679:21:1::0;17736:2;17716:18;;;17709:30;17775:34;17755:18;;;17748:62;-1:-1:-1;;;17826:18:1;;;17819:36;17872:19;;44016:73:0::1;17495:402:1::0;44016:73:0::1;44100:28;44119:8;44100:18;:28::i;35892:224::-:0;35994:4;-1:-1:-1;;;;;;36018:50:0;;-1:-1:-1;;;36018:50:0;;:90;;;36072:36;36096:11;36072:23;:36::i;30889:174::-;30964:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;30964:29:0;-1:-1:-1;;;;;30964:29:0;;;;;;;;:24;;31018:23;30964:24;31018:14;:23::i;:::-;-1:-1:-1;;;;;31009:46:0;;;;;;;;;;;30889:174;;:::o;27037:348::-;27130:4;26832:16;;;:7;:16;;;;;;-1:-1:-1;;;;;26832:16:0;27147:73;;;;-1:-1:-1;;;27147:73:0;;18104:2:1;27147:73:0;;;18086:21:1;18143:2;18123:18;;;18116:30;18182:34;18162:18;;;18155:62;-1:-1:-1;;;18233:18:1;;;18226:42;18285:19;;27147:73:0;17902:408:1;27147:73:0;27231:13;27247:23;27262:7;27247:14;:23::i;:::-;27231:39;;27300:5;-1:-1:-1;;;;;27289:16:0;:7;-1:-1:-1;;;;;27289:16:0;;:52;;;-1:-1:-1;;;;;;24129:25:0;;;24105:4;24129:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;27309:32;27289:87;;;;27369:7;-1:-1:-1;;;;;27345:31:0;:20;27357:7;27345:11;:20::i;:::-;-1:-1:-1;;;;;27345:31:0;;27289:87;27281:96;27037:348;-1:-1:-1;;;;27037:348:0:o;30146:625::-;30305:4;-1:-1:-1;;;;;30278:31:0;:23;30293:7;30278:14;:23::i;:::-;-1:-1:-1;;;;;30278:31:0;;30270:81;;;;-1:-1:-1;;;30270:81:0;;18517:2:1;30270:81:0;;;18499:21:1;18556:2;18536:18;;;18529:30;18595:34;18575:18;;;18568:62;-1:-1:-1;;;18646:18:1;;;18639:35;18691:19;;30270:81:0;18315:401:1;30270:81:0;-1:-1:-1;;;;;30370:16:0;;30362:65;;;;-1:-1:-1;;;30362:65:0;;18923:2:1;30362:65:0;;;18905:21:1;18962:2;18942:18;;;18935:30;19001:34;18981:18;;;18974:62;-1:-1:-1;;;19052:18:1;;;19045:34;19096:19;;30362:65:0;18721:400:1;30362:65:0;30440:39;30461:4;30467:2;30471:7;30440:20;:39::i;:::-;30544:29;30561:1;30565:7;30544:8;:29::i;:::-;-1:-1:-1;;;;;30586:15:0;;;;;;:9;:15;;;;;:20;;30605:1;;30586:15;:20;;30605:1;;30586:20;:::i;:::-;;;;-1:-1:-1;;;;;;;30617:13:0;;;;;;:9;:13;;;;;:18;;30634:1;;30617:13;:18;;30634:1;;30617:18;:::i;:::-;;;;-1:-1:-1;;30646:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;30646:21:0;-1:-1:-1;;;;;30646:21:0;;;;;;;;;30685:27;;30646:16;;30685:27;;;;;;;23082:341;23012:411;;:::o;51869:103::-;51941:23;;;;:13;;:23;;;;;:::i;27727:110::-;27803:26;27813:2;27817:7;27803:26;;;;;;;;;;;;:9;:26::i;44296:191::-;44389:6;;;-1:-1:-1;;;;;44406:17:0;;;-1:-1:-1;;;;;;44406:17:0;;;;;;;44439:40;;44389:6;;;44406:17;44389:6;;44439:40;;44370:16;;44439:40;44359:128;44296:191;:::o;31205:315::-;31360:8;-1:-1:-1;;;;;31351:17:0;:5;-1:-1:-1;;;;;31351:17:0;;;31343:55;;;;-1:-1:-1;;;31343:55:0;;19328:2:1;31343:55:0;;;19310:21:1;19367:2;19347:18;;;19340:30;19406:27;19386:18;;;19379:55;19451:18;;31343:55:0;19126:349:1;31343:55:0;-1:-1:-1;;;;;31409:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;31409:46:0;;;;;;;;;;31471:41;;540::1;;;31471::0;;513:18:1;31471:41:0;;;;;;;31205:315;;;:::o;51204:203::-;51315:28;;-1:-1:-1;;51332:10:0;19629:2:1;19625:15;19621:53;51315:28:0;;;19609:66:1;51267:4:0;;;;19691:12:1;;51315:28:0;;;;;;;;;;;;51305:39;;;;;;51290:54;;51362:37;51381:5;51388:4;;51394;51362:18;:37::i;26115:315::-;26272:28;26282:4;26288:2;26292:7;26272:9;:28::i;:::-;26319:48;26342:4;26348:2;26352:7;26361:5;26319:22;:48::i;:::-;26311:111;;;;-1:-1:-1;;;26311:111:0;;;;;;;:::i;22273:334::-;26808:4;26832:16;;;:7;:16;;;;;;22346:13;;-1:-1:-1;;;;;26832:16:0;22372:76;;;;-1:-1:-1;;;22372:76:0;;;;;;;:::i;:::-;22461:21;22485:10;:8;:10::i;:::-;22461:34;;22537:1;22519:7;22513:21;:25;:86;;;;;;;;;;;;;;;;;22565:7;22574:18;:7;:16;:18::i;:::-;22548:45;;;;;;;;;:::i;20984:305::-;21086:4;-1:-1:-1;;;;;;21123:40:0;;-1:-1:-1;;;21123:40:0;;:105;;-1:-1:-1;;;;;;;21180:48:0;;-1:-1:-1;;;21180:48:0;21123:105;:158;;;-1:-1:-1;;;;;;;;;;19700:40:0;;;21245:36;19591:157;51419:196;51562:45;51589:4;51595:2;51599:7;51562:26;:45::i;28064:321::-;28194:18;28200:2;28204:7;28194:5;:18::i;:::-;28245:54;28276:1;28280:2;28284:7;28293:5;28245:22;:54::i;:::-;28223:154;;;;-1:-1:-1;;;28223:154:0;;;;;;;:::i;45620:190::-;45745:4;45798;45769:25;45782:5;45789:4;45769:12;:25::i;:::-;:33;;45620:190;-1:-1:-1;;;;45620:190:0:o;32085:799::-;32240:4;-1:-1:-1;;;;;32261:13:0;;11835:19;:23;32257:620;;32297:72;;-1:-1:-1;;;32297:72:0;;-1:-1:-1;;;;;32297:36:0;;;;;:72;;8398:10;;32348:4;;32354:7;;32363:5;;32297:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;32297:72:0;;;;;;;;-1:-1:-1;;32297:72:0;;;;;;;;;;;;:::i;:::-;;;32293:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;32539:13:0;;32535:272;;32582:60;;-1:-1:-1;;;32582:60:0;;;;;;;:::i;32535:272::-;32757:6;32751:13;32742:6;32738:2;32734:15;32727:38;32293:529;-1:-1:-1;;;;;;32420:51:0;-1:-1:-1;;;32420:51:0;;-1:-1:-1;32413:58:0;;32257:620;-1:-1:-1;32861:4:0;32085:799;;;;;;:::o;51980:106::-;52032:13;52065;52058:20;;;;;:::i;5959:723::-;6015:13;6236:10;6232:53;;-1:-1:-1;;6263:10:0;;;;;;;;;;;;-1:-1:-1;;;6263:10:0;;;;;5959:723::o;6232:53::-;6310:5;6295:12;6351:78;6358:9;;6351:78;;6384:8;;;;:::i;:::-;;-1:-1:-1;6407:10:0;;-1:-1:-1;6415:2:0;6407:10;;:::i;:::-;;;6351:78;;;6439:19;6471:6;6461:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;6461:17:0;;6439:39;;6489:154;6496:10;;6489:154;;6523:11;6533:1;6523:11;;:::i;:::-;;-1:-1:-1;6592:10:0;6600:2;6592:5;:10;:::i;:::-;6579:24;;:2;:24;:::i;:::-;6566:39;;6549:6;6556;6549:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;6549:56:0;;;;;;;;-1:-1:-1;6620:11:0;6629:2;6620:11;;:::i;:::-;;;6489:154;;37568:589;-1:-1:-1;;;;;37774:18:0;;37770:187;;37809:40;37841:7;38984:10;:17;;38957:24;;;;:15;:24;;;;;:44;;;39012:24;;;;;;;;;;;;38880:164;37809:40;37770:187;;;37879:2;-1:-1:-1;;;;;37871:10:0;:4;-1:-1:-1;;;;;37871:10:0;;37867:90;;37898:47;37931:4;37937:7;37898:32;:47::i;:::-;-1:-1:-1;;;;;37971:16:0;;37967:183;;38004:45;38041:7;38004:36;:45::i;37967:183::-;38077:4;-1:-1:-1;;;;;38071:10:0;:2;-1:-1:-1;;;;;38071:10:0;;38067:83;;38098:40;38126:2;38130:7;38098:27;:40::i;28721:439::-;-1:-1:-1;;;;;28801:16:0;;28793:61;;;;-1:-1:-1;;;28793:61:0;;21675:2:1;28793:61:0;;;21657:21:1;;;21694:18;;;21687:30;21753:34;21733:18;;;21726:62;21805:18;;28793:61:0;21473:356:1;28793:61:0;26808:4;26832:16;;;:7;:16;;;;;;-1:-1:-1;;;;;26832:16:0;:30;28865:58;;;;-1:-1:-1;;;28865:58:0;;22036:2:1;28865:58:0;;;22018:21:1;22075:2;22055:18;;;22048:30;22114;22094:18;;;22087:58;22162:18;;28865:58:0;21834:352:1;28865:58:0;28936:45;28965:1;28969:2;28973:7;28936:20;:45::i;:::-;-1:-1:-1;;;;;28994:13:0;;;;;;:9;:13;;;;;:18;;29011:1;;28994:13;:18;;29011:1;;28994:18;:::i;:::-;;;;-1:-1:-1;;29023:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;29023:21:0;-1:-1:-1;;;;;29023:21:0;;;;;;;;29062:33;;29023:16;;;29062:33;;29023:16;;29062:33;50750:351;;50715:386::o;46171:675::-;46254:7;46297:4;46254:7;46312:497;46336:5;:12;46332:1;:16;46312:497;;;46370:20;46393:5;46399:1;46393:8;;;;;;;;:::i;:::-;;;;;;;46370:31;;46436:12;46420;:28;46416:382;;46922:13;46972:15;;;47008:4;47001:15;;;47055:4;47039:21;;46548:57;;46416:382;;;46922:13;46972:15;;;47008:4;47001:15;;;47055:4;47039:21;;46725:57;;46416:382;-1:-1:-1;46350:3:0;;;;:::i;:::-;;;;46312:497;;39671:988;39937:22;39987:1;39962:22;39979:4;39962:16;:22::i;:::-;:26;;;;:::i;:::-;39999:18;40020:26;;;:17;:26;;;;;;39937:51;;-1:-1:-1;40153:28:0;;;40149:328;;-1:-1:-1;;;;;40220:18:0;;40198:19;40220:18;;;:12;:18;;;;;;;;:34;;;;;;;;;40271:30;;;;;;:44;;;40388:30;;:17;:30;;;;;:43;;;40149:328;-1:-1:-1;40573:26:0;;;;:17;:26;;;;;;;;40566:33;;;-1:-1:-1;;;;;40617:18:0;;;;;:12;:18;;;;;:34;;;;;;;40610:41;39671:988::o;40954:1079::-;41232:10;:17;41207:22;;41232:21;;41252:1;;41232:21;:::i;:::-;41264:18;41285:24;;;:15;:24;;;;;;41658:10;:26;;41207:46;;-1:-1:-1;41285:24:0;;41207:46;;41658:26;;;;;;:::i;:::-;;;;;;;;;41636:48;;41722:11;41697:10;41708;41697:22;;;;;;;;:::i;:::-;;;;;;;;;;;;:36;;;;41802:28;;;:15;:28;;;;;;;:41;;;41974:24;;;;;41967:31;42009:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;41025:1008;;;40954:1079;:::o;38458:221::-;38543:14;38560:20;38577:2;38560:16;:20::i;:::-;-1:-1:-1;;;;;38591:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;38636:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;38458:221:0:o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:131:1;-1:-1:-1;;;;;;88:32:1;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;592:258::-;664:1;674:113;688:6;685:1;682:13;674:113;;;764:11;;;758:18;745:11;;;738:39;710:2;703:10;674:113;;;805:6;802:1;799:13;796:48;;;-1:-1:-1;;840:1:1;822:16;;815:27;592:258::o;855:::-;897:3;935:5;929:12;962:6;957:3;950:19;978:63;1034:6;1027:4;1022:3;1018:14;1011:4;1004:5;1000:16;978:63;:::i;:::-;1095:2;1074:15;-1:-1:-1;;1070:29:1;1061:39;;;;1102:4;1057:50;;855:258;-1:-1:-1;;855:258:1:o;1118:220::-;1267:2;1256:9;1249:21;1230:4;1287:45;1328:2;1317:9;1313:18;1305:6;1287:45;:::i;1343:180::-;1402:6;1455:2;1443:9;1434:7;1430:23;1426:32;1423:52;;;1471:1;1468;1461:12;1423:52;-1:-1:-1;1494:23:1;;1343:180;-1:-1:-1;1343:180:1:o;1736:173::-;1804:20;;-1:-1:-1;;;;;1853:31:1;;1843:42;;1833:70;;1899:1;1896;1889:12;1833:70;1736:173;;;:::o;1914:254::-;1982:6;1990;2043:2;2031:9;2022:7;2018:23;2014:32;2011:52;;;2059:1;2056;2049:12;2011:52;2082:29;2101:9;2082:29;:::i;:::-;2072:39;2158:2;2143:18;;;;2130:32;;-1:-1:-1;;;1914:254:1:o;2355:186::-;2414:6;2467:2;2455:9;2446:7;2442:23;2438:32;2435:52;;;2483:1;2480;2473:12;2435:52;2506:29;2525:9;2506:29;:::i;2546:328::-;2623:6;2631;2639;2692:2;2680:9;2671:7;2667:23;2663:32;2660:52;;;2708:1;2705;2698:12;2660:52;2731:29;2750:9;2731:29;:::i;:::-;2721:39;;2779:38;2813:2;2802:9;2798:18;2779:38;:::i;:::-;2769:48;;2864:2;2853:9;2849:18;2836:32;2826:42;;2546:328;;;;;:::o;2879:632::-;3050:2;3102:21;;;3172:13;;3075:18;;;3194:22;;;3021:4;;3050:2;3273:15;;;;3247:2;3232:18;;;3021:4;3316:169;3330:6;3327:1;3324:13;3316:169;;;3391:13;;3379:26;;3460:15;;;;3425:12;;;;3352:1;3345:9;3316:169;;;-1:-1:-1;3502:3:1;;2879:632;-1:-1:-1;;;;;;2879:632:1:o;3516:127::-;3577:10;3572:3;3568:20;3565:1;3558:31;3608:4;3605:1;3598:15;3632:4;3629:1;3622:15;3648:275;3719:2;3713:9;3784:2;3765:13;;-1:-1:-1;;3761:27:1;3749:40;;3819:18;3804:34;;3840:22;;;3801:62;3798:88;;;3866:18;;:::i;:::-;3902:2;3895:22;3648:275;;-1:-1:-1;3648:275:1:o;3928:407::-;3993:5;4027:18;4019:6;4016:30;4013:56;;;4049:18;;:::i;:::-;4087:57;4132:2;4111:15;;-1:-1:-1;;4107:29:1;4138:4;4103:40;4087:57;:::i;:::-;4078:66;;4167:6;4160:5;4153:21;4207:3;4198:6;4193:3;4189:16;4186:25;4183:45;;;4224:1;4221;4214:12;4183:45;4273:6;4268:3;4261:4;4254:5;4250:16;4237:43;4327:1;4320:4;4311:6;4304:5;4300:18;4296:29;4289:40;3928:407;;;;;:::o;4340:451::-;4409:6;4462:2;4450:9;4441:7;4437:23;4433:32;4430:52;;;4478:1;4475;4468:12;4430:52;4518:9;4505:23;4551:18;4543:6;4540:30;4537:50;;;4583:1;4580;4573:12;4537:50;4606:22;;4659:4;4651:13;;4647:27;-1:-1:-1;4637:55:1;;4688:1;4685;4678:12;4637:55;4711:74;4777:7;4772:2;4759:16;4754:2;4750;4746:11;4711:74;:::i;4796:347::-;4861:6;4869;4922:2;4910:9;4901:7;4897:23;4893:32;4890:52;;;4938:1;4935;4928:12;4890:52;4961:29;4980:9;4961:29;:::i;:::-;4951:39;;5040:2;5029:9;5025:18;5012:32;5087:5;5080:13;5073:21;5066:5;5063:32;5053:60;;5109:1;5106;5099:12;5053:60;5132:5;5122:15;;;4796:347;;;;;:::o;5148:1014::-;5241:6;5249;5302:2;5290:9;5281:7;5277:23;5273:32;5270:52;;;5318:1;5315;5308:12;5270:52;5354:9;5341:23;5331:33;;5383:2;5436;5425:9;5421:18;5408:32;5459:18;5500:2;5492:6;5489:14;5486:34;;;5516:1;5513;5506:12;5486:34;5554:6;5543:9;5539:22;5529:32;;5599:7;5592:4;5588:2;5584:13;5580:27;5570:55;;5621:1;5618;5611:12;5570:55;5657:2;5644:16;5679:2;5675;5672:10;5669:36;;;5685:18;;:::i;:::-;5731:2;5728:1;5724:10;5714:20;;5754:28;5778:2;5774;5770:11;5754:28;:::i;:::-;5816:15;;;5886:11;;;5882:20;;;5847:12;;;;5914:19;;;5911:39;;;5946:1;5943;5936:12;5911:39;5970:11;;;;5990:142;6006:6;6001:3;5998:15;5990:142;;;6072:17;;6060:30;;6023:12;;;;6110;;;;5990:142;;;6151:5;6141:15;;;;;;;;5148:1014;;;;;:::o;6167:667::-;6262:6;6270;6278;6286;6339:3;6327:9;6318:7;6314:23;6310:33;6307:53;;;6356:1;6353;6346:12;6307:53;6379:29;6398:9;6379:29;:::i;:::-;6369:39;;6427:38;6461:2;6450:9;6446:18;6427:38;:::i;:::-;6417:48;;6512:2;6501:9;6497:18;6484:32;6474:42;;6567:2;6556:9;6552:18;6539:32;6594:18;6586:6;6583:30;6580:50;;;6626:1;6623;6616:12;6580:50;6649:22;;6702:4;6694:13;;6690:27;-1:-1:-1;6680:55:1;;6731:1;6728;6721:12;6680:55;6754:74;6820:7;6815:2;6802:16;6797:2;6793;6789:11;6754:74;:::i;:::-;6744:84;;;6167:667;;;;;;;:::o;7024:260::-;7092:6;7100;7153:2;7141:9;7132:7;7128:23;7124:32;7121:52;;;7169:1;7166;7159:12;7121:52;7192:29;7211:9;7192:29;:::i;:::-;7182:39;;7240:38;7274:2;7263:9;7259:18;7240:38;:::i;:::-;7230:48;;7024:260;;;;;:::o;7289:380::-;7368:1;7364:12;;;;7411;;;7432:61;;7486:4;7478:6;7474:17;7464:27;;7432:61;7539:2;7531:6;7528:14;7508:18;7505:38;7502:161;;;7585:10;7580:3;7576:20;7573:1;7566:31;7620:4;7617:1;7610:15;7648:4;7645:1;7638:15;7502:161;;7289:380;;;:::o;8914:413::-;9116:2;9098:21;;;9155:2;9135:18;;;9128:30;9194:34;9189:2;9174:18;;9167:62;-1:-1:-1;;;9260:2:1;9245:18;;9238:47;9317:3;9302:19;;8914:413::o;9332:356::-;9534:2;9516:21;;;9553:18;;;9546:30;9612:34;9607:2;9592:18;;9585:62;9679:2;9664:18;;9332:356::o;10448:127::-;10509:10;10504:3;10500:20;10497:1;10490:31;10540:4;10537:1;10530:15;10564:4;10561:1;10554:15;10580:127;10641:10;10636:3;10632:20;10629:1;10622:31;10672:4;10669:1;10662:15;10696:4;10693:1;10686:15;10712:120;10752:1;10778;10768:35;;10783:18;;:::i;:::-;-1:-1:-1;10817:9:1;;10712:120::o;10837:168::-;10877:7;10943:1;10939;10935:6;10931:14;10928:1;10925:21;10920:1;10913:9;10906:17;10902:45;10899:71;;;10950:18;;:::i;:::-;-1:-1:-1;10990:9:1;;10837:168::o;11912:127::-;11973:10;11968:3;11964:20;11961:1;11954:31;12004:4;12001:1;11994:15;12028:4;12025:1;12018:15;12044:135;12083:3;-1:-1:-1;;12104:17:1;;12101:43;;;12124:18;;:::i;:::-;-1:-1:-1;12171:1:1;12160:13;;12044:135::o;12597:128::-;12637:3;12668:1;12664:6;12661:1;12658:13;12655:39;;;12674:18;;:::i;:::-;-1:-1:-1;12710:9:1;;12597:128::o;15785:125::-;15825:4;15853:1;15850;15847:8;15844:34;;;15858:18;;:::i;:::-;-1:-1:-1;15895:9:1;;15785:125::o;16631:411::-;16833:2;16815:21;;;16872:2;16852:18;;;16845:30;16911:34;16906:2;16891:18;;16884:62;-1:-1:-1;;;16977:2:1;16962:18;;16955:45;17032:3;17017:19;;16631:411::o;17047:443::-;17279:3;17317:6;17311:13;17333:53;17379:6;17374:3;17367:4;17359:6;17355:17;17333:53;:::i;:::-;-1:-1:-1;;;17408:16:1;;17433:22;;;-1:-1:-1;17482:1:1;17471:13;;17047:443;-1:-1:-1;17047:443:1:o;19714:414::-;19916:2;19898:21;;;19955:2;19935:18;;;19928:30;19994:34;19989:2;19974:18;;19967:62;-1:-1:-1;;;20060:2:1;20045:18;;20038:48;20118:3;20103:19;;19714:414::o;20133:470::-;20312:3;20350:6;20344:13;20366:53;20412:6;20407:3;20400:4;20392:6;20388:17;20366:53;:::i;:::-;20482:13;;20441:16;;;;20504:57;20482:13;20441:16;20538:4;20526:17;;20504:57;:::i;:::-;20577:20;;20133:470;-1:-1:-1;;;;20133:470:1:o;20608:489::-;-1:-1:-1;;;;;20877:15:1;;;20859:34;;20929:15;;20924:2;20909:18;;20902:43;20976:2;20961:18;;20954:34;;;21024:3;21019:2;21004:18;;20997:31;;;20802:4;;21045:46;;21071:19;;21063:6;21045:46;:::i;:::-;21037:54;20608:489;-1:-1:-1;;;;;;20608:489:1:o;21102:249::-;21171:6;21224:2;21212:9;21203:7;21199:23;21195:32;21192:52;;;21240:1;21237;21230:12;21192:52;21272:9;21266:16;21291:30;21315:5;21291:30;:::i;21356:112::-;21388:1;21414;21404:35;;21419:18;;:::i;:::-;-1:-1:-1;21453:9:1;;21356:112::o;22191:127::-;22252:10;22247:3;22243:20;22240:1;22233:31;22283:4;22280:1;22273:15;22307:4;22304:1;22297:15
Swarm Source
ipfs://fdb2351d7e520415ea354e16ba52955a4f26adfd50e95fa2892d90a37ca04bc6
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.