Feature Tip: Add private address tag to any address under My Name Tag !
Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 11 from a total of 11 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Pre Mint Angel | 13740860 | 1156 days ago | IN | 0.05 ETH | 0.01880359 | ||||
Pre Mint Angel | 13730843 | 1158 days ago | IN | 0.05 ETH | 0.02663836 | ||||
Pre Mint Angel | 13729710 | 1158 days ago | IN | 0.05 ETH | 0.01921425 | ||||
Pre Mint Angel | 13725833 | 1158 days ago | IN | 0.05 ETH | 0.01329486 | ||||
Pre Mint Angel | 13725833 | 1158 days ago | IN | 0.05 ETH | 0.01310393 | ||||
Pre Mint Angel | 13725788 | 1158 days ago | IN | 0.05 ETH | 0.01861014 | ||||
Pre Mint Angel | 13725788 | 1158 days ago | IN | 0.05 ETH | 0.01833899 | ||||
Pre Mint Angel | 13725649 | 1158 days ago | IN | 0.05 ETH | 0.00320796 | ||||
Pre Mint Angel | 13725597 | 1158 days ago | IN | 0.05 ETH | 0.00318821 | ||||
Pre Mint Angel | 13725585 | 1158 days ago | IN | 0.1 ETH | 0.00434497 | ||||
Pre Mint Angel | 13725582 | 1158 days ago | IN | 0.1 ETH | 0.0040518 |
Loading...
Loading
Contract Source Code Verified (Exact Match)
Contract Name:
AngelApes
Compiler Version
v0.8.7+commit.e28d00a7
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2021-11-29 */ // SPDX-License-Identifier: MIT // File: @openzeppelin/contracts/token/ERC20/IERC20.sol pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `recipient`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address recipient, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `sender` to `recipient` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom( address sender, address recipient, uint256 amount ) external returns (bool); /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); } // File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/security/ReentrancyGuard.sol // OpenZeppelin Contracts v4.3.2 (security/ReentrancyGuard.sol) pragma solidity ^0.8.0; /** * @dev Contract module that helps prevent reentrant calls to a function. * * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier * available, which can be applied to functions to make sure there are no nested * (reentrant) calls to them. * * Note that because there is a single `nonReentrant` guard, functions marked as * `nonReentrant` may not call one another. This can be worked around by making * those functions `private`, and then adding `external` `nonReentrant` entry * points to them. * * TIP: If you would like to learn more about reentrancy and alternative ways * to protect against it, check out our blog post * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul]. */ abstract contract ReentrancyGuard { // Booleans are more expensive than uint256 or any type that takes up a full // word because each write operation emits an extra SLOAD to first read the // slot's contents, replace the bits taken up by the boolean, and then write // back. This is the compiler's defense against contract upgrades and // pointer aliasing, and it cannot be disabled. // The values being non-zero value makes deployment a bit more expensive, // but in exchange the refund on every call to nonReentrant will be lower in // amount. Since refunds are capped to a percentage of the total // transaction's gas, it is best to keep them low in cases like this one, to // increase the likelihood of the full refund coming into effect. uint256 private constant _NOT_ENTERED = 1; uint256 private constant _ENTERED = 2; uint256 private _status; constructor() { _status = _NOT_ENTERED; } /** * @dev Prevents a contract from calling itself, directly or indirectly. * Calling a `nonReentrant` function from another `nonReentrant` * function is not supported. It is possible to prevent this from happening * by making the `nonReentrant` function external, and making it call a * `private` function that does the actual work. */ modifier nonReentrant() { // On the first call to nonReentrant, _notEntered will be true require(_status != _ENTERED, "ReentrancyGuard: reentrant call"); // Any calls to nonReentrant after this point will fail _status = _ENTERED; _; // By storing the original value once again, a refund is triggered (see // https://eips.ethereum.org/EIPS/eip-2200) _status = _NOT_ENTERED; } } // File: @openzeppelin/contracts/utils/Strings.sol pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } } // File: @openzeppelin/contracts/utils/Address.sol pragma solidity ^0.8.0; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; assembly { size := extcodesize(account) } return size > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } // File: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } // File: @openzeppelin/contracts/utils/introspection/IERC165.sol pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); } // File: @openzeppelin/contracts/utils/introspection/ERC165.sol pragma solidity ^0.8.0; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } } // File: @openzeppelin/contracts/token/ERC721/IERC721.sol pragma solidity ^0.8.0; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; } // File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.sol pragma solidity ^0.8.0; /** * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Enumerable is IERC721 { /** * @dev Returns the total amount of tokens stored by the contract. */ function totalSupply() external view returns (uint256); /** * @dev Returns a token ID owned by `owner` at a given `index` of its token list. * Use along with {balanceOf} to enumerate all of ``owner``'s tokens. */ function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256 tokenId); /** * @dev Returns a token ID at a given `index` of all the tokens stored by the contract. * Use along with {totalSupply} to enumerate all tokens. */ function tokenByIndex(uint256 index) external view returns (uint256); } // File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol pragma solidity ^0.8.0; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); } // File: @openzeppelin/contracts/utils/Context.sol pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File: @openzeppelin/contracts/token/ERC721/ERC721.sol pragma solidity ^0.8.0; /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension, but not including the Enumerable extension, which is available separately as * {ERC721Enumerable}. */ contract ERC721 is Context, ERC165, IERC721, IERC721Metadata { using Address for address; using Strings for uint256; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to owner address mapping(uint256 => address) private _owners; // Mapping owner address to token count mapping(address => uint256) private _balances; // Mapping from token ID to approved address mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; /** * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view virtual override returns (uint256) { require(owner != address(0), "ERC721: balance query for the zero address"); return _balances[owner]; } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { address owner = _owners[tokenId]; require(owner != address(0), "ERC721: owner query for nonexistent token"); return owner; } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token"); string memory baseURI = _baseURI(); return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ""; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overriden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ""; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public virtual override { address owner = ERC721.ownerOf(tokenId); require(to != owner, "ERC721: approval to current owner"); require( _msgSender() == owner || isApprovedForAll(owner, _msgSender()), "ERC721: approve caller is not owner nor approved for all" ); _approve(to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { require(_exists(tokenId), "ERC721: approved query for nonexistent token"); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { require(operator != _msgSender(), "ERC721: approve to caller"); _operatorApprovals[_msgSender()][operator] = approved; emit ApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { //solhint-disable-next-line max-line-length require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ""); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public virtual override { require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _safeTransfer(from, to, tokenId, _data); } /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * `_data` is additional data, it has no specified format and it is sent in call to `to`. * * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g. * implement alternative mechanisms to perform token transfer, such as signature-based. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeTransfer( address from, address to, uint256 tokenId, bytes memory _data ) internal virtual { _transfer(from, to, tokenId); require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer"); } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), * and stop existing when they are burned (`_burn`). */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return _owners[tokenId] != address(0); } /** * @dev Returns whether `spender` is allowed to manage `tokenId`. * * Requirements: * * - `tokenId` must exist. */ function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) { require(_exists(tokenId), "ERC721: operator query for nonexistent token"); address owner = ERC721.ownerOf(tokenId); return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender)); } /** * @dev Safely mints `tokenId` and transfers it to `to`. * * Requirements: * * - `tokenId` must not exist. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeMint(address to, uint256 tokenId) internal virtual { _safeMint(to, tokenId, ""); } /** * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is * forwarded in {IERC721Receiver-onERC721Received} to contract recipients. */ function _safeMint( address to, uint256 tokenId, bytes memory _data ) internal virtual { _mint(to, tokenId); require( _checkOnERC721Received(address(0), to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer" ); } /** * @dev Mints `tokenId` and transfers it to `to`. * * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible * * Requirements: * * - `tokenId` must not exist. * - `to` cannot be the zero address. * * Emits a {Transfer} event. */ function _mint(address to, uint256 tokenId) internal virtual { require(to != address(0), "ERC721: mint to the zero address"); require(!_exists(tokenId), "ERC721: token already minted"); _beforeTokenTransfer(address(0), to, tokenId); _balances[to] += 1; _owners[tokenId] = to; emit Transfer(address(0), to, tokenId); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId) internal virtual { address owner = ERC721.ownerOf(tokenId); _beforeTokenTransfer(owner, address(0), tokenId); // Clear approvals _approve(address(0), tokenId); _balances[owner] -= 1; delete _owners[tokenId]; emit Transfer(owner, address(0), tokenId); } /** * @dev Transfers `tokenId` from `from` to `to`. * As opposed to {transferFrom}, this imposes no restrictions on msg.sender. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) internal virtual { require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer of token that is not own"); require(to != address(0), "ERC721: transfer to the zero address"); _beforeTokenTransfer(from, to, tokenId); // Clear approvals from the previous owner _approve(address(0), tokenId); _balances[from] -= 1; _balances[to] += 1; _owners[tokenId] = to; emit Transfer(from, to, tokenId); } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve(address to, uint256 tokenId) internal virtual { _tokenApprovals[tokenId] = to; emit Approval(ERC721.ownerOf(tokenId), to, tokenId); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address. * The call is not executed if the target address is not a contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { if (to.isContract()) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) { return retval == IERC721Receiver.onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert("ERC721: transfer to non ERC721Receiver implementer"); } else { assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, ``from``'s `tokenId` will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual {} } // File: @openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol pragma solidity ^0.8.0; /** * @dev This implements an optional extension of {ERC721} defined in the EIP that adds * enumerability of all the token ids in the contract as well as all token ids owned by each * account. */ abstract contract ERC721Enumerable is ERC721, IERC721Enumerable { // Mapping from owner to list of owned token IDs mapping(address => mapping(uint256 => uint256)) private _ownedTokens; // Mapping from token ID to index of the owner tokens list mapping(uint256 => uint256) private _ownedTokensIndex; // Array with all token ids, used for enumeration uint256[] private _allTokens; // Mapping from token id to position in the allTokens array mapping(uint256 => uint256) private _allTokensIndex; /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(IERC165, ERC721) returns (bool) { return interfaceId == type(IERC721Enumerable).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}. */ function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) { require(index < ERC721.balanceOf(owner), "ERC721Enumerable: owner index out of bounds"); return _ownedTokens[owner][index]; } /** * @dev See {IERC721Enumerable-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _allTokens.length; } /** * @dev See {IERC721Enumerable-tokenByIndex}. */ function tokenByIndex(uint256 index) public view virtual override returns (uint256) { require(index < ERC721Enumerable.totalSupply(), "ERC721Enumerable: global index out of bounds"); return _allTokens[index]; } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, ``from``'s `tokenId` will be burned. * - `from` cannot be the zero address. * - `to` cannot be the zero address. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual override { super._beforeTokenTransfer(from, to, tokenId); if (from == address(0)) { _addTokenToAllTokensEnumeration(tokenId); } else if (from != to) { _removeTokenFromOwnerEnumeration(from, tokenId); } if (to == address(0)) { _removeTokenFromAllTokensEnumeration(tokenId); } else if (to != from) { _addTokenToOwnerEnumeration(to, tokenId); } } /** * @dev Private function to add a token to this extension's ownership-tracking data structures. * @param to address representing the new owner of the given token ID * @param tokenId uint256 ID of the token to be added to the tokens list of the given address */ function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private { uint256 length = ERC721.balanceOf(to); _ownedTokens[to][length] = tokenId; _ownedTokensIndex[tokenId] = length; } /** * @dev Private function to add a token to this extension's token tracking data structures. * @param tokenId uint256 ID of the token to be added to the tokens list */ function _addTokenToAllTokensEnumeration(uint256 tokenId) private { _allTokensIndex[tokenId] = _allTokens.length; _allTokens.push(tokenId); } /** * @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that * while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for * gas optimizations e.g. when performing a transfer operation (avoiding double writes). * This has O(1) time complexity, but alters the order of the _ownedTokens array. * @param from address representing the previous owner of the given token ID * @param tokenId uint256 ID of the token to be removed from the tokens list of the given address */ function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private { // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and // then delete the last slot (swap and pop). uint256 lastTokenIndex = ERC721.balanceOf(from) - 1; uint256 tokenIndex = _ownedTokensIndex[tokenId]; // When the token to delete is the last token, the swap operation is unnecessary if (tokenIndex != lastTokenIndex) { uint256 lastTokenId = _ownedTokens[from][lastTokenIndex]; _ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token _ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index } // This also deletes the contents at the last position of the array delete _ownedTokensIndex[tokenId]; delete _ownedTokens[from][lastTokenIndex]; } /** * @dev Private function to remove a token from this extension's token tracking data structures. * This has O(1) time complexity, but alters the order of the _allTokens array. * @param tokenId uint256 ID of the token to be removed from the tokens list */ function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private { // To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and // then delete the last slot (swap and pop). uint256 lastTokenIndex = _allTokens.length - 1; uint256 tokenIndex = _allTokensIndex[tokenId]; // When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so // rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding // an 'if' statement (like in _removeTokenFromOwnerEnumeration) uint256 lastTokenId = _allTokens[lastTokenIndex]; _allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token _allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index // This also deletes the contents at the last position of the array delete _allTokensIndex[tokenId]; _allTokens.pop(); } } // File: @openzeppelin/contracts/access/Ownable.sol pragma solidity ^0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _setOwner(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _setOwner(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _setOwner(newOwner); } function _setOwner(address newOwner) private { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // File: contracts/Testing.sol pragma solidity ^0.8.0; contract AngelApes is ERC721Enumerable, Ownable, ReentrancyGuard { using Strings for uint256; uint256 public presaleMaxSupply = 555; uint256 public maxSupply = 6969; uint256 public presaleStart = 1638424800; //Dec 2nd 6AM UTC uint256 public publicsaleStart = 1638511200; //Dec 3rd 6AM UTC uint256 public presaleCost = 0.05 ether; uint256 public publicsaleCost = 0.069 ether; uint256 public BASE_REWARD = 7200; string public baseURI = "https://angelapes.io/metadata/"; string public baseExtension = ".json"; address public DAOWallet = 0x6102c7980D6cc53EB3e6bFa34F54387157a46019; address public fruitTokenAddress; mapping(address => uint256) public userCurrentPoints; mapping(address => uint256) public TotalUserPoints; mapping(uint256=>uint256) public tokenTimings; bool isFirstTime = true; bool isFruitTokenRewardEnabled = false; constructor(string memory name_, string memory symbol_) ERC721(name_, symbol_) { } function preMintAngel(uint256 _count) payable public nonReentrant { uint256 supply = totalSupply(); uint256 currentID; require(_count > 0 && _count <= 2, "You can mint minimum 1, maximum 2 at the presale"); require(supply + _count <= presaleMaxSupply, "Presale has ended"); require(msg.value >= presaleCost * _count, "Ether value sent is below the price"); require(block.timestamp >= presaleStart, "You must wait till presale begins to mint"); (bool sent,) = DAOWallet.call{value: msg.value}(""); require(sent, "Failed to send Ether"); for (uint256 i = 1; i <=_count; i++) { currentID = supply + i; tokenTimings[currentID] = block.timestamp; _safeMint(msg.sender, currentID); } } function mintAngel(uint256 _count) public payable nonReentrant { uint256 supply = totalSupply(); uint256 currentID; require(_count > 0 && _count <= 5, "You can mint minimum 1, maximum 5 at the public sale"); require(supply + _count <= maxSupply, "Sale has ended"); require(msg.value >= publicsaleCost * _count, "Ether value sent is below the price"); require(block.timestamp >= publicsaleStart, "You must wait till public sale begins to mint"); (bool sent,) = owner().call{value: msg.value}(""); require(sent, "Failed to send Ether"); for (uint256 i = 1; i <=_count; i++) { currentID = supply + i; tokenTimings[currentID] = block.timestamp; _safeMint(msg.sender, currentID); } } 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"); userCurrentPoints[from] += block.timestamp - tokenTimings[tokenId]; tokenTimings[tokenId] = block.timestamp; _safeTransfer(from, to, tokenId, _data); } function transferFrom( address from, address to, uint256 tokenId ) public virtual override { require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); userCurrentPoints[from] += block.timestamp - tokenTimings[tokenId]; tokenTimings[tokenId] = block.timestamp; _transfer(from, to, tokenId); } function claimTokens() public { require(isFruitTokenRewardEnabled, "$FRUIT token reward is currently not enabled/paused"); uint256 currentReward = userCurrentPoints[msg.sender]; uint256[] memory tokenIds = tokensOfOwner(msg.sender); for (uint256 i; i < tokenIds.length; i++) { currentReward += block.timestamp - tokenTimings[tokenIds[i]]; tokenTimings[tokenIds[i]] = block.timestamp; } if (currentReward > 0) { TotalUserPoints[msg.sender] += currentReward; userCurrentPoints[msg.sender] = 0; IERC20(fruitTokenAddress).transfer(msg.sender, (currentReward/BASE_REWARD)*10**18); } } function setBaseReward(uint256 _new_base_reward) public onlyOwner { BASE_REWARD = _new_base_reward; } function setFruitTokenAddress(address tokenAddress) public onlyOwner { require(isFirstTime, "Token Address is set already, You can't reset it"); fruitTokenAddress = tokenAddress; isFirstTime = false; } function setCost(uint256 _newCost) public onlyOwner { publicsaleCost = _newCost; } function setBaseExtension(string memory _newBaseExtension) public onlyOwner { baseExtension = _newBaseExtension; } function flipIsFruitTokenRewardEnabled () public onlyOwner { isFruitTokenRewardEnabled = !isFruitTokenRewardEnabled; } function _baseURI() internal view virtual override returns (string memory) { return baseURI; } function displayUserReward(uint256 currentTimestamp, address _address) public view returns(uint256) { uint256 currentReward = userCurrentPoints[_address]; uint256[] memory tokenIds = tokensOfOwner(_address); for (uint256 i; i < tokenIds.length; i++) { require(currentTimestamp>=tokenTimings[tokenIds[i]], "Wrong current timestamp given"); currentReward += currentTimestamp - tokenTimings[tokenIds[i]]; } return (currentReward/BASE_REWARD); } function tokensOfOwner(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"); string memory currentBaseURI = _baseURI(); return bytes(currentBaseURI).length > 0 ? string(abi.encodePacked(currentBaseURI, tokenId.toString(), baseExtension)): ""; } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"string","name":"name_","type":"string"},{"internalType":"string","name":"symbol_","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"BASE_REWARD","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"DAOWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"TotalUserPoints","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":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"claimTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"currentTimestamp","type":"uint256"},{"internalType":"address","name":"_address","type":"address"}],"name":"displayUserReward","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"flipIsFruitTokenRewardEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"fruitTokenAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_count","type":"uint256"}],"name":"mintAngel","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","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":"uint256","name":"_count","type":"uint256"}],"name":"preMintAngel","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"presaleCost","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":"presaleStart","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicsaleCost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicsaleStart","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","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":"uint256","name":"_new_base_reward","type":"uint256"}],"name":"setBaseReward","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newCost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"tokenAddress","type":"address"}],"name":"setFruitTokenAddress","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":"","type":"uint256"}],"name":"tokenTimings","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":[{"internalType":"address","name":"_owner","type":"address"}],"name":"tokensOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"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":"","type":"address"}],"name":"userCurrentPoints","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"}]
Contract Creation Code
61022b600c55611b39600d556361a860e0600e556361a9b260600f5566b1a2bc2ec5000060105566f5232269808000601155611c2060125560c0604052601e60808190527f68747470733a2f2f616e67656c617065732e696f2f6d657461646174612f000060a0908152620000789160139190620001bb565b5060408051808201909152600580825264173539b7b760d91b6020909201918252620000a791601491620001bb565b50601580546001600160a01b031916736102c7980d6cc53eb3e6bfa34f54387157a46019179055601a805461ffff19166001179055348015620000e957600080fd5b50604051620030f1380380620030f18339810160408190526200010c9162000318565b81518290829062000125906000906020850190620001bb565b5080516200013b906001906020840190620001bb565b50505062000158620001526200016560201b60201c565b62000169565b50506001600b55620003d5565b3390565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b828054620001c99062000382565b90600052602060002090601f016020900481019282620001ed576000855562000238565b82601f106200020857805160ff191683800117855562000238565b8280016001018555821562000238579182015b82811115620002385782518255916020019190600101906200021b565b50620002469291506200024a565b5090565b5b808211156200024657600081556001016200024b565b600082601f8301126200027357600080fd5b81516001600160401b0380821115620002905762000290620003bf565b604051601f8301601f19908116603f01168101908282118183101715620002bb57620002bb620003bf565b81604052838152602092508683858801011115620002d857600080fd5b600091505b83821015620002fc5785820183015181830184015290820190620002dd565b838211156200030e5760008385830101525b9695505050505050565b600080604083850312156200032c57600080fd5b82516001600160401b03808211156200034457600080fd5b620003528683870162000261565b935060208501519150808211156200036957600080fd5b50620003788582860162000261565b9150509250929050565b600181811c908216806200039757607f821691505b60208210811415620003b957634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b612d0c80620003e56000396000f3fe60806040526004361061025c5760003560e01c80636d30ee2d11610144578063c4a6a886116100b6578063de8801e51161007a578063de8801e5146106da578063dfdb5ae4146106f0578063e985e9c514610710578063f2fde38b14610759578063f4f2a56a14610779578063ff8a10dc1461079957600080fd5b8063c4a6a88614610642578063c66828621461066f578063c87b56dd14610684578063d5abeb01146106a4578063da3ef23f146106ba57600080fd5b806392829d741161010857806392829d74146105a157806395d89b41146105b75780639fb58e48146105cc578063a22cb465146105e2578063b5432b7614610602578063b88d4fde1461062257600080fd5b80636d30ee2d146104f457806370a0823114610521578063715018a6146105415780638462151c146105565780638da5cb5b1461058357600080fd5b806322009af6116101dd57806344a0d68a116101a157806344a0d68a1461043d57806348c54b9d1461045d5780634f6ccce7146104725780635c109d3f146104925780636352211e146104bf5780636c0360eb146104df57600080fd5b806322009af6146103b157806323b872dd146103c75780632a23d07d146103e75780632f745c59146103fd57806342842e0e1461041d57600080fd5b806308fc299b1161022457806308fc299b14610325578063095ea7b3146103495780630b29723614610369578063120e9bd11461038957806318160ddd1461039c57600080fd5b806301ffc9a7146102615780630373a23a1461029657806304d47872146102b857806306fdde03146102cb578063081812fc146102ed575b600080fd5b34801561026d57600080fd5b5061028161027c3660046127ee565b6107ae565b60405190151581526020015b60405180910390f35b3480156102a257600080fd5b506102b66102b1366004612871565b6107d9565b005b6102b66102c6366004612871565b610811565b3480156102d757600080fd5b506102e0610ab6565b60405161028d9190612a1e565b3480156102f957600080fd5b5061030d610308366004612871565b610b48565b6040516001600160a01b03909116815260200161028d565b34801561033157600080fd5b5061033b600c5481565b60405190815260200161028d565b34801561035557600080fd5b506102b66103643660046127a7565b610bdd565b34801561037557600080fd5b506102b661038436600461266a565b610cf3565b6102b6610397366004612871565b610db4565b3480156103a857600080fd5b5060085461033b565b3480156103bd57600080fd5b5061033b60125481565b3480156103d357600080fd5b506102b66103e23660046126b8565b611063565b3480156103f357600080fd5b5061033b60105481565b34801561040957600080fd5b5061033b6104183660046127a7565b6110eb565b34801561042957600080fd5b506102b66104383660046126b8565b611181565b34801561044957600080fd5b506102b6610458366004612871565b61119c565b34801561046957600080fd5b506102b66111cb565b34801561047e57600080fd5b5061033b61048d366004612871565b6113df565b34801561049e57600080fd5b5061033b6104ad366004612871565b60196020526000908152604090205481565b3480156104cb57600080fd5b5061030d6104da366004612871565b611472565b3480156104eb57600080fd5b506102e06114e9565b34801561050057600080fd5b5061033b61050f36600461266a565b60176020526000908152604090205481565b34801561052d57600080fd5b5061033b61053c36600461266a565b611577565b34801561054d57600080fd5b506102b66115fe565b34801561056257600080fd5b5061057661057136600461266a565b611634565b60405161028d91906129da565b34801561058f57600080fd5b50600a546001600160a01b031661030d565b3480156105ad57600080fd5b5061033b60115481565b3480156105c357600080fd5b506102e06116d6565b3480156105d857600080fd5b5061033b600f5481565b3480156105ee57600080fd5b506102b66105fd366004612770565b6116e5565b34801561060e57600080fd5b5061033b61061d36600461288a565b6117aa565b34801561062e57600080fd5b506102b661063d3660046126f4565b6118c4565b34801561064e57600080fd5b5061033b61065d36600461266a565b60186020526000908152604090205481565b34801561067b57600080fd5b506102e0611953565b34801561069057600080fd5b506102e061069f366004612871565b611960565b3480156106b057600080fd5b5061033b600d5481565b3480156106c657600080fd5b506102b66106d5366004612828565b611a3e565b3480156106e657600080fd5b5061033b600e5481565b3480156106fc57600080fd5b5060155461030d906001600160a01b031681565b34801561071c57600080fd5b5061028161072b366004612685565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561076557600080fd5b506102b661077436600461266a565b611a7b565b34801561078557600080fd5b5060165461030d906001600160a01b031681565b3480156107a557600080fd5b506102b6611b16565b60006001600160e01b0319821663780e9d6360e01b14806107d357506107d382611b5d565b92915050565b600a546001600160a01b0316331461080c5760405162461bcd60e51b815260040161080390612ac6565b60405180910390fd5b601255565b6002600b5414156108645760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610803565b6002600b55600061087460085490565b905060008083118015610888575060028311155b6108ed5760405162461bcd60e51b815260206004820152603060248201527f596f752063616e206d696e74206d696e696d756d20312c206d6178696d756d2060448201526f32206174207468652070726573616c6560801b6064820152608401610803565b600c546108fa8484612b4c565b111561093c5760405162461bcd60e51b8152602060048201526011602482015270141c995cd85b19481a185cc8195b991959607a1b6044820152606401610803565b8260105461094a9190612b78565b3410156109695760405162461bcd60e51b815260040161080390612a83565b600e544210156109cd5760405162461bcd60e51b815260206004820152602960248201527f596f75206d75737420776169742074696c6c2070726573616c6520626567696e6044820152681cc81d1bc81b5a5b9d60ba1b6064820152608401610803565b6015546040516000916001600160a01b03169034908381818185875af1925050503d8060008114610a1a576040519150601f19603f3d011682016040523d82523d6000602084013e610a1f565b606091505b5050905080610a675760405162461bcd60e51b81526020600482015260146024820152732330b4b632b2103a379039b2b7321022ba3432b960611b6044820152606401610803565b60015b848111610aaa57610a7b8185612b4c565b60008181526019602052604090204290559250610a983384611bad565b80610aa281612c15565b915050610a6a565b50506001600b55505050565b606060008054610ac590612bda565b80601f0160208091040260200160405190810160405280929190818152602001828054610af190612bda565b8015610b3e5780601f10610b1357610100808354040283529160200191610b3e565b820191906000526020600020905b815481529060010190602001808311610b2157829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b0316610bc15760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610803565b506000908152600460205260409020546001600160a01b031690565b6000610be882611472565b9050806001600160a01b0316836001600160a01b03161415610c565760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610803565b336001600160a01b0382161480610c725750610c72813361072b565b610ce45760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610803565b610cee8383611bc7565b505050565b600a546001600160a01b03163314610d1d5760405162461bcd60e51b815260040161080390612ac6565b601a5460ff16610d885760405162461bcd60e51b815260206004820152603060248201527f546f6b656e20416464726573732069732073657420616c72656164792c20596f60448201526f1d4818d85b89dd081c995cd95d081a5d60821b6064820152608401610803565b601680546001600160a01b0319166001600160a01b0392909216919091179055601a805460ff19169055565b6002600b541415610e075760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610803565b6002600b556000610e1760085490565b905060008083118015610e2b575060058311155b610e945760405162461bcd60e51b815260206004820152603460248201527f596f752063616e206d696e74206d696e696d756d20312c206d6178696d756d206044820152733520617420746865207075626c69632073616c6560601b6064820152608401610803565b600d54610ea18484612b4c565b1115610ee05760405162461bcd60e51b815260206004820152600e60248201526d14d85b19481a185cc8195b99195960921b6044820152606401610803565b82601154610eee9190612b78565b341015610f0d5760405162461bcd60e51b815260040161080390612a83565b600f54421015610f755760405162461bcd60e51b815260206004820152602d60248201527f596f75206d75737420776169742074696c6c207075626c69632073616c65206260448201526c1959da5b9cc81d1bc81b5a5b9d609a1b6064820152608401610803565b6000610f89600a546001600160a01b031690565b6001600160a01b03163460405160006040518083038185875af1925050503d8060008114610fd3576040519150601f19603f3d011682016040523d82523d6000602084013e610fd8565b606091505b50509050806110205760405162461bcd60e51b81526020600482015260146024820152732330b4b632b2103a379039b2b7321022ba3432b960611b6044820152606401610803565b60015b848111610aaa576110348185612b4c565b600081815260196020526040902042905592506110513384611bad565b8061105b81612c15565b915050611023565b61106d3382611c35565b6110895760405162461bcd60e51b815260040161080390612afb565b6000818152601960205260409020546110a29042612b97565b6001600160a01b038416600090815260176020526040812080549091906110ca908490612b4c565b90915550506000818152601960205260409020429055610cee838383611d2c565b60006110f683611577565b82106111585760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610803565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b610cee838383604051806020016040528060008152506118c4565b600a546001600160a01b031633146111c65760405162461bcd60e51b815260040161080390612ac6565b601155565b601a54610100900460ff1661123e5760405162461bcd60e51b815260206004820152603360248201527f24465255495420746f6b656e207265776172642069732063757272656e746c79604482015272081b9bdd08195b98589b19590bdc185d5cd959606a1b6064820152608401610803565b336000818152601760205260408120549161125890611634565b905060005b81518110156112ee576019600083838151811061127c5761127c612c86565b60200260200101518152602001908152602001600020544261129e9190612b97565b6112a89084612b4c565b925042601960008484815181106112c1576112c1612c86565b602002602001015181526020019081526020016000208190555080806112e690612c15565b91505061125d565b5081156113db573360009081526018602052604081208054849290611314908490612b4c565b9091555050336000818152601760205260408120556016546012546001600160a01b039091169163a9059cbb9161134b9086612b64565b61135d90670de0b6b3a7640000612b78565b6040516001600160e01b031960e085901b1681526001600160a01b0390921660048301526024820152604401602060405180830381600087803b1580156113a357600080fd5b505af11580156113b7573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610cee91906127d1565b5050565b60006113ea60085490565b821061144d5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610803565b6008828154811061146057611460612c86565b90600052602060002001549050919050565b6000818152600260205260408120546001600160a01b0316806107d35760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610803565b601380546114f690612bda565b80601f016020809104026020016040519081016040528092919081815260200182805461152290612bda565b801561156f5780601f106115445761010080835404028352916020019161156f565b820191906000526020600020905b81548152906001019060200180831161155257829003601f168201915b505050505081565b60006001600160a01b0382166115e25760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610803565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b031633146116285760405162461bcd60e51b815260040161080390612ac6565b6116326000611ed7565b565b6060600061164183611577565b905060008167ffffffffffffffff81111561165e5761165e612c9c565b604051908082528060200260200182016040528015611687578160200160208202803683370190505b50905060005b828110156116ce5761169f85826110eb565b8282815181106116b1576116b1612c86565b6020908102919091010152806116c681612c15565b91505061168d565b509392505050565b606060018054610ac590612bda565b6001600160a01b03821633141561173e5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610803565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6001600160a01b038116600090815260176020526040812054816117cd84611634565b905060005b81518110156118ad57601960008383815181106117f1576117f1612c86565b60200260200101518152602001908152602001600020548610156118575760405162461bcd60e51b815260206004820152601d60248201527f57726f6e672063757272656e742074696d657374616d7020676976656e0000006044820152606401610803565b6019600083838151811061186d5761186d612c86565b60200260200101518152602001908152602001600020548661188f9190612b97565b6118999084612b4c565b9250806118a581612c15565b9150506117d2565b506012546118bb9083612b64565b95945050505050565b6118ce3383611c35565b6118ea5760405162461bcd60e51b815260040161080390612afb565b6000828152601960205260409020546119039042612b97565b6001600160a01b0385166000908152601760205260408120805490919061192b908490612b4c565b9091555050600082815260196020526040902042905561194d84848484611f29565b50505050565b601480546114f690612bda565b6000818152600260205260409020546060906001600160a01b03166119df5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610803565b60006119e9611f5c565b90506000815111611a095760405180602001604052806000815250611a37565b80611a1384611f6b565b6014604051602001611a27939291906128d9565b6040516020818303038152906040525b9392505050565b600a546001600160a01b03163314611a685760405162461bcd60e51b815260040161080390612ac6565b80516113db90601490602084019061253f565b600a546001600160a01b03163314611aa55760405162461bcd60e51b815260040161080390612ac6565b6001600160a01b038116611b0a5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610803565b611b1381611ed7565b50565b600a546001600160a01b03163314611b405760405162461bcd60e51b815260040161080390612ac6565b601a805461ff001981166101009182900460ff1615909102179055565b60006001600160e01b031982166380ac58cd60e01b1480611b8e57506001600160e01b03198216635b5e139f60e01b145b806107d357506301ffc9a760e01b6001600160e01b03198316146107d3565b6113db828260405180602001604052806000815250612069565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190611bfc82611472565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b0316611cae5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610803565b6000611cb983611472565b9050806001600160a01b0316846001600160a01b03161480611cf45750836001600160a01b0316611ce984610b48565b6001600160a01b0316145b80611d2457506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316611d3f82611472565b6001600160a01b031614611da75760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610803565b6001600160a01b038216611e095760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610803565b611e1483838361209c565b611e1f600082611bc7565b6001600160a01b0383166000908152600360205260408120805460019290611e48908490612b97565b90915550506001600160a01b0382166000908152600360205260408120805460019290611e76908490612b4c565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b611f34848484611d2c565b611f4084848484612154565b61194d5760405162461bcd60e51b815260040161080390612a31565b606060138054610ac590612bda565b606081611f8f5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611fb95780611fa381612c15565b9150611fb29050600a83612b64565b9150611f93565b60008167ffffffffffffffff811115611fd457611fd4612c9c565b6040519080825280601f01601f191660200182016040528015611ffe576020820181803683370190505b5090505b8415611d2457612013600183612b97565b9150612020600a86612c30565b61202b906030612b4c565b60f81b81838151811061204057612040612c86565b60200101906001600160f81b031916908160001a905350612062600a86612b64565b9450612002565b6120738383612261565b6120806000848484612154565b610cee5760405162461bcd60e51b815260040161080390612a31565b6001600160a01b0383166120f7576120f281600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b61211a565b816001600160a01b0316836001600160a01b03161461211a5761211a83826123af565b6001600160a01b03821661213157610cee8161244c565b826001600160a01b0316826001600160a01b031614610cee57610cee82826124fb565b60006001600160a01b0384163b1561225657604051630a85bd0160e11b81526001600160a01b0385169063150b7a029061219890339089908890889060040161299d565b602060405180830381600087803b1580156121b257600080fd5b505af19250505080156121e2575060408051601f3d908101601f191682019092526121df9181019061280b565b60015b61223c573d808015612210576040519150601f19603f3d011682016040523d82523d6000602084013e612215565b606091505b5080516122345760405162461bcd60e51b815260040161080390612a31565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611d24565b506001949350505050565b6001600160a01b0382166122b75760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610803565b6000818152600260205260409020546001600160a01b03161561231c5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610803565b6123286000838361209c565b6001600160a01b0382166000908152600360205260408120805460019290612351908490612b4c565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b600060016123bc84611577565b6123c69190612b97565b600083815260076020526040902054909150808214612419576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b60085460009061245e90600190612b97565b6000838152600960205260408120546008805493945090928490811061248657612486612c86565b9060005260206000200154905080600883815481106124a7576124a7612c86565b60009182526020808320909101929092558281526009909152604080822084905585825281205560088054806124df576124df612c70565b6001900381819060005260206000200160009055905550505050565b600061250683611577565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b82805461254b90612bda565b90600052602060002090601f01602090048101928261256d57600085556125b3565b82601f1061258657805160ff19168380011785556125b3565b828001600101855582156125b3579182015b828111156125b3578251825591602001919060010190612598565b506125bf9291506125c3565b5090565b5b808211156125bf57600081556001016125c4565b600067ffffffffffffffff808411156125f3576125f3612c9c565b604051601f8501601f19908116603f0116810190828211818310171561261b5761261b612c9c565b8160405280935085815286868601111561263457600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b038116811461266557600080fd5b919050565b60006020828403121561267c57600080fd5b611a378261264e565b6000806040838503121561269857600080fd5b6126a18361264e565b91506126af6020840161264e565b90509250929050565b6000806000606084860312156126cd57600080fd5b6126d68461264e565b92506126e46020850161264e565b9150604084013590509250925092565b6000806000806080858703121561270a57600080fd5b6127138561264e565b93506127216020860161264e565b925060408501359150606085013567ffffffffffffffff81111561274457600080fd5b8501601f8101871361275557600080fd5b612764878235602084016125d8565b91505092959194509250565b6000806040838503121561278357600080fd5b61278c8361264e565b9150602083013561279c81612cb2565b809150509250929050565b600080604083850312156127ba57600080fd5b6127c38361264e565b946020939093013593505050565b6000602082840312156127e357600080fd5b8151611a3781612cb2565b60006020828403121561280057600080fd5b8135611a3781612cc0565b60006020828403121561281d57600080fd5b8151611a3781612cc0565b60006020828403121561283a57600080fd5b813567ffffffffffffffff81111561285157600080fd5b8201601f8101841361286257600080fd5b611d24848235602084016125d8565b60006020828403121561288357600080fd5b5035919050565b6000806040838503121561289d57600080fd5b823591506126af6020840161264e565b600081518084526128c5816020860160208601612bae565b601f01601f19169290920160200192915050565b6000845160206128ec8285838a01612bae565b8551918401916128ff8184848a01612bae565b8554920191600090600181811c908083168061291c57607f831692505b85831081141561293a57634e487b7160e01b85526022600452602485fd5b80801561294e576001811461295f5761298c565b60ff1985168852838801955061298c565b60008b81526020902060005b858110156129845781548a82015290840190880161296b565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906129d0908301846128ad565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b81811015612a12578351835292840192918401916001016129f6565b50909695505050505050565b602081526000611a3760208301846128ad565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526023908201527f45746865722076616c75652073656e742069732062656c6f772074686520707260408201526269636560e81b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b60008219821115612b5f57612b5f612c44565b500190565b600082612b7357612b73612c5a565b500490565b6000816000190483118215151615612b9257612b92612c44565b500290565b600082821015612ba957612ba9612c44565b500390565b60005b83811015612bc9578181015183820152602001612bb1565b8381111561194d5750506000910152565b600181811c90821680612bee57607f821691505b60208210811415612c0f57634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612c2957612c29612c44565b5060010190565b600082612c3f57612c3f612c5a565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b8015158114611b1357600080fd5b6001600160e01b031981168114611b1357600080fdfea26469706673582212208aacb7a239cfeed6a3dad20fdb4a1be685aa4270be3ef94cb8703718d4a9d5d964736f6c6343000807003300000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000000a416e67656c20417065730000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000054141504553000000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x60806040526004361061025c5760003560e01c80636d30ee2d11610144578063c4a6a886116100b6578063de8801e51161007a578063de8801e5146106da578063dfdb5ae4146106f0578063e985e9c514610710578063f2fde38b14610759578063f4f2a56a14610779578063ff8a10dc1461079957600080fd5b8063c4a6a88614610642578063c66828621461066f578063c87b56dd14610684578063d5abeb01146106a4578063da3ef23f146106ba57600080fd5b806392829d741161010857806392829d74146105a157806395d89b41146105b75780639fb58e48146105cc578063a22cb465146105e2578063b5432b7614610602578063b88d4fde1461062257600080fd5b80636d30ee2d146104f457806370a0823114610521578063715018a6146105415780638462151c146105565780638da5cb5b1461058357600080fd5b806322009af6116101dd57806344a0d68a116101a157806344a0d68a1461043d57806348c54b9d1461045d5780634f6ccce7146104725780635c109d3f146104925780636352211e146104bf5780636c0360eb146104df57600080fd5b806322009af6146103b157806323b872dd146103c75780632a23d07d146103e75780632f745c59146103fd57806342842e0e1461041d57600080fd5b806308fc299b1161022457806308fc299b14610325578063095ea7b3146103495780630b29723614610369578063120e9bd11461038957806318160ddd1461039c57600080fd5b806301ffc9a7146102615780630373a23a1461029657806304d47872146102b857806306fdde03146102cb578063081812fc146102ed575b600080fd5b34801561026d57600080fd5b5061028161027c3660046127ee565b6107ae565b60405190151581526020015b60405180910390f35b3480156102a257600080fd5b506102b66102b1366004612871565b6107d9565b005b6102b66102c6366004612871565b610811565b3480156102d757600080fd5b506102e0610ab6565b60405161028d9190612a1e565b3480156102f957600080fd5b5061030d610308366004612871565b610b48565b6040516001600160a01b03909116815260200161028d565b34801561033157600080fd5b5061033b600c5481565b60405190815260200161028d565b34801561035557600080fd5b506102b66103643660046127a7565b610bdd565b34801561037557600080fd5b506102b661038436600461266a565b610cf3565b6102b6610397366004612871565b610db4565b3480156103a857600080fd5b5060085461033b565b3480156103bd57600080fd5b5061033b60125481565b3480156103d357600080fd5b506102b66103e23660046126b8565b611063565b3480156103f357600080fd5b5061033b60105481565b34801561040957600080fd5b5061033b6104183660046127a7565b6110eb565b34801561042957600080fd5b506102b66104383660046126b8565b611181565b34801561044957600080fd5b506102b6610458366004612871565b61119c565b34801561046957600080fd5b506102b66111cb565b34801561047e57600080fd5b5061033b61048d366004612871565b6113df565b34801561049e57600080fd5b5061033b6104ad366004612871565b60196020526000908152604090205481565b3480156104cb57600080fd5b5061030d6104da366004612871565b611472565b3480156104eb57600080fd5b506102e06114e9565b34801561050057600080fd5b5061033b61050f36600461266a565b60176020526000908152604090205481565b34801561052d57600080fd5b5061033b61053c36600461266a565b611577565b34801561054d57600080fd5b506102b66115fe565b34801561056257600080fd5b5061057661057136600461266a565b611634565b60405161028d91906129da565b34801561058f57600080fd5b50600a546001600160a01b031661030d565b3480156105ad57600080fd5b5061033b60115481565b3480156105c357600080fd5b506102e06116d6565b3480156105d857600080fd5b5061033b600f5481565b3480156105ee57600080fd5b506102b66105fd366004612770565b6116e5565b34801561060e57600080fd5b5061033b61061d36600461288a565b6117aa565b34801561062e57600080fd5b506102b661063d3660046126f4565b6118c4565b34801561064e57600080fd5b5061033b61065d36600461266a565b60186020526000908152604090205481565b34801561067b57600080fd5b506102e0611953565b34801561069057600080fd5b506102e061069f366004612871565b611960565b3480156106b057600080fd5b5061033b600d5481565b3480156106c657600080fd5b506102b66106d5366004612828565b611a3e565b3480156106e657600080fd5b5061033b600e5481565b3480156106fc57600080fd5b5060155461030d906001600160a01b031681565b34801561071c57600080fd5b5061028161072b366004612685565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561076557600080fd5b506102b661077436600461266a565b611a7b565b34801561078557600080fd5b5060165461030d906001600160a01b031681565b3480156107a557600080fd5b506102b6611b16565b60006001600160e01b0319821663780e9d6360e01b14806107d357506107d382611b5d565b92915050565b600a546001600160a01b0316331461080c5760405162461bcd60e51b815260040161080390612ac6565b60405180910390fd5b601255565b6002600b5414156108645760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610803565b6002600b55600061087460085490565b905060008083118015610888575060028311155b6108ed5760405162461bcd60e51b815260206004820152603060248201527f596f752063616e206d696e74206d696e696d756d20312c206d6178696d756d2060448201526f32206174207468652070726573616c6560801b6064820152608401610803565b600c546108fa8484612b4c565b111561093c5760405162461bcd60e51b8152602060048201526011602482015270141c995cd85b19481a185cc8195b991959607a1b6044820152606401610803565b8260105461094a9190612b78565b3410156109695760405162461bcd60e51b815260040161080390612a83565b600e544210156109cd5760405162461bcd60e51b815260206004820152602960248201527f596f75206d75737420776169742074696c6c2070726573616c6520626567696e6044820152681cc81d1bc81b5a5b9d60ba1b6064820152608401610803565b6015546040516000916001600160a01b03169034908381818185875af1925050503d8060008114610a1a576040519150601f19603f3d011682016040523d82523d6000602084013e610a1f565b606091505b5050905080610a675760405162461bcd60e51b81526020600482015260146024820152732330b4b632b2103a379039b2b7321022ba3432b960611b6044820152606401610803565b60015b848111610aaa57610a7b8185612b4c565b60008181526019602052604090204290559250610a983384611bad565b80610aa281612c15565b915050610a6a565b50506001600b55505050565b606060008054610ac590612bda565b80601f0160208091040260200160405190810160405280929190818152602001828054610af190612bda565b8015610b3e5780601f10610b1357610100808354040283529160200191610b3e565b820191906000526020600020905b815481529060010190602001808311610b2157829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b0316610bc15760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610803565b506000908152600460205260409020546001600160a01b031690565b6000610be882611472565b9050806001600160a01b0316836001600160a01b03161415610c565760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610803565b336001600160a01b0382161480610c725750610c72813361072b565b610ce45760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610803565b610cee8383611bc7565b505050565b600a546001600160a01b03163314610d1d5760405162461bcd60e51b815260040161080390612ac6565b601a5460ff16610d885760405162461bcd60e51b815260206004820152603060248201527f546f6b656e20416464726573732069732073657420616c72656164792c20596f60448201526f1d4818d85b89dd081c995cd95d081a5d60821b6064820152608401610803565b601680546001600160a01b0319166001600160a01b0392909216919091179055601a805460ff19169055565b6002600b541415610e075760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610803565b6002600b556000610e1760085490565b905060008083118015610e2b575060058311155b610e945760405162461bcd60e51b815260206004820152603460248201527f596f752063616e206d696e74206d696e696d756d20312c206d6178696d756d206044820152733520617420746865207075626c69632073616c6560601b6064820152608401610803565b600d54610ea18484612b4c565b1115610ee05760405162461bcd60e51b815260206004820152600e60248201526d14d85b19481a185cc8195b99195960921b6044820152606401610803565b82601154610eee9190612b78565b341015610f0d5760405162461bcd60e51b815260040161080390612a83565b600f54421015610f755760405162461bcd60e51b815260206004820152602d60248201527f596f75206d75737420776169742074696c6c207075626c69632073616c65206260448201526c1959da5b9cc81d1bc81b5a5b9d609a1b6064820152608401610803565b6000610f89600a546001600160a01b031690565b6001600160a01b03163460405160006040518083038185875af1925050503d8060008114610fd3576040519150601f19603f3d011682016040523d82523d6000602084013e610fd8565b606091505b50509050806110205760405162461bcd60e51b81526020600482015260146024820152732330b4b632b2103a379039b2b7321022ba3432b960611b6044820152606401610803565b60015b848111610aaa576110348185612b4c565b600081815260196020526040902042905592506110513384611bad565b8061105b81612c15565b915050611023565b61106d3382611c35565b6110895760405162461bcd60e51b815260040161080390612afb565b6000818152601960205260409020546110a29042612b97565b6001600160a01b038416600090815260176020526040812080549091906110ca908490612b4c565b90915550506000818152601960205260409020429055610cee838383611d2c565b60006110f683611577565b82106111585760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610803565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b610cee838383604051806020016040528060008152506118c4565b600a546001600160a01b031633146111c65760405162461bcd60e51b815260040161080390612ac6565b601155565b601a54610100900460ff1661123e5760405162461bcd60e51b815260206004820152603360248201527f24465255495420746f6b656e207265776172642069732063757272656e746c79604482015272081b9bdd08195b98589b19590bdc185d5cd959606a1b6064820152608401610803565b336000818152601760205260408120549161125890611634565b905060005b81518110156112ee576019600083838151811061127c5761127c612c86565b60200260200101518152602001908152602001600020544261129e9190612b97565b6112a89084612b4c565b925042601960008484815181106112c1576112c1612c86565b602002602001015181526020019081526020016000208190555080806112e690612c15565b91505061125d565b5081156113db573360009081526018602052604081208054849290611314908490612b4c565b9091555050336000818152601760205260408120556016546012546001600160a01b039091169163a9059cbb9161134b9086612b64565b61135d90670de0b6b3a7640000612b78565b6040516001600160e01b031960e085901b1681526001600160a01b0390921660048301526024820152604401602060405180830381600087803b1580156113a357600080fd5b505af11580156113b7573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610cee91906127d1565b5050565b60006113ea60085490565b821061144d5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610803565b6008828154811061146057611460612c86565b90600052602060002001549050919050565b6000818152600260205260408120546001600160a01b0316806107d35760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610803565b601380546114f690612bda565b80601f016020809104026020016040519081016040528092919081815260200182805461152290612bda565b801561156f5780601f106115445761010080835404028352916020019161156f565b820191906000526020600020905b81548152906001019060200180831161155257829003601f168201915b505050505081565b60006001600160a01b0382166115e25760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610803565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b031633146116285760405162461bcd60e51b815260040161080390612ac6565b6116326000611ed7565b565b6060600061164183611577565b905060008167ffffffffffffffff81111561165e5761165e612c9c565b604051908082528060200260200182016040528015611687578160200160208202803683370190505b50905060005b828110156116ce5761169f85826110eb565b8282815181106116b1576116b1612c86565b6020908102919091010152806116c681612c15565b91505061168d565b509392505050565b606060018054610ac590612bda565b6001600160a01b03821633141561173e5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610803565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6001600160a01b038116600090815260176020526040812054816117cd84611634565b905060005b81518110156118ad57601960008383815181106117f1576117f1612c86565b60200260200101518152602001908152602001600020548610156118575760405162461bcd60e51b815260206004820152601d60248201527f57726f6e672063757272656e742074696d657374616d7020676976656e0000006044820152606401610803565b6019600083838151811061186d5761186d612c86565b60200260200101518152602001908152602001600020548661188f9190612b97565b6118999084612b4c565b9250806118a581612c15565b9150506117d2565b506012546118bb9083612b64565b95945050505050565b6118ce3383611c35565b6118ea5760405162461bcd60e51b815260040161080390612afb565b6000828152601960205260409020546119039042612b97565b6001600160a01b0385166000908152601760205260408120805490919061192b908490612b4c565b9091555050600082815260196020526040902042905561194d84848484611f29565b50505050565b601480546114f690612bda565b6000818152600260205260409020546060906001600160a01b03166119df5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610803565b60006119e9611f5c565b90506000815111611a095760405180602001604052806000815250611a37565b80611a1384611f6b565b6014604051602001611a27939291906128d9565b6040516020818303038152906040525b9392505050565b600a546001600160a01b03163314611a685760405162461bcd60e51b815260040161080390612ac6565b80516113db90601490602084019061253f565b600a546001600160a01b03163314611aa55760405162461bcd60e51b815260040161080390612ac6565b6001600160a01b038116611b0a5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610803565b611b1381611ed7565b50565b600a546001600160a01b03163314611b405760405162461bcd60e51b815260040161080390612ac6565b601a805461ff001981166101009182900460ff1615909102179055565b60006001600160e01b031982166380ac58cd60e01b1480611b8e57506001600160e01b03198216635b5e139f60e01b145b806107d357506301ffc9a760e01b6001600160e01b03198316146107d3565b6113db828260405180602001604052806000815250612069565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190611bfc82611472565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b0316611cae5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610803565b6000611cb983611472565b9050806001600160a01b0316846001600160a01b03161480611cf45750836001600160a01b0316611ce984610b48565b6001600160a01b0316145b80611d2457506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316611d3f82611472565b6001600160a01b031614611da75760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610803565b6001600160a01b038216611e095760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610803565b611e1483838361209c565b611e1f600082611bc7565b6001600160a01b0383166000908152600360205260408120805460019290611e48908490612b97565b90915550506001600160a01b0382166000908152600360205260408120805460019290611e76908490612b4c565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b611f34848484611d2c565b611f4084848484612154565b61194d5760405162461bcd60e51b815260040161080390612a31565b606060138054610ac590612bda565b606081611f8f5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611fb95780611fa381612c15565b9150611fb29050600a83612b64565b9150611f93565b60008167ffffffffffffffff811115611fd457611fd4612c9c565b6040519080825280601f01601f191660200182016040528015611ffe576020820181803683370190505b5090505b8415611d2457612013600183612b97565b9150612020600a86612c30565b61202b906030612b4c565b60f81b81838151811061204057612040612c86565b60200101906001600160f81b031916908160001a905350612062600a86612b64565b9450612002565b6120738383612261565b6120806000848484612154565b610cee5760405162461bcd60e51b815260040161080390612a31565b6001600160a01b0383166120f7576120f281600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b61211a565b816001600160a01b0316836001600160a01b03161461211a5761211a83826123af565b6001600160a01b03821661213157610cee8161244c565b826001600160a01b0316826001600160a01b031614610cee57610cee82826124fb565b60006001600160a01b0384163b1561225657604051630a85bd0160e11b81526001600160a01b0385169063150b7a029061219890339089908890889060040161299d565b602060405180830381600087803b1580156121b257600080fd5b505af19250505080156121e2575060408051601f3d908101601f191682019092526121df9181019061280b565b60015b61223c573d808015612210576040519150601f19603f3d011682016040523d82523d6000602084013e612215565b606091505b5080516122345760405162461bcd60e51b815260040161080390612a31565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611d24565b506001949350505050565b6001600160a01b0382166122b75760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610803565b6000818152600260205260409020546001600160a01b03161561231c5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610803565b6123286000838361209c565b6001600160a01b0382166000908152600360205260408120805460019290612351908490612b4c565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b600060016123bc84611577565b6123c69190612b97565b600083815260076020526040902054909150808214612419576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b60085460009061245e90600190612b97565b6000838152600960205260408120546008805493945090928490811061248657612486612c86565b9060005260206000200154905080600883815481106124a7576124a7612c86565b60009182526020808320909101929092558281526009909152604080822084905585825281205560088054806124df576124df612c70565b6001900381819060005260206000200160009055905550505050565b600061250683611577565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b82805461254b90612bda565b90600052602060002090601f01602090048101928261256d57600085556125b3565b82601f1061258657805160ff19168380011785556125b3565b828001600101855582156125b3579182015b828111156125b3578251825591602001919060010190612598565b506125bf9291506125c3565b5090565b5b808211156125bf57600081556001016125c4565b600067ffffffffffffffff808411156125f3576125f3612c9c565b604051601f8501601f19908116603f0116810190828211818310171561261b5761261b612c9c565b8160405280935085815286868601111561263457600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b038116811461266557600080fd5b919050565b60006020828403121561267c57600080fd5b611a378261264e565b6000806040838503121561269857600080fd5b6126a18361264e565b91506126af6020840161264e565b90509250929050565b6000806000606084860312156126cd57600080fd5b6126d68461264e565b92506126e46020850161264e565b9150604084013590509250925092565b6000806000806080858703121561270a57600080fd5b6127138561264e565b93506127216020860161264e565b925060408501359150606085013567ffffffffffffffff81111561274457600080fd5b8501601f8101871361275557600080fd5b612764878235602084016125d8565b91505092959194509250565b6000806040838503121561278357600080fd5b61278c8361264e565b9150602083013561279c81612cb2565b809150509250929050565b600080604083850312156127ba57600080fd5b6127c38361264e565b946020939093013593505050565b6000602082840312156127e357600080fd5b8151611a3781612cb2565b60006020828403121561280057600080fd5b8135611a3781612cc0565b60006020828403121561281d57600080fd5b8151611a3781612cc0565b60006020828403121561283a57600080fd5b813567ffffffffffffffff81111561285157600080fd5b8201601f8101841361286257600080fd5b611d24848235602084016125d8565b60006020828403121561288357600080fd5b5035919050565b6000806040838503121561289d57600080fd5b823591506126af6020840161264e565b600081518084526128c5816020860160208601612bae565b601f01601f19169290920160200192915050565b6000845160206128ec8285838a01612bae565b8551918401916128ff8184848a01612bae565b8554920191600090600181811c908083168061291c57607f831692505b85831081141561293a57634e487b7160e01b85526022600452602485fd5b80801561294e576001811461295f5761298c565b60ff1985168852838801955061298c565b60008b81526020902060005b858110156129845781548a82015290840190880161296b565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906129d0908301846128ad565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b81811015612a12578351835292840192918401916001016129f6565b50909695505050505050565b602081526000611a3760208301846128ad565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526023908201527f45746865722076616c75652073656e742069732062656c6f772074686520707260408201526269636560e81b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b60008219821115612b5f57612b5f612c44565b500190565b600082612b7357612b73612c5a565b500490565b6000816000190483118215151615612b9257612b92612c44565b500290565b600082821015612ba957612ba9612c44565b500390565b60005b83811015612bc9578181015183820152602001612bb1565b8381111561194d5750506000910152565b600181811c90821680612bee57607f821691505b60208210811415612c0f57634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612c2957612c29612c44565b5060010190565b600082612c3f57612c3f612c5a565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b8015158114611b1357600080fd5b6001600160e01b031981168114611b1357600080fdfea26469706673582212208aacb7a239cfeed6a3dad20fdb4a1be685aa4270be3ef94cb8703718d4a9d5d964736f6c63430008070033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
00000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000000a416e67656c20417065730000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000054141504553000000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : name_ (string): Angel Apes
Arg [1] : symbol_ (string): AAPES
-----Encoded View---------------
6 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [2] : 000000000000000000000000000000000000000000000000000000000000000a
Arg [3] : 416e67656c204170657300000000000000000000000000000000000000000000
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000005
Arg [5] : 4141504553000000000000000000000000000000000000000000000000000000
Deployed Bytecode Sourcemap
48864:6491:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40373:224;;;;;;;;;;-1:-1:-1;40373:224:0;;;;;:::i;:::-;;:::i;:::-;;;8306:14:1;;8299:22;8281:41;;8269:2;8254:18;40373:224:0;;;;;;;;53193:113;;;;;;;;;;-1:-1:-1;53193:113:0;;;;;:::i;:::-;;:::i;:::-;;49917:841;;;;;;:::i;:::-;;:::i;28265:100::-;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;29824:221::-;;;;;;;;;;-1:-1:-1;29824:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;6688:32:1;;;6670:51;;6658:2;6643:18;29824:221:0;6524:203:1;48974:37:0;;;;;;;;;;;;;;;;;;;20569:25:1;;;20557:2;20542:18;48974:37:0;20423:177:1;29347:411:0;;;;;;;;;;-1:-1:-1;29347:411:0;;;;;:::i;:::-;;:::i;53318:233::-;;;;;;;;;;-1:-1:-1;53318:233:0;;;;;:::i;:::-;;:::i;50770:837::-;;;;;;:::i;:::-;;:::i;41013:113::-;;;;;;;;;;-1:-1:-1;41101:10:0;:17;41013:113;;49289:33;;;;;;;;;;;;;;;;52047:389;;;;;;;;;;-1:-1:-1;52047:389:0;;;;;:::i;:::-;;:::i;49193:39::-;;;;;;;;;;;;;;;;40681:256;;;;;;;;;;-1:-1:-1;40681:256:0;;;;;:::i;:::-;;:::i;31124:185::-;;;;;;;;;;-1:-1:-1;31124:185:0;;;;;:::i;:::-;;:::i;53569:96::-;;;;;;;;;;-1:-1:-1;53569:96:0;;;;;:::i;:::-;;:::i;52448:733::-;;;;;;;;;;;;;:::i;41203:233::-;;;;;;;;;;-1:-1:-1;41203:233:0;;;;;:::i;:::-;;:::i;49673:45::-;;;;;;;;;;-1:-1:-1;49673:45:0;;;;;:::i;:::-;;;;;;;;;;;;;;27959:239;;;;;;;;;;-1:-1:-1;27959:239:0;;;;;:::i;:::-;;:::i;49331:56::-;;;;;;;;;;;;;:::i;49557:52::-;;;;;;;;;;-1:-1:-1;49557:52:0;;;;;:::i;:::-;;;;;;;;;;;;;;27689:208;;;;;;;;;;-1:-1:-1;27689:208:0;;;;;:::i;:::-;;:::i;48170:94::-;;;;;;;;;;;;;:::i;54613:358::-;;;;;;;;;;-1:-1:-1;54613:358:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;47519:87::-;;;;;;;;;;-1:-1:-1;47592:6:0;;-1:-1:-1;;;;;47592:6:0;47519:87;;49239:43;;;;;;;;;;;;;;;;28434:104;;;;;;;;;;;;;:::i;49123:43::-;;;;;;;;;;;;;;;;30117:295;;;;;;;;;;-1:-1:-1;30117:295:0;;;;;:::i;:::-;;:::i;54082:517::-;;;;;;;;;;-1:-1:-1;54082:517:0;;;;;:::i;:::-;;:::i;51619:416::-;;;;;;;;;;-1:-1:-1;51619:416:0;;;;;:::i;:::-;;:::i;49616:50::-;;;;;;;;;;-1:-1:-1;49616:50:0;;;;;:::i;:::-;;;;;;;;;;;;;;49394:37;;;;;;;;;;;;;:::i;54983:366::-;;;;;;;;;;-1:-1:-1;54983:366:0;;;;;:::i;:::-;;:::i;49018:31::-;;;;;;;;;;;;;;;;53677:128;;;;;;;;;;-1:-1:-1;53677:128:0;;;;;:::i;:::-;;:::i;49058:40::-;;;;;;;;;;;;;;;;49440:69;;;;;;;;;;-1:-1:-1;49440:69:0;;;;-1:-1:-1;;;;;49440:69:0;;;30483:164;;;;;;;;;;-1:-1:-1;30483:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;30604:25:0;;;30580:4;30604:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;30483:164;48419:192;;;;;;;;;;-1:-1:-1;48419:192:0;;;;;:::i;:::-;;:::i;49516:32::-;;;;;;;;;;-1:-1:-1;49516:32:0;;;;-1:-1:-1;;;;;49516:32:0;;;53817:132;;;;;;;;;;;;;:::i;40373:224::-;40475:4;-1:-1:-1;;;;;;40499:50:0;;-1:-1:-1;;;40499:50:0;;:90;;;40553:36;40577:11;40553:23;:36::i;:::-;40492:97;40373:224;-1:-1:-1;;40373:224:0:o;53193:113::-;47592:6;;-1:-1:-1;;;;;47592:6:0;25854:10;47739:23;47731:68;;;;-1:-1:-1;;;47731:68:0;;;;;;;:::i;:::-;;;;;;;;;53268:11:::1;:30:::0;53193:113::o;49917:841::-;4737:1;5335:7;;:19;;5327:63;;;;-1:-1:-1;;;5327:63:0;;20265:2:1;5327:63:0;;;20247:21:1;20304:2;20284:18;;;20277:30;20343:33;20323:18;;;20316:61;20394:18;;5327:63:0;20063:355:1;5327:63:0;4737:1;5468:7;:18;50004:14:::1;50021:13;41101:10:::0;:17;;41013:113;50021:13:::1;50004:30;;50045:17;50090:1:::0;50081:6:::1;:10;:25;;;;;50105:1;50095:6;:11;;50081:25;50073:86;;;::::0;-1:-1:-1;;;50073:86:0;;9105:2:1;50073:86:0::1;::::0;::::1;9087:21:1::0;9144:2;9124:18;;;9117:30;9183:34;9163:18;;;9156:62;-1:-1:-1;;;9234:18:1;;;9227:46;9290:19;;50073:86:0::1;8903:412:1::0;50073:86:0::1;50197:16;::::0;50178:15:::1;50187:6:::0;50178;:15:::1;:::i;:::-;:35;;50170:65;;;::::0;-1:-1:-1;;;50170:65:0;;8759:2:1;50170:65:0::1;::::0;::::1;8741:21:1::0;8798:2;8778:18;;;8771:30;-1:-1:-1;;;8817:18:1;;;8810:47;8874:18;;50170:65:0::1;8557:341:1::0;50170:65:0::1;50281:6;50267:11;;:20;;;;:::i;:::-;50254:9;:33;;50246:81;;;;-1:-1:-1::0;;;50246:81:0::1;;;;;;;:::i;:::-;50365:12;;50346:15;:31;;50338:85;;;::::0;-1:-1:-1;;;50338:85:0;;16177:2:1;50338:85:0::1;::::0;::::1;16159:21:1::0;16216:2;16196:18;;;16189:30;16255:34;16235:18;;;16228:62;-1:-1:-1;;;16306:18:1;;;16299:39;16355:19;;50338:85:0::1;15975:405:1::0;50338:85:0::1;50451:9;::::0;:36:::1;::::0;50437:9:::1;::::0;-1:-1:-1;;;;;50451:9:0::1;::::0;50473::::1;::::0;50437;50451:36;50437:9;50451:36;50473:9;50451;:36:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50436:51;;;50506:4;50498:37;;;::::0;-1:-1:-1;;;50498:37:0;;11818:2:1;50498:37:0::1;::::0;::::1;11800:21:1::0;11857:2;11837:18;;;11830:30;-1:-1:-1;;;11876:18:1;;;11869:50;11936:18;;50498:37:0::1;11616:344:1::0;50498:37:0::1;50569:1;50552:189;50576:6;50572:1;:10;50552:189;;50616:10;50625:1:::0;50616:6;:10:::1;:::i;:::-;50641:23;::::0;;;:12:::1;:23;::::0;;;;50667:15:::1;50641:41:::0;;50604:22;-1:-1:-1;50697:32:0::1;50707:10;50604:22:::0;50697:9:::1;:32::i;:::-;50584:3:::0;::::1;::::0;::::1;:::i;:::-;;;;50552:189;;;-1:-1:-1::0;;4693:1:0;5647:7;:22;-1:-1:-1;;;49917:841:0:o;28265:100::-;28319:13;28352:5;28345:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28265:100;:::o;29824:221::-;29900:7;33307:16;;;:7;:16;;;;;;-1:-1:-1;;;;;33307:16:0;29920:73;;;;-1:-1:-1;;;29920:73:0;;15764:2:1;29920:73:0;;;15746:21:1;15803:2;15783:18;;;15776:30;15842:34;15822:18;;;15815:62;-1:-1:-1;;;15893:18:1;;;15886:42;15945:19;;29920:73:0;15562:408:1;29920:73:0;-1:-1:-1;30013:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;30013:24:0;;29824:221::o;29347:411::-;29428:13;29444:23;29459:7;29444:14;:23::i;:::-;29428:39;;29492:5;-1:-1:-1;;;;;29486:11:0;:2;-1:-1:-1;;;;;29486:11:0;;;29478:57;;;;-1:-1:-1;;;29478:57:0;;17774:2:1;29478:57:0;;;17756:21:1;17813:2;17793:18;;;17786:30;17852:34;17832:18;;;17825:62;-1:-1:-1;;;17903:18:1;;;17896:31;17944:19;;29478:57:0;17572:397:1;29478:57:0;25854:10;-1:-1:-1;;;;;29570:21:0;;;;:62;;-1:-1:-1;29595:37:0;29612:5;25854:10;30483:164;:::i;29595:37::-;29548:168;;;;-1:-1:-1;;;29548:168:0;;13753:2:1;29548:168:0;;;13735:21:1;13792:2;13772:18;;;13765:30;13831:34;13811:18;;;13804:62;13902:26;13882:18;;;13875:54;13946:19;;29548:168:0;13551:420:1;29548:168:0;29729:21;29738:2;29742:7;29729:8;:21::i;:::-;29417:341;29347:411;;:::o;53318:233::-;47592:6;;-1:-1:-1;;;;;47592:6:0;25854:10;47739:23;47731:68;;;;-1:-1:-1;;;47731:68:0;;;;;;;:::i;:::-;53406:11:::1;::::0;::::1;;53398:72;;;::::0;-1:-1:-1;;;53398:72:0;;19017:2:1;53398:72:0::1;::::0;::::1;18999:21:1::0;19056:2;19036:18;;;19029:30;19095:34;19075:18;;;19068:62;-1:-1:-1;;;19146:18:1;;;19139:46;19202:19;;53398:72:0::1;18815:412:1::0;53398:72:0::1;53481:17;:32:::0;;-1:-1:-1;;;;;;53481:32:0::1;-1:-1:-1::0;;;;;53481:32:0;;;::::1;::::0;;;::::1;::::0;;53524:11:::1;:19:::0;;-1:-1:-1;;53524:19:0::1;::::0;;53318:233::o;50770:837::-;4737:1;5335:7;;:19;;5327:63;;;;-1:-1:-1;;;5327:63:0;;20265:2:1;5327:63:0;;;20247:21:1;20304:2;20284:18;;;20277:30;20343:33;20323:18;;;20316:61;20394:18;;5327:63:0;20063:355:1;5327:63:0;4737:1;5468:7;:18;50854:14:::1;50871:13;41101:10:::0;:17;;41013:113;50871:13:::1;50854:30;;50895:17;50950:1:::0;50941:6:::1;:10;:25;;;;;50965:1;50955:6;:11;;50941:25;50933:90;;;::::0;-1:-1:-1;;;50933:90:0;;18596:2:1;50933:90:0::1;::::0;::::1;18578:21:1::0;18635:2;18615:18;;;18608:30;18674:34;18654:18;;;18647:62;-1:-1:-1;;;18725:18:1;;;18718:50;18785:19;;50933:90:0::1;18394:416:1::0;50933:90:0::1;51061:9;::::0;51042:15:::1;51051:6:::0;51042;:15:::1;:::i;:::-;:28;;51034:55;;;::::0;-1:-1:-1;;;51034:55:0;;11475:2:1;51034:55:0::1;::::0;::::1;11457:21:1::0;11514:2;11494:18;;;11487:30;-1:-1:-1;;;11533:18:1;;;11526:44;11587:18;;51034:55:0::1;11273:338:1::0;51034:55:0::1;51138:6;51121:14;;:23;;;;:::i;:::-;51108:9;:36;;51100:84;;;;-1:-1:-1::0;;;51100:84:0::1;;;;;;;:::i;:::-;51222:15;;51203;:34;;51195:92;;;::::0;-1:-1:-1;;;51195:92:0;;13339:2:1;51195:92:0::1;::::0;::::1;13321:21:1::0;13378:2;13358:18;;;13351:30;13417:34;13397:18;;;13390:62;-1:-1:-1;;;13468:18:1;;;13461:43;13521:19;;51195:92:0::1;13137:409:1::0;51195:92:0::1;51301:9;51315:7;47592:6:::0;;-1:-1:-1;;;;;47592:6:0;;47519:87;51315:7:::1;-1:-1:-1::0;;;;;51315:12:0::1;51335:9;51315:34;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51300:49;;;51368:4;51360:37;;;::::0;-1:-1:-1;;;51360:37:0;;11818:2:1;51360:37:0::1;::::0;::::1;11800:21:1::0;11857:2;11837:18;;;11830:30;-1:-1:-1;;;11876:18:1;;;11869:50;11936:18;;51360:37:0::1;11616:344:1::0;51360:37:0::1;51431:1;51414:186;51438:6;51434:1;:10;51414:186;;51477:10;51486:1:::0;51477:6;:10:::1;:::i;:::-;51501:23;::::0;;;:12:::1;:23;::::0;;;;51527:15:::1;51501:41:::0;;51465:22;-1:-1:-1;51556:32:0::1;51566:10;51465:22:::0;51556:9:::1;:32::i;:::-;51446:3:::0;::::1;::::0;::::1;:::i;:::-;;;;51414:186;;52047:389:::0;52157:41;25854:10;52190:7;52157:18;:41::i;:::-;52149:103;;;;-1:-1:-1;;;52149:103:0;;;;;;;:::i;:::-;52318:21;;;;:12;:21;;;;;;52300:39;;:15;:39;:::i;:::-;-1:-1:-1;;;;;52273:23:0;;;;;;:17;:23;;;;;:66;;:23;;;:66;;;;;:::i;:::-;;;;-1:-1:-1;;52350:21:0;;;;:12;:21;;;;;52374:15;52350:39;;52400:28;52410:4;52416:2;52363:7;52400:9;:28::i;40681:256::-;40778:7;40814:23;40831:5;40814:16;:23::i;:::-;40806:5;:31;40798:87;;;;-1:-1:-1;;;40798:87:0;;9880:2:1;40798:87:0;;;9862:21:1;9919:2;9899:18;;;9892:30;9958:34;9938:18;;;9931:62;-1:-1:-1;;;10009:18:1;;;10002:41;10060:19;;40798:87:0;9678:407:1;40798:87:0;-1:-1:-1;;;;;;40903:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;40681:256::o;31124:185::-;31262:39;31279:4;31285:2;31289:7;31262:39;;;;;;;;;;;;:16;:39::i;53569:96::-;47592:6;;-1:-1:-1;;;;;47592:6:0;25854:10;47739:23;47731:68;;;;-1:-1:-1;;;47731:68:0;;;;;;;:::i;:::-;53632:14:::1;:25:::0;53569:96::o;52448:733::-;52507:25;;;;;;;52499:89;;;;-1:-1:-1;;;52499:89:0;;18176:2:1;52499:89:0;;;18158:21:1;18215:2;18195:18;;;18188:30;18254:34;18234:18;;;18227:62;-1:-1:-1;;;18305:18:1;;;18298:49;18364:19;;52499:89:0;17974:415:1;52499:89:0;52643:10;52601:21;52625:29;;;:17;:29;;;;;;;52695:25;;:13;:25::i;:::-;52667:53;;52736:9;52731:187;52751:8;:15;52747:1;:19;52731:187;;;52823:12;:25;52836:8;52845:1;52836:11;;;;;;;;:::i;:::-;;;;;;;52823:25;;;;;;;;;;;;52805:15;:43;;;;:::i;:::-;52788:60;;;;:::i;:::-;;;52891:15;52863:12;:25;52876:8;52885:1;52876:11;;;;;;;;:::i;:::-;;;;;;;52863:25;;;;;;;;;;;:43;;;;52768:3;;;;;:::i;:::-;;;;52731:187;;;-1:-1:-1;52942:17:0;;52938:236;;52991:10;52975:27;;;;:15;:27;;;;;:44;;53006:13;;52975:27;:44;;53006:13;;52975:44;:::i;:::-;;;;-1:-1:-1;;53051:10:0;53065:1;53033:29;;;:17;:29;;;;;:33;53087:17;;53142:11;;-1:-1:-1;;;;;53087:17:0;;;;53080:34;;53128:25;;:13;:25;:::i;:::-;53127:34;;53155:6;53127:34;:::i;:::-;53080:82;;-1:-1:-1;;;;;;53080:82:0;;;;;;;-1:-1:-1;;;;;7417:32:1;;;53080:82:0;;;7399:51:1;7466:18;;;7459:34;7372:18;;53080:82:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;52938:236::-;52478:703;;52448:733::o;41203:233::-;41278:7;41314:30;41101:10;:17;;41013:113;41314:30;41306:5;:38;41298:95;;;;-1:-1:-1;;;41298:95:0;;19852:2:1;41298:95:0;;;19834:21:1;19891:2;19871:18;;;19864:30;19930:34;19910:18;;;19903:62;-1:-1:-1;;;19981:18:1;;;19974:42;20033:19;;41298:95:0;19650:408:1;41298:95:0;41411:10;41422:5;41411:17;;;;;;;;:::i;:::-;;;;;;;;;41404:24;;41203:233;;;:::o;27959:239::-;28031:7;28067:16;;;:7;:16;;;;;;-1:-1:-1;;;;;28067:16:0;28102:19;28094:73;;;;-1:-1:-1;;;28094:73:0;;14589:2:1;28094:73:0;;;14571:21:1;14628:2;14608:18;;;14601:30;14667:34;14647:18;;;14640:62;-1:-1:-1;;;14718:18:1;;;14711:39;14767:19;;28094:73:0;14387:405:1;49331:56:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;27689:208::-;27761:7;-1:-1:-1;;;;;27789:19:0;;27781:74;;;;-1:-1:-1;;;27781:74:0;;14178:2:1;27781:74:0;;;14160:21:1;14217:2;14197:18;;;14190:30;14256:34;14236:18;;;14229:62;-1:-1:-1;;;14307:18:1;;;14300:40;14357:19;;27781:74:0;13976:406:1;27781:74:0;-1:-1:-1;;;;;;27873:16:0;;;;;:9;:16;;;;;;;27689:208::o;48170:94::-;47592:6;;-1:-1:-1;;;;;47592:6:0;25854:10;47739:23;47731:68;;;;-1:-1:-1;;;47731:68:0;;;;;;;:::i;:::-;48235:21:::1;48253:1;48235:9;:21::i;:::-;48170:94::o:0;54613:358::-;54673:16;54702:23;54728:17;54738:6;54728:9;:17::i;:::-;54702:43;;54756:25;54798:15;54784:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;54784:30:0;;54756:58;;54830:9;54825:113;54845:15;54841:1;:19;54825:113;;;54896:30;54916:6;54924:1;54896:19;:30::i;:::-;54882:8;54891:1;54882:11;;;;;;;;:::i;:::-;;;;;;;;;;:44;54862:3;;;;:::i;:::-;;;;54825:113;;;-1:-1:-1;54955:8:0;54613:358;-1:-1:-1;;;54613:358:0:o;28434:104::-;28490:13;28523:7;28516:14;;;;;:::i;30117:295::-;-1:-1:-1;;;;;30220:24:0;;25854:10;30220:24;;30212:62;;;;-1:-1:-1;;;30212:62:0;;12572:2:1;30212:62:0;;;12554:21:1;12611:2;12591:18;;;12584:30;12650:27;12630:18;;;12623:55;12695:18;;30212:62:0;12370:349:1;30212:62:0;25854:10;30287:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;30287:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;30287:53:0;;;;;;;;;;30356:48;;8281:41:1;;;30287:42:0;;25854:10;30356:48;;8254:18:1;30356:48:0;;;;;;;30117:295;;:::o;54082:517::-;-1:-1:-1;;;;;54216:27:0;;54173:7;54216:27;;;:17;:27;;;;;;54173:7;54281:23;54234:8;54281:13;:23::i;:::-;54253:51;;54319:9;54314:227;54334:8;:15;54330:1;:19;54314:227;;;54396:12;:25;54409:8;54418:1;54409:11;;;;;;;;:::i;:::-;;;;;;;54396:25;;;;;;;;;;;;54378:16;:43;;54370:85;;;;-1:-1:-1;;;54370:85:0;;9522:2:1;54370:85:0;;;9504:21:1;9561:2;9541:18;;;9534:30;9600:31;9580:18;;;9573:59;9649:18;;54370:85:0;9320:353:1;54370:85:0;54505:12;:25;54518:8;54527:1;54518:11;;;;;;;;:::i;:::-;;;;;;;54505:25;;;;;;;;;;;;54486:16;:44;;;;:::i;:::-;54469:61;;;;:::i;:::-;;-1:-1:-1;54351:3:0;;;;:::i;:::-;;;;54314:227;;;-1:-1:-1;54580:11:0;;54566:25;;:13;:25;:::i;:::-;54558:34;54082:517;-1:-1:-1;;;;;54082:517:0:o;51619:416::-;51753:41;25854:10;51786:7;51753:18;:41::i;:::-;51745:103;;;;-1:-1:-1;;;51745:103:0;;;;;;;:::i;:::-;51906:21;;;;:12;:21;;;;;;51888:39;;:15;:39;:::i;:::-;-1:-1:-1;;;;;51861:23:0;;;;;;:17;:23;;;;;:66;;:23;;;:66;;;;;:::i;:::-;;;;-1:-1:-1;;51938:21:0;;;;:12;:21;;;;;51962:15;51938:39;;51988;52002:4;52008:2;51951:7;52021:5;51988:13;:39::i;:::-;51619:416;;;;:::o;49394:37::-;;;;;;;:::i;54983:366::-;33283:4;33307:16;;;:7;:16;;;;;;55056:13;;-1:-1:-1;;;;;33307:16:0;55082:75;;;;-1:-1:-1;;;55082:75:0;;17358:2:1;55082:75:0;;;17340:21:1;17397:2;17377:18;;;17370:30;17436:34;17416:18;;;17409:62;-1:-1:-1;;;17487:18:1;;;17480:45;17542:19;;55082:75:0;17156:411:1;55082:75:0;55168:28;55199:10;:8;:10::i;:::-;55168:41;;55258:1;55233:14;55227:28;:32;:114;;;;;;;;;;;;;;;;;55286:14;55302:18;:7;:16;:18::i;:::-;55322:13;55269:67;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;55227:114;55220:121;54983:366;-1:-1:-1;;;54983:366:0:o;53677:128::-;47592:6;;-1:-1:-1;;;;;47592:6:0;25854:10;47739:23;47731:68;;;;-1:-1:-1;;;47731:68:0;;;;;;;:::i;:::-;53764:33;;::::1;::::0;:13:::1;::::0;:33:::1;::::0;::::1;::::0;::::1;:::i;48419:192::-:0;47592:6;;-1:-1:-1;;;;;47592:6:0;25854:10;47739:23;47731:68;;;;-1:-1:-1;;;47731:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;48508:22:0;::::1;48500:73;;;::::0;-1:-1:-1;;;48500:73:0;;10711:2:1;48500:73:0::1;::::0;::::1;10693:21:1::0;10750:2;10730:18;;;10723:30;10789:34;10769:18;;;10762:62;-1:-1:-1;;;10840:18:1;;;10833:36;10886:19;;48500:73:0::1;10509:402:1::0;48500:73:0::1;48584:19;48594:8;48584:9;:19::i;:::-;48419:192:::0;:::o;53817:132::-;47592:6;;-1:-1:-1;;;;;47592:6:0;25854:10;47739:23;47731:68;;;;-1:-1:-1;;;47731:68:0;;;;;;;:::i;:::-;53916:25:::1;::::0;;-1:-1:-1;;53887:54:0;::::1;53916:25;::::0;;;::::1;;;53915:26;53887:54:::0;;::::1;;::::0;;53817:132::o;27320:305::-;27422:4;-1:-1:-1;;;;;;27459:40:0;;-1:-1:-1;;;27459:40:0;;:105;;-1:-1:-1;;;;;;;27516:48:0;;-1:-1:-1;;;27516:48:0;27459:105;:158;;;-1:-1:-1;;;;;;;;;;18569:40:0;;;27581:36;18460:157;34202:110;34278:26;34288:2;34292:7;34278:26;;;;;;;;;;;;:9;:26::i;37200:174::-;37275:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;37275:29:0;-1:-1:-1;;;;;37275:29:0;;;;;;;;:24;;37329:23;37275:24;37329:14;:23::i;:::-;-1:-1:-1;;;;;37320:46:0;;;;;;;;;;;37200:174;;:::o;33512:348::-;33605:4;33307:16;;;:7;:16;;;;;;-1:-1:-1;;;;;33307:16:0;33622:73;;;;-1:-1:-1;;;33622:73:0;;12926:2:1;33622:73:0;;;12908:21:1;12965:2;12945:18;;;12938:30;13004:34;12984:18;;;12977:62;-1:-1:-1;;;13055:18:1;;;13048:42;13107:19;;33622:73:0;12724:408:1;33622:73:0;33706:13;33722:23;33737:7;33722:14;:23::i;:::-;33706:39;;33775:5;-1:-1:-1;;;;;33764:16:0;:7;-1:-1:-1;;;;;33764:16:0;;:51;;;;33808:7;-1:-1:-1;;;;;33784:31:0;:20;33796:7;33784:11;:20::i;:::-;-1:-1:-1;;;;;33784:31:0;;33764:51;:87;;;-1:-1:-1;;;;;;30604:25:0;;;30580:4;30604:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;33819:32;33756:96;33512:348;-1:-1:-1;;;;33512:348:0:o;36504:578::-;36663:4;-1:-1:-1;;;;;36636:31:0;:23;36651:7;36636:14;:23::i;:::-;-1:-1:-1;;;;;36636:31:0;;36628:85;;;;-1:-1:-1;;;36628:85:0;;16948:2:1;36628:85:0;;;16930:21:1;16987:2;16967:18;;;16960:30;17026:34;17006:18;;;16999:62;-1:-1:-1;;;17077:18:1;;;17070:39;17126:19;;36628:85:0;16746:405:1;36628:85:0;-1:-1:-1;;;;;36732:16:0;;36724:65;;;;-1:-1:-1;;;36724:65:0;;12167:2:1;36724:65:0;;;12149:21:1;12206:2;12186:18;;;12179:30;12245:34;12225:18;;;12218:62;-1:-1:-1;;;12296:18:1;;;12289:34;12340:19;;36724:65:0;11965:400:1;36724:65:0;36802:39;36823:4;36829:2;36833:7;36802:20;:39::i;:::-;36906:29;36923:1;36927:7;36906:8;:29::i;:::-;-1:-1:-1;;;;;36948:15:0;;;;;;:9;:15;;;;;:20;;36967:1;;36948:15;:20;;36967:1;;36948:20;:::i;:::-;;;;-1:-1:-1;;;;;;;36979:13:0;;;;;;:9;:13;;;;;:18;;36996:1;;36979:13;:18;;36996:1;;36979:18;:::i;:::-;;;;-1:-1:-1;;37008:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;37008:21:0;-1:-1:-1;;;;;37008:21:0;;;;;;;;;37047:27;;37008:16;;37047:27;;;;;;;36504:578;;;:::o;48619:173::-;48694:6;;;-1:-1:-1;;;;;48711:17:0;;;-1:-1:-1;;;;;;48711:17:0;;;;;;;48744:40;;48694:6;;;48711:17;48694:6;;48744:40;;48675:16;;48744:40;48664:128;48619:173;:::o;32590:315::-;32747:28;32757:4;32763:2;32767:7;32747:9;:28::i;:::-;32794:48;32817:4;32823:2;32827:7;32836:5;32794:22;:48::i;:::-;32786:111;;;;-1:-1:-1;;;32786:111:0;;;;;;;:::i;53961:108::-;54021:13;54054:7;54047:14;;;;;:::i;5995:723::-;6051:13;6272:10;6268:53;;-1:-1:-1;;6299:10:0;;;;;;;;;;;;-1:-1:-1;;;6299:10:0;;;;;5995:723::o;6268:53::-;6346:5;6331:12;6387:78;6394:9;;6387:78;;6420:8;;;;:::i;:::-;;-1:-1:-1;6443:10:0;;-1:-1:-1;6451:2:0;6443:10;;:::i;:::-;;;6387:78;;;6475:19;6507:6;6497:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;6497:17:0;;6475:39;;6525:154;6532:10;;6525:154;;6559:11;6569:1;6559:11;;:::i;:::-;;-1:-1:-1;6628:10:0;6636:2;6628:5;:10;:::i;:::-;6615:24;;:2;:24;:::i;:::-;6602:39;;6585:6;6592;6585:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;6585:56:0;;;;;;;;-1:-1:-1;6656:11:0;6665:2;6656:11;;:::i;:::-;;;6525:154;;34539:321;34669:18;34675:2;34679:7;34669:5;:18::i;:::-;34720:54;34751:1;34755:2;34759:7;34768:5;34720:22;:54::i;:::-;34698:154;;;;-1:-1:-1;;;34698:154:0;;;;;;;:::i;42049:589::-;-1:-1:-1;;;;;42255:18:0;;42251:187;;42290:40;42322:7;43465:10;:17;;43438:24;;;;:15;:24;;;;;:44;;;43493:24;;;;;;;;;;;;43361:164;42290:40;42251:187;;;42360:2;-1:-1:-1;;;;;42352:10:0;:4;-1:-1:-1;;;;;42352:10:0;;42348:90;;42379:47;42412:4;42418:7;42379:32;:47::i;:::-;-1:-1:-1;;;;;42452:16:0;;42448:183;;42485:45;42522:7;42485:36;:45::i;42448:183::-;42558:4;-1:-1:-1;;;;;42552:10:0;:2;-1:-1:-1;;;;;42552:10:0;;42548:83;;42579:40;42607:2;42611:7;42579:27;:40::i;37939:799::-;38094:4;-1:-1:-1;;;;;38115:13:0;;8843:20;8891:8;38111:620;;38151:72;;-1:-1:-1;;;38151:72:0;;-1:-1:-1;;;;;38151:36:0;;;;;:72;;25854:10;;38202:4;;38208:7;;38217:5;;38151:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;38151:72:0;;;;;;;;-1:-1:-1;;38151:72:0;;;;;;;;;;;;:::i;:::-;;;38147:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;38393:13:0;;38389:272;;38436:60;;-1:-1:-1;;;38436:60:0;;;;;;;:::i;38389:272::-;38611:6;38605:13;38596:6;38592:2;38588:15;38581:38;38147:529;-1:-1:-1;;;;;;38274:51:0;-1:-1:-1;;;38274:51:0;;-1:-1:-1;38267:58:0;;38111:620;-1:-1:-1;38715:4:0;37939:799;;;;;;:::o;35196:382::-;-1:-1:-1;;;;;35276:16:0;;35268:61;;;;-1:-1:-1;;;35268:61:0;;15403:2:1;35268:61:0;;;15385:21:1;;;15422:18;;;15415:30;15481:34;15461:18;;;15454:62;15533:18;;35268:61:0;15201:356:1;35268:61:0;33283:4;33307:16;;;:7;:16;;;;;;-1:-1:-1;;;;;33307:16:0;:30;35340:58;;;;-1:-1:-1;;;35340:58:0;;11118:2:1;35340:58:0;;;11100:21:1;11157:2;11137:18;;;11130:30;11196;11176:18;;;11169:58;11244:18;;35340:58:0;10916:352:1;35340:58:0;35411:45;35440:1;35444:2;35448:7;35411:20;:45::i;:::-;-1:-1:-1;;;;;35469:13:0;;;;;;:9;:13;;;;;:18;;35486:1;;35469:13;:18;;35486:1;;35469:18;:::i;:::-;;;;-1:-1:-1;;35498:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;35498:21:0;-1:-1:-1;;;;;35498:21:0;;;;;;;;35537:33;;35498:16;;;35537:33;;35498:16;;35537:33;35196:382;;:::o;44152:988::-;44418:22;44468:1;44443:22;44460:4;44443:16;:22::i;:::-;:26;;;;:::i;:::-;44480:18;44501:26;;;:17;:26;;;;;;44418:51;;-1:-1:-1;44634:28:0;;;44630:328;;-1:-1:-1;;;;;44701:18:0;;44679:19;44701:18;;;:12;:18;;;;;;;;:34;;;;;;;;;44752:30;;;;;;:44;;;44869:30;;:17;:30;;;;;:43;;;44630:328;-1:-1:-1;45054:26:0;;;;:17;:26;;;;;;;;45047:33;;;-1:-1:-1;;;;;45098:18:0;;;;;:12;:18;;;;;:34;;;;;;;45091:41;44152:988::o;45435:1079::-;45713:10;:17;45688:22;;45713:21;;45733:1;;45713:21;:::i;:::-;45745:18;45766:24;;;:15;:24;;;;;;46139:10;:26;;45688:46;;-1:-1:-1;45766:24:0;;45688:46;;46139:26;;;;;;:::i;:::-;;;;;;;;;46117:48;;46203:11;46178:10;46189;46178:22;;;;;;;;:::i;:::-;;;;;;;;;;;;:36;;;;46283:28;;;:15;:28;;;;;;;:41;;;46455:24;;;;;46448:31;46490:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;45506:1008;;;45435:1079;:::o;42939:221::-;43024:14;43041:20;43058:2;43041:16;:20::i;:::-;-1:-1:-1;;;;;43072:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;43117:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;42939:221:0:o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:631:1;78:5;108:18;149:2;141:6;138:14;135:40;;;155:18;;:::i;:::-;230:2;224:9;198:2;284:15;;-1:-1:-1;;280:24:1;;;306:2;276:33;272:42;260:55;;;330:18;;;350:22;;;327:46;324:72;;;376:18;;:::i;:::-;416:10;412:2;405:22;445:6;436:15;;475:6;467;460:22;515:3;506:6;501:3;497:16;494:25;491:45;;;532:1;529;522:12;491:45;582:6;577:3;570:4;562:6;558:17;545:44;637:1;630:4;621:6;613;609:19;605:30;598:41;;;;14:631;;;;;:::o;650:173::-;718:20;;-1:-1:-1;;;;;767:31:1;;757:42;;747:70;;813:1;810;803:12;747:70;650:173;;;:::o;828:186::-;887:6;940:2;928:9;919:7;915:23;911:32;908:52;;;956:1;953;946:12;908:52;979:29;998:9;979:29;:::i;1019:260::-;1087:6;1095;1148:2;1136:9;1127:7;1123:23;1119:32;1116:52;;;1164:1;1161;1154:12;1116:52;1187:29;1206:9;1187:29;:::i;:::-;1177:39;;1235:38;1269:2;1258:9;1254:18;1235:38;:::i;:::-;1225:48;;1019:260;;;;;:::o;1284:328::-;1361:6;1369;1377;1430:2;1418:9;1409:7;1405:23;1401:32;1398:52;;;1446:1;1443;1436:12;1398:52;1469:29;1488:9;1469:29;:::i;:::-;1459:39;;1517:38;1551:2;1540:9;1536:18;1517:38;:::i;:::-;1507:48;;1602:2;1591:9;1587:18;1574:32;1564:42;;1284:328;;;;;:::o;1617:666::-;1712:6;1720;1728;1736;1789:3;1777:9;1768:7;1764:23;1760:33;1757:53;;;1806:1;1803;1796:12;1757:53;1829:29;1848:9;1829:29;:::i;:::-;1819:39;;1877:38;1911:2;1900:9;1896:18;1877:38;:::i;:::-;1867:48;;1962:2;1951:9;1947:18;1934:32;1924:42;;2017:2;2006:9;2002:18;1989:32;2044:18;2036:6;2033:30;2030:50;;;2076:1;2073;2066:12;2030:50;2099:22;;2152:4;2144:13;;2140:27;-1:-1:-1;2130:55:1;;2181:1;2178;2171:12;2130:55;2204:73;2269:7;2264:2;2251:16;2246:2;2242;2238:11;2204:73;:::i;:::-;2194:83;;;1617:666;;;;;;;:::o;2288:315::-;2353:6;2361;2414:2;2402:9;2393:7;2389:23;2385:32;2382:52;;;2430:1;2427;2420:12;2382:52;2453:29;2472:9;2453:29;:::i;:::-;2443:39;;2532:2;2521:9;2517:18;2504:32;2545:28;2567:5;2545:28;:::i;:::-;2592:5;2582:15;;;2288:315;;;;;:::o;2608:254::-;2676:6;2684;2737:2;2725:9;2716:7;2712:23;2708:32;2705:52;;;2753:1;2750;2743:12;2705:52;2776:29;2795:9;2776:29;:::i;:::-;2766:39;2852:2;2837:18;;;;2824:32;;-1:-1:-1;;;2608:254:1:o;2867:245::-;2934:6;2987:2;2975:9;2966:7;2962:23;2958:32;2955:52;;;3003:1;3000;2993:12;2955:52;3035:9;3029:16;3054:28;3076:5;3054:28;:::i;3117:245::-;3175:6;3228:2;3216:9;3207:7;3203:23;3199:32;3196:52;;;3244:1;3241;3234:12;3196:52;3283:9;3270:23;3302:30;3326:5;3302:30;:::i;3367:249::-;3436:6;3489:2;3477:9;3468:7;3464:23;3460:32;3457:52;;;3505:1;3502;3495:12;3457:52;3537:9;3531:16;3556:30;3580:5;3556:30;:::i;3621:450::-;3690:6;3743:2;3731:9;3722:7;3718:23;3714:32;3711:52;;;3759:1;3756;3749:12;3711:52;3799:9;3786:23;3832:18;3824:6;3821:30;3818:50;;;3864:1;3861;3854:12;3818:50;3887:22;;3940:4;3932:13;;3928:27;-1:-1:-1;3918:55:1;;3969:1;3966;3959:12;3918:55;3992:73;4057:7;4052:2;4039:16;4034:2;4030;4026:11;3992:73;:::i;4076:180::-;4135:6;4188:2;4176:9;4167:7;4163:23;4159:32;4156:52;;;4204:1;4201;4194:12;4156:52;-1:-1:-1;4227:23:1;;4076:180;-1:-1:-1;4076:180:1:o;4261:254::-;4329:6;4337;4390:2;4378:9;4369:7;4365:23;4361:32;4358:52;;;4406:1;4403;4396:12;4358:52;4442:9;4429:23;4419:33;;4471:38;4505:2;4494:9;4490:18;4471:38;:::i;4520:257::-;4561:3;4599:5;4593:12;4626:6;4621:3;4614:19;4642:63;4698:6;4691:4;4686:3;4682:14;4675:4;4668:5;4664:16;4642:63;:::i;:::-;4759:2;4738:15;-1:-1:-1;;4734:29:1;4725:39;;;;4766:4;4721:50;;4520:257;-1:-1:-1;;4520:257:1:o;4782:1527::-;5006:3;5044:6;5038:13;5070:4;5083:51;5127:6;5122:3;5117:2;5109:6;5105:15;5083:51;:::i;:::-;5197:13;;5156:16;;;;5219:55;5197:13;5156:16;5241:15;;;5219:55;:::i;:::-;5363:13;;5296:20;;;5336:1;;5423;5445:18;;;;5498;;;;5525:93;;5603:4;5593:8;5589:19;5577:31;;5525:93;5666:2;5656:8;5653:16;5633:18;5630:40;5627:167;;;-1:-1:-1;;;5693:33:1;;5749:4;5746:1;5739:15;5779:4;5700:3;5767:17;5627:167;5810:18;5837:110;;;;5961:1;5956:328;;;;5803:481;;5837:110;-1:-1:-1;;5872:24:1;;5858:39;;5917:20;;;;-1:-1:-1;5837:110:1;;5956:328;20678:1;20671:14;;;20715:4;20702:18;;6051:1;6065:169;6079:8;6076:1;6073:15;6065:169;;;6161:14;;6146:13;;;6139:37;6204:16;;;;6096:10;;6065:169;;;6069:3;;6265:8;6258:5;6254:20;6247:27;;5803:481;-1:-1:-1;6300:3:1;;4782:1527;-1:-1:-1;;;;;;;;;;;4782:1527:1:o;6732:488::-;-1:-1:-1;;;;;7001:15:1;;;6983:34;;7053:15;;7048:2;7033:18;;7026:43;7100:2;7085:18;;7078:34;;;7148:3;7143:2;7128:18;;7121:31;;;6926:4;;7169:45;;7194:19;;7186:6;7169:45;:::i;:::-;7161:53;6732:488;-1:-1:-1;;;;;;6732:488:1:o;7504:632::-;7675:2;7727:21;;;7797:13;;7700:18;;;7819:22;;;7646:4;;7675:2;7898:15;;;;7872:2;7857:18;;;7646:4;7941:169;7955:6;7952:1;7949:13;7941:169;;;8016:13;;8004:26;;8085:15;;;;8050:12;;;;7977:1;7970:9;7941:169;;;-1:-1:-1;8127:3:1;;7504:632;-1:-1:-1;;;;;;7504:632:1:o;8333:219::-;8482:2;8471:9;8464:21;8445:4;8502:44;8542:2;8531:9;8527:18;8519:6;8502:44;:::i;10090:414::-;10292:2;10274:21;;;10331:2;10311:18;;;10304:30;10370:34;10365:2;10350:18;;10343:62;-1:-1:-1;;;10436:2:1;10421:18;;10414:48;10494:3;10479:19;;10090:414::o;14797:399::-;14999:2;14981:21;;;15038:2;15018:18;;;15011:30;15077:34;15072:2;15057:18;;15050:62;-1:-1:-1;;;15143:2:1;15128:18;;15121:33;15186:3;15171:19;;14797:399::o;16385:356::-;16587:2;16569:21;;;16606:18;;;16599:30;16665:34;16660:2;16645:18;;16638:62;16732:2;16717:18;;16385:356::o;19232:413::-;19434:2;19416:21;;;19473:2;19453:18;;;19446:30;19512:34;19507:2;19492:18;;19485:62;-1:-1:-1;;;19578:2:1;19563:18;;19556:47;19635:3;19620:19;;19232:413::o;20731:128::-;20771:3;20802:1;20798:6;20795:1;20792:13;20789:39;;;20808:18;;:::i;:::-;-1:-1:-1;20844:9:1;;20731:128::o;20864:120::-;20904:1;20930;20920:35;;20935:18;;:::i;:::-;-1:-1:-1;20969:9:1;;20864:120::o;20989:168::-;21029:7;21095:1;21091;21087:6;21083:14;21080:1;21077:21;21072:1;21065:9;21058:17;21054:45;21051:71;;;21102:18;;:::i;:::-;-1:-1:-1;21142:9:1;;20989:168::o;21162:125::-;21202:4;21230:1;21227;21224:8;21221:34;;;21235:18;;:::i;:::-;-1:-1:-1;21272:9:1;;21162:125::o;21292:258::-;21364:1;21374:113;21388:6;21385:1;21382:13;21374:113;;;21464:11;;;21458:18;21445:11;;;21438:39;21410:2;21403:10;21374:113;;;21505:6;21502:1;21499:13;21496:48;;;-1:-1:-1;;21540:1:1;21522:16;;21515:27;21292:258::o;21555:380::-;21634:1;21630:12;;;;21677;;;21698:61;;21752:4;21744:6;21740:17;21730:27;;21698:61;21805:2;21797:6;21794:14;21774:18;21771:38;21768:161;;;21851:10;21846:3;21842:20;21839:1;21832:31;21886:4;21883:1;21876:15;21914:4;21911:1;21904:15;21768:161;;21555:380;;;:::o;21940:135::-;21979:3;-1:-1:-1;;22000:17:1;;21997:43;;;22020:18;;:::i;:::-;-1:-1:-1;22067:1:1;22056:13;;21940:135::o;22080:112::-;22112:1;22138;22128:35;;22143:18;;:::i;:::-;-1:-1:-1;22177:9:1;;22080:112::o;22197:127::-;22258:10;22253:3;22249:20;22246:1;22239:31;22289:4;22286:1;22279:15;22313:4;22310:1;22303:15;22329:127;22390:10;22385:3;22381:20;22378:1;22371:31;22421:4;22418:1;22411:15;22445:4;22442:1;22435:15;22461:127;22522:10;22517:3;22513:20;22510:1;22503:31;22553:4;22550:1;22543:15;22577:4;22574:1;22567:15;22593:127;22654:10;22649:3;22645:20;22642:1;22635:31;22685:4;22682:1;22675:15;22709:4;22706:1;22699:15;22725:127;22786:10;22781:3;22777:20;22774:1;22767:31;22817:4;22814:1;22807:15;22841:4;22838:1;22831:15;22857:118;22943:5;22936:13;22929:21;22922:5;22919:32;22909:60;;22965:1;22962;22955:12;22980:131;-1:-1:-1;;;;;;23054:32:1;;23044:43;;23034:71;;23101:1;23098;23091:12
Swarm Source
ipfs://8aacb7a239cfeed6a3dad20fdb4a1be685aa4270be3ef94cb8703718d4a9d5d9
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 30 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.