ETH Price: $3,310.73 (-2.52%)
Gas: 8.09 Gwei
 

Overview

Max Total Supply

182 CC

Holders

44

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Filtered by Token Holder
Mirror: Matthew Chaim
Balance
5 CC
0x5090c4fead5be112b643bc75d61bf42339675448
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:
ConsensusComics

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 13 : ConsensusComics.sol
pragma solidity >=0.7.0 <0.9.0;

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

contract ConsensusComics is ERC721, Ownable {
    using Strings for uint256;
    using Counters for Counters.Counter;

    Counters.Counter private supply;

    string public uriPrefix =
        "ipfs://bafybeicz4venmkfg7iudmf2eabvklfpojan6byjtx4djkeeqk3htknnyky/";
    string public uriSuffix = ".json";

    uint256 public maxSupply = 1000;
    uint256 public maxMintAmountPerTx = 5;
    uint256 public cost = 0.005 ether;

    bytes32 public merkleRoot;

    bool public paused = false;

    constructor() ERC721("Consensus Comics", "CC") {
        mintForAddress(5, msg.sender);
    }

    //modifier

    modifier compliantMint(uint256 _mintAmount) {
        require(
            _mintAmount > 0 && _mintAmount <= maxMintAmountPerTx,
            "Invalid Mint Amount!"
        );
        require(
            supply.current() + _mintAmount <= maxSupply,
            "Max supply reached"
        );
        _;
    }

    function totalSupply() public view returns (uint256) {
        return supply.current();
    }

    // public
    function mint(uint256 _mintAmount)
        public
        payable
        compliantMint(_mintAmount)
    {
        require(!paused, "The contract is currently paused");

        if (msg.sender != owner()) {
                require(msg.value >= cost * _mintAmount, "Insufficient funds!");
        }

        _mintLoop(msg.sender, _mintAmount);
    }

    //Merkle stuff

    function whiteListMint(bytes32[] calldata merkleProof, uint256 _mintAmount) public payable compliantMint(_mintAmount) {
      bool whiteListStatus = isValidProof(merkleProof, msg.sender);
      require(whiteListStatus == true, "Invalid Proof");
      require(balanceOf(msg.sender) <= 5 - _mintAmount , "Reached maximum whitelist mint");
      _mintLoop(msg.sender, _mintAmount);

    }

    function setMerkleRoot(bytes32 newMerkleRoot) public onlyOwner {
      merkleRoot = newMerkleRoot;
    }

    function isValidProof(bytes32[] calldata merkleProof, address _address) public returns (bool){
      bool valid = MerkleProof.verify(merkleProof, merkleRoot,  keccak256(abi.encodePacked(_address)));
      return valid;
    }



    //------------------

    function mintForAddress(uint256 _mintAmount, address _receiver)
        public
        compliantMint(_mintAmount)
        onlyOwner
    {
        _mintLoop(_receiver, _mintAmount);
    }

    function tokenURI(uint256 tokenId)
        public
        view
        virtual
        override
        returns (string memory)
    {
        require(
            _exists(tokenId),
            "ERC721Metadata: URI query for nonexistent token"
        );

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

    //only owner

    function setMaxMintAmountPerTx(uint256 _maxMintAmountPerTx)
        public
        onlyOwner
    {
        maxMintAmountPerTx = _maxMintAmountPerTx;
    }

    function setUriPrefix(string memory _uriPrefix) public onlyOwner {
        uriPrefix = _uriPrefix;
    }

    function setUriSuffix(string memory _uriSuffix) public onlyOwner {
        uriSuffix = _uriSuffix;
    }

    function setPause(bool _state) public onlyOwner {
        paused = _state;
    }

    //minting

    function _mintLoop(address _receiver, uint256 _mintAmount) internal {
        for (uint256 i = 0; i < _mintAmount; i++) {
            supply.increment();
            _safeMint(_receiver, supply.current());
        }
    }

    function _baseURI() internal view virtual override returns (string memory) {
        return uriPrefix;
    }

    function withdraw() public payable onlyOwner {
        (bool os, ) = payable(owner()).call{value: address(this).balance}("");
        require(os);
    }
}

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);

        _afterTokenTransfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must have been allowed to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

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

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

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

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

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

File 10 of 13 : IERC721Receiver.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721Receiver.sol)

pragma solidity ^0.8.0;

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

File 11 of 13 : 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 12 of 13 : IERC721Metadata.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol)

pragma solidity ^0.8.0;

import "../IERC721.sol";

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

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

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

File 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"
      ]
    }
  },
  "libraries": {}
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"merkleProof","type":"bytes32[]"},{"internalType":"address","name":"_address","type":"address"}],"name":"isValidProof","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"maxMintAmountPerTx","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":"merkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"},{"internalType":"address","name":"_receiver","type":"address"}],"name":"mintForAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxMintAmountPerTx","type":"uint256"}],"name":"setMaxMintAmountPerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"newMerkleRoot","type":"bytes32"}],"name":"setMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setPause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriPrefix","type":"string"}],"name":"setUriPrefix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriSuffix","type":"string"}],"name":"setUriSuffix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uriPrefix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uriSuffix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"merkleProof","type":"bytes32[]"},{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"whiteListMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]

608060405260405180608001604052806043815260200162004dfb60439139600890805190602001906200003592919062000978565b506040518060400160405280600581526020017f2e6a736f6e000000000000000000000000000000000000000000000000000000815250600990805190602001906200008392919062000978565b506103e8600a556005600b556611c37937e08000600c556000600e60006101000a81548160ff021916908315150217905550348015620000c257600080fd5b506040518060400160405280601081526020017f436f6e73656e73757320436f6d696373000000000000000000000000000000008152506040518060400160405280600281526020017f434300000000000000000000000000000000000000000000000000000000000081525081600090805190602001906200014792919062000978565b5080600190805190602001906200016092919062000978565b50505062000183620001776200019c60201b60201c565b620001a460201b60201c565b620001966005336200026a60201b60201c565b62001036565b600033905090565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b816000811180156200027e5750600b548111155b620002c0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002b79062000c56565b60405180910390fd5b600a5481620002db60076200035260201b6200163d1760201c565b620002e7919062000d0b565b11156200032b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003229062000cbc565b60405180910390fd5b6200033b6200036060201b60201c565b6200034d8284620003f160201b60201c565b505050565b600081600001549050919050565b620003706200019c60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620003966200045760201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1614620003ef576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003e69062000c9a565b60405180910390fd5b565b60005b8181101562000452576200041460076200048160201b6200164b1760201c565b6200043c836200043060076200035260201b6200163d1760201c565b6200049760201b60201c565b8080620004499062000e3e565b915050620003f4565b505050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6001816000016000828254019250508190555050565b620004b9828260405180602001604052806000815250620004bd60201b60201c565b5050565b620004cf83836200052b60201b60201c565b620004e460008484846200072560201b60201c565b62000526576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200051d9062000c12565b60405180910390fd5b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156200059e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620005959062000c78565b60405180910390fd5b620005af81620008df60201b60201c565b15620005f2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620005e99062000c34565b60405180910390fd5b62000606600083836200094b60201b60201c565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825462000658919062000d0b565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a462000721600083836200095060201b60201c565b5050565b6000620007538473ffffffffffffffffffffffffffffffffffffffff166200095560201b620016611760201c565b15620008d2578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02620007856200019c60201b60201c565b8786866040518563ffffffff1660e01b8152600401620007a9949392919062000bbe565b602060405180830381600087803b158015620007c457600080fd5b505af1925050508015620007f857506040513d601f19601f82011682018060405250810190620007f5919062000a3f565b60015b62000881573d80600081146200082b576040519150601f19603f3d011682016040523d82523d6000602084013e62000830565b606091505b5060008151141562000879576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620008709062000c12565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050620008d7565b600190505b949350505050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b505050565b505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b828054620009869062000e08565b90600052602060002090601f016020900481019282620009aa5760008555620009f6565b82601f10620009c557805160ff1916838001178555620009f6565b82800160010185558215620009f6579182015b82811115620009f5578251825591602001919060010190620009d8565b5b50905062000a05919062000a09565b5090565b5b8082111562000a2457600081600090555060010162000a0a565b5090565b60008151905062000a39816200101c565b92915050565b60006020828403121562000a585762000a5762000eea565b5b600062000a688482850162000a28565b91505092915050565b62000a7c8162000d68565b82525050565b600062000a8f8262000cde565b62000a9b818562000ce9565b935062000aad81856020860162000dd2565b62000ab88162000eef565b840191505092915050565b600062000ad260328362000cfa565b915062000adf8262000f00565b604082019050919050565b600062000af9601c8362000cfa565b915062000b068262000f4f565b602082019050919050565b600062000b2060148362000cfa565b915062000b2d8262000f78565b602082019050919050565b600062000b4760208362000cfa565b915062000b548262000fa1565b602082019050919050565b600062000b6e60208362000cfa565b915062000b7b8262000fca565b602082019050919050565b600062000b9560128362000cfa565b915062000ba28262000ff3565b602082019050919050565b62000bb88162000dc8565b82525050565b600060808201905062000bd5600083018762000a71565b62000be4602083018662000a71565b62000bf3604083018562000bad565b818103606083015262000c07818462000a82565b905095945050505050565b6000602082019050818103600083015262000c2d8162000ac3565b9050919050565b6000602082019050818103600083015262000c4f8162000aea565b9050919050565b6000602082019050818103600083015262000c718162000b11565b9050919050565b6000602082019050818103600083015262000c938162000b38565b9050919050565b6000602082019050818103600083015262000cb58162000b5f565b9050919050565b6000602082019050818103600083015262000cd78162000b86565b9050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600062000d188262000dc8565b915062000d258362000dc8565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111562000d5d5762000d5c62000e8c565b5b828201905092915050565b600062000d758262000da8565b9050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b60005b8381101562000df257808201518184015260208101905062000dd5565b8381111562000e02576000848401525b50505050565b6000600282049050600182168062000e2157607f821691505b6020821081141562000e385762000e3762000ebb565b5b50919050565b600062000e4b8262000dc8565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141562000e815762000e8062000e8c565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600080fd5b6000601f19601f8301169050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f496e76616c6964204d696e7420416d6f756e7421000000000000000000000000600082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4d617820737570706c7920726561636865640000000000000000000000000000600082015250565b620010278162000d7c565b81146200103357600080fd5b50565b613db580620010466000396000f3fe6080604052600436106101f95760003560e01c80637cb647591161010d578063b071401b116100a0578063c87b56dd1161006f578063c87b56dd146106d0578063d5abeb011461070d578063e985e9c514610738578063efbd73f414610775578063f2fde38b1461079e576101f9565b8063b071401b14610639578063b88d4fde14610662578063bedb86fb1461068b578063c30bf318146106b4576101f9565b806394354fd0116100dc57806394354fd01461059e57806395d89b41146105c9578063a0712d68146105f4578063a22cb46514610610576101f9565b80637cb64759146104e45780637ec4a6591461050d5780638da5cb5b146105365780639065e9d314610561576101f9565b80632eb4a7ab116101905780635c975abb1161015f5780635c975abb146103fd57806362b99ad4146104285780636352211e1461045357806370a0823114610490578063715018a6146104cd576101f9565b80632eb4a7ab146103745780633ccfd60b1461039f57806342842e0e146103a95780635503a0e8146103d2576101f9565b806313faede6116101cc57806313faede6146102cc57806316ba10e0146102f757806318160ddd1461032057806323b872dd1461034b576101f9565b806301ffc9a7146101fe57806306fdde031461023b578063081812fc14610266578063095ea7b3146102a3575b600080fd5b34801561020a57600080fd5b5061022560048036038101906102209190612a79565b6107c7565b60405161023291906130a5565b60405180910390f35b34801561024757600080fd5b506102506108a9565b60405161025d91906130db565b60405180910390f35b34801561027257600080fd5b5061028d60048036038101906102889190612b1c565b61093b565b60405161029a919061303e565b60405180910390f35b3480156102af57600080fd5b506102ca60048036038101906102c5919061291f565b610981565b005b3480156102d857600080fd5b506102e1610a99565b6040516102ee919061337d565b60405180910390f35b34801561030357600080fd5b5061031e60048036038101906103199190612ad3565b610a9f565b005b34801561032c57600080fd5b50610335610ac1565b604051610342919061337d565b60405180910390f35b34801561035757600080fd5b50610372600480360381019061036d9190612809565b610ad2565b005b34801561038057600080fd5b50610389610b32565b60405161039691906130c0565b60405180910390f35b6103a7610b38565b005b3480156103b557600080fd5b506103d060048036038101906103cb9190612809565b610bc0565b005b3480156103de57600080fd5b506103e7610be0565b6040516103f491906130db565b60405180910390f35b34801561040957600080fd5b50610412610c6e565b60405161041f91906130a5565b60405180910390f35b34801561043457600080fd5b5061043d610c81565b60405161044a91906130db565b60405180910390f35b34801561045f57600080fd5b5061047a60048036038101906104759190612b1c565b610d0f565b604051610487919061303e565b60405180910390f35b34801561049c57600080fd5b506104b760048036038101906104b2919061279c565b610dc1565b6040516104c4919061337d565b60405180910390f35b3480156104d957600080fd5b506104e2610e79565b005b3480156104f057600080fd5b5061050b60048036038101906105069190612a4c565b610e8d565b005b34801561051957600080fd5b50610534600480360381019061052f9190612ad3565b610e9f565b005b34801561054257600080fd5b5061054b610ec1565b604051610558919061303e565b60405180910390f35b34801561056d57600080fd5b506105886004803603810190610583919061295f565b610eeb565b60405161059591906130a5565b60405180910390f35b3480156105aa57600080fd5b506105b3610f6f565b6040516105c0919061337d565b60405180910390f35b3480156105d557600080fd5b506105de610f75565b6040516105eb91906130db565b60405180910390f35b61060e60048036038101906106099190612b1c565b611007565b005b34801561061c57600080fd5b50610637600480360381019061063291906128df565b61119b565b005b34801561064557600080fd5b50610660600480360381019061065b9190612b1c565b6111b1565b005b34801561066e57600080fd5b506106896004803603810190610684919061285c565b6111c3565b005b34801561069757600080fd5b506106b260048036038101906106ad9190612a1f565b611225565b005b6106ce60048036038101906106c991906129bf565b61124a565b005b3480156106dc57600080fd5b506106f760048036038101906106f29190612b1c565b6113b3565b60405161070491906130db565b60405180910390f35b34801561071957600080fd5b5061072261145d565b60405161072f919061337d565b60405180910390f35b34801561074457600080fd5b5061075f600480360381019061075a91906127c9565b611463565b60405161076c91906130a5565b60405180910390f35b34801561078157600080fd5b5061079c60048036038101906107979190612b49565b6114f7565b005b3480156107aa57600080fd5b506107c560048036038101906107c0919061279c565b6115b9565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061089257507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108a257506108a182611684565b5b9050919050565b6060600080546108b890613657565b80601f01602080910402602001604051908101604052809291908181526020018280546108e490613657565b80156109315780601f1061090657610100808354040283529160200191610931565b820191906000526020600020905b81548152906001019060200180831161091457829003601f168201915b5050505050905090565b6000610946826116ee565b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061098c82610d0f565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156109fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109f4906132dd565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610a1c611739565b73ffffffffffffffffffffffffffffffffffffffff161480610a4b5750610a4a81610a45611739565b611463565b5b610a8a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a819061321d565b60405180910390fd5b610a948383611741565b505050565b600c5481565b610aa76117fa565b8060099080519060200190610abd929190612545565b5050565b6000610acd600761163d565b905090565b610ae3610add611739565b82611878565b610b22576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b199061333d565b60405180910390fd5b610b2d83838361190d565b505050565b600d5481565b610b406117fa565b6000610b4a610ec1565b73ffffffffffffffffffffffffffffffffffffffff1647604051610b6d90613029565b60006040518083038185875af1925050503d8060008114610baa576040519150601f19603f3d011682016040523d82523d6000602084013e610baf565b606091505b5050905080610bbd57600080fd5b50565b610bdb838383604051806020016040528060008152506111c3565b505050565b60098054610bed90613657565b80601f0160208091040260200160405190810160405280929190818152602001828054610c1990613657565b8015610c665780601f10610c3b57610100808354040283529160200191610c66565b820191906000526020600020905b815481529060010190602001808311610c4957829003601f168201915b505050505081565b600e60009054906101000a900460ff1681565b60088054610c8e90613657565b80601f0160208091040260200160405190810160405280929190818152602001828054610cba90613657565b8015610d075780601f10610cdc57610100808354040283529160200191610d07565b820191906000526020600020905b815481529060010190602001808311610cea57829003601f168201915b505050505081565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610db8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610daf906132bd565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610e32576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e29906131fd565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610e816117fa565b610e8b6000611b74565b565b610e956117fa565b80600d8190555050565b610ea76117fa565b8060089080519060200190610ebd929190612545565b5050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600080610f62858580806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050600d5485604051602001610f479190612fdd565b60405160208183030381529060405280519060200120611c3a565b9050809150509392505050565b600b5481565b606060018054610f8490613657565b80601f0160208091040260200160405190810160405280929190818152602001828054610fb090613657565b8015610ffd5780601f10610fd257610100808354040283529160200191610ffd565b820191906000526020600020905b815481529060010190602001808311610fe057829003601f168201915b5050505050905090565b8060008111801561101a5750600b548111155b611059576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611050906131dd565b60405180910390fd5b600a5481611067600761163d565b6110719190613482565b11156110b2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110a9906132fd565b60405180910390fd5b600e60009054906101000a900460ff1615611102576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110f9906130fd565b60405180910390fd5b61110a610ec1565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461118d5781600c5461114a9190613509565b34101561118c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111839061335d565b60405180910390fd5b5b6111973383611c51565b5050565b6111ad6111a6611739565b8383611c91565b5050565b6111b96117fa565b80600b8190555050565b6111d46111ce611739565b83611878565b611213576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161120a9061333d565b60405180910390fd5b61121f84848484611dfe565b50505050565b61122d6117fa565b80600e60006101000a81548160ff02191690831515021790555050565b8060008111801561125d5750600b548111155b61129c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611293906131dd565b60405180910390fd5b600a54816112aa600761163d565b6112b49190613482565b11156112f5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112ec906132fd565b60405180910390fd5b6000611302858533610eeb565b9050600115158115151461134b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113429061331d565b60405180910390fd5b8260056113589190613563565b61136133610dc1565b11156113a2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113999061329d565b60405180910390fd5b6113ac3384611c51565b5050505050565b60606113be82611e5a565b6113fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113f49061327d565b60405180910390fd5b6000611407611ec6565b905060008151116114275760405180602001604052806000815250611455565b8061143184611f58565b600960405160200161144593929190612ff8565b6040516020818303038152906040525b915050919050565b600a5481565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b8160008111801561150a5750600b548111155b611549576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611540906131dd565b60405180910390fd5b600a5481611557600761163d565b6115619190613482565b11156115a2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611599906132fd565b60405180910390fd5b6115aa6117fa565b6115b48284611c51565b505050565b6115c16117fa565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611631576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116289061313d565b60405180910390fd5b61163a81611b74565b50565b600081600001549050919050565b6001816000016000828254019250508190555050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6116f781611e5a565b611736576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161172d906132bd565b60405180910390fd5b50565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166117b483610d0f565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b611802611739565b73ffffffffffffffffffffffffffffffffffffffff16611820610ec1565b73ffffffffffffffffffffffffffffffffffffffff1614611876576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161186d9061325d565b60405180910390fd5b565b60008061188483610d0f565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806118c657506118c58185611463565b5b8061190457508373ffffffffffffffffffffffffffffffffffffffff166118ec8461093b565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661192d82610d0f565b73ffffffffffffffffffffffffffffffffffffffff1614611983576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161197a9061315d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156119f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119ea9061319d565b60405180910390fd5b6119fe8383836120b9565b611a09600082611741565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611a599190613563565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611ab09190613482565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611b6f8383836120be565b505050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600082611c4785846120c3565b1490509392505050565b60005b81811015611c8c57611c66600761164b565b611c7983611c74600761163d565b612119565b8080611c84906136ba565b915050611c54565b505050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611d00576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cf7906131bd565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611df191906130a5565b60405180910390a3505050565b611e0984848461190d565b611e1584848484612137565b611e54576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e4b9061311d565b60405180910390fd5b50505050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b606060088054611ed590613657565b80601f0160208091040260200160405190810160405280929190818152602001828054611f0190613657565b8015611f4e5780601f10611f2357610100808354040283529160200191611f4e565b820191906000526020600020905b815481529060010190602001808311611f3157829003601f168201915b5050505050905090565b60606000821415611fa0576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506120b4565b600082905060005b60008214611fd2578080611fbb906136ba565b915050600a82611fcb91906134d8565b9150611fa8565b60008167ffffffffffffffff811115611fee57611fed613814565b5b6040519080825280601f01601f1916602001820160405280156120205781602001600182028036833780820191505090505b5090505b600085146120ad576001826120399190613563565b9150600a856120489190613727565b60306120549190613482565b60f81b81838151811061206a576120696137e5565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856120a691906134d8565b9450612024565b8093505050505b919050565b505050565b505050565b60008082905060005b845181101561210e576120f9828683815181106120ec576120eb6137e5565b5b60200260200101516122ce565b91508080612106906136ba565b9150506120cc565b508091505092915050565b6121338282604051806020016040528060008152506122f9565b5050565b60006121588473ffffffffffffffffffffffffffffffffffffffff16611661565b156122c1578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612181611739565b8786866040518563ffffffff1660e01b81526004016121a39493929190613059565b602060405180830381600087803b1580156121bd57600080fd5b505af19250505080156121ee57506040513d601f19601f820116820180604052508101906121eb9190612aa6565b60015b612271573d806000811461221e576040519150601f19603f3d011682016040523d82523d6000602084013e612223565b606091505b50600081511415612269576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122609061311d565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506122c6565b600190505b949350505050565b60008183106122e6576122e18284612354565b6122f1565b6122f08383612354565b5b905092915050565b612303838361236b565b6123106000848484612137565b61234f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123469061311d565b60405180910390fd5b505050565b600082600052816020526040600020905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156123db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123d29061323d565b60405180910390fd5b6123e481611e5a565b15612424576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161241b9061317d565b60405180910390fd5b612430600083836120b9565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546124809190613482565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612541600083836120be565b5050565b82805461255190613657565b90600052602060002090601f01602090048101928261257357600085556125ba565b82601f1061258c57805160ff19168380011785556125ba565b828001600101855582156125ba579182015b828111156125b957825182559160200191906001019061259e565b5b5090506125c791906125cb565b5090565b5b808211156125e45760008160009055506001016125cc565b5090565b60006125fb6125f6846133bd565b613398565b90508281526020810184848401111561261757612616613852565b5b612622848285613615565b509392505050565b600061263d612638846133ee565b613398565b90508281526020810184848401111561265957612658613852565b5b612664848285613615565b509392505050565b60008135905061267b81613d0c565b92915050565b60008083601f84011261269757612696613848565b5b8235905067ffffffffffffffff8111156126b4576126b3613843565b5b6020830191508360208202830111156126d0576126cf61384d565b5b9250929050565b6000813590506126e681613d23565b92915050565b6000813590506126fb81613d3a565b92915050565b60008135905061271081613d51565b92915050565b60008151905061272581613d51565b92915050565b600082601f8301126127405761273f613848565b5b81356127508482602086016125e8565b91505092915050565b600082601f83011261276e5761276d613848565b5b813561277e84826020860161262a565b91505092915050565b60008135905061279681613d68565b92915050565b6000602082840312156127b2576127b161385c565b5b60006127c08482850161266c565b91505092915050565b600080604083850312156127e0576127df61385c565b5b60006127ee8582860161266c565b92505060206127ff8582860161266c565b9150509250929050565b6000806000606084860312156128225761282161385c565b5b60006128308682870161266c565b93505060206128418682870161266c565b925050604061285286828701612787565b9150509250925092565b600080600080608085870312156128765761287561385c565b5b60006128848782880161266c565b94505060206128958782880161266c565b93505060406128a687828801612787565b925050606085013567ffffffffffffffff8111156128c7576128c6613857565b5b6128d38782880161272b565b91505092959194509250565b600080604083850312156128f6576128f561385c565b5b60006129048582860161266c565b9250506020612915858286016126d7565b9150509250929050565b600080604083850312156129365761293561385c565b5b60006129448582860161266c565b925050602061295585828601612787565b9150509250929050565b6000806000604084860312156129785761297761385c565b5b600084013567ffffffffffffffff81111561299657612995613857565b5b6129a286828701612681565b935093505060206129b58682870161266c565b9150509250925092565b6000806000604084860312156129d8576129d761385c565b5b600084013567ffffffffffffffff8111156129f6576129f5613857565b5b612a0286828701612681565b93509350506020612a1586828701612787565b9150509250925092565b600060208284031215612a3557612a3461385c565b5b6000612a43848285016126d7565b91505092915050565b600060208284031215612a6257612a6161385c565b5b6000612a70848285016126ec565b91505092915050565b600060208284031215612a8f57612a8e61385c565b5b6000612a9d84828501612701565b91505092915050565b600060208284031215612abc57612abb61385c565b5b6000612aca84828501612716565b91505092915050565b600060208284031215612ae957612ae861385c565b5b600082013567ffffffffffffffff811115612b0757612b06613857565b5b612b1384828501612759565b91505092915050565b600060208284031215612b3257612b3161385c565b5b6000612b4084828501612787565b91505092915050565b60008060408385031215612b6057612b5f61385c565b5b6000612b6e85828601612787565b9250506020612b7f8582860161266c565b9150509250929050565b612b9281613597565b82525050565b612ba9612ba482613597565b613703565b82525050565b612bb8816135a9565b82525050565b612bc7816135b5565b82525050565b6000612bd882613434565b612be2818561344a565b9350612bf2818560208601613624565b612bfb81613861565b840191505092915050565b6000612c118261343f565b612c1b8185613466565b9350612c2b818560208601613624565b612c3481613861565b840191505092915050565b6000612c4a8261343f565b612c548185613477565b9350612c64818560208601613624565b80840191505092915050565b60008154612c7d81613657565b612c878186613477565b94506001821660008114612ca25760018114612cb357612ce6565b60ff19831686528186019350612ce6565b612cbc8561341f565b60005b83811015612cde57815481890152600182019150602081019050612cbf565b838801955050505b50505092915050565b6000612cfc602083613466565b9150612d078261387f565b602082019050919050565b6000612d1f603283613466565b9150612d2a826138a8565b604082019050919050565b6000612d42602683613466565b9150612d4d826138f7565b604082019050919050565b6000612d65602583613466565b9150612d7082613946565b604082019050919050565b6000612d88601c83613466565b9150612d9382613995565b602082019050919050565b6000612dab602483613466565b9150612db6826139be565b604082019050919050565b6000612dce601983613466565b9150612dd982613a0d565b602082019050919050565b6000612df1601483613466565b9150612dfc82613a36565b602082019050919050565b6000612e14602983613466565b9150612e1f82613a5f565b604082019050919050565b6000612e37603e83613466565b9150612e4282613aae565b604082019050919050565b6000612e5a602083613466565b9150612e6582613afd565b602082019050919050565b6000612e7d602083613466565b9150612e8882613b26565b602082019050919050565b6000612ea0602f83613466565b9150612eab82613b4f565b604082019050919050565b6000612ec3601e83613466565b9150612ece82613b9e565b602082019050919050565b6000612ee6601883613466565b9150612ef182613bc7565b602082019050919050565b6000612f09602183613466565b9150612f1482613bf0565b604082019050919050565b6000612f2c60008361345b565b9150612f3782613c3f565b600082019050919050565b6000612f4f601283613466565b9150612f5a82613c42565b602082019050919050565b6000612f72600d83613466565b9150612f7d82613c6b565b602082019050919050565b6000612f95602e83613466565b9150612fa082613c94565b604082019050919050565b6000612fb8601383613466565b9150612fc382613ce3565b602082019050919050565b612fd78161360b565b82525050565b6000612fe98284612b98565b60148201915081905092915050565b60006130048286612c3f565b91506130108285612c3f565b915061301c8284612c70565b9150819050949350505050565b600061303482612f1f565b9150819050919050565b60006020820190506130536000830184612b89565b92915050565b600060808201905061306e6000830187612b89565b61307b6020830186612b89565b6130886040830185612fce565b818103606083015261309a8184612bcd565b905095945050505050565b60006020820190506130ba6000830184612baf565b92915050565b60006020820190506130d56000830184612bbe565b92915050565b600060208201905081810360008301526130f58184612c06565b905092915050565b6000602082019050818103600083015261311681612cef565b9050919050565b6000602082019050818103600083015261313681612d12565b9050919050565b6000602082019050818103600083015261315681612d35565b9050919050565b6000602082019050818103600083015261317681612d58565b9050919050565b6000602082019050818103600083015261319681612d7b565b9050919050565b600060208201905081810360008301526131b681612d9e565b9050919050565b600060208201905081810360008301526131d681612dc1565b9050919050565b600060208201905081810360008301526131f681612de4565b9050919050565b6000602082019050818103600083015261321681612e07565b9050919050565b6000602082019050818103600083015261323681612e2a565b9050919050565b6000602082019050818103600083015261325681612e4d565b9050919050565b6000602082019050818103600083015261327681612e70565b9050919050565b6000602082019050818103600083015261329681612e93565b9050919050565b600060208201905081810360008301526132b681612eb6565b9050919050565b600060208201905081810360008301526132d681612ed9565b9050919050565b600060208201905081810360008301526132f681612efc565b9050919050565b6000602082019050818103600083015261331681612f42565b9050919050565b6000602082019050818103600083015261333681612f65565b9050919050565b6000602082019050818103600083015261335681612f88565b9050919050565b6000602082019050818103600083015261337681612fab565b9050919050565b60006020820190506133926000830184612fce565b92915050565b60006133a26133b3565b90506133ae8282613689565b919050565b6000604051905090565b600067ffffffffffffffff8211156133d8576133d7613814565b5b6133e182613861565b9050602081019050919050565b600067ffffffffffffffff82111561340957613408613814565b5b61341282613861565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b600061348d8261360b565b91506134988361360b565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156134cd576134cc613758565b5b828201905092915050565b60006134e38261360b565b91506134ee8361360b565b9250826134fe576134fd613787565b5b828204905092915050565b60006135148261360b565b915061351f8361360b565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561355857613557613758565b5b828202905092915050565b600061356e8261360b565b91506135798361360b565b92508282101561358c5761358b613758565b5b828203905092915050565b60006135a2826135eb565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613642578082015181840152602081019050613627565b83811115613651576000848401525b50505050565b6000600282049050600182168061366f57607f821691505b60208210811415613683576136826137b6565b5b50919050565b61369282613861565b810181811067ffffffffffffffff821117156136b1576136b0613814565b5b80604052505050565b60006136c58261360b565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156136f8576136f7613758565b5b600182019050919050565b600061370e82613715565b9050919050565b600061372082613872565b9050919050565b60006137328261360b565b915061373d8361360b565b92508261374d5761374c613787565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f54686520636f6e74726163742069732063757272656e746c7920706175736564600082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f496e76616c6964204d696e7420416d6f756e7421000000000000000000000000600082015250565b7f4552433732313a2061646472657373207a65726f206973206e6f74206120766160008201527f6c6964206f776e65720000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60008201527f6b656e206f776e6572206e6f7220617070726f76656420666f7220616c6c0000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f52656163686564206d6178696d756d2077686974656c697374206d696e740000600082015250565b7f4552433732313a20696e76616c696420746f6b656e2049440000000000000000600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f4d617820737570706c7920726561636865640000000000000000000000000000600082015250565b7f496e76616c69642050726f6f6600000000000000000000000000000000000000600082015250565b7f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560008201527f72206e6f7220617070726f766564000000000000000000000000000000000000602082015250565b7f496e73756666696369656e742066756e64732100000000000000000000000000600082015250565b613d1581613597565b8114613d2057600080fd5b50565b613d2c816135a9565b8114613d3757600080fd5b50565b613d43816135b5565b8114613d4e57600080fd5b50565b613d5a816135bf565b8114613d6557600080fd5b50565b613d718161360b565b8114613d7c57600080fd5b5056fea26469706673582212209df35b85006eecf833f8bfaf91075c07251bc7ad2d2fb77ee69fc6e47ac99cdc64736f6c63430008070033697066733a2f2f62616679626569637a3476656e6d6b6667376975646d6632656162766b6c66706f6a616e3662796a747834646a6b6565716b3368746b6e6e796b792f

Deployed Bytecode

0x6080604052600436106101f95760003560e01c80637cb647591161010d578063b071401b116100a0578063c87b56dd1161006f578063c87b56dd146106d0578063d5abeb011461070d578063e985e9c514610738578063efbd73f414610775578063f2fde38b1461079e576101f9565b8063b071401b14610639578063b88d4fde14610662578063bedb86fb1461068b578063c30bf318146106b4576101f9565b806394354fd0116100dc57806394354fd01461059e57806395d89b41146105c9578063a0712d68146105f4578063a22cb46514610610576101f9565b80637cb64759146104e45780637ec4a6591461050d5780638da5cb5b146105365780639065e9d314610561576101f9565b80632eb4a7ab116101905780635c975abb1161015f5780635c975abb146103fd57806362b99ad4146104285780636352211e1461045357806370a0823114610490578063715018a6146104cd576101f9565b80632eb4a7ab146103745780633ccfd60b1461039f57806342842e0e146103a95780635503a0e8146103d2576101f9565b806313faede6116101cc57806313faede6146102cc57806316ba10e0146102f757806318160ddd1461032057806323b872dd1461034b576101f9565b806301ffc9a7146101fe57806306fdde031461023b578063081812fc14610266578063095ea7b3146102a3575b600080fd5b34801561020a57600080fd5b5061022560048036038101906102209190612a79565b6107c7565b60405161023291906130a5565b60405180910390f35b34801561024757600080fd5b506102506108a9565b60405161025d91906130db565b60405180910390f35b34801561027257600080fd5b5061028d60048036038101906102889190612b1c565b61093b565b60405161029a919061303e565b60405180910390f35b3480156102af57600080fd5b506102ca60048036038101906102c5919061291f565b610981565b005b3480156102d857600080fd5b506102e1610a99565b6040516102ee919061337d565b60405180910390f35b34801561030357600080fd5b5061031e60048036038101906103199190612ad3565b610a9f565b005b34801561032c57600080fd5b50610335610ac1565b604051610342919061337d565b60405180910390f35b34801561035757600080fd5b50610372600480360381019061036d9190612809565b610ad2565b005b34801561038057600080fd5b50610389610b32565b60405161039691906130c0565b60405180910390f35b6103a7610b38565b005b3480156103b557600080fd5b506103d060048036038101906103cb9190612809565b610bc0565b005b3480156103de57600080fd5b506103e7610be0565b6040516103f491906130db565b60405180910390f35b34801561040957600080fd5b50610412610c6e565b60405161041f91906130a5565b60405180910390f35b34801561043457600080fd5b5061043d610c81565b60405161044a91906130db565b60405180910390f35b34801561045f57600080fd5b5061047a60048036038101906104759190612b1c565b610d0f565b604051610487919061303e565b60405180910390f35b34801561049c57600080fd5b506104b760048036038101906104b2919061279c565b610dc1565b6040516104c4919061337d565b60405180910390f35b3480156104d957600080fd5b506104e2610e79565b005b3480156104f057600080fd5b5061050b60048036038101906105069190612a4c565b610e8d565b005b34801561051957600080fd5b50610534600480360381019061052f9190612ad3565b610e9f565b005b34801561054257600080fd5b5061054b610ec1565b604051610558919061303e565b60405180910390f35b34801561056d57600080fd5b506105886004803603810190610583919061295f565b610eeb565b60405161059591906130a5565b60405180910390f35b3480156105aa57600080fd5b506105b3610f6f565b6040516105c0919061337d565b60405180910390f35b3480156105d557600080fd5b506105de610f75565b6040516105eb91906130db565b60405180910390f35b61060e60048036038101906106099190612b1c565b611007565b005b34801561061c57600080fd5b50610637600480360381019061063291906128df565b61119b565b005b34801561064557600080fd5b50610660600480360381019061065b9190612b1c565b6111b1565b005b34801561066e57600080fd5b506106896004803603810190610684919061285c565b6111c3565b005b34801561069757600080fd5b506106b260048036038101906106ad9190612a1f565b611225565b005b6106ce60048036038101906106c991906129bf565b61124a565b005b3480156106dc57600080fd5b506106f760048036038101906106f29190612b1c565b6113b3565b60405161070491906130db565b60405180910390f35b34801561071957600080fd5b5061072261145d565b60405161072f919061337d565b60405180910390f35b34801561074457600080fd5b5061075f600480360381019061075a91906127c9565b611463565b60405161076c91906130a5565b60405180910390f35b34801561078157600080fd5b5061079c60048036038101906107979190612b49565b6114f7565b005b3480156107aa57600080fd5b506107c560048036038101906107c0919061279c565b6115b9565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061089257507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108a257506108a182611684565b5b9050919050565b6060600080546108b890613657565b80601f01602080910402602001604051908101604052809291908181526020018280546108e490613657565b80156109315780601f1061090657610100808354040283529160200191610931565b820191906000526020600020905b81548152906001019060200180831161091457829003601f168201915b5050505050905090565b6000610946826116ee565b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061098c82610d0f565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156109fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109f4906132dd565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610a1c611739565b73ffffffffffffffffffffffffffffffffffffffff161480610a4b5750610a4a81610a45611739565b611463565b5b610a8a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a819061321d565b60405180910390fd5b610a948383611741565b505050565b600c5481565b610aa76117fa565b8060099080519060200190610abd929190612545565b5050565b6000610acd600761163d565b905090565b610ae3610add611739565b82611878565b610b22576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b199061333d565b60405180910390fd5b610b2d83838361190d565b505050565b600d5481565b610b406117fa565b6000610b4a610ec1565b73ffffffffffffffffffffffffffffffffffffffff1647604051610b6d90613029565b60006040518083038185875af1925050503d8060008114610baa576040519150601f19603f3d011682016040523d82523d6000602084013e610baf565b606091505b5050905080610bbd57600080fd5b50565b610bdb838383604051806020016040528060008152506111c3565b505050565b60098054610bed90613657565b80601f0160208091040260200160405190810160405280929190818152602001828054610c1990613657565b8015610c665780601f10610c3b57610100808354040283529160200191610c66565b820191906000526020600020905b815481529060010190602001808311610c4957829003601f168201915b505050505081565b600e60009054906101000a900460ff1681565b60088054610c8e90613657565b80601f0160208091040260200160405190810160405280929190818152602001828054610cba90613657565b8015610d075780601f10610cdc57610100808354040283529160200191610d07565b820191906000526020600020905b815481529060010190602001808311610cea57829003601f168201915b505050505081565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610db8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610daf906132bd565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610e32576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e29906131fd565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610e816117fa565b610e8b6000611b74565b565b610e956117fa565b80600d8190555050565b610ea76117fa565b8060089080519060200190610ebd929190612545565b5050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600080610f62858580806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050600d5485604051602001610f479190612fdd565b60405160208183030381529060405280519060200120611c3a565b9050809150509392505050565b600b5481565b606060018054610f8490613657565b80601f0160208091040260200160405190810160405280929190818152602001828054610fb090613657565b8015610ffd5780601f10610fd257610100808354040283529160200191610ffd565b820191906000526020600020905b815481529060010190602001808311610fe057829003601f168201915b5050505050905090565b8060008111801561101a5750600b548111155b611059576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611050906131dd565b60405180910390fd5b600a5481611067600761163d565b6110719190613482565b11156110b2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110a9906132fd565b60405180910390fd5b600e60009054906101000a900460ff1615611102576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110f9906130fd565b60405180910390fd5b61110a610ec1565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461118d5781600c5461114a9190613509565b34101561118c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111839061335d565b60405180910390fd5b5b6111973383611c51565b5050565b6111ad6111a6611739565b8383611c91565b5050565b6111b96117fa565b80600b8190555050565b6111d46111ce611739565b83611878565b611213576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161120a9061333d565b60405180910390fd5b61121f84848484611dfe565b50505050565b61122d6117fa565b80600e60006101000a81548160ff02191690831515021790555050565b8060008111801561125d5750600b548111155b61129c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611293906131dd565b60405180910390fd5b600a54816112aa600761163d565b6112b49190613482565b11156112f5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112ec906132fd565b60405180910390fd5b6000611302858533610eeb565b9050600115158115151461134b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113429061331d565b60405180910390fd5b8260056113589190613563565b61136133610dc1565b11156113a2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113999061329d565b60405180910390fd5b6113ac3384611c51565b5050505050565b60606113be82611e5a565b6113fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113f49061327d565b60405180910390fd5b6000611407611ec6565b905060008151116114275760405180602001604052806000815250611455565b8061143184611f58565b600960405160200161144593929190612ff8565b6040516020818303038152906040525b915050919050565b600a5481565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b8160008111801561150a5750600b548111155b611549576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611540906131dd565b60405180910390fd5b600a5481611557600761163d565b6115619190613482565b11156115a2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611599906132fd565b60405180910390fd5b6115aa6117fa565b6115b48284611c51565b505050565b6115c16117fa565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611631576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116289061313d565b60405180910390fd5b61163a81611b74565b50565b600081600001549050919050565b6001816000016000828254019250508190555050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6116f781611e5a565b611736576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161172d906132bd565b60405180910390fd5b50565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166117b483610d0f565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b611802611739565b73ffffffffffffffffffffffffffffffffffffffff16611820610ec1565b73ffffffffffffffffffffffffffffffffffffffff1614611876576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161186d9061325d565b60405180910390fd5b565b60008061188483610d0f565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806118c657506118c58185611463565b5b8061190457508373ffffffffffffffffffffffffffffffffffffffff166118ec8461093b565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661192d82610d0f565b73ffffffffffffffffffffffffffffffffffffffff1614611983576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161197a9061315d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156119f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119ea9061319d565b60405180910390fd5b6119fe8383836120b9565b611a09600082611741565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611a599190613563565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611ab09190613482565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611b6f8383836120be565b505050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600082611c4785846120c3565b1490509392505050565b60005b81811015611c8c57611c66600761164b565b611c7983611c74600761163d565b612119565b8080611c84906136ba565b915050611c54565b505050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611d00576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cf7906131bd565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611df191906130a5565b60405180910390a3505050565b611e0984848461190d565b611e1584848484612137565b611e54576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e4b9061311d565b60405180910390fd5b50505050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b606060088054611ed590613657565b80601f0160208091040260200160405190810160405280929190818152602001828054611f0190613657565b8015611f4e5780601f10611f2357610100808354040283529160200191611f4e565b820191906000526020600020905b815481529060010190602001808311611f3157829003601f168201915b5050505050905090565b60606000821415611fa0576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506120b4565b600082905060005b60008214611fd2578080611fbb906136ba565b915050600a82611fcb91906134d8565b9150611fa8565b60008167ffffffffffffffff811115611fee57611fed613814565b5b6040519080825280601f01601f1916602001820160405280156120205781602001600182028036833780820191505090505b5090505b600085146120ad576001826120399190613563565b9150600a856120489190613727565b60306120549190613482565b60f81b81838151811061206a576120696137e5565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856120a691906134d8565b9450612024565b8093505050505b919050565b505050565b505050565b60008082905060005b845181101561210e576120f9828683815181106120ec576120eb6137e5565b5b60200260200101516122ce565b91508080612106906136ba565b9150506120cc565b508091505092915050565b6121338282604051806020016040528060008152506122f9565b5050565b60006121588473ffffffffffffffffffffffffffffffffffffffff16611661565b156122c1578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612181611739565b8786866040518563ffffffff1660e01b81526004016121a39493929190613059565b602060405180830381600087803b1580156121bd57600080fd5b505af19250505080156121ee57506040513d601f19601f820116820180604052508101906121eb9190612aa6565b60015b612271573d806000811461221e576040519150601f19603f3d011682016040523d82523d6000602084013e612223565b606091505b50600081511415612269576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122609061311d565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506122c6565b600190505b949350505050565b60008183106122e6576122e18284612354565b6122f1565b6122f08383612354565b5b905092915050565b612303838361236b565b6123106000848484612137565b61234f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123469061311d565b60405180910390fd5b505050565b600082600052816020526040600020905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156123db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123d29061323d565b60405180910390fd5b6123e481611e5a565b15612424576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161241b9061317d565b60405180910390fd5b612430600083836120b9565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546124809190613482565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612541600083836120be565b5050565b82805461255190613657565b90600052602060002090601f01602090048101928261257357600085556125ba565b82601f1061258c57805160ff19168380011785556125ba565b828001600101855582156125ba579182015b828111156125b957825182559160200191906001019061259e565b5b5090506125c791906125cb565b5090565b5b808211156125e45760008160009055506001016125cc565b5090565b60006125fb6125f6846133bd565b613398565b90508281526020810184848401111561261757612616613852565b5b612622848285613615565b509392505050565b600061263d612638846133ee565b613398565b90508281526020810184848401111561265957612658613852565b5b612664848285613615565b509392505050565b60008135905061267b81613d0c565b92915050565b60008083601f84011261269757612696613848565b5b8235905067ffffffffffffffff8111156126b4576126b3613843565b5b6020830191508360208202830111156126d0576126cf61384d565b5b9250929050565b6000813590506126e681613d23565b92915050565b6000813590506126fb81613d3a565b92915050565b60008135905061271081613d51565b92915050565b60008151905061272581613d51565b92915050565b600082601f8301126127405761273f613848565b5b81356127508482602086016125e8565b91505092915050565b600082601f83011261276e5761276d613848565b5b813561277e84826020860161262a565b91505092915050565b60008135905061279681613d68565b92915050565b6000602082840312156127b2576127b161385c565b5b60006127c08482850161266c565b91505092915050565b600080604083850312156127e0576127df61385c565b5b60006127ee8582860161266c565b92505060206127ff8582860161266c565b9150509250929050565b6000806000606084860312156128225761282161385c565b5b60006128308682870161266c565b93505060206128418682870161266c565b925050604061285286828701612787565b9150509250925092565b600080600080608085870312156128765761287561385c565b5b60006128848782880161266c565b94505060206128958782880161266c565b93505060406128a687828801612787565b925050606085013567ffffffffffffffff8111156128c7576128c6613857565b5b6128d38782880161272b565b91505092959194509250565b600080604083850312156128f6576128f561385c565b5b60006129048582860161266c565b9250506020612915858286016126d7565b9150509250929050565b600080604083850312156129365761293561385c565b5b60006129448582860161266c565b925050602061295585828601612787565b9150509250929050565b6000806000604084860312156129785761297761385c565b5b600084013567ffffffffffffffff81111561299657612995613857565b5b6129a286828701612681565b935093505060206129b58682870161266c565b9150509250925092565b6000806000604084860312156129d8576129d761385c565b5b600084013567ffffffffffffffff8111156129f6576129f5613857565b5b612a0286828701612681565b93509350506020612a1586828701612787565b9150509250925092565b600060208284031215612a3557612a3461385c565b5b6000612a43848285016126d7565b91505092915050565b600060208284031215612a6257612a6161385c565b5b6000612a70848285016126ec565b91505092915050565b600060208284031215612a8f57612a8e61385c565b5b6000612a9d84828501612701565b91505092915050565b600060208284031215612abc57612abb61385c565b5b6000612aca84828501612716565b91505092915050565b600060208284031215612ae957612ae861385c565b5b600082013567ffffffffffffffff811115612b0757612b06613857565b5b612b1384828501612759565b91505092915050565b600060208284031215612b3257612b3161385c565b5b6000612b4084828501612787565b91505092915050565b60008060408385031215612b6057612b5f61385c565b5b6000612b6e85828601612787565b9250506020612b7f8582860161266c565b9150509250929050565b612b9281613597565b82525050565b612ba9612ba482613597565b613703565b82525050565b612bb8816135a9565b82525050565b612bc7816135b5565b82525050565b6000612bd882613434565b612be2818561344a565b9350612bf2818560208601613624565b612bfb81613861565b840191505092915050565b6000612c118261343f565b612c1b8185613466565b9350612c2b818560208601613624565b612c3481613861565b840191505092915050565b6000612c4a8261343f565b612c548185613477565b9350612c64818560208601613624565b80840191505092915050565b60008154612c7d81613657565b612c878186613477565b94506001821660008114612ca25760018114612cb357612ce6565b60ff19831686528186019350612ce6565b612cbc8561341f565b60005b83811015612cde57815481890152600182019150602081019050612cbf565b838801955050505b50505092915050565b6000612cfc602083613466565b9150612d078261387f565b602082019050919050565b6000612d1f603283613466565b9150612d2a826138a8565b604082019050919050565b6000612d42602683613466565b9150612d4d826138f7565b604082019050919050565b6000612d65602583613466565b9150612d7082613946565b604082019050919050565b6000612d88601c83613466565b9150612d9382613995565b602082019050919050565b6000612dab602483613466565b9150612db6826139be565b604082019050919050565b6000612dce601983613466565b9150612dd982613a0d565b602082019050919050565b6000612df1601483613466565b9150612dfc82613a36565b602082019050919050565b6000612e14602983613466565b9150612e1f82613a5f565b604082019050919050565b6000612e37603e83613466565b9150612e4282613aae565b604082019050919050565b6000612e5a602083613466565b9150612e6582613afd565b602082019050919050565b6000612e7d602083613466565b9150612e8882613b26565b602082019050919050565b6000612ea0602f83613466565b9150612eab82613b4f565b604082019050919050565b6000612ec3601e83613466565b9150612ece82613b9e565b602082019050919050565b6000612ee6601883613466565b9150612ef182613bc7565b602082019050919050565b6000612f09602183613466565b9150612f1482613bf0565b604082019050919050565b6000612f2c60008361345b565b9150612f3782613c3f565b600082019050919050565b6000612f4f601283613466565b9150612f5a82613c42565b602082019050919050565b6000612f72600d83613466565b9150612f7d82613c6b565b602082019050919050565b6000612f95602e83613466565b9150612fa082613c94565b604082019050919050565b6000612fb8601383613466565b9150612fc382613ce3565b602082019050919050565b612fd78161360b565b82525050565b6000612fe98284612b98565b60148201915081905092915050565b60006130048286612c3f565b91506130108285612c3f565b915061301c8284612c70565b9150819050949350505050565b600061303482612f1f565b9150819050919050565b60006020820190506130536000830184612b89565b92915050565b600060808201905061306e6000830187612b89565b61307b6020830186612b89565b6130886040830185612fce565b818103606083015261309a8184612bcd565b905095945050505050565b60006020820190506130ba6000830184612baf565b92915050565b60006020820190506130d56000830184612bbe565b92915050565b600060208201905081810360008301526130f58184612c06565b905092915050565b6000602082019050818103600083015261311681612cef565b9050919050565b6000602082019050818103600083015261313681612d12565b9050919050565b6000602082019050818103600083015261315681612d35565b9050919050565b6000602082019050818103600083015261317681612d58565b9050919050565b6000602082019050818103600083015261319681612d7b565b9050919050565b600060208201905081810360008301526131b681612d9e565b9050919050565b600060208201905081810360008301526131d681612dc1565b9050919050565b600060208201905081810360008301526131f681612de4565b9050919050565b6000602082019050818103600083015261321681612e07565b9050919050565b6000602082019050818103600083015261323681612e2a565b9050919050565b6000602082019050818103600083015261325681612e4d565b9050919050565b6000602082019050818103600083015261327681612e70565b9050919050565b6000602082019050818103600083015261329681612e93565b9050919050565b600060208201905081810360008301526132b681612eb6565b9050919050565b600060208201905081810360008301526132d681612ed9565b9050919050565b600060208201905081810360008301526132f681612efc565b9050919050565b6000602082019050818103600083015261331681612f42565b9050919050565b6000602082019050818103600083015261333681612f65565b9050919050565b6000602082019050818103600083015261335681612f88565b9050919050565b6000602082019050818103600083015261337681612fab565b9050919050565b60006020820190506133926000830184612fce565b92915050565b60006133a26133b3565b90506133ae8282613689565b919050565b6000604051905090565b600067ffffffffffffffff8211156133d8576133d7613814565b5b6133e182613861565b9050602081019050919050565b600067ffffffffffffffff82111561340957613408613814565b5b61341282613861565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b600061348d8261360b565b91506134988361360b565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156134cd576134cc613758565b5b828201905092915050565b60006134e38261360b565b91506134ee8361360b565b9250826134fe576134fd613787565b5b828204905092915050565b60006135148261360b565b915061351f8361360b565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561355857613557613758565b5b828202905092915050565b600061356e8261360b565b91506135798361360b565b92508282101561358c5761358b613758565b5b828203905092915050565b60006135a2826135eb565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613642578082015181840152602081019050613627565b83811115613651576000848401525b50505050565b6000600282049050600182168061366f57607f821691505b60208210811415613683576136826137b6565b5b50919050565b61369282613861565b810181811067ffffffffffffffff821117156136b1576136b0613814565b5b80604052505050565b60006136c58261360b565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156136f8576136f7613758565b5b600182019050919050565b600061370e82613715565b9050919050565b600061372082613872565b9050919050565b60006137328261360b565b915061373d8361360b565b92508261374d5761374c613787565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f54686520636f6e74726163742069732063757272656e746c7920706175736564600082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f496e76616c6964204d696e7420416d6f756e7421000000000000000000000000600082015250565b7f4552433732313a2061646472657373207a65726f206973206e6f74206120766160008201527f6c6964206f776e65720000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60008201527f6b656e206f776e6572206e6f7220617070726f76656420666f7220616c6c0000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f52656163686564206d6178696d756d2077686974656c697374206d696e740000600082015250565b7f4552433732313a20696e76616c696420746f6b656e2049440000000000000000600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f4d617820737570706c7920726561636865640000000000000000000000000000600082015250565b7f496e76616c69642050726f6f6600000000000000000000000000000000000000600082015250565b7f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560008201527f72206e6f7220617070726f766564000000000000000000000000000000000000602082015250565b7f496e73756666696369656e742066756e64732100000000000000000000000000600082015250565b613d1581613597565b8114613d2057600080fd5b50565b613d2c816135a9565b8114613d3757600080fd5b50565b613d43816135b5565b8114613d4e57600080fd5b50565b613d5a816135bf565b8114613d6557600080fd5b50565b613d718161360b565b8114613d7c57600080fd5b5056fea26469706673582212209df35b85006eecf833f8bfaf91075c07251bc7ad2d2fb77ee69fc6e47ac99cdc64736f6c63430008070033

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.