Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 25 from a total of 32 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Withdraw | 14768795 | 934 days ago | IN | 0.001 ETH | 0.00219092 | ||||
Mint | 14709865 | 944 days ago | IN | 0.05 ETH | 0.00893476 | ||||
Reveal | 14680441 | 948 days ago | IN | 0 ETH | 0.00405537 | ||||
Mint | 14679141 | 948 days ago | IN | 0.15 ETH | 0.01255321 | ||||
Mint | 14669279 | 950 days ago | IN | 0.05 ETH | 0.00756636 | ||||
Transfer From | 14668907 | 950 days ago | IN | 0 ETH | 0.00293887 | ||||
Mint | 14668873 | 950 days ago | IN | 0.05 ETH | 0.00964381 | ||||
Transfer From | 14668660 | 950 days ago | IN | 0 ETH | 0.00527601 | ||||
Mint | 14667484 | 950 days ago | IN | 0.05 ETH | 0.01106299 | ||||
Mint | 14667483 | 950 days ago | IN | 0.05 ETH | 0.01050229 | ||||
Mint | 14667481 | 950 days ago | IN | 0.05 ETH | 0.01028874 | ||||
Mint | 14667467 | 950 days ago | IN | 0.05 ETH | 0.01117633 | ||||
Mint | 14667460 | 950 days ago | IN | 0.1 ETH | 0.00158296 | ||||
Mint | 14667457 | 950 days ago | IN | 0.1 ETH | 0.00162614 | ||||
Mint | 14667153 | 950 days ago | IN | 0.1 ETH | 0.00128376 | ||||
Mint | 14667147 | 950 days ago | IN | 0.1 ETH | 0.00150218 | ||||
Mint | 14667144 | 950 days ago | IN | 0.1 ETH | 0.0013643 | ||||
Mint | 14667140 | 950 days ago | IN | 0.1 ETH | 0.00137643 | ||||
Mint | 14667137 | 950 days ago | IN | 0.1 ETH | 0.00129522 | ||||
Set Not Revealed... | 14660962 | 951 days ago | IN | 0 ETH | 0.00297446 | ||||
Mint | 14660411 | 951 days ago | IN | 0.05 ETH | 0.01016319 | ||||
Set Pre Sale End... | 14654930 | 952 days ago | IN | 0 ETH | 0.00270982 | ||||
Set Presale Cost | 14654908 | 952 days ago | IN | 0 ETH | 0.00258338 | ||||
Set Cost | 14654860 | 952 days ago | IN | 0 ETH | 0.0033466 | ||||
Set Public Sale ... | 14654846 | 952 days ago | IN | 0 ETH | 0.00373139 |
Latest 1 internal transaction
Advanced mode:
Parent Transaction Hash | Block | From | To | |||
---|---|---|---|---|---|---|
14768795 | 934 days ago | 0.551 ETH |
Loading...
Loading
Contract Name:
PunkFightClub
Compiler Version
v0.8.7+commit.e28d00a7
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-04-08 */ /** *Submitted for verification at Etherscan.io on 2022-04-06 */ // SPDX-License-Identifier: MIT AND GPL-3.0 // File: @openzeppelin/contracts/utils/introspection/IERC165.sol pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); } // File: @openzeppelin/contracts/token/ERC721/IERC721.sol pragma solidity ^0.8.0; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; } // File: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } // File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol pragma solidity ^0.8.0; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); } // File: @openzeppelin/contracts/utils/Address.sol pragma solidity ^0.8.0; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; assembly { size := extcodesize(account) } return size > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } // File: @openzeppelin/contracts/utils/Context.sol pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File: @openzeppelin/contracts/utils/Strings.sol pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } } // File: @openzeppelin/contracts/utils/introspection/ERC165.sol pragma solidity ^0.8.0; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } } // File: @openzeppelin/contracts/token/ERC721/ERC721.sol pragma solidity ^0.8.0; /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension, but not including the Enumerable extension, which is available separately as * {ERC721Enumerable}. */ contract ERC721 is Context, ERC165, IERC721, IERC721Metadata { using Address for address; using Strings for uint256; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to owner address mapping(uint256 => address) private _owners; // Mapping owner address to token count mapping(address => uint256) private _balances; // Mapping from token ID to approved address mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; /** * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view virtual override returns (uint256) { require(owner != address(0), "ERC721: balance query for the zero address"); return _balances[owner]; } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { address owner = _owners[tokenId]; require(owner != address(0), "ERC721: owner query for nonexistent token"); return owner; } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token"); string memory baseURI = _baseURI(); return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ""; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overriden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ""; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public virtual override { address owner = ERC721.ownerOf(tokenId); require(to != owner, "ERC721: approval to current owner"); require( _msgSender() == owner || isApprovedForAll(owner, _msgSender()), "ERC721: approve caller is not owner nor approved for all" ); _approve(to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { require(_exists(tokenId), "ERC721: approved query for nonexistent token"); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { require(operator != _msgSender(), "ERC721: approve to caller"); _operatorApprovals[_msgSender()][operator] = approved; emit ApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { //solhint-disable-next-line max-line-length require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ""); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public virtual override { require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _safeTransfer(from, to, tokenId, _data); } /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * `_data` is additional data, it has no specified format and it is sent in call to `to`. * * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g. * implement alternative mechanisms to perform token transfer, such as signature-based. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeTransfer( address from, address to, uint256 tokenId, bytes memory _data ) internal virtual { _transfer(from, to, tokenId); require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer"); } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), * and stop existing when they are burned (`_burn`). */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return _owners[tokenId] != address(0); } /** * @dev Returns whether `spender` is allowed to manage `tokenId`. * * Requirements: * * - `tokenId` must exist. */ function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) { require(_exists(tokenId), "ERC721: operator query for nonexistent token"); address owner = ERC721.ownerOf(tokenId); return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender)); } /** * @dev Safely mints `tokenId` and transfers it to `to`. * * Requirements: * * - `tokenId` must not exist. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeMint(address to, uint256 tokenId) internal virtual { _safeMint(to, tokenId, ""); } /** * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is * forwarded in {IERC721Receiver-onERC721Received} to contract recipients. */ function _safeMint( address to, uint256 tokenId, bytes memory _data ) internal virtual { _mint(to, tokenId); require( _checkOnERC721Received(address(0), to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer" ); } /** * @dev Mints `tokenId` and transfers it to `to`. * * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible * * Requirements: * * - `tokenId` must not exist. * - `to` cannot be the zero address. * * Emits a {Transfer} event. */ function _mint(address to, uint256 tokenId) internal virtual { require(to != address(0), "ERC721: mint to the zero address"); require(!_exists(tokenId), "ERC721: token already minted"); _beforeTokenTransfer(address(0), to, tokenId); _balances[to] += 1; _owners[tokenId] = to; emit Transfer(address(0), to, tokenId); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId) internal virtual { address owner = ERC721.ownerOf(tokenId); _beforeTokenTransfer(owner, address(0), tokenId); // Clear approvals _approve(address(0), tokenId); _balances[owner] -= 1; delete _owners[tokenId]; emit Transfer(owner, address(0), tokenId); } /** * @dev Transfers `tokenId` from `from` to `to`. * As opposed to {transferFrom}, this imposes no restrictions on msg.sender. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) internal virtual { require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer of token that is not own"); require(to != address(0), "ERC721: transfer to the zero address"); _beforeTokenTransfer(from, to, tokenId); // Clear approvals from the previous owner _approve(address(0), tokenId); _balances[from] -= 1; _balances[to] += 1; _owners[tokenId] = to; emit Transfer(from, to, tokenId); } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve(address to, uint256 tokenId) internal virtual { _tokenApprovals[tokenId] = to; emit Approval(ERC721.ownerOf(tokenId), to, tokenId); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address. * The call is not executed if the target address is not a contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { if (to.isContract()) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) { return retval == IERC721Receiver.onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert("ERC721: transfer to non ERC721Receiver implementer"); } else { assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, ``from``'s `tokenId` will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual {} } // File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.sol pragma solidity ^0.8.0; /** * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Enumerable is IERC721 { /** * @dev Returns the total amount of tokens stored by the contract. */ function totalSupply() external view returns (uint256); /** * @dev Returns a token ID owned by `owner` at a given `index` of its token list. * Use along with {balanceOf} to enumerate all of ``owner``'s tokens. */ function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256 tokenId); /** * @dev Returns a token ID at a given `index` of all the tokens stored by the contract. * Use along with {totalSupply} to enumerate all tokens. */ function tokenByIndex(uint256 index) external view returns (uint256); } // File: @openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol pragma solidity ^0.8.0; /** * @dev This implements an optional extension of {ERC721} defined in the EIP that adds * enumerability of all the token ids in the contract as well as all token ids owned by each * account. */ abstract contract ERC721Enumerable is ERC721, IERC721Enumerable { // Mapping from owner to list of owned token IDs mapping(address => mapping(uint256 => uint256)) private _ownedTokens; // Mapping from token ID to index of the owner tokens list mapping(uint256 => uint256) private _ownedTokensIndex; // Array with all token ids, used for enumeration uint256[] private _allTokens; // Mapping from token id to position in the allTokens array mapping(uint256 => uint256) private _allTokensIndex; /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(IERC165, ERC721) returns (bool) { return interfaceId == type(IERC721Enumerable).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}. */ function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) { require(index < ERC721.balanceOf(owner), "ERC721Enumerable: owner index out of bounds"); return _ownedTokens[owner][index]; } /** * @dev See {IERC721Enumerable-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _allTokens.length; } /** * @dev See {IERC721Enumerable-tokenByIndex}. */ function tokenByIndex(uint256 index) public view virtual override returns (uint256) { require(index < ERC721Enumerable.totalSupply(), "ERC721Enumerable: global index out of bounds"); return _allTokens[index]; } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, ``from``'s `tokenId` will be burned. * - `from` cannot be the zero address. * - `to` cannot be the zero address. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual override { super._beforeTokenTransfer(from, to, tokenId); if (from == address(0)) { _addTokenToAllTokensEnumeration(tokenId); } else if (from != to) { _removeTokenFromOwnerEnumeration(from, tokenId); } if (to == address(0)) { _removeTokenFromAllTokensEnumeration(tokenId); } else if (to != from) { _addTokenToOwnerEnumeration(to, tokenId); } } /** * @dev Private function to add a token to this extension's ownership-tracking data structures. * @param to address representing the new owner of the given token ID * @param tokenId uint256 ID of the token to be added to the tokens list of the given address */ function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private { uint256 length = ERC721.balanceOf(to); _ownedTokens[to][length] = tokenId; _ownedTokensIndex[tokenId] = length; } /** * @dev Private function to add a token to this extension's token tracking data structures. * @param tokenId uint256 ID of the token to be added to the tokens list */ function _addTokenToAllTokensEnumeration(uint256 tokenId) private { _allTokensIndex[tokenId] = _allTokens.length; _allTokens.push(tokenId); } /** * @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that * while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for * gas optimizations e.g. when performing a transfer operation (avoiding double writes). * This has O(1) time complexity, but alters the order of the _ownedTokens array. * @param from address representing the previous owner of the given token ID * @param tokenId uint256 ID of the token to be removed from the tokens list of the given address */ function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private { // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and // then delete the last slot (swap and pop). uint256 lastTokenIndex = ERC721.balanceOf(from) - 1; uint256 tokenIndex = _ownedTokensIndex[tokenId]; // When the token to delete is the last token, the swap operation is unnecessary if (tokenIndex != lastTokenIndex) { uint256 lastTokenId = _ownedTokens[from][lastTokenIndex]; _ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token _ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index } // This also deletes the contents at the last position of the array delete _ownedTokensIndex[tokenId]; delete _ownedTokens[from][lastTokenIndex]; } /** * @dev Private function to remove a token from this extension's token tracking data structures. * This has O(1) time complexity, but alters the order of the _allTokens array. * @param tokenId uint256 ID of the token to be removed from the tokens list */ function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private { // To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and // then delete the last slot (swap and pop). uint256 lastTokenIndex = _allTokens.length - 1; uint256 tokenIndex = _allTokensIndex[tokenId]; // When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so // rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding // an 'if' statement (like in _removeTokenFromOwnerEnumeration) uint256 lastTokenId = _allTokens[lastTokenIndex]; _allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token _allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index // This also deletes the contents at the last position of the array delete _allTokensIndex[tokenId]; _allTokens.pop(); } } // File: @openzeppelin/contracts/access/Ownable.sol pragma solidity ^0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _setOwner(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _setOwner(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _setOwner(newOwner); } function _setOwner(address newOwner) private { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // File: contracts/PhoenixContract.sol pragma solidity ^0.8.0; contract PunkFightClub is ERC721Enumerable, Ownable { using Strings for uint256; string private baseURI; string public baseExtension = ".json"; string public notRevealedUri; uint256 public preSaleCost = 0.02 ether; uint256 public preSaleMaxSupply = 1029; uint256 public nftPerAddressLimitPresale = 20; uint256 public maxMintAmountPresale = 20; uint256 public cost = 0.07 ether; uint256 public maxSupply = 1029; uint256 public maxMintAmount = 10; uint256 public nftPerAddressLimit = 100; uint256 public preSaleDate = 1650211200; uint256 public preSaleEndDate = 1650297600; uint256 public publicSaleDate = 1650297600; bool public paused = false; bool public revealed = false; mapping(address => bool) whitelistedAddresses; mapping(address => uint256) public addressMintedBalance; constructor() ERC721("Punk Fight Club", "PFC") { setNotRevealedURI(""); } //MODIFIERS modifier notPaused { require(!paused, "the contract is paused"); _; } modifier saleStarted { require(block.timestamp >= preSaleDate, "Sale has not started yet"); _; } modifier minimumMintAmount(uint256 _mintAmount) { require(_mintAmount > 0, "need to mint at least 1 NFT"); _; } // INTERNAL function _baseURI() internal view virtual override returns (string memory) { return baseURI; } function presaleValidations(uint256 _ownerMintedCount, uint256 _mintAmount, uint256 _supply) internal { uint256 actualCost; block.timestamp < preSaleEndDate ? actualCost = preSaleCost : actualCost = cost; require(isWhitelisted(msg.sender), "user is not whitelisted"); require(_ownerMintedCount + _mintAmount <= nftPerAddressLimitPresale, "max NFT per address exceeded for presale"); require(msg.value >= actualCost * _mintAmount, "insufficient funds"); require(_mintAmount <= maxMintAmountPresale,"max mint amount per transaction exceeded"); require(_supply + _mintAmount <= preSaleMaxSupply,"max NFT presale limit exceeded"); } function publicsaleValidations(uint256 _ownerMintedCount, uint256 _mintAmount) internal { require(_ownerMintedCount + _mintAmount <= nftPerAddressLimit,"max NFT per address exceeded"); require(msg.value >= cost * _mintAmount, "insufficient funds"); require(_mintAmount <= maxMintAmount,"max mint amount per transaction exceeded"); } //MINT function mint(uint256 _mintAmount) public payable notPaused saleStarted minimumMintAmount(_mintAmount) { uint256 supply = totalSupply(); uint256 ownerMintedCount = addressMintedBalance[msg.sender]; //Do some validations depending on which step of the sale we are in block.timestamp < publicSaleDate ? presaleValidations(ownerMintedCount, _mintAmount, supply) : publicsaleValidations(ownerMintedCount, _mintAmount); require(supply + _mintAmount <= maxSupply, "max NFT limit exceeded"); for (uint256 i = 1; i <= _mintAmount; i++) { addressMintedBalance[msg.sender]++; _safeMint(msg.sender, supply + i); } } function gift(uint256 _mintAmount, address destination) public onlyOwner { require(_mintAmount > 0, "need to mint at least 1 NFT"); uint256 supply = totalSupply(); require(supply + _mintAmount <= maxSupply, "max NFT limit exceeded"); for (uint256 i = 1; i <= _mintAmount; i++) { addressMintedBalance[destination]++; _safeMint(destination, supply + i); } } //PUBLIC VIEWS function isWhitelisted(address _user) public view returns (bool) { return whitelistedAddresses[_user]; } function walletOfOwner(address _owner) public view returns (uint256[] memory) { uint256 ownerTokenCount = balanceOf(_owner); uint256[] memory tokenIds = new uint256[](ownerTokenCount); for (uint256 i; i < ownerTokenCount; i++) { tokenIds[i] = tokenOfOwnerByIndex(_owner, i); } return tokenIds; } function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token"); if (!revealed) { return notRevealedUri; } else { string memory currentBaseURI = _baseURI(); return bytes(currentBaseURI).length > 0 ? string(abi.encodePacked(currentBaseURI,tokenId.toString(), baseExtension)) : ""; } } function getCurrentCost() public view returns (uint256) { if (block.timestamp < preSaleEndDate) { return preSaleCost; } else { return cost; } } //ONLY OWNER VIEWS function getBaseURI() public view onlyOwner returns (string memory) { return baseURI; } function getContractBalance() public view onlyOwner returns (uint256) { return address(this).balance; } //ONLY OWNER SETTERS function reveal() public onlyOwner { revealed = true; } function pause(bool _state) public onlyOwner { paused = _state; } function setNftPerAddressLimitPreSale(uint256 _limit) public onlyOwner { nftPerAddressLimitPresale = _limit; } function setNftPerAddressLimit(uint256 _limit) public onlyOwner { nftPerAddressLimit = _limit; } function setPresaleCost(uint256 _newCost) public onlyOwner { preSaleCost = _newCost; } function setCost(uint256 _newCost) public onlyOwner { cost = _newCost; } function setmaxMintAmountPreSale(uint256 _newmaxMintAmount) public onlyOwner { maxMintAmountPresale = _newmaxMintAmount; } function setmaxMintAmount(uint256 _newmaxMintAmount) public onlyOwner { maxMintAmount = _newmaxMintAmount; } function setBaseURI(string memory _newBaseURI) public onlyOwner { baseURI = _newBaseURI; } function setBaseExtension(string memory _newBaseExtension) public onlyOwner { baseExtension = _newBaseExtension; } function setNotRevealedURI(string memory _notRevealedURI) public onlyOwner { notRevealedUri = _notRevealedURI; } function setPresaleMaxSupply(uint256 _newPresaleMaxSupply) public onlyOwner { preSaleMaxSupply = _newPresaleMaxSupply; } function setMaxSupply(uint256 _maxSupply) public onlyOwner { maxSupply = _maxSupply; } function setPreSaleDate(uint256 _preSaleDate) public onlyOwner { preSaleDate = _preSaleDate; } function setPreSaleEndDate(uint256 _preSaleEndDate) public onlyOwner { preSaleEndDate = _preSaleEndDate; } function setPublicSaleDate(uint256 _publicSaleDate) public onlyOwner { publicSaleDate = _publicSaleDate; } function whitelistUsers(address[] memory addresses) public onlyOwner { for (uint256 i = 0; i < addresses.length; i++) { whitelistedAddresses[addresses[i]] = true; } } function withdraw() public payable onlyOwner { (bool success, ) = payable(msg.sender).call{value: address(this).balance}(""); require(success); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"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":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getBaseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getContractBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getCurrentCost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"},{"internalType":"address","name":"destination","type":"address"}],"name":"gift","outputs":[],"stateMutability":"nonpayable","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":"_user","type":"address"}],"name":"isWhitelisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmountPresale","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nftPerAddressLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nftPerAddressLimitPresale","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"notRevealedUri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"preSaleCost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"preSaleDate","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"preSaleEndDate","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"preSaleMaxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicSaleDate","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reveal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseExtension","type":"string"}],"name":"setBaseExtension","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newCost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxSupply","type":"uint256"}],"name":"setMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_limit","type":"uint256"}],"name":"setNftPerAddressLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_limit","type":"uint256"}],"name":"setNftPerAddressLimitPreSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_notRevealedURI","type":"string"}],"name":"setNotRevealedURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_preSaleDate","type":"uint256"}],"name":"setPreSaleDate","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_preSaleEndDate","type":"uint256"}],"name":"setPreSaleEndDate","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newCost","type":"uint256"}],"name":"setPresaleCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newPresaleMaxSupply","type":"uint256"}],"name":"setPresaleMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_publicSaleDate","type":"uint256"}],"name":"setPublicSaleDate","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newmaxMintAmount","type":"uint256"}],"name":"setmaxMintAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newmaxMintAmount","type":"uint256"}],"name":"setmaxMintAmountPreSale","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":[{"internalType":"address[]","name":"addresses","type":"address[]"}],"name":"whitelistUsers","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]
Contract Creation Code
60c06040526005608081905264173539b7b760d91b60a09081526200002891600c919062000203565b5066470de4df820000600e55610405600f81905560146010819055601181905566f8b0a10e470000601255601391909155600a9055606460155563625c398060165563625d8b0060178190556018556019805461ffff191690553480156200008f57600080fd5b50604080518082018252600f81526e283ab735902334b3b43a1021b63ab160891b60208083019182528351808501909452600384526250464360e81b908401528151919291620000e29160009162000203565b508051620000f890600190602084019062000203565b505050620001156200010f6200013560201b60201c565b62000139565b6040805160208101909152600081526200012f906200018b565b620002e6565b3390565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600a546001600160a01b03163314620001ea5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640160405180910390fd5b8051620001ff90600d90602084019062000203565b5050565b8280546200021190620002a9565b90600052602060002090601f01602090048101928262000235576000855562000280565b82601f106200025057805160ff191683800117855562000280565b8280016001018555821562000280579182015b828111156200028057825182559160200191906001019062000263565b506200028e92915062000292565b5090565b5b808211156200028e576000815560010162000293565b600181811c90821680620002be57607f821691505b60208210811415620002e057634e487b7160e01b600052602260045260246000fd5b50919050565b6130ff80620002f66000396000f3fe6080604052600436106103975760003560e01c80636f9fb98a116101dc578063a22cb46511610102578063d0eb26b0116100a0578063eced38731161006f578063eced387314610a42578063edec5f2714610a58578063f2c4ce1e14610a78578063f2fde38b14610a9857600080fd5b8063d0eb26b0146109a3578063d5abeb01146109c3578063da3ef23f146109d9578063e985e9c5146109f957600080fd5b8063ba7d2c76116100dc578063ba7d2c7614610942578063c668286214610958578063c87b56dd1461096d578063cc9ff9c61461098d57600080fd5b8063a22cb465146108ed578063a475b5dd1461090d578063b88d4fde1461092257600080fd5b80637f00c7a61161017a5780638fdcf942116101495780638fdcf9421461088f57806395d89b41146108af578063a0712d68146108c4578063a18116f1146108d757600080fd5b80637f00c7a61461081c578063831e60de1461083c57806383a076be146108515780638da5cb5b1461087157600080fd5b8063715018a6116101b6578063715018a6146107bb578063743c7f6b146107d05780637967a50a146107f05780637effc0321461080657600080fd5b80636f9fb98a1461077157806370a0823114610786578063714c5398146107a657600080fd5b80632e09282e116102c157806344a0d68a1161025f5780635c975abb1161022e5780635c975abb146106f75780636352211e14610711578063669736c0146107315780636f8b44b01461075157600080fd5b806344a0d68a146106785780634f6ccce71461069857806351830227146106b857806355f804b3146106d757600080fd5b80633ccfd60b1161029b5780633ccfd60b1461060357806342842e0e1461060b57806342f0ca0d1461062b578063438b63001461064b57600080fd5b80632e09282e146105945780632f745c59146105aa5780633af32abf146105ca57600080fd5b80630a50716b1161033957806318cae2691161030857806318cae2691461051b5780631985cc6514610548578063239c70ae1461055e57806323b872dd1461057457600080fd5b80630a50716b146104a25780630e54a883146104c257806313faede6146104e257806318160ddd1461050657600080fd5b8063081812fc11610375578063081812fc14610415578063081c8c441461044d578063095ea7b3146104625780630a403f041461048257600080fd5b806301ffc9a71461039c57806302329a29146103d157806306fdde03146103f3575b600080fd5b3480156103a857600080fd5b506103bc6103b7366004612bb9565b610ab8565b60405190151581526020015b60405180910390f35b3480156103dd57600080fd5b506103f16103ec366004612b9e565b610ae3565b005b3480156103ff57600080fd5b50610408610b29565b6040516103c89190612de9565b34801561042157600080fd5b50610435610430366004612c3c565b610bbb565b6040516001600160a01b0390911681526020016103c8565b34801561045957600080fd5b50610408610c50565b34801561046e57600080fd5b506103f161047d366004612ac0565b610cde565b34801561048e57600080fd5b506103f161049d366004612c3c565b610df4565b3480156104ae57600080fd5b506103f16104bd366004612c3c565b610e23565b3480156104ce57600080fd5b506103f16104dd366004612c3c565b610e52565b3480156104ee57600080fd5b506104f860125481565b6040519081526020016103c8565b34801561051257600080fd5b506008546104f8565b34801561052757600080fd5b506104f8610536366004612990565b601b6020526000908152604090205481565b34801561055457600080fd5b506104f860165481565b34801561056a57600080fd5b506104f860145481565b34801561058057600080fd5b506103f161058f3660046129de565b610e81565b3480156105a057600080fd5b506104f860105481565b3480156105b657600080fd5b506104f86105c5366004612ac0565b610eb2565b3480156105d657600080fd5b506103bc6105e5366004612990565b6001600160a01b03166000908152601a602052604090205460ff1690565b6103f1610f48565b34801561061757600080fd5b506103f16106263660046129de565b610fca565b34801561063757600080fd5b506103f1610646366004612c3c565b610fe5565b34801561065757600080fd5b5061066b610666366004612990565b611014565b6040516103c89190612da5565b34801561068457600080fd5b506103f1610693366004612c3c565b6110b6565b3480156106a457600080fd5b506104f86106b3366004612c3c565b6110e5565b3480156106c457600080fd5b506019546103bc90610100900460ff1681565b3480156106e357600080fd5b506103f16106f2366004612bf3565b611178565b34801561070357600080fd5b506019546103bc9060ff1681565b34801561071d57600080fd5b5061043561072c366004612c3c565b6111b9565b34801561073d57600080fd5b506103f161074c366004612c3c565b611230565b34801561075d57600080fd5b506103f161076c366004612c3c565b61125f565b34801561077d57600080fd5b506104f861128e565b34801561079257600080fd5b506104f86107a1366004612990565b6112c0565b3480156107b257600080fd5b50610408611347565b3480156107c757600080fd5b506103f1611381565b3480156107dc57600080fd5b506103f16107eb366004612c3c565b6113b7565b3480156107fc57600080fd5b506104f860175481565b34801561081257600080fd5b506104f860115481565b34801561082857600080fd5b506103f1610837366004612c3c565b6113e6565b34801561084857600080fd5b506104f8611415565b34801561085d57600080fd5b506103f161086c366004612c55565b61142f565b34801561087d57600080fd5b50600a546001600160a01b0316610435565b34801561089b57600080fd5b506103f16108aa366004612c3c565b61156a565b3480156108bb57600080fd5b50610408611599565b6103f16108d2366004612c3c565b6115a8565b3480156108e357600080fd5b506104f8600f5481565b3480156108f957600080fd5b506103f1610908366004612a96565b61177f565b34801561091957600080fd5b506103f1611844565b34801561092e57600080fd5b506103f161093d366004612a1a565b61187f565b34801561094e57600080fd5b506104f860155481565b34801561096457600080fd5b506104086118b1565b34801561097957600080fd5b50610408610988366004612c3c565b6118be565b34801561099957600080fd5b506104f8600e5481565b3480156109af57600080fd5b506103f16109be366004612c3c565b611a42565b3480156109cf57600080fd5b506104f860135481565b3480156109e557600080fd5b506103f16109f4366004612bf3565b611a71565b348015610a0557600080fd5b506103bc610a143660046129ab565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b348015610a4e57600080fd5b506104f860185481565b348015610a6457600080fd5b506103f1610a73366004612aea565b611aae565b348015610a8457600080fd5b506103f1610a93366004612bf3565b611b40565b348015610aa457600080fd5b506103f1610ab3366004612990565b611b7d565b60006001600160e01b0319821663780e9d6360e01b1480610add5750610add82611c15565b92915050565b600a546001600160a01b03163314610b165760405162461bcd60e51b8152600401610b0d90612e96565b60405180910390fd5b6019805460ff1916911515919091179055565b606060008054610b3890612fdb565b80601f0160208091040260200160405190810160405280929190818152602001828054610b6490612fdb565b8015610bb15780601f10610b8657610100808354040283529160200191610bb1565b820191906000526020600020905b815481529060010190602001808311610b9457829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b0316610c345760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610b0d565b506000908152600460205260409020546001600160a01b031690565b600d8054610c5d90612fdb565b80601f0160208091040260200160405190810160405280929190818152602001828054610c8990612fdb565b8015610cd65780601f10610cab57610100808354040283529160200191610cd6565b820191906000526020600020905b815481529060010190602001808311610cb957829003601f168201915b505050505081565b6000610ce9826111b9565b9050806001600160a01b0316836001600160a01b03161415610d575760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610b0d565b336001600160a01b0382161480610d735750610d738133610a14565b610de55760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610b0d565b610def8383611c65565b505050565b600a546001600160a01b03163314610e1e5760405162461bcd60e51b8152600401610b0d90612e96565b600f55565b600a546001600160a01b03163314610e4d5760405162461bcd60e51b8152600401610b0d90612e96565b601055565b600a546001600160a01b03163314610e7c5760405162461bcd60e51b8152600401610b0d90612e96565b601855565b610e8b3382611cd3565b610ea75760405162461bcd60e51b8152600401610b0d90612ecb565b610def838383611dca565b6000610ebd836112c0565b8210610f1f5760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610b0d565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600a546001600160a01b03163314610f725760405162461bcd60e51b8152600401610b0d90612e96565b604051600090339047908381818185875af1925050503d8060008114610fb4576040519150601f19603f3d011682016040523d82523d6000602084013e610fb9565b606091505b5050905080610fc757600080fd5b50565b610def8383836040518060200160405280600081525061187f565b600a546001600160a01b0316331461100f5760405162461bcd60e51b8152600401610b0d90612e96565b601755565b60606000611021836112c0565b905060008167ffffffffffffffff81111561103e5761103e61309d565b604051908082528060200260200182016040528015611067578160200160208202803683370190505b50905060005b828110156110ae5761107f8582610eb2565b82828151811061109157611091613087565b6020908102919091010152806110a681613016565b91505061106d565b509392505050565b600a546001600160a01b031633146110e05760405162461bcd60e51b8152600401610b0d90612e96565b601255565b60006110f060085490565b82106111535760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610b0d565b6008828154811061116657611166613087565b90600052602060002001549050919050565b600a546001600160a01b031633146111a25760405162461bcd60e51b8152600401610b0d90612e96565b80516111b590600b906020840190612878565b5050565b6000818152600260205260408120546001600160a01b031680610add5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610b0d565b600a546001600160a01b0316331461125a5760405162461bcd60e51b8152600401610b0d90612e96565b601155565b600a546001600160a01b031633146112895760405162461bcd60e51b8152600401610b0d90612e96565b601355565b600a546000906001600160a01b031633146112bb5760405162461bcd60e51b8152600401610b0d90612e96565b504790565b60006001600160a01b03821661132b5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610b0d565b506001600160a01b031660009081526003602052604090205490565b600a546060906001600160a01b031633146113745760405162461bcd60e51b8152600401610b0d90612e96565b600b8054610b3890612fdb565b600a546001600160a01b031633146113ab5760405162461bcd60e51b8152600401610b0d90612e96565b6113b56000611f75565b565b600a546001600160a01b031633146113e15760405162461bcd60e51b8152600401610b0d90612e96565b601655565b600a546001600160a01b031633146114105760405162461bcd60e51b8152600401610b0d90612e96565b601455565b60006017544210156114285750600e5490565b5060125490565b600a546001600160a01b031633146114595760405162461bcd60e51b8152600401610b0d90612e96565b600082116114a95760405162461bcd60e51b815260206004820152601b60248201527f6e65656420746f206d696e74206174206c656173742031204e465400000000006044820152606401610b0d565b60006114b460085490565b6013549091506114c48483612f4d565b111561150b5760405162461bcd60e51b81526020600482015260166024820152751b585e08139195081b1a5b5a5d08195e18d95959195960521b6044820152606401610b0d565b60015b838111611564576001600160a01b0383166000908152601b6020526040812080549161153983613016565b9091555061155290508361154d8385612f4d565b611fc7565b8061155c81613016565b91505061150e565b50505050565b600a546001600160a01b031633146115945760405162461bcd60e51b8152600401610b0d90612e96565b600e55565b606060018054610b3890612fdb565b60195460ff16156115f45760405162461bcd60e51b81526020600482015260166024820152751d1a194818dbdb9d1c9858dd081a5cc81c185d5cd95960521b6044820152606401610b0d565b6016544210156116465760405162461bcd60e51b815260206004820152601860248201527f53616c6520686173206e6f7420737461727465642079657400000000000000006044820152606401610b0d565b80600081116116975760405162461bcd60e51b815260206004820152601b60248201527f6e65656420746f206d696e74206174206c656173742031204e465400000000006044820152606401610b0d565b60006116a260085490565b336000908152601b60205260409020546018549192509042106116ce576116c98185611fe1565b6116d9565b6116d98185846120b0565b6013546116e68584612f4d565b111561172d5760405162461bcd60e51b81526020600482015260166024820152751b585e08139195081b1a5b5a5d08195e18d95959195960521b6044820152606401610b0d565b60015b84811161177857336000908152601b6020526040812080549161175283613016565b9091555061176690503361154d8386612f4d565b8061177081613016565b915050611730565b5050505050565b6001600160a01b0382163314156117d85760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610b0d565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600a546001600160a01b0316331461186e5760405162461bcd60e51b8152600401610b0d90612e96565b6019805461ff001916610100179055565b6118893383611cd3565b6118a55760405162461bcd60e51b8152600401610b0d90612ecb565b61156484848484612262565b600c8054610c5d90612fdb565b6000818152600260205260409020546060906001600160a01b031661193d5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610b0d565b601954610100900460ff166119de57600d805461195990612fdb565b80601f016020809104026020016040519081016040528092919081815260200182805461198590612fdb565b80156119d25780601f106119a7576101008083540402835291602001916119d2565b820191906000526020600020905b8154815290600101906020018083116119b557829003601f168201915b50505050509050919050565b60006119e8612295565b90506000815111611a085760405180602001604052806000815250611a36565b80611a12846122a4565b600c604051602001611a2693929190612ca4565b6040516020818303038152906040525b9392505050565b919050565b600a546001600160a01b03163314611a6c5760405162461bcd60e51b8152600401610b0d90612e96565b601555565b600a546001600160a01b03163314611a9b5760405162461bcd60e51b8152600401610b0d90612e96565b80516111b590600c906020840190612878565b600a546001600160a01b03163314611ad85760405162461bcd60e51b8152600401610b0d90612e96565b60005b81518110156111b5576001601a6000848481518110611afc57611afc613087565b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff191691151591909117905580611b3881613016565b915050611adb565b600a546001600160a01b03163314611b6a5760405162461bcd60e51b8152600401610b0d90612e96565b80516111b590600d906020840190612878565b600a546001600160a01b03163314611ba75760405162461bcd60e51b8152600401610b0d90612e96565b6001600160a01b038116611c0c5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610b0d565b610fc781611f75565b60006001600160e01b031982166380ac58cd60e01b1480611c4657506001600160e01b03198216635b5e139f60e01b145b80610add57506301ffc9a760e01b6001600160e01b0319831614610add565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190611c9a826111b9565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b0316611d4c5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610b0d565b6000611d57836111b9565b9050806001600160a01b0316846001600160a01b03161480611d925750836001600160a01b0316611d8784610bbb565b6001600160a01b0316145b80611dc257506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316611ddd826111b9565b6001600160a01b031614611e455760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610b0d565b6001600160a01b038216611ea75760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610b0d565b611eb28383836123a2565b611ebd600082611c65565b6001600160a01b0383166000908152600360205260408120805460019290611ee6908490612f98565b90915550506001600160a01b0382166000908152600360205260408120805460019290611f14908490612f4d565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6111b582826040518060200160405280600081525061245a565b601554611fee8284612f4d565b111561203c5760405162461bcd60e51b815260206004820152601c60248201527f6d6178204e4654207065722061646472657373206578636565646564000000006044820152606401610b0d565b8060125461204a9190612f79565b34101561208e5760405162461bcd60e51b8152602060048201526012602482015271696e73756666696369656e742066756e647360701b6044820152606401610b0d565b6014548111156111b55760405162461bcd60e51b8152600401610b0d90612e4e565b600060175442106120c55750601254806120cb565b50600e54805b50336000908152601a602052604090205460ff1661212b5760405162461bcd60e51b815260206004820152601760248201527f75736572206973206e6f742077686974656c69737465640000000000000000006044820152606401610b0d565b6010546121388486612f4d565b11156121975760405162461bcd60e51b815260206004820152602860248201527f6d6178204e465420706572206164647265737320657863656564656420666f726044820152672070726573616c6560c01b6064820152608401610b0d565b6121a18382612f79565b3410156121e55760405162461bcd60e51b8152602060048201526012602482015271696e73756666696369656e742066756e647360701b6044820152606401610b0d565b6011548311156122075760405162461bcd60e51b8152600401610b0d90612e4e565b600f546122148484612f4d565b11156115645760405162461bcd60e51b815260206004820152601e60248201527f6d6178204e46542070726573616c65206c696d697420657863656564656400006044820152606401610b0d565b61226d848484611dca565b6122798484848461248d565b6115645760405162461bcd60e51b8152600401610b0d90612dfc565b6060600b8054610b3890612fdb565b6060816122c85750506040805180820190915260018152600360fc1b602082015290565b8160005b81156122f257806122dc81613016565b91506122eb9050600a83612f65565b91506122cc565b60008167ffffffffffffffff81111561230d5761230d61309d565b6040519080825280601f01601f191660200182016040528015612337576020820181803683370190505b5090505b8415611dc25761234c600183612f98565b9150612359600a86613031565b612364906030612f4d565b60f81b81838151811061237957612379613087565b60200101906001600160f81b031916908160001a90535061239b600a86612f65565b945061233b565b6001600160a01b0383166123fd576123f881600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b612420565b816001600160a01b0316836001600160a01b03161461242057612420838261259a565b6001600160a01b03821661243757610def81612637565b826001600160a01b0316826001600160a01b031614610def57610def82826126e6565b612464838361272a565b612471600084848461248d565b610def5760405162461bcd60e51b8152600401610b0d90612dfc565b60006001600160a01b0384163b1561258f57604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906124d1903390899088908890600401612d68565b602060405180830381600087803b1580156124eb57600080fd5b505af192505050801561251b575060408051601f3d908101601f1916820190925261251891810190612bd6565b60015b612575573d808015612549576040519150601f19603f3d011682016040523d82523d6000602084013e61254e565b606091505b50805161256d5760405162461bcd60e51b8152600401610b0d90612dfc565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611dc2565b506001949350505050565b600060016125a7846112c0565b6125b19190612f98565b600083815260076020526040902054909150808214612604576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b60085460009061264990600190612f98565b6000838152600960205260408120546008805493945090928490811061267157612671613087565b90600052602060002001549050806008838154811061269257612692613087565b60009182526020808320909101929092558281526009909152604080822084905585825281205560088054806126ca576126ca613071565b6001900381819060005260206000200160009055905550505050565b60006126f1836112c0565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b0382166127805760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610b0d565b6000818152600260205260409020546001600160a01b0316156127e55760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610b0d565b6127f1600083836123a2565b6001600160a01b038216600090815260036020526040812080546001929061281a908490612f4d565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b82805461288490612fdb565b90600052602060002090601f0160209004810192826128a657600085556128ec565b82601f106128bf57805160ff19168380011785556128ec565b828001600101855582156128ec579182015b828111156128ec5782518255916020019190600101906128d1565b506128f89291506128fc565b5090565b5b808211156128f857600081556001016128fd565b600067ffffffffffffffff83111561292b5761292b61309d565b61293e601f8401601f1916602001612f1c565b905082815283838301111561295257600080fd5b828260208301376000602084830101529392505050565b80356001600160a01b0381168114611a3d57600080fd5b80358015158114611a3d57600080fd5b6000602082840312156129a257600080fd5b611a3682612969565b600080604083850312156129be57600080fd5b6129c783612969565b91506129d560208401612969565b90509250929050565b6000806000606084860312156129f357600080fd5b6129fc84612969565b9250612a0a60208501612969565b9150604084013590509250925092565b60008060008060808587031215612a3057600080fd5b612a3985612969565b9350612a4760208601612969565b925060408501359150606085013567ffffffffffffffff811115612a6a57600080fd5b8501601f81018713612a7b57600080fd5b612a8a87823560208401612911565b91505092959194509250565b60008060408385031215612aa957600080fd5b612ab283612969565b91506129d560208401612980565b60008060408385031215612ad357600080fd5b612adc83612969565b946020939093013593505050565b60006020808385031215612afd57600080fd5b823567ffffffffffffffff80821115612b1557600080fd5b818501915085601f830112612b2957600080fd5b813581811115612b3b57612b3b61309d565b8060051b9150612b4c848301612f1c565b8181528481019084860184860187018a1015612b6757600080fd5b600095505b83861015612b9157612b7d81612969565b835260019590950194918601918601612b6c565b5098975050505050505050565b600060208284031215612bb057600080fd5b611a3682612980565b600060208284031215612bcb57600080fd5b8135611a36816130b3565b600060208284031215612be857600080fd5b8151611a36816130b3565b600060208284031215612c0557600080fd5b813567ffffffffffffffff811115612c1c57600080fd5b8201601f81018413612c2d57600080fd5b611dc284823560208401612911565b600060208284031215612c4e57600080fd5b5035919050565b60008060408385031215612c6857600080fd5b823591506129d560208401612969565b60008151808452612c90816020860160208601612faf565b601f01601f19169290920160200192915050565b600084516020612cb78285838a01612faf565b855191840191612cca8184848a01612faf565b8554920191600090600181811c9080831680612ce757607f831692505b858310811415612d0557634e487b7160e01b85526022600452602485fd5b808015612d195760018114612d2a57612d57565b60ff19851688528388019550612d57565b60008b81526020902060005b85811015612d4f5781548a820152908401908801612d36565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612d9b90830184612c78565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b81811015612ddd57835183529284019291840191600101612dc1565b50909695505050505050565b602081526000611a366020830184612c78565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526028908201527f6d6178206d696e7420616d6f756e7420706572207472616e73616374696f6e20604082015267195e18d95959195960c21b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b604051601f8201601f1916810167ffffffffffffffff81118282101715612f4557612f4561309d565b604052919050565b60008219821115612f6057612f60613045565b500190565b600082612f7457612f7461305b565b500490565b6000816000190483118215151615612f9357612f93613045565b500290565b600082821015612faa57612faa613045565b500390565b60005b83811015612fca578181015183820152602001612fb2565b838111156115645750506000910152565b600181811c90821680612fef57607f821691505b6020821081141561301057634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561302a5761302a613045565b5060010190565b6000826130405761304061305b565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610fc757600080fdfea26469706673582212207e92e0e8039b936bf574817365cfca1bf8631889eebaa0cfaad1ee88a152956764736f6c63430008070033
Deployed Bytecode
0x6080604052600436106103975760003560e01c80636f9fb98a116101dc578063a22cb46511610102578063d0eb26b0116100a0578063eced38731161006f578063eced387314610a42578063edec5f2714610a58578063f2c4ce1e14610a78578063f2fde38b14610a9857600080fd5b8063d0eb26b0146109a3578063d5abeb01146109c3578063da3ef23f146109d9578063e985e9c5146109f957600080fd5b8063ba7d2c76116100dc578063ba7d2c7614610942578063c668286214610958578063c87b56dd1461096d578063cc9ff9c61461098d57600080fd5b8063a22cb465146108ed578063a475b5dd1461090d578063b88d4fde1461092257600080fd5b80637f00c7a61161017a5780638fdcf942116101495780638fdcf9421461088f57806395d89b41146108af578063a0712d68146108c4578063a18116f1146108d757600080fd5b80637f00c7a61461081c578063831e60de1461083c57806383a076be146108515780638da5cb5b1461087157600080fd5b8063715018a6116101b6578063715018a6146107bb578063743c7f6b146107d05780637967a50a146107f05780637effc0321461080657600080fd5b80636f9fb98a1461077157806370a0823114610786578063714c5398146107a657600080fd5b80632e09282e116102c157806344a0d68a1161025f5780635c975abb1161022e5780635c975abb146106f75780636352211e14610711578063669736c0146107315780636f8b44b01461075157600080fd5b806344a0d68a146106785780634f6ccce71461069857806351830227146106b857806355f804b3146106d757600080fd5b80633ccfd60b1161029b5780633ccfd60b1461060357806342842e0e1461060b57806342f0ca0d1461062b578063438b63001461064b57600080fd5b80632e09282e146105945780632f745c59146105aa5780633af32abf146105ca57600080fd5b80630a50716b1161033957806318cae2691161030857806318cae2691461051b5780631985cc6514610548578063239c70ae1461055e57806323b872dd1461057457600080fd5b80630a50716b146104a25780630e54a883146104c257806313faede6146104e257806318160ddd1461050657600080fd5b8063081812fc11610375578063081812fc14610415578063081c8c441461044d578063095ea7b3146104625780630a403f041461048257600080fd5b806301ffc9a71461039c57806302329a29146103d157806306fdde03146103f3575b600080fd5b3480156103a857600080fd5b506103bc6103b7366004612bb9565b610ab8565b60405190151581526020015b60405180910390f35b3480156103dd57600080fd5b506103f16103ec366004612b9e565b610ae3565b005b3480156103ff57600080fd5b50610408610b29565b6040516103c89190612de9565b34801561042157600080fd5b50610435610430366004612c3c565b610bbb565b6040516001600160a01b0390911681526020016103c8565b34801561045957600080fd5b50610408610c50565b34801561046e57600080fd5b506103f161047d366004612ac0565b610cde565b34801561048e57600080fd5b506103f161049d366004612c3c565b610df4565b3480156104ae57600080fd5b506103f16104bd366004612c3c565b610e23565b3480156104ce57600080fd5b506103f16104dd366004612c3c565b610e52565b3480156104ee57600080fd5b506104f860125481565b6040519081526020016103c8565b34801561051257600080fd5b506008546104f8565b34801561052757600080fd5b506104f8610536366004612990565b601b6020526000908152604090205481565b34801561055457600080fd5b506104f860165481565b34801561056a57600080fd5b506104f860145481565b34801561058057600080fd5b506103f161058f3660046129de565b610e81565b3480156105a057600080fd5b506104f860105481565b3480156105b657600080fd5b506104f86105c5366004612ac0565b610eb2565b3480156105d657600080fd5b506103bc6105e5366004612990565b6001600160a01b03166000908152601a602052604090205460ff1690565b6103f1610f48565b34801561061757600080fd5b506103f16106263660046129de565b610fca565b34801561063757600080fd5b506103f1610646366004612c3c565b610fe5565b34801561065757600080fd5b5061066b610666366004612990565b611014565b6040516103c89190612da5565b34801561068457600080fd5b506103f1610693366004612c3c565b6110b6565b3480156106a457600080fd5b506104f86106b3366004612c3c565b6110e5565b3480156106c457600080fd5b506019546103bc90610100900460ff1681565b3480156106e357600080fd5b506103f16106f2366004612bf3565b611178565b34801561070357600080fd5b506019546103bc9060ff1681565b34801561071d57600080fd5b5061043561072c366004612c3c565b6111b9565b34801561073d57600080fd5b506103f161074c366004612c3c565b611230565b34801561075d57600080fd5b506103f161076c366004612c3c565b61125f565b34801561077d57600080fd5b506104f861128e565b34801561079257600080fd5b506104f86107a1366004612990565b6112c0565b3480156107b257600080fd5b50610408611347565b3480156107c757600080fd5b506103f1611381565b3480156107dc57600080fd5b506103f16107eb366004612c3c565b6113b7565b3480156107fc57600080fd5b506104f860175481565b34801561081257600080fd5b506104f860115481565b34801561082857600080fd5b506103f1610837366004612c3c565b6113e6565b34801561084857600080fd5b506104f8611415565b34801561085d57600080fd5b506103f161086c366004612c55565b61142f565b34801561087d57600080fd5b50600a546001600160a01b0316610435565b34801561089b57600080fd5b506103f16108aa366004612c3c565b61156a565b3480156108bb57600080fd5b50610408611599565b6103f16108d2366004612c3c565b6115a8565b3480156108e357600080fd5b506104f8600f5481565b3480156108f957600080fd5b506103f1610908366004612a96565b61177f565b34801561091957600080fd5b506103f1611844565b34801561092e57600080fd5b506103f161093d366004612a1a565b61187f565b34801561094e57600080fd5b506104f860155481565b34801561096457600080fd5b506104086118b1565b34801561097957600080fd5b50610408610988366004612c3c565b6118be565b34801561099957600080fd5b506104f8600e5481565b3480156109af57600080fd5b506103f16109be366004612c3c565b611a42565b3480156109cf57600080fd5b506104f860135481565b3480156109e557600080fd5b506103f16109f4366004612bf3565b611a71565b348015610a0557600080fd5b506103bc610a143660046129ab565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b348015610a4e57600080fd5b506104f860185481565b348015610a6457600080fd5b506103f1610a73366004612aea565b611aae565b348015610a8457600080fd5b506103f1610a93366004612bf3565b611b40565b348015610aa457600080fd5b506103f1610ab3366004612990565b611b7d565b60006001600160e01b0319821663780e9d6360e01b1480610add5750610add82611c15565b92915050565b600a546001600160a01b03163314610b165760405162461bcd60e51b8152600401610b0d90612e96565b60405180910390fd5b6019805460ff1916911515919091179055565b606060008054610b3890612fdb565b80601f0160208091040260200160405190810160405280929190818152602001828054610b6490612fdb565b8015610bb15780601f10610b8657610100808354040283529160200191610bb1565b820191906000526020600020905b815481529060010190602001808311610b9457829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b0316610c345760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610b0d565b506000908152600460205260409020546001600160a01b031690565b600d8054610c5d90612fdb565b80601f0160208091040260200160405190810160405280929190818152602001828054610c8990612fdb565b8015610cd65780601f10610cab57610100808354040283529160200191610cd6565b820191906000526020600020905b815481529060010190602001808311610cb957829003601f168201915b505050505081565b6000610ce9826111b9565b9050806001600160a01b0316836001600160a01b03161415610d575760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610b0d565b336001600160a01b0382161480610d735750610d738133610a14565b610de55760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610b0d565b610def8383611c65565b505050565b600a546001600160a01b03163314610e1e5760405162461bcd60e51b8152600401610b0d90612e96565b600f55565b600a546001600160a01b03163314610e4d5760405162461bcd60e51b8152600401610b0d90612e96565b601055565b600a546001600160a01b03163314610e7c5760405162461bcd60e51b8152600401610b0d90612e96565b601855565b610e8b3382611cd3565b610ea75760405162461bcd60e51b8152600401610b0d90612ecb565b610def838383611dca565b6000610ebd836112c0565b8210610f1f5760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610b0d565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600a546001600160a01b03163314610f725760405162461bcd60e51b8152600401610b0d90612e96565b604051600090339047908381818185875af1925050503d8060008114610fb4576040519150601f19603f3d011682016040523d82523d6000602084013e610fb9565b606091505b5050905080610fc757600080fd5b50565b610def8383836040518060200160405280600081525061187f565b600a546001600160a01b0316331461100f5760405162461bcd60e51b8152600401610b0d90612e96565b601755565b60606000611021836112c0565b905060008167ffffffffffffffff81111561103e5761103e61309d565b604051908082528060200260200182016040528015611067578160200160208202803683370190505b50905060005b828110156110ae5761107f8582610eb2565b82828151811061109157611091613087565b6020908102919091010152806110a681613016565b91505061106d565b509392505050565b600a546001600160a01b031633146110e05760405162461bcd60e51b8152600401610b0d90612e96565b601255565b60006110f060085490565b82106111535760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610b0d565b6008828154811061116657611166613087565b90600052602060002001549050919050565b600a546001600160a01b031633146111a25760405162461bcd60e51b8152600401610b0d90612e96565b80516111b590600b906020840190612878565b5050565b6000818152600260205260408120546001600160a01b031680610add5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610b0d565b600a546001600160a01b0316331461125a5760405162461bcd60e51b8152600401610b0d90612e96565b601155565b600a546001600160a01b031633146112895760405162461bcd60e51b8152600401610b0d90612e96565b601355565b600a546000906001600160a01b031633146112bb5760405162461bcd60e51b8152600401610b0d90612e96565b504790565b60006001600160a01b03821661132b5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610b0d565b506001600160a01b031660009081526003602052604090205490565b600a546060906001600160a01b031633146113745760405162461bcd60e51b8152600401610b0d90612e96565b600b8054610b3890612fdb565b600a546001600160a01b031633146113ab5760405162461bcd60e51b8152600401610b0d90612e96565b6113b56000611f75565b565b600a546001600160a01b031633146113e15760405162461bcd60e51b8152600401610b0d90612e96565b601655565b600a546001600160a01b031633146114105760405162461bcd60e51b8152600401610b0d90612e96565b601455565b60006017544210156114285750600e5490565b5060125490565b600a546001600160a01b031633146114595760405162461bcd60e51b8152600401610b0d90612e96565b600082116114a95760405162461bcd60e51b815260206004820152601b60248201527f6e65656420746f206d696e74206174206c656173742031204e465400000000006044820152606401610b0d565b60006114b460085490565b6013549091506114c48483612f4d565b111561150b5760405162461bcd60e51b81526020600482015260166024820152751b585e08139195081b1a5b5a5d08195e18d95959195960521b6044820152606401610b0d565b60015b838111611564576001600160a01b0383166000908152601b6020526040812080549161153983613016565b9091555061155290508361154d8385612f4d565b611fc7565b8061155c81613016565b91505061150e565b50505050565b600a546001600160a01b031633146115945760405162461bcd60e51b8152600401610b0d90612e96565b600e55565b606060018054610b3890612fdb565b60195460ff16156115f45760405162461bcd60e51b81526020600482015260166024820152751d1a194818dbdb9d1c9858dd081a5cc81c185d5cd95960521b6044820152606401610b0d565b6016544210156116465760405162461bcd60e51b815260206004820152601860248201527f53616c6520686173206e6f7420737461727465642079657400000000000000006044820152606401610b0d565b80600081116116975760405162461bcd60e51b815260206004820152601b60248201527f6e65656420746f206d696e74206174206c656173742031204e465400000000006044820152606401610b0d565b60006116a260085490565b336000908152601b60205260409020546018549192509042106116ce576116c98185611fe1565b6116d9565b6116d98185846120b0565b6013546116e68584612f4d565b111561172d5760405162461bcd60e51b81526020600482015260166024820152751b585e08139195081b1a5b5a5d08195e18d95959195960521b6044820152606401610b0d565b60015b84811161177857336000908152601b6020526040812080549161175283613016565b9091555061176690503361154d8386612f4d565b8061177081613016565b915050611730565b5050505050565b6001600160a01b0382163314156117d85760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610b0d565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600a546001600160a01b0316331461186e5760405162461bcd60e51b8152600401610b0d90612e96565b6019805461ff001916610100179055565b6118893383611cd3565b6118a55760405162461bcd60e51b8152600401610b0d90612ecb565b61156484848484612262565b600c8054610c5d90612fdb565b6000818152600260205260409020546060906001600160a01b031661193d5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610b0d565b601954610100900460ff166119de57600d805461195990612fdb565b80601f016020809104026020016040519081016040528092919081815260200182805461198590612fdb565b80156119d25780601f106119a7576101008083540402835291602001916119d2565b820191906000526020600020905b8154815290600101906020018083116119b557829003601f168201915b50505050509050919050565b60006119e8612295565b90506000815111611a085760405180602001604052806000815250611a36565b80611a12846122a4565b600c604051602001611a2693929190612ca4565b6040516020818303038152906040525b9392505050565b919050565b600a546001600160a01b03163314611a6c5760405162461bcd60e51b8152600401610b0d90612e96565b601555565b600a546001600160a01b03163314611a9b5760405162461bcd60e51b8152600401610b0d90612e96565b80516111b590600c906020840190612878565b600a546001600160a01b03163314611ad85760405162461bcd60e51b8152600401610b0d90612e96565b60005b81518110156111b5576001601a6000848481518110611afc57611afc613087565b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff191691151591909117905580611b3881613016565b915050611adb565b600a546001600160a01b03163314611b6a5760405162461bcd60e51b8152600401610b0d90612e96565b80516111b590600d906020840190612878565b600a546001600160a01b03163314611ba75760405162461bcd60e51b8152600401610b0d90612e96565b6001600160a01b038116611c0c5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610b0d565b610fc781611f75565b60006001600160e01b031982166380ac58cd60e01b1480611c4657506001600160e01b03198216635b5e139f60e01b145b80610add57506301ffc9a760e01b6001600160e01b0319831614610add565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190611c9a826111b9565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b0316611d4c5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610b0d565b6000611d57836111b9565b9050806001600160a01b0316846001600160a01b03161480611d925750836001600160a01b0316611d8784610bbb565b6001600160a01b0316145b80611dc257506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316611ddd826111b9565b6001600160a01b031614611e455760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610b0d565b6001600160a01b038216611ea75760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610b0d565b611eb28383836123a2565b611ebd600082611c65565b6001600160a01b0383166000908152600360205260408120805460019290611ee6908490612f98565b90915550506001600160a01b0382166000908152600360205260408120805460019290611f14908490612f4d565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6111b582826040518060200160405280600081525061245a565b601554611fee8284612f4d565b111561203c5760405162461bcd60e51b815260206004820152601c60248201527f6d6178204e4654207065722061646472657373206578636565646564000000006044820152606401610b0d565b8060125461204a9190612f79565b34101561208e5760405162461bcd60e51b8152602060048201526012602482015271696e73756666696369656e742066756e647360701b6044820152606401610b0d565b6014548111156111b55760405162461bcd60e51b8152600401610b0d90612e4e565b600060175442106120c55750601254806120cb565b50600e54805b50336000908152601a602052604090205460ff1661212b5760405162461bcd60e51b815260206004820152601760248201527f75736572206973206e6f742077686974656c69737465640000000000000000006044820152606401610b0d565b6010546121388486612f4d565b11156121975760405162461bcd60e51b815260206004820152602860248201527f6d6178204e465420706572206164647265737320657863656564656420666f726044820152672070726573616c6560c01b6064820152608401610b0d565b6121a18382612f79565b3410156121e55760405162461bcd60e51b8152602060048201526012602482015271696e73756666696369656e742066756e647360701b6044820152606401610b0d565b6011548311156122075760405162461bcd60e51b8152600401610b0d90612e4e565b600f546122148484612f4d565b11156115645760405162461bcd60e51b815260206004820152601e60248201527f6d6178204e46542070726573616c65206c696d697420657863656564656400006044820152606401610b0d565b61226d848484611dca565b6122798484848461248d565b6115645760405162461bcd60e51b8152600401610b0d90612dfc565b6060600b8054610b3890612fdb565b6060816122c85750506040805180820190915260018152600360fc1b602082015290565b8160005b81156122f257806122dc81613016565b91506122eb9050600a83612f65565b91506122cc565b60008167ffffffffffffffff81111561230d5761230d61309d565b6040519080825280601f01601f191660200182016040528015612337576020820181803683370190505b5090505b8415611dc25761234c600183612f98565b9150612359600a86613031565b612364906030612f4d565b60f81b81838151811061237957612379613087565b60200101906001600160f81b031916908160001a90535061239b600a86612f65565b945061233b565b6001600160a01b0383166123fd576123f881600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b612420565b816001600160a01b0316836001600160a01b03161461242057612420838261259a565b6001600160a01b03821661243757610def81612637565b826001600160a01b0316826001600160a01b031614610def57610def82826126e6565b612464838361272a565b612471600084848461248d565b610def5760405162461bcd60e51b8152600401610b0d90612dfc565b60006001600160a01b0384163b1561258f57604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906124d1903390899088908890600401612d68565b602060405180830381600087803b1580156124eb57600080fd5b505af192505050801561251b575060408051601f3d908101601f1916820190925261251891810190612bd6565b60015b612575573d808015612549576040519150601f19603f3d011682016040523d82523d6000602084013e61254e565b606091505b50805161256d5760405162461bcd60e51b8152600401610b0d90612dfc565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611dc2565b506001949350505050565b600060016125a7846112c0565b6125b19190612f98565b600083815260076020526040902054909150808214612604576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b60085460009061264990600190612f98565b6000838152600960205260408120546008805493945090928490811061267157612671613087565b90600052602060002001549050806008838154811061269257612692613087565b60009182526020808320909101929092558281526009909152604080822084905585825281205560088054806126ca576126ca613071565b6001900381819060005260206000200160009055905550505050565b60006126f1836112c0565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b0382166127805760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610b0d565b6000818152600260205260409020546001600160a01b0316156127e55760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610b0d565b6127f1600083836123a2565b6001600160a01b038216600090815260036020526040812080546001929061281a908490612f4d565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b82805461288490612fdb565b90600052602060002090601f0160209004810192826128a657600085556128ec565b82601f106128bf57805160ff19168380011785556128ec565b828001600101855582156128ec579182015b828111156128ec5782518255916020019190600101906128d1565b506128f89291506128fc565b5090565b5b808211156128f857600081556001016128fd565b600067ffffffffffffffff83111561292b5761292b61309d565b61293e601f8401601f1916602001612f1c565b905082815283838301111561295257600080fd5b828260208301376000602084830101529392505050565b80356001600160a01b0381168114611a3d57600080fd5b80358015158114611a3d57600080fd5b6000602082840312156129a257600080fd5b611a3682612969565b600080604083850312156129be57600080fd5b6129c783612969565b91506129d560208401612969565b90509250929050565b6000806000606084860312156129f357600080fd5b6129fc84612969565b9250612a0a60208501612969565b9150604084013590509250925092565b60008060008060808587031215612a3057600080fd5b612a3985612969565b9350612a4760208601612969565b925060408501359150606085013567ffffffffffffffff811115612a6a57600080fd5b8501601f81018713612a7b57600080fd5b612a8a87823560208401612911565b91505092959194509250565b60008060408385031215612aa957600080fd5b612ab283612969565b91506129d560208401612980565b60008060408385031215612ad357600080fd5b612adc83612969565b946020939093013593505050565b60006020808385031215612afd57600080fd5b823567ffffffffffffffff80821115612b1557600080fd5b818501915085601f830112612b2957600080fd5b813581811115612b3b57612b3b61309d565b8060051b9150612b4c848301612f1c565b8181528481019084860184860187018a1015612b6757600080fd5b600095505b83861015612b9157612b7d81612969565b835260019590950194918601918601612b6c565b5098975050505050505050565b600060208284031215612bb057600080fd5b611a3682612980565b600060208284031215612bcb57600080fd5b8135611a36816130b3565b600060208284031215612be857600080fd5b8151611a36816130b3565b600060208284031215612c0557600080fd5b813567ffffffffffffffff811115612c1c57600080fd5b8201601f81018413612c2d57600080fd5b611dc284823560208401612911565b600060208284031215612c4e57600080fd5b5035919050565b60008060408385031215612c6857600080fd5b823591506129d560208401612969565b60008151808452612c90816020860160208601612faf565b601f01601f19169290920160200192915050565b600084516020612cb78285838a01612faf565b855191840191612cca8184848a01612faf565b8554920191600090600181811c9080831680612ce757607f831692505b858310811415612d0557634e487b7160e01b85526022600452602485fd5b808015612d195760018114612d2a57612d57565b60ff19851688528388019550612d57565b60008b81526020902060005b85811015612d4f5781548a820152908401908801612d36565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612d9b90830184612c78565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b81811015612ddd57835183529284019291840191600101612dc1565b50909695505050505050565b602081526000611a366020830184612c78565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526028908201527f6d6178206d696e7420616d6f756e7420706572207472616e73616374696f6e20604082015267195e18d95959195960c21b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b604051601f8201601f1916810167ffffffffffffffff81118282101715612f4557612f4561309d565b604052919050565b60008219821115612f6057612f60613045565b500190565b600082612f7457612f7461305b565b500490565b6000816000190483118215151615612f9357612f93613045565b500290565b600082821015612faa57612faa613045565b500390565b60005b83811015612fca578181015183820152602001612fb2565b838111156115645750506000910152565b600181811c90821680612fef57607f821691505b6020821081141561301057634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561302a5761302a613045565b5060010190565b6000826130405761304061305b565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610fc757600080fdfea26469706673582212207e92e0e8039b936bf574817365cfca1bf8631889eebaa0cfaad1ee88a152956764736f6c63430008070033
Deployed Bytecode Sourcemap
43300:7579:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34803:224;;;;;;;;;;-1:-1:-1;34803:224:0;;;;;:::i;:::-;;:::i;:::-;;;8809:14:1;;8802:22;8784:41;;8772:2;8757:18;34803:224:0;;;;;;;;48673:79;;;;;;;;;;-1:-1:-1;48673:79:0;;;;;:::i;:::-;;:::i;:::-;;21704:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;23263:221::-;;;;;;;;;;-1:-1:-1;23263:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;7470:32:1;;;7452:51;;7440:2;7425:18;23263:221:0;7306:203:1;43470:28:0;;;;;;;;;;;;;:::i;22786:411::-;;;;;;;;;;-1:-1:-1;22786:411:0;;;;;:::i;:::-;;:::i;49876:134::-;;;;;;;;;;-1:-1:-1;49876:134:0;;;;;:::i;:::-;;:::i;48764:124::-;;;;;;;;;;-1:-1:-1;48764:124:0;;;;;:::i;:::-;;:::i;50370:120::-;;;;;;;;;;-1:-1:-1;50370:120:0;;;;;:::i;:::-;;:::i;43707:32::-;;;;;;;;;;;;;;;;;;;20057:25:1;;;20045:2;20030:18;43707:32:0;19911:177:1;35443:113:0;;;;;;;;;;-1:-1:-1;35531:10:0;:17;35443:113;;44158:55;;;;;;;;;;-1:-1:-1;44158:55:0;;;;;:::i;:::-;;;;;;;;;;;;;;43882:39;;;;;;;;;;;;;;;;43790:33;;;;;;;;;;;;;;;;24153:339;;;;;;;;;;-1:-1:-1;24153:339:0;;;;;:::i;:::-;;:::i;43602:45::-;;;;;;;;;;;;;;;;35111:256;;;;;;;;;;-1:-1:-1;35111:256:0;;;;;:::i;:::-;;:::i;47135:118::-;;;;;;;;;;-1:-1:-1;47135:118:0;;;;;:::i;:::-;-1:-1:-1;;;;;47218:27:0;47194:4;47218:27;;;:20;:27;;;;;;;;;47135:118;50708:168;;;:::i;24563:185::-;;;;;;;;;;-1:-1:-1;24563:185:0;;;;;:::i;:::-;;:::i;50242:120::-;;;;;;;;;;-1:-1:-1;50242:120:0;;;;;:::i;:::-;;:::i;47261:358::-;;;;;;;;;;-1:-1:-1;47261:358:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;49122:86::-;;;;;;;;;;-1:-1:-1;49122:86:0;;;;;:::i;:::-;;:::i;35633:233::-;;;;;;;;;;-1:-1:-1;35633:233:0;;;;;:::i;:::-;;:::i;44065:28::-;;;;;;;;;;-1:-1:-1;44065:28:0;;;;;;;;;;;49494:104;;;;;;;;;;-1:-1:-1;49494:104:0;;;;;:::i;:::-;;:::i;44032:26::-;;;;;;;;;;-1:-1:-1;44032:26:0;;;;;;;;21398:239;;;;;;;;;;-1:-1:-1;21398:239:0;;;;;:::i;:::-;;:::i;49220:136::-;;;;;;;;;;-1:-1:-1;49220:136:0;;;;;:::i;:::-;;:::i;50018:100::-;;;;;;;;;;-1:-1:-1;50018:100:0;;;;;:::i;:::-;;:::i;48445:117::-;;;;;;;;;;;;;:::i;21128:208::-;;;;;;;;;;-1:-1:-1;21128:208:0;;;;;:::i;:::-;;:::i;48336:101::-;;;;;;;;;;;;;:::i;42598:94::-;;;;;;;;;;;;;:::i;50126:108::-;;;;;;;;;;-1:-1:-1;50126:108:0;;;;;:::i;:::-;;:::i;43928:42::-;;;;;;;;;;;;;;;;43654:40;;;;;;;;;;;;;;;;49364:122;;;;;;;;;;-1:-1:-1;49364:122:0;;;;;:::i;:::-;;:::i;48103:201::-;;;;;;;;;;;;;:::i;46674:433::-;;;;;;;;;;-1:-1:-1;46674:433:0;;;;;:::i;:::-;;:::i;41947:87::-;;;;;;;;;;-1:-1:-1;42020:6:0;;-1:-1:-1;;;;;42020:6:0;41947:87;;49014:100;;;;;;;;;;-1:-1:-1;49014:100:0;;;;;:::i;:::-;;:::i;21873:104::-;;;;;;;;;;;;;:::i;45958:704::-;;;;;;:::i;:::-;;:::i;43557:38::-;;;;;;;;;;;;;;;;23556:295;;;;;;;;;;-1:-1:-1;23556:295:0;;;;;:::i;:::-;;:::i;48596:69::-;;;;;;;;;;;;;:::i;24819:328::-;;;;;;;;;;-1:-1:-1;24819:328:0;;;;;:::i;:::-;;:::i;43830:39::-;;;;;;;;;;;;;;;;43420:37;;;;;;;;;;;;;:::i;47627:468::-;;;;;;;;;;-1:-1:-1;47627:468:0;;;;;:::i;:::-;;:::i;43511:39::-;;;;;;;;;;;;;;;;48896:110;;;;;;;;;;-1:-1:-1;48896:110:0;;;;;:::i;:::-;;:::i;43746:31::-;;;;;;;;;;;;;;;;49606:128;;;;;;;;;;-1:-1:-1;49606:128:0;;;;;:::i;:::-;;:::i;23922:164::-;;;;;;;;;;-1:-1:-1;23922:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;24043:25:0;;;24019:4;24043:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;23922:164;43977:42;;;;;;;;;;;;;;;;50498:202;;;;;;;;;;-1:-1:-1;50498:202:0;;;;;:::i;:::-;;:::i;49742:126::-;;;;;;;;;;-1:-1:-1;49742:126:0;;;;;:::i;:::-;;:::i;42847:192::-;;;;;;;;;;-1:-1:-1;42847:192:0;;;;;:::i;:::-;;:::i;34803:224::-;34905:4;-1:-1:-1;;;;;;34929:50:0;;-1:-1:-1;;;34929:50:0;;:90;;;34983:36;35007:11;34983:23;:36::i;:::-;34922:97;34803:224;-1:-1:-1;;34803:224:0:o;48673:79::-;42020:6;;-1:-1:-1;;;;;42020:6:0;16261:10;42167:23;42159:68;;;;-1:-1:-1;;;42159:68:0;;;;;;;:::i;:::-;;;;;;;;;48729:6:::1;:15:::0;;-1:-1:-1;;48729:15:0::1;::::0;::::1;;::::0;;;::::1;::::0;;48673:79::o;21704:100::-;21758:13;21791:5;21784:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21704:100;:::o;23263:221::-;23339:7;26746:16;;;:7;:16;;;;;;-1:-1:-1;;;;;26746:16:0;23359:73;;;;-1:-1:-1;;;23359:73:0;;15106:2:1;23359:73:0;;;15088:21:1;15145:2;15125:18;;;15118:30;15184:34;15164:18;;;15157:62;-1:-1:-1;;;15235:18:1;;;15228:42;15287:19;;23359:73:0;14904:408:1;23359:73:0;-1:-1:-1;23452:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;23452:24:0;;23263:221::o;43470:28::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;22786:411::-;22867:13;22883:23;22898:7;22883:14;:23::i;:::-;22867:39;;22931:5;-1:-1:-1;;;;;22925:11:0;:2;-1:-1:-1;;;;;22925:11:0;;;22917:57;;;;-1:-1:-1;;;22917:57:0;;17416:2:1;22917:57:0;;;17398:21:1;17455:2;17435:18;;;17428:30;17494:34;17474:18;;;17467:62;-1:-1:-1;;;17545:18:1;;;17538:31;17586:19;;22917:57:0;17214:397:1;22917:57:0;16261:10;-1:-1:-1;;;;;23009:21:0;;;;:62;;-1:-1:-1;23034:37:0;23051:5;16261:10;23922:164;:::i;23034:37::-;22987:168;;;;-1:-1:-1;;;22987:168:0;;13148:2:1;22987:168:0;;;13130:21:1;13187:2;13167:18;;;13160:30;13226:34;13206:18;;;13199:62;13297:26;13277:18;;;13270:54;13341:19;;22987:168:0;12946:420:1;22987:168:0;23168:21;23177:2;23181:7;23168:8;:21::i;:::-;22856:341;22786:411;;:::o;49876:134::-;42020:6;;-1:-1:-1;;;;;42020:6:0;16261:10;42167:23;42159:68;;;;-1:-1:-1;;;42159:68:0;;;;;;;:::i;:::-;49963:16:::1;:39:::0;49876:134::o;48764:124::-;42020:6;;-1:-1:-1;;;;;42020:6:0;16261:10;42167:23;42159:68;;;;-1:-1:-1;;;42159:68:0;;;;;;;:::i;:::-;48846:25:::1;:34:::0;48764:124::o;50370:120::-;42020:6;;-1:-1:-1;;;;;42020:6:0;16261:10;42167:23;42159:68;;;;-1:-1:-1;;;42159:68:0;;;;;;;:::i;:::-;50450:14:::1;:32:::0;50370:120::o;24153:339::-;24348:41;16261:10;24381:7;24348:18;:41::i;:::-;24340:103;;;;-1:-1:-1;;;24340:103:0;;;;;;;:::i;:::-;24456:28;24466:4;24472:2;24476:7;24456:9;:28::i;35111:256::-;35208:7;35244:23;35261:5;35244:16;:23::i;:::-;35236:5;:31;35228:87;;;;-1:-1:-1;;;35228:87:0;;9615:2:1;35228:87:0;;;9597:21:1;9654:2;9634:18;;;9627:30;9693:34;9673:18;;;9666:62;-1:-1:-1;;;9744:18:1;;;9737:41;9795:19;;35228:87:0;9413:407:1;35228:87:0;-1:-1:-1;;;;;;35333:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;35111:256::o;50708:168::-;42020:6;;-1:-1:-1;;;;;42020:6:0;16261:10;42167:23;42159:68;;;;-1:-1:-1;;;42159:68:0;;;;;;;:::i;:::-;50783:58:::1;::::0;50765:12:::1;::::0;50791:10:::1;::::0;50815:21:::1;::::0;50765:12;50783:58;50765:12;50783:58;50815:21;50791:10;50783:58:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50764:77;;;50860:7;50852:16;;;::::0;::::1;;50753:123;50708:168::o:0;24563:185::-;24701:39;24718:4;24724:2;24728:7;24701:39;;;;;;;;;;;;:16;:39::i;50242:120::-;42020:6;;-1:-1:-1;;;;;42020:6:0;16261:10;42167:23;42159:68;;;;-1:-1:-1;;;42159:68:0;;;;;;;:::i;:::-;50322:14:::1;:32:::0;50242:120::o;47261:358::-;47321:16;47350:23;47376:17;47386:6;47376:9;:17::i;:::-;47350:43;;47404:25;47446:15;47432:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;47432:30:0;;47404:58;;47478:9;47473:113;47493:15;47489:1;:19;47473:113;;;47544:30;47564:6;47572:1;47544:19;:30::i;:::-;47530:8;47539:1;47530:11;;;;;;;;:::i;:::-;;;;;;;;;;:44;47510:3;;;;:::i;:::-;;;;47473:113;;;-1:-1:-1;47603:8:0;47261:358;-1:-1:-1;;;47261:358:0:o;49122:86::-;42020:6;;-1:-1:-1;;;;;42020:6:0;16261:10;42167:23;42159:68;;;;-1:-1:-1;;;42159:68:0;;;;;;;:::i;:::-;49185:4:::1;:15:::0;49122:86::o;35633:233::-;35708:7;35744:30;35531:10;:17;;35443:113;35744:30;35736:5;:38;35728:95;;;;-1:-1:-1;;;35728:95:0;;18992:2:1;35728:95:0;;;18974:21:1;19031:2;19011:18;;;19004:30;19070:34;19050:18;;;19043:62;-1:-1:-1;;;19121:18:1;;;19114:42;19173:19;;35728:95:0;18790:408:1;35728:95:0;35841:10;35852:5;35841:17;;;;;;;;:::i;:::-;;;;;;;;;35834:24;;35633:233;;;:::o;49494:104::-;42020:6;;-1:-1:-1;;;;;42020:6:0;16261:10;42167:23;42159:68;;;;-1:-1:-1;;;42159:68:0;;;;;;;:::i;:::-;49569:21;;::::1;::::0;:7:::1;::::0;:21:::1;::::0;::::1;::::0;::::1;:::i;:::-;;49494:104:::0;:::o;21398:239::-;21470:7;21506:16;;;:7;:16;;;;;;-1:-1:-1;;;;;21506:16:0;21541:19;21533:73;;;;-1:-1:-1;;;21533:73:0;;13984:2:1;21533:73:0;;;13966:21:1;14023:2;14003:18;;;13996:30;14062:34;14042:18;;;14035:62;-1:-1:-1;;;14113:18:1;;;14106:39;14162:19;;21533:73:0;13782:405:1;49220:136:0;42020:6;;-1:-1:-1;;;;;42020:6:0;16261:10;42167:23;42159:68;;;;-1:-1:-1;;;42159:68:0;;;;;;;:::i;:::-;49308:20:::1;:40:::0;49220:136::o;50018:100::-;42020:6;;-1:-1:-1;;;;;42020:6:0;16261:10;42167:23;42159:68;;;;-1:-1:-1;;;42159:68:0;;;;;;;:::i;:::-;50088:9:::1;:22:::0;50018:100::o;48445:117::-;42020:6;;48506:7;;-1:-1:-1;;;;;42020:6:0;16261:10;42167:23;42159:68;;;;-1:-1:-1;;;42159:68:0;;;;;;;:::i;:::-;-1:-1:-1;48533:21:0::1;48445:117:::0;:::o;21128:208::-;21200:7;-1:-1:-1;;;;;21228:19:0;;21220:74;;;;-1:-1:-1;;;21220:74:0;;13573:2:1;21220:74:0;;;13555:21:1;13612:2;13592:18;;;13585:30;13651:34;13631:18;;;13624:62;-1:-1:-1;;;13702:18:1;;;13695:40;13752:19;;21220:74:0;13371:406:1;21220:74:0;-1:-1:-1;;;;;;21312:16:0;;;;;:9;:16;;;;;;;21128:208::o;48336:101::-;42020:6;;48389:13;;-1:-1:-1;;;;;42020:6:0;16261:10;42167:23;42159:68;;;;-1:-1:-1;;;42159:68:0;;;;;;;:::i;:::-;48422:7:::1;48415:14;;;;;:::i;42598:94::-:0;42020:6;;-1:-1:-1;;;;;42020:6:0;16261:10;42167:23;42159:68;;;;-1:-1:-1;;;42159:68:0;;;;;;;:::i;:::-;42663:21:::1;42681:1;42663:9;:21::i;:::-;42598:94::o:0;50126:108::-;42020:6;;-1:-1:-1;;;;;42020:6:0;16261:10;42167:23;42159:68;;;;-1:-1:-1;;;42159:68:0;;;;;;;:::i;:::-;50200:11:::1;:26:::0;50126:108::o;49364:122::-;42020:6;;-1:-1:-1;;;;;42020:6:0;16261:10;42167:23;42159:68;;;;-1:-1:-1;;;42159:68:0;;;;;;;:::i;:::-;49445:13:::1;:33:::0;49364:122::o;48103:201::-;48150:7;48192:14;;48174:15;:32;48170:127;;;-1:-1:-1;48230:11:0;;;48103:201::o;48170:127::-;-1:-1:-1;48281:4:0;;;48103:201::o;46674:433::-;42020:6;;-1:-1:-1;;;;;42020:6:0;16261:10;42167:23;42159:68;;;;-1:-1:-1;;;42159:68:0;;;;;;;:::i;:::-;46780:1:::1;46766:11;:15;46758:55;;;::::0;-1:-1:-1;;;46758:55:0;;19757:2:1;46758:55:0::1;::::0;::::1;19739:21:1::0;19796:2;19776:18;;;19769:30;19835:29;19815:18;;;19808:57;19882:18;;46758:55:0::1;19555:351:1::0;46758:55:0::1;46824:14;46841:13;35531:10:::0;:17;;35443:113;46841:13:::1;46897:9;::::0;46824:30;;-1:-1:-1;46873:20:0::1;46882:11:::0;46824:30;46873:20:::1;:::i;:::-;:33;;46865:68;;;::::0;-1:-1:-1;;;46865:68:0;;14394:2:1;46865:68:0::1;::::0;::::1;14376:21:1::0;14433:2;14413:18;;;14406:30;-1:-1:-1;;;14452:18:1;;;14445:52;14514:18;;46865:68:0::1;14192:346:1::0;46865:68:0::1;46963:1;46946:154;46971:11;46966:1;:16;46946:154;;-1:-1:-1::0;;;;;47004:33:0;::::1;;::::0;;;:20:::1;:33;::::0;;;;:35;;;::::1;::::0;::::1;:::i;:::-;::::0;;;-1:-1:-1;47054:34:0::1;::::0;-1:-1:-1;47064:11:0;47077:10:::1;47086:1:::0;47077:6;:10:::1;:::i;:::-;47054:9;:34::i;:::-;46984:3:::0;::::1;::::0;::::1;:::i;:::-;;;;46946:154;;;;46747:360;46674:433:::0;;:::o;49014:100::-;42020:6;;-1:-1:-1;;;;;42020:6:0;16261:10;42167:23;42159:68;;;;-1:-1:-1;;;42159:68:0;;;;;;;:::i;:::-;49084:11:::1;:22:::0;49014:100::o;21873:104::-;21929:13;21962:7;21955:14;;;;;:::i;45958:704::-;44378:6;;;;44377:7;44369:42;;;;-1:-1:-1;;;44369:42:0;;15880:2:1;44369:42:0;;;15862:21:1;15919:2;15899:18;;;15892:30;-1:-1:-1;;;15938:18:1;;;15931:52;16000:18;;44369:42:0;15678:346:1;44369:42:0;44499:11:::1;;44480:15;:30;;44472:67;;;::::0;-1:-1:-1;;;44472:67:0;;9262:2:1;44472:67:0::1;::::0;::::1;9244:21:1::0;9301:2;9281:18;;;9274:30;9340:26;9320:18;;;9313:54;9384:18;;44472:67:0::1;9060:348:1::0;44472:67:0::1;46048:11:::2;44648:1;44634:11;:15;44626:55;;;::::0;-1:-1:-1;;;44626:55:0;;19757:2:1;44626:55:0::2;::::0;::::2;19739:21:1::0;19796:2;19776:18;;;19769:30;19835:29;19815:18;;;19808:57;19882:18;;44626:55:0::2;19555:351:1::0;44626:55:0::2;46072:14:::3;46089:13;35531:10:::0;:17;;35443:113;46089:13:::3;46161:10;46113:24;46140:32:::0;;;:20:::3;:32;::::0;;;;;46280:14:::3;::::0;46072:30;;-1:-1:-1;46140:32:0;46262:15:::3;:32;:147;;46357:52;46379:16;46397:11;46357:21;:52::i;:::-;46262:147;;;46297:57;46316:16;46334:11;46347:6;46297:18;:57::i;:::-;46454:9;::::0;46430:20:::3;46439:11:::0;46430:6;:20:::3;:::i;:::-;:33;;46422:68;;;::::0;-1:-1:-1;;;46422:68:0;;14394:2:1;46422:68:0::3;::::0;::::3;14376:21:1::0;14433:2;14413:18;;;14406:30;-1:-1:-1;;;14452:18:1;;;14445:52;14514:18;;46422:68:0::3;14192:346:1::0;46422:68:0::3;46520:1;46503:152;46528:11;46523:1;:16;46503:152;;46582:10;46561:32;::::0;;;:20:::3;:32;::::0;;;;:34;;;::::3;::::0;::::3;:::i;:::-;::::0;;;-1:-1:-1;46610:33:0::3;::::0;-1:-1:-1;46620:10:0::3;46632;46641:1:::0;46632:6;:10:::3;:::i;46610:33::-;46541:3:::0;::::3;::::0;::::3;:::i;:::-;;;;46503:152;;;;46061:601;;44550:1:::2;45958:704:::0;:::o;23556:295::-;-1:-1:-1;;;;;23659:24:0;;16261:10;23659:24;;23651:62;;;;-1:-1:-1;;;23651:62:0;;11972:2:1;23651:62:0;;;11954:21:1;12011:2;11991:18;;;11984:30;12050:27;12030:18;;;12023:55;12095:18;;23651:62:0;11770:349:1;23651:62:0;16261:10;23726:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;23726:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;23726:53:0;;;;;;;;;;23795:48;;8784:41:1;;;23726:42:0;;16261:10;23795:48;;8757:18:1;23795:48:0;;;;;;;23556:295;;:::o;48596:69::-;42020:6;;-1:-1:-1;;;;;42020:6:0;16261:10;42167:23;42159:68;;;;-1:-1:-1;;;42159:68:0;;;;;;;:::i;:::-;48642:8:::1;:15:::0;;-1:-1:-1;;48642:15:0::1;;;::::0;;48596:69::o;24819:328::-;24994:41;16261:10;25027:7;24994:18;:41::i;:::-;24986:103;;;;-1:-1:-1;;;24986:103:0;;;;;;;:::i;:::-;25100:39;25114:4;25120:2;25124:7;25133:5;25100:13;:39::i;43420:37::-;;;;;;;:::i;47627:468::-;26722:4;26746:16;;;:7;:16;;;;;;47700:13;;-1:-1:-1;;;;;26746:16:0;47726:76;;;;-1:-1:-1;;;47726:76:0;;17000:2:1;47726:76:0;;;16982:21:1;17039:2;17019:18;;;17012:30;17078:34;17058:18;;;17051:62;-1:-1:-1;;;17129:18:1;;;17122:45;17184:19;;47726:76:0;16798:411:1;47726:76:0;47820:8;;;;;;;47815:273;;47852:14;47845:21;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47627:468;;;:::o;47815:273::-;47899:28;47930:10;:8;:10::i;:::-;47899:41;;47993:1;47968:14;47962:28;:32;:114;;;;;;;;;;;;;;;;;48021:14;48036:18;:7;:16;:18::i;:::-;48056:13;48004:66;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;47962:114;47955:121;47627:468;-1:-1:-1;;;47627:468:0:o;47815:273::-;47627:468;;;:::o;48896:110::-;42020:6;;-1:-1:-1;;;;;42020:6:0;16261:10;42167:23;42159:68;;;;-1:-1:-1;;;42159:68:0;;;;;;;:::i;:::-;48971:18:::1;:27:::0;48896:110::o;49606:128::-;42020:6;;-1:-1:-1;;;;;42020:6:0;16261:10;42167:23;42159:68;;;;-1:-1:-1;;;42159:68:0;;;;;;;:::i;:::-;49693:33;;::::1;::::0;:13:::1;::::0;:33:::1;::::0;::::1;::::0;::::1;:::i;50498:202::-:0;42020:6;;-1:-1:-1;;;;;42020:6:0;16261:10;42167:23;42159:68;;;;-1:-1:-1;;;42159:68:0;;;;;;;:::i;:::-;50583:9:::1;50578:115;50602:9;:16;50598:1;:20;50578:115;;;50677:4;50640:20;:34;50661:9;50671:1;50661:12;;;;;;;;:::i;:::-;;::::0;;::::1;::::0;;;;;;;-1:-1:-1;;;;;50640:34:0::1;::::0;;;::::1;::::0;;;;;;-1:-1:-1;50640:34:0;:41;;-1:-1:-1;;50640:41:0::1;::::0;::::1;;::::0;;;::::1;::::0;;50620:3;::::1;::::0;::::1;:::i;:::-;;;;50578:115;;49742:126:::0;42020:6;;-1:-1:-1;;;;;42020:6:0;16261:10;42167:23;42159:68;;;;-1:-1:-1;;;42159:68:0;;;;;;;:::i;:::-;49828:32;;::::1;::::0;:14:::1;::::0;:32:::1;::::0;::::1;::::0;::::1;:::i;42847:192::-:0;42020:6;;-1:-1:-1;;;;;42020:6:0;16261:10;42167:23;42159:68;;;;-1:-1:-1;;;42159:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;42936:22:0;::::1;42928:73;;;::::0;-1:-1:-1;;;42928:73:0;;10446:2:1;42928:73:0::1;::::0;::::1;10428:21:1::0;10485:2;10465:18;;;10458:30;10524:34;10504:18;;;10497:62;-1:-1:-1;;;10575:18:1;;;10568:36;10621:19;;42928:73:0::1;10244:402:1::0;42928:73:0::1;43012:19;43022:8;43012:9;:19::i;20759:305::-:0;20861:4;-1:-1:-1;;;;;;20898:40:0;;-1:-1:-1;;;20898:40:0;;:105;;-1:-1:-1;;;;;;;20955:48:0;;-1:-1:-1;;;20955:48:0;20898:105;:158;;;-1:-1:-1;;;;;;;;;;19372:40:0;;;21020:36;19263:157;30639:174;30714:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;30714:29:0;-1:-1:-1;;;;;30714:29:0;;;;;;;;:24;;30768:23;30714:24;30768:14;:23::i;:::-;-1:-1:-1;;;;;30759:46:0;;;;;;;;;;;30639:174;;:::o;26951:348::-;27044:4;26746:16;;;:7;:16;;;;;;-1:-1:-1;;;;;26746:16:0;27061:73;;;;-1:-1:-1;;;27061:73:0;;12735:2:1;27061:73:0;;;12717:21:1;12774:2;12754:18;;;12747:30;12813:34;12793:18;;;12786:62;-1:-1:-1;;;12864:18:1;;;12857:42;12916:19;;27061:73:0;12533:408:1;27061:73:0;27145:13;27161:23;27176:7;27161:14;:23::i;:::-;27145:39;;27214:5;-1:-1:-1;;;;;27203:16:0;:7;-1:-1:-1;;;;;27203:16:0;;:51;;;;27247:7;-1:-1:-1;;;;;27223:31:0;:20;27235:7;27223:11;:20::i;:::-;-1:-1:-1;;;;;27223:31:0;;27203:51;:87;;;-1:-1:-1;;;;;;24043:25:0;;;24019:4;24043:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;27258:32;27195:96;26951:348;-1:-1:-1;;;;26951:348:0:o;29943:578::-;30102:4;-1:-1:-1;;;;;30075:31:0;:23;30090:7;30075:14;:23::i;:::-;-1:-1:-1;;;;;30075:31:0;;30067:85;;;;-1:-1:-1;;;30067:85:0;;16231:2:1;30067:85:0;;;16213:21:1;16270:2;16250:18;;;16243:30;16309:34;16289:18;;;16282:62;-1:-1:-1;;;16360:18:1;;;16353:39;16409:19;;30067:85:0;16029:405:1;30067:85:0;-1:-1:-1;;;;;30171:16:0;;30163:65;;;;-1:-1:-1;;;30163:65:0;;11567:2:1;30163:65:0;;;11549:21:1;11606:2;11586:18;;;11579:30;11645:34;11625:18;;;11618:62;-1:-1:-1;;;11696:18:1;;;11689:34;11740:19;;30163:65:0;11365:400:1;30163:65:0;30241:39;30262:4;30268:2;30272:7;30241:20;:39::i;:::-;30345:29;30362:1;30366:7;30345:8;:29::i;:::-;-1:-1:-1;;;;;30387:15:0;;;;;;:9;:15;;;;;:20;;30406:1;;30387:15;:20;;30406:1;;30387:20;:::i;:::-;;;;-1:-1:-1;;;;;;;30418:13:0;;;;;;:9;:13;;;;;:18;;30435:1;;30418:13;:18;;30435:1;;30418:18;:::i;:::-;;;;-1:-1:-1;;30447:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;30447:21:0;-1:-1:-1;;;;;30447:21:0;;;;;;;;;30486:27;;30447:16;;30486:27;;;;;;;29943:578;;;:::o;43047:173::-;43122:6;;;-1:-1:-1;;;;;43139:17:0;;;-1:-1:-1;;;;;;43139:17:0;;;;;;;43172:40;;43122:6;;;43139:17;43122:6;;43172:40;;43103:16;;43172:40;43092:128;43047:173;:::o;27641:110::-;27717:26;27727:2;27731:7;27717:26;;;;;;;;;;;;:9;:26::i;45574:364::-;45716:18;;45681:31;45701:11;45681:17;:31;:::i;:::-;:53;;45673:93;;;;-1:-1:-1;;;45673:93:0;;11210:2:1;45673:93:0;;;11192:21:1;11249:2;11229:18;;;11222:30;11288;11268:18;;;11261:58;11336:18;;45673:93:0;11008:352:1;45673:93:0;45805:11;45798:4;;:18;;;;:::i;:::-;45785:9;:31;;45777:62;;;;-1:-1:-1;;;45777:62:0;;17818:2:1;45777:62:0;;;17800:21:1;17857:2;17837:18;;;17830:30;-1:-1:-1;;;17876:18:1;;;17869:48;17934:18;;45777:62:0;17616:342:1;45777:62:0;45873:13;;45858:11;:28;;45850:80;;;;-1:-1:-1;;;45850:80:0;;;;;;;:::i;44842:724::-;44959:18;45010:14;;44992:15;:32;:79;;-1:-1:-1;45067:4:0;;;44992:79;;;-1:-1:-1;45040:11:0;;;44992:79;-1:-1:-1;45108:10:0;47194:4;47218:27;;;:20;:27;;;;;;;;45086:61;;;;-1:-1:-1;;;45086:61:0;;19405:2:1;45086:61:0;;;19387:21:1;19444:2;19424:18;;;19417:30;19483:25;19463:18;;;19456:53;19526:18;;45086:61:0;19203:347:1;45086:61:0;45205:25;;45170:31;45190:11;45170:17;:31;:::i;:::-;:60;;45162:113;;;;-1:-1:-1;;;45162:113:0;;18165:2:1;45162:113:0;;;18147:21:1;18204:2;18184:18;;;18177:30;18243:34;18223:18;;;18216:62;-1:-1:-1;;;18294:18:1;;;18287:38;18342:19;;45162:113:0;17963:404:1;45162:113:0;45311:24;45324:11;45311:10;:24;:::i;:::-;45298:9;:37;;45290:68;;;;-1:-1:-1;;;45290:68:0;;17818:2:1;45290:68:0;;;17800:21:1;17857:2;17837:18;;;17830:30;-1:-1:-1;;;17876:18:1;;;17869:48;17934:18;;45290:68:0;17616:342:1;45290:68:0;45396:20;;45381:11;:35;;45373:87;;;;-1:-1:-1;;;45373:87:0;;;;;;;:::i;:::-;45508:16;;45483:21;45493:11;45483:7;:21;:::i;:::-;:41;;45475:83;;;;-1:-1:-1;;;45475:83:0;;16641:2:1;45475:83:0;;;16623:21:1;16680:2;16660:18;;;16653:30;16719:32;16699:18;;;16692:60;16769:18;;45475:83:0;16439:354:1;26029:315:0;26186:28;26196:4;26202:2;26206:7;26186:9;:28::i;:::-;26233:48;26256:4;26262:2;26266:7;26275:5;26233:22;:48::i;:::-;26225:111;;;;-1:-1:-1;;;26225:111:0;;;;;;;:::i;44726:108::-;44786:13;44819:7;44812:14;;;;;:::i;16706:723::-;16762:13;16983:10;16979:53;;-1:-1:-1;;17010:10:0;;;;;;;;;;;;-1:-1:-1;;;17010:10:0;;;;;16706:723::o;16979:53::-;17057:5;17042:12;17098:78;17105:9;;17098:78;;17131:8;;;;:::i;:::-;;-1:-1:-1;17154:10:0;;-1:-1:-1;17162:2:0;17154:10;;:::i;:::-;;;17098:78;;;17186:19;17218:6;17208:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;17208:17:0;;17186:39;;17236:154;17243:10;;17236:154;;17270:11;17280:1;17270:11;;:::i;:::-;;-1:-1:-1;17339:10:0;17347:2;17339:5;:10;:::i;:::-;17326:24;;:2;:24;:::i;:::-;17313:39;;17296:6;17303;17296:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;17296:56:0;;;;;;;;-1:-1:-1;17367:11:0;17376:2;17367:11;;:::i;:::-;;;17236:154;;36479:589;-1:-1:-1;;;;;36685:18:0;;36681:187;;36720:40;36752:7;37895:10;:17;;37868:24;;;;:15;:24;;;;;:44;;;37923:24;;;;;;;;;;;;37791:164;36720:40;36681:187;;;36790:2;-1:-1:-1;;;;;36782:10:0;:4;-1:-1:-1;;;;;36782:10:0;;36778:90;;36809:47;36842:4;36848:7;36809:32;:47::i;:::-;-1:-1:-1;;;;;36882:16:0;;36878:183;;36915:45;36952:7;36915:36;:45::i;36878:183::-;36988:4;-1:-1:-1;;;;;36982:10:0;:2;-1:-1:-1;;;;;36982:10:0;;36978:83;;37009:40;37037:2;37041:7;37009:27;:40::i;27978:321::-;28108:18;28114:2;28118:7;28108:5;:18::i;:::-;28159:54;28190:1;28194:2;28198:7;28207:5;28159:22;:54::i;:::-;28137:154;;;;-1:-1:-1;;;28137:154:0;;;;;;;:::i;31378:799::-;31533:4;-1:-1:-1;;;;;31554:13:0;;8548:20;8596:8;31550:620;;31590:72;;-1:-1:-1;;;31590:72:0;;-1:-1:-1;;;;;31590:36:0;;;;;:72;;16261:10;;31641:4;;31647:7;;31656:5;;31590:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;31590:72:0;;;;;;;;-1:-1:-1;;31590:72:0;;;;;;;;;;;;:::i;:::-;;;31586:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;31832:13:0;;31828:272;;31875:60;;-1:-1:-1;;;31875:60:0;;;;;;;:::i;31828:272::-;32050:6;32044:13;32035:6;32031:2;32027:15;32020:38;31586:529;-1:-1:-1;;;;;;31713:51:0;-1:-1:-1;;;31713:51:0;;-1:-1:-1;31706:58:0;;31550:620;-1:-1:-1;32154:4:0;31378:799;;;;;;:::o;38582:988::-;38848:22;38898:1;38873:22;38890:4;38873:16;:22::i;:::-;:26;;;;:::i;:::-;38910:18;38931:26;;;:17;:26;;;;;;38848:51;;-1:-1:-1;39064:28:0;;;39060:328;;-1:-1:-1;;;;;39131:18:0;;39109:19;39131:18;;;:12;:18;;;;;;;;:34;;;;;;;;;39182:30;;;;;;:44;;;39299:30;;:17;:30;;;;;:43;;;39060:328;-1:-1:-1;39484:26:0;;;;:17;:26;;;;;;;;39477:33;;;-1:-1:-1;;;;;39528:18:0;;;;;:12;:18;;;;;:34;;;;;;;39521:41;38582:988::o;39865:1079::-;40143:10;:17;40118:22;;40143:21;;40163:1;;40143:21;:::i;:::-;40175:18;40196:24;;;:15;:24;;;;;;40569:10;:26;;40118:46;;-1:-1:-1;40196:24:0;;40118:46;;40569:26;;;;;;:::i;:::-;;;;;;;;;40547:48;;40633:11;40608:10;40619;40608:22;;;;;;;;:::i;:::-;;;;;;;;;;;;:36;;;;40713:28;;;:15;:28;;;;;;;:41;;;40885:24;;;;;40878:31;40920:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;39936:1008;;;39865:1079;:::o;37369:221::-;37454:14;37471:20;37488:2;37471:16;:20::i;:::-;-1:-1:-1;;;;;37502:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;37547:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;37369:221:0:o;28635:382::-;-1:-1:-1;;;;;28715:16:0;;28707:61;;;;-1:-1:-1;;;28707:61:0;;14745:2:1;28707:61:0;;;14727:21:1;;;14764:18;;;14757:30;14823:34;14803:18;;;14796:62;14875:18;;28707:61:0;14543:356:1;28707:61:0;26722:4;26746:16;;;:7;:16;;;;;;-1:-1:-1;;;;;26746:16:0;:30;28779:58;;;;-1:-1:-1;;;28779:58:0;;10853:2:1;28779:58:0;;;10835:21:1;10892:2;10872:18;;;10865:30;10931;10911:18;;;10904:58;10979:18;;28779:58:0;10651:352:1;28779:58:0;28850:45;28879:1;28883:2;28887:7;28850:20;:45::i;:::-;-1:-1:-1;;;;;28908:13:0;;;;;;:9;:13;;;;;:18;;28925:1;;28908:13;:18;;28925:1;;28908:18;:::i;:::-;;;;-1:-1:-1;;28937:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;28937:21:0;-1:-1:-1;;;;;28937:21:0;;;;;;;;28976:33;;28937:16;;;28976:33;;28937:16;;28976:33;28635:382;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:406:1;78:5;112:18;104:6;101:30;98:56;;;134:18;;:::i;:::-;172:57;217:2;196:15;;-1:-1:-1;;192:29:1;223:4;188:40;172:57;:::i;:::-;163:66;;252:6;245:5;238:21;292:3;283:6;278:3;274:16;271:25;268:45;;;309:1;306;299:12;268:45;358:6;353:3;346:4;339:5;335:16;322:43;412:1;405:4;396:6;389:5;385:18;381:29;374:40;14:406;;;;;:::o;425:173::-;493:20;;-1:-1:-1;;;;;542:31:1;;532:42;;522:70;;588:1;585;578:12;603:160;668:20;;724:13;;717:21;707:32;;697:60;;753:1;750;743:12;768:186;827:6;880:2;868:9;859:7;855:23;851:32;848:52;;;896:1;893;886:12;848:52;919:29;938:9;919:29;:::i;959:260::-;1027:6;1035;1088:2;1076:9;1067:7;1063:23;1059:32;1056:52;;;1104:1;1101;1094:12;1056:52;1127:29;1146:9;1127:29;:::i;:::-;1117:39;;1175:38;1209:2;1198:9;1194:18;1175:38;:::i;:::-;1165:48;;959:260;;;;;:::o;1224:328::-;1301:6;1309;1317;1370:2;1358:9;1349:7;1345:23;1341:32;1338:52;;;1386:1;1383;1376:12;1338:52;1409:29;1428:9;1409:29;:::i;:::-;1399:39;;1457:38;1491:2;1480:9;1476:18;1457:38;:::i;:::-;1447:48;;1542:2;1531:9;1527:18;1514:32;1504:42;;1224:328;;;;;:::o;1557:666::-;1652:6;1660;1668;1676;1729:3;1717:9;1708:7;1704:23;1700:33;1697:53;;;1746:1;1743;1736:12;1697:53;1769:29;1788:9;1769:29;:::i;:::-;1759:39;;1817:38;1851:2;1840:9;1836:18;1817:38;:::i;:::-;1807:48;;1902:2;1891:9;1887:18;1874:32;1864:42;;1957:2;1946:9;1942:18;1929:32;1984:18;1976:6;1973:30;1970:50;;;2016:1;2013;2006:12;1970:50;2039:22;;2092:4;2084:13;;2080:27;-1:-1:-1;2070:55:1;;2121:1;2118;2111:12;2070:55;2144:73;2209:7;2204:2;2191:16;2186:2;2182;2178:11;2144:73;:::i;:::-;2134:83;;;1557:666;;;;;;;:::o;2228:254::-;2293:6;2301;2354:2;2342:9;2333:7;2329:23;2325:32;2322:52;;;2370:1;2367;2360:12;2322:52;2393:29;2412:9;2393:29;:::i;:::-;2383:39;;2441:35;2472:2;2461:9;2457:18;2441:35;:::i;2487:254::-;2555:6;2563;2616:2;2604:9;2595:7;2591:23;2587:32;2584:52;;;2632:1;2629;2622:12;2584:52;2655:29;2674:9;2655:29;:::i;:::-;2645:39;2731:2;2716:18;;;;2703:32;;-1:-1:-1;;;2487:254:1:o;2746:963::-;2830:6;2861:2;2904;2892:9;2883:7;2879:23;2875:32;2872:52;;;2920:1;2917;2910:12;2872:52;2960:9;2947:23;2989:18;3030:2;3022:6;3019:14;3016:34;;;3046:1;3043;3036:12;3016:34;3084:6;3073:9;3069:22;3059:32;;3129:7;3122:4;3118:2;3114:13;3110:27;3100:55;;3151:1;3148;3141:12;3100:55;3187:2;3174:16;3209:2;3205;3202:10;3199:36;;;3215:18;;:::i;:::-;3261:2;3258:1;3254:10;3244:20;;3284:28;3308:2;3304;3300:11;3284:28;:::i;:::-;3346:15;;;3377:12;;;;3409:11;;;3439;;;3435:20;;3432:33;-1:-1:-1;3429:53:1;;;3478:1;3475;3468:12;3429:53;3500:1;3491:10;;3510:169;3524:2;3521:1;3518:9;3510:169;;;3581:23;3600:3;3581:23;:::i;:::-;3569:36;;3542:1;3535:9;;;;;3625:12;;;;3657;;3510:169;;;-1:-1:-1;3698:5:1;2746:963;-1:-1:-1;;;;;;;;2746:963:1:o;3714:180::-;3770:6;3823:2;3811:9;3802:7;3798:23;3794:32;3791:52;;;3839:1;3836;3829:12;3791:52;3862:26;3878:9;3862:26;:::i;3899:245::-;3957:6;4010:2;3998:9;3989:7;3985:23;3981:32;3978:52;;;4026:1;4023;4016:12;3978:52;4065:9;4052:23;4084:30;4108:5;4084:30;:::i;4149:249::-;4218:6;4271:2;4259:9;4250:7;4246:23;4242:32;4239:52;;;4287:1;4284;4277:12;4239:52;4319:9;4313:16;4338:30;4362:5;4338:30;:::i;4403:450::-;4472:6;4525:2;4513:9;4504:7;4500:23;4496:32;4493:52;;;4541:1;4538;4531:12;4493:52;4581:9;4568:23;4614:18;4606:6;4603:30;4600:50;;;4646:1;4643;4636:12;4600:50;4669:22;;4722:4;4714:13;;4710:27;-1:-1:-1;4700:55:1;;4751:1;4748;4741:12;4700:55;4774:73;4839:7;4834:2;4821:16;4816:2;4812;4808:11;4774:73;:::i;4858:180::-;4917:6;4970:2;4958:9;4949:7;4945:23;4941:32;4938:52;;;4986:1;4983;4976:12;4938:52;-1:-1:-1;5009:23:1;;4858:180;-1:-1:-1;4858:180:1:o;5043:254::-;5111:6;5119;5172:2;5160:9;5151:7;5147:23;5143:32;5140:52;;;5188:1;5185;5178:12;5140:52;5224:9;5211:23;5201:33;;5253:38;5287:2;5276:9;5272:18;5253:38;:::i;5302:257::-;5343:3;5381:5;5375:12;5408:6;5403:3;5396:19;5424:63;5480:6;5473:4;5468:3;5464:14;5457:4;5450:5;5446:16;5424:63;:::i;:::-;5541:2;5520:15;-1:-1:-1;;5516:29:1;5507:39;;;;5548:4;5503:50;;5302:257;-1:-1:-1;;5302:257:1:o;5564:1527::-;5788:3;5826:6;5820:13;5852:4;5865:51;5909:6;5904:3;5899:2;5891:6;5887:15;5865:51;:::i;:::-;5979:13;;5938:16;;;;6001:55;5979:13;5938:16;6023:15;;;6001:55;:::i;:::-;6145:13;;6078:20;;;6118:1;;6205;6227:18;;;;6280;;;;6307:93;;6385:4;6375:8;6371:19;6359:31;;6307:93;6448:2;6438:8;6435:16;6415:18;6412:40;6409:167;;;-1:-1:-1;;;6475:33:1;;6531:4;6528:1;6521:15;6561:4;6482:3;6549:17;6409:167;6592:18;6619:110;;;;6743:1;6738:328;;;;6585:481;;6619:110;-1:-1:-1;;6654:24:1;;6640:39;;6699:20;;;;-1:-1:-1;6619:110:1;;6738:328;20446:1;20439:14;;;20483:4;20470:18;;6833:1;6847:169;6861:8;6858:1;6855:15;6847:169;;;6943:14;;6928:13;;;6921:37;6986:16;;;;6878:10;;6847:169;;;6851:3;;7047:8;7040:5;7036:20;7029:27;;6585:481;-1:-1:-1;7082:3:1;;5564:1527;-1:-1:-1;;;;;;;;;;;5564:1527:1:o;7514:488::-;-1:-1:-1;;;;;7783:15:1;;;7765:34;;7835:15;;7830:2;7815:18;;7808:43;7882:2;7867:18;;7860:34;;;7930:3;7925:2;7910:18;;7903:31;;;7708:4;;7951:45;;7976:19;;7968:6;7951:45;:::i;:::-;7943:53;7514:488;-1:-1:-1;;;;;;7514:488:1:o;8007:632::-;8178:2;8230:21;;;8300:13;;8203:18;;;8322:22;;;8149:4;;8178:2;8401:15;;;;8375:2;8360:18;;;8149:4;8444:169;8458:6;8455:1;8452:13;8444:169;;;8519:13;;8507:26;;8588:15;;;;8553:12;;;;8480:1;8473:9;8444:169;;;-1:-1:-1;8630:3:1;;8007:632;-1:-1:-1;;;;;;8007:632:1:o;8836:219::-;8985:2;8974:9;8967:21;8948:4;9005:44;9045:2;9034:9;9030:18;9022:6;9005:44;:::i;9825:414::-;10027:2;10009:21;;;10066:2;10046:18;;;10039:30;10105:34;10100:2;10085:18;;10078:62;-1:-1:-1;;;10171:2:1;10156:18;;10149:48;10229:3;10214:19;;9825:414::o;12124:404::-;12326:2;12308:21;;;12365:2;12345:18;;;12338:30;12404:34;12399:2;12384:18;;12377:62;-1:-1:-1;;;12470:2:1;12455:18;;12448:38;12518:3;12503:19;;12124:404::o;15317:356::-;15519:2;15501:21;;;15538:18;;;15531:30;15597:34;15592:2;15577:18;;15570:62;15664:2;15649:18;;15317:356::o;18372:413::-;18574:2;18556:21;;;18613:2;18593:18;;;18586:30;18652:34;18647:2;18632:18;;18625:62;-1:-1:-1;;;18718:2:1;18703:18;;18696:47;18775:3;18760:19;;18372:413::o;20093:275::-;20164:2;20158:9;20229:2;20210:13;;-1:-1:-1;;20206:27:1;20194:40;;20264:18;20249:34;;20285:22;;;20246:62;20243:88;;;20311:18;;:::i;:::-;20347:2;20340:22;20093:275;;-1:-1:-1;20093:275:1:o;20499:128::-;20539:3;20570:1;20566:6;20563:1;20560:13;20557:39;;;20576:18;;:::i;:::-;-1:-1:-1;20612:9:1;;20499:128::o;20632:120::-;20672:1;20698;20688:35;;20703:18;;:::i;:::-;-1:-1:-1;20737:9:1;;20632:120::o;20757:168::-;20797:7;20863:1;20859;20855:6;20851:14;20848:1;20845:21;20840:1;20833:9;20826:17;20822:45;20819:71;;;20870:18;;:::i;:::-;-1:-1:-1;20910:9:1;;20757:168::o;20930:125::-;20970:4;20998:1;20995;20992:8;20989:34;;;21003:18;;:::i;:::-;-1:-1:-1;21040:9:1;;20930:125::o;21060:258::-;21132:1;21142:113;21156:6;21153:1;21150:13;21142:113;;;21232:11;;;21226:18;21213:11;;;21206:39;21178:2;21171:10;21142:113;;;21273:6;21270:1;21267:13;21264:48;;;-1:-1:-1;;21308:1:1;21290:16;;21283:27;21060:258::o;21323:380::-;21402:1;21398:12;;;;21445;;;21466:61;;21520:4;21512:6;21508:17;21498:27;;21466:61;21573:2;21565:6;21562:14;21542:18;21539:38;21536:161;;;21619:10;21614:3;21610:20;21607:1;21600:31;21654:4;21651:1;21644:15;21682:4;21679:1;21672:15;21536:161;;21323:380;;;:::o;21708:135::-;21747:3;-1:-1:-1;;21768:17:1;;21765:43;;;21788:18;;:::i;:::-;-1:-1:-1;21835:1:1;21824:13;;21708:135::o;21848:112::-;21880:1;21906;21896:35;;21911:18;;:::i;:::-;-1:-1:-1;21945:9:1;;21848:112::o;21965:127::-;22026:10;22021:3;22017:20;22014:1;22007:31;22057:4;22054:1;22047:15;22081:4;22078:1;22071:15;22097:127;22158:10;22153:3;22149:20;22146:1;22139:31;22189:4;22186:1;22179:15;22213:4;22210:1;22203:15;22229:127;22290:10;22285:3;22281:20;22278:1;22271:31;22321:4;22318:1;22311:15;22345:4;22342:1;22335:15;22361:127;22422:10;22417:3;22413:20;22410:1;22403:31;22453:4;22450:1;22443:15;22477:4;22474:1;22467:15;22493:127;22554:10;22549:3;22545:20;22542:1;22535:31;22585:4;22582:1;22575:15;22609:4;22606:1;22599:15;22625:131;-1:-1:-1;;;;;;22699:32:1;;22689:43;;22679:71;;22746:1;22743;22736:12
Swarm Source
ipfs://7e92e0e8039b936bf574817365cfca1bf8631889eebaa0cfaad1ee88a1529567
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 29 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.