ETH Price: $3,457.66 (-0.73%)
Gas: 2 Gwei

Token

Club 7 (Club 7)
 

Overview

Max Total Supply

1,000 Club 7

Holders

802

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
0x9f432a2964351a7830bd9ea10f65107677d73e04
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:
Club7

Compiler Version
v0.8.9+commit.e5eed63a

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 13 : Club7.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.9;

import "@openzeppelin/contracts/token/ERC1155/ERC1155.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/Strings.sol";
import "@openzeppelin/contracts/security/Pausable.sol";
import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol";

contract Club7 is ERC1155, Ownable, Pausable {
    using Strings for uint256;

    string public constant name = "Club 7";
    string public constant symbol = "Club 7";

    string public contractURI;
    function changeContractURI(string calldata contractURI_) external onlyOwner {
        contractURI = contractURI_;
    }

    bool public publicLive;
    bool public wlLive;

    function toggleSale(uint256 index, bool value_) external onlyOwner {
        if(index == 0) publicLive = value_;
        if(index == 1) wlLive = value_;
    } 
    
    bool public unlocked;
    function setUnlocked(bool unlocked_) external onlyOwner {
        unlocked = unlocked_;
    }

    string baseURI = "https://ipfs.io/ipfs/QmX6aZZHFtLM6qh4ikeRmX5EudoHEugZDhPUqBrc6ww2cA/";
    function setURI(string memory newuri) external onlyOwner {
        baseURI = newuri;
    }

    uint256 public totalSupply;
    /**
        @dev this is for emergency in case something goes wrong
     */
    function overrideTotalSupply(uint256 totalSupply_) external onlyOwner {
        totalSupply = totalSupply_;
    }

    /**
        @dev this is for emergency in case something goes wrong
     */
    function burn(address from, uint256 id, uint256 amount) external onlyOwner {
        totalSupply -= amount;
        _burn(from, id, amount);        
    }

    uint256 public cost = 2 ether;
    function changeCost(uint256 cost_) external onlyOwner {
        cost = cost_;
    }

    uint256 public limit = 1;
    function changeLimit(uint256 limit_) external onlyOwner {
        limit = limit_;
    }
 
    uint256 public maxSupply = 1000;
    function changeMaxSupply(uint256 maxSupply_) external onlyOwner {
        maxSupply = maxSupply_;
    }

    mapping(uint256 => bytes32) private _root;

    function root(uint256 index) public view returns (bytes32) {
        return _root[index];
    }

    function changeRoot(uint256 index_, bytes32 root_) external onlyOwner {
        _root[index_] = root_;
    }

    mapping(address => uint256) _minted;
    
    function minted(address to) public view returns (uint256) {
        return _minted[to];
    }

    mapping(uint256 => mapping(address => bool)) _whitelisted;

    function whitelisted(uint256 index_, address to_) public view returns (bool) {
        return _whitelisted[index_][to_];
    }
    
    function addToWhitelist(uint256 index_, address to_, bool value_) external onlyOwner {
        _whitelisted[index_][to_] = value_;
    }
    
    mapping(address => bool) _claimed;

    function claimed(address to) public view returns (bool) {
        return _claimed[to];
    }

    constructor() ERC1155("") {
        // claim
        _root[2] = 0x55c39569fea9fd32d18a9b8e8ca8a757604febb6b66ed1cb715e5512ee0a1910;
        // whitelist
        _root[1] = 0x5b18ee0e30b6304d2f9e1075f9cb4b04a56063db79418467e3d960fab60ee2d0;
    }

    function verified(uint256 index, address to, bytes32[] calldata proof) public view returns (bool) {
        return MerkleProof.verify(proof, _root[index], keccak256(abi.encodePacked(to))) || _whitelisted[index][to];
    }

    function adminMint(address[] calldata recipients_, uint256[] calldata amounts_) external onlyOwner {
        for(uint256 i; i < recipients_.length; i++) {
            require(totalSupply + amounts_[i] <= maxSupply, "Exceeds Supply");
            totalSupply += amounts_[i];
            _mint(recipients_[i], 1, amounts_[i], "");
        }
    }

    function claim(bytes32[] calldata proof) external payable whenNotPaused {
        require(wlLive, "Not live");
        require(!claimed(msg.sender), "Claimed");
        require(verified(2, msg.sender, proof), "Not in Claim");
        _claimed[msg.sender] = true;
        _callMint(msg.sender);
        refundIfOver(0);
    }

    function wlMint(bytes32[] calldata proof) external payable whenNotPaused {
        require(wlLive, "Not live");
        require(_minted[msg.sender] + 1 <= limit, "Exceeds balance");
        require(verified(1, msg.sender, proof), "Not in Whitelist");
        unchecked { ++_minted[msg.sender]; }
        _callMint(msg.sender);
        refundIfOver(cost);
    }

    function mint() external payable whenNotPaused {
        require(publicLive, "Not live");
        _callMint(msg.sender);
        refundIfOver(cost);
    }

    function refundIfOver(uint256 price) internal {
        require(msg.value >= price, "Not enough ETH");
        if (msg.value > price) {
            payable(msg.sender).transfer(msg.value - price);
        }
    }

    function _callMint(address to_) internal {
        require(tx.origin == msg.sender, "EOA");
        require(totalSupply + 1 <= maxSupply, "Exceeds Supply");
        unchecked { ++totalSupply; }
        _mint(to_, 1, 1, "");       
    }

    function isApprovedForAll(address account, address operator) public view override returns (bool) {
        if(!unlocked) return false;
        return super.isApprovedForAll(account, operator);
    }

    function setApprovalForAll(address operator, bool approved) public virtual override {
        require(unlocked, "locked");
        super.setApprovalForAll(operator, approved);
    }

    function _beforeTokenTransfer(
        address operator,
        address from,
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    ) internal override(ERC1155) {
        if(from != address(0x0) && to != address(0x0)) {
            require(unlocked, "locked");
        }        
        super._beforeTokenTransfer(operator, from, to, ids, amounts, data);
    }

    function uri(uint256 id_) public view virtual override returns (string memory) {
        string memory currentBaseURI = baseURI;
        return
            bytes(currentBaseURI).length > 0
                ? string(
                    abi.encodePacked(
                        currentBaseURI,
                        id_.toString(),
                        ".json"
                    )
                )
                : "";
    }

    function setPaused(bool paused_) external onlyOwner {
        if(paused_) {
            _pause();
        } else {
            _unpause();
        }
    }

    function withdraw(uint256 amountInWei, bool withdrawAll) external onlyOwner {
        if(withdrawAll) {
            uint256 balance = address(this).balance;
            payable(msg.sender).transfer(balance);
        } else {
            payable(msg.sender).transfer(amountInWei);
        }        
    }
}

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

pragma solidity ^0.8.0;

import "./IERC1155.sol";
import "./IERC1155Receiver.sol";
import "./extensions/IERC1155MetadataURI.sol";
import "../../utils/Address.sol";
import "../../utils/Context.sol";
import "../../utils/introspection/ERC165.sol";

/**
 * @dev Implementation of the basic standard multi-token.
 * See https://eips.ethereum.org/EIPS/eip-1155
 * Originally based on code by Enjin: https://github.com/enjin/erc-1155
 *
 * _Available since v3.1._
 */
contract ERC1155 is Context, ERC165, IERC1155, IERC1155MetadataURI {
    using Address for address;

    // Mapping from token ID to account balances
    mapping(uint256 => mapping(address => uint256)) private _balances;

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

    // Used as the URI for all token types by relying on ID substitution, e.g. https://token-cdn-domain/{id}.json
    string private _uri;

    /**
     * @dev See {_setURI}.
     */
    constructor(string memory uri_) {
        _setURI(uri_);
    }

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

    /**
     * @dev See {IERC1155MetadataURI-uri}.
     *
     * This implementation returns the same URI for *all* token types. It relies
     * on the token type ID substitution mechanism
     * https://eips.ethereum.org/EIPS/eip-1155#metadata[defined in the EIP].
     *
     * Clients calling this function must replace the `\{id\}` substring with the
     * actual token type ID.
     */
    function uri(uint256) public view virtual override returns (string memory) {
        return _uri;
    }

    /**
     * @dev See {IERC1155-balanceOf}.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     */
    function balanceOf(address account, uint256 id) public view virtual override returns (uint256) {
        require(account != address(0), "ERC1155: address zero is not a valid owner");
        return _balances[id][account];
    }

    /**
     * @dev See {IERC1155-balanceOfBatch}.
     *
     * Requirements:
     *
     * - `accounts` and `ids` must have the same length.
     */
    function balanceOfBatch(address[] memory accounts, uint256[] memory ids)
        public
        view
        virtual
        override
        returns (uint256[] memory)
    {
        require(accounts.length == ids.length, "ERC1155: accounts and ids length mismatch");

        uint256[] memory batchBalances = new uint256[](accounts.length);

        for (uint256 i = 0; i < accounts.length; ++i) {
            batchBalances[i] = balanceOf(accounts[i], ids[i]);
        }

        return batchBalances;
    }

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

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

    /**
     * @dev See {IERC1155-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 id,
        uint256 amount,
        bytes memory data
    ) public virtual override {
        require(
            from == _msgSender() || isApprovedForAll(from, _msgSender()),
            "ERC1155: caller is not token owner nor approved"
        );
        _safeTransferFrom(from, to, id, amount, data);
    }

    /**
     * @dev See {IERC1155-safeBatchTransferFrom}.
     */
    function safeBatchTransferFrom(
        address from,
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    ) public virtual override {
        require(
            from == _msgSender() || isApprovedForAll(from, _msgSender()),
            "ERC1155: caller is not token owner nor approved"
        );
        _safeBatchTransferFrom(from, to, ids, amounts, data);
    }

    /**
     * @dev Transfers `amount` tokens of token type `id` from `from` to `to`.
     *
     * Emits a {TransferSingle} event.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `from` must have a balance of tokens of type `id` of at least `amount`.
     * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155Received} and return the
     * acceptance magic value.
     */
    function _safeTransferFrom(
        address from,
        address to,
        uint256 id,
        uint256 amount,
        bytes memory data
    ) internal virtual {
        require(to != address(0), "ERC1155: transfer to the zero address");

        address operator = _msgSender();
        uint256[] memory ids = _asSingletonArray(id);
        uint256[] memory amounts = _asSingletonArray(amount);

        _beforeTokenTransfer(operator, from, to, ids, amounts, data);

        uint256 fromBalance = _balances[id][from];
        require(fromBalance >= amount, "ERC1155: insufficient balance for transfer");
        unchecked {
            _balances[id][from] = fromBalance - amount;
        }
        _balances[id][to] += amount;

        emit TransferSingle(operator, from, to, id, amount);

        _afterTokenTransfer(operator, from, to, ids, amounts, data);

        _doSafeTransferAcceptanceCheck(operator, from, to, id, amount, data);
    }

    /**
     * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {_safeTransferFrom}.
     *
     * Emits a {TransferBatch} event.
     *
     * Requirements:
     *
     * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155BatchReceived} and return the
     * acceptance magic value.
     */
    function _safeBatchTransferFrom(
        address from,
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    ) internal virtual {
        require(ids.length == amounts.length, "ERC1155: ids and amounts length mismatch");
        require(to != address(0), "ERC1155: transfer to the zero address");

        address operator = _msgSender();

        _beforeTokenTransfer(operator, from, to, ids, amounts, data);

        for (uint256 i = 0; i < ids.length; ++i) {
            uint256 id = ids[i];
            uint256 amount = amounts[i];

            uint256 fromBalance = _balances[id][from];
            require(fromBalance >= amount, "ERC1155: insufficient balance for transfer");
            unchecked {
                _balances[id][from] = fromBalance - amount;
            }
            _balances[id][to] += amount;
        }

        emit TransferBatch(operator, from, to, ids, amounts);

        _afterTokenTransfer(operator, from, to, ids, amounts, data);

        _doSafeBatchTransferAcceptanceCheck(operator, from, to, ids, amounts, data);
    }

    /**
     * @dev Sets a new URI for all token types, by relying on the token type ID
     * substitution mechanism
     * https://eips.ethereum.org/EIPS/eip-1155#metadata[defined in the EIP].
     *
     * By this mechanism, any occurrence of the `\{id\}` substring in either the
     * URI or any of the amounts in the JSON file at said URI will be replaced by
     * clients with the token type ID.
     *
     * For example, the `https://token-cdn-domain/\{id\}.json` URI would be
     * interpreted by clients as
     * `https://token-cdn-domain/000000000000000000000000000000000000000000000000000000000004cce0.json`
     * for token type ID 0x4cce0.
     *
     * See {uri}.
     *
     * Because these URIs cannot be meaningfully represented by the {URI} event,
     * this function emits no events.
     */
    function _setURI(string memory newuri) internal virtual {
        _uri = newuri;
    }

    /**
     * @dev Creates `amount` tokens of token type `id`, and assigns them to `to`.
     *
     * Emits a {TransferSingle} event.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155Received} and return the
     * acceptance magic value.
     */
    function _mint(
        address to,
        uint256 id,
        uint256 amount,
        bytes memory data
    ) internal virtual {
        require(to != address(0), "ERC1155: mint to the zero address");

        address operator = _msgSender();
        uint256[] memory ids = _asSingletonArray(id);
        uint256[] memory amounts = _asSingletonArray(amount);

        _beforeTokenTransfer(operator, address(0), to, ids, amounts, data);

        _balances[id][to] += amount;
        emit TransferSingle(operator, address(0), to, id, amount);

        _afterTokenTransfer(operator, address(0), to, ids, amounts, data);

        _doSafeTransferAcceptanceCheck(operator, address(0), to, id, amount, data);
    }

    /**
     * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {_mint}.
     *
     * Emits a {TransferBatch} event.
     *
     * Requirements:
     *
     * - `ids` and `amounts` must have the same length.
     * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155BatchReceived} and return the
     * acceptance magic value.
     */
    function _mintBatch(
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    ) internal virtual {
        require(to != address(0), "ERC1155: mint to the zero address");
        require(ids.length == amounts.length, "ERC1155: ids and amounts length mismatch");

        address operator = _msgSender();

        _beforeTokenTransfer(operator, address(0), to, ids, amounts, data);

        for (uint256 i = 0; i < ids.length; i++) {
            _balances[ids[i]][to] += amounts[i];
        }

        emit TransferBatch(operator, address(0), to, ids, amounts);

        _afterTokenTransfer(operator, address(0), to, ids, amounts, data);

        _doSafeBatchTransferAcceptanceCheck(operator, address(0), to, ids, amounts, data);
    }

    /**
     * @dev Destroys `amount` tokens of token type `id` from `from`
     *
     * Emits a {TransferSingle} event.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `from` must have at least `amount` tokens of token type `id`.
     */
    function _burn(
        address from,
        uint256 id,
        uint256 amount
    ) internal virtual {
        require(from != address(0), "ERC1155: burn from the zero address");

        address operator = _msgSender();
        uint256[] memory ids = _asSingletonArray(id);
        uint256[] memory amounts = _asSingletonArray(amount);

        _beforeTokenTransfer(operator, from, address(0), ids, amounts, "");

        uint256 fromBalance = _balances[id][from];
        require(fromBalance >= amount, "ERC1155: burn amount exceeds balance");
        unchecked {
            _balances[id][from] = fromBalance - amount;
        }

        emit TransferSingle(operator, from, address(0), id, amount);

        _afterTokenTransfer(operator, from, address(0), ids, amounts, "");
    }

    /**
     * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {_burn}.
     *
     * Emits a {TransferBatch} event.
     *
     * Requirements:
     *
     * - `ids` and `amounts` must have the same length.
     */
    function _burnBatch(
        address from,
        uint256[] memory ids,
        uint256[] memory amounts
    ) internal virtual {
        require(from != address(0), "ERC1155: burn from the zero address");
        require(ids.length == amounts.length, "ERC1155: ids and amounts length mismatch");

        address operator = _msgSender();

        _beforeTokenTransfer(operator, from, address(0), ids, amounts, "");

        for (uint256 i = 0; i < ids.length; i++) {
            uint256 id = ids[i];
            uint256 amount = amounts[i];

            uint256 fromBalance = _balances[id][from];
            require(fromBalance >= amount, "ERC1155: burn amount exceeds balance");
            unchecked {
                _balances[id][from] = fromBalance - amount;
            }
        }

        emit TransferBatch(operator, from, address(0), ids, amounts);

        _afterTokenTransfer(operator, from, address(0), ids, amounts, "");
    }

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

    /**
     * @dev Hook that is called before any token transfer. This includes minting
     * and burning, as well as batched variants.
     *
     * The same hook is called on both single and batched variants. For single
     * transfers, the length of the `ids` and `amounts` arrays will be 1.
     *
     * Calling conditions (for each `id` and `amount` pair):
     *
     * - When `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * of token type `id` will be  transferred to `to`.
     * - When `from` is zero, `amount` tokens of token type `id` will be minted
     * for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens of token type `id`
     * will be burned.
     * - `from` and `to` are never both zero.
     * - `ids` and `amounts` have the same, non-zero length.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address operator,
        address from,
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    ) internal virtual {}

    /**
     * @dev Hook that is called after any token transfer. This includes minting
     * and burning, as well as batched variants.
     *
     * The same hook is called on both single and batched variants. For single
     * transfers, the length of the `id` and `amount` arrays will be 1.
     *
     * Calling conditions (for each `id` and `amount` pair):
     *
     * - When `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * of token type `id` will be  transferred to `to`.
     * - When `from` is zero, `amount` tokens of token type `id` will be minted
     * for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens of token type `id`
     * will be burned.
     * - `from` and `to` are never both zero.
     * - `ids` and `amounts` have the same, non-zero length.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _afterTokenTransfer(
        address operator,
        address from,
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    ) internal virtual {}

    function _doSafeTransferAcceptanceCheck(
        address operator,
        address from,
        address to,
        uint256 id,
        uint256 amount,
        bytes memory data
    ) private {
        if (to.isContract()) {
            try IERC1155Receiver(to).onERC1155Received(operator, from, id, amount, data) returns (bytes4 response) {
                if (response != IERC1155Receiver.onERC1155Received.selector) {
                    revert("ERC1155: ERC1155Receiver rejected tokens");
                }
            } catch Error(string memory reason) {
                revert(reason);
            } catch {
                revert("ERC1155: transfer to non ERC1155Receiver implementer");
            }
        }
    }

    function _doSafeBatchTransferAcceptanceCheck(
        address operator,
        address from,
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    ) private {
        if (to.isContract()) {
            try IERC1155Receiver(to).onERC1155BatchReceived(operator, from, ids, amounts, data) returns (
                bytes4 response
            ) {
                if (response != IERC1155Receiver.onERC1155BatchReceived.selector) {
                    revert("ERC1155: ERC1155Receiver rejected tokens");
                }
            } catch Error(string memory reason) {
                revert(reason);
            } catch {
                revert("ERC1155: transfer to non ERC1155Receiver implementer");
            }
        }
    }

    function _asSingletonArray(uint256 element) private pure returns (uint256[] memory) {
        uint256[] memory array = new uint256[](1);
        array[0] = element;

        return array;
    }
}

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

File 5 of 13 : Pausable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (security/Pausable.sol)

pragma solidity ^0.8.0;

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

/**
 * @dev Contract module which allows children to implement an emergency stop
 * mechanism that can be triggered by an authorized account.
 *
 * This module is used through inheritance. It will make available the
 * modifiers `whenNotPaused` and `whenPaused`, which can be applied to
 * the functions of your contract. Note that they will not be pausable by
 * simply including this module, only once the modifiers are put in place.
 */
abstract contract Pausable is Context {
    /**
     * @dev Emitted when the pause is triggered by `account`.
     */
    event Paused(address account);

    /**
     * @dev Emitted when the pause is lifted by `account`.
     */
    event Unpaused(address account);

    bool private _paused;

    /**
     * @dev Initializes the contract in unpaused state.
     */
    constructor() {
        _paused = false;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is not paused.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    modifier whenNotPaused() {
        _requireNotPaused();
        _;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is paused.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    modifier whenPaused() {
        _requirePaused();
        _;
    }

    /**
     * @dev Returns true if the contract is paused, and false otherwise.
     */
    function paused() public view virtual returns (bool) {
        return _paused;
    }

    /**
     * @dev Throws if the contract is paused.
     */
    function _requireNotPaused() internal view virtual {
        require(!paused(), "Pausable: paused");
    }

    /**
     * @dev Throws if the contract is not paused.
     */
    function _requirePaused() internal view virtual {
        require(paused(), "Pausable: not paused");
    }

    /**
     * @dev Triggers stopped state.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    function _pause() internal virtual whenNotPaused {
        _paused = true;
        emit Paused(_msgSender());
    }

    /**
     * @dev Returns to normal state.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    function _unpause() internal virtual whenPaused {
        _paused = false;
        emit Unpaused(_msgSender());
    }
}

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

File 7 of 13 : IERC1155.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (token/ERC1155/IERC1155.sol)

pragma solidity ^0.8.0;

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

/**
 * @dev Required interface of an ERC1155 compliant contract, as defined in the
 * https://eips.ethereum.org/EIPS/eip-1155[EIP].
 *
 * _Available since v3.1._
 */
interface IERC1155 is IERC165 {
    /**
     * @dev Emitted when `value` tokens of token type `id` are transferred from `from` to `to` by `operator`.
     */
    event TransferSingle(address indexed operator, address indexed from, address indexed to, uint256 id, uint256 value);

    /**
     * @dev Equivalent to multiple {TransferSingle} events, where `operator`, `from` and `to` are the same for all
     * transfers.
     */
    event TransferBatch(
        address indexed operator,
        address indexed from,
        address indexed to,
        uint256[] ids,
        uint256[] values
    );

    /**
     * @dev Emitted when `account` grants or revokes permission to `operator` to transfer their tokens, according to
     * `approved`.
     */
    event ApprovalForAll(address indexed account, address indexed operator, bool approved);

    /**
     * @dev Emitted when the URI for token type `id` changes to `value`, if it is a non-programmatic URI.
     *
     * If an {URI} event was emitted for `id`, the standard
     * https://eips.ethereum.org/EIPS/eip-1155#metadata-extensions[guarantees] that `value` will equal the value
     * returned by {IERC1155MetadataURI-uri}.
     */
    event URI(string value, uint256 indexed id);

    /**
     * @dev Returns the amount of tokens of token type `id` owned by `account`.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     */
    function balanceOf(address account, uint256 id) external view returns (uint256);

    /**
     * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {balanceOf}.
     *
     * Requirements:
     *
     * - `accounts` and `ids` must have the same length.
     */
    function balanceOfBatch(address[] calldata accounts, uint256[] calldata ids)
        external
        view
        returns (uint256[] memory);

    /**
     * @dev Grants or revokes permission to `operator` to transfer the caller's tokens, according to `approved`,
     *
     * Emits an {ApprovalForAll} event.
     *
     * Requirements:
     *
     * - `operator` cannot be the caller.
     */
    function setApprovalForAll(address operator, bool approved) external;

    /**
     * @dev Returns true if `operator` is approved to transfer ``account``'s tokens.
     *
     * See {setApprovalForAll}.
     */
    function isApprovedForAll(address account, address operator) external view returns (bool);

    /**
     * @dev Transfers `amount` tokens of token type `id` from `from` to `to`.
     *
     * Emits a {TransferSingle} event.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - If the caller is not `from`, it must have been approved to spend ``from``'s tokens via {setApprovalForAll}.
     * - `from` must have a balance of tokens of type `id` of at least `amount`.
     * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155Received} and return the
     * acceptance magic value.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 id,
        uint256 amount,
        bytes calldata data
    ) external;

    /**
     * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {safeTransferFrom}.
     *
     * Emits a {TransferBatch} event.
     *
     * Requirements:
     *
     * - `ids` and `amounts` must have the same length.
     * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155BatchReceived} and return the
     * acceptance magic value.
     */
    function safeBatchTransferFrom(
        address from,
        address to,
        uint256[] calldata ids,
        uint256[] calldata amounts,
        bytes calldata data
    ) external;
}

File 8 of 13 : IERC1155Receiver.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC1155/IERC1155Receiver.sol)

pragma solidity ^0.8.0;

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

/**
 * @dev _Available since v3.1._
 */
interface IERC1155Receiver is IERC165 {
    /**
     * @dev Handles the receipt of a single ERC1155 token type. This function is
     * called at the end of a `safeTransferFrom` after the balance has been updated.
     *
     * NOTE: To accept the transfer, this must return
     * `bytes4(keccak256("onERC1155Received(address,address,uint256,uint256,bytes)"))`
     * (i.e. 0xf23a6e61, or its own function selector).
     *
     * @param operator The address which initiated the transfer (i.e. msg.sender)
     * @param from The address which previously owned the token
     * @param id The ID of the token being transferred
     * @param value The amount of tokens being transferred
     * @param data Additional data with no specified format
     * @return `bytes4(keccak256("onERC1155Received(address,address,uint256,uint256,bytes)"))` if transfer is allowed
     */
    function onERC1155Received(
        address operator,
        address from,
        uint256 id,
        uint256 value,
        bytes calldata data
    ) external returns (bytes4);

    /**
     * @dev Handles the receipt of a multiple ERC1155 token types. This function
     * is called at the end of a `safeBatchTransferFrom` after the balances have
     * been updated.
     *
     * NOTE: To accept the transfer(s), this must return
     * `bytes4(keccak256("onERC1155BatchReceived(address,address,uint256[],uint256[],bytes)"))`
     * (i.e. 0xbc197c81, or its own function selector).
     *
     * @param operator The address which initiated the batch transfer (i.e. msg.sender)
     * @param from The address which previously owned the token
     * @param ids An array containing ids of each token being transferred (order and length must match values array)
     * @param values An array containing amounts of each token being transferred (order and length must match ids array)
     * @param data Additional data with no specified format
     * @return `bytes4(keccak256("onERC1155BatchReceived(address,address,uint256[],uint256[],bytes)"))` if transfer is allowed
     */
    function onERC1155BatchReceived(
        address operator,
        address from,
        uint256[] calldata ids,
        uint256[] calldata values,
        bytes calldata data
    ) external returns (bytes4);
}

File 9 of 13 : IERC1155MetadataURI.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC1155/extensions/IERC1155MetadataURI.sol)

pragma solidity ^0.8.0;

import "../IERC1155.sol";

/**
 * @dev Interface of the optional ERC1155MetadataExtension interface, as defined
 * in the https://eips.ethereum.org/EIPS/eip-1155#metadata-extensions[EIP].
 *
 * _Available since v3.1._
 */
interface IERC1155MetadataURI is IERC1155 {
    /**
     * @dev Returns the URI for token type `id`.
     *
     * If the `\{id\}` substring is present in the URI, it must be replaced by
     * clients with the actual token type ID.
     */
    function uri(uint256 id) external view returns (string memory);
}

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

pragma solidity ^0.8.1;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     *
     * [IMPORTANT]
     * ====
     * You shouldn't rely on `isContract` to protect against flash loan attacks!
     *
     * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
     * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
     * constructor.
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize/address.code.length, which returns 0
        // for contracts in construction, since the code is only stored at the end
        // of the constructor execution.

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

pragma solidity ^0.8.0;

import "./IERC165.sol";

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

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

pragma solidity ^0.8.0;

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

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","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":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"indexed":false,"internalType":"uint256[]","name":"values","type":"uint256[]"}],"name":"TransferBatch","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"id","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"TransferSingle","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"string","name":"value","type":"string"},{"indexed":true,"internalType":"uint256","name":"id","type":"uint256"}],"name":"URI","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[{"internalType":"uint256","name":"index_","type":"uint256"},{"internalType":"address","name":"to_","type":"address"},{"internalType":"bool","name":"value_","type":"bool"}],"name":"addToWhitelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"recipients_","type":"address[]"},{"internalType":"uint256[]","name":"amounts_","type":"uint256[]"}],"name":"adminMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"accounts","type":"address[]"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"}],"name":"balanceOfBatch","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"contractURI_","type":"string"}],"name":"changeContractURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"cost_","type":"uint256"}],"name":"changeCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"limit_","type":"uint256"}],"name":"changeLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxSupply_","type":"uint256"}],"name":"changeMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"index_","type":"uint256"},{"internalType":"bytes32","name":"root_","type":"bytes32"}],"name":"changeRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"}],"name":"claim","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"}],"name":"claimed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"limit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"}],"name":"minted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"totalSupply_","type":"uint256"}],"name":"overrideTotalSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicLive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"root","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"internalType":"uint256[]","name":"amounts","type":"uint256[]"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeBatchTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"amount","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":"bool","name":"paused_","type":"bool"}],"name":"setPaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"newuri","type":"string"}],"name":"setURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"unlocked_","type":"bool"}],"name":"setUnlocked","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"},{"internalType":"bool","name":"value_","type":"bool"}],"name":"toggleSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unlocked","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"id_","type":"uint256"}],"name":"uri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"},{"internalType":"address","name":"to","type":"address"},{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"}],"name":"verified","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index_","type":"uint256"},{"internalType":"address","name":"to_","type":"address"}],"name":"whitelisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amountInWei","type":"uint256"},{"internalType":"bool","name":"withdrawAll","type":"bool"}],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"wlLive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"}],"name":"wlMint","outputs":[],"stateMutability":"payable","type":"function"}]

60806040526040518060800160405280604481526020016200589360449139600690805190602001906200003592919062000220565b50671bc16d674ec8000060085560016009556103e8600a553480156200005a57600080fd5b50604051806020016040528060008152506200007c816200013660201b60201c565b506200009d620000916200015260201b60201c565b6200015a60201b60201c565b6000600360146101000a81548160ff0219169083151502179055507f55c39569fea9fd32d18a9b8e8ca8a757604febb6b66ed1cb715e5512ee0a191060001b600b600060028152602001908152602001600020819055507f5b18ee0e30b6304d2f9e1075f9cb4b04a56063db79418467e3d960fab60ee2d060001b600b6000600181526020019081526020016000208190555062000335565b80600290805190602001906200014e92919062000220565b5050565b600033905090565b6000600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200022e90620002ff565b90600052602060002090601f0160209004810192826200025257600085556200029e565b82601f106200026d57805160ff19168380011785556200029e565b828001600101855582156200029e579182015b828111156200029d57825182559160200191906001019062000280565b5b509050620002ad9190620002b1565b5090565b5b80821115620002cc576000816000905550600101620002b2565b5090565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200031857607f821691505b602082108114156200032f576200032e620002d0565b5b50919050565b61554e80620003456000396000f3fe6080604052600436106102665760003560e01c8063715018a611610144578063c884ef83116100b6578063e985e9c51161007a578063e985e9c5146108ec578063eb48725414610929578063f242432a14610954578063f2fde38b1461097d578063f5298aca146109a6578063fb28dd67146109cf57610266565b8063c884ef83146107f3578063d5abeb0114610830578063dc42286b1461085b578063e56bf02714610884578063e8a3d485146108c157610266565b8063a49340cc11610108578063a49340cc14610713578063a4d66daf1461073c578063b0ea7dcf14610767578063b391c50814610783578063b7f751d81461079f578063c1f6f33b146107ca57610266565b8063715018a6146106405780638da5cb5b1461065757806395d89b4114610682578063978a047b146106ad578063a22cb465146106ea57610266565b80631e7269c5116101dd5780634e1273f4116101a15780634e1273f4146105325780635699b9041461056f5780635c975abb146105985780635cb85cd2146105c35780636a5e2650146105ec5780636d33b42b1461061757610266565b80631e7269c5146104515780632eb2c2d61461048e578063308fbc49146104b757806338d07436146104e0578063404c7cdd1461050957610266565b80630e89341c1161022f5780630e89341c146103625780631249c58b1461039f57806313faede6146103a9578063142164c4146103d457806316c38b3c146103fd57806318160ddd1461042657610266565b8062fdd58e1461026b57806301ffc9a7146102a857806302fe5305146102e5578063065eb1171461030e57806306fdde0314610337575b600080fd5b34801561027757600080fd5b50610292600480360381019061028d919061348c565b610a0c565b60405161029f91906134db565b60405180910390f35b3480156102b457600080fd5b506102cf60048036038101906102ca919061354e565b610ad5565b6040516102dc9190613596565b60405180910390f35b3480156102f157600080fd5b5061030c600480360381019061030791906136f7565b610bb7565b005b34801561031a57600080fd5b506103356004803603810190610330919061376c565b610bd9565b005b34801561034357600080fd5b5061034c610c2d565b6040516103599190613834565b60405180910390f35b34801561036e57600080fd5b5061038960048036038101906103849190613856565b610c66565b6040516103969190613834565b60405180910390f35b6103a7610d48565b005b3480156103b557600080fd5b506103be610db5565b6040516103cb91906134db565b60405180910390f35b3480156103e057600080fd5b506103fb60048036038101906103f69190613883565b610dbb565b005b34801561040957600080fd5b50610424600480360381019061041f9190613883565b610de0565b005b34801561043257600080fd5b5061043b610e07565b60405161044891906134db565b60405180910390f35b34801561045d57600080fd5b50610478600480360381019061047391906138b0565b610e0d565b60405161048591906134db565b60405180910390f35b34801561049a57600080fd5b506104b560048036038101906104b09190613a46565b610e56565b005b3480156104c357600080fd5b506104de60048036038101906104d99190613b15565b610ef7565b005b3480156104ec57600080fd5b506105076004803603810190610502919061376c565b610f6c565b005b34801561051557600080fd5b50610530600480360381019061052b9190613856565b611018565b005b34801561053e57600080fd5b5061055960048036038101906105549190613c2b565b61102a565b6040516105669190613d61565b60405180910390f35b34801561057b57600080fd5b5061059660048036038101906105919190613dde565b611143565b005b3480156105a457600080fd5b506105ad611161565b6040516105ba9190613596565b60405180910390f35b3480156105cf57600080fd5b506105ea60048036038101906105e59190613856565b611178565b005b3480156105f857600080fd5b5061060161118a565b60405161060e9190613596565b60405180910390f35b34801561062357600080fd5b5061063e60048036038101906106399190613856565b61119d565b005b34801561064c57600080fd5b506106556111af565b005b34801561066357600080fd5b5061066c6111c3565b6040516106799190613e3a565b60405180910390f35b34801561068e57600080fd5b506106976111ed565b6040516106a49190613834565b60405180910390f35b3480156106b957600080fd5b506106d460048036038101906106cf9190613e55565b611226565b6040516106e19190613596565b60405180910390f35b3480156106f657600080fd5b50610711600480360381019061070c9190613e95565b61128e565b005b34801561071f57600080fd5b5061073a60048036038101906107359190613f81565b6112eb565b005b34801561074857600080fd5b50610751611414565b60405161075e91906134db565b60405180910390f35b610781600480360381019061077c9190614058565b61141a565b005b61079d60048036038101906107989190614058565b6115b2565b005b3480156107ab57600080fd5b506107b461170d565b6040516107c19190613596565b60405180910390f35b3480156107d657600080fd5b506107f160048036038101906107ec9190613856565b611720565b005b3480156107ff57600080fd5b5061081a600480360381019061081591906138b0565b611732565b6040516108279190613596565b60405180910390f35b34801561083c57600080fd5b50610845611788565b60405161085291906134db565b60405180910390f35b34801561086757600080fd5b50610882600480360381019061087d91906140db565b61178e565b005b34801561089057600080fd5b506108ab60048036038101906108a69190613856565b6117b2565b6040516108b8919061412a565b60405180910390f35b3480156108cd57600080fd5b506108d66117cf565b6040516108e39190613834565b60405180910390f35b3480156108f857600080fd5b50610913600480360381019061090e9190614145565b61185d565b6040516109209190613596565b60405180910390f35b34801561093557600080fd5b5061093e61188f565b60405161094b9190613596565b60405180910390f35b34801561096057600080fd5b5061097b60048036038101906109769190614185565b6118a2565b005b34801561098957600080fd5b506109a4600480360381019061099f91906138b0565b611943565b005b3480156109b257600080fd5b506109cd60048036038101906109c8919061421c565b6119c7565b005b3480156109db57600080fd5b506109f660048036038101906109f1919061426f565b6119f8565b604051610a039190613596565b60405180910390f35b60008073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610a7d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a7490614355565b60405180910390fd5b60008083815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60007fd9b67a26000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610ba057507f0e89341c000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610bb05750610baf82611aee565b5b9050919050565b610bbf611b58565b8060069080519060200190610bd59291906132bb565b5050565b610be1611b58565b6000821415610c055780600560006101000a81548160ff0219169083151502179055505b6001821415610c295780600560016101000a81548160ff0219169083151502179055505b5050565b6040518060400160405280600681526020017f436c75622037000000000000000000000000000000000000000000000000000081525081565b6060600060068054610c77906143a4565b80601f0160208091040260200160405190810160405280929190818152602001828054610ca3906143a4565b8015610cf05780601f10610cc557610100808354040283529160200191610cf0565b820191906000526020600020905b815481529060010190602001808311610cd357829003601f168201915b505050505090506000815111610d155760405180602001604052806000815250610d40565b80610d1f84611bd6565b604051602001610d3092919061445e565b6040516020818303038152906040525b915050919050565b610d50611d37565b600560009054906101000a900460ff16610d9f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d96906144d9565b60405180910390fd5b610da833611d81565b610db3600854611e71565b565b60085481565b610dc3611b58565b80600560026101000a81548160ff02191690831515021790555050565b610de8611b58565b8015610dfb57610df6611f12565b610e04565b610e03611f75565b5b50565b60075481565b6000600c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610e5e611fd8565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161480610ea45750610ea385610e9e611fd8565b61185d565b5b610ee3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eda9061456b565b60405180910390fd5b610ef08585858585611fe0565b5050505050565b610eff611b58565b80600d600085815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550505050565b610f74611b58565b8015610fcc5760004790503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610fc5573d6000803e3d6000fd5b5050611014565b3373ffffffffffffffffffffffffffffffffffffffff166108fc839081150290604051600060405180830381858888f19350505050158015611012573d6000803e3d6000fd5b505b5050565b611020611b58565b80600a8190555050565b60608151835114611070576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611067906145fd565b60405180910390fd5b6000835167ffffffffffffffff81111561108d5761108c6135cc565b5b6040519080825280602002602001820160405280156110bb5781602001602082028036833780820191505090505b50905060005b8451811015611138576111088582815181106110e0576110df61461d565b5b60200260200101518583815181106110fb576110fa61461d565b5b6020026020010151610a0c565b82828151811061111b5761111a61461d565b5b602002602001018181525050806111319061467b565b90506110c1565b508091505092915050565b61114b611b58565b81816004919061115c929190613341565b505050565b6000600360149054906101000a900460ff16905090565b611180611b58565b8060088190555050565b600560029054906101000a900460ff1681565b6111a5611b58565b8060098190555050565b6111b7611b58565b6111c16000612302565b565b6000600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6040518060400160405280600681526020017f436c75622037000000000000000000000000000000000000000000000000000081525081565b6000600d600084815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600560029054906101000a900460ff166112dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112d490614710565b60405180910390fd5b6112e782826123c8565b5050565b6112f3611b58565b60005b8484905081101561140d57600a548383838181106113175761131661461d565b5b9050602002013560075461132b9190614730565b111561136c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611363906147d2565b60405180910390fd5b82828281811061137f5761137e61461d565b5b90506020020135600760008282546113979190614730565b925050819055506113fa8585838181106113b4576113b361461d565b5b90506020020160208101906113c991906138b0565b60018585858181106113de576113dd61461d565b5b90506020020135604051806020016040528060008152506123de565b80806114059061467b565b9150506112f6565b5050505050565b60095481565b611422611d37565b600560019054906101000a900460ff16611471576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611468906144d9565b60405180910390fd5b6009546001600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546114c09190614730565b1115611501576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114f89061483e565b60405180910390fd5b61150e60013384846119f8565b61154d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611544906148aa565b60405180910390fd5b600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154600101919050819055506115a333611d81565b6115ae600854611e71565b5050565b6115ba611d37565b600560019054906101000a900460ff16611609576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611600906144d9565b60405180910390fd5b61161233611732565b15611652576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161164990614916565b60405180910390fd5b61165f60023384846119f8565b61169e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161169590614982565b60405180910390fd5b6001600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506116ff33611d81565b6117096000611e71565b5050565b600560009054906101000a900460ff1681565b611728611b58565b8060078190555050565b6000600e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b600a5481565b611796611b58565b80600b6000848152602001908152602001600020819055505050565b6000600b6000838152602001908152602001600020549050919050565b600480546117dc906143a4565b80601f0160208091040260200160405190810160405280929190818152602001828054611808906143a4565b80156118555780601f1061182a57610100808354040283529160200191611855565b820191906000526020600020905b81548152906001019060200180831161183857829003601f168201915b505050505081565b6000600560029054906101000a900460ff1661187c5760009050611889565b611886838361258f565b90505b92915050565b600560019054906101000a900460ff1681565b6118aa611fd8565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614806118f057506118ef856118ea611fd8565b61185d565b5b61192f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119269061456b565b60405180910390fd5b61193c8585858585612623565b5050505050565b61194b611b58565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156119bb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119b290614a14565b60405180910390fd5b6119c481612302565b50565b6119cf611b58565b80600760008282546119e19190614a34565b925050819055506119f38383836128bf565b505050565b6000611a7f838380806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050600b60008881526020019081526020016000205486604051602001611a649190614ab0565b60405160208183030381529060405280519060200120612b06565b80611ae45750600d600086815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b9050949350505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b611b60611fd8565b73ffffffffffffffffffffffffffffffffffffffff16611b7e6111c3565b73ffffffffffffffffffffffffffffffffffffffff1614611bd4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bcb90614b17565b60405180910390fd5b565b60606000821415611c1e576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611d32565b600082905060005b60008214611c50578080611c399061467b565b915050600a82611c499190614b66565b9150611c26565b60008167ffffffffffffffff811115611c6c57611c6b6135cc565b5b6040519080825280601f01601f191660200182016040528015611c9e5781602001600182028036833780820191505090505b5090505b60008514611d2b57600182611cb79190614a34565b9150600a85611cc69190614b97565b6030611cd29190614730565b60f81b818381518110611ce857611ce761461d565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85611d249190614b66565b9450611ca2565b8093505050505b919050565b611d3f611161565b15611d7f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d7690614c14565b60405180910390fd5b565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614611def576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611de690614c80565b60405180910390fd5b600a546001600754611e019190614730565b1115611e42576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e39906147d2565b60405180910390fd5b60076000815460010191905081905550611e6e81600180604051806020016040528060008152506123de565b50565b80341015611eb4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611eab90614cec565b60405180910390fd5b80341115611f0f573373ffffffffffffffffffffffffffffffffffffffff166108fc8234611ee29190614a34565b9081150290604051600060405180830381858888f19350505050158015611f0d573d6000803e3d6000fd5b505b50565b611f1a611d37565b6001600360146101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258611f5e611fd8565b604051611f6b9190613e3a565b60405180910390a1565b611f7d612b1d565b6000600360146101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa611fc1611fd8565b604051611fce9190613e3a565b60405180910390a1565b600033905090565b8151835114612024576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161201b90614d7e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612094576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161208b90614e10565b60405180910390fd5b600061209e611fd8565b90506120ae818787878787612b66565b60005b845181101561225f5760008582815181106120cf576120ce61461d565b5b6020026020010151905060008583815181106120ee576120ed61461d565b5b60200260200101519050600080600084815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561218f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161218690614ea2565b60405180910390fd5b81810360008085815260200190815260200160002060008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508160008085815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546122449190614730565b92505081905550505050806122589061467b565b90506120b1565b508473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb87876040516122d6929190614ec2565b60405180910390a46122ec818787878787612c3b565b6122fa818787878787612c43565b505050505050565b6000600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6123da6123d3611fd8565b8383612e2a565b5050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16141561244e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161244590614f6b565b60405180910390fd5b6000612458611fd8565b9050600061246585612f97565b9050600061247285612f97565b905061248383600089858589612b66565b8460008088815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546124e29190614730565b925050819055508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628989604051612560929190614f8b565b60405180910390a461257783600089858589612c3b565b61258683600089898989613011565b50505050505050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612693576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161268a90614e10565b60405180910390fd5b600061269d611fd8565b905060006126aa85612f97565b905060006126b785612f97565b90506126c7838989858589612b66565b600080600088815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508581101561275e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161275590614ea2565b60405180910390fd5b85810360008089815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508560008089815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546128139190614730565b925050819055508773ffffffffffffffffffffffffffffffffffffffff168973ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628a8a604051612890929190614f8b565b60405180910390a46128a6848a8a86868a612c3b565b6128b4848a8a8a8a8a613011565b505050505050505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561292f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161292690615026565b60405180910390fd5b6000612939611fd8565b9050600061294684612f97565b9050600061295384612f97565b905061297383876000858560405180602001604052806000815250612b66565b600080600087815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905084811015612a0a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a01906150b8565b60405180910390fd5b84810360008088815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600073ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628989604051612ad7929190614f8b565b60405180910390a4612afd84886000868660405180602001604052806000815250612c3b565b50505050505050565b600082612b1385846131f8565b1490509392505050565b612b25611161565b612b64576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b5b90615124565b60405180910390fd5b565b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614158015612bd05750600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614155b15612c2557600560029054906101000a900460ff16612c24576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c1b90614710565b60405180910390fd5b5b612c3386868686868661324e565b505050505050565b505050505050565b612c628473ffffffffffffffffffffffffffffffffffffffff16613256565b15612e22578373ffffffffffffffffffffffffffffffffffffffff1663bc197c8187878686866040518663ffffffff1660e01b8152600401612ca8959493929190615199565b602060405180830381600087803b158015612cc257600080fd5b505af1925050508015612cf357506040513d601f19601f82011682018060405250810190612cf09190615216565b60015b612d9957612cff615250565b806308c379a01415612d5c5750612d14615272565b80612d1f5750612d5e565b806040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d539190613834565b60405180910390fd5b505b6040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d909061537a565b60405180910390fd5b63bc197c8160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614612e20576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e179061540c565b60405180910390fd5b505b505050505050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612e99576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e909061549e565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051612f8a9190613596565b60405180910390a3505050565b60606000600167ffffffffffffffff811115612fb657612fb56135cc565b5b604051908082528060200260200182016040528015612fe45781602001602082028036833780820191505090505b5090508281600081518110612ffc57612ffb61461d565b5b60200260200101818152505080915050919050565b6130308473ffffffffffffffffffffffffffffffffffffffff16613256565b156131f0578373ffffffffffffffffffffffffffffffffffffffff1663f23a6e6187878686866040518663ffffffff1660e01b81526004016130769594939291906154be565b602060405180830381600087803b15801561309057600080fd5b505af19250505080156130c157506040513d601f19601f820116820180604052508101906130be9190615216565b60015b613167576130cd615250565b806308c379a0141561312a57506130e2615272565b806130ed575061312c565b806040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131219190613834565b60405180910390fd5b505b6040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161315e9061537a565b60405180910390fd5b63f23a6e6160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916146131ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131e59061540c565b60405180910390fd5b505b505050505050565b60008082905060005b84518110156132435761322e828683815181106132215761322061461d565b5b6020026020010151613279565b9150808061323b9061467b565b915050613201565b508091505092915050565b505050505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008183106132915761328c82846132a4565b61329c565b61329b83836132a4565b5b905092915050565b600082600052816020526040600020905092915050565b8280546132c7906143a4565b90600052602060002090601f0160209004810192826132e95760008555613330565b82601f1061330257805160ff1916838001178555613330565b82800160010185558215613330579182015b8281111561332f578251825591602001919060010190613314565b5b50905061333d91906133c7565b5090565b82805461334d906143a4565b90600052602060002090601f01602090048101928261336f57600085556133b6565b82601f1061338857803560ff19168380011785556133b6565b828001600101855582156133b6579182015b828111156133b557823582559160200191906001019061339a565b5b5090506133c391906133c7565b5090565b5b808211156133e05760008160009055506001016133c8565b5090565b6000604051905090565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000613423826133f8565b9050919050565b61343381613418565b811461343e57600080fd5b50565b6000813590506134508161342a565b92915050565b6000819050919050565b61346981613456565b811461347457600080fd5b50565b60008135905061348681613460565b92915050565b600080604083850312156134a3576134a26133ee565b5b60006134b185828601613441565b92505060206134c285828601613477565b9150509250929050565b6134d581613456565b82525050565b60006020820190506134f060008301846134cc565b92915050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61352b816134f6565b811461353657600080fd5b50565b60008135905061354881613522565b92915050565b600060208284031215613564576135636133ee565b5b600061357284828501613539565b91505092915050565b60008115159050919050565b6135908161357b565b82525050565b60006020820190506135ab6000830184613587565b92915050565b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b613604826135bb565b810181811067ffffffffffffffff82111715613623576136226135cc565b5b80604052505050565b60006136366133e4565b905061364282826135fb565b919050565b600067ffffffffffffffff821115613662576136616135cc565b5b61366b826135bb565b9050602081019050919050565b82818337600083830152505050565b600061369a61369584613647565b61362c565b9050828152602081018484840111156136b6576136b56135b6565b5b6136c1848285613678565b509392505050565b600082601f8301126136de576136dd6135b1565b5b81356136ee848260208601613687565b91505092915050565b60006020828403121561370d5761370c6133ee565b5b600082013567ffffffffffffffff81111561372b5761372a6133f3565b5b613737848285016136c9565b91505092915050565b6137498161357b565b811461375457600080fd5b50565b60008135905061376681613740565b92915050565b60008060408385031215613783576137826133ee565b5b600061379185828601613477565b92505060206137a285828601613757565b9150509250929050565b600081519050919050565b600082825260208201905092915050565b60005b838110156137e65780820151818401526020810190506137cb565b838111156137f5576000848401525b50505050565b6000613806826137ac565b61381081856137b7565b93506138208185602086016137c8565b613829816135bb565b840191505092915050565b6000602082019050818103600083015261384e81846137fb565b905092915050565b60006020828403121561386c5761386b6133ee565b5b600061387a84828501613477565b91505092915050565b600060208284031215613899576138986133ee565b5b60006138a784828501613757565b91505092915050565b6000602082840312156138c6576138c56133ee565b5b60006138d484828501613441565b91505092915050565b600067ffffffffffffffff8211156138f8576138f76135cc565b5b602082029050602081019050919050565b600080fd5b600061392161391c846138dd565b61362c565b9050808382526020820190506020840283018581111561394457613943613909565b5b835b8181101561396d57806139598882613477565b845260208401935050602081019050613946565b5050509392505050565b600082601f83011261398c5761398b6135b1565b5b813561399c84826020860161390e565b91505092915050565b600067ffffffffffffffff8211156139c0576139bf6135cc565b5b6139c9826135bb565b9050602081019050919050565b60006139e96139e4846139a5565b61362c565b905082815260208101848484011115613a0557613a046135b6565b5b613a10848285613678565b509392505050565b600082601f830112613a2d57613a2c6135b1565b5b8135613a3d8482602086016139d6565b91505092915050565b600080600080600060a08688031215613a6257613a616133ee565b5b6000613a7088828901613441565b9550506020613a8188828901613441565b945050604086013567ffffffffffffffff811115613aa257613aa16133f3565b5b613aae88828901613977565b935050606086013567ffffffffffffffff811115613acf57613ace6133f3565b5b613adb88828901613977565b925050608086013567ffffffffffffffff811115613afc57613afb6133f3565b5b613b0888828901613a18565b9150509295509295909350565b600080600060608486031215613b2e57613b2d6133ee565b5b6000613b3c86828701613477565b9350506020613b4d86828701613441565b9250506040613b5e86828701613757565b9150509250925092565b600067ffffffffffffffff821115613b8357613b826135cc565b5b602082029050602081019050919050565b6000613ba7613ba284613b68565b61362c565b90508083825260208201905060208402830185811115613bca57613bc9613909565b5b835b81811015613bf35780613bdf8882613441565b845260208401935050602081019050613bcc565b5050509392505050565b600082601f830112613c1257613c116135b1565b5b8135613c22848260208601613b94565b91505092915050565b60008060408385031215613c4257613c416133ee565b5b600083013567ffffffffffffffff811115613c6057613c5f6133f3565b5b613c6c85828601613bfd565b925050602083013567ffffffffffffffff811115613c8d57613c8c6133f3565b5b613c9985828601613977565b9150509250929050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b613cd881613456565b82525050565b6000613cea8383613ccf565b60208301905092915050565b6000602082019050919050565b6000613d0e82613ca3565b613d188185613cae565b9350613d2383613cbf565b8060005b83811015613d54578151613d3b8882613cde565b9750613d4683613cf6565b925050600181019050613d27565b5085935050505092915050565b60006020820190508181036000830152613d7b8184613d03565b905092915050565b600080fd5b60008083601f840112613d9e57613d9d6135b1565b5b8235905067ffffffffffffffff811115613dbb57613dba613d83565b5b602083019150836001820283011115613dd757613dd6613909565b5b9250929050565b60008060208385031215613df557613df46133ee565b5b600083013567ffffffffffffffff811115613e1357613e126133f3565b5b613e1f85828601613d88565b92509250509250929050565b613e3481613418565b82525050565b6000602082019050613e4f6000830184613e2b565b92915050565b60008060408385031215613e6c57613e6b6133ee565b5b6000613e7a85828601613477565b9250506020613e8b85828601613441565b9150509250929050565b60008060408385031215613eac57613eab6133ee565b5b6000613eba85828601613441565b9250506020613ecb85828601613757565b9150509250929050565b60008083601f840112613eeb57613eea6135b1565b5b8235905067ffffffffffffffff811115613f0857613f07613d83565b5b602083019150836020820283011115613f2457613f23613909565b5b9250929050565b60008083601f840112613f4157613f406135b1565b5b8235905067ffffffffffffffff811115613f5e57613f5d613d83565b5b602083019150836020820283011115613f7a57613f79613909565b5b9250929050565b60008060008060408587031215613f9b57613f9a6133ee565b5b600085013567ffffffffffffffff811115613fb957613fb86133f3565b5b613fc587828801613ed5565b9450945050602085013567ffffffffffffffff811115613fe857613fe76133f3565b5b613ff487828801613f2b565b925092505092959194509250565b60008083601f840112614018576140176135b1565b5b8235905067ffffffffffffffff81111561403557614034613d83565b5b60208301915083602082028301111561405157614050613909565b5b9250929050565b6000806020838503121561406f5761406e6133ee565b5b600083013567ffffffffffffffff81111561408d5761408c6133f3565b5b61409985828601614002565b92509250509250929050565b6000819050919050565b6140b8816140a5565b81146140c357600080fd5b50565b6000813590506140d5816140af565b92915050565b600080604083850312156140f2576140f16133ee565b5b600061410085828601613477565b9250506020614111858286016140c6565b9150509250929050565b614124816140a5565b82525050565b600060208201905061413f600083018461411b565b92915050565b6000806040838503121561415c5761415b6133ee565b5b600061416a85828601613441565b925050602061417b85828601613441565b9150509250929050565b600080600080600060a086880312156141a1576141a06133ee565b5b60006141af88828901613441565b95505060206141c088828901613441565b94505060406141d188828901613477565b93505060606141e288828901613477565b925050608086013567ffffffffffffffff811115614203576142026133f3565b5b61420f88828901613a18565b9150509295509295909350565b600080600060608486031215614235576142346133ee565b5b600061424386828701613441565b935050602061425486828701613477565b925050604061426586828701613477565b9150509250925092565b60008060008060608587031215614289576142886133ee565b5b600061429787828801613477565b94505060206142a887828801613441565b935050604085013567ffffffffffffffff8111156142c9576142c86133f3565b5b6142d587828801614002565b925092505092959194509250565b7f455243313135353a2061646472657373207a65726f206973206e6f742061207660008201527f616c6964206f776e657200000000000000000000000000000000000000000000602082015250565b600061433f602a836137b7565b915061434a826142e3565b604082019050919050565b6000602082019050818103600083015261436e81614332565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806143bc57607f821691505b602082108114156143d0576143cf614375565b5b50919050565b600081905092915050565b60006143ec826137ac565b6143f681856143d6565b93506144068185602086016137c8565b80840191505092915050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b60006144486005836143d6565b915061445382614412565b600582019050919050565b600061446a82856143e1565b915061447682846143e1565b91506144818261443b565b91508190509392505050565b7f4e6f74206c697665000000000000000000000000000000000000000000000000600082015250565b60006144c36008836137b7565b91506144ce8261448d565b602082019050919050565b600060208201905081810360008301526144f2816144b6565b9050919050565b7f455243313135353a2063616c6c6572206973206e6f7420746f6b656e206f776e60008201527f6572206e6f7220617070726f7665640000000000000000000000000000000000602082015250565b6000614555602f836137b7565b9150614560826144f9565b604082019050919050565b6000602082019050818103600083015261458481614548565b9050919050565b7f455243313135353a206163636f756e747320616e6420696473206c656e67746860008201527f206d69736d617463680000000000000000000000000000000000000000000000602082015250565b60006145e76029836137b7565b91506145f28261458b565b604082019050919050565b60006020820190508181036000830152614616816145da565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061468682613456565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156146b9576146b861464c565b5b600182019050919050565b7f6c6f636b65640000000000000000000000000000000000000000000000000000600082015250565b60006146fa6006836137b7565b9150614705826146c4565b602082019050919050565b60006020820190508181036000830152614729816146ed565b9050919050565b600061473b82613456565b915061474683613456565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561477b5761477a61464c565b5b828201905092915050565b7f4578636565647320537570706c79000000000000000000000000000000000000600082015250565b60006147bc600e836137b7565b91506147c782614786565b602082019050919050565b600060208201905081810360008301526147eb816147af565b9050919050565b7f457863656564732062616c616e63650000000000000000000000000000000000600082015250565b6000614828600f836137b7565b9150614833826147f2565b602082019050919050565b600060208201905081810360008301526148578161481b565b9050919050565b7f4e6f7420696e2057686974656c69737400000000000000000000000000000000600082015250565b60006148946010836137b7565b915061489f8261485e565b602082019050919050565b600060208201905081810360008301526148c381614887565b9050919050565b7f436c61696d656400000000000000000000000000000000000000000000000000600082015250565b60006149006007836137b7565b915061490b826148ca565b602082019050919050565b6000602082019050818103600083015261492f816148f3565b9050919050565b7f4e6f7420696e20436c61696d0000000000000000000000000000000000000000600082015250565b600061496c600c836137b7565b915061497782614936565b602082019050919050565b6000602082019050818103600083015261499b8161495f565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006149fe6026836137b7565b9150614a09826149a2565b604082019050919050565b60006020820190508181036000830152614a2d816149f1565b9050919050565b6000614a3f82613456565b9150614a4a83613456565b925082821015614a5d57614a5c61464c565b5b828203905092915050565b60008160601b9050919050565b6000614a8082614a68565b9050919050565b6000614a9282614a75565b9050919050565b614aaa614aa582613418565b614a87565b82525050565b6000614abc8284614a99565b60148201915081905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000614b016020836137b7565b9150614b0c82614acb565b602082019050919050565b60006020820190508181036000830152614b3081614af4565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000614b7182613456565b9150614b7c83613456565b925082614b8c57614b8b614b37565b5b828204905092915050565b6000614ba282613456565b9150614bad83613456565b925082614bbd57614bbc614b37565b5b828206905092915050565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b6000614bfe6010836137b7565b9150614c0982614bc8565b602082019050919050565b60006020820190508181036000830152614c2d81614bf1565b9050919050565b7f454f410000000000000000000000000000000000000000000000000000000000600082015250565b6000614c6a6003836137b7565b9150614c7582614c34565b602082019050919050565b60006020820190508181036000830152614c9981614c5d565b9050919050565b7f4e6f7420656e6f75676820455448000000000000000000000000000000000000600082015250565b6000614cd6600e836137b7565b9150614ce182614ca0565b602082019050919050565b60006020820190508181036000830152614d0581614cc9565b9050919050565b7f455243313135353a2069647320616e6420616d6f756e7473206c656e6774682060008201527f6d69736d61746368000000000000000000000000000000000000000000000000602082015250565b6000614d686028836137b7565b9150614d7382614d0c565b604082019050919050565b60006020820190508181036000830152614d9781614d5b565b9050919050565b7f455243313135353a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000614dfa6025836137b7565b9150614e0582614d9e565b604082019050919050565b60006020820190508181036000830152614e2981614ded565b9050919050565b7f455243313135353a20696e73756666696369656e742062616c616e636520666f60008201527f72207472616e7366657200000000000000000000000000000000000000000000602082015250565b6000614e8c602a836137b7565b9150614e9782614e30565b604082019050919050565b60006020820190508181036000830152614ebb81614e7f565b9050919050565b60006040820190508181036000830152614edc8185613d03565b90508181036020830152614ef08184613d03565b90509392505050565b7f455243313135353a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000614f556021836137b7565b9150614f6082614ef9565b604082019050919050565b60006020820190508181036000830152614f8481614f48565b9050919050565b6000604082019050614fa060008301856134cc565b614fad60208301846134cc565b9392505050565b7f455243313135353a206275726e2066726f6d20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006150106023836137b7565b915061501b82614fb4565b604082019050919050565b6000602082019050818103600083015261503f81615003565b9050919050565b7f455243313135353a206275726e20616d6f756e7420657863656564732062616c60008201527f616e636500000000000000000000000000000000000000000000000000000000602082015250565b60006150a26024836137b7565b91506150ad82615046565b604082019050919050565b600060208201905081810360008301526150d181615095565b9050919050565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b600061510e6014836137b7565b9150615119826150d8565b602082019050919050565b6000602082019050818103600083015261513d81615101565b9050919050565b600081519050919050565b600082825260208201905092915050565b600061516b82615144565b615175818561514f565b93506151858185602086016137c8565b61518e816135bb565b840191505092915050565b600060a0820190506151ae6000830188613e2b565b6151bb6020830187613e2b565b81810360408301526151cd8186613d03565b905081810360608301526151e18185613d03565b905081810360808301526151f58184615160565b90509695505050505050565b60008151905061521081613522565b92915050565b60006020828403121561522c5761522b6133ee565b5b600061523a84828501615201565b91505092915050565b60008160e01c9050919050565b600060033d111561526f5760046000803e61526c600051615243565b90505b90565b600060443d101561528257615305565b61528a6133e4565b60043d036004823e80513d602482011167ffffffffffffffff821117156152b2575050615305565b808201805167ffffffffffffffff8111156152d05750505050615305565b80602083010160043d0385018111156152ed575050505050615305565b6152fc826020018501866135fb565b82955050505050505b90565b7f455243313135353a207472616e7366657220746f206e6f6e204552433131353560008201527f526563656976657220696d706c656d656e746572000000000000000000000000602082015250565b60006153646034836137b7565b915061536f82615308565b604082019050919050565b6000602082019050818103600083015261539381615357565b9050919050565b7f455243313135353a204552433131353552656365697665722072656a6563746560008201527f6420746f6b656e73000000000000000000000000000000000000000000000000602082015250565b60006153f66028836137b7565b91506154018261539a565b604082019050919050565b60006020820190508181036000830152615425816153e9565b9050919050565b7f455243313135353a2073657474696e6720617070726f76616c2073746174757360008201527f20666f722073656c660000000000000000000000000000000000000000000000602082015250565b60006154886029836137b7565b91506154938261542c565b604082019050919050565b600060208201905081810360008301526154b78161547b565b9050919050565b600060a0820190506154d36000830188613e2b565b6154e06020830187613e2b565b6154ed60408301866134cc565b6154fa60608301856134cc565b818103608083015261550c8184615160565b9050969550505050505056fea2646970667358221220356a93b11b0eaebb01be34b7ff8b784d8ac04db839f4b80269a28d6df9afde9b64736f6c6343000809003368747470733a2f2f697066732e696f2f697066732f516d5836615a5a4846744c4d36716834696b65526d58354575646f484575675a44685055714272633677773263412f

Deployed Bytecode

0x6080604052600436106102665760003560e01c8063715018a611610144578063c884ef83116100b6578063e985e9c51161007a578063e985e9c5146108ec578063eb48725414610929578063f242432a14610954578063f2fde38b1461097d578063f5298aca146109a6578063fb28dd67146109cf57610266565b8063c884ef83146107f3578063d5abeb0114610830578063dc42286b1461085b578063e56bf02714610884578063e8a3d485146108c157610266565b8063a49340cc11610108578063a49340cc14610713578063a4d66daf1461073c578063b0ea7dcf14610767578063b391c50814610783578063b7f751d81461079f578063c1f6f33b146107ca57610266565b8063715018a6146106405780638da5cb5b1461065757806395d89b4114610682578063978a047b146106ad578063a22cb465146106ea57610266565b80631e7269c5116101dd5780634e1273f4116101a15780634e1273f4146105325780635699b9041461056f5780635c975abb146105985780635cb85cd2146105c35780636a5e2650146105ec5780636d33b42b1461061757610266565b80631e7269c5146104515780632eb2c2d61461048e578063308fbc49146104b757806338d07436146104e0578063404c7cdd1461050957610266565b80630e89341c1161022f5780630e89341c146103625780631249c58b1461039f57806313faede6146103a9578063142164c4146103d457806316c38b3c146103fd57806318160ddd1461042657610266565b8062fdd58e1461026b57806301ffc9a7146102a857806302fe5305146102e5578063065eb1171461030e57806306fdde0314610337575b600080fd5b34801561027757600080fd5b50610292600480360381019061028d919061348c565b610a0c565b60405161029f91906134db565b60405180910390f35b3480156102b457600080fd5b506102cf60048036038101906102ca919061354e565b610ad5565b6040516102dc9190613596565b60405180910390f35b3480156102f157600080fd5b5061030c600480360381019061030791906136f7565b610bb7565b005b34801561031a57600080fd5b506103356004803603810190610330919061376c565b610bd9565b005b34801561034357600080fd5b5061034c610c2d565b6040516103599190613834565b60405180910390f35b34801561036e57600080fd5b5061038960048036038101906103849190613856565b610c66565b6040516103969190613834565b60405180910390f35b6103a7610d48565b005b3480156103b557600080fd5b506103be610db5565b6040516103cb91906134db565b60405180910390f35b3480156103e057600080fd5b506103fb60048036038101906103f69190613883565b610dbb565b005b34801561040957600080fd5b50610424600480360381019061041f9190613883565b610de0565b005b34801561043257600080fd5b5061043b610e07565b60405161044891906134db565b60405180910390f35b34801561045d57600080fd5b50610478600480360381019061047391906138b0565b610e0d565b60405161048591906134db565b60405180910390f35b34801561049a57600080fd5b506104b560048036038101906104b09190613a46565b610e56565b005b3480156104c357600080fd5b506104de60048036038101906104d99190613b15565b610ef7565b005b3480156104ec57600080fd5b506105076004803603810190610502919061376c565b610f6c565b005b34801561051557600080fd5b50610530600480360381019061052b9190613856565b611018565b005b34801561053e57600080fd5b5061055960048036038101906105549190613c2b565b61102a565b6040516105669190613d61565b60405180910390f35b34801561057b57600080fd5b5061059660048036038101906105919190613dde565b611143565b005b3480156105a457600080fd5b506105ad611161565b6040516105ba9190613596565b60405180910390f35b3480156105cf57600080fd5b506105ea60048036038101906105e59190613856565b611178565b005b3480156105f857600080fd5b5061060161118a565b60405161060e9190613596565b60405180910390f35b34801561062357600080fd5b5061063e60048036038101906106399190613856565b61119d565b005b34801561064c57600080fd5b506106556111af565b005b34801561066357600080fd5b5061066c6111c3565b6040516106799190613e3a565b60405180910390f35b34801561068e57600080fd5b506106976111ed565b6040516106a49190613834565b60405180910390f35b3480156106b957600080fd5b506106d460048036038101906106cf9190613e55565b611226565b6040516106e19190613596565b60405180910390f35b3480156106f657600080fd5b50610711600480360381019061070c9190613e95565b61128e565b005b34801561071f57600080fd5b5061073a60048036038101906107359190613f81565b6112eb565b005b34801561074857600080fd5b50610751611414565b60405161075e91906134db565b60405180910390f35b610781600480360381019061077c9190614058565b61141a565b005b61079d60048036038101906107989190614058565b6115b2565b005b3480156107ab57600080fd5b506107b461170d565b6040516107c19190613596565b60405180910390f35b3480156107d657600080fd5b506107f160048036038101906107ec9190613856565b611720565b005b3480156107ff57600080fd5b5061081a600480360381019061081591906138b0565b611732565b6040516108279190613596565b60405180910390f35b34801561083c57600080fd5b50610845611788565b60405161085291906134db565b60405180910390f35b34801561086757600080fd5b50610882600480360381019061087d91906140db565b61178e565b005b34801561089057600080fd5b506108ab60048036038101906108a69190613856565b6117b2565b6040516108b8919061412a565b60405180910390f35b3480156108cd57600080fd5b506108d66117cf565b6040516108e39190613834565b60405180910390f35b3480156108f857600080fd5b50610913600480360381019061090e9190614145565b61185d565b6040516109209190613596565b60405180910390f35b34801561093557600080fd5b5061093e61188f565b60405161094b9190613596565b60405180910390f35b34801561096057600080fd5b5061097b60048036038101906109769190614185565b6118a2565b005b34801561098957600080fd5b506109a4600480360381019061099f91906138b0565b611943565b005b3480156109b257600080fd5b506109cd60048036038101906109c8919061421c565b6119c7565b005b3480156109db57600080fd5b506109f660048036038101906109f1919061426f565b6119f8565b604051610a039190613596565b60405180910390f35b60008073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610a7d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a7490614355565b60405180910390fd5b60008083815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60007fd9b67a26000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610ba057507f0e89341c000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610bb05750610baf82611aee565b5b9050919050565b610bbf611b58565b8060069080519060200190610bd59291906132bb565b5050565b610be1611b58565b6000821415610c055780600560006101000a81548160ff0219169083151502179055505b6001821415610c295780600560016101000a81548160ff0219169083151502179055505b5050565b6040518060400160405280600681526020017f436c75622037000000000000000000000000000000000000000000000000000081525081565b6060600060068054610c77906143a4565b80601f0160208091040260200160405190810160405280929190818152602001828054610ca3906143a4565b8015610cf05780601f10610cc557610100808354040283529160200191610cf0565b820191906000526020600020905b815481529060010190602001808311610cd357829003601f168201915b505050505090506000815111610d155760405180602001604052806000815250610d40565b80610d1f84611bd6565b604051602001610d3092919061445e565b6040516020818303038152906040525b915050919050565b610d50611d37565b600560009054906101000a900460ff16610d9f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d96906144d9565b60405180910390fd5b610da833611d81565b610db3600854611e71565b565b60085481565b610dc3611b58565b80600560026101000a81548160ff02191690831515021790555050565b610de8611b58565b8015610dfb57610df6611f12565b610e04565b610e03611f75565b5b50565b60075481565b6000600c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610e5e611fd8565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161480610ea45750610ea385610e9e611fd8565b61185d565b5b610ee3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eda9061456b565b60405180910390fd5b610ef08585858585611fe0565b5050505050565b610eff611b58565b80600d600085815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550505050565b610f74611b58565b8015610fcc5760004790503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610fc5573d6000803e3d6000fd5b5050611014565b3373ffffffffffffffffffffffffffffffffffffffff166108fc839081150290604051600060405180830381858888f19350505050158015611012573d6000803e3d6000fd5b505b5050565b611020611b58565b80600a8190555050565b60608151835114611070576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611067906145fd565b60405180910390fd5b6000835167ffffffffffffffff81111561108d5761108c6135cc565b5b6040519080825280602002602001820160405280156110bb5781602001602082028036833780820191505090505b50905060005b8451811015611138576111088582815181106110e0576110df61461d565b5b60200260200101518583815181106110fb576110fa61461d565b5b6020026020010151610a0c565b82828151811061111b5761111a61461d565b5b602002602001018181525050806111319061467b565b90506110c1565b508091505092915050565b61114b611b58565b81816004919061115c929190613341565b505050565b6000600360149054906101000a900460ff16905090565b611180611b58565b8060088190555050565b600560029054906101000a900460ff1681565b6111a5611b58565b8060098190555050565b6111b7611b58565b6111c16000612302565b565b6000600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6040518060400160405280600681526020017f436c75622037000000000000000000000000000000000000000000000000000081525081565b6000600d600084815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600560029054906101000a900460ff166112dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112d490614710565b60405180910390fd5b6112e782826123c8565b5050565b6112f3611b58565b60005b8484905081101561140d57600a548383838181106113175761131661461d565b5b9050602002013560075461132b9190614730565b111561136c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611363906147d2565b60405180910390fd5b82828281811061137f5761137e61461d565b5b90506020020135600760008282546113979190614730565b925050819055506113fa8585838181106113b4576113b361461d565b5b90506020020160208101906113c991906138b0565b60018585858181106113de576113dd61461d565b5b90506020020135604051806020016040528060008152506123de565b80806114059061467b565b9150506112f6565b5050505050565b60095481565b611422611d37565b600560019054906101000a900460ff16611471576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611468906144d9565b60405180910390fd5b6009546001600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546114c09190614730565b1115611501576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114f89061483e565b60405180910390fd5b61150e60013384846119f8565b61154d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611544906148aa565b60405180910390fd5b600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154600101919050819055506115a333611d81565b6115ae600854611e71565b5050565b6115ba611d37565b600560019054906101000a900460ff16611609576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611600906144d9565b60405180910390fd5b61161233611732565b15611652576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161164990614916565b60405180910390fd5b61165f60023384846119f8565b61169e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161169590614982565b60405180910390fd5b6001600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506116ff33611d81565b6117096000611e71565b5050565b600560009054906101000a900460ff1681565b611728611b58565b8060078190555050565b6000600e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b600a5481565b611796611b58565b80600b6000848152602001908152602001600020819055505050565b6000600b6000838152602001908152602001600020549050919050565b600480546117dc906143a4565b80601f0160208091040260200160405190810160405280929190818152602001828054611808906143a4565b80156118555780601f1061182a57610100808354040283529160200191611855565b820191906000526020600020905b81548152906001019060200180831161183857829003601f168201915b505050505081565b6000600560029054906101000a900460ff1661187c5760009050611889565b611886838361258f565b90505b92915050565b600560019054906101000a900460ff1681565b6118aa611fd8565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614806118f057506118ef856118ea611fd8565b61185d565b5b61192f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119269061456b565b60405180910390fd5b61193c8585858585612623565b5050505050565b61194b611b58565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156119bb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119b290614a14565b60405180910390fd5b6119c481612302565b50565b6119cf611b58565b80600760008282546119e19190614a34565b925050819055506119f38383836128bf565b505050565b6000611a7f838380806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050600b60008881526020019081526020016000205486604051602001611a649190614ab0565b60405160208183030381529060405280519060200120612b06565b80611ae45750600d600086815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b9050949350505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b611b60611fd8565b73ffffffffffffffffffffffffffffffffffffffff16611b7e6111c3565b73ffffffffffffffffffffffffffffffffffffffff1614611bd4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bcb90614b17565b60405180910390fd5b565b60606000821415611c1e576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611d32565b600082905060005b60008214611c50578080611c399061467b565b915050600a82611c499190614b66565b9150611c26565b60008167ffffffffffffffff811115611c6c57611c6b6135cc565b5b6040519080825280601f01601f191660200182016040528015611c9e5781602001600182028036833780820191505090505b5090505b60008514611d2b57600182611cb79190614a34565b9150600a85611cc69190614b97565b6030611cd29190614730565b60f81b818381518110611ce857611ce761461d565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85611d249190614b66565b9450611ca2565b8093505050505b919050565b611d3f611161565b15611d7f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d7690614c14565b60405180910390fd5b565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614611def576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611de690614c80565b60405180910390fd5b600a546001600754611e019190614730565b1115611e42576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e39906147d2565b60405180910390fd5b60076000815460010191905081905550611e6e81600180604051806020016040528060008152506123de565b50565b80341015611eb4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611eab90614cec565b60405180910390fd5b80341115611f0f573373ffffffffffffffffffffffffffffffffffffffff166108fc8234611ee29190614a34565b9081150290604051600060405180830381858888f19350505050158015611f0d573d6000803e3d6000fd5b505b50565b611f1a611d37565b6001600360146101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258611f5e611fd8565b604051611f6b9190613e3a565b60405180910390a1565b611f7d612b1d565b6000600360146101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa611fc1611fd8565b604051611fce9190613e3a565b60405180910390a1565b600033905090565b8151835114612024576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161201b90614d7e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612094576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161208b90614e10565b60405180910390fd5b600061209e611fd8565b90506120ae818787878787612b66565b60005b845181101561225f5760008582815181106120cf576120ce61461d565b5b6020026020010151905060008583815181106120ee576120ed61461d565b5b60200260200101519050600080600084815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561218f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161218690614ea2565b60405180910390fd5b81810360008085815260200190815260200160002060008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508160008085815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546122449190614730565b92505081905550505050806122589061467b565b90506120b1565b508473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb87876040516122d6929190614ec2565b60405180910390a46122ec818787878787612c3b565b6122fa818787878787612c43565b505050505050565b6000600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6123da6123d3611fd8565b8383612e2a565b5050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16141561244e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161244590614f6b565b60405180910390fd5b6000612458611fd8565b9050600061246585612f97565b9050600061247285612f97565b905061248383600089858589612b66565b8460008088815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546124e29190614730565b925050819055508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628989604051612560929190614f8b565b60405180910390a461257783600089858589612c3b565b61258683600089898989613011565b50505050505050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612693576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161268a90614e10565b60405180910390fd5b600061269d611fd8565b905060006126aa85612f97565b905060006126b785612f97565b90506126c7838989858589612b66565b600080600088815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508581101561275e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161275590614ea2565b60405180910390fd5b85810360008089815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508560008089815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546128139190614730565b925050819055508773ffffffffffffffffffffffffffffffffffffffff168973ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628a8a604051612890929190614f8b565b60405180910390a46128a6848a8a86868a612c3b565b6128b4848a8a8a8a8a613011565b505050505050505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561292f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161292690615026565b60405180910390fd5b6000612939611fd8565b9050600061294684612f97565b9050600061295384612f97565b905061297383876000858560405180602001604052806000815250612b66565b600080600087815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905084811015612a0a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a01906150b8565b60405180910390fd5b84810360008088815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600073ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628989604051612ad7929190614f8b565b60405180910390a4612afd84886000868660405180602001604052806000815250612c3b565b50505050505050565b600082612b1385846131f8565b1490509392505050565b612b25611161565b612b64576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b5b90615124565b60405180910390fd5b565b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614158015612bd05750600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614155b15612c2557600560029054906101000a900460ff16612c24576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c1b90614710565b60405180910390fd5b5b612c3386868686868661324e565b505050505050565b505050505050565b612c628473ffffffffffffffffffffffffffffffffffffffff16613256565b15612e22578373ffffffffffffffffffffffffffffffffffffffff1663bc197c8187878686866040518663ffffffff1660e01b8152600401612ca8959493929190615199565b602060405180830381600087803b158015612cc257600080fd5b505af1925050508015612cf357506040513d601f19601f82011682018060405250810190612cf09190615216565b60015b612d9957612cff615250565b806308c379a01415612d5c5750612d14615272565b80612d1f5750612d5e565b806040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d539190613834565b60405180910390fd5b505b6040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d909061537a565b60405180910390fd5b63bc197c8160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614612e20576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e179061540c565b60405180910390fd5b505b505050505050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612e99576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e909061549e565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051612f8a9190613596565b60405180910390a3505050565b60606000600167ffffffffffffffff811115612fb657612fb56135cc565b5b604051908082528060200260200182016040528015612fe45781602001602082028036833780820191505090505b5090508281600081518110612ffc57612ffb61461d565b5b60200260200101818152505080915050919050565b6130308473ffffffffffffffffffffffffffffffffffffffff16613256565b156131f0578373ffffffffffffffffffffffffffffffffffffffff1663f23a6e6187878686866040518663ffffffff1660e01b81526004016130769594939291906154be565b602060405180830381600087803b15801561309057600080fd5b505af19250505080156130c157506040513d601f19601f820116820180604052508101906130be9190615216565b60015b613167576130cd615250565b806308c379a0141561312a57506130e2615272565b806130ed575061312c565b806040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131219190613834565b60405180910390fd5b505b6040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161315e9061537a565b60405180910390fd5b63f23a6e6160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916146131ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131e59061540c565b60405180910390fd5b505b505050505050565b60008082905060005b84518110156132435761322e828683815181106132215761322061461d565b5b6020026020010151613279565b9150808061323b9061467b565b915050613201565b508091505092915050565b505050505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008183106132915761328c82846132a4565b61329c565b61329b83836132a4565b5b905092915050565b600082600052816020526040600020905092915050565b8280546132c7906143a4565b90600052602060002090601f0160209004810192826132e95760008555613330565b82601f1061330257805160ff1916838001178555613330565b82800160010185558215613330579182015b8281111561332f578251825591602001919060010190613314565b5b50905061333d91906133c7565b5090565b82805461334d906143a4565b90600052602060002090601f01602090048101928261336f57600085556133b6565b82601f1061338857803560ff19168380011785556133b6565b828001600101855582156133b6579182015b828111156133b557823582559160200191906001019061339a565b5b5090506133c391906133c7565b5090565b5b808211156133e05760008160009055506001016133c8565b5090565b6000604051905090565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000613423826133f8565b9050919050565b61343381613418565b811461343e57600080fd5b50565b6000813590506134508161342a565b92915050565b6000819050919050565b61346981613456565b811461347457600080fd5b50565b60008135905061348681613460565b92915050565b600080604083850312156134a3576134a26133ee565b5b60006134b185828601613441565b92505060206134c285828601613477565b9150509250929050565b6134d581613456565b82525050565b60006020820190506134f060008301846134cc565b92915050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61352b816134f6565b811461353657600080fd5b50565b60008135905061354881613522565b92915050565b600060208284031215613564576135636133ee565b5b600061357284828501613539565b91505092915050565b60008115159050919050565b6135908161357b565b82525050565b60006020820190506135ab6000830184613587565b92915050565b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b613604826135bb565b810181811067ffffffffffffffff82111715613623576136226135cc565b5b80604052505050565b60006136366133e4565b905061364282826135fb565b919050565b600067ffffffffffffffff821115613662576136616135cc565b5b61366b826135bb565b9050602081019050919050565b82818337600083830152505050565b600061369a61369584613647565b61362c565b9050828152602081018484840111156136b6576136b56135b6565b5b6136c1848285613678565b509392505050565b600082601f8301126136de576136dd6135b1565b5b81356136ee848260208601613687565b91505092915050565b60006020828403121561370d5761370c6133ee565b5b600082013567ffffffffffffffff81111561372b5761372a6133f3565b5b613737848285016136c9565b91505092915050565b6137498161357b565b811461375457600080fd5b50565b60008135905061376681613740565b92915050565b60008060408385031215613783576137826133ee565b5b600061379185828601613477565b92505060206137a285828601613757565b9150509250929050565b600081519050919050565b600082825260208201905092915050565b60005b838110156137e65780820151818401526020810190506137cb565b838111156137f5576000848401525b50505050565b6000613806826137ac565b61381081856137b7565b93506138208185602086016137c8565b613829816135bb565b840191505092915050565b6000602082019050818103600083015261384e81846137fb565b905092915050565b60006020828403121561386c5761386b6133ee565b5b600061387a84828501613477565b91505092915050565b600060208284031215613899576138986133ee565b5b60006138a784828501613757565b91505092915050565b6000602082840312156138c6576138c56133ee565b5b60006138d484828501613441565b91505092915050565b600067ffffffffffffffff8211156138f8576138f76135cc565b5b602082029050602081019050919050565b600080fd5b600061392161391c846138dd565b61362c565b9050808382526020820190506020840283018581111561394457613943613909565b5b835b8181101561396d57806139598882613477565b845260208401935050602081019050613946565b5050509392505050565b600082601f83011261398c5761398b6135b1565b5b813561399c84826020860161390e565b91505092915050565b600067ffffffffffffffff8211156139c0576139bf6135cc565b5b6139c9826135bb565b9050602081019050919050565b60006139e96139e4846139a5565b61362c565b905082815260208101848484011115613a0557613a046135b6565b5b613a10848285613678565b509392505050565b600082601f830112613a2d57613a2c6135b1565b5b8135613a3d8482602086016139d6565b91505092915050565b600080600080600060a08688031215613a6257613a616133ee565b5b6000613a7088828901613441565b9550506020613a8188828901613441565b945050604086013567ffffffffffffffff811115613aa257613aa16133f3565b5b613aae88828901613977565b935050606086013567ffffffffffffffff811115613acf57613ace6133f3565b5b613adb88828901613977565b925050608086013567ffffffffffffffff811115613afc57613afb6133f3565b5b613b0888828901613a18565b9150509295509295909350565b600080600060608486031215613b2e57613b2d6133ee565b5b6000613b3c86828701613477565b9350506020613b4d86828701613441565b9250506040613b5e86828701613757565b9150509250925092565b600067ffffffffffffffff821115613b8357613b826135cc565b5b602082029050602081019050919050565b6000613ba7613ba284613b68565b61362c565b90508083825260208201905060208402830185811115613bca57613bc9613909565b5b835b81811015613bf35780613bdf8882613441565b845260208401935050602081019050613bcc565b5050509392505050565b600082601f830112613c1257613c116135b1565b5b8135613c22848260208601613b94565b91505092915050565b60008060408385031215613c4257613c416133ee565b5b600083013567ffffffffffffffff811115613c6057613c5f6133f3565b5b613c6c85828601613bfd565b925050602083013567ffffffffffffffff811115613c8d57613c8c6133f3565b5b613c9985828601613977565b9150509250929050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b613cd881613456565b82525050565b6000613cea8383613ccf565b60208301905092915050565b6000602082019050919050565b6000613d0e82613ca3565b613d188185613cae565b9350613d2383613cbf565b8060005b83811015613d54578151613d3b8882613cde565b9750613d4683613cf6565b925050600181019050613d27565b5085935050505092915050565b60006020820190508181036000830152613d7b8184613d03565b905092915050565b600080fd5b60008083601f840112613d9e57613d9d6135b1565b5b8235905067ffffffffffffffff811115613dbb57613dba613d83565b5b602083019150836001820283011115613dd757613dd6613909565b5b9250929050565b60008060208385031215613df557613df46133ee565b5b600083013567ffffffffffffffff811115613e1357613e126133f3565b5b613e1f85828601613d88565b92509250509250929050565b613e3481613418565b82525050565b6000602082019050613e4f6000830184613e2b565b92915050565b60008060408385031215613e6c57613e6b6133ee565b5b6000613e7a85828601613477565b9250506020613e8b85828601613441565b9150509250929050565b60008060408385031215613eac57613eab6133ee565b5b6000613eba85828601613441565b9250506020613ecb85828601613757565b9150509250929050565b60008083601f840112613eeb57613eea6135b1565b5b8235905067ffffffffffffffff811115613f0857613f07613d83565b5b602083019150836020820283011115613f2457613f23613909565b5b9250929050565b60008083601f840112613f4157613f406135b1565b5b8235905067ffffffffffffffff811115613f5e57613f5d613d83565b5b602083019150836020820283011115613f7a57613f79613909565b5b9250929050565b60008060008060408587031215613f9b57613f9a6133ee565b5b600085013567ffffffffffffffff811115613fb957613fb86133f3565b5b613fc587828801613ed5565b9450945050602085013567ffffffffffffffff811115613fe857613fe76133f3565b5b613ff487828801613f2b565b925092505092959194509250565b60008083601f840112614018576140176135b1565b5b8235905067ffffffffffffffff81111561403557614034613d83565b5b60208301915083602082028301111561405157614050613909565b5b9250929050565b6000806020838503121561406f5761406e6133ee565b5b600083013567ffffffffffffffff81111561408d5761408c6133f3565b5b61409985828601614002565b92509250509250929050565b6000819050919050565b6140b8816140a5565b81146140c357600080fd5b50565b6000813590506140d5816140af565b92915050565b600080604083850312156140f2576140f16133ee565b5b600061410085828601613477565b9250506020614111858286016140c6565b9150509250929050565b614124816140a5565b82525050565b600060208201905061413f600083018461411b565b92915050565b6000806040838503121561415c5761415b6133ee565b5b600061416a85828601613441565b925050602061417b85828601613441565b9150509250929050565b600080600080600060a086880312156141a1576141a06133ee565b5b60006141af88828901613441565b95505060206141c088828901613441565b94505060406141d188828901613477565b93505060606141e288828901613477565b925050608086013567ffffffffffffffff811115614203576142026133f3565b5b61420f88828901613a18565b9150509295509295909350565b600080600060608486031215614235576142346133ee565b5b600061424386828701613441565b935050602061425486828701613477565b925050604061426586828701613477565b9150509250925092565b60008060008060608587031215614289576142886133ee565b5b600061429787828801613477565b94505060206142a887828801613441565b935050604085013567ffffffffffffffff8111156142c9576142c86133f3565b5b6142d587828801614002565b925092505092959194509250565b7f455243313135353a2061646472657373207a65726f206973206e6f742061207660008201527f616c6964206f776e657200000000000000000000000000000000000000000000602082015250565b600061433f602a836137b7565b915061434a826142e3565b604082019050919050565b6000602082019050818103600083015261436e81614332565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806143bc57607f821691505b602082108114156143d0576143cf614375565b5b50919050565b600081905092915050565b60006143ec826137ac565b6143f681856143d6565b93506144068185602086016137c8565b80840191505092915050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b60006144486005836143d6565b915061445382614412565b600582019050919050565b600061446a82856143e1565b915061447682846143e1565b91506144818261443b565b91508190509392505050565b7f4e6f74206c697665000000000000000000000000000000000000000000000000600082015250565b60006144c36008836137b7565b91506144ce8261448d565b602082019050919050565b600060208201905081810360008301526144f2816144b6565b9050919050565b7f455243313135353a2063616c6c6572206973206e6f7420746f6b656e206f776e60008201527f6572206e6f7220617070726f7665640000000000000000000000000000000000602082015250565b6000614555602f836137b7565b9150614560826144f9565b604082019050919050565b6000602082019050818103600083015261458481614548565b9050919050565b7f455243313135353a206163636f756e747320616e6420696473206c656e67746860008201527f206d69736d617463680000000000000000000000000000000000000000000000602082015250565b60006145e76029836137b7565b91506145f28261458b565b604082019050919050565b60006020820190508181036000830152614616816145da565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061468682613456565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156146b9576146b861464c565b5b600182019050919050565b7f6c6f636b65640000000000000000000000000000000000000000000000000000600082015250565b60006146fa6006836137b7565b9150614705826146c4565b602082019050919050565b60006020820190508181036000830152614729816146ed565b9050919050565b600061473b82613456565b915061474683613456565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561477b5761477a61464c565b5b828201905092915050565b7f4578636565647320537570706c79000000000000000000000000000000000000600082015250565b60006147bc600e836137b7565b91506147c782614786565b602082019050919050565b600060208201905081810360008301526147eb816147af565b9050919050565b7f457863656564732062616c616e63650000000000000000000000000000000000600082015250565b6000614828600f836137b7565b9150614833826147f2565b602082019050919050565b600060208201905081810360008301526148578161481b565b9050919050565b7f4e6f7420696e2057686974656c69737400000000000000000000000000000000600082015250565b60006148946010836137b7565b915061489f8261485e565b602082019050919050565b600060208201905081810360008301526148c381614887565b9050919050565b7f436c61696d656400000000000000000000000000000000000000000000000000600082015250565b60006149006007836137b7565b915061490b826148ca565b602082019050919050565b6000602082019050818103600083015261492f816148f3565b9050919050565b7f4e6f7420696e20436c61696d0000000000000000000000000000000000000000600082015250565b600061496c600c836137b7565b915061497782614936565b602082019050919050565b6000602082019050818103600083015261499b8161495f565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006149fe6026836137b7565b9150614a09826149a2565b604082019050919050565b60006020820190508181036000830152614a2d816149f1565b9050919050565b6000614a3f82613456565b9150614a4a83613456565b925082821015614a5d57614a5c61464c565b5b828203905092915050565b60008160601b9050919050565b6000614a8082614a68565b9050919050565b6000614a9282614a75565b9050919050565b614aaa614aa582613418565b614a87565b82525050565b6000614abc8284614a99565b60148201915081905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000614b016020836137b7565b9150614b0c82614acb565b602082019050919050565b60006020820190508181036000830152614b3081614af4565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000614b7182613456565b9150614b7c83613456565b925082614b8c57614b8b614b37565b5b828204905092915050565b6000614ba282613456565b9150614bad83613456565b925082614bbd57614bbc614b37565b5b828206905092915050565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b6000614bfe6010836137b7565b9150614c0982614bc8565b602082019050919050565b60006020820190508181036000830152614c2d81614bf1565b9050919050565b7f454f410000000000000000000000000000000000000000000000000000000000600082015250565b6000614c6a6003836137b7565b9150614c7582614c34565b602082019050919050565b60006020820190508181036000830152614c9981614c5d565b9050919050565b7f4e6f7420656e6f75676820455448000000000000000000000000000000000000600082015250565b6000614cd6600e836137b7565b9150614ce182614ca0565b602082019050919050565b60006020820190508181036000830152614d0581614cc9565b9050919050565b7f455243313135353a2069647320616e6420616d6f756e7473206c656e6774682060008201527f6d69736d61746368000000000000000000000000000000000000000000000000602082015250565b6000614d686028836137b7565b9150614d7382614d0c565b604082019050919050565b60006020820190508181036000830152614d9781614d5b565b9050919050565b7f455243313135353a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000614dfa6025836137b7565b9150614e0582614d9e565b604082019050919050565b60006020820190508181036000830152614e2981614ded565b9050919050565b7f455243313135353a20696e73756666696369656e742062616c616e636520666f60008201527f72207472616e7366657200000000000000000000000000000000000000000000602082015250565b6000614e8c602a836137b7565b9150614e9782614e30565b604082019050919050565b60006020820190508181036000830152614ebb81614e7f565b9050919050565b60006040820190508181036000830152614edc8185613d03565b90508181036020830152614ef08184613d03565b90509392505050565b7f455243313135353a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000614f556021836137b7565b9150614f6082614ef9565b604082019050919050565b60006020820190508181036000830152614f8481614f48565b9050919050565b6000604082019050614fa060008301856134cc565b614fad60208301846134cc565b9392505050565b7f455243313135353a206275726e2066726f6d20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006150106023836137b7565b915061501b82614fb4565b604082019050919050565b6000602082019050818103600083015261503f81615003565b9050919050565b7f455243313135353a206275726e20616d6f756e7420657863656564732062616c60008201527f616e636500000000000000000000000000000000000000000000000000000000602082015250565b60006150a26024836137b7565b91506150ad82615046565b604082019050919050565b600060208201905081810360008301526150d181615095565b9050919050565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b600061510e6014836137b7565b9150615119826150d8565b602082019050919050565b6000602082019050818103600083015261513d81615101565b9050919050565b600081519050919050565b600082825260208201905092915050565b600061516b82615144565b615175818561514f565b93506151858185602086016137c8565b61518e816135bb565b840191505092915050565b600060a0820190506151ae6000830188613e2b565b6151bb6020830187613e2b565b81810360408301526151cd8186613d03565b905081810360608301526151e18185613d03565b905081810360808301526151f58184615160565b90509695505050505050565b60008151905061521081613522565b92915050565b60006020828403121561522c5761522b6133ee565b5b600061523a84828501615201565b91505092915050565b60008160e01c9050919050565b600060033d111561526f5760046000803e61526c600051615243565b90505b90565b600060443d101561528257615305565b61528a6133e4565b60043d036004823e80513d602482011167ffffffffffffffff821117156152b2575050615305565b808201805167ffffffffffffffff8111156152d05750505050615305565b80602083010160043d0385018111156152ed575050505050615305565b6152fc826020018501866135fb565b82955050505050505b90565b7f455243313135353a207472616e7366657220746f206e6f6e204552433131353560008201527f526563656976657220696d706c656d656e746572000000000000000000000000602082015250565b60006153646034836137b7565b915061536f82615308565b604082019050919050565b6000602082019050818103600083015261539381615357565b9050919050565b7f455243313135353a204552433131353552656365697665722072656a6563746560008201527f6420746f6b656e73000000000000000000000000000000000000000000000000602082015250565b60006153f66028836137b7565b91506154018261539a565b604082019050919050565b60006020820190508181036000830152615425816153e9565b9050919050565b7f455243313135353a2073657474696e6720617070726f76616c2073746174757360008201527f20666f722073656c660000000000000000000000000000000000000000000000602082015250565b60006154886029836137b7565b91506154938261542c565b604082019050919050565b600060208201905081810360008301526154b78161547b565b9050919050565b600060a0820190506154d36000830188613e2b565b6154e06020830187613e2b565b6154ed60408301866134cc565b6154fa60608301856134cc565b818103608083015261550c8184615160565b9050969550505050505056fea2646970667358221220356a93b11b0eaebb01be34b7ff8b784d8ac04db839f4b80269a28d6df9afde9b64736f6c63430008090033

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.