ETH Price: $2,623.72 (+1.03%)

Token

Citizen Pass (Citizen Pass)
 

Overview

Max Total Supply

77 Citizen Pass

Holders

31

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
orajo.eth
Balance
8 Citizen Pass
0xc77d66286d8832112225de79717fbaac4727a901
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
NFTContract

Compiler Version
v0.8.20+commit.a1b79de6

Optimization Enabled:
No with 200 runs

Other Settings:
paris EvmVersion
File 1 of 15 : NFTContract.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.20;

import "./ERC721Enumerable.sol";
import "@openzeppelin/contracts/utils/Strings.sol";
import "@openzeppelin/contracts/security/ReentrancyGuard.sol";

contract NFTContract is ERC721Enumerable, ReentrancyGuard {
    using Strings for uint;

    string private _baseTokenURI;
    string private _tokenURISuffix;

    bool public isActive;
    bool public isBurnActive;

    uint256 public mintPrice = 0.06 ether;
    uint256 public maxSupply = 666;
    uint256 public airdropReserved = 66;
    uint256 public airdroppedTokensCount = 0;
    uint256 public maxPerWallet = 4;

    address payable public devWallet;
    address payable public founderWallet;
    address public owner;

    mapping (address => uint256) mintedAmount;
    constructor(address payable _devWallet, address payable _founderWallet)
        ERC721("Citizen Pass", "Citizen Pass")
    {
        devWallet = _devWallet;
        founderWallet = _founderWallet;
        owner = msg.sender;
    }

    modifier onlyOwner() {
        require(msg.sender == owner, "Caller is not the owner");
        _;
    }

    function mint(uint256 quantity) external payable nonReentrant {
        require(isActive, "Mint is not active");
        require(msg.value >= mintPrice * quantity, "Ether sent is not correct");
        require(totalSupply() + quantity <= maxSupply - airdropReserved, "Not enough tokens left to mint");
        require(mintedAmount[msg.sender] + quantity <= maxPerWallet, "Max 4 mint per wallet");
        
        uint256 supply = _owners.length;
       
        mintedAmount[msg.sender] += quantity;
        
        for (uint256 i = 0; i < quantity; i++) {
            _safeMint(msg.sender, supply++);
        }
    }

    function airdrop(uint[] calldata quantity, address[] calldata recipient) external onlyOwner {
        require(quantity.length == recipient.length, "Quantity length is not equal to recipients");

        uint totalQuantity = 0;
        for(uint i = 0; i < quantity.length; ++i) {
            totalQuantity += quantity[i];
        }

        require(totalQuantity <= airdropReserved, "Exceeds reserved airdrop tokens");
        require(totalSupply() + totalQuantity <= maxSupply, "Exceeds max supply");

        airdropReserved -= totalQuantity;
        airdroppedTokensCount += totalQuantity;

        uint256 supply = _owners.length;
        for(uint i = 0; i < recipient.length; ++i) {
            for(uint j = 0; j < quantity[i]; ++j) {
                _safeMint(recipient[i], supply++);
            }
        }
    }

    function burn(uint256 tokenId) external {
        require(isBurnActive, "Burn is not active");
        require(_isApprovedOrOwner(msg.sender, tokenId), "Caller is not owner nor approved");
        _burn(tokenId);
    }

    function burnMany(uint256[] calldata tokenIds) external {
        require(isBurnActive, "Burn is not active");
        for (uint256 i = 0; i < tokenIds.length; i++) {
            require(_isApprovedOrOwner(msg.sender, tokenIds[i]), "Caller is not owner nor approved");
            _burn(tokenIds[i]);
        }
    }

    function tokenURI(uint256 tokenId) external view virtual override returns (string memory) {
        require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token");
        return string(abi.encodePacked(_baseTokenURI, tokenId.toString(), _tokenURISuffix));
    }

    function toggleIsActive() external onlyOwner {
        isActive = !isActive;
    }
    
    function toggleIsBurnActive() external onlyOwner {
        isBurnActive = !isBurnActive;
    }
   
    function setMintPrice(uint256 newMintPrice) external onlyOwner {
        mintPrice = newMintPrice;
    }
  
    function setOwner(address newOwner) external onlyOwner {
        owner = newOwner;
    }
    
    function setMaxPerWallet(uint256 newMaxPerWallet) external onlyOwner {
        maxPerWallet = newMaxPerWallet;
    }

    function setBaseURI(string calldata _newBaseURI, string calldata _newSuffix) external onlyOwner {
        _baseTokenURI = _newBaseURI;
        _tokenURISuffix = _newSuffix;
    }

     function withdraw() external onlyOwner {
        uint256 balance = address(this).balance;
        uint256 devShare = balance / 10;
        uint256 founderShare = balance - devShare;

        (bool sentDev, ) = devWallet.call{value: devShare}("");
        require(sentDev, "Failed to send Ether to developer");

        (bool sentFounder, ) = founderWallet.call{value: founderShare}("");
        require(sentFounder, "Failed to send Ether to founder");
    }
}

File 2 of 15 : ReentrancyGuard.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (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() {
        _nonReentrantBefore();
        _;
        _nonReentrantAfter();
    }

    function _nonReentrantBefore() private {
        // On the first call to nonReentrant, _status will be _NOT_ENTERED
        require(_status != _ENTERED, "ReentrancyGuard: reentrant call");

        // Any calls to nonReentrant after this point will fail
        _status = _ENTERED;
    }

    function _nonReentrantAfter() private {
        // By storing the original value once again, a refund is triggered (see
        // https://eips.ethereum.org/EIPS/eip-2200)
        _status = _NOT_ENTERED;
    }

    /**
     * @dev Returns true if the reentrancy guard is currently set to "entered", which indicates there is a
     * `nonReentrant` function in the call stack.
     */
    function _reentrancyGuardEntered() internal view returns (bool) {
        return _status == _ENTERED;
    }
}

File 3 of 15 : IERC721Enumerable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/extensions/IERC721Enumerable.sol)

pragma solidity ^0.8.0;

import "../IERC721.sol";

/**
 * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Enumerable is IERC721 {
    /**
     * @dev Returns the total amount of tokens stored by the contract.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns a token ID owned by `owner` at a given `index` of its token list.
     * Use along with {balanceOf} to enumerate all of ``owner``'s tokens.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256);

    /**
     * @dev Returns a token ID at a given `index` of all the tokens stored by the contract.
     * Use along with {totalSupply} to enumerate all tokens.
     */
    function tokenByIndex(uint256 index) external view returns (uint256);
}

File 4 of 15 : IERC721Metadata.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol)

pragma solidity ^0.8.0;

import "../IERC721.sol";

/**
 * @title ERC-721 Non-Fungible Token Standard, optional metadata extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Metadata is IERC721 {
    /**
     * @dev Returns the token collection name.
     */
    function name() external view returns (string memory);

    /**
     * @dev Returns the token collection symbol.
     */
    function symbol() external view returns (string memory);

    /**
     * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token.
     */
    function tokenURI(uint256 tokenId) external view returns (string memory);
}

File 5 of 15 : IERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;

import "../../utils/introspection/IERC165.sol";

/**
 * @dev Required interface of an ERC721 compliant contract.
 */
interface IERC721 is IERC165 {
    /**
     * @dev Emitted when `tokenId` token is transferred from `from` to `to`.
     */
    event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);

    /**
     * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token.
     */
    event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId);

    /**
     * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets.
     */
    event ApprovalForAll(address indexed owner, address indexed operator, bool approved);

    /**
     * @dev Returns the number of tokens in ``owner``'s account.
     */
    function balanceOf(address owner) external view returns (uint256 balance);

    /**
     * @dev Returns the owner of the `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function ownerOf(uint256 tokenId) external view returns (address owner);

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(address from, address to, uint256 tokenId, bytes calldata data) external;

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must 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: Note that the caller is responsible to confirm that the recipient is capable of receiving ERC721
     * or else they may be permanently lost. Usage of {safeTransferFrom} prevents loss, though the caller must
     * understand this adds an external call which potentially creates a reentrancy vulnerability.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(address from, address to, uint256 tokenId) external;

    /**
     * @dev Gives permission to `to` to transfer `tokenId` token to another account.
     * The approval is cleared when the token is transferred.
     *
     * Only a single account can be approved at a time, so approving the zero address clears previous approvals.
     *
     * Requirements:
     *
     * - The caller must own the token or be an approved operator.
     * - `tokenId` must exist.
     *
     * Emits an {Approval} event.
     */
    function approve(address to, uint256 tokenId) external;

    /**
     * @dev Approve or remove `operator` as an operator for the caller.
     * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller.
     *
     * Requirements:
     *
     * - The `operator` cannot be the caller.
     *
     * Emits an {ApprovalForAll} event.
     */
    function setApprovalForAll(address operator, bool approved) external;

    /**
     * @dev Returns the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) external view returns (address operator);

    /**
     * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`.
     *
     * See {setApprovalForAll}
     */
    function isApprovedForAll(address owner, address operator) external view returns (bool);
}

File 6 of 15 : IERC721Receiver.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (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 `IERC721Receiver.onERC721Received.selector`.
     */
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}

File 7 of 15 : Address.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (utils/Address.sol)

pragma solidity ^0.8.1;

/**
 * @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
     *
     * Furthermore, `isContract` will also return true if the target contract within
     * the same transaction is already scheduled for destruction by `SELFDESTRUCT`,
     * which only has an effect at the end of a transaction.
     * ====
     *
     * [IMPORTANT]
     * ====
     * You shouldn't rely on `isContract` to protect against flash loan attacks!
     *
     * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
     * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
     * constructor.
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize/address.code.length, which returns 0
        // for contracts in construction, since the code is only stored at the end
        // of the constructor execution.

        return account.code.length > 0;
    }

    /**
     * @dev Replacement for Solidity's `transfer`: sends `amount` wei to
     * `recipient`, forwarding all available gas and reverting on errors.
     *
     * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
     * of certain opcodes, possibly making contracts go over the 2300 gas limit
     * imposed by `transfer`, making them unable to receive funds via
     * `transfer`. {sendValue} removes this limitation.
     *
     * https://consensys.net/diligence/blog/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.8.0/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 functionCallWithValue(target, data, 0, "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");
        (bool success, bytes memory returndata) = target.call{value: value}(data);
        return verifyCallResultFromTarget(target, 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) {
        (bool success, bytes memory returndata) = target.staticcall(data);
        return verifyCallResultFromTarget(target, 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) {
        (bool success, bytes memory returndata) = target.delegatecall(data);
        return verifyCallResultFromTarget(target, success, returndata, errorMessage);
    }

    /**
     * @dev Tool to verify that a low level call to smart-contract was successful, and revert (either by bubbling
     * the revert reason or using the provided one) in case of unsuccessful call or if target was not a contract.
     *
     * _Available since v4.8._
     */
    function verifyCallResultFromTarget(
        address target,
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal view returns (bytes memory) {
        if (success) {
            if (returndata.length == 0) {
                // only check isContract if the call was successful and the return data is empty
                // otherwise we already know that it was a contract
                require(isContract(target), "Address: call to non-contract");
            }
            return returndata;
        } else {
            _revert(returndata, errorMessage);
        }
    }

    /**
     * @dev Tool to verify that a low level call was successful, and revert if it wasn't, either by bubbling the
     * revert reason or 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 {
            _revert(returndata, errorMessage);
        }
    }

    function _revert(bytes memory returndata, string memory errorMessage) private pure {
        // 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
            /// @solidity memory-safe-assembly
            assembly {
                let returndata_size := mload(returndata)
                revert(add(32, returndata), returndata_size)
            }
        } else {
            revert(errorMessage);
        }
    }
}

File 8 of 15 : Context.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.4) (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;
    }

    function _contextSuffixLength() internal view virtual returns (uint256) {
        return 0;
    }
}

File 9 of 15 : ERC165.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol)

pragma solidity ^0.8.0;

import "./IERC165.sol";

/**
 * @dev Implementation of the {IERC165} interface.
 *
 * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check
 * for the additional interface id that will be supported. For example:
 *
 * ```solidity
 * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
 *     return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId);
 * }
 * ```
 *
 * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation.
 */
abstract contract ERC165 is IERC165 {
    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        return interfaceId == type(IERC165).interfaceId;
    }
}

File 10 of 15 : IERC165.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC165 standard, as defined in the
 * https://eips.ethereum.org/EIPS/eip-165[EIP].
 *
 * Implementers can declare support of contract interfaces, which can then be
 * queried by others ({ERC165Checker}).
 *
 * For an implementation, see {ERC165}.
 */
interface IERC165 {
    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section]
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30 000 gas.
     */
    function supportsInterface(bytes4 interfaceId) external view returns (bool);
}

File 11 of 15 : Math.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (utils/math/Math.sol)

pragma solidity ^0.8.0;

/**
 * @dev Standard math utilities missing in the Solidity language.
 */
library Math {
    enum Rounding {
        Down, // Toward negative infinity
        Up, // Toward infinity
        Zero // Toward zero
    }

    /**
     * @dev Returns the largest of two numbers.
     */
    function max(uint256 a, uint256 b) internal pure returns (uint256) {
        return a > b ? a : b;
    }

    /**
     * @dev Returns the smallest of two numbers.
     */
    function min(uint256 a, uint256 b) internal pure returns (uint256) {
        return a < b ? a : b;
    }

    /**
     * @dev Returns the average of two numbers. The result is rounded towards
     * zero.
     */
    function average(uint256 a, uint256 b) internal pure returns (uint256) {
        // (a + b) / 2 can overflow.
        return (a & b) + (a ^ b) / 2;
    }

    /**
     * @dev Returns the ceiling of the division of two numbers.
     *
     * This differs from standard division with `/` in that it rounds up instead
     * of rounding down.
     */
    function ceilDiv(uint256 a, uint256 b) internal pure returns (uint256) {
        // (a + b - 1) / b can overflow on addition, so we distribute.
        return a == 0 ? 0 : (a - 1) / b + 1;
    }

    /**
     * @notice Calculates floor(x * y / denominator) with full precision. Throws if result overflows a uint256 or denominator == 0
     * @dev Original credit to Remco Bloemen under MIT license (https://xn--2-umb.com/21/muldiv)
     * with further edits by Uniswap Labs also under MIT license.
     */
    function mulDiv(uint256 x, uint256 y, uint256 denominator) internal pure returns (uint256 result) {
        unchecked {
            // 512-bit multiply [prod1 prod0] = x * y. Compute the product mod 2^256 and mod 2^256 - 1, then use
            // use the Chinese Remainder Theorem to reconstruct the 512 bit result. The result is stored in two 256
            // variables such that product = prod1 * 2^256 + prod0.
            uint256 prod0; // Least significant 256 bits of the product
            uint256 prod1; // Most significant 256 bits of the product
            assembly {
                let mm := mulmod(x, y, not(0))
                prod0 := mul(x, y)
                prod1 := sub(sub(mm, prod0), lt(mm, prod0))
            }

            // Handle non-overflow cases, 256 by 256 division.
            if (prod1 == 0) {
                // Solidity will revert if denominator == 0, unlike the div opcode on its own.
                // The surrounding unchecked block does not change this fact.
                // See https://docs.soliditylang.org/en/latest/control-structures.html#checked-or-unchecked-arithmetic.
                return prod0 / denominator;
            }

            // Make sure the result is less than 2^256. Also prevents denominator == 0.
            require(denominator > prod1, "Math: mulDiv overflow");

            ///////////////////////////////////////////////
            // 512 by 256 division.
            ///////////////////////////////////////////////

            // Make division exact by subtracting the remainder from [prod1 prod0].
            uint256 remainder;
            assembly {
                // Compute remainder using mulmod.
                remainder := mulmod(x, y, denominator)

                // Subtract 256 bit number from 512 bit number.
                prod1 := sub(prod1, gt(remainder, prod0))
                prod0 := sub(prod0, remainder)
            }

            // Factor powers of two out of denominator and compute largest power of two divisor of denominator. Always >= 1.
            // See https://cs.stackexchange.com/q/138556/92363.

            // Does not overflow because the denominator cannot be zero at this stage in the function.
            uint256 twos = denominator & (~denominator + 1);
            assembly {
                // Divide denominator by twos.
                denominator := div(denominator, twos)

                // Divide [prod1 prod0] by twos.
                prod0 := div(prod0, twos)

                // Flip twos such that it is 2^256 / twos. If twos is zero, then it becomes one.
                twos := add(div(sub(0, twos), twos), 1)
            }

            // Shift in bits from prod1 into prod0.
            prod0 |= prod1 * twos;

            // Invert denominator mod 2^256. Now that denominator is an odd number, it has an inverse modulo 2^256 such
            // that denominator * inv = 1 mod 2^256. Compute the inverse by starting with a seed that is correct for
            // four bits. That is, denominator * inv = 1 mod 2^4.
            uint256 inverse = (3 * denominator) ^ 2;

            // Use the Newton-Raphson iteration to improve the precision. Thanks to Hensel's lifting lemma, this also works
            // in modular arithmetic, doubling the correct bits in each step.
            inverse *= 2 - denominator * inverse; // inverse mod 2^8
            inverse *= 2 - denominator * inverse; // inverse mod 2^16
            inverse *= 2 - denominator * inverse; // inverse mod 2^32
            inverse *= 2 - denominator * inverse; // inverse mod 2^64
            inverse *= 2 - denominator * inverse; // inverse mod 2^128
            inverse *= 2 - denominator * inverse; // inverse mod 2^256

            // Because the division is now exact we can divide by multiplying with the modular inverse of denominator.
            // This will give us the correct result modulo 2^256. Since the preconditions guarantee that the outcome is
            // less than 2^256, this is the final result. We don't need to compute the high bits of the result and prod1
            // is no longer required.
            result = prod0 * inverse;
            return result;
        }
    }

    /**
     * @notice Calculates x * y / denominator with full precision, following the selected rounding direction.
     */
    function mulDiv(uint256 x, uint256 y, uint256 denominator, Rounding rounding) internal pure returns (uint256) {
        uint256 result = mulDiv(x, y, denominator);
        if (rounding == Rounding.Up && mulmod(x, y, denominator) > 0) {
            result += 1;
        }
        return result;
    }

    /**
     * @dev Returns the square root of a number. If the number is not a perfect square, the value is rounded down.
     *
     * Inspired by Henry S. Warren, Jr.'s "Hacker's Delight" (Chapter 11).
     */
    function sqrt(uint256 a) internal pure returns (uint256) {
        if (a == 0) {
            return 0;
        }

        // For our first guess, we get the biggest power of 2 which is smaller than the square root of the target.
        //
        // We know that the "msb" (most significant bit) of our target number `a` is a power of 2 such that we have
        // `msb(a) <= a < 2*msb(a)`. This value can be written `msb(a)=2**k` with `k=log2(a)`.
        //
        // This can be rewritten `2**log2(a) <= a < 2**(log2(a) + 1)`
        // → `sqrt(2**k) <= sqrt(a) < sqrt(2**(k+1))`
        // → `2**(k/2) <= sqrt(a) < 2**((k+1)/2) <= 2**(k/2 + 1)`
        //
        // Consequently, `2**(log2(a) / 2)` is a good first approximation of `sqrt(a)` with at least 1 correct bit.
        uint256 result = 1 << (log2(a) >> 1);

        // At this point `result` is an estimation with one bit of precision. We know the true value is a uint128,
        // since it is the square root of a uint256. Newton's method converges quadratically (precision doubles at
        // every iteration). We thus need at most 7 iteration to turn our partial result with one bit of precision
        // into the expected uint128 result.
        unchecked {
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            return min(result, a / result);
        }
    }

    /**
     * @notice Calculates sqrt(a), following the selected rounding direction.
     */
    function sqrt(uint256 a, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = sqrt(a);
            return result + (rounding == Rounding.Up && result * result < a ? 1 : 0);
        }
    }

    /**
     * @dev Return the log in base 2, rounded down, of a positive value.
     * Returns 0 if given 0.
     */
    function log2(uint256 value) internal pure returns (uint256) {
        uint256 result = 0;
        unchecked {
            if (value >> 128 > 0) {
                value >>= 128;
                result += 128;
            }
            if (value >> 64 > 0) {
                value >>= 64;
                result += 64;
            }
            if (value >> 32 > 0) {
                value >>= 32;
                result += 32;
            }
            if (value >> 16 > 0) {
                value >>= 16;
                result += 16;
            }
            if (value >> 8 > 0) {
                value >>= 8;
                result += 8;
            }
            if (value >> 4 > 0) {
                value >>= 4;
                result += 4;
            }
            if (value >> 2 > 0) {
                value >>= 2;
                result += 2;
            }
            if (value >> 1 > 0) {
                result += 1;
            }
        }
        return result;
    }

    /**
     * @dev Return the log in base 2, following the selected rounding direction, of a positive value.
     * Returns 0 if given 0.
     */
    function log2(uint256 value, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = log2(value);
            return result + (rounding == Rounding.Up && 1 << result < value ? 1 : 0);
        }
    }

    /**
     * @dev Return the log in base 10, rounded down, of a positive value.
     * Returns 0 if given 0.
     */
    function log10(uint256 value) internal pure returns (uint256) {
        uint256 result = 0;
        unchecked {
            if (value >= 10 ** 64) {
                value /= 10 ** 64;
                result += 64;
            }
            if (value >= 10 ** 32) {
                value /= 10 ** 32;
                result += 32;
            }
            if (value >= 10 ** 16) {
                value /= 10 ** 16;
                result += 16;
            }
            if (value >= 10 ** 8) {
                value /= 10 ** 8;
                result += 8;
            }
            if (value >= 10 ** 4) {
                value /= 10 ** 4;
                result += 4;
            }
            if (value >= 10 ** 2) {
                value /= 10 ** 2;
                result += 2;
            }
            if (value >= 10 ** 1) {
                result += 1;
            }
        }
        return result;
    }

    /**
     * @dev Return the log in base 10, following the selected rounding direction, of a positive value.
     * Returns 0 if given 0.
     */
    function log10(uint256 value, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = log10(value);
            return result + (rounding == Rounding.Up && 10 ** result < value ? 1 : 0);
        }
    }

    /**
     * @dev Return the log in base 256, rounded down, of a positive value.
     * Returns 0 if given 0.
     *
     * Adding one to the result gives the number of pairs of hex symbols needed to represent `value` as a hex string.
     */
    function log256(uint256 value) internal pure returns (uint256) {
        uint256 result = 0;
        unchecked {
            if (value >> 128 > 0) {
                value >>= 128;
                result += 16;
            }
            if (value >> 64 > 0) {
                value >>= 64;
                result += 8;
            }
            if (value >> 32 > 0) {
                value >>= 32;
                result += 4;
            }
            if (value >> 16 > 0) {
                value >>= 16;
                result += 2;
            }
            if (value >> 8 > 0) {
                result += 1;
            }
        }
        return result;
    }

    /**
     * @dev Return the log in base 256, following the selected rounding direction, of a positive value.
     * Returns 0 if given 0.
     */
    function log256(uint256 value, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = log256(value);
            return result + (rounding == Rounding.Up && 1 << (result << 3) < value ? 1 : 0);
        }
    }
}

File 12 of 15 : SignedMath.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.0) (utils/math/SignedMath.sol)

pragma solidity ^0.8.0;

/**
 * @dev Standard signed math utilities missing in the Solidity language.
 */
library SignedMath {
    /**
     * @dev Returns the largest of two signed numbers.
     */
    function max(int256 a, int256 b) internal pure returns (int256) {
        return a > b ? a : b;
    }

    /**
     * @dev Returns the smallest of two signed numbers.
     */
    function min(int256 a, int256 b) internal pure returns (int256) {
        return a < b ? a : b;
    }

    /**
     * @dev Returns the average of two signed numbers without overflow.
     * The result is rounded towards zero.
     */
    function average(int256 a, int256 b) internal pure returns (int256) {
        // Formula from the book "Hacker's Delight"
        int256 x = (a & b) + ((a ^ b) >> 1);
        return x + (int256(uint256(x) >> 255) & (a ^ b));
    }

    /**
     * @dev Returns the absolute unsigned value of a signed value.
     */
    function abs(int256 n) internal pure returns (uint256) {
        unchecked {
            // must be unchecked in order to support `n = type(int256).min`
            return uint256(n >= 0 ? n : -n);
        }
    }
}

File 13 of 15 : Strings.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (utils/Strings.sol)

pragma solidity ^0.8.0;

import "./math/Math.sol";
import "./math/SignedMath.sol";

/**
 * @dev String operations.
 */
library Strings {
    bytes16 private constant _SYMBOLS = "0123456789abcdef";
    uint8 private constant _ADDRESS_LENGTH = 20;

    /**
     * @dev Converts a `uint256` to its ASCII `string` decimal representation.
     */
    function toString(uint256 value) internal pure returns (string memory) {
        unchecked {
            uint256 length = Math.log10(value) + 1;
            string memory buffer = new string(length);
            uint256 ptr;
            /// @solidity memory-safe-assembly
            assembly {
                ptr := add(buffer, add(32, length))
            }
            while (true) {
                ptr--;
                /// @solidity memory-safe-assembly
                assembly {
                    mstore8(ptr, byte(mod(value, 10), _SYMBOLS))
                }
                value /= 10;
                if (value == 0) break;
            }
            return buffer;
        }
    }

    /**
     * @dev Converts a `int256` to its ASCII `string` decimal representation.
     */
    function toString(int256 value) internal pure returns (string memory) {
        return string(abi.encodePacked(value < 0 ? "-" : "", toString(SignedMath.abs(value))));
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.
     */
    function toHexString(uint256 value) internal pure returns (string memory) {
        unchecked {
            return toHexString(value, Math.log256(value) + 1);
        }
    }

    /**
     * @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] = _SYMBOLS[value & 0xf];
            value >>= 4;
        }
        require(value == 0, "Strings: hex length insufficient");
        return string(buffer);
    }

    /**
     * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation.
     */
    function toHexString(address addr) internal pure returns (string memory) {
        return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH);
    }

    /**
     * @dev Returns true if the two strings are equal.
     */
    function equal(string memory a, string memory b) internal pure returns (bool) {
        return keccak256(bytes(a)) == keccak256(bytes(b));
    }
}

File 14 of 15 : ERC721.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.20;

import "@openzeppelin/contracts/token/ERC721/IERC721.sol";
import "@openzeppelin/contracts/token/ERC721/IERC721Receiver.sol";
import "@openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol";
import "@openzeppelin/contracts/utils/Context.sol";
import "@openzeppelin/contracts/utils/introspection/ERC165.sol";
import "@openzeppelin/contracts/utils/Address.sol";

abstract contract ERC721 is Context, ERC165, IERC721, IERC721Metadata {
    using Address for address;

    string private _name;
    string private _symbol;

    // Mapping from token ID to owner address
    address[] internal _owners;

    mapping(uint256 => address) private _tokenApprovals;
    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_;
        _owners.push(address(0));
    }

    /**
     * @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"
        );

        uint256 count;
        for (uint256 i; i < _owners.length; ++i) {
            if (owner == _owners[i]) ++count;
        }
        return count;
    }

    /**
     * @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 {IERC721-approve}.
     */
    function approve(address to, uint256 tokenId) public virtual override {
        address owner = ERC721.ownerOf(tokenId);
        require(to != owner, "ERC721: approval to current owner");

        require(
            _msgSender() == owner || isApprovedForAll(owner, _msgSender()),
            "ERC721: approve caller is not owner nor approved for all"
        );

        _approve(to, tokenId);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(
        uint256 tokenId
    ) public view virtual override returns (address) {
        require(
            _exists(tokenId),
            "ERC721: approved query for nonexistent token"
        );

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(
        address operator,
        bool approved
    ) public virtual override {
        require(operator != _msgSender(), "ERC721: approve to caller");

        _operatorApprovals[_msgSender()][operator] = approved;
        emit ApprovalForAll(_msgSender(), operator, approved);
    }

    /**
     * @dev See {IERC721-isApprovedForAll}.
     */
    function isApprovedForAll(
        address owner,
        address operator
    ) public view virtual override returns (bool) {
        return _operatorApprovals[owner][operator];
    }

    /**
     * @dev See {IERC721-transferFrom}.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        //solhint-disable-next-line max-line-length
        require(
            _isApprovedOrOwner(_msgSender(), tokenId),
            "ERC721: transfer caller is not owner nor approved"
        );

        _transfer(from, to, tokenId);
    }

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        safeTransferFrom(from, to, tokenId, "");
    }

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public virtual override {
        require(
            _isApprovedOrOwner(_msgSender(), tokenId),
            "ERC721: transfer caller is not owner nor approved"
        );
        _safeTransfer(from, to, tokenId, _data);
    }

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * `_data` is additional data, it has no specified format and it is sent in call to `to`.
     *
     * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g.
     * implement alternative mechanisms to perform token transfer, such as signature-based.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeTransfer(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) internal virtual {
        _transfer(from, to, tokenId);
        require(
            _checkOnERC721Received(from, to, tokenId, _data),
            "ERC721: transfer to non ERC721Receiver implementer"
        );
    }

    /**
     * @dev Returns whether `tokenId` exists.
     *
     * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}.
     *
     * Tokens start existing when they are minted (`_mint`),
     * and stop existing when they are burned (`_burn`).
     */
    function _exists(uint256 tokenId) internal view virtual returns (bool) {
        return tokenId < _owners.length && _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);
        _owners.push(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);
        _owners[tokenId] = address(0);

        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);
        _owners[tokenId] = to;

        emit Transfer(from, to, tokenId);
    }

    /**
     * @dev Approve `to` to operate on `tokenId`
     *
     * Emits a {Approval} event.
     */
    function _approve(address to, uint256 tokenId) internal virtual {
        _tokenApprovals[tokenId] = to;
        emit Approval(ERC721.ownerOf(tokenId), to, tokenId);
    }

    /**
     * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address.
     * The call is not executed if the target address is not a contract.
     *
     * @param from address representing the previous owner of the given token ID
     * @param to target address that will receive the tokens
     * @param tokenId uint256 ID of the token to be transferred
     * @param _data bytes optional data to send along with the call
     * @return bool whether the call correctly returned the expected magic value
     */
    function _checkOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) private returns (bool) {
        if (to.code.length > 0) {
            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 15 of 15 : ERC721Enumerable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.20;

import "./ERC721.sol";
import "@openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.sol";

abstract contract ERC721Enumerable is ERC721, IERC721Enumerable {
    /**
     * @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-totalSupply}.
     */
    function totalSupply() public view virtual override returns (uint256) {
        return _owners.length - 1;
    }

    /**
     * @dev See {IERC721Enumerable-tokenByIndex}.
     */
    function tokenByIndex(uint256 index)
        public
        view
        virtual
        override
        returns (uint256)
    {
        require(
            index < _owners.length,
            "ERC721Enumerable: global index out of bounds"
        );
        return index;
    }

    /**
     * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index)
        public
        view
        virtual
        override
        returns (uint256 tokenId)
    {
        require(
            index < balanceOf(owner),
            "ERC721Enumerable: owner index out of bounds"
        );

        uint256 count;
        for (uint256 i; i < _owners.length; i++) {
            if (owner == _owners[i]) {
                if (count == index) return i;
                else count++;
            }
        }

        revert("ERC721Enumerable: owner index out of bounds");
    }
}

Settings
{
  "evmVersion": "paris",
  "optimizer": {
    "enabled": false,
    "runs": 200
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "devdoc",
        "userdoc",
        "metadata",
        "abi"
      ]
    }
  },
  "libraries": {}
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address payable","name":"_devWallet","type":"address"},{"internalType":"address payable","name":"_founderWallet","type":"address"}],"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":"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":"uint256[]","name":"quantity","type":"uint256[]"},{"internalType":"address[]","name":"recipient","type":"address[]"}],"name":"airdrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"airdropReserved","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"airdroppedTokensCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"tokenIds","type":"uint256[]"}],"name":"burnMany","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"devWallet","outputs":[{"internalType":"address payable","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"founderWallet","outputs":[{"internalType":"address payable","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isBurnActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerWallet","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":"quantity","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","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":"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":"_newBaseURI","type":"string"},{"internalType":"string","name":"_newSuffix","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newMaxPerWallet","type":"uint256"}],"name":"setMaxPerWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newMintPrice","type":"uint256"}],"name":"setMintPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"setOwner","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"toggleIsActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"toggleIsBurnActive","outputs":[],"stateMutability":"nonpayable","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":"tokenId","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":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

608060405266d529ae9e86000060095561029a600a556042600b556000600c556004600d553480156200003157600080fd5b50604051620050c2380380620050c283398181016040528101906200005791906200028a565b6040518060400160405280600c81526020017f436974697a656e205061737300000000000000000000000000000000000000008152506040518060400160405280600c81526020017f436974697a656e205061737300000000000000000000000000000000000000008152508160009081620000d491906200054b565b508060019081620000e691906200054b565b50600260009080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505050600160058190555081600e60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080600f60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555033601060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550505062000632565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000620002528262000225565b9050919050565b620002648162000245565b81146200027057600080fd5b50565b600081519050620002848162000259565b92915050565b60008060408385031215620002a457620002a362000220565b5b6000620002b48582860162000273565b9250506020620002c78582860162000273565b9150509250929050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200035357607f821691505b6020821081036200036957620003686200030b565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620003d37fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000394565b620003df868362000394565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b60006200042c620004266200042084620003f7565b62000401565b620003f7565b9050919050565b6000819050919050565b62000448836200040b565b62000460620004578262000433565b848454620003a1565b825550505050565b600090565b6200047762000468565b620004848184846200043d565b505050565b5b81811015620004ac57620004a06000826200046d565b6001810190506200048a565b5050565b601f821115620004fb57620004c5816200036f565b620004d08462000384565b81016020851015620004e0578190505b620004f8620004ef8562000384565b83018262000489565b50505b505050565b600082821c905092915050565b6000620005206000198460080262000500565b1980831691505092915050565b60006200053b83836200050d565b9150826002028217905092915050565b6200055682620002d1565b67ffffffffffffffff811115620005725762000571620002dc565b5b6200057e82546200033a565b6200058b828285620004b0565b600060209050601f831160018114620005c35760008415620005ae578287015190505b620005ba85826200052d565b8655506200062a565b601f198416620005d3866200036f565b60005b82811015620005fd57848901518255600182019150602085019450602081019050620005d6565b868310156200061d578489015162000619601f8916826200050d565b8355505b6001600288020188555050505b505050505050565b614a8080620006426000396000f3fe60806040526004361061021a5760003560e01c80636817c76c11610123578063b88d4fde116100ab578063d25933291161006f578063d2593329146107b2578063d5abeb01146107c9578063e268e4d3146107f4578063e985e9c51461081d578063f4a0a5281461085a5761021a565b8063b88d4fde146106e1578063c38c23b91461070a578063c87b56dd14610735578063c951c5e914610772578063cf323460146107895761021a565b806395d89b41116100f257806395d89b411461061b578063a0712d6814610646578063a22cb46514610662578063a23d3c351461068b578063b1a6676e146106b65761021a565b80636817c76c1461055d57806370a08231146105885780638da5cb5b146105c55780638ea5220f146105f05761021a565b80633ccfd60b116101a6578063453c231011610175578063453c2310146104665780634f6ccce7146104915780636352211e146104ce5780636673c4c21461050b5780636790a9de146105345761021a565b80633ccfd60b146103d257806342842e0e146103e957806342966c681461041257806344c1e2a41461043b5761021a565b806313af4035116101ed57806313af4035146102ed57806318160ddd1461031657806322f3e2d41461034157806323b872dd1461036c5780632f745c59146103955761021a565b806301ffc9a71461021f57806306fdde031461025c578063081812fc14610287578063095ea7b3146102c4575b600080fd5b34801561022b57600080fd5b5061024660048036038101906102419190612d3f565b610883565b6040516102539190612d87565b60405180910390f35b34801561026857600080fd5b506102716108fd565b60405161027e9190612e32565b60405180910390f35b34801561029357600080fd5b506102ae60048036038101906102a99190612e8a565b61098f565b6040516102bb9190612ef8565b60405180910390f35b3480156102d057600080fd5b506102eb60048036038101906102e69190612f3f565b610a14565b005b3480156102f957600080fd5b50610314600480360381019061030f9190612f7f565b610b2b565b005b34801561032257600080fd5b5061032b610bff565b6040516103389190612fbb565b60405180910390f35b34801561034d57600080fd5b50610356610c18565b6040516103639190612d87565b60405180910390f35b34801561037857600080fd5b50610393600480360381019061038e9190612fd6565b610c2b565b005b3480156103a157600080fd5b506103bc60048036038101906103b79190612f3f565b610c8b565b6040516103c99190612fbb565b60405180910390f35b3480156103de57600080fd5b506103e7610dce565b005b3480156103f557600080fd5b50610410600480360381019061040b9190612fd6565b611027565b005b34801561041e57600080fd5b5061043960048036038101906104349190612e8a565b611047565b005b34801561044757600080fd5b506104506110eb565b60405161045d9190612fbb565b60405180910390f35b34801561047257600080fd5b5061047b6110f1565b6040516104889190612fbb565b60405180910390f35b34801561049d57600080fd5b506104b860048036038101906104b39190612e8a565b6110f7565b6040516104c59190612fbb565b60405180910390f35b3480156104da57600080fd5b506104f560048036038101906104f09190612e8a565b611148565b6040516105029190612ef8565b60405180910390f35b34801561051757600080fd5b50610532600480360381019061052d91906130e4565b611204565b005b34801561054057600080fd5b5061055b600480360381019061055691906131bb565b611497565b005b34801561056957600080fd5b50610572611551565b60405161057f9190612fbb565b60405180910390f35b34801561059457600080fd5b506105af60048036038101906105aa9190612f7f565b611557565b6040516105bc9190612fbb565b60405180910390f35b3480156105d157600080fd5b506105da611671565b6040516105e79190612ef8565b60405180910390f35b3480156105fc57600080fd5b50610605611697565b604051610612919061325d565b60405180910390f35b34801561062757600080fd5b506106306116bd565b60405161063d9190612e32565b60405180910390f35b610660600480360381019061065b9190612e8a565b61174f565b005b34801561066e57600080fd5b50610689600480360381019061068491906132a4565b61198a565b005b34801561069757600080fd5b506106a0611b0a565b6040516106ad919061325d565b60405180910390f35b3480156106c257600080fd5b506106cb611b30565b6040516106d89190612d87565b60405180910390f35b3480156106ed57600080fd5b5061070860048036038101906107039190613414565b611b43565b005b34801561071657600080fd5b5061071f611ba5565b60405161072c9190612fbb565b60405180910390f35b34801561074157600080fd5b5061075c60048036038101906107579190612e8a565b611bab565b6040516107699190612e32565b60405180910390f35b34801561077e57600080fd5b50610787611c2a565b005b34801561079557600080fd5b506107b060048036038101906107ab9190613497565b611ce6565b005b3480156107be57600080fd5b506107c7611ddf565b005b3480156107d557600080fd5b506107de611e9b565b6040516107eb9190612fbb565b60405180910390f35b34801561080057600080fd5b5061081b60048036038101906108169190612e8a565b611ea1565b005b34801561082957600080fd5b50610844600480360381019061083f91906134e4565b611f3b565b6040516108519190612d87565b60405180910390f35b34801561086657600080fd5b50610881600480360381019061087c9190612e8a565b611fcf565b005b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806108f657506108f582612069565b5b9050919050565b60606000805461090c90613553565b80601f016020809104026020016040519081016040528092919081815260200182805461093890613553565b80156109855780601f1061095a57610100808354040283529160200191610985565b820191906000526020600020905b81548152906001019060200180831161096857829003601f168201915b5050505050905090565b600061099a8261214b565b6109d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109d0906135f6565b60405180910390fd5b6003600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610a1f82611148565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610a8f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a8690613688565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610aae6121d3565b73ffffffffffffffffffffffffffffffffffffffff161480610add5750610adc81610ad76121d3565b611f3b565b5b610b1c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b139061371a565b60405180910390fd5b610b2683836121db565b505050565b601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610bbb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bb290613786565b60405180910390fd5b80601060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60006001600280549050610c1391906137d5565b905090565b600860009054906101000a900460ff1681565b610c3c610c366121d3565b82612294565b610c7b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c729061387b565b60405180910390fd5b610c86838383612372565b505050565b6000610c9683611557565b8210610cd7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cce9061390d565b60405180910390fd5b6000805b600280549050811015610d8c5760028181548110610cfc57610cfb61392d565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603610d7957838203610d6a578092505050610dc8565b8180610d759061395c565b9250505b8080610d849061395c565b915050610cdb565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dbf9061390d565b60405180910390fd5b92915050565b601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610e5e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e5590613786565b60405180910390fd5b60004790506000600a82610e7291906139d3565b905060008183610e8291906137d5565b90506000600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1683604051610ecc90613a35565b60006040518083038185875af1925050503d8060008114610f09576040519150601f19603f3d011682016040523d82523d6000602084013e610f0e565b606091505b5050905080610f52576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f4990613abc565b60405180910390fd5b6000600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1683604051610f9a90613a35565b60006040518083038185875af1925050503d8060008114610fd7576040519150601f19603f3d011682016040523d82523d6000602084013e610fdc565b606091505b5050905080611020576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161101790613b28565b60405180910390fd5b5050505050565b61104283838360405180602001604052806000815250611b43565b505050565b600860019054906101000a900460ff16611096576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161108d90613b94565b60405180910390fd5b6110a03382612294565b6110df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110d690613c00565b60405180910390fd5b6110e88161252a565b50565b600b5481565b600d5481565b60006002805490508210611140576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161113790613c92565b60405180910390fd5b819050919050565b6000806002838154811061115f5761115e61392d565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036111fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111f290613d24565b60405180910390fd5b80915050919050565b601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611294576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161128b90613786565b60405180910390fd5b8181905084849050146112dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112d390613db6565b60405180910390fd5b6000805b85859050811015611323578585828181106112fe576112fd61392d565b5b90506020020135826113109190613dd6565b91508061131c9061395c565b90506112e0565b50600b54811115611369576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161136090613e56565b60405180910390fd5b600a5481611375610bff565b61137f9190613dd6565b11156113c0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113b790613ec2565b60405180910390fd5b80600b60008282546113d291906137d5565b9250508190555080600c60008282546113eb9190613dd6565b925050819055506000600280549050905060005b8484905081101561148e5760005b8787838181106114205761141f61392d565b5b9050602002013581101561147c5761146b8686848181106114445761144361392d565b5b90506020020160208101906114599190612f7f565b84806114649061395c565b955061260c565b806114759061395c565b905061140d565b50806114879061395c565b90506113ff565b50505050505050565b601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611527576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161151e90613786565b60405180910390fd5b838360069182611538929190614099565b5081816007918261154a929190614099565b5050505050565b60095481565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036115c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115be906141db565b60405180910390fd5b6000805b60028054905081101561166757600281815481106115ec576115eb61392d565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff160361165657816116539061395c565b91505b806116609061395c565b90506115cb565b5080915050919050565b601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6060600180546116cc90613553565b80601f01602080910402602001604051908101604052809291908181526020018280546116f890613553565b80156117455780601f1061171a57610100808354040283529160200191611745565b820191906000526020600020905b81548152906001019060200180831161172857829003601f168201915b5050505050905090565b61175761262a565b600860009054906101000a900460ff166117a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161179d90614247565b60405180910390fd5b806009546117b49190614267565b3410156117f6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117ed906142f5565b60405180910390fd5b600b54600a5461180691906137d5565b8161180f610bff565b6118199190613dd6565b111561185a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161185190614361565b60405180910390fd5b600d5481601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546118a89190613dd6565b11156118e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118e0906143cd565b60405180910390fd5b6000600280549050905081601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546119429190613dd6565b9250508190555060005b8281101561197d5761196a3383806119639061395c565b945061260c565b80806119759061395c565b91505061194c565b5050611987612679565b50565b6119926121d3565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036119ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119f690614439565b60405180910390fd5b8060046000611a0c6121d3565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611ab96121d3565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611afe9190612d87565b60405180910390a35050565b600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600860019054906101000a900460ff1681565b611b54611b4e6121d3565b83612294565b611b93576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b8a9061387b565b60405180910390fd5b611b9f84848484612683565b50505050565b600c5481565b6060611bb68261214b565b611bf5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bec906144cb565b60405180910390fd5b6006611c00836126df565b6007604051602001611c14939291906145aa565b6040516020818303038152906040529050919050565b601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611cba576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cb190613786565b60405180910390fd5b600860019054906101000a900460ff1615600860016101000a81548160ff021916908315150217905550565b600860019054906101000a900460ff16611d35576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d2c90613b94565b60405180910390fd5b60005b82829050811015611dda57611d6633848484818110611d5a57611d5961392d565b5b90506020020135612294565b611da5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d9c90613c00565b60405180910390fd5b611dc7838383818110611dbb57611dba61392d565b5b9050602002013561252a565b8080611dd29061395c565b915050611d38565b505050565b601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611e6f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e6690613786565b60405180910390fd5b600860009054906101000a900460ff1615600860006101000a81548160ff021916908315150217905550565b600a5481565b601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611f31576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f2890613786565b60405180910390fd5b80600d8190555050565b6000600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461205f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161205690613786565b60405180910390fd5b8060098190555050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061213457507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806121445750612143826127ad565b5b9050919050565b6000600280549050821080156121cc5750600073ffffffffffffffffffffffffffffffffffffffff16600283815481106121885761218761392d565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614155b9050919050565b600033905090565b816003600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661224e83611148565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600061229f8261214b565b6122de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122d59061464d565b60405180910390fd5b60006122e983611148565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061235857508373ffffffffffffffffffffffffffffffffffffffff166123408461098f565b73ffffffffffffffffffffffffffffffffffffffff16145b8061236957506123688185611f3b565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661239282611148565b73ffffffffffffffffffffffffffffffffffffffff16146123e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123df906146df565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612457576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161244e90614771565b60405180910390fd5b612462838383612817565b61246d6000826121db565b81600282815481106124825761248161392d565b5b9060005260206000200160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b600061253582611148565b905061254381600084612817565b61254e6000836121db565b6000600283815481106125645761256361392d565b5b9060005260206000200160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555081600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b61262682826040518060200160405280600081525061281c565b5050565b60026005540361266f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612666906147dd565b60405180910390fd5b6002600581905550565b6001600581905550565b61268e848484612372565b61269a84848484612877565b6126d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126d09061486f565b60405180910390fd5b50505050565b6060600060016126ee846129f9565b01905060008167ffffffffffffffff81111561270d5761270c6132e9565b5b6040519080825280601f01601f19166020018201604052801561273f5781602001600182028036833780820191505090505b509050600082602001820190505b6001156127a2578080600190039150507f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a8581612796576127956139a4565b5b0494506000850361274d575b819350505050919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b505050565b6128268383612b4c565b6128336000848484612877565b612872576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128699061486f565b60405180910390fd5b505050565b6000808473ffffffffffffffffffffffffffffffffffffffff163b11156129ec578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026128bc6121d3565b8786866040518563ffffffff1660e01b81526004016128de94939291906148e4565b6020604051808303816000875af192505050801561291a57506040513d601f19601f820116820180604052508101906129179190614945565b60015b61299c573d806000811461294a576040519150601f19603f3d011682016040523d82523d6000602084013e61294f565b606091505b506000815103612994576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161298b9061486f565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506129f1565b600190505b949350505050565b600080600090507a184f03e93ff9f4daa797ed6e38ed64bf6a1f0100000000000000008310612a57577a184f03e93ff9f4daa797ed6e38ed64bf6a1f0100000000000000008381612a4d57612a4c6139a4565b5b0492506040810190505b6d04ee2d6d415b85acef81000000008310612a94576d04ee2d6d415b85acef81000000008381612a8a57612a896139a4565b5b0492506020810190505b662386f26fc100008310612ac357662386f26fc100008381612ab957612ab86139a4565b5b0492506010810190505b6305f5e1008310612aec576305f5e1008381612ae257612ae16139a4565b5b0492506008810190505b6127108310612b11576127108381612b0757612b066139a4565b5b0492506004810190505b60648310612b345760648381612b2a57612b296139a4565b5b0492506002810190505b600a8310612b43576001810190505b80915050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612bbb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bb2906149be565b60405180910390fd5b612bc48161214b565b15612c04576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bfb90614a2a565b60405180910390fd5b612c1060008383612817565b6002829080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612d1c81612ce7565b8114612d2757600080fd5b50565b600081359050612d3981612d13565b92915050565b600060208284031215612d5557612d54612cdd565b5b6000612d6384828501612d2a565b91505092915050565b60008115159050919050565b612d8181612d6c565b82525050565b6000602082019050612d9c6000830184612d78565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612ddc578082015181840152602081019050612dc1565b60008484015250505050565b6000601f19601f8301169050919050565b6000612e0482612da2565b612e0e8185612dad565b9350612e1e818560208601612dbe565b612e2781612de8565b840191505092915050565b60006020820190508181036000830152612e4c8184612df9565b905092915050565b6000819050919050565b612e6781612e54565b8114612e7257600080fd5b50565b600081359050612e8481612e5e565b92915050565b600060208284031215612ea057612e9f612cdd565b5b6000612eae84828501612e75565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612ee282612eb7565b9050919050565b612ef281612ed7565b82525050565b6000602082019050612f0d6000830184612ee9565b92915050565b612f1c81612ed7565b8114612f2757600080fd5b50565b600081359050612f3981612f13565b92915050565b60008060408385031215612f5657612f55612cdd565b5b6000612f6485828601612f2a565b9250506020612f7585828601612e75565b9150509250929050565b600060208284031215612f9557612f94612cdd565b5b6000612fa384828501612f2a565b91505092915050565b612fb581612e54565b82525050565b6000602082019050612fd06000830184612fac565b92915050565b600080600060608486031215612fef57612fee612cdd565b5b6000612ffd86828701612f2a565b935050602061300e86828701612f2a565b925050604061301f86828701612e75565b9150509250925092565b600080fd5b600080fd5b600080fd5b60008083601f84011261304e5761304d613029565b5b8235905067ffffffffffffffff81111561306b5761306a61302e565b5b60208301915083602082028301111561308757613086613033565b5b9250929050565b60008083601f8401126130a4576130a3613029565b5b8235905067ffffffffffffffff8111156130c1576130c061302e565b5b6020830191508360208202830111156130dd576130dc613033565b5b9250929050565b600080600080604085870312156130fe576130fd612cdd565b5b600085013567ffffffffffffffff81111561311c5761311b612ce2565b5b61312887828801613038565b9450945050602085013567ffffffffffffffff81111561314b5761314a612ce2565b5b6131578782880161308e565b925092505092959194509250565b60008083601f84011261317b5761317a613029565b5b8235905067ffffffffffffffff8111156131985761319761302e565b5b6020830191508360018202830111156131b4576131b3613033565b5b9250929050565b600080600080604085870312156131d5576131d4612cdd565b5b600085013567ffffffffffffffff8111156131f3576131f2612ce2565b5b6131ff87828801613165565b9450945050602085013567ffffffffffffffff81111561322257613221612ce2565b5b61322e87828801613165565b925092505092959194509250565b600061324782612eb7565b9050919050565b6132578161323c565b82525050565b6000602082019050613272600083018461324e565b92915050565b61328181612d6c565b811461328c57600080fd5b50565b60008135905061329e81613278565b92915050565b600080604083850312156132bb576132ba612cdd565b5b60006132c985828601612f2a565b92505060206132da8582860161328f565b9150509250929050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61332182612de8565b810181811067ffffffffffffffff821117156133405761333f6132e9565b5b80604052505050565b6000613353612cd3565b905061335f8282613318565b919050565b600067ffffffffffffffff82111561337f5761337e6132e9565b5b61338882612de8565b9050602081019050919050565b82818337600083830152505050565b60006133b76133b284613364565b613349565b9050828152602081018484840111156133d3576133d26132e4565b5b6133de848285613395565b509392505050565b600082601f8301126133fb576133fa613029565b5b813561340b8482602086016133a4565b91505092915050565b6000806000806080858703121561342e5761342d612cdd565b5b600061343c87828801612f2a565b945050602061344d87828801612f2a565b935050604061345e87828801612e75565b925050606085013567ffffffffffffffff81111561347f5761347e612ce2565b5b61348b878288016133e6565b91505092959194509250565b600080602083850312156134ae576134ad612cdd565b5b600083013567ffffffffffffffff8111156134cc576134cb612ce2565b5b6134d885828601613038565b92509250509250929050565b600080604083850312156134fb576134fa612cdd565b5b600061350985828601612f2a565b925050602061351a85828601612f2a565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061356b57607f821691505b60208210810361357e5761357d613524565b5b50919050565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b60006135e0602c83612dad565b91506135eb82613584565b604082019050919050565b6000602082019050818103600083015261360f816135d3565b9050919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b6000613672602183612dad565b915061367d82613616565b604082019050919050565b600060208201905081810360008301526136a181613665565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b6000613704603883612dad565b915061370f826136a8565b604082019050919050565b60006020820190508181036000830152613733816136f7565b9050919050565b7f43616c6c6572206973206e6f7420746865206f776e6572000000000000000000600082015250565b6000613770601783612dad565b915061377b8261373a565b602082019050919050565b6000602082019050818103600083015261379f81613763565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006137e082612e54565b91506137eb83612e54565b9250828203905081811115613803576138026137a6565b5b92915050565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b6000613865603183612dad565b915061387082613809565b604082019050919050565b6000602082019050818103600083015261389481613858565b9050919050565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b60006138f7602b83612dad565b91506139028261389b565b604082019050919050565b60006020820190508181036000830152613926816138ea565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600061396782612e54565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203613999576139986137a6565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006139de82612e54565b91506139e983612e54565b9250826139f9576139f86139a4565b5b828204905092915050565b600081905092915050565b50565b6000613a1f600083613a04565b9150613a2a82613a0f565b600082019050919050565b6000613a4082613a12565b9150819050919050565b7f4661696c656420746f2073656e6420457468657220746f20646576656c6f706560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b6000613aa6602183612dad565b9150613ab182613a4a565b604082019050919050565b60006020820190508181036000830152613ad581613a99565b9050919050565b7f4661696c656420746f2073656e6420457468657220746f20666f756e64657200600082015250565b6000613b12601f83612dad565b9150613b1d82613adc565b602082019050919050565b60006020820190508181036000830152613b4181613b05565b9050919050565b7f4275726e206973206e6f74206163746976650000000000000000000000000000600082015250565b6000613b7e601283612dad565b9150613b8982613b48565b602082019050919050565b60006020820190508181036000830152613bad81613b71565b9050919050565b7f43616c6c6572206973206e6f74206f776e6572206e6f7220617070726f766564600082015250565b6000613bea602083612dad565b9150613bf582613bb4565b602082019050919050565b60006020820190508181036000830152613c1981613bdd565b9050919050565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b6000613c7c602c83612dad565b9150613c8782613c20565b604082019050919050565b60006020820190508181036000830152613cab81613c6f565b9050919050565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b6000613d0e602983612dad565b9150613d1982613cb2565b604082019050919050565b60006020820190508181036000830152613d3d81613d01565b9050919050565b7f5175616e74697479206c656e677468206973206e6f7420657175616c20746f2060008201527f726563697069656e747300000000000000000000000000000000000000000000602082015250565b6000613da0602a83612dad565b9150613dab82613d44565b604082019050919050565b60006020820190508181036000830152613dcf81613d93565b9050919050565b6000613de182612e54565b9150613dec83612e54565b9250828201905080821115613e0457613e036137a6565b5b92915050565b7f457863656564732072657365727665642061697264726f7020746f6b656e7300600082015250565b6000613e40601f83612dad565b9150613e4b82613e0a565b602082019050919050565b60006020820190508181036000830152613e6f81613e33565b9050919050565b7f45786365656473206d617820737570706c790000000000000000000000000000600082015250565b6000613eac601283612dad565b9150613eb782613e76565b602082019050919050565b60006020820190508181036000830152613edb81613e9f565b9050919050565b600082905092915050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302613f4f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82613f12565b613f598683613f12565b95508019841693508086168417925050509392505050565b6000819050919050565b6000613f96613f91613f8c84612e54565b613f71565b612e54565b9050919050565b6000819050919050565b613fb083613f7b565b613fc4613fbc82613f9d565b848454613f1f565b825550505050565b600090565b613fd9613fcc565b613fe4818484613fa7565b505050565b5b8181101561400857613ffd600082613fd1565b600181019050613fea565b5050565b601f82111561404d5761401e81613eed565b61402784613f02565b81016020851015614036578190505b61404a61404285613f02565b830182613fe9565b50505b505050565b600082821c905092915050565b600061407060001984600802614052565b1980831691505092915050565b6000614089838361405f565b9150826002028217905092915050565b6140a38383613ee2565b67ffffffffffffffff8111156140bc576140bb6132e9565b5b6140c68254613553565b6140d182828561400c565b6000601f83116001811461410057600084156140ee578287013590505b6140f8858261407d565b865550614160565b601f19841661410e86613eed565b60005b8281101561413657848901358255600182019150602085019450602081019050614111565b86831015614153578489013561414f601f89168261405f565b8355505b6001600288020188555050505b50505050505050565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b60006141c5602a83612dad565b91506141d082614169565b604082019050919050565b600060208201905081810360008301526141f4816141b8565b9050919050565b7f4d696e74206973206e6f74206163746976650000000000000000000000000000600082015250565b6000614231601283612dad565b915061423c826141fb565b602082019050919050565b6000602082019050818103600083015261426081614224565b9050919050565b600061427282612e54565b915061427d83612e54565b925082820261428b81612e54565b915082820484148315176142a2576142a16137a6565b5b5092915050565b7f45746865722073656e74206973206e6f7420636f727265637400000000000000600082015250565b60006142df601983612dad565b91506142ea826142a9565b602082019050919050565b6000602082019050818103600083015261430e816142d2565b9050919050565b7f4e6f7420656e6f75676820746f6b656e73206c65667420746f206d696e740000600082015250565b600061434b601e83612dad565b915061435682614315565b602082019050919050565b6000602082019050818103600083015261437a8161433e565b9050919050565b7f4d61782034206d696e74207065722077616c6c65740000000000000000000000600082015250565b60006143b7601583612dad565b91506143c282614381565b602082019050919050565b600060208201905081810360008301526143e6816143aa565b9050919050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b6000614423601983612dad565b915061442e826143ed565b602082019050919050565b6000602082019050818103600083015261445281614416565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b60006144b5602f83612dad565b91506144c082614459565b604082019050919050565b600060208201905081810360008301526144e4816144a8565b9050919050565b600081905092915050565b6000815461450381613553565b61450d81866144eb565b94506001821660008114614528576001811461453d57614570565b60ff1983168652811515820286019350614570565b61454685613eed565b60005b8381101561456857815481890152600182019150602081019050614549565b838801955050505b50505092915050565b600061458482612da2565b61458e81856144eb565b935061459e818560208601612dbe565b80840191505092915050565b60006145b682866144f6565b91506145c28285614579565b91506145ce82846144f6565b9150819050949350505050565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b6000614637602c83612dad565b9150614642826145db565b604082019050919050565b600060208201905081810360008301526146668161462a565b9050919050565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b60006146c9602983612dad565b91506146d48261466d565b604082019050919050565b600060208201905081810360008301526146f8816146bc565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b600061475b602483612dad565b9150614766826146ff565b604082019050919050565b6000602082019050818103600083015261478a8161474e565b9050919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b60006147c7601f83612dad565b91506147d282614791565b602082019050919050565b600060208201905081810360008301526147f6816147ba565b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b6000614859603283612dad565b9150614864826147fd565b604082019050919050565b600060208201905081810360008301526148888161484c565b9050919050565b600081519050919050565b600082825260208201905092915050565b60006148b68261488f565b6148c0818561489a565b93506148d0818560208601612dbe565b6148d981612de8565b840191505092915050565b60006080820190506148f96000830187612ee9565b6149066020830186612ee9565b6149136040830185612fac565b818103606083015261492581846148ab565b905095945050505050565b60008151905061493f81612d13565b92915050565b60006020828403121561495b5761495a612cdd565b5b600061496984828501614930565b91505092915050565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b60006149a8602083612dad565b91506149b382614972565b602082019050919050565b600060208201905081810360008301526149d78161499b565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b6000614a14601c83612dad565b9150614a1f826149de565b602082019050919050565b60006020820190508181036000830152614a4381614a07565b905091905056fea2646970667358221220484d31f5263ff5337b11420b6c3f3442fb8ba267530897e31bed5bb09bb7fc2764736f6c63430008140033000000000000000000000000df4c8e35485260ab5d9b67bb781a130a263582330000000000000000000000009371e8e6333e21be3c0c6f82743d072d1ac559aa

Deployed Bytecode

0x60806040526004361061021a5760003560e01c80636817c76c11610123578063b88d4fde116100ab578063d25933291161006f578063d2593329146107b2578063d5abeb01146107c9578063e268e4d3146107f4578063e985e9c51461081d578063f4a0a5281461085a5761021a565b8063b88d4fde146106e1578063c38c23b91461070a578063c87b56dd14610735578063c951c5e914610772578063cf323460146107895761021a565b806395d89b41116100f257806395d89b411461061b578063a0712d6814610646578063a22cb46514610662578063a23d3c351461068b578063b1a6676e146106b65761021a565b80636817c76c1461055d57806370a08231146105885780638da5cb5b146105c55780638ea5220f146105f05761021a565b80633ccfd60b116101a6578063453c231011610175578063453c2310146104665780634f6ccce7146104915780636352211e146104ce5780636673c4c21461050b5780636790a9de146105345761021a565b80633ccfd60b146103d257806342842e0e146103e957806342966c681461041257806344c1e2a41461043b5761021a565b806313af4035116101ed57806313af4035146102ed57806318160ddd1461031657806322f3e2d41461034157806323b872dd1461036c5780632f745c59146103955761021a565b806301ffc9a71461021f57806306fdde031461025c578063081812fc14610287578063095ea7b3146102c4575b600080fd5b34801561022b57600080fd5b5061024660048036038101906102419190612d3f565b610883565b6040516102539190612d87565b60405180910390f35b34801561026857600080fd5b506102716108fd565b60405161027e9190612e32565b60405180910390f35b34801561029357600080fd5b506102ae60048036038101906102a99190612e8a565b61098f565b6040516102bb9190612ef8565b60405180910390f35b3480156102d057600080fd5b506102eb60048036038101906102e69190612f3f565b610a14565b005b3480156102f957600080fd5b50610314600480360381019061030f9190612f7f565b610b2b565b005b34801561032257600080fd5b5061032b610bff565b6040516103389190612fbb565b60405180910390f35b34801561034d57600080fd5b50610356610c18565b6040516103639190612d87565b60405180910390f35b34801561037857600080fd5b50610393600480360381019061038e9190612fd6565b610c2b565b005b3480156103a157600080fd5b506103bc60048036038101906103b79190612f3f565b610c8b565b6040516103c99190612fbb565b60405180910390f35b3480156103de57600080fd5b506103e7610dce565b005b3480156103f557600080fd5b50610410600480360381019061040b9190612fd6565b611027565b005b34801561041e57600080fd5b5061043960048036038101906104349190612e8a565b611047565b005b34801561044757600080fd5b506104506110eb565b60405161045d9190612fbb565b60405180910390f35b34801561047257600080fd5b5061047b6110f1565b6040516104889190612fbb565b60405180910390f35b34801561049d57600080fd5b506104b860048036038101906104b39190612e8a565b6110f7565b6040516104c59190612fbb565b60405180910390f35b3480156104da57600080fd5b506104f560048036038101906104f09190612e8a565b611148565b6040516105029190612ef8565b60405180910390f35b34801561051757600080fd5b50610532600480360381019061052d91906130e4565b611204565b005b34801561054057600080fd5b5061055b600480360381019061055691906131bb565b611497565b005b34801561056957600080fd5b50610572611551565b60405161057f9190612fbb565b60405180910390f35b34801561059457600080fd5b506105af60048036038101906105aa9190612f7f565b611557565b6040516105bc9190612fbb565b60405180910390f35b3480156105d157600080fd5b506105da611671565b6040516105e79190612ef8565b60405180910390f35b3480156105fc57600080fd5b50610605611697565b604051610612919061325d565b60405180910390f35b34801561062757600080fd5b506106306116bd565b60405161063d9190612e32565b60405180910390f35b610660600480360381019061065b9190612e8a565b61174f565b005b34801561066e57600080fd5b50610689600480360381019061068491906132a4565b61198a565b005b34801561069757600080fd5b506106a0611b0a565b6040516106ad919061325d565b60405180910390f35b3480156106c257600080fd5b506106cb611b30565b6040516106d89190612d87565b60405180910390f35b3480156106ed57600080fd5b5061070860048036038101906107039190613414565b611b43565b005b34801561071657600080fd5b5061071f611ba5565b60405161072c9190612fbb565b60405180910390f35b34801561074157600080fd5b5061075c60048036038101906107579190612e8a565b611bab565b6040516107699190612e32565b60405180910390f35b34801561077e57600080fd5b50610787611c2a565b005b34801561079557600080fd5b506107b060048036038101906107ab9190613497565b611ce6565b005b3480156107be57600080fd5b506107c7611ddf565b005b3480156107d557600080fd5b506107de611e9b565b6040516107eb9190612fbb565b60405180910390f35b34801561080057600080fd5b5061081b60048036038101906108169190612e8a565b611ea1565b005b34801561082957600080fd5b50610844600480360381019061083f91906134e4565b611f3b565b6040516108519190612d87565b60405180910390f35b34801561086657600080fd5b50610881600480360381019061087c9190612e8a565b611fcf565b005b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806108f657506108f582612069565b5b9050919050565b60606000805461090c90613553565b80601f016020809104026020016040519081016040528092919081815260200182805461093890613553565b80156109855780601f1061095a57610100808354040283529160200191610985565b820191906000526020600020905b81548152906001019060200180831161096857829003601f168201915b5050505050905090565b600061099a8261214b565b6109d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109d0906135f6565b60405180910390fd5b6003600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610a1f82611148565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610a8f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a8690613688565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610aae6121d3565b73ffffffffffffffffffffffffffffffffffffffff161480610add5750610adc81610ad76121d3565b611f3b565b5b610b1c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b139061371a565b60405180910390fd5b610b2683836121db565b505050565b601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610bbb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bb290613786565b60405180910390fd5b80601060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60006001600280549050610c1391906137d5565b905090565b600860009054906101000a900460ff1681565b610c3c610c366121d3565b82612294565b610c7b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c729061387b565b60405180910390fd5b610c86838383612372565b505050565b6000610c9683611557565b8210610cd7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cce9061390d565b60405180910390fd5b6000805b600280549050811015610d8c5760028181548110610cfc57610cfb61392d565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603610d7957838203610d6a578092505050610dc8565b8180610d759061395c565b9250505b8080610d849061395c565b915050610cdb565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dbf9061390d565b60405180910390fd5b92915050565b601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610e5e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e5590613786565b60405180910390fd5b60004790506000600a82610e7291906139d3565b905060008183610e8291906137d5565b90506000600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1683604051610ecc90613a35565b60006040518083038185875af1925050503d8060008114610f09576040519150601f19603f3d011682016040523d82523d6000602084013e610f0e565b606091505b5050905080610f52576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f4990613abc565b60405180910390fd5b6000600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1683604051610f9a90613a35565b60006040518083038185875af1925050503d8060008114610fd7576040519150601f19603f3d011682016040523d82523d6000602084013e610fdc565b606091505b5050905080611020576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161101790613b28565b60405180910390fd5b5050505050565b61104283838360405180602001604052806000815250611b43565b505050565b600860019054906101000a900460ff16611096576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161108d90613b94565b60405180910390fd5b6110a03382612294565b6110df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110d690613c00565b60405180910390fd5b6110e88161252a565b50565b600b5481565b600d5481565b60006002805490508210611140576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161113790613c92565b60405180910390fd5b819050919050565b6000806002838154811061115f5761115e61392d565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036111fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111f290613d24565b60405180910390fd5b80915050919050565b601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611294576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161128b90613786565b60405180910390fd5b8181905084849050146112dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112d390613db6565b60405180910390fd5b6000805b85859050811015611323578585828181106112fe576112fd61392d565b5b90506020020135826113109190613dd6565b91508061131c9061395c565b90506112e0565b50600b54811115611369576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161136090613e56565b60405180910390fd5b600a5481611375610bff565b61137f9190613dd6565b11156113c0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113b790613ec2565b60405180910390fd5b80600b60008282546113d291906137d5565b9250508190555080600c60008282546113eb9190613dd6565b925050819055506000600280549050905060005b8484905081101561148e5760005b8787838181106114205761141f61392d565b5b9050602002013581101561147c5761146b8686848181106114445761144361392d565b5b90506020020160208101906114599190612f7f565b84806114649061395c565b955061260c565b806114759061395c565b905061140d565b50806114879061395c565b90506113ff565b50505050505050565b601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611527576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161151e90613786565b60405180910390fd5b838360069182611538929190614099565b5081816007918261154a929190614099565b5050505050565b60095481565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036115c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115be906141db565b60405180910390fd5b6000805b60028054905081101561166757600281815481106115ec576115eb61392d565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff160361165657816116539061395c565b91505b806116609061395c565b90506115cb565b5080915050919050565b601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6060600180546116cc90613553565b80601f01602080910402602001604051908101604052809291908181526020018280546116f890613553565b80156117455780601f1061171a57610100808354040283529160200191611745565b820191906000526020600020905b81548152906001019060200180831161172857829003601f168201915b5050505050905090565b61175761262a565b600860009054906101000a900460ff166117a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161179d90614247565b60405180910390fd5b806009546117b49190614267565b3410156117f6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117ed906142f5565b60405180910390fd5b600b54600a5461180691906137d5565b8161180f610bff565b6118199190613dd6565b111561185a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161185190614361565b60405180910390fd5b600d5481601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546118a89190613dd6565b11156118e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118e0906143cd565b60405180910390fd5b6000600280549050905081601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546119429190613dd6565b9250508190555060005b8281101561197d5761196a3383806119639061395c565b945061260c565b80806119759061395c565b91505061194c565b5050611987612679565b50565b6119926121d3565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036119ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119f690614439565b60405180910390fd5b8060046000611a0c6121d3565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611ab96121d3565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611afe9190612d87565b60405180910390a35050565b600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600860019054906101000a900460ff1681565b611b54611b4e6121d3565b83612294565b611b93576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b8a9061387b565b60405180910390fd5b611b9f84848484612683565b50505050565b600c5481565b6060611bb68261214b565b611bf5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bec906144cb565b60405180910390fd5b6006611c00836126df565b6007604051602001611c14939291906145aa565b6040516020818303038152906040529050919050565b601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611cba576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cb190613786565b60405180910390fd5b600860019054906101000a900460ff1615600860016101000a81548160ff021916908315150217905550565b600860019054906101000a900460ff16611d35576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d2c90613b94565b60405180910390fd5b60005b82829050811015611dda57611d6633848484818110611d5a57611d5961392d565b5b90506020020135612294565b611da5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d9c90613c00565b60405180910390fd5b611dc7838383818110611dbb57611dba61392d565b5b9050602002013561252a565b8080611dd29061395c565b915050611d38565b505050565b601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611e6f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e6690613786565b60405180910390fd5b600860009054906101000a900460ff1615600860006101000a81548160ff021916908315150217905550565b600a5481565b601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611f31576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f2890613786565b60405180910390fd5b80600d8190555050565b6000600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461205f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161205690613786565b60405180910390fd5b8060098190555050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061213457507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806121445750612143826127ad565b5b9050919050565b6000600280549050821080156121cc5750600073ffffffffffffffffffffffffffffffffffffffff16600283815481106121885761218761392d565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614155b9050919050565b600033905090565b816003600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661224e83611148565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600061229f8261214b565b6122de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122d59061464d565b60405180910390fd5b60006122e983611148565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061235857508373ffffffffffffffffffffffffffffffffffffffff166123408461098f565b73ffffffffffffffffffffffffffffffffffffffff16145b8061236957506123688185611f3b565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661239282611148565b73ffffffffffffffffffffffffffffffffffffffff16146123e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123df906146df565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612457576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161244e90614771565b60405180910390fd5b612462838383612817565b61246d6000826121db565b81600282815481106124825761248161392d565b5b9060005260206000200160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b600061253582611148565b905061254381600084612817565b61254e6000836121db565b6000600283815481106125645761256361392d565b5b9060005260206000200160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555081600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b61262682826040518060200160405280600081525061281c565b5050565b60026005540361266f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612666906147dd565b60405180910390fd5b6002600581905550565b6001600581905550565b61268e848484612372565b61269a84848484612877565b6126d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126d09061486f565b60405180910390fd5b50505050565b6060600060016126ee846129f9565b01905060008167ffffffffffffffff81111561270d5761270c6132e9565b5b6040519080825280601f01601f19166020018201604052801561273f5781602001600182028036833780820191505090505b509050600082602001820190505b6001156127a2578080600190039150507f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a8581612796576127956139a4565b5b0494506000850361274d575b819350505050919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b505050565b6128268383612b4c565b6128336000848484612877565b612872576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128699061486f565b60405180910390fd5b505050565b6000808473ffffffffffffffffffffffffffffffffffffffff163b11156129ec578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026128bc6121d3565b8786866040518563ffffffff1660e01b81526004016128de94939291906148e4565b6020604051808303816000875af192505050801561291a57506040513d601f19601f820116820180604052508101906129179190614945565b60015b61299c573d806000811461294a576040519150601f19603f3d011682016040523d82523d6000602084013e61294f565b606091505b506000815103612994576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161298b9061486f565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506129f1565b600190505b949350505050565b600080600090507a184f03e93ff9f4daa797ed6e38ed64bf6a1f0100000000000000008310612a57577a184f03e93ff9f4daa797ed6e38ed64bf6a1f0100000000000000008381612a4d57612a4c6139a4565b5b0492506040810190505b6d04ee2d6d415b85acef81000000008310612a94576d04ee2d6d415b85acef81000000008381612a8a57612a896139a4565b5b0492506020810190505b662386f26fc100008310612ac357662386f26fc100008381612ab957612ab86139a4565b5b0492506010810190505b6305f5e1008310612aec576305f5e1008381612ae257612ae16139a4565b5b0492506008810190505b6127108310612b11576127108381612b0757612b066139a4565b5b0492506004810190505b60648310612b345760648381612b2a57612b296139a4565b5b0492506002810190505b600a8310612b43576001810190505b80915050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612bbb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bb2906149be565b60405180910390fd5b612bc48161214b565b15612c04576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bfb90614a2a565b60405180910390fd5b612c1060008383612817565b6002829080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612d1c81612ce7565b8114612d2757600080fd5b50565b600081359050612d3981612d13565b92915050565b600060208284031215612d5557612d54612cdd565b5b6000612d6384828501612d2a565b91505092915050565b60008115159050919050565b612d8181612d6c565b82525050565b6000602082019050612d9c6000830184612d78565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612ddc578082015181840152602081019050612dc1565b60008484015250505050565b6000601f19601f8301169050919050565b6000612e0482612da2565b612e0e8185612dad565b9350612e1e818560208601612dbe565b612e2781612de8565b840191505092915050565b60006020820190508181036000830152612e4c8184612df9565b905092915050565b6000819050919050565b612e6781612e54565b8114612e7257600080fd5b50565b600081359050612e8481612e5e565b92915050565b600060208284031215612ea057612e9f612cdd565b5b6000612eae84828501612e75565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612ee282612eb7565b9050919050565b612ef281612ed7565b82525050565b6000602082019050612f0d6000830184612ee9565b92915050565b612f1c81612ed7565b8114612f2757600080fd5b50565b600081359050612f3981612f13565b92915050565b60008060408385031215612f5657612f55612cdd565b5b6000612f6485828601612f2a565b9250506020612f7585828601612e75565b9150509250929050565b600060208284031215612f9557612f94612cdd565b5b6000612fa384828501612f2a565b91505092915050565b612fb581612e54565b82525050565b6000602082019050612fd06000830184612fac565b92915050565b600080600060608486031215612fef57612fee612cdd565b5b6000612ffd86828701612f2a565b935050602061300e86828701612f2a565b925050604061301f86828701612e75565b9150509250925092565b600080fd5b600080fd5b600080fd5b60008083601f84011261304e5761304d613029565b5b8235905067ffffffffffffffff81111561306b5761306a61302e565b5b60208301915083602082028301111561308757613086613033565b5b9250929050565b60008083601f8401126130a4576130a3613029565b5b8235905067ffffffffffffffff8111156130c1576130c061302e565b5b6020830191508360208202830111156130dd576130dc613033565b5b9250929050565b600080600080604085870312156130fe576130fd612cdd565b5b600085013567ffffffffffffffff81111561311c5761311b612ce2565b5b61312887828801613038565b9450945050602085013567ffffffffffffffff81111561314b5761314a612ce2565b5b6131578782880161308e565b925092505092959194509250565b60008083601f84011261317b5761317a613029565b5b8235905067ffffffffffffffff8111156131985761319761302e565b5b6020830191508360018202830111156131b4576131b3613033565b5b9250929050565b600080600080604085870312156131d5576131d4612cdd565b5b600085013567ffffffffffffffff8111156131f3576131f2612ce2565b5b6131ff87828801613165565b9450945050602085013567ffffffffffffffff81111561322257613221612ce2565b5b61322e87828801613165565b925092505092959194509250565b600061324782612eb7565b9050919050565b6132578161323c565b82525050565b6000602082019050613272600083018461324e565b92915050565b61328181612d6c565b811461328c57600080fd5b50565b60008135905061329e81613278565b92915050565b600080604083850312156132bb576132ba612cdd565b5b60006132c985828601612f2a565b92505060206132da8582860161328f565b9150509250929050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61332182612de8565b810181811067ffffffffffffffff821117156133405761333f6132e9565b5b80604052505050565b6000613353612cd3565b905061335f8282613318565b919050565b600067ffffffffffffffff82111561337f5761337e6132e9565b5b61338882612de8565b9050602081019050919050565b82818337600083830152505050565b60006133b76133b284613364565b613349565b9050828152602081018484840111156133d3576133d26132e4565b5b6133de848285613395565b509392505050565b600082601f8301126133fb576133fa613029565b5b813561340b8482602086016133a4565b91505092915050565b6000806000806080858703121561342e5761342d612cdd565b5b600061343c87828801612f2a565b945050602061344d87828801612f2a565b935050604061345e87828801612e75565b925050606085013567ffffffffffffffff81111561347f5761347e612ce2565b5b61348b878288016133e6565b91505092959194509250565b600080602083850312156134ae576134ad612cdd565b5b600083013567ffffffffffffffff8111156134cc576134cb612ce2565b5b6134d885828601613038565b92509250509250929050565b600080604083850312156134fb576134fa612cdd565b5b600061350985828601612f2a565b925050602061351a85828601612f2a565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061356b57607f821691505b60208210810361357e5761357d613524565b5b50919050565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b60006135e0602c83612dad565b91506135eb82613584565b604082019050919050565b6000602082019050818103600083015261360f816135d3565b9050919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b6000613672602183612dad565b915061367d82613616565b604082019050919050565b600060208201905081810360008301526136a181613665565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b6000613704603883612dad565b915061370f826136a8565b604082019050919050565b60006020820190508181036000830152613733816136f7565b9050919050565b7f43616c6c6572206973206e6f7420746865206f776e6572000000000000000000600082015250565b6000613770601783612dad565b915061377b8261373a565b602082019050919050565b6000602082019050818103600083015261379f81613763565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006137e082612e54565b91506137eb83612e54565b9250828203905081811115613803576138026137a6565b5b92915050565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b6000613865603183612dad565b915061387082613809565b604082019050919050565b6000602082019050818103600083015261389481613858565b9050919050565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b60006138f7602b83612dad565b91506139028261389b565b604082019050919050565b60006020820190508181036000830152613926816138ea565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600061396782612e54565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203613999576139986137a6565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006139de82612e54565b91506139e983612e54565b9250826139f9576139f86139a4565b5b828204905092915050565b600081905092915050565b50565b6000613a1f600083613a04565b9150613a2a82613a0f565b600082019050919050565b6000613a4082613a12565b9150819050919050565b7f4661696c656420746f2073656e6420457468657220746f20646576656c6f706560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b6000613aa6602183612dad565b9150613ab182613a4a565b604082019050919050565b60006020820190508181036000830152613ad581613a99565b9050919050565b7f4661696c656420746f2073656e6420457468657220746f20666f756e64657200600082015250565b6000613b12601f83612dad565b9150613b1d82613adc565b602082019050919050565b60006020820190508181036000830152613b4181613b05565b9050919050565b7f4275726e206973206e6f74206163746976650000000000000000000000000000600082015250565b6000613b7e601283612dad565b9150613b8982613b48565b602082019050919050565b60006020820190508181036000830152613bad81613b71565b9050919050565b7f43616c6c6572206973206e6f74206f776e6572206e6f7220617070726f766564600082015250565b6000613bea602083612dad565b9150613bf582613bb4565b602082019050919050565b60006020820190508181036000830152613c1981613bdd565b9050919050565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b6000613c7c602c83612dad565b9150613c8782613c20565b604082019050919050565b60006020820190508181036000830152613cab81613c6f565b9050919050565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b6000613d0e602983612dad565b9150613d1982613cb2565b604082019050919050565b60006020820190508181036000830152613d3d81613d01565b9050919050565b7f5175616e74697479206c656e677468206973206e6f7420657175616c20746f2060008201527f726563697069656e747300000000000000000000000000000000000000000000602082015250565b6000613da0602a83612dad565b9150613dab82613d44565b604082019050919050565b60006020820190508181036000830152613dcf81613d93565b9050919050565b6000613de182612e54565b9150613dec83612e54565b9250828201905080821115613e0457613e036137a6565b5b92915050565b7f457863656564732072657365727665642061697264726f7020746f6b656e7300600082015250565b6000613e40601f83612dad565b9150613e4b82613e0a565b602082019050919050565b60006020820190508181036000830152613e6f81613e33565b9050919050565b7f45786365656473206d617820737570706c790000000000000000000000000000600082015250565b6000613eac601283612dad565b9150613eb782613e76565b602082019050919050565b60006020820190508181036000830152613edb81613e9f565b9050919050565b600082905092915050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302613f4f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82613f12565b613f598683613f12565b95508019841693508086168417925050509392505050565b6000819050919050565b6000613f96613f91613f8c84612e54565b613f71565b612e54565b9050919050565b6000819050919050565b613fb083613f7b565b613fc4613fbc82613f9d565b848454613f1f565b825550505050565b600090565b613fd9613fcc565b613fe4818484613fa7565b505050565b5b8181101561400857613ffd600082613fd1565b600181019050613fea565b5050565b601f82111561404d5761401e81613eed565b61402784613f02565b81016020851015614036578190505b61404a61404285613f02565b830182613fe9565b50505b505050565b600082821c905092915050565b600061407060001984600802614052565b1980831691505092915050565b6000614089838361405f565b9150826002028217905092915050565b6140a38383613ee2565b67ffffffffffffffff8111156140bc576140bb6132e9565b5b6140c68254613553565b6140d182828561400c565b6000601f83116001811461410057600084156140ee578287013590505b6140f8858261407d565b865550614160565b601f19841661410e86613eed565b60005b8281101561413657848901358255600182019150602085019450602081019050614111565b86831015614153578489013561414f601f89168261405f565b8355505b6001600288020188555050505b50505050505050565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b60006141c5602a83612dad565b91506141d082614169565b604082019050919050565b600060208201905081810360008301526141f4816141b8565b9050919050565b7f4d696e74206973206e6f74206163746976650000000000000000000000000000600082015250565b6000614231601283612dad565b915061423c826141fb565b602082019050919050565b6000602082019050818103600083015261426081614224565b9050919050565b600061427282612e54565b915061427d83612e54565b925082820261428b81612e54565b915082820484148315176142a2576142a16137a6565b5b5092915050565b7f45746865722073656e74206973206e6f7420636f727265637400000000000000600082015250565b60006142df601983612dad565b91506142ea826142a9565b602082019050919050565b6000602082019050818103600083015261430e816142d2565b9050919050565b7f4e6f7420656e6f75676820746f6b656e73206c65667420746f206d696e740000600082015250565b600061434b601e83612dad565b915061435682614315565b602082019050919050565b6000602082019050818103600083015261437a8161433e565b9050919050565b7f4d61782034206d696e74207065722077616c6c65740000000000000000000000600082015250565b60006143b7601583612dad565b91506143c282614381565b602082019050919050565b600060208201905081810360008301526143e6816143aa565b9050919050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b6000614423601983612dad565b915061442e826143ed565b602082019050919050565b6000602082019050818103600083015261445281614416565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b60006144b5602f83612dad565b91506144c082614459565b604082019050919050565b600060208201905081810360008301526144e4816144a8565b9050919050565b600081905092915050565b6000815461450381613553565b61450d81866144eb565b94506001821660008114614528576001811461453d57614570565b60ff1983168652811515820286019350614570565b61454685613eed565b60005b8381101561456857815481890152600182019150602081019050614549565b838801955050505b50505092915050565b600061458482612da2565b61458e81856144eb565b935061459e818560208601612dbe565b80840191505092915050565b60006145b682866144f6565b91506145c28285614579565b91506145ce82846144f6565b9150819050949350505050565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b6000614637602c83612dad565b9150614642826145db565b604082019050919050565b600060208201905081810360008301526146668161462a565b9050919050565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b60006146c9602983612dad565b91506146d48261466d565b604082019050919050565b600060208201905081810360008301526146f8816146bc565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b600061475b602483612dad565b9150614766826146ff565b604082019050919050565b6000602082019050818103600083015261478a8161474e565b9050919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b60006147c7601f83612dad565b91506147d282614791565b602082019050919050565b600060208201905081810360008301526147f6816147ba565b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b6000614859603283612dad565b9150614864826147fd565b604082019050919050565b600060208201905081810360008301526148888161484c565b9050919050565b600081519050919050565b600082825260208201905092915050565b60006148b68261488f565b6148c0818561489a565b93506148d0818560208601612dbe565b6148d981612de8565b840191505092915050565b60006080820190506148f96000830187612ee9565b6149066020830186612ee9565b6149136040830185612fac565b818103606083015261492581846148ab565b905095945050505050565b60008151905061493f81612d13565b92915050565b60006020828403121561495b5761495a612cdd565b5b600061496984828501614930565b91505092915050565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b60006149a8602083612dad565b91506149b382614972565b602082019050919050565b600060208201905081810360008301526149d78161499b565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b6000614a14601c83612dad565b9150614a1f826149de565b602082019050919050565b60006020820190508181036000830152614a4381614a07565b905091905056fea2646970667358221220484d31f5263ff5337b11420b6c3f3442fb8ba267530897e31bed5bb09bb7fc2764736f6c63430008140033

Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)

000000000000000000000000df4c8e35485260ab5d9b67bb781a130a263582330000000000000000000000009371e8e6333e21be3c0c6f82743d072d1ac559aa

-----Decoded View---------------
Arg [0] : _devWallet (address): 0xDf4C8E35485260aB5d9B67Bb781A130A26358233
Arg [1] : _founderWallet (address): 0x9371e8E6333e21Be3C0C6f82743D072D1ac559AA

-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 000000000000000000000000df4c8e35485260ab5d9b67bb781a130a26358233
Arg [1] : 0000000000000000000000009371e8e6333e21be3c0c6f82743d072d1ac559aa


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.