ETH Price: $3,508.57 (+14.28%)
Gas: 43 Gwei

Token

HayApe NFT (HAYAPE)
 

Overview

Max Total Supply

9,999 HAYAPE

Holders

5

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 HAYAPE
0xa6c199481c562e329cb9cedc1f3a6346d5810911
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:
HayApe

Compiler Version
v0.8.1+commit.df193b15

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 14 : HayApe.sol
//**************************************************************
//           _______             _______  _______  _______
// |\     /|(  ___  )|\     /|  (  ___  )(  ____ )(  ____ \
// | )   ( || (   ) |( \   / )  | (   ) || (    )|| (    \/
// | (___) || (___) | \ (_) /   | (___) || (____)|| (__
// |  ___  ||  ___  |  \   /    |  ___  ||  _____)|  __)
// | (   ) || (   ) |   ) (     | (   ) || (      | (
// | )   ( || )   ( |   | |     | )   ( || )      | (____/\
// |/     \||/     \|   \_/     |/     \||/       (_______/
//**************************************************************

// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;

import "@openzeppelin/contracts/token/ERC721/ERC721.sol";
import "@openzeppelin/contracts/utils/Counters.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/math/SafeMath.sol";
import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol";

contract HayApe is ERC721, Ownable {
    using Counters for Counters.Counter;
    using SafeMath for uint256;

    // Constants
    uint256 public constant TOTAL_SUPPLY = 9999;
    uint256 public constant TOKENS_PER_RANGE = 1000;

    uint256 public constant START_PRICE = 0.07 ether;
    uint256 public constant PRICE_INCREMENT_PER_RANGE = 0.005 ether;

    uint256 public constant MAX_MINT_PER_TX = 5;

    bool public publicMintingOpen = false;
    bool public whitelistMintintgOpen = false;

    Counters.Counter private currentTokenId;

    // Merkle tree root hash, used for whitelisting 
    bytes32 public merkleRoot =
        0x7f65c783ece3fea6555a5ff9a57c1d59b9cac547060a7eeac8bda34ac1f923ab;
    mapping(address => bool) public whitelistClaimed;

    // Base token URI used as a prefix by tokenURI().
    string public baseTokenURI;

    constructor() ERC721("HayApe NFT", "HAYAPE") {
        baseTokenURI = "";
    }

    // Get the current price range based on tokenId
    function _getRange(uint256 tokenId) private pure returns (uint256) {
        uint256 currRange = tokenId.div(TOKENS_PER_RANGE);
        return currRange;
    }

    // Get different stats and counts (used by a web dApp)
    function getStats()
        public
        view
        returns (
            uint256,
            uint256,
            uint256,
            uint256,
            uint256,
            uint256,
            uint256,
            uint256,
            bool
        )
    {
        uint256 currentPrice = getPrice(1);
        uint256 currentRange = getCurrentRange();
        uint256 maxRanges = totalRanges();
        bool mintingAllowed = publicMintingOpen;

        return (
            TOTAL_SUPPLY,
            currentTokenId.current(),
            START_PRICE,
            currentPrice,
            PRICE_INCREMENT_PER_RANGE,
            currentRange,
            maxRanges,
            TOKENS_PER_RANGE,
            mintingAllowed
        );
    }

    // Returns total supply, max tokens that could be minted.
    function totalSupply() public pure returns (uint256) {
        return TOTAL_SUPPLY;
    }

    // Return currently minted tokens available.
    function currentSupply() public view returns (uint256) {
        uint256 total = currentTokenId.current();
        return total;
    }

    // Max price ranges based on total supply and tokens per range.
    function totalRanges() public pure returns (uint256) {
        uint256 count = TOTAL_SUPPLY.div(TOKENS_PER_RANGE);
        return count;
    }

    // Get a price by a range number
    function getPriceByRange(uint256 range) public pure returns (uint256) {
        return START_PRICE.add(range.mul(PRICE_INCREMENT_PER_RANGE));
    }

    // Get current range, for the next token minted
    function getCurrentRange() public view returns (uint256) {
        uint256 tokenId = currentTokenId.current();
        return _getRange(tokenId);
    }

    // Get price based on how many tokens to be minted.
    function getPrice(uint256 count) public view returns (uint256) {
        uint256 tokenId = currentTokenId.current();

        uint256 finalTokenId = tokenId.add(count);
        require(finalTokenId < TOTAL_SUPPLY, "Max supply reached");

        uint256 currRange = _getRange(tokenId);

        uint256 currRangeMax = TOKENS_PER_RANGE.add(
            currRange.mul(TOKENS_PER_RANGE)
        ) - 1;

        if (finalTokenId <= currRangeMax) {
            uint256 price = getPriceByRange(currRange);
            return price.mul(count);
        }

        uint256 nextRange = _getRange(finalTokenId);

        uint256 tokensInNextRange = finalTokenId.sub(currRangeMax);
        uint256 tokensInCurrRange = count.sub(tokensInNextRange);

        uint256 priceInCurrRange = getPriceByRange(currRange);
        uint256 priceInNextRange = getPriceByRange(nextRange);

        uint256 totalInCurrentRange = priceInCurrRange.mul(tokensInCurrRange);
        uint256 totalInNextRange = priceInNextRange.mul(tokensInNextRange);

        uint256 totalPrice = totalInCurrentRange.add(totalInNextRange);

        return totalPrice;
    }

    // List all tokens owned by the address.
    function getTokensByOwner(address owner)
        public
        view
        returns (uint256[] memory)
    {
        uint256 count = balanceOf(owner);
        uint256[] memory tokens = new uint256[](count);

        uint256 max = currentTokenId.current();
        uint256 _currIndex = 0;

        for (uint256 i = 1; i <= max; i++) {
            if (ownerOf(i) == owner) {
                tokens[_currIndex] = i;
                _currIndex = _currIndex.add(1);
            }
        }
        return tokens;
    }

    // Mint a token only when publicMintingOpen = true
    function mintTo(address recipient, uint256 count) public payable {
        require(
            publicMintingOpen == true && whitelistMintintgOpen == false,
            "Public minting is not open right now!"
        );
        require(count >= 1, "Must mint at least 1 token");
        require(
            count <= MAX_MINT_PER_TX,
            "Cannot mint more than max mint per transaction"
        );

        uint256 tokenId = currentTokenId.current();

        require(tokenId.add(count) < TOTAL_SUPPLY, "Max supply reached");

        uint256 price = getPrice(count);

        require(
            msg.value == price,
            "Transaction value did not equal to the total mint price"
        );

        for (uint8 i = 0; i < count; i++) {
            currentTokenId.increment();
            uint256 newItemId = currentTokenId.current();
            _safeMint(recipient, newItemId);
        }
    }

    // Mint token only when whitelistMintintgOpen = true
    function whitelistMintTo(
        address recipient,
        uint256 count,
        bytes32[] calldata proof
    ) public payable {
        require(
            publicMintingOpen == false && whitelistMintintgOpen == true,
            "whitelistMintintgOpen minting is not open right now!"
        );
        require(!whitelistClaimed[recipient], "Already minted");
        require(isWhitelisted(recipient, proof), "Not whitelisted");

        require(count >= 1, "Must mint at least 1 token");
        require(
            count <= MAX_MINT_PER_TX,
            "Cannot mint more than max mint per transaction"
        );

        uint256 tokenId = currentTokenId.current();

        require(tokenId.add(count) < TOTAL_SUPPLY, "Max supply reached");

        uint256 price = getPrice(count);

        require(
            msg.value == price,
            "Transaction value did not equal to the total mint price"
        );

        for (uint8 i = 0; i < count; i++) {
            currentTokenId.increment();
            uint256 newItemId = currentTokenId.current();
            _safeMint(recipient, newItemId);
        }

        whitelistClaimed[recipient] = true;
    }

    // Mint token used only by admins
    function adminMintTo(address recipient, uint256 count) public onlyOwner {
        uint256 tokenId = currentTokenId.current();
        require(tokenId.add(count) < TOTAL_SUPPLY, "Max supply reached");

        for (uint8 i = 0; i < count; i++) {
            currentTokenId.increment();
            uint256 newItemId = currentTokenId.current();
            _safeMint(recipient, newItemId);
        }
    }

    // Enables public minting and disables a whitelist minting
    function enablePublicMinting() public onlyOwner {
        publicMintingOpen = true;
        whitelistMintintgOpen = false;
    }

    // Enables whitelist minting and disables a public minting
    function enableWhitelistMinting() public onlyOwner {
        publicMintingOpen = false;
        whitelistMintintgOpen = true;
    }

    // Stops all minting
    function stopMinting() public onlyOwner {
        publicMintingOpen = false;
        whitelistMintintgOpen = false;
    }

    // Check if the address is included in whitelist, by merkle tree.
    function isWhitelisted(address recipient, bytes32[] calldata proof)
        public
        view
        returns (bool)
    {
        bytes32 leaf = keccak256(abi.encodePacked(recipient));
        return MerkleProof.verify(proof, merkleRoot, leaf);
    }

    // Returns an URI for a given token ID
    function _baseURI() internal view virtual override returns (string memory) {
        return baseTokenURI;
    }

    // Sets the base token URI prefix.
    function setBaseTokenURI(string memory _baseTokenURI) public onlyOwner {
        baseTokenURI = _baseTokenURI;
    }

    // Update the markle root hash
    function setMerkleRoot(bytes32 _merkleRoot) public onlyOwner {
        require(_merkleRoot != merkleRoot, "Merkle root will be unchanged!");
        merkleRoot = _merkleRoot;
    }

    function withdraw(address payable payee, uint256 amount) public onlyOwner {
        uint256 balance = address(this).balance;
        require(balance > 0, "Balance must be more than 0");
        require(amount > 0, "Amount must be more than 0");
        require(amount <= balance, "Amount is more than balance");
        payee.transfer(amount);
    }

    function withdrawAll(address payable payee) public onlyOwner {
        uint256 balance = address(this).balance;
        require(balance > 0, "Balance must be more than 0");
        payee.transfer(balance);
    }
}

File 2 of 14 : ERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.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: balance query for the zero address");
        return _balances[owner];
    }

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

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

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

    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token");

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

        _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 a {Approval} event.
     */
    function _approve(address to, uint256 tokenId) internal virtual {
        _tokenApprovals[tokenId] = to;
        emit Approval(ERC721.ownerOf(tokenId), to, tokenId);
    }

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

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

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

    /**
     * @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 3 of 14 : 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 4 of 14 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (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 Returns the address of the current owner.
     */
    function owner() public view virtual returns (address) {
        return _owner;
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
        _;
    }

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

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

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

File 5 of 14 : SafeMath.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/math/SafeMath.sol)

pragma solidity ^0.8.0;

// CAUTION
// This version of SafeMath should only be used with Solidity 0.8 or later,
// because it relies on the compiler's built in overflow checks.

/**
 * @dev Wrappers over Solidity's arithmetic operations.
 *
 * NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler
 * now has built in overflow checking.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            uint256 c = a + b;
            if (c < a) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the substraction of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b > a) return (false, 0);
            return (true, a - b);
        }
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
            // benefit is lost if 'b' is also tested.
            // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
            if (a == 0) return (true, 0);
            uint256 c = a * b;
            if (c / a != b) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the division of two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a / b);
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a % b);
        }
    }

    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        return a + b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return a - b;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        return a * b;
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator.
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return a / b;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        return a % b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {trySub}.
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b <= a, errorMessage);
            return a - b;
        }
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a / b;
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting with custom message when dividing by zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryMod}.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a % b;
        }
    }
}

File 6 of 14 : MerkleProof.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (utils/cryptography/MerkleProof.sol)

pragma solidity ^0.8.0;

/**
 * @dev These functions deal with verification of Merkle Trees 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.
 */
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 Returns the rebuilt hash obtained by traversing a Merklee 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++) {
            bytes32 proofElement = proof[i];
            if (computedHash <= proofElement) {
                // Hash(current computed hash + current element of the proof)
                computedHash = _efficientHash(computedHash, proofElement);
            } else {
                // Hash(current element of the proof + current computed hash)
                computedHash = _efficientHash(proofElement, computedHash);
            }
        }
        return computedHash;
    }

    function _efficientHash(bytes32 a, bytes32 b) private pure returns (bytes32 value) {
        assembly {
            mstore(0x00, a)
            mstore(0x20, b)
            value := keccak256(0x00, 0x40)
        }
    }
}

File 7 of 14 : IERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (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`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

    /**
     * @dev Transfers `tokenId` token from `from` to `to`.
     *
     * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

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

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

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

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

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

File 8 of 14 : IERC721Receiver.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol)

pragma solidity ^0.8.0;

/**
 * @title ERC721 token receiver interface
 * @dev Interface for any contract that wants to support safeTransfers
 * from ERC721 asset contracts.
 */
interface IERC721Receiver {
    /**
     * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom}
     * by `operator` from `from`, this function is called.
     *
     * It must return its Solidity selector to confirm the token transfer.
     * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted.
     *
     * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`.
     */
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}

File 9 of 14 : 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 14 : Address.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.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

                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

File 11 of 14 : 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 12 of 14 : Strings.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Strings.sol)

pragma solidity ^0.8.0;

/**
 * @dev String operations.
 */
library Strings {
    bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef";

    /**
     * @dev Converts a `uint256` to its ASCII `string` decimal representation.
     */
    function toString(uint256 value) internal pure returns (string memory) {
        // Inspired by OraclizeAPI's implementation - MIT licence
        // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol

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

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

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

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

pragma solidity ^0.8.0;

import "./IERC165.sol";

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

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

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_MINT_PER_TX","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PRICE_INCREMENT_PER_RANGE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"START_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"TOKENS_PER_RANGE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"TOTAL_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"count","type":"uint256"}],"name":"adminMintTo","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":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseTokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"currentSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"enablePublicMinting","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"enableWhitelistMinting","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getCurrentRange","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"count","type":"uint256"}],"name":"getPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"range","type":"uint256"}],"name":"getPriceByRange","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"getStats","outputs":[{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"getTokensByOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"}],"name":"isWhitelisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"merkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"count","type":"uint256"}],"name":"mintTo","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicMintingOpen","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":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_baseTokenURI","type":"string"}],"name":"setBaseTokenURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_merkleRoot","type":"bytes32"}],"name":"setMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"stopMinting","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalRanges","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"whitelistClaimed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"count","type":"uint256"},{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"}],"name":"whitelistMintTo","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"whitelistMintintgOpen","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address payable","name":"payee","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address payable","name":"payee","type":"address"}],"name":"withdrawAll","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526000600660146101000a81548160ff0219169083151502179055506000600660156101000a81548160ff0219169083151502179055507f7f65c783ece3fea6555a5ff9a57c1d59b9cac547060a7eeac8bda34ac1f923ab60001b6008553480156200006e57600080fd5b506040518060400160405280600a81526020017f486179417065204e4654000000000000000000000000000000000000000000008152506040518060400160405280600681526020017f48415941504500000000000000000000000000000000000000000000000000008152508160009080519060200190620000f39291906200022b565b5080600190805190602001906200010c9291906200022b565b5050506200012f620001236200015d60201b60201c565b6200016560201b60201c565b60405180602001604052806000815250600a9080519060200190620001569291906200022b565b5062000340565b600033905090565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200023990620002db565b90600052602060002090601f0160209004810192826200025d5760008555620002a9565b82601f106200027857805160ff1916838001178555620002a9565b82800160010185558215620002a9579182015b82811115620002a85782518255916020019190600101906200028b565b5b509050620002b89190620002bc565b5090565b5b80821115620002d7576000816000905550600101620002bd565b5090565b60006002820490506001821680620002f457607f821691505b602082108114156200030b576200030a62000311565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6151a280620003506000396000f3fe6080604052600436106102725760003560e01c8063715018a61161014f578063bea7ec69116100c1578063e985e9c51161007a578063e985e9c514610956578063f0dff7d314610993578063f2fde38b146109be578063f3fef3a3146109e7578063f7beb98a14610a10578063fa09e63014610a2757610272565b8063bea7ec6914610825578063c59d484714610841578063c87b56dd14610874578063d547cfb7146108b1578063db4bec44146108dc578063e75722301461091957610272565b80638ecad721116101135780638ecad72114610727578063902d55a51461075257806395d89b411461077d578063a0363e92146107a8578063a22cb465146107d3578063b88d4fde146107fc57610272565b8063715018a614610654578063771282f61461066b5780637898ffab146106965780637cb64759146106d35780638da5cb5b146106fc57610272565b80633609ac8f116101e857806342842e0e116101ac57806342842e0e1461052d578063449a52f8146105565780635a23dd99146105725780636352211e146105af5780636e0d5d18146105ec57806370a082311461061757610272565b80633609ac8f1461045a5780633d6a5745146104855780633e3e0b12146104ae57806340398d67146104c5578063405103ba1461050257610272565b806318160ddd1161023a57806318160ddd1461035c5780631883eb5d1461038757806323b872dd146103b2578063253fbcad146103db5780632eb4a7ab1461040657806330176e131461043157610272565b806301ffc9a71461027757806306fdde03146102b4578063081812fc146102df578063095ea7b31461031c5780630b7b4bef14610345575b600080fd5b34801561028357600080fd5b5061029e600480360381019061029991906139b7565b610a50565b6040516102ab919061408a565b60405180910390f35b3480156102c057600080fd5b506102c9610b32565b6040516102d691906140c0565b60405180910390f35b3480156102eb57600080fd5b5061030660048036038101906103019190613a4a565b610bc4565b6040516103139190614001565b60405180910390f35b34801561032857600080fd5b50610343600480360381019061033e91906138e6565b610c49565b005b34801561035157600080fd5b5061035a610d61565b005b34801561036857600080fd5b50610371610e15565b60405161037e9190614462565b60405180910390f35b34801561039357600080fd5b5061039c610e1f565b6040516103a99190614462565b60405180910390f35b3480156103be57600080fd5b506103d960048036038101906103d49190613788565b610e3d565b005b3480156103e757600080fd5b506103f0610e9d565b6040516103fd9190614462565b60405180910390f35b34801561041257600080fd5b5061041b610ec0565b60405161042891906140a5565b60405180910390f35b34801561043d57600080fd5b5061045860048036038101906104539190613a09565b610ec6565b005b34801561046657600080fd5b5061046f610f5c565b60405161047c9190614462565b60405180910390f35b34801561049157600080fd5b506104ac60048036038101906104a791906138e6565b610f67565b005b3480156104ba57600080fd5b506104c3611091565b005b3480156104d157600080fd5b506104ec60048036038101906104e791906136be565b611145565b6040516104f99190614068565b60405180910390f35b34801561050e57600080fd5b5061051761129d565b604051610524919061408a565b60405180910390f35b34801561053957600080fd5b50610554600480360381019061054f9190613788565b6112b0565b005b610570600480360381019061056b91906138e6565b6112d0565b005b34801561057e57600080fd5b5061059960048036038101906105949190613852565b6114cb565b6040516105a6919061408a565b60405180910390f35b3480156105bb57600080fd5b506105d660048036038101906105d19190613a4a565b61154f565b6040516105e39190614001565b60405180910390f35b3480156105f857600080fd5b50610601611601565b60405161060e9190614462565b60405180910390f35b34801561062357600080fd5b5061063e600480360381019061063991906136be565b61160c565b60405161064b9190614462565b60405180910390f35b34801561066057600080fd5b506106696116c4565b005b34801561067757600080fd5b5061068061174c565b60405161068d9190614462565b60405180910390f35b3480156106a257600080fd5b506106bd60048036038101906106b89190613a4a565b611762565b6040516106ca9190614462565b60405180910390f35b3480156106df57600080fd5b506106fa60048036038101906106f5919061398e565b61179e565b005b34801561070857600080fd5b50610711611869565b60405161071e9190614001565b60405180910390f35b34801561073357600080fd5b5061073c611893565b6040516107499190614462565b60405180910390f35b34801561075e57600080fd5b50610767611898565b6040516107749190614462565b60405180910390f35b34801561078957600080fd5b5061079261189e565b60405161079f91906140c0565b60405180910390f35b3480156107b457600080fd5b506107bd611930565b6040516107ca9190614462565b60405180910390f35b3480156107df57600080fd5b506107fa60048036038101906107f591906138aa565b611936565b005b34801561080857600080fd5b50610823600480360381019061081e91906137d7565b61194c565b005b61083f600480360381019061083a9190613922565b6119ae565b005b34801561084d57600080fd5b50610856611cda565b60405161086b9998979695949392919061447d565b60405180910390f35b34801561088057600080fd5b5061089b60048036038101906108969190613a4a565b611d66565b6040516108a891906140c0565b60405180910390f35b3480156108bd57600080fd5b506108c6611e0d565b6040516108d391906140c0565b60405180910390f35b3480156108e857600080fd5b5061090360048036038101906108fe91906136be565b611e9b565b604051610910919061408a565b60405180910390f35b34801561092557600080fd5b50610940600480360381019061093b9190613a4a565b611ebb565b60405161094d9190614462565b60405180910390f35b34801561096257600080fd5b5061097d6004803603810190610978919061374c565b61204d565b60405161098a919061408a565b60405180910390f35b34801561099f57600080fd5b506109a86120e1565b6040516109b5919061408a565b60405180910390f35b3480156109ca57600080fd5b506109e560048036038101906109e091906136be565b6120f4565b005b3480156109f357600080fd5b50610a0e6004803603810190610a099190613710565b6121ec565b005b348015610a1c57600080fd5b50610a25612382565b005b348015610a3357600080fd5b50610a4e6004803603810190610a4991906136e7565b612436565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610b1b57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610b2b5750610b2a82612545565b5b9050919050565b606060008054610b4190614801565b80601f0160208091040260200160405190810160405280929190818152602001828054610b6d90614801565b8015610bba5780601f10610b8f57610100808354040283529160200191610bba565b820191906000526020600020905b815481529060010190602001808311610b9d57829003601f168201915b5050505050905090565b6000610bcf826125af565b610c0e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c0590614342565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610c548261154f565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610cc5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cbc906143a2565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610ce461261b565b73ffffffffffffffffffffffffffffffffffffffff161480610d135750610d1281610d0d61261b565b61204d565b5b610d52576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d4990614262565b60405180910390fd5b610d5c8383612623565b505050565b610d6961261b565b73ffffffffffffffffffffffffffffffffffffffff16610d87611869565b73ffffffffffffffffffffffffffffffffffffffff1614610ddd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dd490614362565b60405180910390fd5b6000600660146101000a81548160ff0219169083151502179055506001600660156101000a81548160ff021916908315150217905550565b600061270f905090565b600080610e2c60076126dc565b9050610e37816126ea565b91505090565b610e4e610e4861261b565b8261270d565b610e8d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e84906143e2565b60405180910390fd5b610e988383836127eb565b505050565b600080610eb76103e861270f612a5290919063ffffffff16565b90508091505090565b60085481565b610ece61261b565b73ffffffffffffffffffffffffffffffffffffffff16610eec611869565b73ffffffffffffffffffffffffffffffffffffffff1614610f42576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f3990614362565b60405180910390fd5b80600a9080519060200190610f5892919061346e565b5050565b66f8b0a10e47000081565b610f6f61261b565b73ffffffffffffffffffffffffffffffffffffffff16610f8d611869565b73ffffffffffffffffffffffffffffffffffffffff1614610fe3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fda90614362565b60405180910390fd5b6000610fef60076126dc565b905061270f6110078383612a6890919063ffffffff16565b10611047576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161103e90614402565b60405180910390fd5b60005b828160ff16101561108b5761105f6007612a7e565b600061106b60076126dc565b90506110778582612a94565b508080611083906148ad565b91505061104a565b50505050565b61109961261b565b73ffffffffffffffffffffffffffffffffffffffff166110b7611869565b73ffffffffffffffffffffffffffffffffffffffff161461110d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161110490614362565b60405180910390fd5b6000600660146101000a81548160ff0219169083151502179055506000600660156101000a81548160ff021916908315150217905550565b606060006111528361160c565b905060008167ffffffffffffffff811115611196577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280602002602001820160405280156111c45781602001602082028036833780820191505090505b50905060006111d360076126dc565b9050600080600190505b828111611290578673ffffffffffffffffffffffffffffffffffffffff166112048261154f565b73ffffffffffffffffffffffffffffffffffffffff16141561127d578084838151811061125a577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101818152505061127a600183612a6890919063ffffffff16565b91505b808061128890614864565b9150506111dd565b5082945050505050919050565b600660159054906101000a900460ff1681565b6112cb8383836040518060200160405280600081525061194c565b505050565b60011515600660149054906101000a900460ff161515148015611306575060001515600660159054906101000a900460ff161515145b611345576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161133c90614202565b60405180910390fd5b6001811015611389576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161138090614182565b60405180910390fd5b60058111156113cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113c490614422565b60405180910390fd5b60006113d960076126dc565b905061270f6113f18383612a6890919063ffffffff16565b10611431576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161142890614402565b60405180910390fd5b600061143c83611ebb565b9050803414611480576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611477906143c2565b60405180910390fd5b60005b838160ff1610156114c4576114986007612a7e565b60006114a460076126dc565b90506114b08682612a94565b5080806114bc906148ad565b915050611483565b5050505050565b600080846040516020016114df9190613fc2565b604051602081830303815290604052805190602001209050611545848480806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f8201169050808301925050505050505060085483612ab2565b9150509392505050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156115f8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115ef906142e2565b60405180910390fd5b80915050919050565b6611c37937e0800081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561167d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611674906142c2565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6116cc61261b565b73ffffffffffffffffffffffffffffffffffffffff166116ea611869565b73ffffffffffffffffffffffffffffffffffffffff1614611740576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161173790614362565b60405180910390fd5b61174a6000612ac9565b565b60008061175960076126dc565b90508091505090565b60006117976117816611c37937e0800084612b8f90919063ffffffff16565b66f8b0a10e470000612a6890919063ffffffff16565b9050919050565b6117a661261b565b73ffffffffffffffffffffffffffffffffffffffff166117c4611869565b73ffffffffffffffffffffffffffffffffffffffff161461181a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161181190614362565b60405180910390fd5b60085481141561185f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611856906141a2565b60405180910390fd5b8060088190555050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600581565b61270f81565b6060600180546118ad90614801565b80601f01602080910402602001604051908101604052809291908181526020018280546118d990614801565b80156119265780601f106118fb57610100808354040283529160200191611926565b820191906000526020600020905b81548152906001019060200180831161190957829003601f168201915b5050505050905090565b6103e881565b61194861194161261b565b8383612ba5565b5050565b61195d61195761261b565b8361270d565b61199c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611993906143e2565b60405180910390fd5b6119a884848484612d12565b50505050565b60001515600660149054906101000a900460ff1615151480156119e4575060011515600660159054906101000a900460ff161515145b611a23576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a1a906142a2565b60405180910390fd5b600960008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615611ab0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aa7906140e2565b60405180910390fd5b611abb8483836114cb565b611afa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611af190614282565b60405180910390fd5b6001831015611b3e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b3590614182565b60405180910390fd5b6005831115611b82576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b7990614422565b60405180910390fd5b6000611b8e60076126dc565b905061270f611ba68583612a6890919063ffffffff16565b10611be6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bdd90614402565b60405180910390fd5b6000611bf185611ebb565b9050803414611c35576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c2c906143c2565b60405180910390fd5b60005b858160ff161015611c7957611c4d6007612a7e565b6000611c5960076126dc565b9050611c658882612a94565b508080611c71906148ad565b915050611c38565b506001600960008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550505050505050565b600080600080600080600080600080611cf36001611ebb565b90506000611cff610e1f565b90506000611d0b610e9d565b90506000600660149054906101000a900460ff16905061270f611d2e60076126dc565b66f8b0a10e470000866611c37937e0800087876103e8889c509c509c509c509c509c509c509c509c5050505050909192939495969798565b6060611d71826125af565b611db0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611da790614382565b60405180910390fd5b6000611dba612d6e565b90506000815111611dda5760405180602001604052806000815250611e05565b80611de484612e00565b604051602001611df5929190613fdd565b6040516020818303038152906040525b915050919050565b600a8054611e1a90614801565b80601f0160208091040260200160405190810160405280929190818152602001828054611e4690614801565b8015611e935780601f10611e6857610100808354040283529160200191611e93565b820191906000526020600020905b815481529060010190602001808311611e7657829003601f168201915b505050505081565b60096020528060005260406000206000915054906101000a900460ff1681565b600080611ec860076126dc565b90506000611edf8483612a6890919063ffffffff16565b905061270f8110611f25576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f1c90614402565b60405180910390fd5b6000611f30836126ea565b905060006001611f5f611f4e6103e885612b8f90919063ffffffff16565b6103e8612a6890919063ffffffff16565b611f6991906146ee565b9050808311611f9e576000611f7d83611762565b9050611f928782612b8f90919063ffffffff16565b95505050505050612048565b6000611fa9846126ea565b90506000611fc08386612fad90919063ffffffff16565b90506000611fd7828a612fad90919063ffffffff16565b90506000611fe486611762565b90506000611ff185611762565b905060006120088484612b8f90919063ffffffff16565b9050600061201f8684612b8f90919063ffffffff16565b905060006120368284612a6890919063ffffffff16565b9050809c505050505050505050505050505b919050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600660149054906101000a900460ff1681565b6120fc61261b565b73ffffffffffffffffffffffffffffffffffffffff1661211a611869565b73ffffffffffffffffffffffffffffffffffffffff1614612170576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161216790614362565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156121e0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121d790614122565b60405180910390fd5b6121e981612ac9565b50565b6121f461261b565b73ffffffffffffffffffffffffffffffffffffffff16612212611869565b73ffffffffffffffffffffffffffffffffffffffff1614612268576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161225f90614362565b60405180910390fd5b6000479050600081116122b0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122a790614322565b60405180910390fd5b600082116122f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122ea90614242565b60405180910390fd5b80821115612336576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161232d90614442565b60405180910390fd5b8273ffffffffffffffffffffffffffffffffffffffff166108fc839081150290604051600060405180830381858888f1935050505015801561237c573d6000803e3d6000fd5b50505050565b61238a61261b565b73ffffffffffffffffffffffffffffffffffffffff166123a8611869565b73ffffffffffffffffffffffffffffffffffffffff16146123fe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123f590614362565b60405180910390fd5b6001600660146101000a81548160ff0219169083151502179055506000600660156101000a81548160ff021916908315150217905550565b61243e61261b565b73ffffffffffffffffffffffffffffffffffffffff1661245c611869565b73ffffffffffffffffffffffffffffffffffffffff16146124b2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124a990614362565b60405180910390fd5b6000479050600081116124fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124f190614322565b60405180910390fd5b8173ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015612540573d6000803e3d6000fd5b505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166126968361154f565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600081600001549050919050565b6000806127026103e884612a5290919063ffffffff16565b905080915050919050565b6000612718826125af565b612757576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161274e90614222565b60405180910390fd5b60006127628361154f565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806127d157508373ffffffffffffffffffffffffffffffffffffffff166127b984610bc4565b73ffffffffffffffffffffffffffffffffffffffff16145b806127e257506127e1818561204d565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661280b8261154f565b73ffffffffffffffffffffffffffffffffffffffff1614612861576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161285890614142565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156128d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128c8906141c2565b60405180910390fd5b6128dc838383612fc3565b6128e7600082612623565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461293791906146ee565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461298e919061460d565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612a4d838383612fc8565b505050565b60008183612a609190614663565b905092915050565b60008183612a76919061460d565b905092915050565b6001816000016000828254019250508190555050565b612aae828260405180602001604052806000815250612fcd565b5050565b600082612abf8584613028565b1490509392505050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008183612b9d9190614694565b905092915050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612c14576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c0b906141e2565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051612d05919061408a565b60405180910390a3505050565b612d1d8484846127eb565b612d29848484846130c3565b612d68576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d5f90614102565b60405180910390fd5b50505050565b6060600a8054612d7d90614801565b80601f0160208091040260200160405190810160405280929190818152602001828054612da990614801565b8015612df65780601f10612dcb57610100808354040283529160200191612df6565b820191906000526020600020905b815481529060010190602001808311612dd957829003601f168201915b5050505050905090565b60606000821415612e48576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612fa8565b600082905060005b60008214612e7a578080612e6390614864565b915050600a82612e739190614663565b9150612e50565b60008167ffffffffffffffff811115612ebc577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015612eee5781602001600182028036833780820191505090505b5090505b60008514612fa157600182612f0791906146ee565b9150600a85612f1691906148fb565b6030612f22919061460d565b60f81b818381518110612f5e577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612f9a9190614663565b9450612ef2565b8093505050505b919050565b60008183612fbb91906146ee565b905092915050565b505050565b505050565b612fd7838361325a565b612fe460008484846130c3565b613023576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161301a90614102565b60405180910390fd5b505050565b60008082905060005b84518110156130b8576000858281518110613075577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101519050808311613097576130908382613434565b92506130a4565b6130a18184613434565b92505b5080806130b090614864565b915050613031565b508091505092915050565b60006130e48473ffffffffffffffffffffffffffffffffffffffff1661344b565b1561324d578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261310d61261b565b8786866040518563ffffffff1660e01b815260040161312f949392919061401c565b602060405180830381600087803b15801561314957600080fd5b505af192505050801561317a57506040513d601f19601f8201168201806040525081019061317791906139e0565b60015b6131fd573d80600081146131aa576040519150601f19603f3d011682016040523d82523d6000602084013e6131af565b606091505b506000815114156131f5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131ec90614102565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050613252565b600190505b949350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156132ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016132c190614302565b60405180910390fd5b6132d3816125af565b15613313576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161330a90614162565b60405180910390fd5b61331f60008383612fc3565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461336f919061460d565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461343060008383612fc8565b5050565b600082600052816020526040600020905092915050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b82805461347a90614801565b90600052602060002090601f01602090048101928261349c57600085556134e3565b82601f106134b557805160ff19168380011785556134e3565b828001600101855582156134e3579182015b828111156134e25782518255916020019190600101906134c7565b5b5090506134f091906134f4565b5090565b5b8082111561350d5760008160009055506001016134f5565b5090565b600061352461351f8461452f565b61450a565b90508281526020810184848401111561353c57600080fd5b6135478482856147bf565b509392505050565b600061356261355d84614560565b61450a565b90508281526020810184848401111561357a57600080fd5b6135858482856147bf565b509392505050565b60008135905061359c816150e2565b92915050565b6000813590506135b1816150f9565b92915050565b60008083601f8401126135c957600080fd5b8235905067ffffffffffffffff8111156135e257600080fd5b6020830191508360208202830111156135fa57600080fd5b9250929050565b60008135905061361081615110565b92915050565b60008135905061362581615127565b92915050565b60008135905061363a8161513e565b92915050565b60008151905061364f8161513e565b92915050565b600082601f83011261366657600080fd5b8135613676848260208601613511565b91505092915050565b600082601f83011261369057600080fd5b81356136a084826020860161354f565b91505092915050565b6000813590506136b881615155565b92915050565b6000602082840312156136d057600080fd5b60006136de8482850161358d565b91505092915050565b6000602082840312156136f957600080fd5b6000613707848285016135a2565b91505092915050565b6000806040838503121561372357600080fd5b6000613731858286016135a2565b9250506020613742858286016136a9565b9150509250929050565b6000806040838503121561375f57600080fd5b600061376d8582860161358d565b925050602061377e8582860161358d565b9150509250929050565b60008060006060848603121561379d57600080fd5b60006137ab8682870161358d565b93505060206137bc8682870161358d565b92505060406137cd868287016136a9565b9150509250925092565b600080600080608085870312156137ed57600080fd5b60006137fb8782880161358d565b945050602061380c8782880161358d565b935050604061381d878288016136a9565b925050606085013567ffffffffffffffff81111561383a57600080fd5b61384687828801613655565b91505092959194509250565b60008060006040848603121561386757600080fd5b60006138758682870161358d565b935050602084013567ffffffffffffffff81111561389257600080fd5b61389e868287016135b7565b92509250509250925092565b600080604083850312156138bd57600080fd5b60006138cb8582860161358d565b92505060206138dc85828601613601565b9150509250929050565b600080604083850312156138f957600080fd5b60006139078582860161358d565b9250506020613918858286016136a9565b9150509250929050565b6000806000806060858703121561393857600080fd5b60006139468782880161358d565b9450506020613957878288016136a9565b935050604085013567ffffffffffffffff81111561397457600080fd5b613980878288016135b7565b925092505092959194509250565b6000602082840312156139a057600080fd5b60006139ae84828501613616565b91505092915050565b6000602082840312156139c957600080fd5b60006139d78482850161362b565b91505092915050565b6000602082840312156139f257600080fd5b6000613a0084828501613640565b91505092915050565b600060208284031215613a1b57600080fd5b600082013567ffffffffffffffff811115613a3557600080fd5b613a418482850161367f565b91505092915050565b600060208284031215613a5c57600080fd5b6000613a6a848285016136a9565b91505092915050565b6000613a7f8383613fa4565b60208301905092915050565b613a9481614722565b82525050565b613aab613aa682614722565b6148d7565b82525050565b6000613abc826145a1565b613ac681856145cf565b9350613ad183614591565b8060005b83811015613b02578151613ae98882613a73565b9750613af4836145c2565b925050600181019050613ad5565b5085935050505092915050565b613b1881614746565b82525050565b613b2781614752565b82525050565b6000613b38826145ac565b613b4281856145e0565b9350613b528185602086016147ce565b613b5b816149e8565b840191505092915050565b6000613b71826145b7565b613b7b81856145f1565b9350613b8b8185602086016147ce565b613b94816149e8565b840191505092915050565b6000613baa826145b7565b613bb48185614602565b9350613bc48185602086016147ce565b80840191505092915050565b6000613bdd600e836145f1565b9150613be882614a06565b602082019050919050565b6000613c006032836145f1565b9150613c0b82614a2f565b604082019050919050565b6000613c236026836145f1565b9150613c2e82614a7e565b604082019050919050565b6000613c466025836145f1565b9150613c5182614acd565b604082019050919050565b6000613c69601c836145f1565b9150613c7482614b1c565b602082019050919050565b6000613c8c601a836145f1565b9150613c9782614b45565b602082019050919050565b6000613caf601e836145f1565b9150613cba82614b6e565b602082019050919050565b6000613cd26024836145f1565b9150613cdd82614b97565b604082019050919050565b6000613cf56019836145f1565b9150613d0082614be6565b602082019050919050565b6000613d186025836145f1565b9150613d2382614c0f565b604082019050919050565b6000613d3b602c836145f1565b9150613d4682614c5e565b604082019050919050565b6000613d5e601a836145f1565b9150613d6982614cad565b602082019050919050565b6000613d816038836145f1565b9150613d8c82614cd6565b604082019050919050565b6000613da4600f836145f1565b9150613daf82614d25565b602082019050919050565b6000613dc76034836145f1565b9150613dd282614d4e565b604082019050919050565b6000613dea602a836145f1565b9150613df582614d9d565b604082019050919050565b6000613e0d6029836145f1565b9150613e1882614dec565b604082019050919050565b6000613e306020836145f1565b9150613e3b82614e3b565b602082019050919050565b6000613e53601b836145f1565b9150613e5e82614e64565b602082019050919050565b6000613e76602c836145f1565b9150613e8182614e8d565b604082019050919050565b6000613e996020836145f1565b9150613ea482614edc565b602082019050919050565b6000613ebc602f836145f1565b9150613ec782614f05565b604082019050919050565b6000613edf6021836145f1565b9150613eea82614f54565b604082019050919050565b6000613f026037836145f1565b9150613f0d82614fa3565b604082019050919050565b6000613f256031836145f1565b9150613f3082614ff2565b604082019050919050565b6000613f486012836145f1565b9150613f5382615041565b602082019050919050565b6000613f6b602e836145f1565b9150613f768261506a565b604082019050919050565b6000613f8e601b836145f1565b9150613f99826150b9565b602082019050919050565b613fad816147a8565b82525050565b613fbc816147a8565b82525050565b6000613fce8284613a9a565b60148201915081905092915050565b6000613fe98285613b9f565b9150613ff58284613b9f565b91508190509392505050565b60006020820190506140166000830184613a8b565b92915050565b60006080820190506140316000830187613a8b565b61403e6020830186613a8b565b61404b6040830185613fb3565b818103606083015261405d8184613b2d565b905095945050505050565b600060208201905081810360008301526140828184613ab1565b905092915050565b600060208201905061409f6000830184613b0f565b92915050565b60006020820190506140ba6000830184613b1e565b92915050565b600060208201905081810360008301526140da8184613b66565b905092915050565b600060208201905081810360008301526140fb81613bd0565b9050919050565b6000602082019050818103600083015261411b81613bf3565b9050919050565b6000602082019050818103600083015261413b81613c16565b9050919050565b6000602082019050818103600083015261415b81613c39565b9050919050565b6000602082019050818103600083015261417b81613c5c565b9050919050565b6000602082019050818103600083015261419b81613c7f565b9050919050565b600060208201905081810360008301526141bb81613ca2565b9050919050565b600060208201905081810360008301526141db81613cc5565b9050919050565b600060208201905081810360008301526141fb81613ce8565b9050919050565b6000602082019050818103600083015261421b81613d0b565b9050919050565b6000602082019050818103600083015261423b81613d2e565b9050919050565b6000602082019050818103600083015261425b81613d51565b9050919050565b6000602082019050818103600083015261427b81613d74565b9050919050565b6000602082019050818103600083015261429b81613d97565b9050919050565b600060208201905081810360008301526142bb81613dba565b9050919050565b600060208201905081810360008301526142db81613ddd565b9050919050565b600060208201905081810360008301526142fb81613e00565b9050919050565b6000602082019050818103600083015261431b81613e23565b9050919050565b6000602082019050818103600083015261433b81613e46565b9050919050565b6000602082019050818103600083015261435b81613e69565b9050919050565b6000602082019050818103600083015261437b81613e8c565b9050919050565b6000602082019050818103600083015261439b81613eaf565b9050919050565b600060208201905081810360008301526143bb81613ed2565b9050919050565b600060208201905081810360008301526143db81613ef5565b9050919050565b600060208201905081810360008301526143fb81613f18565b9050919050565b6000602082019050818103600083015261441b81613f3b565b9050919050565b6000602082019050818103600083015261443b81613f5e565b9050919050565b6000602082019050818103600083015261445b81613f81565b9050919050565b60006020820190506144776000830184613fb3565b92915050565b600061012082019050614493600083018c613fb3565b6144a0602083018b613fb3565b6144ad604083018a613fb3565b6144ba6060830189613fb3565b6144c76080830188613fb3565b6144d460a0830187613fb3565b6144e160c0830186613fb3565b6144ee60e0830185613fb3565b6144fc610100830184613b0f565b9a9950505050505050505050565b6000614514614525565b90506145208282614833565b919050565b6000604051905090565b600067ffffffffffffffff82111561454a576145496149b9565b5b614553826149e8565b9050602081019050919050565b600067ffffffffffffffff82111561457b5761457a6149b9565b5b614584826149e8565b9050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000614618826147a8565b9150614623836147a8565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156146585761465761492c565b5b828201905092915050565b600061466e826147a8565b9150614679836147a8565b9250826146895761468861495b565b5b828204905092915050565b600061469f826147a8565b91506146aa836147a8565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156146e3576146e261492c565b5b828202905092915050565b60006146f9826147a8565b9150614704836147a8565b9250828210156147175761471661492c565b5b828203905092915050565b600061472d82614788565b9050919050565b600061473f82614788565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b82818337600083830152505050565b60005b838110156147ec5780820151818401526020810190506147d1565b838111156147fb576000848401525b50505050565b6000600282049050600182168061481957607f821691505b6020821081141561482d5761482c61498a565b5b50919050565b61483c826149e8565b810181811067ffffffffffffffff8211171561485b5761485a6149b9565b5b80604052505050565b600061486f826147a8565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156148a2576148a161492c565b5b600182019050919050565b60006148b8826147b2565b915060ff8214156148cc576148cb61492c565b5b600182019050919050565b60006148e2826148e9565b9050919050565b60006148f4826149f9565b9050919050565b6000614906826147a8565b9150614911836147a8565b9250826149215761492061495b565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f416c7265616479206d696e746564000000000000000000000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4d757374206d696e74206174206c65617374203120746f6b656e000000000000600082015250565b7f4d65726b6c6520726f6f742077696c6c20626520756e6368616e676564210000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f5075626c6963206d696e74696e67206973206e6f74206f70656e20726967687460008201527f206e6f7721000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f416d6f756e74206d757374206265206d6f7265207468616e2030000000000000600082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4e6f742077686974656c69737465640000000000000000000000000000000000600082015250565b7f77686974656c6973744d696e74696e74674f70656e206d696e74696e6720697360008201527f206e6f74206f70656e207269676874206e6f7721000000000000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f42616c616e6365206d757374206265206d6f7265207468616e20300000000000600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f5472616e73616374696f6e2076616c756520646964206e6f7420657175616c2060008201527f746f2074686520746f74616c206d696e74207072696365000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f4d617820737570706c7920726561636865640000000000000000000000000000600082015250565b7f43616e6e6f74206d696e74206d6f7265207468616e206d6178206d696e74207060008201527f6572207472616e73616374696f6e000000000000000000000000000000000000602082015250565b7f416d6f756e74206973206d6f7265207468616e2062616c616e63650000000000600082015250565b6150eb81614722565b81146150f657600080fd5b50565b61510281614734565b811461510d57600080fd5b50565b61511981614746565b811461512457600080fd5b50565b61513081614752565b811461513b57600080fd5b50565b6151478161475c565b811461515257600080fd5b50565b61515e816147a8565b811461516957600080fd5b5056fea2646970667358221220324a8de28aaffcf28ea3138908716231e9222bfaa76663169d81f4ab52dfc6f764736f6c63430008010033

Deployed Bytecode

0x6080604052600436106102725760003560e01c8063715018a61161014f578063bea7ec69116100c1578063e985e9c51161007a578063e985e9c514610956578063f0dff7d314610993578063f2fde38b146109be578063f3fef3a3146109e7578063f7beb98a14610a10578063fa09e63014610a2757610272565b8063bea7ec6914610825578063c59d484714610841578063c87b56dd14610874578063d547cfb7146108b1578063db4bec44146108dc578063e75722301461091957610272565b80638ecad721116101135780638ecad72114610727578063902d55a51461075257806395d89b411461077d578063a0363e92146107a8578063a22cb465146107d3578063b88d4fde146107fc57610272565b8063715018a614610654578063771282f61461066b5780637898ffab146106965780637cb64759146106d35780638da5cb5b146106fc57610272565b80633609ac8f116101e857806342842e0e116101ac57806342842e0e1461052d578063449a52f8146105565780635a23dd99146105725780636352211e146105af5780636e0d5d18146105ec57806370a082311461061757610272565b80633609ac8f1461045a5780633d6a5745146104855780633e3e0b12146104ae57806340398d67146104c5578063405103ba1461050257610272565b806318160ddd1161023a57806318160ddd1461035c5780631883eb5d1461038757806323b872dd146103b2578063253fbcad146103db5780632eb4a7ab1461040657806330176e131461043157610272565b806301ffc9a71461027757806306fdde03146102b4578063081812fc146102df578063095ea7b31461031c5780630b7b4bef14610345575b600080fd5b34801561028357600080fd5b5061029e600480360381019061029991906139b7565b610a50565b6040516102ab919061408a565b60405180910390f35b3480156102c057600080fd5b506102c9610b32565b6040516102d691906140c0565b60405180910390f35b3480156102eb57600080fd5b5061030660048036038101906103019190613a4a565b610bc4565b6040516103139190614001565b60405180910390f35b34801561032857600080fd5b50610343600480360381019061033e91906138e6565b610c49565b005b34801561035157600080fd5b5061035a610d61565b005b34801561036857600080fd5b50610371610e15565b60405161037e9190614462565b60405180910390f35b34801561039357600080fd5b5061039c610e1f565b6040516103a99190614462565b60405180910390f35b3480156103be57600080fd5b506103d960048036038101906103d49190613788565b610e3d565b005b3480156103e757600080fd5b506103f0610e9d565b6040516103fd9190614462565b60405180910390f35b34801561041257600080fd5b5061041b610ec0565b60405161042891906140a5565b60405180910390f35b34801561043d57600080fd5b5061045860048036038101906104539190613a09565b610ec6565b005b34801561046657600080fd5b5061046f610f5c565b60405161047c9190614462565b60405180910390f35b34801561049157600080fd5b506104ac60048036038101906104a791906138e6565b610f67565b005b3480156104ba57600080fd5b506104c3611091565b005b3480156104d157600080fd5b506104ec60048036038101906104e791906136be565b611145565b6040516104f99190614068565b60405180910390f35b34801561050e57600080fd5b5061051761129d565b604051610524919061408a565b60405180910390f35b34801561053957600080fd5b50610554600480360381019061054f9190613788565b6112b0565b005b610570600480360381019061056b91906138e6565b6112d0565b005b34801561057e57600080fd5b5061059960048036038101906105949190613852565b6114cb565b6040516105a6919061408a565b60405180910390f35b3480156105bb57600080fd5b506105d660048036038101906105d19190613a4a565b61154f565b6040516105e39190614001565b60405180910390f35b3480156105f857600080fd5b50610601611601565b60405161060e9190614462565b60405180910390f35b34801561062357600080fd5b5061063e600480360381019061063991906136be565b61160c565b60405161064b9190614462565b60405180910390f35b34801561066057600080fd5b506106696116c4565b005b34801561067757600080fd5b5061068061174c565b60405161068d9190614462565b60405180910390f35b3480156106a257600080fd5b506106bd60048036038101906106b89190613a4a565b611762565b6040516106ca9190614462565b60405180910390f35b3480156106df57600080fd5b506106fa60048036038101906106f5919061398e565b61179e565b005b34801561070857600080fd5b50610711611869565b60405161071e9190614001565b60405180910390f35b34801561073357600080fd5b5061073c611893565b6040516107499190614462565b60405180910390f35b34801561075e57600080fd5b50610767611898565b6040516107749190614462565b60405180910390f35b34801561078957600080fd5b5061079261189e565b60405161079f91906140c0565b60405180910390f35b3480156107b457600080fd5b506107bd611930565b6040516107ca9190614462565b60405180910390f35b3480156107df57600080fd5b506107fa60048036038101906107f591906138aa565b611936565b005b34801561080857600080fd5b50610823600480360381019061081e91906137d7565b61194c565b005b61083f600480360381019061083a9190613922565b6119ae565b005b34801561084d57600080fd5b50610856611cda565b60405161086b9998979695949392919061447d565b60405180910390f35b34801561088057600080fd5b5061089b60048036038101906108969190613a4a565b611d66565b6040516108a891906140c0565b60405180910390f35b3480156108bd57600080fd5b506108c6611e0d565b6040516108d391906140c0565b60405180910390f35b3480156108e857600080fd5b5061090360048036038101906108fe91906136be565b611e9b565b604051610910919061408a565b60405180910390f35b34801561092557600080fd5b50610940600480360381019061093b9190613a4a565b611ebb565b60405161094d9190614462565b60405180910390f35b34801561096257600080fd5b5061097d6004803603810190610978919061374c565b61204d565b60405161098a919061408a565b60405180910390f35b34801561099f57600080fd5b506109a86120e1565b6040516109b5919061408a565b60405180910390f35b3480156109ca57600080fd5b506109e560048036038101906109e091906136be565b6120f4565b005b3480156109f357600080fd5b50610a0e6004803603810190610a099190613710565b6121ec565b005b348015610a1c57600080fd5b50610a25612382565b005b348015610a3357600080fd5b50610a4e6004803603810190610a4991906136e7565b612436565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610b1b57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610b2b5750610b2a82612545565b5b9050919050565b606060008054610b4190614801565b80601f0160208091040260200160405190810160405280929190818152602001828054610b6d90614801565b8015610bba5780601f10610b8f57610100808354040283529160200191610bba565b820191906000526020600020905b815481529060010190602001808311610b9d57829003601f168201915b5050505050905090565b6000610bcf826125af565b610c0e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c0590614342565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610c548261154f565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610cc5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cbc906143a2565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610ce461261b565b73ffffffffffffffffffffffffffffffffffffffff161480610d135750610d1281610d0d61261b565b61204d565b5b610d52576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d4990614262565b60405180910390fd5b610d5c8383612623565b505050565b610d6961261b565b73ffffffffffffffffffffffffffffffffffffffff16610d87611869565b73ffffffffffffffffffffffffffffffffffffffff1614610ddd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dd490614362565b60405180910390fd5b6000600660146101000a81548160ff0219169083151502179055506001600660156101000a81548160ff021916908315150217905550565b600061270f905090565b600080610e2c60076126dc565b9050610e37816126ea565b91505090565b610e4e610e4861261b565b8261270d565b610e8d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e84906143e2565b60405180910390fd5b610e988383836127eb565b505050565b600080610eb76103e861270f612a5290919063ffffffff16565b90508091505090565b60085481565b610ece61261b565b73ffffffffffffffffffffffffffffffffffffffff16610eec611869565b73ffffffffffffffffffffffffffffffffffffffff1614610f42576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f3990614362565b60405180910390fd5b80600a9080519060200190610f5892919061346e565b5050565b66f8b0a10e47000081565b610f6f61261b565b73ffffffffffffffffffffffffffffffffffffffff16610f8d611869565b73ffffffffffffffffffffffffffffffffffffffff1614610fe3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fda90614362565b60405180910390fd5b6000610fef60076126dc565b905061270f6110078383612a6890919063ffffffff16565b10611047576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161103e90614402565b60405180910390fd5b60005b828160ff16101561108b5761105f6007612a7e565b600061106b60076126dc565b90506110778582612a94565b508080611083906148ad565b91505061104a565b50505050565b61109961261b565b73ffffffffffffffffffffffffffffffffffffffff166110b7611869565b73ffffffffffffffffffffffffffffffffffffffff161461110d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161110490614362565b60405180910390fd5b6000600660146101000a81548160ff0219169083151502179055506000600660156101000a81548160ff021916908315150217905550565b606060006111528361160c565b905060008167ffffffffffffffff811115611196577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280602002602001820160405280156111c45781602001602082028036833780820191505090505b50905060006111d360076126dc565b9050600080600190505b828111611290578673ffffffffffffffffffffffffffffffffffffffff166112048261154f565b73ffffffffffffffffffffffffffffffffffffffff16141561127d578084838151811061125a577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101818152505061127a600183612a6890919063ffffffff16565b91505b808061128890614864565b9150506111dd565b5082945050505050919050565b600660159054906101000a900460ff1681565b6112cb8383836040518060200160405280600081525061194c565b505050565b60011515600660149054906101000a900460ff161515148015611306575060001515600660159054906101000a900460ff161515145b611345576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161133c90614202565b60405180910390fd5b6001811015611389576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161138090614182565b60405180910390fd5b60058111156113cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113c490614422565b60405180910390fd5b60006113d960076126dc565b905061270f6113f18383612a6890919063ffffffff16565b10611431576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161142890614402565b60405180910390fd5b600061143c83611ebb565b9050803414611480576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611477906143c2565b60405180910390fd5b60005b838160ff1610156114c4576114986007612a7e565b60006114a460076126dc565b90506114b08682612a94565b5080806114bc906148ad565b915050611483565b5050505050565b600080846040516020016114df9190613fc2565b604051602081830303815290604052805190602001209050611545848480806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f8201169050808301925050505050505060085483612ab2565b9150509392505050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156115f8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115ef906142e2565b60405180910390fd5b80915050919050565b6611c37937e0800081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561167d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611674906142c2565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6116cc61261b565b73ffffffffffffffffffffffffffffffffffffffff166116ea611869565b73ffffffffffffffffffffffffffffffffffffffff1614611740576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161173790614362565b60405180910390fd5b61174a6000612ac9565b565b60008061175960076126dc565b90508091505090565b60006117976117816611c37937e0800084612b8f90919063ffffffff16565b66f8b0a10e470000612a6890919063ffffffff16565b9050919050565b6117a661261b565b73ffffffffffffffffffffffffffffffffffffffff166117c4611869565b73ffffffffffffffffffffffffffffffffffffffff161461181a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161181190614362565b60405180910390fd5b60085481141561185f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611856906141a2565b60405180910390fd5b8060088190555050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600581565b61270f81565b6060600180546118ad90614801565b80601f01602080910402602001604051908101604052809291908181526020018280546118d990614801565b80156119265780601f106118fb57610100808354040283529160200191611926565b820191906000526020600020905b81548152906001019060200180831161190957829003601f168201915b5050505050905090565b6103e881565b61194861194161261b565b8383612ba5565b5050565b61195d61195761261b565b8361270d565b61199c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611993906143e2565b60405180910390fd5b6119a884848484612d12565b50505050565b60001515600660149054906101000a900460ff1615151480156119e4575060011515600660159054906101000a900460ff161515145b611a23576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a1a906142a2565b60405180910390fd5b600960008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615611ab0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aa7906140e2565b60405180910390fd5b611abb8483836114cb565b611afa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611af190614282565b60405180910390fd5b6001831015611b3e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b3590614182565b60405180910390fd5b6005831115611b82576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b7990614422565b60405180910390fd5b6000611b8e60076126dc565b905061270f611ba68583612a6890919063ffffffff16565b10611be6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bdd90614402565b60405180910390fd5b6000611bf185611ebb565b9050803414611c35576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c2c906143c2565b60405180910390fd5b60005b858160ff161015611c7957611c4d6007612a7e565b6000611c5960076126dc565b9050611c658882612a94565b508080611c71906148ad565b915050611c38565b506001600960008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550505050505050565b600080600080600080600080600080611cf36001611ebb565b90506000611cff610e1f565b90506000611d0b610e9d565b90506000600660149054906101000a900460ff16905061270f611d2e60076126dc565b66f8b0a10e470000866611c37937e0800087876103e8889c509c509c509c509c509c509c509c509c5050505050909192939495969798565b6060611d71826125af565b611db0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611da790614382565b60405180910390fd5b6000611dba612d6e565b90506000815111611dda5760405180602001604052806000815250611e05565b80611de484612e00565b604051602001611df5929190613fdd565b6040516020818303038152906040525b915050919050565b600a8054611e1a90614801565b80601f0160208091040260200160405190810160405280929190818152602001828054611e4690614801565b8015611e935780601f10611e6857610100808354040283529160200191611e93565b820191906000526020600020905b815481529060010190602001808311611e7657829003601f168201915b505050505081565b60096020528060005260406000206000915054906101000a900460ff1681565b600080611ec860076126dc565b90506000611edf8483612a6890919063ffffffff16565b905061270f8110611f25576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f1c90614402565b60405180910390fd5b6000611f30836126ea565b905060006001611f5f611f4e6103e885612b8f90919063ffffffff16565b6103e8612a6890919063ffffffff16565b611f6991906146ee565b9050808311611f9e576000611f7d83611762565b9050611f928782612b8f90919063ffffffff16565b95505050505050612048565b6000611fa9846126ea565b90506000611fc08386612fad90919063ffffffff16565b90506000611fd7828a612fad90919063ffffffff16565b90506000611fe486611762565b90506000611ff185611762565b905060006120088484612b8f90919063ffffffff16565b9050600061201f8684612b8f90919063ffffffff16565b905060006120368284612a6890919063ffffffff16565b9050809c505050505050505050505050505b919050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600660149054906101000a900460ff1681565b6120fc61261b565b73ffffffffffffffffffffffffffffffffffffffff1661211a611869565b73ffffffffffffffffffffffffffffffffffffffff1614612170576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161216790614362565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156121e0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121d790614122565b60405180910390fd5b6121e981612ac9565b50565b6121f461261b565b73ffffffffffffffffffffffffffffffffffffffff16612212611869565b73ffffffffffffffffffffffffffffffffffffffff1614612268576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161225f90614362565b60405180910390fd5b6000479050600081116122b0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122a790614322565b60405180910390fd5b600082116122f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122ea90614242565b60405180910390fd5b80821115612336576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161232d90614442565b60405180910390fd5b8273ffffffffffffffffffffffffffffffffffffffff166108fc839081150290604051600060405180830381858888f1935050505015801561237c573d6000803e3d6000fd5b50505050565b61238a61261b565b73ffffffffffffffffffffffffffffffffffffffff166123a8611869565b73ffffffffffffffffffffffffffffffffffffffff16146123fe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123f590614362565b60405180910390fd5b6001600660146101000a81548160ff0219169083151502179055506000600660156101000a81548160ff021916908315150217905550565b61243e61261b565b73ffffffffffffffffffffffffffffffffffffffff1661245c611869565b73ffffffffffffffffffffffffffffffffffffffff16146124b2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124a990614362565b60405180910390fd5b6000479050600081116124fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124f190614322565b60405180910390fd5b8173ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015612540573d6000803e3d6000fd5b505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166126968361154f565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600081600001549050919050565b6000806127026103e884612a5290919063ffffffff16565b905080915050919050565b6000612718826125af565b612757576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161274e90614222565b60405180910390fd5b60006127628361154f565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806127d157508373ffffffffffffffffffffffffffffffffffffffff166127b984610bc4565b73ffffffffffffffffffffffffffffffffffffffff16145b806127e257506127e1818561204d565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661280b8261154f565b73ffffffffffffffffffffffffffffffffffffffff1614612861576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161285890614142565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156128d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128c8906141c2565b60405180910390fd5b6128dc838383612fc3565b6128e7600082612623565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461293791906146ee565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461298e919061460d565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612a4d838383612fc8565b505050565b60008183612a609190614663565b905092915050565b60008183612a76919061460d565b905092915050565b6001816000016000828254019250508190555050565b612aae828260405180602001604052806000815250612fcd565b5050565b600082612abf8584613028565b1490509392505050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008183612b9d9190614694565b905092915050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612c14576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c0b906141e2565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051612d05919061408a565b60405180910390a3505050565b612d1d8484846127eb565b612d29848484846130c3565b612d68576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d5f90614102565b60405180910390fd5b50505050565b6060600a8054612d7d90614801565b80601f0160208091040260200160405190810160405280929190818152602001828054612da990614801565b8015612df65780601f10612dcb57610100808354040283529160200191612df6565b820191906000526020600020905b815481529060010190602001808311612dd957829003601f168201915b5050505050905090565b60606000821415612e48576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612fa8565b600082905060005b60008214612e7a578080612e6390614864565b915050600a82612e739190614663565b9150612e50565b60008167ffffffffffffffff811115612ebc577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015612eee5781602001600182028036833780820191505090505b5090505b60008514612fa157600182612f0791906146ee565b9150600a85612f1691906148fb565b6030612f22919061460d565b60f81b818381518110612f5e577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612f9a9190614663565b9450612ef2565b8093505050505b919050565b60008183612fbb91906146ee565b905092915050565b505050565b505050565b612fd7838361325a565b612fe460008484846130c3565b613023576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161301a90614102565b60405180910390fd5b505050565b60008082905060005b84518110156130b8576000858281518110613075577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101519050808311613097576130908382613434565b92506130a4565b6130a18184613434565b92505b5080806130b090614864565b915050613031565b508091505092915050565b60006130e48473ffffffffffffffffffffffffffffffffffffffff1661344b565b1561324d578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261310d61261b565b8786866040518563ffffffff1660e01b815260040161312f949392919061401c565b602060405180830381600087803b15801561314957600080fd5b505af192505050801561317a57506040513d601f19601f8201168201806040525081019061317791906139e0565b60015b6131fd573d80600081146131aa576040519150601f19603f3d011682016040523d82523d6000602084013e6131af565b606091505b506000815114156131f5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131ec90614102565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050613252565b600190505b949350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156132ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016132c190614302565b60405180910390fd5b6132d3816125af565b15613313576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161330a90614162565b60405180910390fd5b61331f60008383612fc3565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461336f919061460d565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461343060008383612fc8565b5050565b600082600052816020526040600020905092915050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b82805461347a90614801565b90600052602060002090601f01602090048101928261349c57600085556134e3565b82601f106134b557805160ff19168380011785556134e3565b828001600101855582156134e3579182015b828111156134e25782518255916020019190600101906134c7565b5b5090506134f091906134f4565b5090565b5b8082111561350d5760008160009055506001016134f5565b5090565b600061352461351f8461452f565b61450a565b90508281526020810184848401111561353c57600080fd5b6135478482856147bf565b509392505050565b600061356261355d84614560565b61450a565b90508281526020810184848401111561357a57600080fd5b6135858482856147bf565b509392505050565b60008135905061359c816150e2565b92915050565b6000813590506135b1816150f9565b92915050565b60008083601f8401126135c957600080fd5b8235905067ffffffffffffffff8111156135e257600080fd5b6020830191508360208202830111156135fa57600080fd5b9250929050565b60008135905061361081615110565b92915050565b60008135905061362581615127565b92915050565b60008135905061363a8161513e565b92915050565b60008151905061364f8161513e565b92915050565b600082601f83011261366657600080fd5b8135613676848260208601613511565b91505092915050565b600082601f83011261369057600080fd5b81356136a084826020860161354f565b91505092915050565b6000813590506136b881615155565b92915050565b6000602082840312156136d057600080fd5b60006136de8482850161358d565b91505092915050565b6000602082840312156136f957600080fd5b6000613707848285016135a2565b91505092915050565b6000806040838503121561372357600080fd5b6000613731858286016135a2565b9250506020613742858286016136a9565b9150509250929050565b6000806040838503121561375f57600080fd5b600061376d8582860161358d565b925050602061377e8582860161358d565b9150509250929050565b60008060006060848603121561379d57600080fd5b60006137ab8682870161358d565b93505060206137bc8682870161358d565b92505060406137cd868287016136a9565b9150509250925092565b600080600080608085870312156137ed57600080fd5b60006137fb8782880161358d565b945050602061380c8782880161358d565b935050604061381d878288016136a9565b925050606085013567ffffffffffffffff81111561383a57600080fd5b61384687828801613655565b91505092959194509250565b60008060006040848603121561386757600080fd5b60006138758682870161358d565b935050602084013567ffffffffffffffff81111561389257600080fd5b61389e868287016135b7565b92509250509250925092565b600080604083850312156138bd57600080fd5b60006138cb8582860161358d565b92505060206138dc85828601613601565b9150509250929050565b600080604083850312156138f957600080fd5b60006139078582860161358d565b9250506020613918858286016136a9565b9150509250929050565b6000806000806060858703121561393857600080fd5b60006139468782880161358d565b9450506020613957878288016136a9565b935050604085013567ffffffffffffffff81111561397457600080fd5b613980878288016135b7565b925092505092959194509250565b6000602082840312156139a057600080fd5b60006139ae84828501613616565b91505092915050565b6000602082840312156139c957600080fd5b60006139d78482850161362b565b91505092915050565b6000602082840312156139f257600080fd5b6000613a0084828501613640565b91505092915050565b600060208284031215613a1b57600080fd5b600082013567ffffffffffffffff811115613a3557600080fd5b613a418482850161367f565b91505092915050565b600060208284031215613a5c57600080fd5b6000613a6a848285016136a9565b91505092915050565b6000613a7f8383613fa4565b60208301905092915050565b613a9481614722565b82525050565b613aab613aa682614722565b6148d7565b82525050565b6000613abc826145a1565b613ac681856145cf565b9350613ad183614591565b8060005b83811015613b02578151613ae98882613a73565b9750613af4836145c2565b925050600181019050613ad5565b5085935050505092915050565b613b1881614746565b82525050565b613b2781614752565b82525050565b6000613b38826145ac565b613b4281856145e0565b9350613b528185602086016147ce565b613b5b816149e8565b840191505092915050565b6000613b71826145b7565b613b7b81856145f1565b9350613b8b8185602086016147ce565b613b94816149e8565b840191505092915050565b6000613baa826145b7565b613bb48185614602565b9350613bc48185602086016147ce565b80840191505092915050565b6000613bdd600e836145f1565b9150613be882614a06565b602082019050919050565b6000613c006032836145f1565b9150613c0b82614a2f565b604082019050919050565b6000613c236026836145f1565b9150613c2e82614a7e565b604082019050919050565b6000613c466025836145f1565b9150613c5182614acd565b604082019050919050565b6000613c69601c836145f1565b9150613c7482614b1c565b602082019050919050565b6000613c8c601a836145f1565b9150613c9782614b45565b602082019050919050565b6000613caf601e836145f1565b9150613cba82614b6e565b602082019050919050565b6000613cd26024836145f1565b9150613cdd82614b97565b604082019050919050565b6000613cf56019836145f1565b9150613d0082614be6565b602082019050919050565b6000613d186025836145f1565b9150613d2382614c0f565b604082019050919050565b6000613d3b602c836145f1565b9150613d4682614c5e565b604082019050919050565b6000613d5e601a836145f1565b9150613d6982614cad565b602082019050919050565b6000613d816038836145f1565b9150613d8c82614cd6565b604082019050919050565b6000613da4600f836145f1565b9150613daf82614d25565b602082019050919050565b6000613dc76034836145f1565b9150613dd282614d4e565b604082019050919050565b6000613dea602a836145f1565b9150613df582614d9d565b604082019050919050565b6000613e0d6029836145f1565b9150613e1882614dec565b604082019050919050565b6000613e306020836145f1565b9150613e3b82614e3b565b602082019050919050565b6000613e53601b836145f1565b9150613e5e82614e64565b602082019050919050565b6000613e76602c836145f1565b9150613e8182614e8d565b604082019050919050565b6000613e996020836145f1565b9150613ea482614edc565b602082019050919050565b6000613ebc602f836145f1565b9150613ec782614f05565b604082019050919050565b6000613edf6021836145f1565b9150613eea82614f54565b604082019050919050565b6000613f026037836145f1565b9150613f0d82614fa3565b604082019050919050565b6000613f256031836145f1565b9150613f3082614ff2565b604082019050919050565b6000613f486012836145f1565b9150613f5382615041565b602082019050919050565b6000613f6b602e836145f1565b9150613f768261506a565b604082019050919050565b6000613f8e601b836145f1565b9150613f99826150b9565b602082019050919050565b613fad816147a8565b82525050565b613fbc816147a8565b82525050565b6000613fce8284613a9a565b60148201915081905092915050565b6000613fe98285613b9f565b9150613ff58284613b9f565b91508190509392505050565b60006020820190506140166000830184613a8b565b92915050565b60006080820190506140316000830187613a8b565b61403e6020830186613a8b565b61404b6040830185613fb3565b818103606083015261405d8184613b2d565b905095945050505050565b600060208201905081810360008301526140828184613ab1565b905092915050565b600060208201905061409f6000830184613b0f565b92915050565b60006020820190506140ba6000830184613b1e565b92915050565b600060208201905081810360008301526140da8184613b66565b905092915050565b600060208201905081810360008301526140fb81613bd0565b9050919050565b6000602082019050818103600083015261411b81613bf3565b9050919050565b6000602082019050818103600083015261413b81613c16565b9050919050565b6000602082019050818103600083015261415b81613c39565b9050919050565b6000602082019050818103600083015261417b81613c5c565b9050919050565b6000602082019050818103600083015261419b81613c7f565b9050919050565b600060208201905081810360008301526141bb81613ca2565b9050919050565b600060208201905081810360008301526141db81613cc5565b9050919050565b600060208201905081810360008301526141fb81613ce8565b9050919050565b6000602082019050818103600083015261421b81613d0b565b9050919050565b6000602082019050818103600083015261423b81613d2e565b9050919050565b6000602082019050818103600083015261425b81613d51565b9050919050565b6000602082019050818103600083015261427b81613d74565b9050919050565b6000602082019050818103600083015261429b81613d97565b9050919050565b600060208201905081810360008301526142bb81613dba565b9050919050565b600060208201905081810360008301526142db81613ddd565b9050919050565b600060208201905081810360008301526142fb81613e00565b9050919050565b6000602082019050818103600083015261431b81613e23565b9050919050565b6000602082019050818103600083015261433b81613e46565b9050919050565b6000602082019050818103600083015261435b81613e69565b9050919050565b6000602082019050818103600083015261437b81613e8c565b9050919050565b6000602082019050818103600083015261439b81613eaf565b9050919050565b600060208201905081810360008301526143bb81613ed2565b9050919050565b600060208201905081810360008301526143db81613ef5565b9050919050565b600060208201905081810360008301526143fb81613f18565b9050919050565b6000602082019050818103600083015261441b81613f3b565b9050919050565b6000602082019050818103600083015261443b81613f5e565b9050919050565b6000602082019050818103600083015261445b81613f81565b9050919050565b60006020820190506144776000830184613fb3565b92915050565b600061012082019050614493600083018c613fb3565b6144a0602083018b613fb3565b6144ad604083018a613fb3565b6144ba6060830189613fb3565b6144c76080830188613fb3565b6144d460a0830187613fb3565b6144e160c0830186613fb3565b6144ee60e0830185613fb3565b6144fc610100830184613b0f565b9a9950505050505050505050565b6000614514614525565b90506145208282614833565b919050565b6000604051905090565b600067ffffffffffffffff82111561454a576145496149b9565b5b614553826149e8565b9050602081019050919050565b600067ffffffffffffffff82111561457b5761457a6149b9565b5b614584826149e8565b9050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000614618826147a8565b9150614623836147a8565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156146585761465761492c565b5b828201905092915050565b600061466e826147a8565b9150614679836147a8565b9250826146895761468861495b565b5b828204905092915050565b600061469f826147a8565b91506146aa836147a8565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156146e3576146e261492c565b5b828202905092915050565b60006146f9826147a8565b9150614704836147a8565b9250828210156147175761471661492c565b5b828203905092915050565b600061472d82614788565b9050919050565b600061473f82614788565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b82818337600083830152505050565b60005b838110156147ec5780820151818401526020810190506147d1565b838111156147fb576000848401525b50505050565b6000600282049050600182168061481957607f821691505b6020821081141561482d5761482c61498a565b5b50919050565b61483c826149e8565b810181811067ffffffffffffffff8211171561485b5761485a6149b9565b5b80604052505050565b600061486f826147a8565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156148a2576148a161492c565b5b600182019050919050565b60006148b8826147b2565b915060ff8214156148cc576148cb61492c565b5b600182019050919050565b60006148e2826148e9565b9050919050565b60006148f4826149f9565b9050919050565b6000614906826147a8565b9150614911836147a8565b9250826149215761492061495b565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f416c7265616479206d696e746564000000000000000000000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4d757374206d696e74206174206c65617374203120746f6b656e000000000000600082015250565b7f4d65726b6c6520726f6f742077696c6c20626520756e6368616e676564210000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f5075626c6963206d696e74696e67206973206e6f74206f70656e20726967687460008201527f206e6f7721000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f416d6f756e74206d757374206265206d6f7265207468616e2030000000000000600082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4e6f742077686974656c69737465640000000000000000000000000000000000600082015250565b7f77686974656c6973744d696e74696e74674f70656e206d696e74696e6720697360008201527f206e6f74206f70656e207269676874206e6f7721000000000000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f42616c616e6365206d757374206265206d6f7265207468616e20300000000000600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f5472616e73616374696f6e2076616c756520646964206e6f7420657175616c2060008201527f746f2074686520746f74616c206d696e74207072696365000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f4d617820737570706c7920726561636865640000000000000000000000000000600082015250565b7f43616e6e6f74206d696e74206d6f7265207468616e206d6178206d696e74207060008201527f6572207472616e73616374696f6e000000000000000000000000000000000000602082015250565b7f416d6f756e74206973206d6f7265207468616e2062616c616e63650000000000600082015250565b6150eb81614722565b81146150f657600080fd5b50565b61510281614734565b811461510d57600080fd5b50565b61511981614746565b811461512457600080fd5b50565b61513081614752565b811461513b57600080fd5b50565b6151478161475c565b811461515257600080fd5b50565b61515e816147a8565b811461516957600080fd5b5056fea2646970667358221220324a8de28aaffcf28ea3138908716231e9222bfaa76663169d81f4ab52dfc6f764736f6c63430008010033

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.