ETH Price: $1,918.94 (+1.28%)
 

Overview

Max Total Supply

650 GHC

Holders

144

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Filtered by Token Holder
Null: 0x000...000
Balance
0 GHC
0x0000000000000000000000000000000000000000
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:
GroundHog

Compiler Version
v0.8.4+commit.c7e474f2

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 14 : GroundHog.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;

import "./ERC721A.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/security/ReentrancyGuard.sol";
import {MerkleProof} from "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol";

contract GroundHog is ERC721A, Ownable, ReentrancyGuard {
    using Address for address;
    using MerkleProof for bytes32[];

    // ===== Variables =====
    string public baseTokenURI;
    uint256 public mintPrice = 0.03 ether;
    uint256 public collectionSize = 6666;
    uint256 public whitelistMintMaxSupply = 6000;
    uint256 public reservedSize = 200;
    uint256 public maxItemsPerWallet = 10;
    uint256 public maxItemsPerTx = 10;

    bool public whitelistMintPaused = true;
    bool public publicMintPaused = true;

    bytes32 whitelistMerkleRoot;

    mapping(address => uint256) public whitelistMintedAmount;

    // ===== Constructor =====
    constructor() ERC721A("GroundHogClub", "GHC", 10) {}

    // ===== Modifier =====
    function _onlySender() private view {
        require(msg.sender == tx.origin);
    }

    modifier onlySender() {
        _onlySender();
        _;
    }

    // ===== Dev mint =====
    function devMint(uint256 amount) external onlySender onlyOwner {
        require(amount <= reservedSize, "Minting amount exceeds reserved size");
        require((totalSupply() + amount) <= collectionSize, "Sold out!");
        require(
            amount % maxBatchSize == 0,
            "Can only mint a multiple of the maxBatchSize"
        );
        uint256 numChunks = amount / maxBatchSize;
        for (uint256 i = 0; i < numChunks; i++) {
            _safeMint(msg.sender, maxBatchSize);
        }
    }

    // ===== Whitelist mint =====
    function whiteListMint(bytes32[] memory proof)
        external
        payable
        onlySender
        nonReentrant
    {
        require(!whitelistMintPaused, "Whitelist mint is paused");
        require(
            isAddressWhitelisted(proof, msg.sender),
            "You are not eligible for a whitelist mint"
        );

        uint256 amount = _getMintAmount(msg.value);

        require(
            whitelistMintedAmount[msg.sender] + amount <= maxItemsPerWallet,
            "Minting amount exceeds allowance per wallet"
        );

        require(whitelistMintMaxSupply >= amount, "Whitelist mint is sold out");

        whitelistMintMaxSupply = whitelistMintMaxSupply - amount;

        whitelistMintedAmount[msg.sender] += amount;

        _mintWithoutValidation(msg.sender, amount);
    }

    // ===== Public mint =====
    function publicMint() external payable onlySender nonReentrant {
        require(!publicMintPaused, "Public mint is paused");

        uint256 amount = _getMintAmount(msg.value);

        require(
            amount <= maxItemsPerTx,
            "Minting amount exceeds allowance per tx"
        );

        _mintWithoutValidation(msg.sender, amount);
    }

    // ===== Helper =====
    function _getMintAmount(uint256 value) internal view returns (uint256) {
        uint256 remainder = value % mintPrice;
        require(remainder == 0, "Send a divisible amount of eth");

        uint256 amount = value / mintPrice;
        require(amount > 0, "Amount to mint is 0");
        require(
            (totalSupply() + amount) <= collectionSize - reservedSize,
            "Sold out!"
        );
        return amount;
    }

    function _mintWithoutValidation(address to, uint256 amount) internal {
        require((totalSupply() + amount) <= collectionSize, "Sold out!");
        _safeMint(to, amount);
    }

    function isAddressWhitelisted(bytes32[] memory proof, address _address)
        public
        view
        returns (bool)
    {
        return isAddressInMerkleRoot(whitelistMerkleRoot, proof, _address);
    }

    function isAddressInMerkleRoot(
        bytes32 merkleRoot,
        bytes32[] memory proof,
        address _address
    ) internal pure returns (bool) {
        return proof.verify(merkleRoot, keccak256(abi.encodePacked(_address)));
    }

    // ===== Setter (owner only) =====
    function setReservedSize(uint256 _reservedSize) external onlyOwner {
        reservedSize = _reservedSize;
    }

    function setPublicMintPaused(bool _publicMintPaused) external onlyOwner {
        publicMintPaused = _publicMintPaused;
    }

    function setWhitelistMintPaused(bool _whitelistMintPaused)
        external
        onlyOwner
    {
        whitelistMintPaused = _whitelistMintPaused;
    }

    function setWhitelistMintMaxSupply(uint256 _whitelistMintMaxSupply)
        external
        onlyOwner
    {
        whitelistMintMaxSupply = _whitelistMintMaxSupply;
    }

    function setWhitelistMintMerkleRoot(bytes32 _whitelistMerkleRoot)
        external
        onlyOwner
    {
        whitelistMerkleRoot = _whitelistMerkleRoot;
    }

    function setMintPrice(uint256 _mintPrice) external onlyOwner {
        mintPrice = _mintPrice;
    }

    function setMaxItemsPerTx(uint256 _maxItemsPerTx) external onlyOwner {
        maxItemsPerTx = _maxItemsPerTx;
    }

    function setMaxItemsPerWallet(uint256 _maxItemsPerWallet)
        external
        onlyOwner
    {
        maxItemsPerWallet = _maxItemsPerWallet;
    }

    function setBaseTokenURI(string memory _baseTokenURI) external onlyOwner {
        baseTokenURI = _baseTokenURI;
    }

    // ===== Withdraw to owner =====
    function withdrawAll() external onlyOwner onlySender nonReentrant {
        (bool success, ) = msg.sender.call{value: address(this).balance}("");
        require(success, "Failed to send ether");
    }

    // ===== View =====
    function tokenURI(uint256 tokenId)
        public
        view
        override(ERC721A)
        returns (string memory)
    {
        return
            string(abi.encodePacked(baseTokenURI, Strings.toString(tokenId)));
    }

    function walletOfOwner(address address_)
        public
        view
        virtual
        returns (uint256[] memory)
    {
        uint256 _balance = balanceOf(address_);
        uint256[] memory _tokens = new uint256[](_balance);
        uint256 _index;
        uint256 _loopThrough = totalSupply();
        for (uint256 i = 0; i < _loopThrough; i++) {
            bool _exists = _exists(i);
            if (_exists) {
                if (ownerOf(i) == address_) {
                    _tokens[_index] = i;
                    _index++;
                }
            } else if (!_exists && _tokens[_balance - 1] == 0) {
                _loopThrough++;
            }
        }
        return _tokens;
    }
}

File 2 of 14 : ERC721A.sol
// SPDX-License-Identifier: MIT
// Creator: Chiru Labs

pragma solidity ^0.8.0;

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

/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata and Enumerable extension. Built to optimize for lower gas during batch mints.
 *
 * Assumes serials are sequentially minted starting at 0 (e.g. 0, 1, 2, 3..).
 *
 * Does not support burning tokens to address(0).
 *
 * Assumes that an owner cannot have more than the 2**128 (max value of uint128) of supply
 */
contract ERC721A is
    Context,
    ERC165,
    IERC721,
    IERC721Metadata,
    IERC721Enumerable
{
    using Address for address;
    using Strings for uint256;

    struct TokenOwnership {
        address addr;
        uint64 startTimestamp;
    }

    struct AddressData {
        uint128 balance;
        uint128 numberMinted;
    }

    uint256 internal currentIndex = 0;

    uint256 internal immutable maxBatchSize;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to ownership details
    // An empty struct value does not necessarily mean the token is unowned. See ownershipOf implementation for details.
    mapping(uint256 => TokenOwnership) internal _ownerships;

    // Mapping owner address to address data
    mapping(address => AddressData) private _addressData;

    // 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
     * `maxBatchSize` refers to how much a minter can mint at a time.
     */
    constructor(
        string memory name_,
        string memory symbol_,
        uint256 maxBatchSize_
    ) {
        require(maxBatchSize_ > 0, "ERC721A: max batch size must be nonzero");
        _name = name_;
        _symbol = symbol_;
        maxBatchSize = maxBatchSize_;
    }

    /**
     * @dev See {IERC721Enumerable-totalSupply}.
     */
    function totalSupply() public view override returns (uint256) {
        return currentIndex;
    }

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

    /**
     * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
     * This read function is O(totalSupply). If calling from a separate contract, be sure to test gas first.
     * It may also degrade with extremely large collection sizes (e.g >> 10000), test for your use case.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index)
        public
        view
        override
        returns (uint256)
    {
        require(index < balanceOf(owner), "ERC721A: owner index out of bounds");
        uint256 numMintedSoFar = totalSupply();
        uint256 tokenIdsIdx = 0;
        address currOwnershipAddr = address(0);
        for (uint256 i = 0; i < numMintedSoFar; i++) {
            TokenOwnership memory ownership = _ownerships[i];
            if (ownership.addr != address(0)) {
                currOwnershipAddr = ownership.addr;
            }
            if (currOwnershipAddr == owner) {
                if (tokenIdsIdx == index) {
                    return i;
                }
                tokenIdsIdx++;
            }
        }
        revert("ERC721A: unable to get token of owner by index");
    }

    /**
     * @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 ||
            interfaceId == type(IERC721Enumerable).interfaceId ||
            super.supportsInterface(interfaceId);
    }

    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner) public view override returns (uint256) {
        require(
            owner != address(0),
            "ERC721A: balance query for the zero address"
        );
        return uint256(_addressData[owner].balance);
    }

    function _numberMinted(address owner) internal view returns (uint256) {
        require(
            owner != address(0),
            "ERC721A: number minted query for the zero address"
        );
        return uint256(_addressData[owner].numberMinted);
    }

    function ownershipOf(uint256 tokenId)
        internal
        view
        returns (TokenOwnership memory)
    {
        require(_exists(tokenId), "ERC721A: owner query for nonexistent token");

        uint256 lowestTokenToCheck;
        if (tokenId >= maxBatchSize) {
            lowestTokenToCheck = tokenId - maxBatchSize + 1;
        }

        for (uint256 curr = tokenId; curr >= lowestTokenToCheck; curr--) {
            TokenOwnership memory ownership = _ownerships[curr];
            if (ownership.addr != address(0)) {
                return ownership;
            }
        }

        revert("ERC721A: unable to determine the owner of token");
    }

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view override returns (address) {
        return ownershipOf(tokenId).addr;
    }

    /**
     * @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 override {
        address owner = ERC721A.ownerOf(tokenId);
        require(to != owner, "ERC721A: approval to current owner");

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

        _approve(to, tokenId, owner);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

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

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public override {
        _transfer(from, to, tokenId);
        require(
            _checkOnERC721Received(from, to, tokenId, _data),
            "ERC721A: 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`),
     */
    function _exists(uint256 tokenId) internal view returns (bool) {
        return tokenId < currentIndex;
    }

    function _safeMint(address to, uint256 quantity) internal {
        _safeMint(to, quantity, "");
    }

    /**
     * @dev Mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `quantity` cannot be larger than the max batch size.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(
        address to,
        uint256 quantity,
        bytes memory _data
    ) internal {
        uint256 startTokenId = currentIndex;
        require(to != address(0), "ERC721A: mint to the zero address");
        // We know if the first token in the batch doesn't exist, the other ones don't as well, because of serial ordering.
        require(!_exists(startTokenId), "ERC721A: token already minted");
        require(quantity <= maxBatchSize, "ERC721A: quantity to mint too high");
        require(quantity > 0, "ERC721A: quantity must be greater 0");

        _beforeTokenTransfers(address(0), to, startTokenId, quantity);

        AddressData memory addressData = _addressData[to];
        _addressData[to] = AddressData(
            addressData.balance + uint128(quantity),
            addressData.numberMinted + uint128(quantity)
        );
        _ownerships[startTokenId] = TokenOwnership(to, uint64(block.timestamp));

        uint256 updatedIndex = startTokenId;

        for (uint256 i = 0; i < quantity; i++) {
            emit Transfer(address(0), to, updatedIndex);
            require(
                _checkOnERC721Received(address(0), to, updatedIndex, _data),
                "ERC721A: transfer to non ERC721Receiver implementer"
            );
            updatedIndex++;
        }

        currentIndex = updatedIndex;
        _afterTokenTransfers(address(0), to, startTokenId, quantity);
    }

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *
     * 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
    ) private {
        TokenOwnership memory prevOwnership = ownershipOf(tokenId);

        bool isApprovedOrOwner = (_msgSender() == prevOwnership.addr ||
            getApproved(tokenId) == _msgSender() ||
            isApprovedForAll(prevOwnership.addr, _msgSender()));

        require(
            isApprovedOrOwner,
            "ERC721A: transfer caller is not owner nor approved"
        );

        require(
            prevOwnership.addr == from,
            "ERC721A: transfer from incorrect owner"
        );
        require(to != address(0), "ERC721A: transfer to the zero address");

        _beforeTokenTransfers(from, to, tokenId, 1);

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

        // Underflow of the sender's balance is impossible because we check for
        // ownership above and the recipient's balance can't realistically overflow.
        unchecked {
            _addressData[from].balance -= 1;
            _addressData[to].balance += 1;
        }

        _ownerships[tokenId] = TokenOwnership(to, uint64(block.timestamp));

        // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it.
        // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
        uint256 nextTokenId = tokenId + 1;
        if (_ownerships[nextTokenId].addr == address(0)) {
            if (_exists(nextTokenId)) {
                _ownerships[nextTokenId] = TokenOwnership(
                    prevOwnership.addr,
                    prevOwnership.startTimestamp
                );
            }
        }

        emit Transfer(from, to, tokenId);
        _afterTokenTransfers(from, to, tokenId, 1);
    }

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

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

    /**
     * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting.
     *
     * startTokenId - the first token id to be transferred
     * quantity - the amount to be transferred
     *
     * 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`.
     */
    function _beforeTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}

    /**
     * @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes
     * minting.
     *
     * startTokenId - the first token id to be transferred
     * quantity - the amount to be transferred
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero.
     * - `from` and `to` are never both zero.
     */
    function _afterTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}
}

File 3 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 4 of 14 : ReentrancyGuard.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol)

pragma solidity ^0.8.0;

/**
 * @dev Contract module that helps prevent reentrant calls to a function.
 *
 * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier
 * available, which can be applied to functions to make sure there are no nested
 * (reentrant) calls to them.
 *
 * Note that because there is a single `nonReentrant` guard, functions marked as
 * `nonReentrant` may not call one another. This can be worked around by making
 * those functions `private`, and then adding `external` `nonReentrant` entry
 * points to them.
 *
 * TIP: If you would like to learn more about reentrancy and alternative ways
 * to protect against it, check out our blog post
 * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].
 */
abstract contract ReentrancyGuard {
    // Booleans are more expensive than uint256 or any type that takes up a full
    // word because each write operation emits an extra SLOAD to first read the
    // slot's contents, replace the bits taken up by the boolean, and then write
    // back. This is the compiler's defense against contract upgrades and
    // pointer aliasing, and it cannot be disabled.

    // The values being non-zero value makes deployment a bit more expensive,
    // but in exchange the refund on every call to nonReentrant will be lower in
    // amount. Since refunds are capped to a percentage of the total
    // transaction's gas, it is best to keep them low in cases like this one, to
    // increase the likelihood of the full refund coming into effect.
    uint256 private constant _NOT_ENTERED = 1;
    uint256 private constant _ENTERED = 2;

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

    /**
     * @dev Prevents a contract from calling itself, directly or indirectly.
     * Calling a `nonReentrant` function from another `nonReentrant`
     * function is not supported. It is possible to prevent this from happening
     * by making the `nonReentrant` function external, and making it call a
     * `private` function that does the actual work.
     */
    modifier nonReentrant() {
        // On the first call to nonReentrant, _notEntered will be true
        require(_status != _ENTERED, "ReentrancyGuard: reentrant call");

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

        _;

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

File 5 of 14 : MerkleProof.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (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 = keccak256(abi.encodePacked(computedHash, proofElement));
            } else {
                // Hash(current element of the proof + current computed hash)
                computedHash = keccak256(abi.encodePacked(proofElement, computedHash));
            }
        }
        return computedHash;
    }
}

File 6 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 7 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 8 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 9 of 14 : IERC721Enumerable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Enumerable.sol)

pragma solidity ^0.8.0;

import "../IERC721.sol";

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

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

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

File 10 of 14 : Address.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Address.sol)

pragma solidity ^0.8.0;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize, which returns 0 for contracts in
        // construction, since the code is only stored at the end of the
        // constructor execution.

        uint256 size;
        assembly {
            size := extcodesize(account)
        }
        return size > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

File 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

API
[{"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":[{"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":"collectionSize","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"devMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"},{"internalType":"address","name":"_address","type":"address"}],"name":"isAddressWhitelisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxItemsPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxItemsPerWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"publicMintPaused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reservedSize","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"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":"uint256","name":"_maxItemsPerTx","type":"uint256"}],"name":"setMaxItemsPerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxItemsPerWallet","type":"uint256"}],"name":"setMaxItemsPerWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintPrice","type":"uint256"}],"name":"setMintPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_publicMintPaused","type":"bool"}],"name":"setPublicMintPaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_reservedSize","type":"uint256"}],"name":"setReservedSize","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_whitelistMintMaxSupply","type":"uint256"}],"name":"setWhitelistMintMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_whitelistMerkleRoot","type":"bytes32"}],"name":"setWhitelistMintMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_whitelistMintPaused","type":"bool"}],"name":"setWhitelistMintPaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"address_","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"}],"name":"whiteListMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"whitelistMintMaxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"whitelistMintPaused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"whitelistMintedAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdrawAll","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60a060405260008055666a94d74f430000600a55611a0a600b55611770600c5560c8600d55600a600e55600a600f556001601060006101000a81548160ff0219169083151502179055506001601060016101000a81548160ff0219169083151502179055503480156200007157600080fd5b506040518060400160405280600d81526020017f47726f756e64486f67436c7562000000000000000000000000000000000000008152506040518060400160405280600381526020017f4748430000000000000000000000000000000000000000000000000000000000815250600a6000811162000126576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200011d9062000336565b60405180910390fd5b82600190805190602001906200013e9291906200025f565b508160029080519060200190620001579291906200025f565b50806080818152505050505062000183620001776200019160201b60201c565b6200019960201b60201c565b60016008819055506200041d565b600033905090565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200026d9062000369565b90600052602060002090601f016020900481019282620002915760008555620002dd565b82601f10620002ac57805160ff1916838001178555620002dd565b82800160010185558215620002dd579182015b82811115620002dc578251825591602001919060010190620002bf565b5b509050620002ec9190620002f0565b5090565b5b808211156200030b576000816000905550600101620002f1565b5090565b60006200031e60278362000358565b91506200032b82620003ce565b604082019050919050565b6000602082019050818103600083015262000351816200030f565b9050919050565b600082825260208201905092915050565b600060028204905060018216806200038257607f821691505b602082108114156200039957620003986200039f565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f455243373231413a206d61782062617463682073697a65206d7573742062652060008201527f6e6f6e7a65726f00000000000000000000000000000000000000000000000000602082015250565b608051615a936200045c600039600081816113e3015281816114510152818161148e01528181612e0101528181612e2a015261349e0152615a936000f3fe6080604052600436106102675760003560e01c80636352211e11610144578063a22cb465116100b6578063db7aa4f91161007a578063db7aa4f914610912578063e4effacb1461093d578063e985e9c514610966578063f2fde38b146109a3578063f4a0a528146109cc578063fc9d0fb5146109f557610267565b8063a22cb4651461082d578063b74e1f4d14610856578063b88d4fde14610881578063c87b56dd146108aa578063d547cfb7146108e757610267565b80637a4e5715116101085780637a4e5715146107525780637deb69ad1461077b578063853828b6146107a45780638da5cb5b146107bb57806395d89b41146107e657806397254e551461081157610267565b80636352211e1461066b5780636817c76c146106a857806370a08231146106d3578063715018a61461071057806379e1587a1461072757610267565b806330176e13116101dd578063375a069a116101a1578063375a069a1461054b5780633c7324641461057457806342842e0e1461059d578063438b6300146105c657806345c0f533146106035780634f6ccce71461062e57610267565b806330176e131461047857806330666a4d146104a157806333949348146104cc57806333d9d5fd146104f5578063353002301461052057610267565b8063180fec041161022f578063180fec041461037757806318160ddd146103a05780631fac2a35146103cb57806323b872dd1461040857806326092b83146104315780632f745c591461043b57610267565b806301ffc9a71461026c57806306fdde03146102a9578063081812fc146102d4578063095ea7b3146103115780630996896b1461033a575b600080fd5b34801561027857600080fd5b50610293600480360381019061028e9190613f3a565b610a1e565b6040516102a091906147a7565b60405180910390f35b3480156102b557600080fd5b506102be610b68565b6040516102cb91906147c2565b60405180910390f35b3480156102e057600080fd5b506102fb60048036038101906102f69190613fcd565b610bfa565b604051610308919061471e565b60405180910390f35b34801561031d57600080fd5b5061033860048036038101906103339190613e17565b610c7f565b005b34801561034657600080fd5b50610361600480360381019061035c9190613e94565b610d98565b60405161036e91906147a7565b60405180910390f35b34801561038357600080fd5b5061039e60048036038101906103999190613fcd565b610daf565b005b3480156103ac57600080fd5b506103b5610e35565b6040516103c29190614c04565b60405180910390f35b3480156103d757600080fd5b506103f260048036038101906103ed9190613cac565b610e3e565b6040516103ff9190614c04565b60405180910390f35b34801561041457600080fd5b5061042f600480360381019061042a9190613d11565b610e56565b005b610439610e66565b005b34801561044757600080fd5b50610462600480360381019061045d9190613e17565b610f73565b60405161046f9190614c04565b60405180910390f35b34801561048457600080fd5b5061049f600480360381019061049a9190613f8c565b611171565b005b3480156104ad57600080fd5b506104b6611207565b6040516104c39190614c04565b60405180910390f35b3480156104d857600080fd5b506104f360048036038101906104ee9190613ee8565b61120d565b005b34801561050157600080fd5b5061050a6112a6565b60405161051791906147a7565b60405180910390f35b34801561052c57600080fd5b506105356112b9565b6040516105429190614c04565b60405180910390f35b34801561055757600080fd5b50610572600480360381019061056d9190613fcd565b6112bf565b005b34801561058057600080fd5b5061059b60048036038101906105969190613fcd565b6114ca565b005b3480156105a957600080fd5b506105c460048036038101906105bf9190613d11565b611550565b005b3480156105d257600080fd5b506105ed60048036038101906105e89190613cac565b611570565b6040516105fa9190614785565b60405180910390f35b34801561060f57600080fd5b50610618611743565b6040516106259190614c04565b60405180910390f35b34801561063a57600080fd5b5061065560048036038101906106509190613fcd565b611749565b6040516106629190614c04565b60405180910390f35b34801561067757600080fd5b50610692600480360381019061068d9190613fcd565b61179c565b60405161069f919061471e565b60405180910390f35b3480156106b457600080fd5b506106bd6117b2565b6040516106ca9190614c04565b60405180910390f35b3480156106df57600080fd5b506106fa60048036038101906106f59190613cac565b6117b8565b6040516107079190614c04565b60405180910390f35b34801561071c57600080fd5b506107256118a1565b005b34801561073357600080fd5b5061073c611929565b6040516107499190614c04565b60405180910390f35b34801561075e57600080fd5b5061077960048036038101906107749190613fcd565b61192f565b005b34801561078757600080fd5b506107a2600480360381019061079d9190613fcd565b6119b5565b005b3480156107b057600080fd5b506107b9611a3b565b005b3480156107c757600080fd5b506107d0611bc4565b6040516107dd919061471e565b60405180910390f35b3480156107f257600080fd5b506107fb611bee565b60405161080891906147c2565b60405180910390f35b61082b60048036038101906108269190613e53565b611c80565b005b34801561083957600080fd5b50610854600480360381019061084f9190613ddb565b611ed0565b005b34801561086257600080fd5b5061086b612051565b60405161087891906147a7565b60405180910390f35b34801561088d57600080fd5b506108a860048036038101906108a39190613d60565b612064565b005b3480156108b657600080fd5b506108d160048036038101906108cc9190613fcd565b6120c0565b6040516108de91906147c2565b60405180910390f35b3480156108f357600080fd5b506108fc6120f4565b60405161090991906147c2565b60405180910390f35b34801561091e57600080fd5b50610927612182565b6040516109349190614c04565b60405180910390f35b34801561094957600080fd5b50610964600480360381019061095f9190613f11565b612188565b005b34801561097257600080fd5b5061098d60048036038101906109889190613cd5565b61220e565b60405161099a91906147a7565b60405180910390f35b3480156109af57600080fd5b506109ca60048036038101906109c59190613cac565b6122a2565b005b3480156109d857600080fd5b506109f360048036038101906109ee9190613fcd565b61239a565b005b348015610a0157600080fd5b50610a1c6004803603810190610a179190613ee8565b612420565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610ae957507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610b5157507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610b615750610b60826124b9565b5b9050919050565b606060018054610b7790614f75565b80601f0160208091040260200160405190810160405280929190818152602001828054610ba390614f75565b8015610bf05780601f10610bc557610100808354040283529160200191610bf0565b820191906000526020600020905b815481529060010190602001808311610bd357829003601f168201915b5050505050905090565b6000610c0582612523565b610c44576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c3b90614ba4565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610c8a8261179c565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610cfb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cf290614a64565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610d1a612530565b73ffffffffffffffffffffffffffffffffffffffff161480610d495750610d4881610d43612530565b61220e565b5b610d88576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d7f90614924565b60405180910390fd5b610d93838383612538565b505050565b6000610da760115484846125ea565b905092915050565b610db7612530565b73ffffffffffffffffffffffffffffffffffffffff16610dd5611bc4565b73ffffffffffffffffffffffffffffffffffffffff1614610e2b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e22906149a4565b60405180910390fd5b80600e8190555050565b60008054905090565b60126020528060005260406000206000915090505481565b610e61838383612630565b505050565b610e6e612bd7565b60026008541415610eb4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eab90614b44565b60405180910390fd5b6002600881905550601060019054906101000a900460ff1615610f0c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f0390614a24565b60405180910390fd5b6000610f1734612c11565b9050600f54811115610f5e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f5590614884565b60405180910390fd5b610f683382612d2a565b506001600881905550565b6000610f7e836117b8565b8210610fbf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fb6906147e4565b60405180910390fd5b6000610fc9610e35565b905060008060005b8381101561112f576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146110c357806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561111b578684141561110c57819550505050505061116b565b838061111790614fd8565b9450505b50808061112790614fd8565b915050610fd1565b506040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161116290614b24565b60405180910390fd5b92915050565b611179612530565b73ffffffffffffffffffffffffffffffffffffffff16611197611bc4565b73ffffffffffffffffffffffffffffffffffffffff16146111ed576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111e4906149a4565b60405180910390fd5b80600990805190602001906112039291906139eb565b5050565b600f5481565b611215612530565b73ffffffffffffffffffffffffffffffffffffffff16611233611bc4565b73ffffffffffffffffffffffffffffffffffffffff1614611289576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611280906149a4565b60405180910390fd5b80601060016101000a81548160ff02191690831515021790555050565b601060019054906101000a900460ff1681565b600c5481565b6112c7612bd7565b6112cf612530565b73ffffffffffffffffffffffffffffffffffffffff166112ed611bc4565b73ffffffffffffffffffffffffffffffffffffffff1614611343576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161133a906149a4565b60405180910390fd5b600d54811115611388576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161137f90614864565b60405180910390fd5b600b5481611394610e35565b61139e9190614db4565b11156113df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113d690614be4565b60405180910390fd5b60007f00000000000000000000000000000000000000000000000000000000000000008261140d919061504f565b1461144d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161144490614b04565b60405180910390fd5b60007f00000000000000000000000000000000000000000000000000000000000000008261147b9190614e0a565b905060005b818110156114c5576114b2337f0000000000000000000000000000000000000000000000000000000000000000612d8f565b80806114bd90614fd8565b915050611480565b505050565b6114d2612530565b73ffffffffffffffffffffffffffffffffffffffff166114f0611bc4565b73ffffffffffffffffffffffffffffffffffffffff1614611546576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161153d906149a4565b60405180910390fd5b80600d8190555050565b61156b83838360405180602001604052806000815250612064565b505050565b6060600061157d836117b8565b905060008167ffffffffffffffff8111156115c1577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280602002602001820160405280156115ef5781602001602082028036833780820191505090505b5090506000806115fd610e35565b905060005b8181101561173657600061161582612523565b905080156116b3578773ffffffffffffffffffffffffffffffffffffffff1661163d8361179c565b73ffffffffffffffffffffffffffffffffffffffff1614156116ae5781858581518110611693577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101818152505083806116aa90614fd8565b9450505b611722565b8015801561170d57506000856001886116cc9190614e3b565b81518110611703577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151145b1561172157828061171d90614fd8565b9350505b5b50808061172e90614fd8565b915050611602565b5082945050505050919050565b600b5481565b6000611753610e35565b8210611794576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161178b906148a4565b60405180910390fd5b819050919050565b60006117a782612dad565b600001519050919050565b600a5481565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611829576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161182090614964565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b6118a9612530565b73ffffffffffffffffffffffffffffffffffffffff166118c7611bc4565b73ffffffffffffffffffffffffffffffffffffffff161461191d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611914906149a4565b60405180910390fd5b6119276000612fb0565b565b600d5481565b611937612530565b73ffffffffffffffffffffffffffffffffffffffff16611955611bc4565b73ffffffffffffffffffffffffffffffffffffffff16146119ab576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119a2906149a4565b60405180910390fd5b80600f8190555050565b6119bd612530565b73ffffffffffffffffffffffffffffffffffffffff166119db611bc4565b73ffffffffffffffffffffffffffffffffffffffff1614611a31576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a28906149a4565b60405180910390fd5b80600c8190555050565b611a43612530565b73ffffffffffffffffffffffffffffffffffffffff16611a61611bc4565b73ffffffffffffffffffffffffffffffffffffffff1614611ab7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aae906149a4565b60405180910390fd5b611abf612bd7565b60026008541415611b05576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611afc90614b44565b60405180910390fd5b600260088190555060003373ffffffffffffffffffffffffffffffffffffffff1647604051611b3390614709565b60006040518083038185875af1925050503d8060008114611b70576040519150601f19603f3d011682016040523d82523d6000602084013e611b75565b606091505b5050905080611bb9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bb0906149c4565b60405180910390fd5b506001600881905550565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060028054611bfd90614f75565b80601f0160208091040260200160405190810160405280929190818152602001828054611c2990614f75565b8015611c765780601f10611c4b57610100808354040283529160200191611c76565b820191906000526020600020905b815481529060010190602001808311611c5957829003601f168201915b5050505050905090565b611c88612bd7565b60026008541415611cce576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cc590614b44565b60405180910390fd5b6002600881905550601060009054906101000a900460ff1615611d26576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d1d90614944565b60405180910390fd5b611d308133610d98565b611d6f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d6690614a44565b60405180910390fd5b6000611d7a34612c11565b9050600e5481601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611dca9190614db4565b1115611e0b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e0290614904565b60405180910390fd5b80600c541015611e50576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e4790614b64565b60405180910390fd5b80600c54611e5e9190614e3b565b600c8190555080601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611eb39190614db4565b92505081905550611ec43382612d2a565b50600160088190555050565b611ed8612530565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611f46576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f3d906149e4565b60405180910390fd5b8060066000611f53612530565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16612000612530565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161204591906147a7565b60405180910390a35050565b601060009054906101000a900460ff1681565b61206f848484612630565b61207b84848484613076565b6120ba576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120b190614aa4565b60405180910390fd5b50505050565b606060096120cd8361320d565b6040516020016120de9291906146e5565b6040516020818303038152906040529050919050565b6009805461210190614f75565b80601f016020809104026020016040519081016040528092919081815260200182805461212d90614f75565b801561217a5780601f1061214f5761010080835404028352916020019161217a565b820191906000526020600020905b81548152906001019060200180831161215d57829003601f168201915b505050505081565b600e5481565b612190612530565b73ffffffffffffffffffffffffffffffffffffffff166121ae611bc4565b73ffffffffffffffffffffffffffffffffffffffff1614612204576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121fb906149a4565b60405180910390fd5b8060118190555050565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6122aa612530565b73ffffffffffffffffffffffffffffffffffffffff166122c8611bc4565b73ffffffffffffffffffffffffffffffffffffffff161461231e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612315906149a4565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561238e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161238590614804565b60405180910390fd5b61239781612fb0565b50565b6123a2612530565b73ffffffffffffffffffffffffffffffffffffffff166123c0611bc4565b73ffffffffffffffffffffffffffffffffffffffff1614612416576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161240d906149a4565b60405180910390fd5b80600a8190555050565b612428612530565b73ffffffffffffffffffffffffffffffffffffffff16612446611bc4565b73ffffffffffffffffffffffffffffffffffffffff161461249c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612493906149a4565b60405180910390fd5b80601060006101000a81548160ff02191690831515021790555050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000805482109050919050565b600033905090565b826005600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006126278483604051602001612601919061469e565b60405160208183030381529060405280519060200120856133ba9092919063ffffffff16565b90509392505050565b600061263b82612dad565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff16612662612530565b73ffffffffffffffffffffffffffffffffffffffff1614806126be5750612687612530565b73ffffffffffffffffffffffffffffffffffffffff166126a684610bfa565b73ffffffffffffffffffffffffffffffffffffffff16145b806126da57506126d982600001516126d4612530565b61220e565b5b90508061271c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161271390614a04565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff161461278e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161278590614984565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156127fe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127f5906148c4565b60405180910390fd5b61280b85858560016133d1565b61281b6000848460000151612538565b6001600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160392506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060405180604001604052808573ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506003600085815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055509050506000600184612a219190614db4565b9050600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415612b6757612a9781612523565b15612b66576040518060400160405280846000015173ffffffffffffffffffffffffffffffffffffffff168152602001846020015167ffffffffffffffff168152506003600083815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055509050505b5b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612bcf86868660016133d7565b505050505050565b3273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614612c0f57600080fd5b565b600080600a5483612c22919061504f565b905060008114612c67576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c5e906148e4565b60405180910390fd5b6000600a5484612c779190614e0a565b905060008111612cbc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612cb390614844565b60405180910390fd5b600d54600b54612ccc9190614e3b565b81612cd5610e35565b612cdf9190614db4565b1115612d20576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d1790614be4565b60405180910390fd5b8092505050919050565b600b5481612d36610e35565b612d409190614db4565b1115612d81576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d7890614be4565b60405180910390fd5b612d8b8282612d8f565b5050565b612da98282604051806020016040528060008152506133dd565b5050565b612db5613a71565b612dbe82612523565b612dfd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612df490614824565b60405180910390fd5b60007f00000000000000000000000000000000000000000000000000000000000000008310612e615760017f000000000000000000000000000000000000000000000000000000000000000084612e549190614e3b565b612e5e9190614db4565b90505b60008390505b818110612f6f576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612f5b57809350505050612fab565b508080612f6790614f4b565b915050612e67565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612fa290614b84565b60405180910390fd5b919050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60006130978473ffffffffffffffffffffffffffffffffffffffff166138ff565b15613200578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026130c0612530565b8786866040518563ffffffff1660e01b81526004016130e29493929190614739565b602060405180830381600087803b1580156130fc57600080fd5b505af192505050801561312d57506040513d601f19601f8201168201806040525081019061312a9190613f63565b60015b6131b0573d806000811461315d576040519150601f19603f3d011682016040523d82523d6000602084013e613162565b606091505b506000815114156131a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161319f90614aa4565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050613205565b600190505b949350505050565b60606000821415613255576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506133b5565b600082905060005b6000821461328757808061327090614fd8565b915050600a826132809190614e0a565b915061325d565b60008167ffffffffffffffff8111156132c9577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156132fb5781602001600182028036833780820191505090505b5090505b600085146133ae576001826133149190614e3b565b9150600a85613323919061504f565b603061332f9190614db4565b60f81b81838151811061336b577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856133a79190614e0a565b94506132ff565b8093505050505b919050565b6000826133c78584613912565b1490509392505050565b50505050565b50505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415613453576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161344a90614ae4565b60405180910390fd5b61345c81612523565b1561349c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161349390614ac4565b60405180910390fd5b7f00000000000000000000000000000000000000000000000000000000000000008311156134ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016134f690614bc4565b60405180910390fd5b60008311613542576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161353990614a84565b60405180910390fd5b61354f60008583866133d1565b6000600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206040518060400160405290816000820160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681526020016000820160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff16815250509050604051806040016040528085836000015161364c9190614d6e565b6fffffffffffffffffffffffffffffffff1681526020018583602001516136739190614d6e565b6fffffffffffffffffffffffffffffffff16815250600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008201518160000160006101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060208201518160000160106101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555090505060405180604001604052808673ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506003600084815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550905050600082905060005b858110156138e257818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46138826000888488613076565b6138c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016138b890614aa4565b60405180910390fd5b81806138cc90614fd8565b92505080806138da90614fd8565b915050613811565b50806000819055506138f760008785886133d7565b505050505050565b600080823b905060008111915050919050565b60008082905060005b84518110156139e057600085828151811061395f577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015190508083116139a05782816040516020016139839291906146b9565b6040516020818303038152906040528051906020012092506139cc565b80836040516020016139b39291906146b9565b6040516020818303038152906040528051906020012092505b5080806139d890614fd8565b91505061391b565b508091505092915050565b8280546139f790614f75565b90600052602060002090601f016020900481019282613a195760008555613a60565b82601f10613a3257805160ff1916838001178555613a60565b82800160010185558215613a60579182015b82811115613a5f578251825591602001919060010190613a44565b5b509050613a6d9190613aab565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b80821115613ac4576000816000905550600101613aac565b5090565b6000613adb613ad684614c44565b614c1f565b90508083825260208201905082856020860282011115613afa57600080fd5b60005b85811015613b2a5781613b108882613c04565b845260208401935060208301925050600181019050613afd565b5050509392505050565b6000613b47613b4284614c70565b614c1f565b905082815260208101848484011115613b5f57600080fd5b613b6a848285614f09565b509392505050565b6000613b85613b8084614ca1565b614c1f565b905082815260208101848484011115613b9d57600080fd5b613ba8848285614f09565b509392505050565b600081359050613bbf816159ea565b92915050565b600082601f830112613bd657600080fd5b8135613be6848260208601613ac8565b91505092915050565b600081359050613bfe81615a01565b92915050565b600081359050613c1381615a18565b92915050565b600081359050613c2881615a2f565b92915050565b600081519050613c3d81615a2f565b92915050565b600082601f830112613c5457600080fd5b8135613c64848260208601613b34565b91505092915050565b600082601f830112613c7e57600080fd5b8135613c8e848260208601613b72565b91505092915050565b600081359050613ca681615a46565b92915050565b600060208284031215613cbe57600080fd5b6000613ccc84828501613bb0565b91505092915050565b60008060408385031215613ce857600080fd5b6000613cf685828601613bb0565b9250506020613d0785828601613bb0565b9150509250929050565b600080600060608486031215613d2657600080fd5b6000613d3486828701613bb0565b9350506020613d4586828701613bb0565b9250506040613d5686828701613c97565b9150509250925092565b60008060008060808587031215613d7657600080fd5b6000613d8487828801613bb0565b9450506020613d9587828801613bb0565b9350506040613da687828801613c97565b925050606085013567ffffffffffffffff811115613dc357600080fd5b613dcf87828801613c43565b91505092959194509250565b60008060408385031215613dee57600080fd5b6000613dfc85828601613bb0565b9250506020613e0d85828601613bef565b9150509250929050565b60008060408385031215613e2a57600080fd5b6000613e3885828601613bb0565b9250506020613e4985828601613c97565b9150509250929050565b600060208284031215613e6557600080fd5b600082013567ffffffffffffffff811115613e7f57600080fd5b613e8b84828501613bc5565b91505092915050565b60008060408385031215613ea757600080fd5b600083013567ffffffffffffffff811115613ec157600080fd5b613ecd85828601613bc5565b9250506020613ede85828601613bb0565b9150509250929050565b600060208284031215613efa57600080fd5b6000613f0884828501613bef565b91505092915050565b600060208284031215613f2357600080fd5b6000613f3184828501613c04565b91505092915050565b600060208284031215613f4c57600080fd5b6000613f5a84828501613c19565b91505092915050565b600060208284031215613f7557600080fd5b6000613f8384828501613c2e565b91505092915050565b600060208284031215613f9e57600080fd5b600082013567ffffffffffffffff811115613fb857600080fd5b613fc484828501613c6d565b91505092915050565b600060208284031215613fdf57600080fd5b6000613fed84828501613c97565b91505092915050565b60006140028383614680565b60208301905092915050565b61401781614e6f565b82525050565b61402e61402982614e6f565b615021565b82525050565b600061403f82614cf7565b6140498185614d25565b935061405483614cd2565b8060005b8381101561408557815161406c8882613ff6565b975061407783614d18565b925050600181019050614058565b5085935050505092915050565b61409b81614e81565b82525050565b6140b26140ad82614e8d565b615033565b82525050565b60006140c382614d02565b6140cd8185614d36565b93506140dd818560208601614f18565b6140e68161513c565b840191505092915050565b60006140fc82614d0d565b6141068185614d52565b9350614116818560208601614f18565b61411f8161513c565b840191505092915050565b600061413582614d0d565b61413f8185614d63565b935061414f818560208601614f18565b80840191505092915050565b6000815461416881614f75565b6141728186614d63565b9450600182166000811461418d576001811461419e576141d1565b60ff198316865281860193506141d1565b6141a785614ce2565b60005b838110156141c9578154818901526001820191506020810190506141aa565b838801955050505b50505092915050565b60006141e7602283614d52565b91506141f28261515a565b604082019050919050565b600061420a602683614d52565b9150614215826151a9565b604082019050919050565b600061422d602a83614d52565b9150614238826151f8565b604082019050919050565b6000614250601383614d52565b915061425b82615247565b602082019050919050565b6000614273602483614d52565b915061427e82615270565b604082019050919050565b6000614296602783614d52565b91506142a1826152bf565b604082019050919050565b60006142b9602383614d52565b91506142c48261530e565b604082019050919050565b60006142dc602583614d52565b91506142e78261535d565b604082019050919050565b60006142ff601e83614d52565b915061430a826153ac565b602082019050919050565b6000614322602b83614d52565b915061432d826153d5565b604082019050919050565b6000614345603983614d52565b915061435082615424565b604082019050919050565b6000614368601883614d52565b915061437382615473565b602082019050919050565b600061438b602b83614d52565b91506143968261549c565b604082019050919050565b60006143ae602683614d52565b91506143b9826154eb565b604082019050919050565b60006143d1602083614d52565b91506143dc8261553a565b602082019050919050565b60006143f4601483614d52565b91506143ff82615563565b602082019050919050565b6000614417601a83614d52565b91506144228261558c565b602082019050919050565b600061443a603283614d52565b9150614445826155b5565b604082019050919050565b600061445d601583614d52565b915061446882615604565b602082019050919050565b6000614480602983614d52565b915061448b8261562d565b604082019050919050565b60006144a3602283614d52565b91506144ae8261567c565b604082019050919050565b60006144c6600083614d47565b91506144d1826156cb565b600082019050919050565b60006144e9602383614d52565b91506144f4826156ce565b604082019050919050565b600061450c603383614d52565b91506145178261571d565b604082019050919050565b600061452f601d83614d52565b915061453a8261576c565b602082019050919050565b6000614552602183614d52565b915061455d82615795565b604082019050919050565b6000614575602c83614d52565b9150614580826157e4565b604082019050919050565b6000614598602e83614d52565b91506145a382615833565b604082019050919050565b60006145bb601f83614d52565b91506145c682615882565b602082019050919050565b60006145de601a83614d52565b91506145e9826158ab565b602082019050919050565b6000614601602f83614d52565b915061460c826158d4565b604082019050919050565b6000614624602d83614d52565b915061462f82615923565b604082019050919050565b6000614647602283614d52565b915061465282615972565b604082019050919050565b600061466a600983614d52565b9150614675826159c1565b602082019050919050565b61468981614eff565b82525050565b61469881614eff565b82525050565b60006146aa828461401d565b60148201915081905092915050565b60006146c582856140a1565b6020820191506146d582846140a1565b6020820191508190509392505050565b60006146f1828561415b565b91506146fd828461412a565b91508190509392505050565b6000614714826144b9565b9150819050919050565b6000602082019050614733600083018461400e565b92915050565b600060808201905061474e600083018761400e565b61475b602083018661400e565b614768604083018561468f565b818103606083015261477a81846140b8565b905095945050505050565b6000602082019050818103600083015261479f8184614034565b905092915050565b60006020820190506147bc6000830184614092565b92915050565b600060208201905081810360008301526147dc81846140f1565b905092915050565b600060208201905081810360008301526147fd816141da565b9050919050565b6000602082019050818103600083015261481d816141fd565b9050919050565b6000602082019050818103600083015261483d81614220565b9050919050565b6000602082019050818103600083015261485d81614243565b9050919050565b6000602082019050818103600083015261487d81614266565b9050919050565b6000602082019050818103600083015261489d81614289565b9050919050565b600060208201905081810360008301526148bd816142ac565b9050919050565b600060208201905081810360008301526148dd816142cf565b9050919050565b600060208201905081810360008301526148fd816142f2565b9050919050565b6000602082019050818103600083015261491d81614315565b9050919050565b6000602082019050818103600083015261493d81614338565b9050919050565b6000602082019050818103600083015261495d8161435b565b9050919050565b6000602082019050818103600083015261497d8161437e565b9050919050565b6000602082019050818103600083015261499d816143a1565b9050919050565b600060208201905081810360008301526149bd816143c4565b9050919050565b600060208201905081810360008301526149dd816143e7565b9050919050565b600060208201905081810360008301526149fd8161440a565b9050919050565b60006020820190508181036000830152614a1d8161442d565b9050919050565b60006020820190508181036000830152614a3d81614450565b9050919050565b60006020820190508181036000830152614a5d81614473565b9050919050565b60006020820190508181036000830152614a7d81614496565b9050919050565b60006020820190508181036000830152614a9d816144dc565b9050919050565b60006020820190508181036000830152614abd816144ff565b9050919050565b60006020820190508181036000830152614add81614522565b9050919050565b60006020820190508181036000830152614afd81614545565b9050919050565b60006020820190508181036000830152614b1d81614568565b9050919050565b60006020820190508181036000830152614b3d8161458b565b9050919050565b60006020820190508181036000830152614b5d816145ae565b9050919050565b60006020820190508181036000830152614b7d816145d1565b9050919050565b60006020820190508181036000830152614b9d816145f4565b9050919050565b60006020820190508181036000830152614bbd81614617565b9050919050565b60006020820190508181036000830152614bdd8161463a565b9050919050565b60006020820190508181036000830152614bfd8161465d565b9050919050565b6000602082019050614c19600083018461468f565b92915050565b6000614c29614c3a565b9050614c358282614fa7565b919050565b6000604051905090565b600067ffffffffffffffff821115614c5f57614c5e61510d565b5b602082029050602081019050919050565b600067ffffffffffffffff821115614c8b57614c8a61510d565b5b614c948261513c565b9050602081019050919050565b600067ffffffffffffffff821115614cbc57614cbb61510d565b5b614cc58261513c565b9050602081019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000614d7982614ec3565b9150614d8483614ec3565b9250826fffffffffffffffffffffffffffffffff03821115614da957614da8615080565b5b828201905092915050565b6000614dbf82614eff565b9150614dca83614eff565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614dff57614dfe615080565b5b828201905092915050565b6000614e1582614eff565b9150614e2083614eff565b925082614e3057614e2f6150af565b5b828204905092915050565b6000614e4682614eff565b9150614e5183614eff565b925082821015614e6457614e63615080565b5b828203905092915050565b6000614e7a82614edf565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b60006fffffffffffffffffffffffffffffffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015614f36578082015181840152602081019050614f1b565b83811115614f45576000848401525b50505050565b6000614f5682614eff565b91506000821415614f6a57614f69615080565b5b600182039050919050565b60006002820490506001821680614f8d57607f821691505b60208210811415614fa157614fa06150de565b5b50919050565b614fb08261513c565b810181811067ffffffffffffffff82111715614fcf57614fce61510d565b5b80604052505050565b6000614fe382614eff565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561501657615015615080565b5b600182019050919050565b600061502c8261503d565b9050919050565b6000819050919050565b60006150488261514d565b9050919050565b600061505a82614eff565b915061506583614eff565b925082615075576150746150af565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008201527f74656e7420746f6b656e00000000000000000000000000000000000000000000602082015250565b7f416d6f756e7420746f206d696e74206973203000000000000000000000000000600082015250565b7f4d696e74696e6720616d6f756e7420657863656564732072657365727665642060008201527f73697a6500000000000000000000000000000000000000000000000000000000602082015250565b7f4d696e74696e6720616d6f756e74206578636565647320616c6c6f77616e636560008201527f2070657220747800000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008201527f6e64730000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f53656e64206120646976697369626c6520616d6f756e74206f66206574680000600082015250565b7f4d696e74696e6720616d6f756e74206578636565647320616c6c6f77616e636560008201527f207065722077616c6c6574000000000000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000602082015250565b7f57686974656c697374206d696e74206973207061757365640000000000000000600082015250565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e736665722066726f6d20696e636f727265637460008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4661696c656420746f2073656e64206574686572000000000000000000000000600082015250565b7f455243373231413a20617070726f766520746f2063616c6c6572000000000000600082015250565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b7f5075626c6963206d696e74206973207061757365640000000000000000000000600082015250565b7f596f7520617265206e6f7420656c696769626c6520666f72206120776869746560008201527f6c697374206d696e740000000000000000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f455243373231413a207175616e74697479206d7573742062652067726561746560008201527f7220300000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b7f455243373231413a20746f6b656e20616c7265616479206d696e746564000000600082015250565b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f43616e206f6e6c79206d696e742061206d756c7469706c65206f66207468652060008201527f6d6178426174636853697a650000000000000000000000000000000000000000602082015250565b7f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008201527f6f776e657220627920696e646578000000000000000000000000000000000000602082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f57686974656c697374206d696e7420697320736f6c64206f7574000000000000600082015250565b7f455243373231413a20756e61626c6520746f2064657465726d696e652074686560008201527f206f776e6572206f6620746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b7f455243373231413a207175616e7469747920746f206d696e7420746f6f20686960008201527f6768000000000000000000000000000000000000000000000000000000000000602082015250565b7f536f6c64206f7574210000000000000000000000000000000000000000000000600082015250565b6159f381614e6f565b81146159fe57600080fd5b50565b615a0a81614e81565b8114615a1557600080fd5b50565b615a2181614e8d565b8114615a2c57600080fd5b50565b615a3881614e97565b8114615a4357600080fd5b50565b615a4f81614eff565b8114615a5a57600080fd5b5056fea2646970667358221220ca6bdce120811232a88578dfea3f701cf6283bd7d20d05d7f286841d0840d14764736f6c63430008040033

Deployed Bytecode

0x6080604052600436106102675760003560e01c80636352211e11610144578063a22cb465116100b6578063db7aa4f91161007a578063db7aa4f914610912578063e4effacb1461093d578063e985e9c514610966578063f2fde38b146109a3578063f4a0a528146109cc578063fc9d0fb5146109f557610267565b8063a22cb4651461082d578063b74e1f4d14610856578063b88d4fde14610881578063c87b56dd146108aa578063d547cfb7146108e757610267565b80637a4e5715116101085780637a4e5715146107525780637deb69ad1461077b578063853828b6146107a45780638da5cb5b146107bb57806395d89b41146107e657806397254e551461081157610267565b80636352211e1461066b5780636817c76c146106a857806370a08231146106d3578063715018a61461071057806379e1587a1461072757610267565b806330176e13116101dd578063375a069a116101a1578063375a069a1461054b5780633c7324641461057457806342842e0e1461059d578063438b6300146105c657806345c0f533146106035780634f6ccce71461062e57610267565b806330176e131461047857806330666a4d146104a157806333949348146104cc57806333d9d5fd146104f5578063353002301461052057610267565b8063180fec041161022f578063180fec041461037757806318160ddd146103a05780631fac2a35146103cb57806323b872dd1461040857806326092b83146104315780632f745c591461043b57610267565b806301ffc9a71461026c57806306fdde03146102a9578063081812fc146102d4578063095ea7b3146103115780630996896b1461033a575b600080fd5b34801561027857600080fd5b50610293600480360381019061028e9190613f3a565b610a1e565b6040516102a091906147a7565b60405180910390f35b3480156102b557600080fd5b506102be610b68565b6040516102cb91906147c2565b60405180910390f35b3480156102e057600080fd5b506102fb60048036038101906102f69190613fcd565b610bfa565b604051610308919061471e565b60405180910390f35b34801561031d57600080fd5b5061033860048036038101906103339190613e17565b610c7f565b005b34801561034657600080fd5b50610361600480360381019061035c9190613e94565b610d98565b60405161036e91906147a7565b60405180910390f35b34801561038357600080fd5b5061039e60048036038101906103999190613fcd565b610daf565b005b3480156103ac57600080fd5b506103b5610e35565b6040516103c29190614c04565b60405180910390f35b3480156103d757600080fd5b506103f260048036038101906103ed9190613cac565b610e3e565b6040516103ff9190614c04565b60405180910390f35b34801561041457600080fd5b5061042f600480360381019061042a9190613d11565b610e56565b005b610439610e66565b005b34801561044757600080fd5b50610462600480360381019061045d9190613e17565b610f73565b60405161046f9190614c04565b60405180910390f35b34801561048457600080fd5b5061049f600480360381019061049a9190613f8c565b611171565b005b3480156104ad57600080fd5b506104b6611207565b6040516104c39190614c04565b60405180910390f35b3480156104d857600080fd5b506104f360048036038101906104ee9190613ee8565b61120d565b005b34801561050157600080fd5b5061050a6112a6565b60405161051791906147a7565b60405180910390f35b34801561052c57600080fd5b506105356112b9565b6040516105429190614c04565b60405180910390f35b34801561055757600080fd5b50610572600480360381019061056d9190613fcd565b6112bf565b005b34801561058057600080fd5b5061059b60048036038101906105969190613fcd565b6114ca565b005b3480156105a957600080fd5b506105c460048036038101906105bf9190613d11565b611550565b005b3480156105d257600080fd5b506105ed60048036038101906105e89190613cac565b611570565b6040516105fa9190614785565b60405180910390f35b34801561060f57600080fd5b50610618611743565b6040516106259190614c04565b60405180910390f35b34801561063a57600080fd5b5061065560048036038101906106509190613fcd565b611749565b6040516106629190614c04565b60405180910390f35b34801561067757600080fd5b50610692600480360381019061068d9190613fcd565b61179c565b60405161069f919061471e565b60405180910390f35b3480156106b457600080fd5b506106bd6117b2565b6040516106ca9190614c04565b60405180910390f35b3480156106df57600080fd5b506106fa60048036038101906106f59190613cac565b6117b8565b6040516107079190614c04565b60405180910390f35b34801561071c57600080fd5b506107256118a1565b005b34801561073357600080fd5b5061073c611929565b6040516107499190614c04565b60405180910390f35b34801561075e57600080fd5b5061077960048036038101906107749190613fcd565b61192f565b005b34801561078757600080fd5b506107a2600480360381019061079d9190613fcd565b6119b5565b005b3480156107b057600080fd5b506107b9611a3b565b005b3480156107c757600080fd5b506107d0611bc4565b6040516107dd919061471e565b60405180910390f35b3480156107f257600080fd5b506107fb611bee565b60405161080891906147c2565b60405180910390f35b61082b60048036038101906108269190613e53565b611c80565b005b34801561083957600080fd5b50610854600480360381019061084f9190613ddb565b611ed0565b005b34801561086257600080fd5b5061086b612051565b60405161087891906147a7565b60405180910390f35b34801561088d57600080fd5b506108a860048036038101906108a39190613d60565b612064565b005b3480156108b657600080fd5b506108d160048036038101906108cc9190613fcd565b6120c0565b6040516108de91906147c2565b60405180910390f35b3480156108f357600080fd5b506108fc6120f4565b60405161090991906147c2565b60405180910390f35b34801561091e57600080fd5b50610927612182565b6040516109349190614c04565b60405180910390f35b34801561094957600080fd5b50610964600480360381019061095f9190613f11565b612188565b005b34801561097257600080fd5b5061098d60048036038101906109889190613cd5565b61220e565b60405161099a91906147a7565b60405180910390f35b3480156109af57600080fd5b506109ca60048036038101906109c59190613cac565b6122a2565b005b3480156109d857600080fd5b506109f360048036038101906109ee9190613fcd565b61239a565b005b348015610a0157600080fd5b50610a1c6004803603810190610a179190613ee8565b612420565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610ae957507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610b5157507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610b615750610b60826124b9565b5b9050919050565b606060018054610b7790614f75565b80601f0160208091040260200160405190810160405280929190818152602001828054610ba390614f75565b8015610bf05780601f10610bc557610100808354040283529160200191610bf0565b820191906000526020600020905b815481529060010190602001808311610bd357829003601f168201915b5050505050905090565b6000610c0582612523565b610c44576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c3b90614ba4565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610c8a8261179c565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610cfb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cf290614a64565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610d1a612530565b73ffffffffffffffffffffffffffffffffffffffff161480610d495750610d4881610d43612530565b61220e565b5b610d88576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d7f90614924565b60405180910390fd5b610d93838383612538565b505050565b6000610da760115484846125ea565b905092915050565b610db7612530565b73ffffffffffffffffffffffffffffffffffffffff16610dd5611bc4565b73ffffffffffffffffffffffffffffffffffffffff1614610e2b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e22906149a4565b60405180910390fd5b80600e8190555050565b60008054905090565b60126020528060005260406000206000915090505481565b610e61838383612630565b505050565b610e6e612bd7565b60026008541415610eb4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eab90614b44565b60405180910390fd5b6002600881905550601060019054906101000a900460ff1615610f0c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f0390614a24565b60405180910390fd5b6000610f1734612c11565b9050600f54811115610f5e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f5590614884565b60405180910390fd5b610f683382612d2a565b506001600881905550565b6000610f7e836117b8565b8210610fbf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fb6906147e4565b60405180910390fd5b6000610fc9610e35565b905060008060005b8381101561112f576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146110c357806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561111b578684141561110c57819550505050505061116b565b838061111790614fd8565b9450505b50808061112790614fd8565b915050610fd1565b506040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161116290614b24565b60405180910390fd5b92915050565b611179612530565b73ffffffffffffffffffffffffffffffffffffffff16611197611bc4565b73ffffffffffffffffffffffffffffffffffffffff16146111ed576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111e4906149a4565b60405180910390fd5b80600990805190602001906112039291906139eb565b5050565b600f5481565b611215612530565b73ffffffffffffffffffffffffffffffffffffffff16611233611bc4565b73ffffffffffffffffffffffffffffffffffffffff1614611289576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611280906149a4565b60405180910390fd5b80601060016101000a81548160ff02191690831515021790555050565b601060019054906101000a900460ff1681565b600c5481565b6112c7612bd7565b6112cf612530565b73ffffffffffffffffffffffffffffffffffffffff166112ed611bc4565b73ffffffffffffffffffffffffffffffffffffffff1614611343576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161133a906149a4565b60405180910390fd5b600d54811115611388576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161137f90614864565b60405180910390fd5b600b5481611394610e35565b61139e9190614db4565b11156113df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113d690614be4565b60405180910390fd5b60007f000000000000000000000000000000000000000000000000000000000000000a8261140d919061504f565b1461144d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161144490614b04565b60405180910390fd5b60007f000000000000000000000000000000000000000000000000000000000000000a8261147b9190614e0a565b905060005b818110156114c5576114b2337f000000000000000000000000000000000000000000000000000000000000000a612d8f565b80806114bd90614fd8565b915050611480565b505050565b6114d2612530565b73ffffffffffffffffffffffffffffffffffffffff166114f0611bc4565b73ffffffffffffffffffffffffffffffffffffffff1614611546576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161153d906149a4565b60405180910390fd5b80600d8190555050565b61156b83838360405180602001604052806000815250612064565b505050565b6060600061157d836117b8565b905060008167ffffffffffffffff8111156115c1577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280602002602001820160405280156115ef5781602001602082028036833780820191505090505b5090506000806115fd610e35565b905060005b8181101561173657600061161582612523565b905080156116b3578773ffffffffffffffffffffffffffffffffffffffff1661163d8361179c565b73ffffffffffffffffffffffffffffffffffffffff1614156116ae5781858581518110611693577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101818152505083806116aa90614fd8565b9450505b611722565b8015801561170d57506000856001886116cc9190614e3b565b81518110611703577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151145b1561172157828061171d90614fd8565b9350505b5b50808061172e90614fd8565b915050611602565b5082945050505050919050565b600b5481565b6000611753610e35565b8210611794576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161178b906148a4565b60405180910390fd5b819050919050565b60006117a782612dad565b600001519050919050565b600a5481565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611829576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161182090614964565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b6118a9612530565b73ffffffffffffffffffffffffffffffffffffffff166118c7611bc4565b73ffffffffffffffffffffffffffffffffffffffff161461191d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611914906149a4565b60405180910390fd5b6119276000612fb0565b565b600d5481565b611937612530565b73ffffffffffffffffffffffffffffffffffffffff16611955611bc4565b73ffffffffffffffffffffffffffffffffffffffff16146119ab576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119a2906149a4565b60405180910390fd5b80600f8190555050565b6119bd612530565b73ffffffffffffffffffffffffffffffffffffffff166119db611bc4565b73ffffffffffffffffffffffffffffffffffffffff1614611a31576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a28906149a4565b60405180910390fd5b80600c8190555050565b611a43612530565b73ffffffffffffffffffffffffffffffffffffffff16611a61611bc4565b73ffffffffffffffffffffffffffffffffffffffff1614611ab7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aae906149a4565b60405180910390fd5b611abf612bd7565b60026008541415611b05576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611afc90614b44565b60405180910390fd5b600260088190555060003373ffffffffffffffffffffffffffffffffffffffff1647604051611b3390614709565b60006040518083038185875af1925050503d8060008114611b70576040519150601f19603f3d011682016040523d82523d6000602084013e611b75565b606091505b5050905080611bb9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bb0906149c4565b60405180910390fd5b506001600881905550565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060028054611bfd90614f75565b80601f0160208091040260200160405190810160405280929190818152602001828054611c2990614f75565b8015611c765780601f10611c4b57610100808354040283529160200191611c76565b820191906000526020600020905b815481529060010190602001808311611c5957829003601f168201915b5050505050905090565b611c88612bd7565b60026008541415611cce576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cc590614b44565b60405180910390fd5b6002600881905550601060009054906101000a900460ff1615611d26576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d1d90614944565b60405180910390fd5b611d308133610d98565b611d6f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d6690614a44565b60405180910390fd5b6000611d7a34612c11565b9050600e5481601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611dca9190614db4565b1115611e0b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e0290614904565b60405180910390fd5b80600c541015611e50576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e4790614b64565b60405180910390fd5b80600c54611e5e9190614e3b565b600c8190555080601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611eb39190614db4565b92505081905550611ec43382612d2a565b50600160088190555050565b611ed8612530565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611f46576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f3d906149e4565b60405180910390fd5b8060066000611f53612530565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16612000612530565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161204591906147a7565b60405180910390a35050565b601060009054906101000a900460ff1681565b61206f848484612630565b61207b84848484613076565b6120ba576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120b190614aa4565b60405180910390fd5b50505050565b606060096120cd8361320d565b6040516020016120de9291906146e5565b6040516020818303038152906040529050919050565b6009805461210190614f75565b80601f016020809104026020016040519081016040528092919081815260200182805461212d90614f75565b801561217a5780601f1061214f5761010080835404028352916020019161217a565b820191906000526020600020905b81548152906001019060200180831161215d57829003601f168201915b505050505081565b600e5481565b612190612530565b73ffffffffffffffffffffffffffffffffffffffff166121ae611bc4565b73ffffffffffffffffffffffffffffffffffffffff1614612204576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121fb906149a4565b60405180910390fd5b8060118190555050565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6122aa612530565b73ffffffffffffffffffffffffffffffffffffffff166122c8611bc4565b73ffffffffffffffffffffffffffffffffffffffff161461231e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612315906149a4565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561238e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161238590614804565b60405180910390fd5b61239781612fb0565b50565b6123a2612530565b73ffffffffffffffffffffffffffffffffffffffff166123c0611bc4565b73ffffffffffffffffffffffffffffffffffffffff1614612416576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161240d906149a4565b60405180910390fd5b80600a8190555050565b612428612530565b73ffffffffffffffffffffffffffffffffffffffff16612446611bc4565b73ffffffffffffffffffffffffffffffffffffffff161461249c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612493906149a4565b60405180910390fd5b80601060006101000a81548160ff02191690831515021790555050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000805482109050919050565b600033905090565b826005600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006126278483604051602001612601919061469e565b60405160208183030381529060405280519060200120856133ba9092919063ffffffff16565b90509392505050565b600061263b82612dad565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff16612662612530565b73ffffffffffffffffffffffffffffffffffffffff1614806126be5750612687612530565b73ffffffffffffffffffffffffffffffffffffffff166126a684610bfa565b73ffffffffffffffffffffffffffffffffffffffff16145b806126da57506126d982600001516126d4612530565b61220e565b5b90508061271c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161271390614a04565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff161461278e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161278590614984565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156127fe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127f5906148c4565b60405180910390fd5b61280b85858560016133d1565b61281b6000848460000151612538565b6001600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160392506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060405180604001604052808573ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506003600085815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055509050506000600184612a219190614db4565b9050600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415612b6757612a9781612523565b15612b66576040518060400160405280846000015173ffffffffffffffffffffffffffffffffffffffff168152602001846020015167ffffffffffffffff168152506003600083815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055509050505b5b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612bcf86868660016133d7565b505050505050565b3273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614612c0f57600080fd5b565b600080600a5483612c22919061504f565b905060008114612c67576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c5e906148e4565b60405180910390fd5b6000600a5484612c779190614e0a565b905060008111612cbc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612cb390614844565b60405180910390fd5b600d54600b54612ccc9190614e3b565b81612cd5610e35565b612cdf9190614db4565b1115612d20576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d1790614be4565b60405180910390fd5b8092505050919050565b600b5481612d36610e35565b612d409190614db4565b1115612d81576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d7890614be4565b60405180910390fd5b612d8b8282612d8f565b5050565b612da98282604051806020016040528060008152506133dd565b5050565b612db5613a71565b612dbe82612523565b612dfd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612df490614824565b60405180910390fd5b60007f000000000000000000000000000000000000000000000000000000000000000a8310612e615760017f000000000000000000000000000000000000000000000000000000000000000a84612e549190614e3b565b612e5e9190614db4565b90505b60008390505b818110612f6f576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612f5b57809350505050612fab565b508080612f6790614f4b565b915050612e67565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612fa290614b84565b60405180910390fd5b919050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60006130978473ffffffffffffffffffffffffffffffffffffffff166138ff565b15613200578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026130c0612530565b8786866040518563ffffffff1660e01b81526004016130e29493929190614739565b602060405180830381600087803b1580156130fc57600080fd5b505af192505050801561312d57506040513d601f19601f8201168201806040525081019061312a9190613f63565b60015b6131b0573d806000811461315d576040519150601f19603f3d011682016040523d82523d6000602084013e613162565b606091505b506000815114156131a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161319f90614aa4565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050613205565b600190505b949350505050565b60606000821415613255576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506133b5565b600082905060005b6000821461328757808061327090614fd8565b915050600a826132809190614e0a565b915061325d565b60008167ffffffffffffffff8111156132c9577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156132fb5781602001600182028036833780820191505090505b5090505b600085146133ae576001826133149190614e3b565b9150600a85613323919061504f565b603061332f9190614db4565b60f81b81838151811061336b577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856133a79190614e0a565b94506132ff565b8093505050505b919050565b6000826133c78584613912565b1490509392505050565b50505050565b50505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415613453576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161344a90614ae4565b60405180910390fd5b61345c81612523565b1561349c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161349390614ac4565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000a8311156134ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016134f690614bc4565b60405180910390fd5b60008311613542576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161353990614a84565b60405180910390fd5b61354f60008583866133d1565b6000600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206040518060400160405290816000820160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681526020016000820160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff16815250509050604051806040016040528085836000015161364c9190614d6e565b6fffffffffffffffffffffffffffffffff1681526020018583602001516136739190614d6e565b6fffffffffffffffffffffffffffffffff16815250600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008201518160000160006101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060208201518160000160106101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555090505060405180604001604052808673ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506003600084815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550905050600082905060005b858110156138e257818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46138826000888488613076565b6138c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016138b890614aa4565b60405180910390fd5b81806138cc90614fd8565b92505080806138da90614fd8565b915050613811565b50806000819055506138f760008785886133d7565b505050505050565b600080823b905060008111915050919050565b60008082905060005b84518110156139e057600085828151811061395f577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015190508083116139a05782816040516020016139839291906146b9565b6040516020818303038152906040528051906020012092506139cc565b80836040516020016139b39291906146b9565b6040516020818303038152906040528051906020012092505b5080806139d890614fd8565b91505061391b565b508091505092915050565b8280546139f790614f75565b90600052602060002090601f016020900481019282613a195760008555613a60565b82601f10613a3257805160ff1916838001178555613a60565b82800160010185558215613a60579182015b82811115613a5f578251825591602001919060010190613a44565b5b509050613a6d9190613aab565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b80821115613ac4576000816000905550600101613aac565b5090565b6000613adb613ad684614c44565b614c1f565b90508083825260208201905082856020860282011115613afa57600080fd5b60005b85811015613b2a5781613b108882613c04565b845260208401935060208301925050600181019050613afd565b5050509392505050565b6000613b47613b4284614c70565b614c1f565b905082815260208101848484011115613b5f57600080fd5b613b6a848285614f09565b509392505050565b6000613b85613b8084614ca1565b614c1f565b905082815260208101848484011115613b9d57600080fd5b613ba8848285614f09565b509392505050565b600081359050613bbf816159ea565b92915050565b600082601f830112613bd657600080fd5b8135613be6848260208601613ac8565b91505092915050565b600081359050613bfe81615a01565b92915050565b600081359050613c1381615a18565b92915050565b600081359050613c2881615a2f565b92915050565b600081519050613c3d81615a2f565b92915050565b600082601f830112613c5457600080fd5b8135613c64848260208601613b34565b91505092915050565b600082601f830112613c7e57600080fd5b8135613c8e848260208601613b72565b91505092915050565b600081359050613ca681615a46565b92915050565b600060208284031215613cbe57600080fd5b6000613ccc84828501613bb0565b91505092915050565b60008060408385031215613ce857600080fd5b6000613cf685828601613bb0565b9250506020613d0785828601613bb0565b9150509250929050565b600080600060608486031215613d2657600080fd5b6000613d3486828701613bb0565b9350506020613d4586828701613bb0565b9250506040613d5686828701613c97565b9150509250925092565b60008060008060808587031215613d7657600080fd5b6000613d8487828801613bb0565b9450506020613d9587828801613bb0565b9350506040613da687828801613c97565b925050606085013567ffffffffffffffff811115613dc357600080fd5b613dcf87828801613c43565b91505092959194509250565b60008060408385031215613dee57600080fd5b6000613dfc85828601613bb0565b9250506020613e0d85828601613bef565b9150509250929050565b60008060408385031215613e2a57600080fd5b6000613e3885828601613bb0565b9250506020613e4985828601613c97565b9150509250929050565b600060208284031215613e6557600080fd5b600082013567ffffffffffffffff811115613e7f57600080fd5b613e8b84828501613bc5565b91505092915050565b60008060408385031215613ea757600080fd5b600083013567ffffffffffffffff811115613ec157600080fd5b613ecd85828601613bc5565b9250506020613ede85828601613bb0565b9150509250929050565b600060208284031215613efa57600080fd5b6000613f0884828501613bef565b91505092915050565b600060208284031215613f2357600080fd5b6000613f3184828501613c04565b91505092915050565b600060208284031215613f4c57600080fd5b6000613f5a84828501613c19565b91505092915050565b600060208284031215613f7557600080fd5b6000613f8384828501613c2e565b91505092915050565b600060208284031215613f9e57600080fd5b600082013567ffffffffffffffff811115613fb857600080fd5b613fc484828501613c6d565b91505092915050565b600060208284031215613fdf57600080fd5b6000613fed84828501613c97565b91505092915050565b60006140028383614680565b60208301905092915050565b61401781614e6f565b82525050565b61402e61402982614e6f565b615021565b82525050565b600061403f82614cf7565b6140498185614d25565b935061405483614cd2565b8060005b8381101561408557815161406c8882613ff6565b975061407783614d18565b925050600181019050614058565b5085935050505092915050565b61409b81614e81565b82525050565b6140b26140ad82614e8d565b615033565b82525050565b60006140c382614d02565b6140cd8185614d36565b93506140dd818560208601614f18565b6140e68161513c565b840191505092915050565b60006140fc82614d0d565b6141068185614d52565b9350614116818560208601614f18565b61411f8161513c565b840191505092915050565b600061413582614d0d565b61413f8185614d63565b935061414f818560208601614f18565b80840191505092915050565b6000815461416881614f75565b6141728186614d63565b9450600182166000811461418d576001811461419e576141d1565b60ff198316865281860193506141d1565b6141a785614ce2565b60005b838110156141c9578154818901526001820191506020810190506141aa565b838801955050505b50505092915050565b60006141e7602283614d52565b91506141f28261515a565b604082019050919050565b600061420a602683614d52565b9150614215826151a9565b604082019050919050565b600061422d602a83614d52565b9150614238826151f8565b604082019050919050565b6000614250601383614d52565b915061425b82615247565b602082019050919050565b6000614273602483614d52565b915061427e82615270565b604082019050919050565b6000614296602783614d52565b91506142a1826152bf565b604082019050919050565b60006142b9602383614d52565b91506142c48261530e565b604082019050919050565b60006142dc602583614d52565b91506142e78261535d565b604082019050919050565b60006142ff601e83614d52565b915061430a826153ac565b602082019050919050565b6000614322602b83614d52565b915061432d826153d5565b604082019050919050565b6000614345603983614d52565b915061435082615424565b604082019050919050565b6000614368601883614d52565b915061437382615473565b602082019050919050565b600061438b602b83614d52565b91506143968261549c565b604082019050919050565b60006143ae602683614d52565b91506143b9826154eb565b604082019050919050565b60006143d1602083614d52565b91506143dc8261553a565b602082019050919050565b60006143f4601483614d52565b91506143ff82615563565b602082019050919050565b6000614417601a83614d52565b91506144228261558c565b602082019050919050565b600061443a603283614d52565b9150614445826155b5565b604082019050919050565b600061445d601583614d52565b915061446882615604565b602082019050919050565b6000614480602983614d52565b915061448b8261562d565b604082019050919050565b60006144a3602283614d52565b91506144ae8261567c565b604082019050919050565b60006144c6600083614d47565b91506144d1826156cb565b600082019050919050565b60006144e9602383614d52565b91506144f4826156ce565b604082019050919050565b600061450c603383614d52565b91506145178261571d565b604082019050919050565b600061452f601d83614d52565b915061453a8261576c565b602082019050919050565b6000614552602183614d52565b915061455d82615795565b604082019050919050565b6000614575602c83614d52565b9150614580826157e4565b604082019050919050565b6000614598602e83614d52565b91506145a382615833565b604082019050919050565b60006145bb601f83614d52565b91506145c682615882565b602082019050919050565b60006145de601a83614d52565b91506145e9826158ab565b602082019050919050565b6000614601602f83614d52565b915061460c826158d4565b604082019050919050565b6000614624602d83614d52565b915061462f82615923565b604082019050919050565b6000614647602283614d52565b915061465282615972565b604082019050919050565b600061466a600983614d52565b9150614675826159c1565b602082019050919050565b61468981614eff565b82525050565b61469881614eff565b82525050565b60006146aa828461401d565b60148201915081905092915050565b60006146c582856140a1565b6020820191506146d582846140a1565b6020820191508190509392505050565b60006146f1828561415b565b91506146fd828461412a565b91508190509392505050565b6000614714826144b9565b9150819050919050565b6000602082019050614733600083018461400e565b92915050565b600060808201905061474e600083018761400e565b61475b602083018661400e565b614768604083018561468f565b818103606083015261477a81846140b8565b905095945050505050565b6000602082019050818103600083015261479f8184614034565b905092915050565b60006020820190506147bc6000830184614092565b92915050565b600060208201905081810360008301526147dc81846140f1565b905092915050565b600060208201905081810360008301526147fd816141da565b9050919050565b6000602082019050818103600083015261481d816141fd565b9050919050565b6000602082019050818103600083015261483d81614220565b9050919050565b6000602082019050818103600083015261485d81614243565b9050919050565b6000602082019050818103600083015261487d81614266565b9050919050565b6000602082019050818103600083015261489d81614289565b9050919050565b600060208201905081810360008301526148bd816142ac565b9050919050565b600060208201905081810360008301526148dd816142cf565b9050919050565b600060208201905081810360008301526148fd816142f2565b9050919050565b6000602082019050818103600083015261491d81614315565b9050919050565b6000602082019050818103600083015261493d81614338565b9050919050565b6000602082019050818103600083015261495d8161435b565b9050919050565b6000602082019050818103600083015261497d8161437e565b9050919050565b6000602082019050818103600083015261499d816143a1565b9050919050565b600060208201905081810360008301526149bd816143c4565b9050919050565b600060208201905081810360008301526149dd816143e7565b9050919050565b600060208201905081810360008301526149fd8161440a565b9050919050565b60006020820190508181036000830152614a1d8161442d565b9050919050565b60006020820190508181036000830152614a3d81614450565b9050919050565b60006020820190508181036000830152614a5d81614473565b9050919050565b60006020820190508181036000830152614a7d81614496565b9050919050565b60006020820190508181036000830152614a9d816144dc565b9050919050565b60006020820190508181036000830152614abd816144ff565b9050919050565b60006020820190508181036000830152614add81614522565b9050919050565b60006020820190508181036000830152614afd81614545565b9050919050565b60006020820190508181036000830152614b1d81614568565b9050919050565b60006020820190508181036000830152614b3d8161458b565b9050919050565b60006020820190508181036000830152614b5d816145ae565b9050919050565b60006020820190508181036000830152614b7d816145d1565b9050919050565b60006020820190508181036000830152614b9d816145f4565b9050919050565b60006020820190508181036000830152614bbd81614617565b9050919050565b60006020820190508181036000830152614bdd8161463a565b9050919050565b60006020820190508181036000830152614bfd8161465d565b9050919050565b6000602082019050614c19600083018461468f565b92915050565b6000614c29614c3a565b9050614c358282614fa7565b919050565b6000604051905090565b600067ffffffffffffffff821115614c5f57614c5e61510d565b5b602082029050602081019050919050565b600067ffffffffffffffff821115614c8b57614c8a61510d565b5b614c948261513c565b9050602081019050919050565b600067ffffffffffffffff821115614cbc57614cbb61510d565b5b614cc58261513c565b9050602081019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000614d7982614ec3565b9150614d8483614ec3565b9250826fffffffffffffffffffffffffffffffff03821115614da957614da8615080565b5b828201905092915050565b6000614dbf82614eff565b9150614dca83614eff565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614dff57614dfe615080565b5b828201905092915050565b6000614e1582614eff565b9150614e2083614eff565b925082614e3057614e2f6150af565b5b828204905092915050565b6000614e4682614eff565b9150614e5183614eff565b925082821015614e6457614e63615080565b5b828203905092915050565b6000614e7a82614edf565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b60006fffffffffffffffffffffffffffffffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015614f36578082015181840152602081019050614f1b565b83811115614f45576000848401525b50505050565b6000614f5682614eff565b91506000821415614f6a57614f69615080565b5b600182039050919050565b60006002820490506001821680614f8d57607f821691505b60208210811415614fa157614fa06150de565b5b50919050565b614fb08261513c565b810181811067ffffffffffffffff82111715614fcf57614fce61510d565b5b80604052505050565b6000614fe382614eff565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561501657615015615080565b5b600182019050919050565b600061502c8261503d565b9050919050565b6000819050919050565b60006150488261514d565b9050919050565b600061505a82614eff565b915061506583614eff565b925082615075576150746150af565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008201527f74656e7420746f6b656e00000000000000000000000000000000000000000000602082015250565b7f416d6f756e7420746f206d696e74206973203000000000000000000000000000600082015250565b7f4d696e74696e6720616d6f756e7420657863656564732072657365727665642060008201527f73697a6500000000000000000000000000000000000000000000000000000000602082015250565b7f4d696e74696e6720616d6f756e74206578636565647320616c6c6f77616e636560008201527f2070657220747800000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008201527f6e64730000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f53656e64206120646976697369626c6520616d6f756e74206f66206574680000600082015250565b7f4d696e74696e6720616d6f756e74206578636565647320616c6c6f77616e636560008201527f207065722077616c6c6574000000000000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000602082015250565b7f57686974656c697374206d696e74206973207061757365640000000000000000600082015250565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e736665722066726f6d20696e636f727265637460008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4661696c656420746f2073656e64206574686572000000000000000000000000600082015250565b7f455243373231413a20617070726f766520746f2063616c6c6572000000000000600082015250565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b7f5075626c6963206d696e74206973207061757365640000000000000000000000600082015250565b7f596f7520617265206e6f7420656c696769626c6520666f72206120776869746560008201527f6c697374206d696e740000000000000000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f455243373231413a207175616e74697479206d7573742062652067726561746560008201527f7220300000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b7f455243373231413a20746f6b656e20616c7265616479206d696e746564000000600082015250565b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f43616e206f6e6c79206d696e742061206d756c7469706c65206f66207468652060008201527f6d6178426174636853697a650000000000000000000000000000000000000000602082015250565b7f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008201527f6f776e657220627920696e646578000000000000000000000000000000000000602082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f57686974656c697374206d696e7420697320736f6c64206f7574000000000000600082015250565b7f455243373231413a20756e61626c6520746f2064657465726d696e652074686560008201527f206f776e6572206f6620746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b7f455243373231413a207175616e7469747920746f206d696e7420746f6f20686960008201527f6768000000000000000000000000000000000000000000000000000000000000602082015250565b7f536f6c64206f7574210000000000000000000000000000000000000000000000600082015250565b6159f381614e6f565b81146159fe57600080fd5b50565b615a0a81614e81565b8114615a1557600080fd5b50565b615a2181614e8d565b8114615a2c57600080fd5b50565b615a3881614e97565b8114615a4357600080fd5b50565b615a4f81614eff565b8114615a5a57600080fd5b5056fea2646970667358221220ca6bdce120811232a88578dfea3f701cf6283bd7d20d05d7f286841d0840d14764736f6c63430008040033

Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.