ETH Price: $2,690.83 (-1.98%)
Gas: 0.8 Gwei

Token

JINGOU PASS (JINGOUPASS)
 

Overview

Max Total Supply

0 JINGOUPASS

Holders

230

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
*橘子味话梅糖.eth
Balance
1 JINGOUPASS
0x11163549ccbf1936e6a5ddded7b7fd4f574d2376
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:
JINGOU

Compiler Version
v0.8.13+commit.abaa5c0e

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 13 : JINGOUPASS.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.13;

import "@openzeppelin/contracts/token/ERC721/ERC721.sol";
import "@openzeppelin/contracts/token/ERC721/IERC721Receiver.sol";
import "@openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol";
import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol";
import "@openzeppelin/contracts/utils/Address.sol";
import "@openzeppelin/contracts/utils/Counters.sol";
import "@openzeppelin/contracts/utils/introspection/IERC165.sol";
import "@openzeppelin/contracts/utils/Strings.sol";
import "@openzeppelin/contracts/utils/Context.sol";

import "@openzeppelin/contracts/access/Ownable.sol";

error MintPriceNotPaid();

/*
                    _       _          _             _              _      _              
                    /\ \    /\ \       /\ \     _    /\ \           /\ \   /\_\            
                    \ \ \   \ \ \     /  \ \   /\_\ /  \ \         /  \ \ / / /         _  
                    /\ \_\  /\ \_\   / /\ \ \_/ / // /\ \_\       / /\ \ \\ \ \__      /\_\
                / /\/_/ / /\/_/  / / /\ \___/ // / /\/_/      / / /\ \ \\ \___\    / / /
        _       / / /   / / /    / / /  \/____// / / ______   / / /  \ \_\\__  /   / / / 
        /\ \    / / /   / / /    / / /    / / // / / /\_____\ / / /   / / // / /   / / /  
        \ \_\  / / /   / / /    / / /    / / // / /  \/____ // / /   / / // / /   / / /   
        / / /_/ / /___/ / /__  / / /    / / // / /_____/ / // / /___/ / // / /___/ / /    
        / / /__\/ //\__\/_/___\/ / /    / / // / /______\/ // / /____\/ // / /____\/ /     
        \/_______/ \/_________/\/_/     \/_/ \/___________/ \/_________/ \/_________/      
                                                                                                                                                                                
*/ 
/// @title The Best Web3 Automation Tool!
/// @author wanfeng
/// @notice Welcome and Congrats on joining JINGOU!

contract JINGOU is ERC721, Ownable {

    using Strings for uint;
    using Counters for Counters.Counter;

    Counters.Counter private _tokenIdCounter;

    string private _tokenURI;
    string private _contractURI;
    uint256 public maxSupply = 888;
    uint256 public tokenPrice = 0.1 ether;
    uint256 public whiteTokenPrice = 0.07 ether;
    uint256 public renewalPrice = 0.05 ether;

    bool public privateSaleActive = false;
    bool public saleActive = false;
    bool public transfersEnabled = true;
    bool public renewalsEnabled = true;
    bool public assertRenewed = true;

    bytes32 public merkleRoot = 0x9a69311af09a78ada3607ae145e6d8e7580165e9edbd7224bf33dac5935ea9cb;

    mapping(address => bool) public whitelistClaimed;

    // mapping(address => bool) public whitelistedAddresses;
    mapping(uint => uint256) public expiryTime;

    event tokenMinted(uint256 tokenId, uint256 _expiryTime);
    event tokenRenew(uint256 tokenId, uint256 _expiryTime);

    constructor(string memory tokenURI_, string memory contractURI_) ERC721("JINGOU PASS", "JINGOUPASS") {
        _tokenURI = tokenURI_;
        _contractURI = contractURI_;
    }

    modifier noHaxxor() {
        require(msg.sender == tx.origin, "Haxxor access blocked");
        _;
    }

    function publicMint() external payable noHaxxor {
        uint256 tokenIndex = _tokenIdCounter.current() + 1;

        require(saleActive, "Sale is not active.");
        if (msg.value < tokenPrice) { revert MintPriceNotPaid(); }
        require(tokenIndex < maxSupply, "Minting this token would exceed total supply.");

        _tokenIdCounter.increment();
        _safeMint(msg.sender, tokenIndex);
        expiryTime[tokenIndex] = block.timestamp + 30 days;
        emit tokenMinted(tokenIndex, expiryTime[tokenIndex]);
    }

    function whitelistMint(bytes32[] calldata _merkleProof) public payable noHaxxor {
        uint256 tokenIndex = _tokenIdCounter.current() + 1;

        require(privateSaleActive, "Private sale is currently not active.");
        require(!whitelistClaimed[msg.sender], "Address already claimed");
        bytes32 leaf = keccak256(abi.encodePacked(msg.sender));
        require(
            MerkleProof.verify(_merkleProof, merkleRoot, leaf),
            "Invalid Merkle Proof."
        );
        // require(whitelistedAddresses[msg.sender], "Wallet is not whitelisted.");
        if (msg.value < whiteTokenPrice) { revert MintPriceNotPaid(); }
        require(tokenIndex < maxSupply, "Minting this token would exceed total supply.");

        whitelistClaimed[msg.sender] = true;
        _tokenIdCounter.increment();
        _safeMint(msg.sender, tokenIndex);
        expiryTime[tokenIndex] = block.timestamp + 30 days;
        
        emit tokenMinted(tokenIndex, expiryTime[tokenIndex]);
    }

    function renewToken(uint _tokenId) public payable noHaxxor {
        require(msg.value == renewalPrice, "Incorrect amount of ether sent.");
        require(_exists(_tokenId), "Token does not exist.");
        require(renewalsEnabled, "Renewals are currently disabled");

        uint256 _currentexpiryTime = expiryTime[_tokenId];

        if (block.timestamp > _currentexpiryTime) {
            expiryTime[_tokenId] = block.timestamp + 30 days;
        } else {
            expiryTime[_tokenId] += 30 days;
        }
        emit tokenRenew(_tokenId, expiryTime[_tokenId]);
    }

    //Admin functions

    function setmerkleRoot(bytes32 _root) external onlyOwner {
        merkleRoot = _root;
    }

    function ownerOnlyMint(address _receiver) public onlyOwner {
        uint tokenIndex = _tokenIdCounter.current() + 1;

        require(_receiver != address(0), "Receiver cannot be zero address.");
        require(tokenIndex <= maxSupply, "Minting this token would exceed total supply.");

        if (msg.sender != _receiver) {
            require(balanceOf(_receiver) == 0, "Individual already owns a token.");
        }

        _tokenIdCounter.increment();

        _safeMint(_receiver, tokenIndex);
        expiryTime[tokenIndex] = block.timestamp + 30 days;
        emit tokenMinted(tokenIndex, expiryTime[tokenIndex]);

    }

    function ownerBatchMint(address[] calldata _addresses) public onlyOwner {
        uint256 quantity = _addresses.length;
        for (uint256 i=0; i < quantity;) {
            ownerOnlyMint(_addresses[i]);
            unchecked {++i;}
        }
    }

    function ownerRenewToken(uint _tokenId) external onlyOwner {
        require(_exists(_tokenId), "Token does not exist.");
        
        uint _currentexpiryTime = expiryTime[_tokenId];

        if (block.timestamp > _currentexpiryTime) {
            expiryTime[_tokenId] = block.timestamp + 30 days;
        } else {
            expiryTime[_tokenId] += 30 days;
        }
        emit tokenRenew(_tokenId, expiryTime[_tokenId]);
    }

    function ownerBatchRenewToken(uint[] calldata _tokenIds) external onlyOwner {
        uint256 _tokens_length = _tokenIds.length;
        uint256 i = 0;
        for (i; i < _tokens_length;) {
            this.ownerRenewToken(_tokenIds[i]);
            unchecked {++i;}
        }
    }

    function changeMintPrice(uint256 _changedMintPrice) external onlyOwner {
        require(tokenPrice != _changedMintPrice, "Price did not change.");
        tokenPrice = _changedMintPrice;
    }

    function changeWhiteMintPrice(uint256 _changedWhiteMintPrice) external onlyOwner {
        require(whiteTokenPrice != _changedWhiteMintPrice, "Price did not change.");
        whiteTokenPrice = _changedWhiteMintPrice;
    }

    function setRenewalsActive(bool _state) external onlyOwner {
        renewalsEnabled = _state;
    }

    function setRenewalsAssert(bool _state) external onlyOwner {
        assertRenewed = _state;
    }

    function changeRenewalPrice(uint256 _changedRenewalPrice) external onlyOwner {
        require(renewalPrice != _changedRenewalPrice, "Price did not change.");
        renewalPrice = _changedRenewalPrice;
    }

    function addTokenSupply(uint256 _newTokens) external onlyOwner {
        maxSupply += _newTokens;
    }

    function removeTokens(uint256 _numTokens) external onlyOwner {
        require(maxSupply - _numTokens >= currentSupply(), "Supply cannot fall below minted tokens.");
        maxSupply -= _numTokens;
    }

    function setTokenURI(string calldata tokenURI_) external onlyOwner {
        _tokenURI = tokenURI_;
    }

    function setContractURI(string calldata contractURI_) external onlyOwner {
        _contractURI = contractURI_;
    }

    function withdrawBalance() public onlyOwner {
		payable(msg.sender).transfer(address(this).balance);
	}

    function startSale() public onlyOwner {
        saleActive = !saleActive;
    }

    function startPrivateSale() public onlyOwner {
        privateSaleActive = !privateSaleActive;
    }

    function activateTransfers() public onlyOwner {
        transfersEnabled = !transfersEnabled;
    }

    //View Functions

    function authenticateUser(address _user, uint256 _tokenId) public view returns (bool) {
        require(_exists(_tokenId), "Token does not exist.");
        require(expiryTime[_tokenId] > block.timestamp || !renewalsEnabled, "Token has expired. Please renew your token!");

        return _user == ownerOf(_tokenId) ? true : false;
    }

    function authenticateUser(uint256 _tokenId) public view returns (bool) {
        require(_exists(_tokenId), "Token does not exist.");
        require(expiryTime[_tokenId] > block.timestamp  || !renewalsEnabled, "Token has expired. Please renew your token!");

        return msg.sender == ownerOf(_tokenId) ? true : false;
    }

    function currentSupply() public view returns (uint) {
        return _tokenIdCounter.current();
    }

    function tokenURI(uint _tokenId) public view override returns (string memory) {
        require(_exists(_tokenId), "Token does not exist.");
        return string(abi.encodePacked(_tokenURI));
    }

    function contractURI() public view returns (string memory) {
        return _contractURI;
    }

    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public virtual override {
        require(transfersEnabled, "Transfers are disabled");
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");
        require(expiryTime[tokenId] > block.timestamp || !renewalsEnabled || !assertRenewed, "Token is expired.");
        _safeTransfer(from, to, tokenId, _data);
    }

    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        require(transfersEnabled, "Transfers are disabled");
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");
        require(expiryTime[tokenId] > block.timestamp || !renewalsEnabled || !assertRenewed, "Token is expired.");
        _transfer(from, to, tokenId);
    }

    receive() external payable {}
}

File 2 of 13 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol)

pragma solidity ^0.8.0;

import "../utils/Context.sol";

/**
 * @dev Contract module which provides a basic access control mechanism, where
 * there is an account (an owner) that can be granted exclusive access to
 * specific functions.
 *
 * By default, the owner account will be the one that deploys the contract. This
 * can later be changed with {transferOwnership}.
 *
 * This module is used through inheritance. It will make available the modifier
 * `onlyOwner`, which can be applied to your functions to restrict their use to
 * the owner.
 */
abstract contract Ownable is Context {
    address private _owner;

    event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        _transferOwnership(_msgSender());
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

    /**
     * @dev Returns the address of the current owner.
     */
    function owner() public view virtual returns (address) {
        return _owner;
    }

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
    }

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        _transferOwnership(address(0));
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public virtual onlyOwner {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        _transferOwnership(newOwner);
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Internal function without access restriction.
     */
    function _transferOwnership(address newOwner) internal virtual {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

File 3 of 13 : Context.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

/**
 * @dev Provides information about the current execution context, including the
 * sender of the transaction and its data. While these are generally available
 * via msg.sender and msg.data, they should not be accessed in such a direct
 * manner, since when dealing with meta-transactions the account sending and
 * paying for execution may not be the actual sender (as far as an application
 * is concerned).
 *
 * This contract is only required for intermediate, library-like contracts.
 */
abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

    function _msgData() internal view virtual returns (bytes calldata) {
        return msg.data;
    }
}

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

pragma solidity ^0.8.0;

/**
 * @dev String operations.
 */
library Strings {
    bytes16 private constant _HEX_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) {
        // Inspired by OraclizeAPI's implementation - MIT licence
        // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol

        if (value == 0) {
            return "0";
        }
        uint256 temp = value;
        uint256 digits;
        while (temp != 0) {
            digits++;
            temp /= 10;
        }
        bytes memory buffer = new bytes(digits);
        while (value != 0) {
            digits -= 1;
            buffer[digits] = bytes1(uint8(48 + uint256(value % 10)));
            value /= 10;
        }
        return string(buffer);
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.
     */
    function toHexString(uint256 value) internal pure returns (string memory) {
        if (value == 0) {
            return "0x00";
        }
        uint256 temp = value;
        uint256 length = 0;
        while (temp != 0) {
            length++;
            temp >>= 8;
        }
        return toHexString(value, length);
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length.
     */
    function toHexString(uint256 value, uint256 length) internal pure returns (string memory) {
        bytes memory buffer = new bytes(2 * length + 2);
        buffer[0] = "0";
        buffer[1] = "x";
        for (uint256 i = 2 * length + 1; i > 1; --i) {
            buffer[i] = _HEX_SYMBOLS[value & 0xf];
            value >>= 4;
        }
        require(value == 0, "Strings: hex length insufficient");
        return string(buffer);
    }

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

File 5 of 13 : 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 6 of 13 : Counters.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Counters.sol)

pragma solidity ^0.8.0;

/**
 * @title Counters
 * @author Matt Condon (@shrugs)
 * @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number
 * of elements in a mapping, issuing ERC721 ids, or counting request ids.
 *
 * Include with `using Counters for Counters.Counter;`
 */
library Counters {
    struct Counter {
        // This variable should never be directly accessed by users of the library: interactions must be restricted to
        // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add
        // this feature: see https://github.com/ethereum/solidity/issues/4637
        uint256 _value; // default: 0
    }

    function current(Counter storage counter) internal view returns (uint256) {
        return counter._value;
    }

    function increment(Counter storage counter) internal {
        unchecked {
            counter._value += 1;
        }
    }

    function decrement(Counter storage counter) internal {
        uint256 value = counter._value;
        require(value > 0, "Counter: decrement overflow");
        unchecked {
            counter._value = value - 1;
        }
    }

    function reset(Counter storage counter) internal {
        counter._value = 0;
    }
}

File 7 of 13 : Address.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.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
     * ====
     *
     * [IMPORTANT]
     * ====
     * You shouldn't rely on `isContract` to protect against flash loan attacks!
     *
     * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
     * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
     * constructor.
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize/address.code.length, which returns 0
        // for contracts in construction, since the code is only stored at the end
        // of the constructor execution.

        return account.code.length > 0;
    }

    /**
     * @dev Replacement for Solidity's `transfer`: sends `amount` wei to
     * `recipient`, forwarding all available gas and reverting on errors.
     *
     * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
     * of certain opcodes, possibly making contracts go over the 2300 gas limit
     * imposed by `transfer`, making them unable to receive funds via
     * `transfer`. {sendValue} removes this limitation.
     *
     * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].
     *
     * IMPORTANT: because control is transferred to `recipient`, care must be
     * taken to not create reentrancy vulnerabilities. Consider using
     * {ReentrancyGuard} or the
     * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
     */
    function sendValue(address payable recipient, uint256 amount) internal {
        require(address(this).balance >= amount, "Address: insufficient balance");

        (bool success, ) = recipient.call{value: amount}("");
        require(success, "Address: unable to send value, recipient may have reverted");
    }

    /**
     * @dev Performs a Solidity function call using a low level `call`. A
     * plain `call` is an unsafe replacement for a function call: use this
     * function instead.
     *
     * If `target` reverts with a revert reason, it is bubbled up by this
     * function (like regular Solidity function calls).
     *
     * Returns the raw returned data. To convert to the expected return value,
     * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
     *
     * Requirements:
     *
     * - `target` must be a contract.
     * - calling `target` with `data` must not revert.
     *
     * _Available since v3.1._
     */
    function functionCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionCall(target, data, "Address: low-level call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
     * `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, 0, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but also transferring `value` wei to `target`.
     *
     * Requirements:
     *
     * - the calling contract must have an ETH balance of at least `value`.
     * - the called Solidity function must be `payable`.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, value, "Address: low-level call with value failed");
    }

    /**
     * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
     * with `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(address(this).balance >= value, "Address: insufficient balance for call");
        require(isContract(target), "Address: call to non-contract");

        (bool success, bytes memory returndata) = target.call{value: value}(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
        return functionStaticCall(target, data, "Address: low-level static call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal view returns (bytes memory) {
        require(isContract(target), "Address: static call to non-contract");

        (bool success, bytes memory returndata) = target.staticcall(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionDelegateCall(target, data, "Address: low-level delegate call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(isContract(target), "Address: delegate call to non-contract");

        (bool success, bytes memory returndata) = target.delegatecall(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the
     * revert reason using the provided one.
     *
     * _Available since v4.3._
     */
    function verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal pure returns (bytes memory) {
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly
                /// @solidity memory-safe-assembly
                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

File 8 of 13 : MerkleProof.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (utils/cryptography/MerkleProof.sol)

pragma solidity ^0.8.0;

/**
 * @dev These functions deal with verification of Merkle Tree proofs.
 *
 * The proofs can be generated using the JavaScript library
 * https://github.com/miguelmota/merkletreejs[merkletreejs].
 * Note: the hashing algorithm should be keccak256 and pair sorting should be enabled.
 *
 * See `test/utils/cryptography/MerkleProof.test.js` for some examples.
 *
 * WARNING: You should avoid using leaf values that are 64 bytes long prior to
 * hashing, or use a hash function other than keccak256 for hashing leaves.
 * This is because the concatenation of a sorted pair of internal nodes in
 * the merkle tree could be reinterpreted as a leaf value.
 */
library MerkleProof {
    /**
     * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree
     * defined by `root`. For this, a `proof` must be provided, containing
     * sibling hashes on the branch from the leaf to the root of the tree. Each
     * pair of leaves and each pair of pre-images are assumed to be sorted.
     */
    function verify(
        bytes32[] memory proof,
        bytes32 root,
        bytes32 leaf
    ) internal pure returns (bool) {
        return processProof(proof, leaf) == root;
    }

    /**
     * @dev Calldata version of {verify}
     *
     * _Available since v4.7._
     */
    function verifyCalldata(
        bytes32[] calldata proof,
        bytes32 root,
        bytes32 leaf
    ) internal pure returns (bool) {
        return processProofCalldata(proof, leaf) == root;
    }

    /**
     * @dev Returns the rebuilt hash obtained by traversing a Merkle tree up
     * from `leaf` using `proof`. A `proof` is valid if and only if the rebuilt
     * hash matches the root of the tree. When processing the proof, the pairs
     * of leafs & pre-images are assumed to be sorted.
     *
     * _Available since v4.4._
     */
    function processProof(bytes32[] memory proof, bytes32 leaf) internal pure returns (bytes32) {
        bytes32 computedHash = leaf;
        for (uint256 i = 0; i < proof.length; i++) {
            computedHash = _hashPair(computedHash, proof[i]);
        }
        return computedHash;
    }

    /**
     * @dev Calldata version of {processProof}
     *
     * _Available since v4.7._
     */
    function processProofCalldata(bytes32[] calldata proof, bytes32 leaf) internal pure returns (bytes32) {
        bytes32 computedHash = leaf;
        for (uint256 i = 0; i < proof.length; i++) {
            computedHash = _hashPair(computedHash, proof[i]);
        }
        return computedHash;
    }

    /**
     * @dev Returns true if the `leaves` can be proved to be a part of a Merkle tree defined by
     * `root`, according to `proof` and `proofFlags` as described in {processMultiProof}.
     *
     * _Available since v4.7._
     */
    function multiProofVerify(
        bytes32[] memory proof,
        bool[] memory proofFlags,
        bytes32 root,
        bytes32[] memory leaves
    ) internal pure returns (bool) {
        return processMultiProof(proof, proofFlags, leaves) == root;
    }

    /**
     * @dev Calldata version of {multiProofVerify}
     *
     * _Available since v4.7._
     */
    function multiProofVerifyCalldata(
        bytes32[] calldata proof,
        bool[] calldata proofFlags,
        bytes32 root,
        bytes32[] memory leaves
    ) internal pure returns (bool) {
        return processMultiProofCalldata(proof, proofFlags, leaves) == root;
    }

    /**
     * @dev Returns the root of a tree reconstructed from `leaves` and the sibling nodes in `proof`,
     * consuming from one or the other at each step according to the instructions given by
     * `proofFlags`.
     *
     * _Available since v4.7._
     */
    function processMultiProof(
        bytes32[] memory proof,
        bool[] memory proofFlags,
        bytes32[] memory leaves
    ) internal pure returns (bytes32 merkleRoot) {
        // This function rebuild the root hash by traversing the tree up from the leaves. The root is rebuilt by
        // consuming and producing values on a queue. The queue starts with the `leaves` array, then goes onto the
        // `hashes` array. At the end of the process, the last hash in the `hashes` array should contain the root of
        // the merkle tree.
        uint256 leavesLen = leaves.length;
        uint256 totalHashes = proofFlags.length;

        // Check proof validity.
        require(leavesLen + proof.length - 1 == totalHashes, "MerkleProof: invalid multiproof");

        // The xxxPos values are "pointers" to the next value to consume in each array. All accesses are done using
        // `xxx[xxxPos++]`, which return the current value and increment the pointer, thus mimicking a queue's "pop".
        bytes32[] memory hashes = new bytes32[](totalHashes);
        uint256 leafPos = 0;
        uint256 hashPos = 0;
        uint256 proofPos = 0;
        // At each step, we compute the next hash using two values:
        // - a value from the "main queue". If not all leaves have been consumed, we get the next leaf, otherwise we
        //   get the next hash.
        // - depending on the flag, either another value for the "main queue" (merging branches) or an element from the
        //   `proof` array.
        for (uint256 i = 0; i < totalHashes; i++) {
            bytes32 a = leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++];
            bytes32 b = proofFlags[i] ? leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++] : proof[proofPos++];
            hashes[i] = _hashPair(a, b);
        }

        if (totalHashes > 0) {
            return hashes[totalHashes - 1];
        } else if (leavesLen > 0) {
            return leaves[0];
        } else {
            return proof[0];
        }
    }

    /**
     * @dev Calldata version of {processMultiProof}
     *
     * _Available since v4.7._
     */
    function processMultiProofCalldata(
        bytes32[] calldata proof,
        bool[] calldata proofFlags,
        bytes32[] memory leaves
    ) internal pure returns (bytes32 merkleRoot) {
        // This function rebuild the root hash by traversing the tree up from the leaves. The root is rebuilt by
        // consuming and producing values on a queue. The queue starts with the `leaves` array, then goes onto the
        // `hashes` array. At the end of the process, the last hash in the `hashes` array should contain the root of
        // the merkle tree.
        uint256 leavesLen = leaves.length;
        uint256 totalHashes = proofFlags.length;

        // Check proof validity.
        require(leavesLen + proof.length - 1 == totalHashes, "MerkleProof: invalid multiproof");

        // The xxxPos values are "pointers" to the next value to consume in each array. All accesses are done using
        // `xxx[xxxPos++]`, which return the current value and increment the pointer, thus mimicking a queue's "pop".
        bytes32[] memory hashes = new bytes32[](totalHashes);
        uint256 leafPos = 0;
        uint256 hashPos = 0;
        uint256 proofPos = 0;
        // At each step, we compute the next hash using two values:
        // - a value from the "main queue". If not all leaves have been consumed, we get the next leaf, otherwise we
        //   get the next hash.
        // - depending on the flag, either another value for the "main queue" (merging branches) or an element from the
        //   `proof` array.
        for (uint256 i = 0; i < totalHashes; i++) {
            bytes32 a = leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++];
            bytes32 b = proofFlags[i] ? leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++] : proof[proofPos++];
            hashes[i] = _hashPair(a, b);
        }

        if (totalHashes > 0) {
            return hashes[totalHashes - 1];
        } else if (leavesLen > 0) {
            return leaves[0];
        } else {
            return proof[0];
        }
    }

    function _hashPair(bytes32 a, bytes32 b) private pure returns (bytes32) {
        return a < b ? _efficientHash(a, b) : _efficientHash(b, a);
    }

    function _efficientHash(bytes32 a, bytes32 b) private pure returns (bytes32 value) {
        /// @solidity memory-safe-assembly
        assembly {
            mstore(0x00, a)
            mstore(0x20, b)
            value := keccak256(0x00, 0x40)
        }
    }
}

File 9 of 13 : 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 10 of 13 : 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 11 of 13 : ERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (token/ERC721/ERC721.sol)

pragma solidity ^0.8.0;

import "./IERC721.sol";
import "./IERC721Receiver.sol";
import "./extensions/IERC721Metadata.sol";
import "../../utils/Address.sol";
import "../../utils/Context.sol";
import "../../utils/Strings.sol";
import "../../utils/introspection/ERC165.sol";

/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata extension, but not including the Enumerable extension, which is available separately as
 * {ERC721Enumerable}.
 */
contract ERC721 is Context, ERC165, IERC721, IERC721Metadata {
    using Address for address;
    using Strings for uint256;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to owner address
    mapping(uint256 => address) private _owners;

    // Mapping owner address to token count
    mapping(address => uint256) private _balances;

    // Mapping from token ID to approved address
    mapping(uint256 => address) private _tokenApprovals;

    // Mapping from owner to operator approvals
    mapping(address => mapping(address => bool)) private _operatorApprovals;

    /**
     * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) {
        return
            interfaceId == type(IERC721).interfaceId ||
            interfaceId == type(IERC721Metadata).interfaceId ||
            super.supportsInterface(interfaceId);
    }

    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner) public view virtual override returns (uint256) {
        require(owner != address(0), "ERC721: address zero is not a valid owner");
        return _balances[owner];
    }

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view virtual override returns (address) {
        address owner = _owners[tokenId];
        require(owner != address(0), "ERC721: invalid token ID");
        return owner;
    }

    /**
     * @dev See {IERC721Metadata-name}.
     */
    function name() public view virtual override returns (string memory) {
        return _name;
    }

    /**
     * @dev See {IERC721Metadata-symbol}.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        _requireMinted(tokenId);

        string memory baseURI = _baseURI();
        return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : "";
    }

    /**
     * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each
     * token will be the concatenation of the `baseURI` and the `tokenId`. Empty
     * by default, can be overridden in child contracts.
     */
    function _baseURI() internal view virtual returns (string memory) {
        return "";
    }

    /**
     * @dev See {IERC721-approve}.
     */
    function approve(address to, uint256 tokenId) public virtual override {
        address owner = ERC721.ownerOf(tokenId);
        require(to != owner, "ERC721: approval to current owner");

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

        _approve(to, tokenId);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view virtual override returns (address) {
        _requireMinted(tokenId);

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        _setApprovalForAll(_msgSender(), operator, approved);
    }

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

    /**
     * @dev See {IERC721-transferFrom}.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        //solhint-disable-next-line max-line-length
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: caller is not token 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: caller is not token owner nor approved");
        _safeTransfer(from, to, tokenId, data);
    }

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

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

    /**
     * @dev Returns whether `spender` is allowed to manage `tokenId`.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) {
        address owner = ERC721.ownerOf(tokenId);
        return (spender == owner || isApprovedForAll(owner, spender) || getApproved(tokenId) == spender);
    }

    /**
     * @dev Safely mints `tokenId` and transfers it to `to`.
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(address to, uint256 tokenId) internal virtual {
        _safeMint(to, tokenId, "");
    }

    /**
     * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is
     * forwarded in {IERC721Receiver-onERC721Received} to contract recipients.
     */
    function _safeMint(
        address to,
        uint256 tokenId,
        bytes memory data
    ) internal virtual {
        _mint(to, tokenId);
        require(
            _checkOnERC721Received(address(0), to, tokenId, data),
            "ERC721: transfer to non ERC721Receiver implementer"
        );
    }

    /**
     * @dev Mints `tokenId` and transfers it to `to`.
     *
     * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - `to` cannot be the zero address.
     *
     * Emits a {Transfer} event.
     */
    function _mint(address to, uint256 tokenId) internal virtual {
        require(to != address(0), "ERC721: mint to the zero address");
        require(!_exists(tokenId), "ERC721: token already minted");

        _beforeTokenTransfer(address(0), to, tokenId);

        _balances[to] += 1;
        _owners[tokenId] = to;

        emit Transfer(address(0), to, tokenId);

        _afterTokenTransfer(address(0), to, tokenId);
    }

    /**
     * @dev Destroys `tokenId`.
     * The approval is cleared when the token is burned.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     *
     * Emits a {Transfer} event.
     */
    function _burn(uint256 tokenId) internal virtual {
        address owner = ERC721.ownerOf(tokenId);

        _beforeTokenTransfer(owner, address(0), tokenId);

        // Clear approvals
        _approve(address(0), tokenId);

        _balances[owner] -= 1;
        delete _owners[tokenId];

        emit Transfer(owner, address(0), tokenId);

        _afterTokenTransfer(owner, address(0), tokenId);
    }

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *  As opposed to {transferFrom}, this imposes no restrictions on msg.sender.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     *
     * Emits a {Transfer} event.
     */
    function _transfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {
        require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer from incorrect owner");
        require(to != address(0), "ERC721: transfer to the zero address");

        _beforeTokenTransfer(from, to, tokenId);

        // Clear approvals from the previous owner
        _approve(address(0), tokenId);

        _balances[from] -= 1;
        _balances[to] += 1;
        _owners[tokenId] = to;

        emit Transfer(from, to, tokenId);

        _afterTokenTransfer(from, to, tokenId);
    }

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

    /**
     * @dev Approve `operator` to operate on all of `owner` tokens
     *
     * Emits an {ApprovalForAll} event.
     */
    function _setApprovalForAll(
        address owner,
        address operator,
        bool approved
    ) internal virtual {
        require(owner != operator, "ERC721: approve to caller");
        _operatorApprovals[owner][operator] = approved;
        emit ApprovalForAll(owner, operator, approved);
    }

    /**
     * @dev Reverts if the `tokenId` has not been minted yet.
     */
    function _requireMinted(uint256 tokenId) internal view virtual {
        require(_exists(tokenId), "ERC721: invalid token ID");
    }

    /**
     * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address.
     * The call is not executed if the target address is not a contract.
     *
     * @param from address representing the previous owner of the given token ID
     * @param to target address that will receive the tokens
     * @param tokenId uint256 ID of the token to be transferred
     * @param data bytes optional data to send along with the call
     * @return bool whether the call correctly returned the expected magic value
     */
    function _checkOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory data
    ) private returns (bool) {
        if (to.isContract()) {
            try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, data) returns (bytes4 retval) {
                return retval == IERC721Receiver.onERC721Received.selector;
            } catch (bytes memory reason) {
                if (reason.length == 0) {
                    revert("ERC721: transfer to non ERC721Receiver implementer");
                } else {
                    /// @solidity memory-safe-assembly
                    assembly {
                        revert(add(32, reason), mload(reason))
                    }
                }
            }
        } else {
            return true;
        }
    }

    /**
     * @dev Hook that is called before any token transfer. This includes minting
     * and burning.
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be
     * transferred to `to`.
     * - When `from` is zero, `tokenId` will be minted for `to`.
     * - When `to` is zero, ``from``'s `tokenId` will be burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {}

    /**
     * @dev Hook that is called after any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _afterTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {}
}

File 12 of 13 : IERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.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: Usage of this method is discouraged, use {safeTransferFrom} whenever possible.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

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

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

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

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

File 13 of 13 : 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;
    }
}

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"tokenURI_","type":"string"},{"internalType":"string","name":"contractURI_","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"MintPriceNotPaid","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"_expiryTime","type":"uint256"}],"name":"tokenMinted","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"_expiryTime","type":"uint256"}],"name":"tokenRenew","type":"event"},{"inputs":[],"name":"activateTransfers","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newTokens","type":"uint256"}],"name":"addTokenSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"assertRenewed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_user","type":"address"},{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"authenticateUser","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"authenticateUser","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":"_changedMintPrice","type":"uint256"}],"name":"changeMintPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_changedRenewalPrice","type":"uint256"}],"name":"changeRenewalPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_changedWhiteMintPrice","type":"uint256"}],"name":"changeWhiteMintPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"currentSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"expiryTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"merkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"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":"address[]","name":"_addresses","type":"address[]"}],"name":"ownerBatchMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"_tokenIds","type":"uint256[]"}],"name":"ownerBatchRenewToken","outputs":[],"stateMutability":"nonpayable","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":"_receiver","type":"address"}],"name":"ownerOnlyMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"ownerRenewToken","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"privateSaleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_numTokens","type":"uint256"}],"name":"removeTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"renewToken","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"renewalPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renewalsEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"saleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"contractURI_","type":"string"}],"name":"setContractURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setRenewalsActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setRenewalsAssert","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"tokenURI_","type":"string"}],"name":"setTokenURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_root","type":"bytes32"}],"name":"setmerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"startPrivateSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"startSale","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":"tokenPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"transfersEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"whiteTokenPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"whitelistClaimed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"_merkleProof","type":"bytes32[]"}],"name":"whitelistMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"withdrawBalance","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

6080604052610378600a5567016345785d8a0000600b5566f8b0a10e470000600c5566b1a2bc2ec50000600d556000600e60006101000a81548160ff0219169083151502179055506000600e60016101000a81548160ff0219169083151502179055506001600e60026101000a81548160ff0219169083151502179055506001600e60036101000a81548160ff0219169083151502179055506001600e60046101000a81548160ff0219169083151502179055507f9a69311af09a78ada3607ae145e6d8e7580165e9edbd7224bf33dac5935ea9cb60001b600f55348015620000e757600080fd5b50604051620055a9380380620055a983398181016040528101906200010d919062000522565b6040518060400160405280600b81526020017f4a494e474f5520504153530000000000000000000000000000000000000000008152506040518060400160405280600a81526020017f4a494e474f555041535300000000000000000000000000000000000000000000815250816000908051906020019062000191929190620002d5565b508060019080519060200190620001aa929190620002d5565b505050620001cd620001c16200020760201b60201c565b6200020f60201b60201c565b8160089080519060200190620001e5929190620002d5565b508060099080519060200190620001fe929190620002d5565b5050506200060b565b600033905090565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620002e390620005d6565b90600052602060002090601f01602090048101928262000307576000855562000353565b82601f106200032257805160ff191683800117855562000353565b8280016001018555821562000353579182015b828111156200035257825182559160200191906001019062000335565b5b50905062000362919062000366565b5090565b5b808211156200038157600081600090555060010162000367565b5090565b6000604051905090565b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b620003ee82620003a3565b810181811067ffffffffffffffff8211171562000410576200040f620003b4565b5b80604052505050565b60006200042562000385565b9050620004338282620003e3565b919050565b600067ffffffffffffffff821115620004565762000455620003b4565b5b6200046182620003a3565b9050602081019050919050565b60005b838110156200048e57808201518184015260208101905062000471565b838111156200049e576000848401525b50505050565b6000620004bb620004b58462000438565b62000419565b905082815260208101848484011115620004da57620004d96200039e565b5b620004e78482856200046e565b509392505050565b600082601f83011262000507576200050662000399565b5b815162000519848260208601620004a4565b91505092915050565b600080604083850312156200053c576200053b6200038f565b5b600083015167ffffffffffffffff8111156200055d576200055c62000394565b5b6200056b85828601620004ef565b925050602083015167ffffffffffffffff8111156200058f576200058e62000394565b5b6200059d85828601620004ef565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620005ef57607f821691505b602082108103620006055762000604620005a7565b5b50919050565b614f8e806200061b6000396000f3fe60806040526004361061031e5760003560e01c80637b55297a116101ab578063c0c207c0116100f7578063e2b6304a11610095578063e985e9c51161006f578063e985e9c514610b42578063f18d4dbb14610b7f578063f2fde38b14610ba8578063faab3def14610bd157610325565b8063e2b6304a14610ac5578063e858ad0314610aee578063e8a3d48514610b1757610325565b8063d5abeb01116100d1578063d5abeb0114610a0b578063d854b99114610a36578063db4bec4414610a5f578063e0df5b6f14610a9c57610325565b8063c0c207c014610966578063c87b56dd14610991578063cdffd6ed146109ce57610325565b8063a22cb46511610164578063b8cb65ee1161013e578063b8cb65ee146108ac578063bb026e32146108d5578063be010c40146108fe578063bef97c871461093b57610325565b8063a22cb46514610843578063b66a0e5d1461086c578063b88d4fde1461088357610325565b80637b55297a146107435780637ff9b5961461076e5780638100ce4f146107995780638da5cb5b146107c4578063938e3d7b146107ef57806395d89b411461081857610325565b80633e262e5a1161026a57806367805d7111610223578063715018a6116101fd578063715018a6146106ba57806371e23947146106d1578063771282f6146106ed57806379b345d21461071857610325565b806367805d711461062957806368428a1b1461065257806370a082311461067d57610325565b80633e262e5a1461051d5780633fd173661461054657806342842e0e1461056f5780634e5db165146105985780635fd8c710146105d55780636352211e146105ec57610325565b80632a237bb6116102d7578063306b67c4116102b1578063306b67c4146104aa578063338dbf59146104d3578063372f657c146104ea5780633a62244f1461050657610325565b80632a237bb61461042b5780632eb4a7ab146104565780632fb932981461048157610325565b806301ffc9a71461032a57806306fdde0314610367578063081812fc14610392578063095ea7b3146103cf57806323b872dd146103f857806326092b831461042157610325565b3661032557005b600080fd5b34801561033657600080fd5b50610351600480360381019061034c91906134f8565b610bfa565b60405161035e9190613540565b60405180910390f35b34801561037357600080fd5b5061037c610cdc565b60405161038991906135f4565b60405180910390f35b34801561039e57600080fd5b506103b960048036038101906103b4919061364c565b610d6e565b6040516103c691906136ba565b60405180910390f35b3480156103db57600080fd5b506103f660048036038101906103f19190613701565b610db4565b005b34801561040457600080fd5b5061041f600480360381019061041a9190613741565b610ecb565b005b610429610fff565b005b34801561043757600080fd5b506104406111df565b60405161044d9190613540565b60405180910390f35b34801561046257600080fd5b5061046b6111f2565b60405161047891906137ad565b60405180910390f35b34801561048d57600080fd5b506104a860048036038101906104a391906137f4565b6111f8565b005b3480156104b657600080fd5b506104d160048036038101906104cc919061364c565b61121d565b005b3480156104df57600080fd5b506104e8611273565b005b61050460048036038101906104ff9190613886565b6112a7565b005b34801561051257600080fd5b5061051b611627565b005b34801561052957600080fd5b50610544600480360381019061053f9190613929565b61165b565b005b34801561055257600080fd5b5061056d6004803603810190610568919061364c565b6116b7565b005b34801561057b57600080fd5b5061059660048036038101906105919190613741565b61170d565b005b3480156105a457600080fd5b506105bf60048036038101906105ba9190613701565b61172d565b6040516105cc9190613540565b60405180910390f35b3480156105e157600080fd5b506105ea611831565b005b3480156105f857600080fd5b50610613600480360381019061060e919061364c565b611882565b60405161062091906136ba565b60405180910390f35b34801561063557600080fd5b50610650600480360381019061064b9190613976565b611933565b005b34801561065e57600080fd5b50610667611b12565b6040516106749190613540565b60405180910390f35b34801561068957600080fd5b506106a4600480360381019061069f9190613976565b611b25565b6040516106b191906139b2565b60405180910390f35b3480156106c657600080fd5b506106cf611bdc565b005b6106eb60048036038101906106e6919061364c565b611bf0565b005b3480156106f957600080fd5b50610702611e02565b60405161070f91906139b2565b60405180910390f35b34801561072457600080fd5b5061072d611e13565b60405161073a9190613540565b60405180910390f35b34801561074f57600080fd5b50610758611e26565b60405161076591906139b2565b60405180910390f35b34801561077a57600080fd5b50610783611e2c565b60405161079091906139b2565b60405180910390f35b3480156107a557600080fd5b506107ae611e32565b6040516107bb91906139b2565b60405180910390f35b3480156107d057600080fd5b506107d9611e38565b6040516107e691906136ba565b60405180910390f35b3480156107fb57600080fd5b5061081660048036038101906108119190613a23565b611e62565b005b34801561082457600080fd5b5061082d611e80565b60405161083a91906135f4565b60405180910390f35b34801561084f57600080fd5b5061086a60048036038101906108659190613a70565b611f12565b005b34801561087857600080fd5b50610881611f28565b005b34801561088f57600080fd5b506108aa60048036038101906108a59190613be0565b611f5c565b005b3480156108b857600080fd5b506108d360048036038101906108ce919061364c565b612092565b005b3480156108e157600080fd5b506108fc60048036038101906108f7919061364c565b61210d565b005b34801561090a57600080fd5b506109256004803603810190610920919061364c565b612163565b60405161093291906139b2565b60405180910390f35b34801561094757600080fd5b5061095061217b565b60405161095d9190613540565b60405180910390f35b34801561097257600080fd5b5061097b61218e565b6040516109889190613540565b60405180910390f35b34801561099d57600080fd5b506109b860048036038101906109b3919061364c565b6121a1565b6040516109c591906135f4565b60405180910390f35b3480156109da57600080fd5b506109f560048036038101906109f0919061364c565b612213565b604051610a029190613540565b60405180910390f35b348015610a1757600080fd5b50610a20612316565b604051610a2d91906139b2565b60405180910390f35b348015610a4257600080fd5b50610a5d6004803603810190610a589190613cb9565b61231c565b005b348015610a6b57600080fd5b50610a866004803603810190610a819190613976565b6123cc565b604051610a939190613540565b60405180910390f35b348015610aa857600080fd5b50610ac36004803603810190610abe9190613a23565b6123ec565b005b348015610ad157600080fd5b50610aec6004803603810190610ae791906137f4565b61240a565b005b348015610afa57600080fd5b50610b156004803603810190610b109190613d32565b61242f565b005b348015610b2357600080fd5b50610b2c612441565b604051610b3991906135f4565b60405180910390f35b348015610b4e57600080fd5b50610b696004803603810190610b649190613d5f565b6124d3565b604051610b769190613540565b60405180910390f35b348015610b8b57600080fd5b50610ba66004803603810190610ba1919061364c565b612567565b005b348015610bb457600080fd5b50610bcf6004803603810190610bca9190613976565b61258b565b005b348015610bdd57600080fd5b50610bf86004803603810190610bf3919061364c565b61260e565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610cc557507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610cd55750610cd482612727565b5b9050919050565b606060008054610ceb90613dce565b80601f0160208091040260200160405190810160405280929190818152602001828054610d1790613dce565b8015610d645780601f10610d3957610100808354040283529160200191610d64565b820191906000526020600020905b815481529060010190602001808311610d4757829003601f168201915b5050505050905090565b6000610d7982612791565b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610dbf82611882565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610e2f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e2690613e71565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610e4e6127dc565b73ffffffffffffffffffffffffffffffffffffffff161480610e7d5750610e7c81610e776127dc565b6124d3565b5b610ebc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eb390613f03565b60405180910390fd5b610ec683836127e4565b505050565b600e60029054906101000a900460ff16610f1a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f1190613f6f565b60405180910390fd5b610f2b610f256127dc565b8261289d565b610f6a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f6190614001565b60405180910390fd5b4260116000838152602001908152602001600020541180610f985750600e60039054906101000a900460ff16155b80610fb05750600e60049054906101000a900460ff16155b610fef576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fe69061406d565b60405180910390fd5b610ffa838383612932565b505050565b3273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461106d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611064906140d9565b60405180910390fd5b6000600161107b6007612b98565b6110859190614128565b9050600e60019054906101000a900460ff166110d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110cd906141ca565b60405180910390fd5b600b54341015611112576040517f21e191e200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600a548110611156576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161114d9061425c565b60405180910390fd5b6111606007612ba6565b61116a3382612bbc565b62278d00426111799190614128565b60116000838152602001908152602001600020819055507f0930d5cc1d8162f59cde20a12fdc913d0072915ecfbdf4b1ed9e4f10f0fb47928160116000848152602001908152602001600020546040516111d492919061427c565b60405180910390a150565b600e60009054906101000a900460ff1681565b600f5481565b611200612bda565b80600e60036101000a81548160ff02191690831515021790555050565b611225612bda565b80600c5403611269576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611260906142f1565b60405180910390fd5b80600c8190555050565b61127b612bda565b600e60009054906101000a900460ff1615600e60006101000a81548160ff021916908315150217905550565b3273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611315576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161130c906140d9565b60405180910390fd5b600060016113236007612b98565b61132d9190614128565b9050600e60009054906101000a900460ff1661137e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161137590614383565b60405180910390fd5b601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161561140b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611402906143ef565b60405180910390fd5b60003360405160200161141e9190614457565b604051602081830303815290604052805190602001209050611484848480806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050600f5483612c58565b6114c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114ba906144be565b60405180910390fd5b600c543410156114ff576040517f21e191e200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600a548210611543576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161153a9061425c565b60405180910390fd5b6001601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506115a56007612ba6565b6115af3383612bbc565b62278d00426115be9190614128565b60116000848152602001908152602001600020819055507f0930d5cc1d8162f59cde20a12fdc913d0072915ecfbdf4b1ed9e4f10f0fb479282601160008581526020019081526020016000205460405161161992919061427c565b60405180910390a150505050565b61162f612bda565b600e60029054906101000a900460ff1615600e60026101000a81548160ff021916908315150217905550565b611663612bda565b600082829050905060005b818110156116b1576116a684848381811061168c5761168b6144de565b5b90506020020160208101906116a19190613976565b611933565b80600101905061166e565b50505050565b6116bf612bda565b80600b5403611703576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116fa906142f1565b60405180910390fd5b80600b8190555050565b61172883838360405180602001604052806000815250611f5c565b505050565b600061173882612c6f565b611777576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161176e90614559565b60405180910390fd5b42601160008481526020019081526020016000205411806117a55750600e60039054906101000a900460ff16155b6117e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117db906145eb565b60405180910390fd5b6117ed82611882565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614611826576000611829565b60015b905092915050565b611839612bda565b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f1935050505015801561187f573d6000803e3d6000fd5b50565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361192a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161192190614657565b60405180910390fd5b80915050919050565b61193b612bda565b600060016119496007612b98565b6119539190614128565b9050600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036119c4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119bb906146c3565b60405180910390fd5b600a54811115611a09576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a009061425c565b60405180910390fd5b8173ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611a88576000611a4783611b25565b14611a87576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a7e9061472f565b60405180910390fd5b5b611a926007612ba6565b611a9c8282612bbc565b62278d0042611aab9190614128565b60116000838152602001908152602001600020819055507f0930d5cc1d8162f59cde20a12fdc913d0072915ecfbdf4b1ed9e4f10f0fb4792816011600084815260200190815260200160002054604051611b0692919061427c565b60405180910390a15050565b600e60019054906101000a900460ff1681565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611b95576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b8c906147c1565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611be4612bda565b611bee6000612cdb565b565b3273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611c5e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c55906140d9565b60405180910390fd5b600d543414611ca2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c999061482d565b60405180910390fd5b611cab81612c6f565b611cea576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ce190614559565b60405180910390fd5b600e60039054906101000a900460ff16611d39576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d3090614899565b60405180910390fd5b60006011600083815260200190815260200160002054905080421115611d845762278d0042611d689190614128565b6011600084815260200190815260200160002081905550611db2565b62278d00601160008481526020019081526020016000206000828254611daa9190614128565b925050819055505b7fc5b22e9a67a130743449e00b09e4a00a944ca980e143df60ab742426c534c4f9826011600085815260200190815260200160002054604051611df692919061427c565b60405180910390a15050565b6000611e0e6007612b98565b905090565b600e60039054906101000a900460ff1681565b600d5481565b600b5481565b600c5481565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611e6a612bda565b818160099190611e7b9291906133e9565b505050565b606060018054611e8f90613dce565b80601f0160208091040260200160405190810160405280929190818152602001828054611ebb90613dce565b8015611f085780601f10611edd57610100808354040283529160200191611f08565b820191906000526020600020905b815481529060010190602001808311611eeb57829003601f168201915b5050505050905090565b611f24611f1d6127dc565b8383612da1565b5050565b611f30612bda565b600e60019054906101000a900460ff1615600e60016101000a81548160ff021916908315150217905550565b600e60029054906101000a900460ff16611fab576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fa290613f6f565b60405180910390fd5b611fbc611fb66127dc565b8361289d565b611ffb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ff290614001565b60405180910390fd5b42601160008481526020019081526020016000205411806120295750600e60039054906101000a900460ff16155b806120415750600e60049054906101000a900460ff16155b612080576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120779061406d565b60405180910390fd5b61208c84848484612f0d565b50505050565b61209a612bda565b6120a2611e02565b81600a546120b091906148b9565b10156120f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120e89061495f565b60405180910390fd5b80600a600082825461210391906148b9565b9250508190555050565b612115612bda565b80600d5403612159576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612150906142f1565b60405180910390fd5b80600d8190555050565b60116020528060005260406000206000915090505481565b600e60029054906101000a900460ff1681565b600e60049054906101000a900460ff1681565b60606121ac82612c6f565b6121eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121e290614559565b60405180910390fd5b60086040516020016121fd9190614a1e565b6040516020818303038152906040529050919050565b600061221e82612c6f565b61225d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161225490614559565b60405180910390fd5b426011600084815260200190815260200160002054118061228b5750600e60039054906101000a900460ff16155b6122ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122c1906145eb565b60405180910390fd5b6122d382611882565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461230c57600061230f565b60015b9050919050565b600a5481565b612324612bda565b600082829050905060005b818110156123c6573073ffffffffffffffffffffffffffffffffffffffff1663faab3def858584818110612366576123656144de565b5b905060200201356040518263ffffffff1660e01b815260040161238991906139b2565b600060405180830381600087803b1580156123a357600080fd5b505af11580156123b7573d6000803e3d6000fd5b5050505080600101905061232f565b50505050565b60106020528060005260406000206000915054906101000a900460ff1681565b6123f4612bda565b8181600891906124059291906133e9565b505050565b612412612bda565b80600e60046101000a81548160ff02191690831515021790555050565b612437612bda565b80600f8190555050565b60606009805461245090613dce565b80601f016020809104026020016040519081016040528092919081815260200182805461247c90613dce565b80156124c95780601f1061249e576101008083540402835291602001916124c9565b820191906000526020600020905b8154815290600101906020018083116124ac57829003601f168201915b5050505050905090565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61256f612bda565b80600a60008282546125819190614128565b9250508190555050565b612593612bda565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603612602576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125f990614aa7565b60405180910390fd5b61260b81612cdb565b50565b612616612bda565b61261f81612c6f565b61265e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161265590614559565b60405180910390fd5b600060116000838152602001908152602001600020549050804211156126a95762278d004261268d9190614128565b60116000848152602001908152602001600020819055506126d7565b62278d006011600084815260200190815260200160002060008282546126cf9190614128565b925050819055505b7fc5b22e9a67a130743449e00b09e4a00a944ca980e143df60ab742426c534c4f982601160008581526020019081526020016000205460405161271b92919061427c565b60405180910390a15050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b61279a81612c6f565b6127d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127d090614657565b60405180910390fd5b50565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661285783611882565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000806128a983611882565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806128eb57506128ea81856124d3565b5b8061292957508373ffffffffffffffffffffffffffffffffffffffff1661291184610d6e565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661295282611882565b73ffffffffffffffffffffffffffffffffffffffff16146129a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161299f90614b39565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612a17576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a0e90614bcb565b60405180910390fd5b612a22838383612f69565b612a2d6000826127e4565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612a7d91906148b9565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612ad49190614128565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612b93838383612f6e565b505050565b600081600001549050919050565b6001816000016000828254019250508190555050565b612bd6828260405180602001604052806000815250612f73565b5050565b612be26127dc565b73ffffffffffffffffffffffffffffffffffffffff16612c00611e38565b73ffffffffffffffffffffffffffffffffffffffff1614612c56576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c4d90614c37565b60405180910390fd5b565b600082612c658584612fce565b1490509392505050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612e0f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e0690614ca3565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051612f009190613540565b60405180910390a3505050565b612f18848484612932565b612f2484848484613024565b612f63576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f5a90614d35565b60405180910390fd5b50505050565b505050565b505050565b612f7d83836131ab565b612f8a6000848484613024565b612fc9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612fc090614d35565b60405180910390fd5b505050565b60008082905060005b84518110156130195761300482868381518110612ff757612ff66144de565b5b6020026020010151613384565b9150808061301190614d55565b915050612fd7565b508091505092915050565b60006130458473ffffffffffffffffffffffffffffffffffffffff166133af565b1561319e578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261306e6127dc565b8786866040518563ffffffff1660e01b81526004016130909493929190614df2565b6020604051808303816000875af19250505080156130cc57506040513d601f19601f820116820180604052508101906130c99190614e53565b60015b61314e573d80600081146130fc576040519150601f19603f3d011682016040523d82523d6000602084013e613101565b606091505b506000815103613146576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161313d90614d35565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506131a3565b600190505b949350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361321a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161321190614ecc565b60405180910390fd5b61322381612c6f565b15613263576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161325a90614f38565b60405180910390fd5b61326f60008383612f69565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546132bf9190614128565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461338060008383612f6e565b5050565b600081831061339c5761339782846133d2565b6133a7565b6133a683836133d2565b5b905092915050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b600082600052816020526040600020905092915050565b8280546133f590613dce565b90600052602060002090601f016020900481019282613417576000855561345e565b82601f1061343057803560ff191683800117855561345e565b8280016001018555821561345e579182015b8281111561345d578235825591602001919060010190613442565b5b50905061346b919061346f565b5090565b5b80821115613488576000816000905550600101613470565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6134d5816134a0565b81146134e057600080fd5b50565b6000813590506134f2816134cc565b92915050565b60006020828403121561350e5761350d613496565b5b600061351c848285016134e3565b91505092915050565b60008115159050919050565b61353a81613525565b82525050565b60006020820190506135556000830184613531565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561359557808201518184015260208101905061357a565b838111156135a4576000848401525b50505050565b6000601f19601f8301169050919050565b60006135c68261355b565b6135d08185613566565b93506135e0818560208601613577565b6135e9816135aa565b840191505092915050565b6000602082019050818103600083015261360e81846135bb565b905092915050565b6000819050919050565b61362981613616565b811461363457600080fd5b50565b60008135905061364681613620565b92915050565b60006020828403121561366257613661613496565b5b600061367084828501613637565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006136a482613679565b9050919050565b6136b481613699565b82525050565b60006020820190506136cf60008301846136ab565b92915050565b6136de81613699565b81146136e957600080fd5b50565b6000813590506136fb816136d5565b92915050565b6000806040838503121561371857613717613496565b5b6000613726858286016136ec565b925050602061373785828601613637565b9150509250929050565b60008060006060848603121561375a57613759613496565b5b6000613768868287016136ec565b9350506020613779868287016136ec565b925050604061378a86828701613637565b9150509250925092565b6000819050919050565b6137a781613794565b82525050565b60006020820190506137c2600083018461379e565b92915050565b6137d181613525565b81146137dc57600080fd5b50565b6000813590506137ee816137c8565b92915050565b60006020828403121561380a57613809613496565b5b6000613818848285016137df565b91505092915050565b600080fd5b600080fd5b600080fd5b60008083601f84011261384657613845613821565b5b8235905067ffffffffffffffff81111561386357613862613826565b5b60208301915083602082028301111561387f5761387e61382b565b5b9250929050565b6000806020838503121561389d5761389c613496565b5b600083013567ffffffffffffffff8111156138bb576138ba61349b565b5b6138c785828601613830565b92509250509250929050565b60008083601f8401126138e9576138e8613821565b5b8235905067ffffffffffffffff81111561390657613905613826565b5b6020830191508360208202830111156139225761392161382b565b5b9250929050565b600080602083850312156139405761393f613496565b5b600083013567ffffffffffffffff81111561395e5761395d61349b565b5b61396a858286016138d3565b92509250509250929050565b60006020828403121561398c5761398b613496565b5b600061399a848285016136ec565b91505092915050565b6139ac81613616565b82525050565b60006020820190506139c760008301846139a3565b92915050565b60008083601f8401126139e3576139e2613821565b5b8235905067ffffffffffffffff811115613a00576139ff613826565b5b602083019150836001820283011115613a1c57613a1b61382b565b5b9250929050565b60008060208385031215613a3a57613a39613496565b5b600083013567ffffffffffffffff811115613a5857613a5761349b565b5b613a64858286016139cd565b92509250509250929050565b60008060408385031215613a8757613a86613496565b5b6000613a95858286016136ec565b9250506020613aa6858286016137df565b9150509250929050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b613aed826135aa565b810181811067ffffffffffffffff82111715613b0c57613b0b613ab5565b5b80604052505050565b6000613b1f61348c565b9050613b2b8282613ae4565b919050565b600067ffffffffffffffff821115613b4b57613b4a613ab5565b5b613b54826135aa565b9050602081019050919050565b82818337600083830152505050565b6000613b83613b7e84613b30565b613b15565b905082815260208101848484011115613b9f57613b9e613ab0565b5b613baa848285613b61565b509392505050565b600082601f830112613bc757613bc6613821565b5b8135613bd7848260208601613b70565b91505092915050565b60008060008060808587031215613bfa57613bf9613496565b5b6000613c08878288016136ec565b9450506020613c19878288016136ec565b9350506040613c2a87828801613637565b925050606085013567ffffffffffffffff811115613c4b57613c4a61349b565b5b613c5787828801613bb2565b91505092959194509250565b60008083601f840112613c7957613c78613821565b5b8235905067ffffffffffffffff811115613c9657613c95613826565b5b602083019150836020820283011115613cb257613cb161382b565b5b9250929050565b60008060208385031215613cd057613ccf613496565b5b600083013567ffffffffffffffff811115613cee57613ced61349b565b5b613cfa85828601613c63565b92509250509250929050565b613d0f81613794565b8114613d1a57600080fd5b50565b600081359050613d2c81613d06565b92915050565b600060208284031215613d4857613d47613496565b5b6000613d5684828501613d1d565b91505092915050565b60008060408385031215613d7657613d75613496565b5b6000613d84858286016136ec565b9250506020613d95858286016136ec565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680613de657607f821691505b602082108103613df957613df8613d9f565b5b50919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b6000613e5b602183613566565b9150613e6682613dff565b604082019050919050565b60006020820190508181036000830152613e8a81613e4e565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60008201527f6b656e206f776e6572206e6f7220617070726f76656420666f7220616c6c0000602082015250565b6000613eed603e83613566565b9150613ef882613e91565b604082019050919050565b60006020820190508181036000830152613f1c81613ee0565b9050919050565b7f5472616e7366657273206172652064697361626c656400000000000000000000600082015250565b6000613f59601683613566565b9150613f6482613f23565b602082019050919050565b60006020820190508181036000830152613f8881613f4c565b9050919050565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b6000613feb603183613566565b9150613ff682613f8f565b604082019050919050565b6000602082019050818103600083015261401a81613fde565b9050919050565b7f546f6b656e20697320657870697265642e000000000000000000000000000000600082015250565b6000614057601183613566565b915061406282614021565b602082019050919050565b600060208201905081810360008301526140868161404a565b9050919050565b7f486178786f722061636365737320626c6f636b65640000000000000000000000600082015250565b60006140c3601583613566565b91506140ce8261408d565b602082019050919050565b600060208201905081810360008301526140f2816140b6565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061413382613616565b915061413e83613616565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614173576141726140f9565b5b828201905092915050565b7f53616c65206973206e6f74206163746976652e00000000000000000000000000600082015250565b60006141b4601383613566565b91506141bf8261417e565b602082019050919050565b600060208201905081810360008301526141e3816141a7565b9050919050565b7f4d696e74696e67207468697320746f6b656e20776f756c64206578636565642060008201527f746f74616c20737570706c792e00000000000000000000000000000000000000602082015250565b6000614246602d83613566565b9150614251826141ea565b604082019050919050565b6000602082019050818103600083015261427581614239565b9050919050565b600060408201905061429160008301856139a3565b61429e60208301846139a3565b9392505050565b7f507269636520646964206e6f74206368616e67652e0000000000000000000000600082015250565b60006142db601583613566565b91506142e6826142a5565b602082019050919050565b6000602082019050818103600083015261430a816142ce565b9050919050565b7f507269766174652073616c652069732063757272656e746c79206e6f7420616360008201527f746976652e000000000000000000000000000000000000000000000000000000602082015250565b600061436d602583613566565b915061437882614311565b604082019050919050565b6000602082019050818103600083015261439c81614360565b9050919050565b7f4164647265737320616c726561647920636c61696d6564000000000000000000600082015250565b60006143d9601783613566565b91506143e4826143a3565b602082019050919050565b60006020820190508181036000830152614408816143cc565b9050919050565b60008160601b9050919050565b60006144278261440f565b9050919050565b60006144398261441c565b9050919050565b61445161444c82613699565b61442e565b82525050565b60006144638284614440565b60148201915081905092915050565b7f496e76616c6964204d65726b6c652050726f6f662e0000000000000000000000600082015250565b60006144a8601583613566565b91506144b382614472565b602082019050919050565b600060208201905081810360008301526144d78161449b565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f546f6b656e20646f6573206e6f742065786973742e0000000000000000000000600082015250565b6000614543601583613566565b915061454e8261450d565b602082019050919050565b6000602082019050818103600083015261457281614536565b9050919050565b7f546f6b656e2068617320657870697265642e20506c656173652072656e65772060008201527f796f757220746f6b656e21000000000000000000000000000000000000000000602082015250565b60006145d5602b83613566565b91506145e082614579565b604082019050919050565b60006020820190508181036000830152614604816145c8565b9050919050565b7f4552433732313a20696e76616c696420746f6b656e2049440000000000000000600082015250565b6000614641601883613566565b915061464c8261460b565b602082019050919050565b6000602082019050818103600083015261467081614634565b9050919050565b7f52656365697665722063616e6e6f74206265207a65726f20616464726573732e600082015250565b60006146ad602083613566565b91506146b882614677565b602082019050919050565b600060208201905081810360008301526146dc816146a0565b9050919050565b7f496e646976696475616c20616c7265616479206f776e73206120746f6b656e2e600082015250565b6000614719602083613566565b9150614724826146e3565b602082019050919050565b600060208201905081810360008301526147488161470c565b9050919050565b7f4552433732313a2061646472657373207a65726f206973206e6f74206120766160008201527f6c6964206f776e65720000000000000000000000000000000000000000000000602082015250565b60006147ab602983613566565b91506147b68261474f565b604082019050919050565b600060208201905081810360008301526147da8161479e565b9050919050565b7f496e636f727265637420616d6f756e74206f662065746865722073656e742e00600082015250565b6000614817601f83613566565b9150614822826147e1565b602082019050919050565b600060208201905081810360008301526148468161480a565b9050919050565b7f52656e6577616c73206172652063757272656e746c792064697361626c656400600082015250565b6000614883601f83613566565b915061488e8261484d565b602082019050919050565b600060208201905081810360008301526148b281614876565b9050919050565b60006148c482613616565b91506148cf83613616565b9250828210156148e2576148e16140f9565b5b828203905092915050565b7f537570706c792063616e6e6f742066616c6c2062656c6f77206d696e7465642060008201527f746f6b656e732e00000000000000000000000000000000000000000000000000602082015250565b6000614949602783613566565b9150614954826148ed565b604082019050919050565b600060208201905081810360008301526149788161493c565b9050919050565b600081905092915050565b60008190508160005260206000209050919050565b600081546149ac81613dce565b6149b6818661497f565b945060018216600081146149d157600181146149e257614a15565b60ff19831686528186019350614a15565b6149eb8561498a565b60005b83811015614a0d578154818901526001820191506020810190506149ee565b838801955050505b50505092915050565b6000614a2a828461499f565b915081905092915050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000614a91602683613566565b9150614a9c82614a35565b604082019050919050565b60006020820190508181036000830152614ac081614a84565b9050919050565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b6000614b23602583613566565b9150614b2e82614ac7565b604082019050919050565b60006020820190508181036000830152614b5281614b16565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000614bb5602483613566565b9150614bc082614b59565b604082019050919050565b60006020820190508181036000830152614be481614ba8565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000614c21602083613566565b9150614c2c82614beb565b602082019050919050565b60006020820190508181036000830152614c5081614c14565b9050919050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b6000614c8d601983613566565b9150614c9882614c57565b602082019050919050565b60006020820190508181036000830152614cbc81614c80565b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b6000614d1f603283613566565b9150614d2a82614cc3565b604082019050919050565b60006020820190508181036000830152614d4e81614d12565b9050919050565b6000614d6082613616565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203614d9257614d916140f9565b5b600182019050919050565b600081519050919050565b600082825260208201905092915050565b6000614dc482614d9d565b614dce8185614da8565b9350614dde818560208601613577565b614de7816135aa565b840191505092915050565b6000608082019050614e0760008301876136ab565b614e1460208301866136ab565b614e2160408301856139a3565b8181036060830152614e338184614db9565b905095945050505050565b600081519050614e4d816134cc565b92915050565b600060208284031215614e6957614e68613496565b5b6000614e7784828501614e3e565b91505092915050565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b6000614eb6602083613566565b9150614ec182614e80565b602082019050919050565b60006020820190508181036000830152614ee581614ea9565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b6000614f22601c83613566565b9150614f2d82614eec565b602082019050919050565b60006020820190508181036000830152614f5181614f15565b905091905056fea264697066735822122055d7456cd3280bb7ffc5b49b01325f52e82ec32e1ff36f91b79d3e359b145be364736f6c634300080d0033000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000035697066733a2f2f516d547153487a37796b614c7546623862365235584c38745970464570594139796b524b716f7333644c7059447200000000000000000000000000000000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x60806040526004361061031e5760003560e01c80637b55297a116101ab578063c0c207c0116100f7578063e2b6304a11610095578063e985e9c51161006f578063e985e9c514610b42578063f18d4dbb14610b7f578063f2fde38b14610ba8578063faab3def14610bd157610325565b8063e2b6304a14610ac5578063e858ad0314610aee578063e8a3d48514610b1757610325565b8063d5abeb01116100d1578063d5abeb0114610a0b578063d854b99114610a36578063db4bec4414610a5f578063e0df5b6f14610a9c57610325565b8063c0c207c014610966578063c87b56dd14610991578063cdffd6ed146109ce57610325565b8063a22cb46511610164578063b8cb65ee1161013e578063b8cb65ee146108ac578063bb026e32146108d5578063be010c40146108fe578063bef97c871461093b57610325565b8063a22cb46514610843578063b66a0e5d1461086c578063b88d4fde1461088357610325565b80637b55297a146107435780637ff9b5961461076e5780638100ce4f146107995780638da5cb5b146107c4578063938e3d7b146107ef57806395d89b411461081857610325565b80633e262e5a1161026a57806367805d7111610223578063715018a6116101fd578063715018a6146106ba57806371e23947146106d1578063771282f6146106ed57806379b345d21461071857610325565b806367805d711461062957806368428a1b1461065257806370a082311461067d57610325565b80633e262e5a1461051d5780633fd173661461054657806342842e0e1461056f5780634e5db165146105985780635fd8c710146105d55780636352211e146105ec57610325565b80632a237bb6116102d7578063306b67c4116102b1578063306b67c4146104aa578063338dbf59146104d3578063372f657c146104ea5780633a62244f1461050657610325565b80632a237bb61461042b5780632eb4a7ab146104565780632fb932981461048157610325565b806301ffc9a71461032a57806306fdde0314610367578063081812fc14610392578063095ea7b3146103cf57806323b872dd146103f857806326092b831461042157610325565b3661032557005b600080fd5b34801561033657600080fd5b50610351600480360381019061034c91906134f8565b610bfa565b60405161035e9190613540565b60405180910390f35b34801561037357600080fd5b5061037c610cdc565b60405161038991906135f4565b60405180910390f35b34801561039e57600080fd5b506103b960048036038101906103b4919061364c565b610d6e565b6040516103c691906136ba565b60405180910390f35b3480156103db57600080fd5b506103f660048036038101906103f19190613701565b610db4565b005b34801561040457600080fd5b5061041f600480360381019061041a9190613741565b610ecb565b005b610429610fff565b005b34801561043757600080fd5b506104406111df565b60405161044d9190613540565b60405180910390f35b34801561046257600080fd5b5061046b6111f2565b60405161047891906137ad565b60405180910390f35b34801561048d57600080fd5b506104a860048036038101906104a391906137f4565b6111f8565b005b3480156104b657600080fd5b506104d160048036038101906104cc919061364c565b61121d565b005b3480156104df57600080fd5b506104e8611273565b005b61050460048036038101906104ff9190613886565b6112a7565b005b34801561051257600080fd5b5061051b611627565b005b34801561052957600080fd5b50610544600480360381019061053f9190613929565b61165b565b005b34801561055257600080fd5b5061056d6004803603810190610568919061364c565b6116b7565b005b34801561057b57600080fd5b5061059660048036038101906105919190613741565b61170d565b005b3480156105a457600080fd5b506105bf60048036038101906105ba9190613701565b61172d565b6040516105cc9190613540565b60405180910390f35b3480156105e157600080fd5b506105ea611831565b005b3480156105f857600080fd5b50610613600480360381019061060e919061364c565b611882565b60405161062091906136ba565b60405180910390f35b34801561063557600080fd5b50610650600480360381019061064b9190613976565b611933565b005b34801561065e57600080fd5b50610667611b12565b6040516106749190613540565b60405180910390f35b34801561068957600080fd5b506106a4600480360381019061069f9190613976565b611b25565b6040516106b191906139b2565b60405180910390f35b3480156106c657600080fd5b506106cf611bdc565b005b6106eb60048036038101906106e6919061364c565b611bf0565b005b3480156106f957600080fd5b50610702611e02565b60405161070f91906139b2565b60405180910390f35b34801561072457600080fd5b5061072d611e13565b60405161073a9190613540565b60405180910390f35b34801561074f57600080fd5b50610758611e26565b60405161076591906139b2565b60405180910390f35b34801561077a57600080fd5b50610783611e2c565b60405161079091906139b2565b60405180910390f35b3480156107a557600080fd5b506107ae611e32565b6040516107bb91906139b2565b60405180910390f35b3480156107d057600080fd5b506107d9611e38565b6040516107e691906136ba565b60405180910390f35b3480156107fb57600080fd5b5061081660048036038101906108119190613a23565b611e62565b005b34801561082457600080fd5b5061082d611e80565b60405161083a91906135f4565b60405180910390f35b34801561084f57600080fd5b5061086a60048036038101906108659190613a70565b611f12565b005b34801561087857600080fd5b50610881611f28565b005b34801561088f57600080fd5b506108aa60048036038101906108a59190613be0565b611f5c565b005b3480156108b857600080fd5b506108d360048036038101906108ce919061364c565b612092565b005b3480156108e157600080fd5b506108fc60048036038101906108f7919061364c565b61210d565b005b34801561090a57600080fd5b506109256004803603810190610920919061364c565b612163565b60405161093291906139b2565b60405180910390f35b34801561094757600080fd5b5061095061217b565b60405161095d9190613540565b60405180910390f35b34801561097257600080fd5b5061097b61218e565b6040516109889190613540565b60405180910390f35b34801561099d57600080fd5b506109b860048036038101906109b3919061364c565b6121a1565b6040516109c591906135f4565b60405180910390f35b3480156109da57600080fd5b506109f560048036038101906109f0919061364c565b612213565b604051610a029190613540565b60405180910390f35b348015610a1757600080fd5b50610a20612316565b604051610a2d91906139b2565b60405180910390f35b348015610a4257600080fd5b50610a5d6004803603810190610a589190613cb9565b61231c565b005b348015610a6b57600080fd5b50610a866004803603810190610a819190613976565b6123cc565b604051610a939190613540565b60405180910390f35b348015610aa857600080fd5b50610ac36004803603810190610abe9190613a23565b6123ec565b005b348015610ad157600080fd5b50610aec6004803603810190610ae791906137f4565b61240a565b005b348015610afa57600080fd5b50610b156004803603810190610b109190613d32565b61242f565b005b348015610b2357600080fd5b50610b2c612441565b604051610b3991906135f4565b60405180910390f35b348015610b4e57600080fd5b50610b696004803603810190610b649190613d5f565b6124d3565b604051610b769190613540565b60405180910390f35b348015610b8b57600080fd5b50610ba66004803603810190610ba1919061364c565b612567565b005b348015610bb457600080fd5b50610bcf6004803603810190610bca9190613976565b61258b565b005b348015610bdd57600080fd5b50610bf86004803603810190610bf3919061364c565b61260e565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610cc557507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610cd55750610cd482612727565b5b9050919050565b606060008054610ceb90613dce565b80601f0160208091040260200160405190810160405280929190818152602001828054610d1790613dce565b8015610d645780601f10610d3957610100808354040283529160200191610d64565b820191906000526020600020905b815481529060010190602001808311610d4757829003601f168201915b5050505050905090565b6000610d7982612791565b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610dbf82611882565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610e2f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e2690613e71565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610e4e6127dc565b73ffffffffffffffffffffffffffffffffffffffff161480610e7d5750610e7c81610e776127dc565b6124d3565b5b610ebc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eb390613f03565b60405180910390fd5b610ec683836127e4565b505050565b600e60029054906101000a900460ff16610f1a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f1190613f6f565b60405180910390fd5b610f2b610f256127dc565b8261289d565b610f6a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f6190614001565b60405180910390fd5b4260116000838152602001908152602001600020541180610f985750600e60039054906101000a900460ff16155b80610fb05750600e60049054906101000a900460ff16155b610fef576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fe69061406d565b60405180910390fd5b610ffa838383612932565b505050565b3273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461106d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611064906140d9565b60405180910390fd5b6000600161107b6007612b98565b6110859190614128565b9050600e60019054906101000a900460ff166110d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110cd906141ca565b60405180910390fd5b600b54341015611112576040517f21e191e200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600a548110611156576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161114d9061425c565b60405180910390fd5b6111606007612ba6565b61116a3382612bbc565b62278d00426111799190614128565b60116000838152602001908152602001600020819055507f0930d5cc1d8162f59cde20a12fdc913d0072915ecfbdf4b1ed9e4f10f0fb47928160116000848152602001908152602001600020546040516111d492919061427c565b60405180910390a150565b600e60009054906101000a900460ff1681565b600f5481565b611200612bda565b80600e60036101000a81548160ff02191690831515021790555050565b611225612bda565b80600c5403611269576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611260906142f1565b60405180910390fd5b80600c8190555050565b61127b612bda565b600e60009054906101000a900460ff1615600e60006101000a81548160ff021916908315150217905550565b3273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611315576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161130c906140d9565b60405180910390fd5b600060016113236007612b98565b61132d9190614128565b9050600e60009054906101000a900460ff1661137e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161137590614383565b60405180910390fd5b601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161561140b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611402906143ef565b60405180910390fd5b60003360405160200161141e9190614457565b604051602081830303815290604052805190602001209050611484848480806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050600f5483612c58565b6114c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114ba906144be565b60405180910390fd5b600c543410156114ff576040517f21e191e200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600a548210611543576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161153a9061425c565b60405180910390fd5b6001601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506115a56007612ba6565b6115af3383612bbc565b62278d00426115be9190614128565b60116000848152602001908152602001600020819055507f0930d5cc1d8162f59cde20a12fdc913d0072915ecfbdf4b1ed9e4f10f0fb479282601160008581526020019081526020016000205460405161161992919061427c565b60405180910390a150505050565b61162f612bda565b600e60029054906101000a900460ff1615600e60026101000a81548160ff021916908315150217905550565b611663612bda565b600082829050905060005b818110156116b1576116a684848381811061168c5761168b6144de565b5b90506020020160208101906116a19190613976565b611933565b80600101905061166e565b50505050565b6116bf612bda565b80600b5403611703576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116fa906142f1565b60405180910390fd5b80600b8190555050565b61172883838360405180602001604052806000815250611f5c565b505050565b600061173882612c6f565b611777576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161176e90614559565b60405180910390fd5b42601160008481526020019081526020016000205411806117a55750600e60039054906101000a900460ff16155b6117e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117db906145eb565b60405180910390fd5b6117ed82611882565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614611826576000611829565b60015b905092915050565b611839612bda565b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f1935050505015801561187f573d6000803e3d6000fd5b50565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361192a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161192190614657565b60405180910390fd5b80915050919050565b61193b612bda565b600060016119496007612b98565b6119539190614128565b9050600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036119c4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119bb906146c3565b60405180910390fd5b600a54811115611a09576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a009061425c565b60405180910390fd5b8173ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611a88576000611a4783611b25565b14611a87576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a7e9061472f565b60405180910390fd5b5b611a926007612ba6565b611a9c8282612bbc565b62278d0042611aab9190614128565b60116000838152602001908152602001600020819055507f0930d5cc1d8162f59cde20a12fdc913d0072915ecfbdf4b1ed9e4f10f0fb4792816011600084815260200190815260200160002054604051611b0692919061427c565b60405180910390a15050565b600e60019054906101000a900460ff1681565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611b95576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b8c906147c1565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611be4612bda565b611bee6000612cdb565b565b3273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611c5e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c55906140d9565b60405180910390fd5b600d543414611ca2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c999061482d565b60405180910390fd5b611cab81612c6f565b611cea576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ce190614559565b60405180910390fd5b600e60039054906101000a900460ff16611d39576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d3090614899565b60405180910390fd5b60006011600083815260200190815260200160002054905080421115611d845762278d0042611d689190614128565b6011600084815260200190815260200160002081905550611db2565b62278d00601160008481526020019081526020016000206000828254611daa9190614128565b925050819055505b7fc5b22e9a67a130743449e00b09e4a00a944ca980e143df60ab742426c534c4f9826011600085815260200190815260200160002054604051611df692919061427c565b60405180910390a15050565b6000611e0e6007612b98565b905090565b600e60039054906101000a900460ff1681565b600d5481565b600b5481565b600c5481565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611e6a612bda565b818160099190611e7b9291906133e9565b505050565b606060018054611e8f90613dce565b80601f0160208091040260200160405190810160405280929190818152602001828054611ebb90613dce565b8015611f085780601f10611edd57610100808354040283529160200191611f08565b820191906000526020600020905b815481529060010190602001808311611eeb57829003601f168201915b5050505050905090565b611f24611f1d6127dc565b8383612da1565b5050565b611f30612bda565b600e60019054906101000a900460ff1615600e60016101000a81548160ff021916908315150217905550565b600e60029054906101000a900460ff16611fab576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fa290613f6f565b60405180910390fd5b611fbc611fb66127dc565b8361289d565b611ffb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ff290614001565b60405180910390fd5b42601160008481526020019081526020016000205411806120295750600e60039054906101000a900460ff16155b806120415750600e60049054906101000a900460ff16155b612080576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120779061406d565b60405180910390fd5b61208c84848484612f0d565b50505050565b61209a612bda565b6120a2611e02565b81600a546120b091906148b9565b10156120f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120e89061495f565b60405180910390fd5b80600a600082825461210391906148b9565b9250508190555050565b612115612bda565b80600d5403612159576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612150906142f1565b60405180910390fd5b80600d8190555050565b60116020528060005260406000206000915090505481565b600e60029054906101000a900460ff1681565b600e60049054906101000a900460ff1681565b60606121ac82612c6f565b6121eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121e290614559565b60405180910390fd5b60086040516020016121fd9190614a1e565b6040516020818303038152906040529050919050565b600061221e82612c6f565b61225d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161225490614559565b60405180910390fd5b426011600084815260200190815260200160002054118061228b5750600e60039054906101000a900460ff16155b6122ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122c1906145eb565b60405180910390fd5b6122d382611882565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461230c57600061230f565b60015b9050919050565b600a5481565b612324612bda565b600082829050905060005b818110156123c6573073ffffffffffffffffffffffffffffffffffffffff1663faab3def858584818110612366576123656144de565b5b905060200201356040518263ffffffff1660e01b815260040161238991906139b2565b600060405180830381600087803b1580156123a357600080fd5b505af11580156123b7573d6000803e3d6000fd5b5050505080600101905061232f565b50505050565b60106020528060005260406000206000915054906101000a900460ff1681565b6123f4612bda565b8181600891906124059291906133e9565b505050565b612412612bda565b80600e60046101000a81548160ff02191690831515021790555050565b612437612bda565b80600f8190555050565b60606009805461245090613dce565b80601f016020809104026020016040519081016040528092919081815260200182805461247c90613dce565b80156124c95780601f1061249e576101008083540402835291602001916124c9565b820191906000526020600020905b8154815290600101906020018083116124ac57829003601f168201915b5050505050905090565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61256f612bda565b80600a60008282546125819190614128565b9250508190555050565b612593612bda565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603612602576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125f990614aa7565b60405180910390fd5b61260b81612cdb565b50565b612616612bda565b61261f81612c6f565b61265e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161265590614559565b60405180910390fd5b600060116000838152602001908152602001600020549050804211156126a95762278d004261268d9190614128565b60116000848152602001908152602001600020819055506126d7565b62278d006011600084815260200190815260200160002060008282546126cf9190614128565b925050819055505b7fc5b22e9a67a130743449e00b09e4a00a944ca980e143df60ab742426c534c4f982601160008581526020019081526020016000205460405161271b92919061427c565b60405180910390a15050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b61279a81612c6f565b6127d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127d090614657565b60405180910390fd5b50565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661285783611882565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000806128a983611882565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806128eb57506128ea81856124d3565b5b8061292957508373ffffffffffffffffffffffffffffffffffffffff1661291184610d6e565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661295282611882565b73ffffffffffffffffffffffffffffffffffffffff16146129a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161299f90614b39565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612a17576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a0e90614bcb565b60405180910390fd5b612a22838383612f69565b612a2d6000826127e4565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612a7d91906148b9565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612ad49190614128565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612b93838383612f6e565b505050565b600081600001549050919050565b6001816000016000828254019250508190555050565b612bd6828260405180602001604052806000815250612f73565b5050565b612be26127dc565b73ffffffffffffffffffffffffffffffffffffffff16612c00611e38565b73ffffffffffffffffffffffffffffffffffffffff1614612c56576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c4d90614c37565b60405180910390fd5b565b600082612c658584612fce565b1490509392505050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612e0f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e0690614ca3565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051612f009190613540565b60405180910390a3505050565b612f18848484612932565b612f2484848484613024565b612f63576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f5a90614d35565b60405180910390fd5b50505050565b505050565b505050565b612f7d83836131ab565b612f8a6000848484613024565b612fc9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612fc090614d35565b60405180910390fd5b505050565b60008082905060005b84518110156130195761300482868381518110612ff757612ff66144de565b5b6020026020010151613384565b9150808061301190614d55565b915050612fd7565b508091505092915050565b60006130458473ffffffffffffffffffffffffffffffffffffffff166133af565b1561319e578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261306e6127dc565b8786866040518563ffffffff1660e01b81526004016130909493929190614df2565b6020604051808303816000875af19250505080156130cc57506040513d601f19601f820116820180604052508101906130c99190614e53565b60015b61314e573d80600081146130fc576040519150601f19603f3d011682016040523d82523d6000602084013e613101565b606091505b506000815103613146576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161313d90614d35565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506131a3565b600190505b949350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361321a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161321190614ecc565b60405180910390fd5b61322381612c6f565b15613263576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161325a90614f38565b60405180910390fd5b61326f60008383612f69565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546132bf9190614128565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461338060008383612f6e565b5050565b600081831061339c5761339782846133d2565b6133a7565b6133a683836133d2565b5b905092915050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b600082600052816020526040600020905092915050565b8280546133f590613dce565b90600052602060002090601f016020900481019282613417576000855561345e565b82601f1061343057803560ff191683800117855561345e565b8280016001018555821561345e579182015b8281111561345d578235825591602001919060010190613442565b5b50905061346b919061346f565b5090565b5b80821115613488576000816000905550600101613470565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6134d5816134a0565b81146134e057600080fd5b50565b6000813590506134f2816134cc565b92915050565b60006020828403121561350e5761350d613496565b5b600061351c848285016134e3565b91505092915050565b60008115159050919050565b61353a81613525565b82525050565b60006020820190506135556000830184613531565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561359557808201518184015260208101905061357a565b838111156135a4576000848401525b50505050565b6000601f19601f8301169050919050565b60006135c68261355b565b6135d08185613566565b93506135e0818560208601613577565b6135e9816135aa565b840191505092915050565b6000602082019050818103600083015261360e81846135bb565b905092915050565b6000819050919050565b61362981613616565b811461363457600080fd5b50565b60008135905061364681613620565b92915050565b60006020828403121561366257613661613496565b5b600061367084828501613637565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006136a482613679565b9050919050565b6136b481613699565b82525050565b60006020820190506136cf60008301846136ab565b92915050565b6136de81613699565b81146136e957600080fd5b50565b6000813590506136fb816136d5565b92915050565b6000806040838503121561371857613717613496565b5b6000613726858286016136ec565b925050602061373785828601613637565b9150509250929050565b60008060006060848603121561375a57613759613496565b5b6000613768868287016136ec565b9350506020613779868287016136ec565b925050604061378a86828701613637565b9150509250925092565b6000819050919050565b6137a781613794565b82525050565b60006020820190506137c2600083018461379e565b92915050565b6137d181613525565b81146137dc57600080fd5b50565b6000813590506137ee816137c8565b92915050565b60006020828403121561380a57613809613496565b5b6000613818848285016137df565b91505092915050565b600080fd5b600080fd5b600080fd5b60008083601f84011261384657613845613821565b5b8235905067ffffffffffffffff81111561386357613862613826565b5b60208301915083602082028301111561387f5761387e61382b565b5b9250929050565b6000806020838503121561389d5761389c613496565b5b600083013567ffffffffffffffff8111156138bb576138ba61349b565b5b6138c785828601613830565b92509250509250929050565b60008083601f8401126138e9576138e8613821565b5b8235905067ffffffffffffffff81111561390657613905613826565b5b6020830191508360208202830111156139225761392161382b565b5b9250929050565b600080602083850312156139405761393f613496565b5b600083013567ffffffffffffffff81111561395e5761395d61349b565b5b61396a858286016138d3565b92509250509250929050565b60006020828403121561398c5761398b613496565b5b600061399a848285016136ec565b91505092915050565b6139ac81613616565b82525050565b60006020820190506139c760008301846139a3565b92915050565b60008083601f8401126139e3576139e2613821565b5b8235905067ffffffffffffffff811115613a00576139ff613826565b5b602083019150836001820283011115613a1c57613a1b61382b565b5b9250929050565b60008060208385031215613a3a57613a39613496565b5b600083013567ffffffffffffffff811115613a5857613a5761349b565b5b613a64858286016139cd565b92509250509250929050565b60008060408385031215613a8757613a86613496565b5b6000613a95858286016136ec565b9250506020613aa6858286016137df565b9150509250929050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b613aed826135aa565b810181811067ffffffffffffffff82111715613b0c57613b0b613ab5565b5b80604052505050565b6000613b1f61348c565b9050613b2b8282613ae4565b919050565b600067ffffffffffffffff821115613b4b57613b4a613ab5565b5b613b54826135aa565b9050602081019050919050565b82818337600083830152505050565b6000613b83613b7e84613b30565b613b15565b905082815260208101848484011115613b9f57613b9e613ab0565b5b613baa848285613b61565b509392505050565b600082601f830112613bc757613bc6613821565b5b8135613bd7848260208601613b70565b91505092915050565b60008060008060808587031215613bfa57613bf9613496565b5b6000613c08878288016136ec565b9450506020613c19878288016136ec565b9350506040613c2a87828801613637565b925050606085013567ffffffffffffffff811115613c4b57613c4a61349b565b5b613c5787828801613bb2565b91505092959194509250565b60008083601f840112613c7957613c78613821565b5b8235905067ffffffffffffffff811115613c9657613c95613826565b5b602083019150836020820283011115613cb257613cb161382b565b5b9250929050565b60008060208385031215613cd057613ccf613496565b5b600083013567ffffffffffffffff811115613cee57613ced61349b565b5b613cfa85828601613c63565b92509250509250929050565b613d0f81613794565b8114613d1a57600080fd5b50565b600081359050613d2c81613d06565b92915050565b600060208284031215613d4857613d47613496565b5b6000613d5684828501613d1d565b91505092915050565b60008060408385031215613d7657613d75613496565b5b6000613d84858286016136ec565b9250506020613d95858286016136ec565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680613de657607f821691505b602082108103613df957613df8613d9f565b5b50919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b6000613e5b602183613566565b9150613e6682613dff565b604082019050919050565b60006020820190508181036000830152613e8a81613e4e565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60008201527f6b656e206f776e6572206e6f7220617070726f76656420666f7220616c6c0000602082015250565b6000613eed603e83613566565b9150613ef882613e91565b604082019050919050565b60006020820190508181036000830152613f1c81613ee0565b9050919050565b7f5472616e7366657273206172652064697361626c656400000000000000000000600082015250565b6000613f59601683613566565b9150613f6482613f23565b602082019050919050565b60006020820190508181036000830152613f8881613f4c565b9050919050565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b6000613feb603183613566565b9150613ff682613f8f565b604082019050919050565b6000602082019050818103600083015261401a81613fde565b9050919050565b7f546f6b656e20697320657870697265642e000000000000000000000000000000600082015250565b6000614057601183613566565b915061406282614021565b602082019050919050565b600060208201905081810360008301526140868161404a565b9050919050565b7f486178786f722061636365737320626c6f636b65640000000000000000000000600082015250565b60006140c3601583613566565b91506140ce8261408d565b602082019050919050565b600060208201905081810360008301526140f2816140b6565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061413382613616565b915061413e83613616565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614173576141726140f9565b5b828201905092915050565b7f53616c65206973206e6f74206163746976652e00000000000000000000000000600082015250565b60006141b4601383613566565b91506141bf8261417e565b602082019050919050565b600060208201905081810360008301526141e3816141a7565b9050919050565b7f4d696e74696e67207468697320746f6b656e20776f756c64206578636565642060008201527f746f74616c20737570706c792e00000000000000000000000000000000000000602082015250565b6000614246602d83613566565b9150614251826141ea565b604082019050919050565b6000602082019050818103600083015261427581614239565b9050919050565b600060408201905061429160008301856139a3565b61429e60208301846139a3565b9392505050565b7f507269636520646964206e6f74206368616e67652e0000000000000000000000600082015250565b60006142db601583613566565b91506142e6826142a5565b602082019050919050565b6000602082019050818103600083015261430a816142ce565b9050919050565b7f507269766174652073616c652069732063757272656e746c79206e6f7420616360008201527f746976652e000000000000000000000000000000000000000000000000000000602082015250565b600061436d602583613566565b915061437882614311565b604082019050919050565b6000602082019050818103600083015261439c81614360565b9050919050565b7f4164647265737320616c726561647920636c61696d6564000000000000000000600082015250565b60006143d9601783613566565b91506143e4826143a3565b602082019050919050565b60006020820190508181036000830152614408816143cc565b9050919050565b60008160601b9050919050565b60006144278261440f565b9050919050565b60006144398261441c565b9050919050565b61445161444c82613699565b61442e565b82525050565b60006144638284614440565b60148201915081905092915050565b7f496e76616c6964204d65726b6c652050726f6f662e0000000000000000000000600082015250565b60006144a8601583613566565b91506144b382614472565b602082019050919050565b600060208201905081810360008301526144d78161449b565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f546f6b656e20646f6573206e6f742065786973742e0000000000000000000000600082015250565b6000614543601583613566565b915061454e8261450d565b602082019050919050565b6000602082019050818103600083015261457281614536565b9050919050565b7f546f6b656e2068617320657870697265642e20506c656173652072656e65772060008201527f796f757220746f6b656e21000000000000000000000000000000000000000000602082015250565b60006145d5602b83613566565b91506145e082614579565b604082019050919050565b60006020820190508181036000830152614604816145c8565b9050919050565b7f4552433732313a20696e76616c696420746f6b656e2049440000000000000000600082015250565b6000614641601883613566565b915061464c8261460b565b602082019050919050565b6000602082019050818103600083015261467081614634565b9050919050565b7f52656365697665722063616e6e6f74206265207a65726f20616464726573732e600082015250565b60006146ad602083613566565b91506146b882614677565b602082019050919050565b600060208201905081810360008301526146dc816146a0565b9050919050565b7f496e646976696475616c20616c7265616479206f776e73206120746f6b656e2e600082015250565b6000614719602083613566565b9150614724826146e3565b602082019050919050565b600060208201905081810360008301526147488161470c565b9050919050565b7f4552433732313a2061646472657373207a65726f206973206e6f74206120766160008201527f6c6964206f776e65720000000000000000000000000000000000000000000000602082015250565b60006147ab602983613566565b91506147b68261474f565b604082019050919050565b600060208201905081810360008301526147da8161479e565b9050919050565b7f496e636f727265637420616d6f756e74206f662065746865722073656e742e00600082015250565b6000614817601f83613566565b9150614822826147e1565b602082019050919050565b600060208201905081810360008301526148468161480a565b9050919050565b7f52656e6577616c73206172652063757272656e746c792064697361626c656400600082015250565b6000614883601f83613566565b915061488e8261484d565b602082019050919050565b600060208201905081810360008301526148b281614876565b9050919050565b60006148c482613616565b91506148cf83613616565b9250828210156148e2576148e16140f9565b5b828203905092915050565b7f537570706c792063616e6e6f742066616c6c2062656c6f77206d696e7465642060008201527f746f6b656e732e00000000000000000000000000000000000000000000000000602082015250565b6000614949602783613566565b9150614954826148ed565b604082019050919050565b600060208201905081810360008301526149788161493c565b9050919050565b600081905092915050565b60008190508160005260206000209050919050565b600081546149ac81613dce565b6149b6818661497f565b945060018216600081146149d157600181146149e257614a15565b60ff19831686528186019350614a15565b6149eb8561498a565b60005b83811015614a0d578154818901526001820191506020810190506149ee565b838801955050505b50505092915050565b6000614a2a828461499f565b915081905092915050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000614a91602683613566565b9150614a9c82614a35565b604082019050919050565b60006020820190508181036000830152614ac081614a84565b9050919050565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b6000614b23602583613566565b9150614b2e82614ac7565b604082019050919050565b60006020820190508181036000830152614b5281614b16565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000614bb5602483613566565b9150614bc082614b59565b604082019050919050565b60006020820190508181036000830152614be481614ba8565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000614c21602083613566565b9150614c2c82614beb565b602082019050919050565b60006020820190508181036000830152614c5081614c14565b9050919050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b6000614c8d601983613566565b9150614c9882614c57565b602082019050919050565b60006020820190508181036000830152614cbc81614c80565b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b6000614d1f603283613566565b9150614d2a82614cc3565b604082019050919050565b60006020820190508181036000830152614d4e81614d12565b9050919050565b6000614d6082613616565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203614d9257614d916140f9565b5b600182019050919050565b600081519050919050565b600082825260208201905092915050565b6000614dc482614d9d565b614dce8185614da8565b9350614dde818560208601613577565b614de7816135aa565b840191505092915050565b6000608082019050614e0760008301876136ab565b614e1460208301866136ab565b614e2160408301856139a3565b8181036060830152614e338184614db9565b905095945050505050565b600081519050614e4d816134cc565b92915050565b600060208284031215614e6957614e68613496565b5b6000614e7784828501614e3e565b91505092915050565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b6000614eb6602083613566565b9150614ec182614e80565b602082019050919050565b60006020820190508181036000830152614ee581614ea9565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b6000614f22601c83613566565b9150614f2d82614eec565b602082019050919050565b60006020820190508181036000830152614f5181614f15565b905091905056fea264697066735822122055d7456cd3280bb7ffc5b49b01325f52e82ec32e1ff36f91b79d3e359b145be364736f6c634300080d0033

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

000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000035697066733a2f2f516d547153487a37796b614c7546623862365235584c38745970464570594139796b524b716f7333644c7059447200000000000000000000000000000000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : tokenURI_ (string): ipfs://QmTqSHz7ykaLuFb8b6R5XL8tYpFEpYA9ykRKqos3dLpYDr
Arg [1] : contractURI_ (string):

-----Encoded View---------------
6 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000035
Arg [3] : 697066733a2f2f516d547153487a37796b614c7546623862365235584c387459
Arg [4] : 70464570594139796b524b716f7333644c705944720000000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000000


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.