ERC-721
NFT
Overview
Max Total Supply
5,000 GDK
Holders
1,285
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
5 GDKLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
GuardianKongz
Compiler Version
v0.8.7+commit.e28d00a7
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2021-12-23 */ // SPDX-License-Identifier: MIT // File: @openzeppelin/contracts/security/ReentrancyGuard.sol // OpenZeppelin Contracts v4.4.1 (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 // OpenZeppelin Contracts v4.4.1 (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/Context.sol // OpenZeppelin Contracts v4.4.1 (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/access/Ownable.sol // OpenZeppelin Contracts v4.4.1 (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() { _transferOwnership(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // File: @openzeppelin/contracts/utils/Address.sol // OpenZeppelin Contracts v4.4.1 (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 // OpenZeppelin Contracts v4.4.1 (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 // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); } // File: @openzeppelin/contracts/utils/introspection/ERC165.sol // OpenZeppelin Contracts v4.4.1 (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 // OpenZeppelin Contracts v4.4.1 (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 // OpenZeppelin Contracts v4.4.1 (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 // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol) pragma solidity ^0.8.0; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); } // File: @openzeppelin/contracts/token/ERC721/ERC721.sol // OpenZeppelin Contracts v4.4.1 (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 { _setApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { //solhint-disable-next-line max-line-length require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ""); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public virtual override { require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _safeTransfer(from, to, tokenId, _data); } /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * `_data` is additional data, it has no specified format and it is sent in call to `to`. * * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g. * implement alternative mechanisms to perform token transfer, such as signature-based. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeTransfer( address from, address to, uint256 tokenId, bytes memory _data ) internal virtual { _transfer(from, to, tokenId); require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer"); } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), * and stop existing when they are burned (`_burn`). */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return _owners[tokenId] != address(0); } /** * @dev Returns whether `spender` is allowed to manage `tokenId`. * * Requirements: * * - `tokenId` must exist. */ function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) { require(_exists(tokenId), "ERC721: operator query for nonexistent token"); address owner = ERC721.ownerOf(tokenId); return (spender == owner || 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 Approve `operator` to operate on all of `owner` tokens * * Emits a {ApprovalForAll} event. */ function _setApprovalForAll( address owner, address operator, bool approved ) internal virtual { require(owner != operator, "ERC721: approve to caller"); _operatorApprovals[owner][operator] = approved; emit ApprovalForAll(owner, operator, approved); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address. * The call is not executed if the target address is not a contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { if (to.isContract()) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) { return retval == IERC721Receiver.onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert("ERC721: transfer to non ERC721Receiver implementer"); } else { assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, ``from``'s `tokenId` will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual {} } // File: @openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol // OpenZeppelin Contracts v4.4.1 (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: contracts/GuardianKongz.sol pragma solidity ^0.8.0; /* $$$$$$\ $$\ $$\ $$ __$$\ $$ |\__| $$ / \__|$$\ $$\ $$$$$$\ $$$$$$\ $$$$$$$ |$$\ $$$$$$\ $$$$$$$\ $$ |$$$$\ $$ | $$ | \____$$\ $$ __$$\ $$ __$$ |$$ | \____$$\ $$ __$$\ $$ |\_$$ |$$ | $$ | $$$$$$$ |$$ | \__|$$ / $$ |$$ | $$$$$$$ |$$ | $$ | $$ | $$ |$$ | $$ |$$ __$$ |$$ | $$ | $$ |$$ |$$ __$$ |$$ | $$ | \$$$$$$ |\$$$$$$ |\$$$$$$$ |$$ | \$$$$$$$ |$$ |\$$$$$$$ |$$ | $$ | \______/ \______/ \_______|\__| \_______|\__| \_______|\__| \__| $$\ $$\ $$ | $$ | $$ |$$ / $$$$$$\ $$$$$$$\ $$$$$$\ $$$$$$$$\ $$$$$ / $$ __$$\ $$ __$$\ $$ __$$\ \____$$ | $$ $$< $$ / $$ |$$ | $$ |$$ / $$ | $$$$ _/ $$ |\$$\ $$ | $$ |$$ | $$ |$$ | $$ | $$ _/ $$ | \$$\\$$$$$$ |$$ | $$ |\$$$$$$$ |$$$$$$$$\ \__| \__|\______/ \__| \__| \____$$ |\________| $$\ $$ | \$$$$$$ | \______/ */ contract GuardianKongz is ERC721Enumerable, ReentrancyGuard, Ownable { using Strings for uint256; string public baseURI; string public baseExtension = ".json"; bool public presaleMintIsActive = false; bool public mintIsActive = false; uint256 public maxSupply = 5000; uint256 public maxMintAmount = 2; uint256 public mintPrice = 80000000000000000; // 0.08 ETH uint256 public presaleMintPrice = 60000000000000000; // 0.06 ETH address public signatureAddress; // constructor constructor( string memory _name, string memory _symbol, string memory _initBaseURI ) ERC721(_name, _symbol) { setBaseURI(_initBaseURI); } // internal function _baseURI() internal view virtual override returns (string memory) { return baseURI; } // public function walletOfOwner(address _owner) public view returns (uint256[] memory) { uint256 ownerTokenCount = balanceOf(_owner); uint256[] memory tokenIds = new uint256[](ownerTokenCount); for (uint256 i; i < ownerTokenCount; i++) { tokenIds[i] = tokenOfOwnerByIndex(_owner, i); } return tokenIds; } function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require( _exists(tokenId), "ERC721Metadata: URI query for nonexistent token"); string memory currentBaseURI = _baseURI(); return bytes(currentBaseURI).length > 0 ? string(abi.encodePacked(currentBaseURI, tokenId.toString(), baseExtension)) : ""; } function setMintCost(uint256 _newPrice) public onlyOwner() { mintPrice = _newPrice; } function setPresaleMintCost(uint256 _newPrice) public onlyOwner() { presaleMintPrice = _newPrice; } function setmaxMintAmount(uint256 _newmaxMintAmount) public onlyOwner() { maxMintAmount = _newmaxMintAmount; } function setBaseURI(string memory _newBaseURI) public onlyOwner { baseURI = _newBaseURI; } function setBaseExtension(string memory _newBaseExtension) public onlyOwner { baseExtension = _newBaseExtension; } function setSignatureAddress(address _importantAddress) public onlyOwner { signatureAddress = _importantAddress; } function flipMintState() public onlyOwner { mintIsActive = !mintIsActive; } function flipPresaleMintState() public onlyOwner { presaleMintIsActive = !presaleMintIsActive; } function withdraw() public onlyOwner { uint balance = address(this).balance; payable(_msgSender()).transfer(balance); } // mint function devMint(uint256 numberOfTokens) public onlyOwner { require(totalSupply() + numberOfTokens <= maxSupply, "Purchase would exceed max supply."); for (uint i = 0; i < numberOfTokens; i++) { _safeMint(_msgSender(), totalSupply() + 1); } } function mint(uint256 numberOfTokens) public payable nonReentrant { require(mintIsActive, "Public mint is not active at the moment. Be patient."); require(numberOfTokens > 0, "Number of tokens can not be less than or equal to 0."); require(totalSupply() + numberOfTokens <= maxSupply, "Purchase would exceed max supply."); require(numberOfTokens <= 10, "Can only mint up to 10 per transaction."); require(mintPrice * numberOfTokens == msg.value, "Sent ETH value is incorrect."); for (uint i = 0; i < numberOfTokens; i++) { _safeMint(_msgSender(), totalSupply() + 1); } } function presaleMint(bytes memory sig, uint256 numberOfTokens) public payable nonReentrant { require(presaleMintIsActive, "Presale mint is not active at the moment. Be patient."); require(numberOfTokens > 0, "Number of tokens can not be less than or equal to 0."); require(totalSupply() + numberOfTokens <= maxSupply, "Purchase would exceed max supply."); require(numberOfTokens <= maxMintAmount, "Can only mint up to 2 per transaction."); require(presaleMintPrice * numberOfTokens == msg.value, "Sent ETH value is incorrect."); require(balanceOf(msg.sender) + numberOfTokens <= maxMintAmount, "Can only mint up to 2 per wallet."); require(isValidData(msg.sender, sig), "You are not whitelisted"); for (uint i = 0; i < numberOfTokens; i++) { _safeMint(_msgSender(), totalSupply() + 1); } } //verify signature function isValidData(address _walletAddress, bytes memory sig) public view returns(bool){ bytes32 message = keccak256(abi.encodePacked(_walletAddress)); return (recoverSigner(message, sig) == signatureAddress); } function recoverSigner(bytes32 message, bytes memory sig) public pure returns (address) { uint8 v; bytes32 r; bytes32 s; (v, r, s) = splitSignature(sig); return ecrecover(message, v, r, s); } function splitSignature(bytes memory sig) public pure returns (uint8, bytes32, bytes32) { require(sig.length == 65); bytes32 r; bytes32 s; uint8 v; assembly { // first 32 bytes, after the length prefix r := mload(add(sig, 32)) // second 32 bytes s := mload(add(sig, 64)) // final byte (first byte of the next 32 bytes) v := byte(0, mload(add(sig, 96))) } return (v, r, s); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"string","name":"_initBaseURI","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfTokens","type":"uint256"}],"name":"devMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"flipMintState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"flipPresaleMintState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_walletAddress","type":"address"},{"internalType":"bytes","name":"sig","type":"bytes"}],"name":"isValidData","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfTokens","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintIsActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":"bytes","name":"sig","type":"bytes"},{"internalType":"uint256","name":"numberOfTokens","type":"uint256"}],"name":"presaleMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"presaleMintIsActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"presaleMintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"message","type":"bytes32"},{"internalType":"bytes","name":"sig","type":"bytes"}],"name":"recoverSigner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"pure","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":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newPrice","type":"uint256"}],"name":"setMintCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newPrice","type":"uint256"}],"name":"setPresaleMintCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_importantAddress","type":"address"}],"name":"setSignatureAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newmaxMintAmount","type":"uint256"}],"name":"setmaxMintAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"signatureAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes","name":"sig","type":"bytes"}],"name":"splitSignature","outputs":[{"internalType":"uint8","name":"","type":"uint8"},{"internalType":"bytes32","name":"","type":"bytes32"},{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60c06040526005608081905264173539b7b760d91b60a09081526200002891600d9190620001a6565b50600e805461ffff19169055611388600f55600260105567011c37937e08000060115566d529ae9e8600006012553480156200006357600080fd5b506040516200303438038062003034833981016040819052620000869162000303565b8251839083906200009f906000906020850190620001a6565b508051620000b5906001906020840190620001a6565b50506001600a5550620000c833620000dc565b620000d3816200012e565b505050620003e7565b600b80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600b546001600160a01b031633146200018d5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640160405180910390fd5b8051620001a290600c906020840190620001a6565b5050565b828054620001b49062000394565b90600052602060002090601f016020900481019282620001d8576000855562000223565b82601f10620001f357805160ff191683800117855562000223565b8280016001018555821562000223579182015b828111156200022357825182559160200191906001019062000206565b506200023192915062000235565b5090565b5b8082111562000231576000815560010162000236565b600082601f8301126200025e57600080fd5b81516001600160401b03808211156200027b576200027b620003d1565b604051601f8301601f19908116603f01168101908282118183101715620002a657620002a6620003d1565b81604052838152602092508683858801011115620002c357600080fd5b600091505b83821015620002e75785820183015181830184015290820190620002c8565b83821115620002f95760008385830101525b9695505050505050565b6000806000606084860312156200031957600080fd5b83516001600160401b03808211156200033157600080fd5b6200033f878388016200024c565b945060208601519150808211156200035657600080fd5b62000364878388016200024c565b935060408601519150808211156200037b57600080fd5b506200038a868287016200024c565b9150509250925092565b600181811c90821680620003a957607f821691505b60208210811415620003cb57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b612c3d80620003f76000396000f3fe6080604052600436106102675760003560e01c806370a0823111610144578063b0129f5e116100b6578063d5abeb011161007a578063d5abeb011461070b578063da3ef23f14610721578063e985e9c514610741578063f247c7a01461078a578063f2fde38b146107a4578063f931a4c2146107c457600080fd5b8063b0129f5e14610676578063b0940d4514610696578063b88d4fde146106b6578063c6682862146106d6578063c87b56dd146106eb57600080fd5b806395d89b411161010857806395d89b41146105af57806397aba7f9146105c4578063a0712d68146105e4578063a22cb465146105f7578063a39edc2414610617578063a7bb58031461063757600080fd5b806370a082311461051c578063715018a61461053c5780637f00c7a6146105515780638545f4ea146105715780638da5cb5b1461059157600080fd5b806342842e0e116101dd57806355f804b3116101a157806355f804b31461048657806359c74f29146104a65780635be50521146104bb5780636352211e146104d15780636817c76c146104f15780636c0360eb1461050757600080fd5b806342842e0e146103e7578063438b630014610407578063471a4294146104345780634e21dc40146104535780634f6ccce71461046657600080fd5b8063239c70ae1161022f578063239c70ae1461033c57806323b872dd146103525780632f745c5914610372578063375a069a146103925780633b6dc6b4146103b25780633ccfd60b146103d257600080fd5b806301ffc9a71461026c57806306fdde03146102a1578063081812fc146102c3578063095ea7b3146102fb57806318160ddd1461031d575b600080fd5b34801561027857600080fd5b5061028c610287366004612684565b6107d9565b60405190151581526020015b60405180910390f35b3480156102ad57600080fd5b506102b6610804565b604051610298919061290b565b3480156102cf57600080fd5b506102e36102de366004612781565b610896565b6040516001600160a01b039091168152602001610298565b34801561030757600080fd5b5061031b610316366004612629565b610930565b005b34801561032957600080fd5b506008545b604051908152602001610298565b34801561034857600080fd5b5061032e60105481565b34801561035e57600080fd5b5061031b61036d3660046124fb565b610a46565b34801561037e57600080fd5b5061032e61038d366004612629565b610a77565b34801561039e57600080fd5b5061031b6103ad366004612781565b610b0d565b3480156103be57600080fd5b506013546102e3906001600160a01b031681565b3480156103de57600080fd5b5061031b610ba5565b3480156103f357600080fd5b5061031b6104023660046124fb565b610bfe565b34801561041357600080fd5b506104276104223660046124ad565b610c19565b60405161029891906128c7565b34801561044057600080fd5b50600e5461028c90610100900460ff1681565b61031b6104613660046126f3565b610cbb565b34801561047257600080fd5b5061032e610481366004612781565b610f8a565b34801561049257600080fd5b5061031b6104a1366004612738565b61101d565b3480156104b257600080fd5b5061031b61105a565b3480156104c757600080fd5b5061032e60125481565b3480156104dd57600080fd5b506102e36104ec366004612781565b6110a1565b3480156104fd57600080fd5b5061032e60115481565b34801561051357600080fd5b506102b6611118565b34801561052857600080fd5b5061032e6105373660046124ad565b6111a6565b34801561054857600080fd5b5061031b61122d565b34801561055d57600080fd5b5061031b61056c366004612781565b611263565b34801561057d57600080fd5b5061031b61058c366004612781565b611292565b34801561059d57600080fd5b50600b546001600160a01b03166102e3565b3480156105bb57600080fd5b506102b66112c1565b3480156105d057600080fd5b506102e36105df366004612653565b6112d0565b61031b6105f2366004612781565b61134f565b34801561060357600080fd5b5061031b61061236600461259f565b61155c565b34801561062357600080fd5b5061031b610632366004612781565b611567565b34801561064357600080fd5b506106576106523660046126be565b611596565b6040805160ff9094168452602084019290925290820152606001610298565b34801561068257600080fd5b5061031b6106913660046124ad565b6115c5565b3480156106a257600080fd5b5061028c6106b13660046125db565b611611565b3480156106c257600080fd5b5061031b6106d1366004612537565b611678565b3480156106e257600080fd5b506102b66116b0565b3480156106f757600080fd5b506102b6610706366004612781565b6116bd565b34801561071757600080fd5b5061032e600f5481565b34801561072d57600080fd5b5061031b61073c366004612738565b61179b565b34801561074d57600080fd5b5061028c61075c3660046124c8565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561079657600080fd5b50600e5461028c9060ff1681565b3480156107b057600080fd5b5061031b6107bf3660046124ad565b6117d8565b3480156107d057600080fd5b5061031b611873565b60006001600160e01b0319821663780e9d6360e01b14806107fe57506107fe826118b1565b92915050565b60606000805461081390612b19565b80601f016020809104026020016040519081016040528092919081815260200182805461083f90612b19565b801561088c5780601f106108615761010080835404028352916020019161088c565b820191906000526020600020905b81548152906001019060200180831161086f57829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166109145760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061093b826110a1565b9050806001600160a01b0316836001600160a01b031614156109a95760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b606482015260840161090b565b336001600160a01b03821614806109c557506109c5813361075c565b610a375760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606482015260840161090b565b610a418383611901565b505050565b610a50338261196f565b610a6c5760405162461bcd60e51b815260040161090b90612a3a565b610a41838383611a66565b6000610a82836111a6565b8210610ae45760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b606482015260840161090b565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600b546001600160a01b03163314610b375760405162461bcd60e51b815260040161090b906129c4565b600f5481610b4460085490565b610b4e9190612a8b565b1115610b6c5760405162461bcd60e51b815260040161090b906129f9565b60005b81811015610ba157610b8f335b600854610b8a906001612a8b565b611c11565b80610b9981612b54565b915050610b6f565b5050565b600b546001600160a01b03163314610bcf5760405162461bcd60e51b815260040161090b906129c4565b6040514790339082156108fc029083906000818181858888f19350505050158015610ba1573d6000803e3d6000fd5b610a4183838360405180602001604052806000815250611678565b60606000610c26836111a6565b905060008167ffffffffffffffff811115610c4357610c43612bdb565b604051908082528060200260200182016040528015610c6c578160200160208202803683370190505b50905060005b82811015610cb357610c848582610a77565b828281518110610c9657610c96612bc5565b602090810291909101015280610cab81612b54565b915050610c72565b509392505050565b6002600a541415610d0e5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015260640161090b565b6002600a55600e5460ff16610d835760405162461bcd60e51b815260206004820152603560248201527f50726573616c65206d696e74206973206e6f7420616374697665206174207468604482015274329036b7b6b2b73a17102132903830ba34b2b73a1760591b606482015260840161090b565b60008111610da35760405162461bcd60e51b815260040161090b90612970565b600f5481610db060085490565b610dba9190612a8b565b1115610dd85760405162461bcd60e51b815260040161090b906129f9565b601054811115610e395760405162461bcd60e51b815260206004820152602660248201527f43616e206f6e6c79206d696e7420757020746f203220706572207472616e736160448201526531ba34b7b71760d11b606482015260840161090b565b3481601254610e489190612ab7565b14610e955760405162461bcd60e51b815260206004820152601c60248201527f53656e74204554482076616c756520697320696e636f72726563742e00000000604482015260640161090b565b60105481610ea2336111a6565b610eac9190612a8b565b1115610f045760405162461bcd60e51b815260206004820152602160248201527f43616e206f6e6c79206d696e7420757020746f2032207065722077616c6c65746044820152601760f91b606482015260840161090b565b610f0e3383611611565b610f5a5760405162461bcd60e51b815260206004820152601760248201527f596f7520617265206e6f742077686974656c6973746564000000000000000000604482015260640161090b565b60005b81811015610f8057610f6e33610b7c565b80610f7881612b54565b915050610f5d565b50506001600a5550565b6000610f9560085490565b8210610ff85760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b606482015260840161090b565b6008828154811061100b5761100b612bc5565b90600052602060002001549050919050565b600b546001600160a01b031633146110475760405162461bcd60e51b815260040161090b906129c4565b8051610ba190600c906020840190612362565b600b546001600160a01b031633146110845760405162461bcd60e51b815260040161090b906129c4565b600e805461ff001981166101009182900460ff1615909102179055565b6000818152600260205260408120546001600160a01b0316806107fe5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b606482015260840161090b565b600c805461112590612b19565b80601f016020809104026020016040519081016040528092919081815260200182805461115190612b19565b801561119e5780601f106111735761010080835404028352916020019161119e565b820191906000526020600020905b81548152906001019060200180831161118157829003601f168201915b505050505081565b60006001600160a01b0382166112115760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b606482015260840161090b565b506001600160a01b031660009081526003602052604090205490565b600b546001600160a01b031633146112575760405162461bcd60e51b815260040161090b906129c4565b6112616000611c2b565b565b600b546001600160a01b0316331461128d5760405162461bcd60e51b815260040161090b906129c4565b601055565b600b546001600160a01b031633146112bc5760405162461bcd60e51b815260040161090b906129c4565b601155565b60606001805461081390612b19565b6000806000806112df85611596565b6040805160008152602081018083528b905260ff8516918101919091526060810183905260808101829052929550909350915060019060a0016020604051602081039080840390855afa15801561133a573d6000803e3d6000fd5b5050604051601f190151979650505050505050565b6002600a5414156113a25760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015260640161090b565b6002600a55600e54610100900460ff1661141b5760405162461bcd60e51b815260206004820152603460248201527f5075626c6963206d696e74206973206e6f7420616374697665206174207468656044820152731036b7b6b2b73a17102132903830ba34b2b73a1760611b606482015260840161090b565b6000811161143b5760405162461bcd60e51b815260040161090b90612970565b600f548161144860085490565b6114529190612a8b565b11156114705760405162461bcd60e51b815260040161090b906129f9565b600a8111156114d15760405162461bcd60e51b815260206004820152602760248201527f43616e206f6e6c79206d696e7420757020746f20313020706572207472616e7360448201526630b1ba34b7b71760c91b606482015260840161090b565b34816011546114e09190612ab7565b1461152d5760405162461bcd60e51b815260206004820152601c60248201527f53656e74204554482076616c756520697320696e636f72726563742e00000000604482015260640161090b565b60005b818110156115535761154133610b7c565b8061154b81612b54565b915050611530565b50506001600a55565b610ba1338383611c7d565b600b546001600160a01b031633146115915760405162461bcd60e51b815260040161090b906129c4565b601255565b600080600083516041146115a957600080fd5b5050506020810151604082015160609092015160001a92909190565b600b546001600160a01b031633146115ef5760405162461bcd60e51b815260040161090b906129c4565b601380546001600160a01b0319166001600160a01b0392909216919091179055565b6040516bffffffffffffffffffffffff19606084901b166020820152600090819060340160408051601f1981840301815291905280516020909101206013549091506001600160a01b031661166682856112d0565b6001600160a01b031614949350505050565b611682338361196f565b61169e5760405162461bcd60e51b815260040161090b90612a3a565b6116aa84848484611d4c565b50505050565b600d805461112590612b19565b6000818152600260205260409020546060906001600160a01b031661173c5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b606482015260840161090b565b6000611746611d7f565b905060008151116117665760405180602001604052806000815250611794565b8061177084611d8e565b600d604051602001611784939291906127c6565b6040516020818303038152906040525b9392505050565b600b546001600160a01b031633146117c55760405162461bcd60e51b815260040161090b906129c4565b8051610ba190600d906020840190612362565b600b546001600160a01b031633146118025760405162461bcd60e51b815260040161090b906129c4565b6001600160a01b0381166118675760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161090b565b61187081611c2b565b50565b600b546001600160a01b0316331461189d5760405162461bcd60e51b815260040161090b906129c4565b600e805460ff19811660ff90911615179055565b60006001600160e01b031982166380ac58cd60e01b14806118e257506001600160e01b03198216635b5e139f60e01b145b806107fe57506301ffc9a760e01b6001600160e01b03198316146107fe565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190611936826110a1565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166119e85760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161090b565b60006119f3836110a1565b9050806001600160a01b0316846001600160a01b03161480611a2e5750836001600160a01b0316611a2384610896565b6001600160a01b0316145b80611a5e57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316611a79826110a1565b6001600160a01b031614611ae15760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b606482015260840161090b565b6001600160a01b038216611b435760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b606482015260840161090b565b611b4e838383611e8c565b611b59600082611901565b6001600160a01b0383166000908152600360205260408120805460019290611b82908490612ad6565b90915550506001600160a01b0382166000908152600360205260408120805460019290611bb0908490612a8b565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b610ba1828260405180602001604052806000815250611f44565b600b80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b03161415611cdf5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161090b565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b611d57848484611a66565b611d6384848484611f77565b6116aa5760405162461bcd60e51b815260040161090b9061291e565b6060600c805461081390612b19565b606081611db25750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611ddc5780611dc681612b54565b9150611dd59050600a83612aa3565b9150611db6565b60008167ffffffffffffffff811115611df757611df7612bdb565b6040519080825280601f01601f191660200182016040528015611e21576020820181803683370190505b5090505b8415611a5e57611e36600183612ad6565b9150611e43600a86612b6f565b611e4e906030612a8b565b60f81b818381518110611e6357611e63612bc5565b60200101906001600160f81b031916908160001a905350611e85600a86612aa3565b9450611e25565b6001600160a01b038316611ee757611ee281600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b611f0a565b816001600160a01b0316836001600160a01b031614611f0a57611f0a8382612084565b6001600160a01b038216611f2157610a4181612121565b826001600160a01b0316826001600160a01b031614610a4157610a4182826121d0565b611f4e8383612214565b611f5b6000848484611f77565b610a415760405162461bcd60e51b815260040161090b9061291e565b60006001600160a01b0384163b1561207957604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611fbb90339089908890889060040161288a565b602060405180830381600087803b158015611fd557600080fd5b505af1925050508015612005575060408051601f3d908101601f19168201909252612002918101906126a1565b60015b61205f573d808015612033576040519150601f19603f3d011682016040523d82523d6000602084013e612038565b606091505b5080516120575760405162461bcd60e51b815260040161090b9061291e565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611a5e565b506001949350505050565b60006001612091846111a6565b61209b9190612ad6565b6000838152600760205260409020549091508082146120ee576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b60085460009061213390600190612ad6565b6000838152600960205260408120546008805493945090928490811061215b5761215b612bc5565b90600052602060002001549050806008838154811061217c5761217c612bc5565b60009182526020808320909101929092558281526009909152604080822084905585825281205560088054806121b4576121b4612baf565b6001900381819060005260206000200160009055905550505050565b60006121db836111a6565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b03821661226a5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161090b565b6000818152600260205260409020546001600160a01b0316156122cf5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161090b565b6122db60008383611e8c565b6001600160a01b0382166000908152600360205260408120805460019290612304908490612a8b565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b82805461236e90612b19565b90600052602060002090601f01602090048101928261239057600085556123d6565b82601f106123a957805160ff19168380011785556123d6565b828001600101855582156123d6579182015b828111156123d65782518255916020019190600101906123bb565b506123e29291506123e6565b5090565b5b808211156123e257600081556001016123e7565b600067ffffffffffffffff8084111561241657612416612bdb565b604051601f8501601f19908116603f0116810190828211818310171561243e5761243e612bdb565b8160405280935085815286868601111561245757600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b038116811461248857600080fd5b919050565b600082601f83011261249e57600080fd5b611794838335602085016123fb565b6000602082840312156124bf57600080fd5b61179482612471565b600080604083850312156124db57600080fd5b6124e483612471565b91506124f260208401612471565b90509250929050565b60008060006060848603121561251057600080fd5b61251984612471565b925061252760208501612471565b9150604084013590509250925092565b6000806000806080858703121561254d57600080fd5b61255685612471565b935061256460208601612471565b925060408501359150606085013567ffffffffffffffff81111561258757600080fd5b6125938782880161248d565b91505092959194509250565b600080604083850312156125b257600080fd5b6125bb83612471565b9150602083013580151581146125d057600080fd5b809150509250929050565b600080604083850312156125ee57600080fd5b6125f783612471565b9150602083013567ffffffffffffffff81111561261357600080fd5b61261f8582860161248d565b9150509250929050565b6000806040838503121561263c57600080fd5b61264583612471565b946020939093013593505050565b6000806040838503121561266657600080fd5b82359150602083013567ffffffffffffffff81111561261357600080fd5b60006020828403121561269657600080fd5b813561179481612bf1565b6000602082840312156126b357600080fd5b815161179481612bf1565b6000602082840312156126d057600080fd5b813567ffffffffffffffff8111156126e757600080fd5b611a5e8482850161248d565b6000806040838503121561270657600080fd5b823567ffffffffffffffff81111561271d57600080fd5b6127298582860161248d565b95602094909401359450505050565b60006020828403121561274a57600080fd5b813567ffffffffffffffff81111561276157600080fd5b8201601f8101841361277257600080fd5b611a5e848235602084016123fb565b60006020828403121561279357600080fd5b5035919050565b600081518084526127b2816020860160208601612aed565b601f01601f19169290920160200192915050565b6000845160206127d98285838a01612aed565b8551918401916127ec8184848a01612aed565b8554920191600090600181811c908083168061280957607f831692505b85831081141561282757634e487b7160e01b85526022600452602485fd5b80801561283b576001811461284c57612879565b60ff19851688528388019550612879565b60008b81526020902060005b858110156128715781548a820152908401908801612858565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906128bd9083018461279a565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b818110156128ff578351835292840192918401916001016128e3565b50909695505050505050565b602081526000611794602083018461279a565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526034908201527f4e756d626572206f6620746f6b656e732063616e206e6f74206265206c657373604082015273103a3430b71037b91032b8bab0b6103a3790181760611b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526021908201527f507572636861736520776f756c6420657863656564206d617820737570706c796040820152601760f91b606082015260800190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b60008219821115612a9e57612a9e612b83565b500190565b600082612ab257612ab2612b99565b500490565b6000816000190483118215151615612ad157612ad1612b83565b500290565b600082821015612ae857612ae8612b83565b500390565b60005b83811015612b08578181015183820152602001612af0565b838111156116aa5750506000910152565b600181811c90821680612b2d57607f821691505b60208210811415612b4e57634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612b6857612b68612b83565b5060010190565b600082612b7e57612b7e612b99565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461187057600080fdfea2646970667358221220a6e4638202d25aae7d450c64d82a653cc5a2769078372979b4612f0d9d7fd3b364736f6c63430008070033000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000000e477561726469616e204b6f6e677a000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000347444b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d583964626b794e696f596b694d634366503747484a653938786676415479366259614d59524273476b7032642f00000000000000000000
Deployed Bytecode
0x6080604052600436106102675760003560e01c806370a0823111610144578063b0129f5e116100b6578063d5abeb011161007a578063d5abeb011461070b578063da3ef23f14610721578063e985e9c514610741578063f247c7a01461078a578063f2fde38b146107a4578063f931a4c2146107c457600080fd5b8063b0129f5e14610676578063b0940d4514610696578063b88d4fde146106b6578063c6682862146106d6578063c87b56dd146106eb57600080fd5b806395d89b411161010857806395d89b41146105af57806397aba7f9146105c4578063a0712d68146105e4578063a22cb465146105f7578063a39edc2414610617578063a7bb58031461063757600080fd5b806370a082311461051c578063715018a61461053c5780637f00c7a6146105515780638545f4ea146105715780638da5cb5b1461059157600080fd5b806342842e0e116101dd57806355f804b3116101a157806355f804b31461048657806359c74f29146104a65780635be50521146104bb5780636352211e146104d15780636817c76c146104f15780636c0360eb1461050757600080fd5b806342842e0e146103e7578063438b630014610407578063471a4294146104345780634e21dc40146104535780634f6ccce71461046657600080fd5b8063239c70ae1161022f578063239c70ae1461033c57806323b872dd146103525780632f745c5914610372578063375a069a146103925780633b6dc6b4146103b25780633ccfd60b146103d257600080fd5b806301ffc9a71461026c57806306fdde03146102a1578063081812fc146102c3578063095ea7b3146102fb57806318160ddd1461031d575b600080fd5b34801561027857600080fd5b5061028c610287366004612684565b6107d9565b60405190151581526020015b60405180910390f35b3480156102ad57600080fd5b506102b6610804565b604051610298919061290b565b3480156102cf57600080fd5b506102e36102de366004612781565b610896565b6040516001600160a01b039091168152602001610298565b34801561030757600080fd5b5061031b610316366004612629565b610930565b005b34801561032957600080fd5b506008545b604051908152602001610298565b34801561034857600080fd5b5061032e60105481565b34801561035e57600080fd5b5061031b61036d3660046124fb565b610a46565b34801561037e57600080fd5b5061032e61038d366004612629565b610a77565b34801561039e57600080fd5b5061031b6103ad366004612781565b610b0d565b3480156103be57600080fd5b506013546102e3906001600160a01b031681565b3480156103de57600080fd5b5061031b610ba5565b3480156103f357600080fd5b5061031b6104023660046124fb565b610bfe565b34801561041357600080fd5b506104276104223660046124ad565b610c19565b60405161029891906128c7565b34801561044057600080fd5b50600e5461028c90610100900460ff1681565b61031b6104613660046126f3565b610cbb565b34801561047257600080fd5b5061032e610481366004612781565b610f8a565b34801561049257600080fd5b5061031b6104a1366004612738565b61101d565b3480156104b257600080fd5b5061031b61105a565b3480156104c757600080fd5b5061032e60125481565b3480156104dd57600080fd5b506102e36104ec366004612781565b6110a1565b3480156104fd57600080fd5b5061032e60115481565b34801561051357600080fd5b506102b6611118565b34801561052857600080fd5b5061032e6105373660046124ad565b6111a6565b34801561054857600080fd5b5061031b61122d565b34801561055d57600080fd5b5061031b61056c366004612781565b611263565b34801561057d57600080fd5b5061031b61058c366004612781565b611292565b34801561059d57600080fd5b50600b546001600160a01b03166102e3565b3480156105bb57600080fd5b506102b66112c1565b3480156105d057600080fd5b506102e36105df366004612653565b6112d0565b61031b6105f2366004612781565b61134f565b34801561060357600080fd5b5061031b61061236600461259f565b61155c565b34801561062357600080fd5b5061031b610632366004612781565b611567565b34801561064357600080fd5b506106576106523660046126be565b611596565b6040805160ff9094168452602084019290925290820152606001610298565b34801561068257600080fd5b5061031b6106913660046124ad565b6115c5565b3480156106a257600080fd5b5061028c6106b13660046125db565b611611565b3480156106c257600080fd5b5061031b6106d1366004612537565b611678565b3480156106e257600080fd5b506102b66116b0565b3480156106f757600080fd5b506102b6610706366004612781565b6116bd565b34801561071757600080fd5b5061032e600f5481565b34801561072d57600080fd5b5061031b61073c366004612738565b61179b565b34801561074d57600080fd5b5061028c61075c3660046124c8565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561079657600080fd5b50600e5461028c9060ff1681565b3480156107b057600080fd5b5061031b6107bf3660046124ad565b6117d8565b3480156107d057600080fd5b5061031b611873565b60006001600160e01b0319821663780e9d6360e01b14806107fe57506107fe826118b1565b92915050565b60606000805461081390612b19565b80601f016020809104026020016040519081016040528092919081815260200182805461083f90612b19565b801561088c5780601f106108615761010080835404028352916020019161088c565b820191906000526020600020905b81548152906001019060200180831161086f57829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166109145760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061093b826110a1565b9050806001600160a01b0316836001600160a01b031614156109a95760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b606482015260840161090b565b336001600160a01b03821614806109c557506109c5813361075c565b610a375760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606482015260840161090b565b610a418383611901565b505050565b610a50338261196f565b610a6c5760405162461bcd60e51b815260040161090b90612a3a565b610a41838383611a66565b6000610a82836111a6565b8210610ae45760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b606482015260840161090b565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600b546001600160a01b03163314610b375760405162461bcd60e51b815260040161090b906129c4565b600f5481610b4460085490565b610b4e9190612a8b565b1115610b6c5760405162461bcd60e51b815260040161090b906129f9565b60005b81811015610ba157610b8f335b600854610b8a906001612a8b565b611c11565b80610b9981612b54565b915050610b6f565b5050565b600b546001600160a01b03163314610bcf5760405162461bcd60e51b815260040161090b906129c4565b6040514790339082156108fc029083906000818181858888f19350505050158015610ba1573d6000803e3d6000fd5b610a4183838360405180602001604052806000815250611678565b60606000610c26836111a6565b905060008167ffffffffffffffff811115610c4357610c43612bdb565b604051908082528060200260200182016040528015610c6c578160200160208202803683370190505b50905060005b82811015610cb357610c848582610a77565b828281518110610c9657610c96612bc5565b602090810291909101015280610cab81612b54565b915050610c72565b509392505050565b6002600a541415610d0e5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015260640161090b565b6002600a55600e5460ff16610d835760405162461bcd60e51b815260206004820152603560248201527f50726573616c65206d696e74206973206e6f7420616374697665206174207468604482015274329036b7b6b2b73a17102132903830ba34b2b73a1760591b606482015260840161090b565b60008111610da35760405162461bcd60e51b815260040161090b90612970565b600f5481610db060085490565b610dba9190612a8b565b1115610dd85760405162461bcd60e51b815260040161090b906129f9565b601054811115610e395760405162461bcd60e51b815260206004820152602660248201527f43616e206f6e6c79206d696e7420757020746f203220706572207472616e736160448201526531ba34b7b71760d11b606482015260840161090b565b3481601254610e489190612ab7565b14610e955760405162461bcd60e51b815260206004820152601c60248201527f53656e74204554482076616c756520697320696e636f72726563742e00000000604482015260640161090b565b60105481610ea2336111a6565b610eac9190612a8b565b1115610f045760405162461bcd60e51b815260206004820152602160248201527f43616e206f6e6c79206d696e7420757020746f2032207065722077616c6c65746044820152601760f91b606482015260840161090b565b610f0e3383611611565b610f5a5760405162461bcd60e51b815260206004820152601760248201527f596f7520617265206e6f742077686974656c6973746564000000000000000000604482015260640161090b565b60005b81811015610f8057610f6e33610b7c565b80610f7881612b54565b915050610f5d565b50506001600a5550565b6000610f9560085490565b8210610ff85760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b606482015260840161090b565b6008828154811061100b5761100b612bc5565b90600052602060002001549050919050565b600b546001600160a01b031633146110475760405162461bcd60e51b815260040161090b906129c4565b8051610ba190600c906020840190612362565b600b546001600160a01b031633146110845760405162461bcd60e51b815260040161090b906129c4565b600e805461ff001981166101009182900460ff1615909102179055565b6000818152600260205260408120546001600160a01b0316806107fe5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b606482015260840161090b565b600c805461112590612b19565b80601f016020809104026020016040519081016040528092919081815260200182805461115190612b19565b801561119e5780601f106111735761010080835404028352916020019161119e565b820191906000526020600020905b81548152906001019060200180831161118157829003601f168201915b505050505081565b60006001600160a01b0382166112115760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b606482015260840161090b565b506001600160a01b031660009081526003602052604090205490565b600b546001600160a01b031633146112575760405162461bcd60e51b815260040161090b906129c4565b6112616000611c2b565b565b600b546001600160a01b0316331461128d5760405162461bcd60e51b815260040161090b906129c4565b601055565b600b546001600160a01b031633146112bc5760405162461bcd60e51b815260040161090b906129c4565b601155565b60606001805461081390612b19565b6000806000806112df85611596565b6040805160008152602081018083528b905260ff8516918101919091526060810183905260808101829052929550909350915060019060a0016020604051602081039080840390855afa15801561133a573d6000803e3d6000fd5b5050604051601f190151979650505050505050565b6002600a5414156113a25760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015260640161090b565b6002600a55600e54610100900460ff1661141b5760405162461bcd60e51b815260206004820152603460248201527f5075626c6963206d696e74206973206e6f7420616374697665206174207468656044820152731036b7b6b2b73a17102132903830ba34b2b73a1760611b606482015260840161090b565b6000811161143b5760405162461bcd60e51b815260040161090b90612970565b600f548161144860085490565b6114529190612a8b565b11156114705760405162461bcd60e51b815260040161090b906129f9565b600a8111156114d15760405162461bcd60e51b815260206004820152602760248201527f43616e206f6e6c79206d696e7420757020746f20313020706572207472616e7360448201526630b1ba34b7b71760c91b606482015260840161090b565b34816011546114e09190612ab7565b1461152d5760405162461bcd60e51b815260206004820152601c60248201527f53656e74204554482076616c756520697320696e636f72726563742e00000000604482015260640161090b565b60005b818110156115535761154133610b7c565b8061154b81612b54565b915050611530565b50506001600a55565b610ba1338383611c7d565b600b546001600160a01b031633146115915760405162461bcd60e51b815260040161090b906129c4565b601255565b600080600083516041146115a957600080fd5b5050506020810151604082015160609092015160001a92909190565b600b546001600160a01b031633146115ef5760405162461bcd60e51b815260040161090b906129c4565b601380546001600160a01b0319166001600160a01b0392909216919091179055565b6040516bffffffffffffffffffffffff19606084901b166020820152600090819060340160408051601f1981840301815291905280516020909101206013549091506001600160a01b031661166682856112d0565b6001600160a01b031614949350505050565b611682338361196f565b61169e5760405162461bcd60e51b815260040161090b90612a3a565b6116aa84848484611d4c565b50505050565b600d805461112590612b19565b6000818152600260205260409020546060906001600160a01b031661173c5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b606482015260840161090b565b6000611746611d7f565b905060008151116117665760405180602001604052806000815250611794565b8061177084611d8e565b600d604051602001611784939291906127c6565b6040516020818303038152906040525b9392505050565b600b546001600160a01b031633146117c55760405162461bcd60e51b815260040161090b906129c4565b8051610ba190600d906020840190612362565b600b546001600160a01b031633146118025760405162461bcd60e51b815260040161090b906129c4565b6001600160a01b0381166118675760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161090b565b61187081611c2b565b50565b600b546001600160a01b0316331461189d5760405162461bcd60e51b815260040161090b906129c4565b600e805460ff19811660ff90911615179055565b60006001600160e01b031982166380ac58cd60e01b14806118e257506001600160e01b03198216635b5e139f60e01b145b806107fe57506301ffc9a760e01b6001600160e01b03198316146107fe565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190611936826110a1565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166119e85760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161090b565b60006119f3836110a1565b9050806001600160a01b0316846001600160a01b03161480611a2e5750836001600160a01b0316611a2384610896565b6001600160a01b0316145b80611a5e57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316611a79826110a1565b6001600160a01b031614611ae15760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b606482015260840161090b565b6001600160a01b038216611b435760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b606482015260840161090b565b611b4e838383611e8c565b611b59600082611901565b6001600160a01b0383166000908152600360205260408120805460019290611b82908490612ad6565b90915550506001600160a01b0382166000908152600360205260408120805460019290611bb0908490612a8b565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b610ba1828260405180602001604052806000815250611f44565b600b80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b03161415611cdf5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161090b565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b611d57848484611a66565b611d6384848484611f77565b6116aa5760405162461bcd60e51b815260040161090b9061291e565b6060600c805461081390612b19565b606081611db25750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611ddc5780611dc681612b54565b9150611dd59050600a83612aa3565b9150611db6565b60008167ffffffffffffffff811115611df757611df7612bdb565b6040519080825280601f01601f191660200182016040528015611e21576020820181803683370190505b5090505b8415611a5e57611e36600183612ad6565b9150611e43600a86612b6f565b611e4e906030612a8b565b60f81b818381518110611e6357611e63612bc5565b60200101906001600160f81b031916908160001a905350611e85600a86612aa3565b9450611e25565b6001600160a01b038316611ee757611ee281600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b611f0a565b816001600160a01b0316836001600160a01b031614611f0a57611f0a8382612084565b6001600160a01b038216611f2157610a4181612121565b826001600160a01b0316826001600160a01b031614610a4157610a4182826121d0565b611f4e8383612214565b611f5b6000848484611f77565b610a415760405162461bcd60e51b815260040161090b9061291e565b60006001600160a01b0384163b1561207957604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611fbb90339089908890889060040161288a565b602060405180830381600087803b158015611fd557600080fd5b505af1925050508015612005575060408051601f3d908101601f19168201909252612002918101906126a1565b60015b61205f573d808015612033576040519150601f19603f3d011682016040523d82523d6000602084013e612038565b606091505b5080516120575760405162461bcd60e51b815260040161090b9061291e565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611a5e565b506001949350505050565b60006001612091846111a6565b61209b9190612ad6565b6000838152600760205260409020549091508082146120ee576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b60085460009061213390600190612ad6565b6000838152600960205260408120546008805493945090928490811061215b5761215b612bc5565b90600052602060002001549050806008838154811061217c5761217c612bc5565b60009182526020808320909101929092558281526009909152604080822084905585825281205560088054806121b4576121b4612baf565b6001900381819060005260206000200160009055905550505050565b60006121db836111a6565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b03821661226a5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161090b565b6000818152600260205260409020546001600160a01b0316156122cf5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161090b565b6122db60008383611e8c565b6001600160a01b0382166000908152600360205260408120805460019290612304908490612a8b565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b82805461236e90612b19565b90600052602060002090601f01602090048101928261239057600085556123d6565b82601f106123a957805160ff19168380011785556123d6565b828001600101855582156123d6579182015b828111156123d65782518255916020019190600101906123bb565b506123e29291506123e6565b5090565b5b808211156123e257600081556001016123e7565b600067ffffffffffffffff8084111561241657612416612bdb565b604051601f8501601f19908116603f0116810190828211818310171561243e5761243e612bdb565b8160405280935085815286868601111561245757600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b038116811461248857600080fd5b919050565b600082601f83011261249e57600080fd5b611794838335602085016123fb565b6000602082840312156124bf57600080fd5b61179482612471565b600080604083850312156124db57600080fd5b6124e483612471565b91506124f260208401612471565b90509250929050565b60008060006060848603121561251057600080fd5b61251984612471565b925061252760208501612471565b9150604084013590509250925092565b6000806000806080858703121561254d57600080fd5b61255685612471565b935061256460208601612471565b925060408501359150606085013567ffffffffffffffff81111561258757600080fd5b6125938782880161248d565b91505092959194509250565b600080604083850312156125b257600080fd5b6125bb83612471565b9150602083013580151581146125d057600080fd5b809150509250929050565b600080604083850312156125ee57600080fd5b6125f783612471565b9150602083013567ffffffffffffffff81111561261357600080fd5b61261f8582860161248d565b9150509250929050565b6000806040838503121561263c57600080fd5b61264583612471565b946020939093013593505050565b6000806040838503121561266657600080fd5b82359150602083013567ffffffffffffffff81111561261357600080fd5b60006020828403121561269657600080fd5b813561179481612bf1565b6000602082840312156126b357600080fd5b815161179481612bf1565b6000602082840312156126d057600080fd5b813567ffffffffffffffff8111156126e757600080fd5b611a5e8482850161248d565b6000806040838503121561270657600080fd5b823567ffffffffffffffff81111561271d57600080fd5b6127298582860161248d565b95602094909401359450505050565b60006020828403121561274a57600080fd5b813567ffffffffffffffff81111561276157600080fd5b8201601f8101841361277257600080fd5b611a5e848235602084016123fb565b60006020828403121561279357600080fd5b5035919050565b600081518084526127b2816020860160208601612aed565b601f01601f19169290920160200192915050565b6000845160206127d98285838a01612aed565b8551918401916127ec8184848a01612aed565b8554920191600090600181811c908083168061280957607f831692505b85831081141561282757634e487b7160e01b85526022600452602485fd5b80801561283b576001811461284c57612879565b60ff19851688528388019550612879565b60008b81526020902060005b858110156128715781548a820152908401908801612858565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906128bd9083018461279a565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b818110156128ff578351835292840192918401916001016128e3565b50909695505050505050565b602081526000611794602083018461279a565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526034908201527f4e756d626572206f6620746f6b656e732063616e206e6f74206265206c657373604082015273103a3430b71037b91032b8bab0b6103a3790181760611b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526021908201527f507572636861736520776f756c6420657863656564206d617820737570706c796040820152601760f91b606082015260800190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b60008219821115612a9e57612a9e612b83565b500190565b600082612ab257612ab2612b99565b500490565b6000816000190483118215151615612ad157612ad1612b83565b500290565b600082821015612ae857612ae8612b83565b500390565b60005b83811015612b08578181015183820152602001612af0565b838111156116aa5750506000910152565b600181811c90821680612b2d57607f821691505b60208210811415612b4e57634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612b6857612b68612b83565b5060010190565b600082612b7e57612b7e612b99565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461187057600080fdfea2646970667358221220a6e4638202d25aae7d450c64d82a653cc5a2769078372979b4612f0d9d7fd3b364736f6c63430008070033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000000e477561726469616e204b6f6e677a000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000347444b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d583964626b794e696f596b694d634366503747484a653938786676415479366259614d59524273476b7032642f00000000000000000000
-----Decoded View---------------
Arg [0] : _name (string): Guardian Kongz
Arg [1] : _symbol (string): GDK
Arg [2] : _initBaseURI (string): ipfs://QmX9dbkyNioYkiMcCfP7GHJe98xfvATy6bYaMYRBsGkp2d/
-----Encoded View---------------
10 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [3] : 000000000000000000000000000000000000000000000000000000000000000e
Arg [4] : 477561726469616e204b6f6e677a000000000000000000000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [6] : 47444b0000000000000000000000000000000000000000000000000000000000
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000036
Arg [8] : 697066733a2f2f516d583964626b794e696f596b694d634366503747484a6539
Arg [9] : 38786676415479366259614d59524273476b7032642f00000000000000000000
Deployed Bytecode Sourcemap
49050:5788:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41060:224;;;;;;;;;;-1:-1:-1;41060:224:0;;;;;:::i;:::-;;:::i;:::-;;;9180:14:1;;9173:22;9155:41;;9143:2;9128:18;41060:224:0;;;;;;;;28554:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;30113:221::-;;;;;;;;;;-1:-1:-1;30113:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;7841:32:1;;;7823:51;;7811:2;7796:18;30113:221:0;7677:203:1;29636:411:0;;;;;;;;;;-1:-1:-1;29636:411:0;;;;;:::i;:::-;;:::i;:::-;;41700:113;;;;;;;;;;-1:-1:-1;41788:10:0;:17;41700:113;;;21139:25:1;;;21127:2;21112:18;41700:113:0;20993:177:1;49363:32:0;;;;;;;;;;;;;;;;30863:339;;;;;;;;;;-1:-1:-1;30863:339:0;;;;;:::i;:::-;;:::i;41368:256::-;;;;;;;;;;-1:-1:-1;41368:256:0;;;;;:::i;:::-;;:::i;51895:297::-;;;;;;;;;;-1:-1:-1;51895:297:0;;;;;:::i;:::-;;:::i;49537:31::-;;;;;;;;;;-1:-1:-1;49537:31:0;;;;-1:-1:-1;;;;;49537:31:0;;;51732:142;;;;;;;;;;;;;:::i;31273:185::-;;;;;;;;;;-1:-1:-1;31273:185:0;;;;;:::i;:::-;;:::i;49925:386::-;;;;;;;;;;-1:-1:-1;49925:386:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;49284:32::-;;;;;;;;;;-1:-1:-1;49284:32:0;;;;;;;;;;;52862:891;;;;;;:::i;:::-;;:::i;41890:233::-;;;;;;;;;;-1:-1:-1;41890:233:0;;;;;:::i;:::-;;:::i;51133:104::-;;;;;;;;;;-1:-1:-1;51133:104:0;;;;;:::i;:::-;;:::i;51517:89::-;;;;;;;;;;;;;:::i;49465:51::-;;;;;;;;;;;;;;;;28248:239;;;;;;;;;;-1:-1:-1;28248:239:0;;;;;:::i;:::-;;:::i;49402:44::-;;;;;;;;;;;;;;;;49164:21;;;;;;;;;;;;;:::i;27978:208::-;;;;;;;;;;-1:-1:-1;27978:208:0;;;;;:::i;:::-;;:::i;7524:103::-;;;;;;;;;;;;;:::i;51001:124::-;;;;;;;;;;-1:-1:-1;51001:124:0;;;;;:::i;:::-;;:::i;50772:99::-;;;;;;;;;;-1:-1:-1;50772:99:0;;;;;:::i;:::-;;:::i;6873:87::-;;;;;;;;;;-1:-1:-1;6946:6:0;;-1:-1:-1;;;;;6946:6:0;6873:87;;28723:104;;;;;;;;;;;;;:::i;54028:264::-;;;;;;;;;;-1:-1:-1;54028:264:0;;;;;:::i;:::-;;:::i;52200:654::-;;;;;;:::i;:::-;;:::i;30406:155::-;;;;;;;;;;-1:-1:-1;30406:155:0;;;;;:::i;:::-;;:::i;50880:113::-;;;;;;;;;;-1:-1:-1;50880:113:0;;;;;:::i;:::-;;:::i;54300:535::-;;;;;;;;;;-1:-1:-1;54300:535:0;;;;;:::i;:::-;;:::i;:::-;;;;21403:4:1;21391:17;;;21373:36;;21440:2;21425:18;;21418:34;;;;21468:18;;;21461:34;21361:2;21346:18;54300:535:0;21175:326:1;51381:128:0;;;;;;;;;;-1:-1:-1;51381:128:0;;;;;:::i;:::-;;:::i;53785:235::-;;;;;;;;;;-1:-1:-1;53785:235:0;;;;;:::i;:::-;;:::i;31529:328::-;;;;;;;;;;-1:-1:-1;31529:328:0;;;;;:::i;:::-;;:::i;49192:37::-;;;;;;;;;;;;;:::i;50319:445::-;;;;;;;;;;-1:-1:-1;50319:445:0;;;;;:::i;:::-;;:::i;49325:31::-;;;;;;;;;;;;;;;;51245:128;;;;;;;;;;-1:-1:-1;51245:128:0;;;;;:::i;:::-;;:::i;30632:164::-;;;;;;;;;;-1:-1:-1;30632:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;30753:25:0;;;30729:4;30753:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;30632:164;49238:39;;;;;;;;;;-1:-1:-1;49238:39:0;;;;;;;;7782:201;;;;;;;;;;-1:-1:-1;7782:201:0;;;;;:::i;:::-;;:::i;51614:110::-;;;;;;;;;;;;;:::i;41060:224::-;41162:4;-1:-1:-1;;;;;;41186:50:0;;-1:-1:-1;;;41186:50:0;;:90;;;41240:36;41264:11;41240:23;:36::i;:::-;41179:97;41060:224;-1:-1:-1;;41060:224:0:o;28554:100::-;28608:13;28641:5;28634:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28554:100;:::o;30113:221::-;30189:7;33456:16;;;:7;:16;;;;;;-1:-1:-1;;;;;33456:16:0;30209:73;;;;-1:-1:-1;;;30209:73:0;;17192:2:1;30209:73:0;;;17174:21:1;17231:2;17211:18;;;17204:30;17270:34;17250:18;;;17243:62;-1:-1:-1;;;17321:18:1;;;17314:42;17373:19;;30209:73:0;;;;;;;;;-1:-1:-1;30302:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;30302:24:0;;30113:221::o;29636:411::-;29717:13;29733:23;29748:7;29733:14;:23::i;:::-;29717:39;;29781:5;-1:-1:-1;;;;;29775:11:0;:2;-1:-1:-1;;;;;29775:11:0;;;29767:57;;;;-1:-1:-1;;;29767:57:0;;19194:2:1;29767:57:0;;;19176:21:1;19233:2;19213:18;;;19206:30;19272:34;19252:18;;;19245:62;-1:-1:-1;;;19323:18:1;;;19316:31;19364:19;;29767:57:0;18992:397:1;29767:57:0;5677:10;-1:-1:-1;;;;;29859:21:0;;;;:62;;-1:-1:-1;29884:37:0;29901:5;5677:10;30632:164;:::i;29884:37::-;29837:168;;;;-1:-1:-1;;;29837:168:0;;13969:2:1;29837:168:0;;;13951:21:1;14008:2;13988:18;;;13981:30;14047:34;14027:18;;;14020:62;14118:26;14098:18;;;14091:54;14162:19;;29837:168:0;13767:420:1;29837:168:0;30018:21;30027:2;30031:7;30018:8;:21::i;:::-;29706:341;29636:411;;:::o;30863:339::-;31058:41;5677:10;31091:7;31058:18;:41::i;:::-;31050:103;;;;-1:-1:-1;;;31050:103:0;;;;;;;:::i;:::-;31166:28;31176:4;31182:2;31186:7;31166:9;:28::i;41368:256::-;41465:7;41501:23;41518:5;41501:16;:23::i;:::-;41493:5;:31;41485:87;;;;-1:-1:-1;;;41485:87:0;;10036:2:1;41485:87:0;;;10018:21:1;10075:2;10055:18;;;10048:30;10114:34;10094:18;;;10087:62;-1:-1:-1;;;10165:18:1;;;10158:41;10216:19;;41485:87:0;9834:407:1;41485:87:0;-1:-1:-1;;;;;;41590:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;41368:256::o;51895:297::-;6946:6;;-1:-1:-1;;;;;6946:6:0;5677:10;7093:23;7085:68;;;;-1:-1:-1;;;7085:68:0;;;;;;;:::i;:::-;52006:9:::1;;51988:14;51972:13;41788:10:::0;:17;;41700:113;51972:13:::1;:30;;;;:::i;:::-;:43;;51964:89;;;;-1:-1:-1::0;;;51964:89:0::1;;;;;;;:::i;:::-;52079:6;52074:111;52095:14;52091:1;:18;52074:111;;;52131:42;5677:10:::0;52141:12:::1;41788:10:::0;:17;52155::::1;::::0;52171:1:::1;52155:17;:::i;:::-;52131:9;:42::i;:::-;52111:3:::0;::::1;::::0;::::1;:::i;:::-;;;;52074:111;;;;51895:297:::0;:::o;51732:142::-;6946:6;;-1:-1:-1;;;;;6946:6:0;5677:10;7093:23;7085:68;;;;-1:-1:-1;;;7085:68:0;;;;;;;:::i;:::-;51827:39:::1;::::0;51795:21:::1;::::0;5677:10;;51827:39;::::1;;;::::0;51795:21;;51827:39:::1;::::0;;;51795:21;5677:10;51827:39;::::1;;;;;;;;;;;;;::::0;::::1;;;;31273:185:::0;31411:39;31428:4;31434:2;31438:7;31411:39;;;;;;;;;;;;:16;:39::i;49925:386::-;50012:16;50046:23;50072:17;50082:6;50072:9;:17::i;:::-;50046:43;;50100:25;50142:15;50128:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;50128:30:0;;50100:58;;50174:9;50169:109;50189:15;50185:1;:19;50169:109;;;50236:30;50256:6;50264:1;50236:19;:30::i;:::-;50222:8;50231:1;50222:11;;;;;;;;:::i;:::-;;;;;;;;;;:44;50206:3;;;;:::i;:::-;;;;50169:109;;;-1:-1:-1;50295:8:0;49925:386;-1:-1:-1;;;49925:386:0:o;52862:891::-;1847:1;2445:7;;:19;;2437:63;;;;-1:-1:-1;;;2437:63:0;;20835:2:1;2437:63:0;;;20817:21:1;20874:2;20854:18;;;20847:30;20913:33;20893:18;;;20886:61;20964:18;;2437:63:0;20633:355:1;2437:63:0;1847:1;2578:7;:18;52973:19:::1;::::0;::::1;;52965:85;;;::::0;-1:-1:-1;;;52965:85:0;;16770:2:1;52965:85:0::1;::::0;::::1;16752:21:1::0;16809:2;16789:18;;;16782:30;16848:34;16828:18;;;16821:62;-1:-1:-1;;;16899:18:1;;;16892:51;16960:19;;52965:85:0::1;16568:417:1::0;52965:85:0::1;53086:1;53069:14;:18;53061:83;;;;-1:-1:-1::0;;;53061:83:0::1;;;;;;;:::i;:::-;53197:9;;53179:14;53163:13;41788:10:::0;:17;;41700:113;53163:13:::1;:30;;;;:::i;:::-;:43;;53155:89;;;;-1:-1:-1::0;;;53155:89:0::1;;;;;;;:::i;:::-;53281:13;;53263:14;:31;;53255:82;;;::::0;-1:-1:-1;;;53255:82:0;;13149:2:1;53255:82:0::1;::::0;::::1;13131:21:1::0;13188:2;13168:18;;;13161:30;13227:34;13207:18;;;13200:62;-1:-1:-1;;;13278:18:1;;;13271:36;13324:19;;53255:82:0::1;12947:402:1::0;53255:82:0::1;53393:9;53375:14;53356:16;;:33;;;;:::i;:::-;:46;53348:87;;;::::0;-1:-1:-1;;;53348:87:0;;11274:2:1;53348:87:0::1;::::0;::::1;11256:21:1::0;11313:2;11293:18;;;11286:30;11352;11332:18;;;11325:58;11400:18;;53348:87:0::1;11072:352:1::0;53348:87:0::1;53496:13;;53478:14;53454:21;53464:10;53454:9;:21::i;:::-;:38;;;;:::i;:::-;:55;;53446:101;;;::::0;-1:-1:-1;;;53446:101:0;;11988:2:1;53446:101:0::1;::::0;::::1;11970:21:1::0;12027:2;12007:18;;;12000:30;12066:34;12046:18;;;12039:62;-1:-1:-1;;;12117:18:1;;;12110:31;12158:19;;53446:101:0::1;11786:397:1::0;53446:101:0::1;53566:28;53578:10;53590:3;53566:11;:28::i;:::-;53558:64;;;::::0;-1:-1:-1;;;53558:64:0;;16418:2:1;53558:64:0::1;::::0;::::1;16400:21:1::0;16457:2;16437:18;;;16430:30;16496:25;16476:18;;;16469:53;16539:18;;53558:64:0::1;16216:347:1::0;53558:64:0::1;53640:6;53635:111;53656:14;53652:1;:18;53635:111;;;53692:42;5677:10:::0;53702:12:::1;5597:98:::0;53692:42:::1;53672:3:::0;::::1;::::0;::::1;:::i;:::-;;;;53635:111;;;-1:-1:-1::0;;1803:1:0;2757:7;:22;-1:-1:-1;52862:891:0:o;41890:233::-;41965:7;42001:30;41788:10;:17;;41700:113;42001:30;41993:5;:38;41985:95;;;;-1:-1:-1;;;41985:95:0;;20422:2:1;41985:95:0;;;20404:21:1;20461:2;20441:18;;;20434:30;20500:34;20480:18;;;20473:62;-1:-1:-1;;;20551:18:1;;;20544:42;20603:19;;41985:95:0;20220:408:1;41985:95:0;42098:10;42109:5;42098:17;;;;;;;;:::i;:::-;;;;;;;;;42091:24;;41890:233;;;:::o;51133:104::-;6946:6;;-1:-1:-1;;;;;6946:6:0;5677:10;7093:23;7085:68;;;;-1:-1:-1;;;7085:68:0;;;;;;;:::i;:::-;51208:21;;::::1;::::0;:7:::1;::::0;:21:::1;::::0;::::1;::::0;::::1;:::i;51517:89::-:0;6946:6;;-1:-1:-1;;;;;6946:6:0;5677:10;7093:23;7085:68;;;;-1:-1:-1;;;7085:68:0;;;;;;;:::i;:::-;51586:12:::1;::::0;;-1:-1:-1;;51570:28:0;::::1;51586:12;::::0;;;::::1;;;51585:13;51570:28:::0;;::::1;;::::0;;51517:89::o;28248:239::-;28320:7;28356:16;;;:7;:16;;;;;;-1:-1:-1;;;;;28356:16:0;28391:19;28383:73;;;;-1:-1:-1;;;28383:73:0;;14805:2:1;28383:73:0;;;14787:21:1;14844:2;14824:18;;;14817:30;14883:34;14863:18;;;14856:62;-1:-1:-1;;;14934:18:1;;;14927:39;14983:19;;28383:73:0;14603:405:1;49164:21:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;27978:208::-;28050:7;-1:-1:-1;;;;;28078:19:0;;28070:74;;;;-1:-1:-1;;;28070:74:0;;14394:2:1;28070:74:0;;;14376:21:1;14433:2;14413:18;;;14406:30;14472:34;14452:18;;;14445:62;-1:-1:-1;;;14523:18:1;;;14516:40;14573:19;;28070:74:0;14192:406:1;28070:74:0;-1:-1:-1;;;;;;28162:16:0;;;;;:9;:16;;;;;;;27978:208::o;7524:103::-;6946:6;;-1:-1:-1;;;;;6946:6:0;5677:10;7093:23;7085:68;;;;-1:-1:-1;;;7085:68:0;;;;;;;:::i;:::-;7589:30:::1;7616:1;7589:18;:30::i;:::-;7524:103::o:0;51001:124::-;6946:6;;-1:-1:-1;;;;;6946:6:0;5677:10;7093:23;7085:68;;;;-1:-1:-1;;;7085:68:0;;;;;;;:::i;:::-;51084:13:::1;:33:::0;51001:124::o;50772:99::-;6946:6;;-1:-1:-1;;;;;6946:6:0;5677:10;7093:23;7085:68;;;;-1:-1:-1;;;7085:68:0;;;;;;;:::i;:::-;50842:9:::1;:21:::0;50772:99::o;28723:104::-;28779:13;28812:7;28805:14;;;;;:::i;54028:264::-;54131:7;54155;54172:9;54191;54222:19;54237:3;54222:14;:19::i;:::-;54258:27;;;;;;;;;;;;9434:25:1;;;9507:4;9495:17;;9475:18;;;9468:45;;;;9529:18;;;9522:34;;;9572:18;;;9565:34;;;54210:31:0;;-1:-1:-1;54210:31:0;;-1:-1:-1;54210:31:0;-1:-1:-1;54258:27:0;;9406:19:1;;54258:27:0;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;54258:27:0;;-1:-1:-1;;54258:27:0;;;54028:264;-1:-1:-1;;;;;;;54028:264:0:o;52200:654::-;1847:1;2445:7;;:19;;2437:63;;;;-1:-1:-1;;;2437:63:0;;20835:2:1;2437:63:0;;;20817:21:1;20874:2;20854:18;;;20847:30;20913:33;20893:18;;;20886:61;20964:18;;2437:63:0;20633:355:1;2437:63:0;1847:1;2578:7;:18;52286:12:::1;::::0;::::1;::::0;::::1;;;52278:77;;;::::0;-1:-1:-1;;;52278:77:0;;15215:2:1;52278:77:0::1;::::0;::::1;15197:21:1::0;15254:2;15234:18;;;15227:30;15293:34;15273:18;;;15266:62;-1:-1:-1;;;15344:18:1;;;15337:50;15404:19;;52278:77:0::1;15013:416:1::0;52278:77:0::1;52391:1;52374:14;:18;52366:83;;;;-1:-1:-1::0;;;52366:83:0::1;;;;;;;:::i;:::-;52502:9;;52484:14;52468:13;41788:10:::0;:17;;41700:113;52468:13:::1;:30;;;;:::i;:::-;:43;;52460:89;;;;-1:-1:-1::0;;;52460:89:0::1;;;;;;;:::i;:::-;52586:2;52568:14;:20;;52560:72;;;::::0;-1:-1:-1;;;52560:72:0;;20014:2:1;52560:72:0::1;::::0;::::1;19996:21:1::0;20053:2;20033:18;;;20026:30;20092:34;20072:18;;;20065:62;-1:-1:-1;;;20143:18:1;;;20136:37;20190:19;;52560:72:0::1;19812:403:1::0;52560:72:0::1;52681:9;52663:14;52651:9;;:26;;;;:::i;:::-;:39;52643:80;;;::::0;-1:-1:-1;;;52643:80:0;;11274:2:1;52643:80:0::1;::::0;::::1;11256:21:1::0;11313:2;11293:18;;;11286:30;11352;11332:18;;;11325:58;11400:18;;52643:80:0::1;11072:352:1::0;52643:80:0::1;52741:6;52736:111;52757:14;52753:1;:18;52736:111;;;52793:42;5677:10:::0;52803:12:::1;5597:98:::0;52793:42:::1;52773:3:::0;::::1;::::0;::::1;:::i;:::-;;;;52736:111;;;-1:-1:-1::0;;1803:1:0;2757:7;:22;52200:654::o;30406:155::-;30501:52;5677:10;30534:8;30544;30501:18;:52::i;50880:113::-;6946:6;;-1:-1:-1;;;;;6946:6:0;5677:10;7093:23;7085:68;;;;-1:-1:-1;;;7085:68:0;;;;;;;:::i;:::-;50957:16:::1;:28:::0;50880:113::o;54300:535::-;54387:5;54394:7;54403;54435:3;:10;54449:2;54435:16;54427:25;;;;;;-1:-1:-1;;;54615:2:0;54606:12;;54600:19;54683:2;54674:12;;54668:19;54788:2;54779:12;;;54773:19;54462:9;54765:28;;54600:19;;54668;54300:535::o;51381:128::-;6946:6;;-1:-1:-1;;;;;6946:6:0;5677:10;7093:23;7085:68;;;;-1:-1:-1;;;7085:68:0;;;;;;;:::i;:::-;51465:16:::1;:36:::0;;-1:-1:-1;;;;;;51465:36:0::1;-1:-1:-1::0;;;;;51465:36:0;;;::::1;::::0;;;::::1;::::0;;51381:128::o;53785:235::-;53912:32;;-1:-1:-1;;6060:2:1;6056:15;;;6052:53;53912:32:0;;;6040:66:1;53868:4:0;;;;6122:12:1;;53912:32:0;;;-1:-1:-1;;53912:32:0;;;;;;;;;53902:43;;53912:32;53902:43;;;;53995:16;;53902:43;;-1:-1:-1;;;;;;53995:16:0;53964:27;53902:43;53987:3;53964:13;:27::i;:::-;-1:-1:-1;;;;;53964:47:0;;;53785:235;-1:-1:-1;;;;53785:235:0:o;31529:328::-;31704:41;5677:10;31737:7;31704:18;:41::i;:::-;31696:103;;;;-1:-1:-1;;;31696:103:0;;;;;;;:::i;:::-;31810:39;31824:4;31830:2;31834:7;31843:5;31810:13;:39::i;:::-;31529:328;;;;:::o;49192:37::-;;;;;;;:::i;50319:445::-;33432:4;33456:16;;;:7;:16;;;;;;50437:13;;-1:-1:-1;;;;;33456:16:0;50468:77;;;;-1:-1:-1;;;50468:77:0;;18778:2:1;50468:77:0;;;18760:21:1;18817:2;18797:18;;;18790:30;18856:34;18836:18;;;18829:62;-1:-1:-1;;;18907:18:1;;;18900:45;18962:19;;50468:77:0;18576:411:1;50468:77:0;50556:28;50587:10;:8;:10::i;:::-;50556:41;;50646:1;50621:14;50615:28;:32;:141;;;;;;;;;;;;;;;;;50687:14;50703:18;:7;:16;:18::i;:::-;50723:13;50670:67;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;50615:141;50608:148;50319:445;-1:-1:-1;;;50319:445:0:o;51245:128::-;6946:6;;-1:-1:-1;;;;;6946:6:0;5677:10;7093:23;7085:68;;;;-1:-1:-1;;;7085:68:0;;;;;;;:::i;:::-;51332:33;;::::1;::::0;:13:::1;::::0;:33:::1;::::0;::::1;::::0;::::1;:::i;7782:201::-:0;6946:6;;-1:-1:-1;;;;;6946:6:0;5677:10;7093:23;7085:68;;;;-1:-1:-1;;;7085:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;7871:22:0;::::1;7863:73;;;::::0;-1:-1:-1;;;7863:73:0;;10867:2:1;7863:73:0::1;::::0;::::1;10849:21:1::0;10906:2;10886:18;;;10879:30;10945:34;10925:18;;;10918:62;-1:-1:-1;;;10996:18:1;;;10989:36;11042:19;;7863:73:0::1;10665:402:1::0;7863:73:0::1;7947:28;7966:8;7947:18;:28::i;:::-;7782:201:::0;:::o;51614:110::-;6946:6;;-1:-1:-1;;;;;6946:6:0;5677:10;7093:23;7085:68;;;;-1:-1:-1;;;7085:68:0;;;;;;;:::i;:::-;51697:19:::1;::::0;;-1:-1:-1;;51674:42:0;::::1;51697:19;::::0;;::::1;51696:20;51674:42;::::0;;51614:110::o;27609:305::-;27711:4;-1:-1:-1;;;;;;27748:40:0;;-1:-1:-1;;;27748:40:0;;:105;;-1:-1:-1;;;;;;;27805:48:0;;-1:-1:-1;;;27805:48:0;27748:105;:158;;;-1:-1:-1;;;;;;;;;;19414:40:0;;;27870:36;19305:157;37349:174;37424:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;37424:29:0;-1:-1:-1;;;;;37424:29:0;;;;;;;;:24;;37478:23;37424:24;37478:14;:23::i;:::-;-1:-1:-1;;;;;37469:46:0;;;;;;;;;;;37349:174;;:::o;33661:348::-;33754:4;33456:16;;;:7;:16;;;;;;-1:-1:-1;;;;;33456:16:0;33771:73;;;;-1:-1:-1;;;33771:73:0;;13556:2:1;33771:73:0;;;13538:21:1;13595:2;13575:18;;;13568:30;13634:34;13614:18;;;13607:62;-1:-1:-1;;;13685:18:1;;;13678:42;13737:19;;33771:73:0;13354:408:1;33771:73:0;33855:13;33871:23;33886:7;33871:14;:23::i;:::-;33855:39;;33924:5;-1:-1:-1;;;;;33913:16:0;:7;-1:-1:-1;;;;;33913:16:0;;:51;;;;33957:7;-1:-1:-1;;;;;33933:31:0;:20;33945:7;33933:11;:20::i;:::-;-1:-1:-1;;;;;33933:31:0;;33913:51;:87;;;-1:-1:-1;;;;;;30753:25:0;;;30729:4;30753:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;33968:32;33905:96;33661:348;-1:-1:-1;;;;33661:348:0:o;36653:578::-;36812:4;-1:-1:-1;;;;;36785:31:0;:23;36800:7;36785:14;:23::i;:::-;-1:-1:-1;;;;;36785:31:0;;36777:85;;;;-1:-1:-1;;;36777:85:0;;17966:2:1;36777:85:0;;;17948:21:1;18005:2;17985:18;;;17978:30;18044:34;18024:18;;;18017:62;-1:-1:-1;;;18095:18:1;;;18088:39;18144:19;;36777:85:0;17764:405:1;36777:85:0;-1:-1:-1;;;;;36881:16:0;;36873:65;;;;-1:-1:-1;;;36873:65:0;;12390:2:1;36873:65:0;;;12372:21:1;12429:2;12409:18;;;12402:30;12468:34;12448:18;;;12441:62;-1:-1:-1;;;12519:18:1;;;12512:34;12563:19;;36873:65:0;12188:400:1;36873:65:0;36951:39;36972:4;36978:2;36982:7;36951:20;:39::i;:::-;37055:29;37072:1;37076:7;37055:8;:29::i;:::-;-1:-1:-1;;;;;37097:15:0;;;;;;:9;:15;;;;;:20;;37116:1;;37097:15;:20;;37116:1;;37097:20;:::i;:::-;;;;-1:-1:-1;;;;;;;37128:13:0;;;;;;:9;:13;;;;;:18;;37145:1;;37128:13;:18;;37145:1;;37128:18;:::i;:::-;;;;-1:-1:-1;;37157:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;37157:21:0;-1:-1:-1;;;;;37157:21:0;;;;;;;;;37196:27;;37157:16;;37196:27;;;;;;;36653:578;;;:::o;34351:110::-;34427:26;34437:2;34441:7;34427:26;;;;;;;;;;;;:9;:26::i;8143:191::-;8236:6;;;-1:-1:-1;;;;;8253:17:0;;;-1:-1:-1;;;;;;8253:17:0;;;;;;;8286:40;;8236:6;;;8253:17;8236:6;;8286:40;;8217:16;;8286:40;8206:128;8143:191;:::o;37665:315::-;37820:8;-1:-1:-1;;;;;37811:17:0;:5;-1:-1:-1;;;;;37811:17:0;;;37803:55;;;;-1:-1:-1;;;37803:55:0;;12795:2:1;37803:55:0;;;12777:21:1;12834:2;12814:18;;;12807:30;12873:27;12853:18;;;12846:55;12918:18;;37803:55:0;12593:349:1;37803:55:0;-1:-1:-1;;;;;37869:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;37869:46:0;;;;;;;;;;37931:41;;9155::1;;;37931::0;;9128:18:1;37931:41:0;;;;;;;37665:315;;;:::o;32739:::-;32896:28;32906:4;32912:2;32916:7;32896:9;:28::i;:::-;32943:48;32966:4;32972:2;32976:7;32985:5;32943:22;:48::i;:::-;32935:111;;;;-1:-1:-1;;;32935:111:0;;;;;;;:::i;49794:108::-;49854:13;49887:7;49880:14;;;;;:::i;3159:723::-;3215:13;3436:10;3432:53;;-1:-1:-1;;3463:10:0;;;;;;;;;;;;-1:-1:-1;;;3463:10:0;;;;;3159:723::o;3432:53::-;3510:5;3495:12;3551:78;3558:9;;3551:78;;3584:8;;;;:::i;:::-;;-1:-1:-1;3607:10:0;;-1:-1:-1;3615:2:0;3607:10;;:::i;:::-;;;3551:78;;;3639:19;3671:6;3661:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;3661:17:0;;3639:39;;3689:154;3696:10;;3689:154;;3723:11;3733:1;3723:11;;:::i;:::-;;-1:-1:-1;3792:10:0;3800:2;3792:5;:10;:::i;:::-;3779:24;;:2;:24;:::i;:::-;3766:39;;3749:6;3756;3749:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;3749:56:0;;;;;;;;-1:-1:-1;3820:11:0;3829:2;3820:11;;:::i;:::-;;;3689:154;;42736:589;-1:-1:-1;;;;;42942:18:0;;42938:187;;42977:40;43009:7;44152:10;:17;;44125:24;;;;:15;:24;;;;;:44;;;44180:24;;;;;;;;;;;;44048:164;42977:40;42938:187;;;43047:2;-1:-1:-1;;;;;43039:10:0;:4;-1:-1:-1;;;;;43039:10:0;;43035:90;;43066:47;43099:4;43105:7;43066:32;:47::i;:::-;-1:-1:-1;;;;;43139:16:0;;43135:183;;43172:45;43209:7;43172:36;:45::i;43135:183::-;43245:4;-1:-1:-1;;;;;43239:10:0;:2;-1:-1:-1;;;;;43239:10:0;;43235:83;;43266:40;43294:2;43298:7;43266:27;:40::i;34688:321::-;34818:18;34824:2;34828:7;34818:5;:18::i;:::-;34869:54;34900:1;34904:2;34908:7;34917:5;34869:22;:54::i;:::-;34847:154;;;;-1:-1:-1;;;34847:154:0;;;;;;;:::i;38545:799::-;38700:4;-1:-1:-1;;;;;38721:13:0;;9484:20;9532:8;38717:620;;38757:72;;-1:-1:-1;;;38757:72:0;;-1:-1:-1;;;;;38757:36:0;;;;;:72;;5677:10;;38808:4;;38814:7;;38823:5;;38757:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;38757:72:0;;;;;;;;-1:-1:-1;;38757:72:0;;;;;;;;;;;;:::i;:::-;;;38753:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;38999:13:0;;38995:272;;39042:60;;-1:-1:-1;;;39042:60:0;;;;;;;:::i;38995:272::-;39217:6;39211:13;39202:6;39198:2;39194:15;39187:38;38753:529;-1:-1:-1;;;;;;38880:51:0;-1:-1:-1;;;38880:51:0;;-1:-1:-1;38873:58:0;;38717:620;-1:-1:-1;39321:4:0;38545:799;;;;;;:::o;44839:988::-;45105:22;45155:1;45130:22;45147:4;45130:16;:22::i;:::-;:26;;;;:::i;:::-;45167:18;45188:26;;;:17;:26;;;;;;45105:51;;-1:-1:-1;45321:28:0;;;45317:328;;-1:-1:-1;;;;;45388:18:0;;45366:19;45388:18;;;:12;:18;;;;;;;;:34;;;;;;;;;45439:30;;;;;;:44;;;45556:30;;:17;:30;;;;;:43;;;45317:328;-1:-1:-1;45741:26:0;;;;:17;:26;;;;;;;;45734:33;;;-1:-1:-1;;;;;45785:18:0;;;;;:12;:18;;;;;:34;;;;;;;45778:41;44839:988::o;46122:1079::-;46400:10;:17;46375:22;;46400:21;;46420:1;;46400:21;:::i;:::-;46432:18;46453:24;;;:15;:24;;;;;;46826:10;:26;;46375:46;;-1:-1:-1;46453:24:0;;46375:46;;46826:26;;;;;;:::i;:::-;;;;;;;;;46804:48;;46890:11;46865:10;46876;46865:22;;;;;;;;:::i;:::-;;;;;;;;;;;;:36;;;;46970:28;;;:15;:28;;;;;;;:41;;;47142:24;;;;;47135:31;47177:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;46193:1008;;;46122:1079;:::o;43626:221::-;43711:14;43728:20;43745:2;43728:16;:20::i;:::-;-1:-1:-1;;;;;43759:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;43804:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;43626:221:0:o;35345:382::-;-1:-1:-1;;;;;35425:16:0;;35417:61;;;;-1:-1:-1;;;35417:61:0;;16057:2:1;35417:61:0;;;16039:21:1;;;16076:18;;;16069:30;16135:34;16115:18;;;16108:62;16187:18;;35417:61:0;15855:356:1;35417:61:0;33432:4;33456:16;;;:7;:16;;;;;;-1:-1:-1;;;;;33456:16:0;:30;35489:58;;;;-1:-1:-1;;;35489:58:0;;11631:2:1;35489:58:0;;;11613:21:1;11670:2;11650:18;;;11643:30;11709;11689:18;;;11682:58;11757:18;;35489:58:0;11429:352:1;35489:58:0;35560:45;35589:1;35593:2;35597:7;35560:20;:45::i;:::-;-1:-1:-1;;;;;35618:13:0;;;;;;:9;:13;;;;;:18;;35635:1;;35618:13;:18;;35635:1;;35618:18;:::i;:::-;;;;-1:-1:-1;;35647:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;35647:21:0;-1:-1:-1;;;;;35647:21:0;;;;;;;;35686:33;;35647:16;;;35686:33;;35647:16;;35686:33;35345:382;;:::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:220::-;870:5;923:3;916:4;908:6;904:17;900:27;890:55;;941:1;938;931:12;890:55;963:79;1038:3;1029:6;1016:20;1009:4;1001:6;997:17;963:79;:::i;1053:186::-;1112:6;1165:2;1153:9;1144:7;1140:23;1136:32;1133:52;;;1181:1;1178;1171:12;1133:52;1204:29;1223:9;1204:29;:::i;1244:260::-;1312:6;1320;1373:2;1361:9;1352:7;1348:23;1344:32;1341:52;;;1389:1;1386;1379:12;1341:52;1412:29;1431:9;1412:29;:::i;:::-;1402:39;;1460:38;1494:2;1483:9;1479:18;1460:38;:::i;:::-;1450:48;;1244:260;;;;;:::o;1509:328::-;1586:6;1594;1602;1655:2;1643:9;1634:7;1630:23;1626:32;1623:52;;;1671:1;1668;1661:12;1623:52;1694:29;1713:9;1694:29;:::i;:::-;1684:39;;1742:38;1776:2;1765:9;1761:18;1742:38;:::i;:::-;1732:48;;1827:2;1816:9;1812:18;1799:32;1789:42;;1509:328;;;;;:::o;1842:537::-;1937:6;1945;1953;1961;2014:3;2002:9;1993:7;1989:23;1985:33;1982:53;;;2031:1;2028;2021:12;1982:53;2054:29;2073:9;2054:29;:::i;:::-;2044:39;;2102:38;2136:2;2125:9;2121:18;2102:38;:::i;:::-;2092:48;;2187:2;2176:9;2172:18;2159:32;2149:42;;2242:2;2231:9;2227:18;2214:32;2269:18;2261:6;2258:30;2255:50;;;2301:1;2298;2291:12;2255:50;2324:49;2365:7;2356:6;2345:9;2341:22;2324:49;:::i;:::-;2314:59;;;1842:537;;;;;;;:::o;2384:347::-;2449:6;2457;2510:2;2498:9;2489:7;2485:23;2481:32;2478:52;;;2526:1;2523;2516:12;2478:52;2549:29;2568:9;2549:29;:::i;:::-;2539:39;;2628:2;2617:9;2613:18;2600:32;2675:5;2668:13;2661:21;2654:5;2651:32;2641:60;;2697:1;2694;2687:12;2641:60;2720:5;2710:15;;;2384:347;;;;;:::o;2736:394::-;2813:6;2821;2874:2;2862:9;2853:7;2849:23;2845:32;2842:52;;;2890:1;2887;2880:12;2842:52;2913:29;2932:9;2913:29;:::i;:::-;2903:39;;2993:2;2982:9;2978:18;2965:32;3020:18;3012:6;3009:30;3006:50;;;3052:1;3049;3042:12;3006:50;3075:49;3116:7;3107:6;3096:9;3092:22;3075:49;:::i;:::-;3065:59;;;2736:394;;;;;:::o;3135:254::-;3203:6;3211;3264:2;3252:9;3243:7;3239:23;3235:32;3232:52;;;3280:1;3277;3270:12;3232:52;3303:29;3322:9;3303:29;:::i;:::-;3293:39;3379:2;3364:18;;;;3351:32;;-1:-1:-1;;;3135:254:1:o;3394:388::-;3471:6;3479;3532:2;3520:9;3511:7;3507:23;3503:32;3500:52;;;3548:1;3545;3538:12;3500:52;3584:9;3571:23;3561:33;;3645:2;3634:9;3630:18;3617:32;3672:18;3664:6;3661:30;3658:50;;;3704:1;3701;3694:12;3787:245;3845:6;3898:2;3886:9;3877:7;3873:23;3869:32;3866:52;;;3914:1;3911;3904:12;3866:52;3953:9;3940:23;3972:30;3996:5;3972:30;:::i;4037:249::-;4106:6;4159:2;4147:9;4138:7;4134:23;4130:32;4127:52;;;4175:1;4172;4165:12;4127:52;4207:9;4201:16;4226:30;4250:5;4226:30;:::i;4291:320::-;4359:6;4412:2;4400:9;4391:7;4387:23;4383:32;4380:52;;;4428:1;4425;4418:12;4380:52;4468:9;4455:23;4501:18;4493:6;4490:30;4487:50;;;4533:1;4530;4523:12;4487:50;4556:49;4597:7;4588:6;4577:9;4573:22;4556:49;:::i;4616:388::-;4693:6;4701;4754:2;4742:9;4733:7;4729:23;4725:32;4722:52;;;4770:1;4767;4760:12;4722:52;4810:9;4797:23;4843:18;4835:6;4832:30;4829:50;;;4875:1;4872;4865:12;4829:50;4898:49;4939:7;4930:6;4919:9;4915:22;4898:49;:::i;:::-;4888:59;4994:2;4979:18;;;;4966:32;;-1:-1:-1;;;;4616:388:1:o;5009:450::-;5078:6;5131:2;5119:9;5110:7;5106:23;5102:32;5099:52;;;5147:1;5144;5137:12;5099:52;5187:9;5174:23;5220:18;5212:6;5209:30;5206:50;;;5252:1;5249;5242:12;5206:50;5275:22;;5328:4;5320:13;;5316:27;-1:-1:-1;5306:55:1;;5357:1;5354;5347:12;5306:55;5380:73;5445:7;5440:2;5427:16;5422:2;5418;5414:11;5380:73;:::i;5464:180::-;5523:6;5576:2;5564:9;5555:7;5551:23;5547:32;5544:52;;;5592:1;5589;5582:12;5544:52;-1:-1:-1;5615:23:1;;5464:180;-1:-1:-1;5464:180:1:o;5649:257::-;5690:3;5728:5;5722:12;5755:6;5750:3;5743:19;5771:63;5827:6;5820:4;5815:3;5811:14;5804:4;5797:5;5793:16;5771:63;:::i;:::-;5888:2;5867:15;-1:-1:-1;;5863:29:1;5854:39;;;;5895:4;5850:50;;5649:257;-1:-1:-1;;5649:257:1:o;6145:1527::-;6369:3;6407:6;6401:13;6433:4;6446:51;6490:6;6485:3;6480:2;6472:6;6468:15;6446:51;:::i;:::-;6560:13;;6519:16;;;;6582:55;6560:13;6519:16;6604:15;;;6582:55;:::i;:::-;6726:13;;6659:20;;;6699:1;;6786;6808:18;;;;6861;;;;6888:93;;6966:4;6956:8;6952:19;6940:31;;6888:93;7029:2;7019:8;7016:16;6996:18;6993:40;6990:167;;;-1:-1:-1;;;7056:33:1;;7112:4;7109:1;7102:15;7142:4;7063:3;7130:17;6990:167;7173:18;7200:110;;;;7324:1;7319:328;;;;7166:481;;7200:110;-1:-1:-1;;7235:24:1;;7221:39;;7280:20;;;;-1:-1:-1;7200:110:1;;7319:328;21579:1;21572:14;;;21616:4;21603:18;;7414:1;7428:169;7442:8;7439:1;7436:15;7428:169;;;7524:14;;7509:13;;;7502:37;7567:16;;;;7459:10;;7428:169;;;7432:3;;7628:8;7621:5;7617:20;7610:27;;7166:481;-1:-1:-1;7663:3:1;;6145:1527;-1:-1:-1;;;;;;;;;;;6145:1527:1:o;7885:488::-;-1:-1:-1;;;;;8154:15:1;;;8136:34;;8206:15;;8201:2;8186:18;;8179:43;8253:2;8238:18;;8231:34;;;8301:3;8296:2;8281:18;;8274:31;;;8079:4;;8322:45;;8347:19;;8339:6;8322:45;:::i;:::-;8314:53;7885:488;-1:-1:-1;;;;;;7885:488:1:o;8378:632::-;8549:2;8601:21;;;8671:13;;8574:18;;;8693:22;;;8520:4;;8549:2;8772:15;;;;8746:2;8731:18;;;8520:4;8815:169;8829:6;8826:1;8823:13;8815:169;;;8890:13;;8878:26;;8959:15;;;;8924:12;;;;8851:1;8844:9;8815:169;;;-1:-1:-1;9001:3:1;;8378:632;-1:-1:-1;;;;;;8378:632:1:o;9610:219::-;9759:2;9748:9;9741:21;9722:4;9779:44;9819:2;9808:9;9804:18;9796:6;9779:44;:::i;10246:414::-;10448:2;10430:21;;;10487:2;10467:18;;;10460:30;10526:34;10521:2;10506:18;;10499:62;-1:-1:-1;;;10592:2:1;10577:18;;10570:48;10650:3;10635:19;;10246:414::o;15434:416::-;15636:2;15618:21;;;15675:2;15655:18;;;15648:30;15714:34;15709:2;15694:18;;15687:62;-1:-1:-1;;;15780:2:1;15765:18;;15758:50;15840:3;15825:19;;15434:416::o;17403:356::-;17605:2;17587:21;;;17624:18;;;17617:30;17683:34;17678:2;17663:18;;17656:62;17750:2;17735:18;;17403:356::o;18174:397::-;18376:2;18358:21;;;18415:2;18395:18;;;18388:30;18454:34;18449:2;18434:18;;18427:62;-1:-1:-1;;;18520:2:1;18505:18;;18498:31;18561:3;18546:19;;18174:397::o;19394:413::-;19596:2;19578:21;;;19635:2;19615:18;;;19608:30;19674:34;19669:2;19654:18;;19647:62;-1:-1:-1;;;19740:2:1;19725:18;;19718:47;19797:3;19782:19;;19394:413::o;21632:128::-;21672:3;21703:1;21699:6;21696:1;21693:13;21690:39;;;21709:18;;:::i;:::-;-1:-1:-1;21745:9:1;;21632:128::o;21765:120::-;21805:1;21831;21821:35;;21836:18;;:::i;:::-;-1:-1:-1;21870:9:1;;21765:120::o;21890:168::-;21930:7;21996:1;21992;21988:6;21984:14;21981:1;21978:21;21973:1;21966:9;21959:17;21955:45;21952:71;;;22003:18;;:::i;:::-;-1:-1:-1;22043:9:1;;21890:168::o;22063:125::-;22103:4;22131:1;22128;22125:8;22122:34;;;22136:18;;:::i;:::-;-1:-1:-1;22173:9:1;;22063:125::o;22193:258::-;22265:1;22275:113;22289:6;22286:1;22283:13;22275:113;;;22365:11;;;22359:18;22346:11;;;22339:39;22311:2;22304:10;22275:113;;;22406:6;22403:1;22400:13;22397:48;;;-1:-1:-1;;22441:1:1;22423:16;;22416:27;22193:258::o;22456:380::-;22535:1;22531:12;;;;22578;;;22599:61;;22653:4;22645:6;22641:17;22631:27;;22599:61;22706:2;22698:6;22695:14;22675:18;22672:38;22669:161;;;22752:10;22747:3;22743:20;22740:1;22733:31;22787:4;22784:1;22777:15;22815:4;22812:1;22805:15;22669:161;;22456:380;;;:::o;22841:135::-;22880:3;-1:-1:-1;;22901:17:1;;22898:43;;;22921:18;;:::i;:::-;-1:-1:-1;22968:1:1;22957:13;;22841:135::o;22981:112::-;23013:1;23039;23029:35;;23044:18;;:::i;:::-;-1:-1:-1;23078:9:1;;22981:112::o;23098:127::-;23159:10;23154:3;23150:20;23147:1;23140:31;23190:4;23187:1;23180:15;23214:4;23211:1;23204:15;23230:127;23291:10;23286:3;23282:20;23279:1;23272:31;23322:4;23319:1;23312:15;23346:4;23343:1;23336:15;23362:127;23423:10;23418:3;23414:20;23411:1;23404:31;23454:4;23451:1;23444:15;23478:4;23475:1;23468:15;23494:127;23555:10;23550:3;23546:20;23543:1;23536:31;23586:4;23583:1;23576:15;23610:4;23607:1;23600:15;23626:127;23687:10;23682:3;23678:20;23675:1;23668:31;23718:4;23715:1;23708:15;23742:4;23739:1;23732:15;23758:131;-1:-1:-1;;;;;;23832:32:1;;23822:43;;23812:71;;23879:1;23876;23869:12
Swarm Source
ipfs://a6e4638202d25aae7d450c64d82a653cc5a2769078372979b4612f0d9d7fd3b3
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.