ETH Price: $2,238.58 (-6.42%)

KobeInSequence (KLKIS)
 

Overview

TokenID

6

Total Transfers

-

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-
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:
KobeInSequence

Compiler Version
v0.8.6+commit.11564f7e

Optimization Enabled:
No with 200 runs

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

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

/**
 * @title KobeInSequence
 */
contract KobeInSequence is ERC721, Ownable {
    using Counters for Counters.Counter;
    bool public whitelist_active = true;
    bool public sale_active = false;
    bool public is_collection_revealed = false;
    bool public is_collection_locked = false;
    string public contract_ipfs_json;
    Counters.Counter private _tokenIdCounter;
    uint256 public minting_price_public = 1.5 ether;
    uint256 public minting_price_wl = 1.5 ether;
    uint256 public HARD_CAP = 200;
    uint256 public MAX_AMOUNT = 1;
    uint256 public MAX_WHITELIST = 1;
    bytes32 public MERKLE_ROOT;
    string public contract_base_uri = "ipfs://";
    address public vault_address;
    mapping(address => uint256) public minted_whitelist;

    constructor(
        string memory _name,
        string memory _ticker,
        string memory _contract_ipfs
    ) ERC721(_name, _ticker) {
        contract_ipfs_json = _contract_ipfs;
        vault_address = msg.sender;
    }

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

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

    function tokenURI(uint256 _tokenId)
        public
        view
        override(ERC721)
        returns (string memory)
    {
        string memory _tknId = Strings.toString(_tokenId);
        return string(abi.encodePacked(contract_base_uri, _tknId, ".json"));
    }

    function tokensOfOwner(address _owner)
        external
        view
        returns (uint256[] memory ownerTokens)
    {
        uint256 tokenCount = balanceOf(_owner);
        if (tokenCount == 0) {
            // Return an empty array
            return new uint256[](0);
        } else {
            uint256[] memory result = new uint256[](tokenCount);
            uint256 totalTkns = totalSupply();
            uint256 resultIndex = 0;
            uint256 tnkId;

            for (tnkId = 1; tnkId <= totalTkns; tnkId++) {
                if (ownerOf(tnkId) == _owner) {
                    result[resultIndex] = tnkId;
                    resultIndex++;
                }
            }

            return result;
        }
    }

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

    function fixContractURI(string memory _newURI) public onlyOwner {
        require(!is_collection_locked, "Collection locked");
        contract_ipfs_json = _newURI;
    }

    function fixBaseURI(string memory _newURI) public onlyOwner {
        require(!is_collection_locked, "Collection locked");
        contract_base_uri = _newURI;
    }

    /*
        This method will allow owner reveal the collection
     */

    function revealCollection() public onlyOwner {
        is_collection_revealed = true;
    }

    /*
        This method will allow owner lock the collection
     */

    function lockCollection() public onlyOwner {
        is_collection_locked = true;
    }

    /*
        This method will allow owner to start and stop the sale
    */
    function fixSaleState(bool newState) external onlyOwner {
        require(!is_collection_locked, "Collection locked");
        sale_active = newState;
    }

    /*
        This method will allow owner to fix max amount of nfts per minting
    */
    function fixMaxAmount(uint256 newMax, uint8 kind) external onlyOwner {
        require(!is_collection_locked, "Collection locked");
        if (kind == 0) {
            MAX_AMOUNT = newMax;
        } else {
            MAX_WHITELIST = newMax;
        }
    }

    /*
        This method will allow owner to fix the minting price
    */
    function fixPrice(uint256 price, uint8 kind) external onlyOwner {
        require(!is_collection_locked, "Collection locked");
        if (kind == 0) {
            minting_price_public = price;
        } else {
            minting_price_wl = price;
        }
    }

    /*
        This method will allow owner to fix the whitelist role
    */
    function fixWhitelist(bool state) external onlyOwner {
        require(!is_collection_locked, "Collection locked");
        whitelist_active = state;
    }

    /*
        This method will allow owner to change the gnosis safe wallet
    */
    function fixVault(address newAddress) public onlyOwner {
        require(newAddress != address(0), "Can't use black hole");
        vault_address = newAddress;
    }

    /*
        This method will allow owner to set the merkle root
    */
    function fixMerkleRoot(bytes32 root) external onlyOwner {
        require(!is_collection_locked, "Collection locked");
        MERKLE_ROOT = root;
    }

    /*
        This method will mint the token to provided user, can be called just by the proxy address.
    */
    function dropNFT(address _to, uint256 _amount) public onlyOwner {
        uint256 reached = _tokenIdCounter.current() + _amount;
        require(reached <= HARD_CAP, "Hard cap reached");
        for (uint256 j = 0; j < _amount; j++) {
            _tokenIdCounter.increment();
            uint256 nextId = _tokenIdCounter.current();
            _mint(_to, nextId);
        }
    }

    /*
        This method will allow owner to withdraw all ethers
    */
    function withdrawEther() external onlyOwner {
        uint256 balance = address(this).balance;
        require(vault_address != address(0) && balance > 0, "Can't withdraw");
        bool success;
        (success, ) = vault_address.call{value: balance}("");
        require(success, "Withdraw to vault failed");
    }

    /*
        This method will allow users to buy the nft
    */
    function buyNFT(bytes32[] calldata _merkleProof, address _to)
        public
        payable
    {
        require(sale_active, "Can't buy because sale is not active");
        bool canMint = true;
        uint256 minting_price = minting_price_public;
        if (whitelist_active) {
            bytes32 leaf = keccak256(abi.encodePacked(_to));
            canMint = MerkleProof.verify(_merkleProof, MERKLE_ROOT, leaf);
            minting_price = minting_price_wl;
            require(canMint, "Sorry you can't mint because not in whitelist");
        }
        require(
            msg.value % minting_price == 0,
            "Sorry you can't mint because price is wrong"
        );
        uint256 amount = msg.value / minting_price;
        require(
            amount >= 1 && amount <= MAX_AMOUNT,
            "Amount should be at least 1 and must be less or equal to max amount"
        );
        uint256 reached_hardcap = amount + totalSupply();
        require(reached_hardcap <= HARD_CAP, "Hard cap reached");
        if (whitelist_active) {
            uint256 reached_wlcap = amount + minted_whitelist[_to];
            require(
                reached_wlcap <= MAX_WHITELIST,
                "Can't mint more NFTs in whitelist"
            );
            minted_whitelist[_to] += amount;
        }
        for (uint256 j = 0; j < amount; j++) {
            _tokenIdCounter.increment();
            uint256 nextId = _tokenIdCounter.current();
            _mint(_to, nextId);
        }
    }

    function crossmint(address _to, address _origin)
        public
        payable
    {
        require(sale_active, "Can't buy because sale is not active");
        require(msg.sender == 0xdAb1a1854214684acE522439684a145E62505233, "Only crossmint can buy from there");
        uint256 reached_hardcap = totalSupply() + 1;
        require(reached_hardcap <= HARD_CAP, "Hard cap reached");
        if (whitelist_active) {
            require(
                minted_whitelist[_origin] == 0 && minted_whitelist[_to] == 0,
                "Can't mint more NFTs in whitelist"
            );
            minted_whitelist[_origin] = 1;
            minted_whitelist[_to] = 1;
        }
        _tokenIdCounter.increment();
        uint256 nextId = _tokenIdCounter.current();
        _mint(_to, nextId);
    }
}

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

pragma solidity ^0.8.0;

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);

        _afterTokenTransfer(from, to, tokenId);
    }

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

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

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

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

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

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

pragma solidity ^0.8.0;

/**
 * @dev These functions deal with verification of Merkle Trees proofs.
 *
 * The proofs can be generated using the JavaScript library
 * https://github.com/miguelmota/merkletreejs[merkletreejs].
 * Note: the hashing algorithm should be keccak256 and pair sorting should be enabled.
 *
 * See `test/utils/cryptography/MerkleProof.test.js` for some examples.
 */
library MerkleProof {
    /**
     * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree
     * defined by `root`. For this, a `proof` must be provided, containing
     * sibling hashes on the branch from the leaf to the root of the tree. Each
     * pair of leaves and each pair of pre-images are assumed to be sorted.
     */
    function verify(
        bytes32[] memory proof,
        bytes32 root,
        bytes32 leaf
    ) internal pure returns (bool) {
        return processProof(proof, leaf) == root;
    }

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

File 7 of 13 : IERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

pragma solidity ^0.8.0;

import "../IERC721.sol";

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

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

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

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

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

pragma solidity ^0.8.0;

import "./IERC165.sol";

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

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

pragma solidity ^0.8.0;

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

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_ticker","type":"string"},{"internalType":"string","name":"_contract_ipfs","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"HARD_CAP","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_AMOUNT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_WHITELIST","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MERKLE_ROOT","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"_merkleProof","type":"bytes32[]"},{"internalType":"address","name":"_to","type":"address"}],"name":"buyNFT","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"contract_base_uri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"contract_ipfs_json","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"address","name":"_origin","type":"address"}],"name":"crossmint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"dropNFT","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newURI","type":"string"}],"name":"fixBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newURI","type":"string"}],"name":"fixContractURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newMax","type":"uint256"},{"internalType":"uint8","name":"kind","type":"uint8"}],"name":"fixMaxAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"root","type":"bytes32"}],"name":"fixMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"price","type":"uint256"},{"internalType":"uint8","name":"kind","type":"uint8"}],"name":"fixPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"newState","type":"bool"}],"name":"fixSaleState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newAddress","type":"address"}],"name":"fixVault","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"state","type":"bool"}],"name":"fixWhitelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"is_collection_locked","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"is_collection_revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lockCollection","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"minted_whitelist","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"minting_price_public","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"minting_price_wl","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealCollection","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sale_active","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"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":[{"internalType":"address","name":"_owner","type":"address"}],"name":"tokensOfOwner","outputs":[{"internalType":"uint256[]","name":"ownerTokens","type":"uint256[]"}],"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":"vault_address","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"whitelist_active","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdrawEther","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526001600660146101000a81548160ff0219169083151502179055506000600660156101000a81548160ff0219169083151502179055506000600660166101000a81548160ff0219169083151502179055506000600660176101000a81548160ff0219169083151502179055506714d1120d7b1600006009556714d1120d7b160000600a5560c8600b556001600c556001600d556040518060400160405280600781526020017f697066733a2f2f00000000000000000000000000000000000000000000000000815250600f9080519060200190620000e49291906200029f565b50348015620000f257600080fd5b5060405162005918380380620059188339818101604052810190620001189190620003cd565b82828160009080519060200190620001329291906200029f565b5080600190805190602001906200014b9291906200029f565b5050506200016e62000162620001d160201b60201c565b620001d960201b60201c565b8060079080519060200190620001869291906200029f565b5033601060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505050506200060a565b600033905090565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620002ad906200051b565b90600052602060002090601f016020900481019282620002d157600085556200031d565b82601f10620002ec57805160ff19168380011785556200031d565b828001600101855582156200031d579182015b828111156200031c578251825591602001919060010190620002ff565b5b5090506200032c919062000330565b5090565b5b808211156200034b57600081600090555060010162000331565b5090565b6000620003666200036084620004af565b62000486565b905082815260208101848484011115620003855762000384620005ea565b5b62000392848285620004e5565b509392505050565b600082601f830112620003b257620003b1620005e5565b5b8151620003c48482602086016200034f565b91505092915050565b600080600060608486031215620003e957620003e8620005f4565b5b600084015167ffffffffffffffff8111156200040a5762000409620005ef565b5b62000418868287016200039a565b935050602084015167ffffffffffffffff8111156200043c576200043b620005ef565b5b6200044a868287016200039a565b925050604084015167ffffffffffffffff8111156200046e576200046d620005ef565b5b6200047c868287016200039a565b9150509250925092565b600062000492620004a5565b9050620004a0828262000551565b919050565b6000604051905090565b600067ffffffffffffffff821115620004cd57620004cc620005b6565b5b620004d882620005f9565b9050602081019050919050565b60005b8381101562000505578082015181840152602081019050620004e8565b8381111562000515576000848401525b50505050565b600060028204905060018216806200053457607f821691505b602082108114156200054b576200054a62000587565b5b50919050565b6200055c82620005f9565b810181811067ffffffffffffffff821117156200057e576200057d620005b6565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b6152fe806200061a6000396000f3fe6080604052600436106102885760003560e01c80636352211e1161015a57806395f61c48116100c1578063d40dc8701161007a578063d40dc87014610964578063e0df72161461098f578063e8987498146109ba578063e8a3d485146109e5578063e985e9c514610a10578063f2fde38b14610a4d57610288565b806395f61c4814610865578063a147718f14610890578063a22cb465146108ac578063a24721d3146108d5578063b88d4fde146108fe578063c87b56dd1461092757610288565b806383bc52451161011357806383bc5245146107415780638462151c1461076a5780638b22f341146107a75780638da5cb5b146107d257806393ec3e88146107fd57806395d89b411461083a57610288565b80636352211e1461064357806370a0823114610680578063715018a6146106bd578063733f2399146106d45780637362377b146106ff5780637f9307f71461071657610288565b80632a1436c2116101fe57806351e75e8b116101b757806351e75e8b146105565780635489af0f146105815780635e01967c146105aa5780635ec9115c146105d35780636001ba0a146105fc57806361ad20571461061857610288565b80632a1436c21461046e5780633a03171c146104975780633b6e2873146104c257806340d0b4a9146104ed57806342842e0e1461050457806347d0c9301461052d57610288565b80630ee83a71116102505780630ee83a71146103865780631036b3c51461039d57806314f7b61e146103c857806318160ddd146103f1578063211eb07d1461041c57806323b872dd1461044557610288565b806301ffc9a71461028d5780630346f18f146102ca57806306fdde03146102f5578063081812fc14610320578063095ea7b31461035d575b600080fd5b34801561029957600080fd5b506102b460048036038101906102af9190613af0565b610a76565b6040516102c191906142b6565b60405180910390f35b3480156102d657600080fd5b506102df610b58565b6040516102ec91906142ec565b60405180910390f35b34801561030157600080fd5b5061030a610be6565b60405161031791906142ec565b60405180910390f35b34801561032c57600080fd5b5061034760048036038101906103429190613b93565b610c78565b604051610354919061422d565b60405180910390f35b34801561036957600080fd5b50610384600480360381019061037f91906139f6565b610cfd565b005b34801561039257600080fd5b5061039b610e15565b005b3480156103a957600080fd5b506103b2610eae565b6040516103bf91906142b6565b60405180910390f35b3480156103d457600080fd5b506103ef60048036038101906103ea9190613bc0565b610ec1565b005b3480156103fd57600080fd5b50610406610fb1565b604051610413919061464e565b60405180910390f35b34801561042857600080fd5b50610443600480360381019061043e9190613b4a565b610fc2565b005b34801561045157600080fd5b5061046c600480360381019061046791906138e0565b6110a8565b005b34801561047a57600080fd5b5061049560048036038101906104909190613a96565b611108565b005b3480156104a357600080fd5b506104ac6111f1565b6040516104b9919061464e565b60405180910390f35b3480156104ce57600080fd5b506104d76111f7565b6040516104e4919061464e565b60405180910390f35b3480156104f957600080fd5b506105026111fd565b005b34801561051057600080fd5b5061052b600480360381019061052691906138e0565b611296565b005b34801561053957600080fd5b50610554600480360381019061054f9190613ac3565b6112b6565b005b34801561056257600080fd5b5061056b61138c565b60405161057891906142d1565b60405180910390f35b34801561058d57600080fd5b506105a860048036038101906105a39190613b4a565b611392565b005b3480156105b657600080fd5b506105d160048036038101906105cc9190613873565b611478565b005b3480156105df57600080fd5b506105fa60048036038101906105f59190613bc0565b6115a8565b005b610616600480360381019061061191906138a0565b611698565b005b34801561062457600080fd5b5061062d61195b565b60405161063a91906142ec565b60405180910390f35b34801561064f57600080fd5b5061066a60048036038101906106659190613b93565b6119e9565b604051610677919061422d565b60405180910390f35b34801561068c57600080fd5b506106a760048036038101906106a29190613873565b611a9b565b6040516106b4919061464e565b60405180910390f35b3480156106c957600080fd5b506106d2611b53565b005b3480156106e057600080fd5b506106e9611bdb565b6040516106f6919061422d565b60405180910390f35b34801561070b57600080fd5b50610714611c01565b005b34801561072257600080fd5b5061072b611df4565b604051610738919061464e565b60405180910390f35b34801561074d57600080fd5b5061076860048036038101906107639190613a96565b611dfa565b005b34801561077657600080fd5b50610791600480360381019061078c9190613873565b611ee3565b60405161079e9190614294565b60405180910390f35b3480156107b357600080fd5b506107bc612041565b6040516107c991906142b6565b60405180910390f35b3480156107de57600080fd5b506107e7612054565b6040516107f4919061422d565b60405180910390f35b34801561080957600080fd5b50610824600480360381019061081f9190613873565b61207e565b604051610831919061464e565b60405180910390f35b34801561084657600080fd5b5061084f612096565b60405161085c91906142ec565b60405180910390f35b34801561087157600080fd5b5061087a612128565b604051610887919061464e565b60405180910390f35b6108aa60048036038101906108a59190613a36565b61212e565b005b3480156108b857600080fd5b506108d360048036038101906108ce91906139b6565b6124b9565b005b3480156108e157600080fd5b506108fc60048036038101906108f791906139f6565b6124cf565b005b34801561090a57600080fd5b5061092560048036038101906109209190613933565b6125f0565b005b34801561093357600080fd5b5061094e60048036038101906109499190613b93565b612652565b60405161095b91906142ec565b60405180910390f35b34801561097057600080fd5b5061097961268c565b604051610986919061464e565b60405180910390f35b34801561099b57600080fd5b506109a4612692565b6040516109b191906142b6565b60405180910390f35b3480156109c657600080fd5b506109cf6126a5565b6040516109dc91906142b6565b60405180910390f35b3480156109f157600080fd5b506109fa6126b8565b604051610a0791906142ec565b60405180910390f35b348015610a1c57600080fd5b50610a376004803603810190610a3291906138a0565b61274a565b604051610a4491906142b6565b60405180910390f35b348015610a5957600080fd5b50610a746004803603810190610a6f9190613873565b6127de565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610b4157507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610b515750610b50826128d6565b5b9050919050565b60078054610b6590614914565b80601f0160208091040260200160405190810160405280929190818152602001828054610b9190614914565b8015610bde5780601f10610bb357610100808354040283529160200191610bde565b820191906000526020600020905b815481529060010190602001808311610bc157829003601f168201915b505050505081565b606060008054610bf590614914565b80601f0160208091040260200160405190810160405280929190818152602001828054610c2190614914565b8015610c6e5780601f10610c4357610100808354040283529160200191610c6e565b820191906000526020600020905b815481529060010190602001808311610c5157829003601f168201915b5050505050905090565b6000610c8382612940565b610cc2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cb99061454e565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610d08826119e9565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610d79576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d709061458e565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610d986129ac565b73ffffffffffffffffffffffffffffffffffffffff161480610dc75750610dc681610dc16129ac565b61274a565b5b610e06576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dfd9061444e565b60405180910390fd5b610e1083836129b4565b505050565b610e1d6129ac565b73ffffffffffffffffffffffffffffffffffffffff16610e3b612054565b73ffffffffffffffffffffffffffffffffffffffff1614610e91576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e889061456e565b60405180910390fd5b6001600660176101000a81548160ff021916908315150217905550565b600660149054906101000a900460ff1681565b610ec96129ac565b73ffffffffffffffffffffffffffffffffffffffff16610ee7612054565b73ffffffffffffffffffffffffffffffffffffffff1614610f3d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f349061456e565b60405180910390fd5b600660179054906101000a900460ff1615610f8d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f849061430e565b60405180910390fd5b60008160ff161415610fa55781600c81905550610fad565b81600d819055505b5050565b6000610fbd6008612a6d565b905090565b610fca6129ac565b73ffffffffffffffffffffffffffffffffffffffff16610fe8612054565b73ffffffffffffffffffffffffffffffffffffffff161461103e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110359061456e565b60405180910390fd5b600660179054906101000a900460ff161561108e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110859061430e565b60405180910390fd5b80600f90805190602001906110a4929190613607565b5050565b6110b96110b36129ac565b82612a7b565b6110f8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110ef906145ee565b60405180910390fd5b611103838383612b59565b505050565b6111106129ac565b73ffffffffffffffffffffffffffffffffffffffff1661112e612054565b73ffffffffffffffffffffffffffffffffffffffff1614611184576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161117b9061456e565b60405180910390fd5b600660179054906101000a900460ff16156111d4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111cb9061430e565b60405180910390fd5b80600660146101000a81548160ff02191690831515021790555050565b600b5481565b600a5481565b6112056129ac565b73ffffffffffffffffffffffffffffffffffffffff16611223612054565b73ffffffffffffffffffffffffffffffffffffffff1614611279576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112709061456e565b60405180910390fd5b6001600660166101000a81548160ff021916908315150217905550565b6112b1838383604051806020016040528060008152506125f0565b505050565b6112be6129ac565b73ffffffffffffffffffffffffffffffffffffffff166112dc612054565b73ffffffffffffffffffffffffffffffffffffffff1614611332576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113299061456e565b60405180910390fd5b600660179054906101000a900460ff1615611382576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113799061430e565b60405180910390fd5b80600e8190555050565b600e5481565b61139a6129ac565b73ffffffffffffffffffffffffffffffffffffffff166113b8612054565b73ffffffffffffffffffffffffffffffffffffffff161461140e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114059061456e565b60405180910390fd5b600660179054906101000a900460ff161561145e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114559061430e565b60405180910390fd5b8060079080519060200190611474929190613607565b5050565b6114806129ac565b73ffffffffffffffffffffffffffffffffffffffff1661149e612054565b73ffffffffffffffffffffffffffffffffffffffff16146114f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114eb9061456e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611564576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161155b9061452e565b60405180910390fd5b80601060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6115b06129ac565b73ffffffffffffffffffffffffffffffffffffffff166115ce612054565b73ffffffffffffffffffffffffffffffffffffffff1614611624576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161161b9061456e565b60405180910390fd5b600660179054906101000a900460ff1615611674576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161166b9061430e565b60405180910390fd5b60008160ff16141561168c5781600981905550611694565b81600a819055505b5050565b600660159054906101000a900460ff166116e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116de906143ce565b60405180910390fd5b73dab1a1854214684ace522439684a145e6250523373ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611769576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611760906144ee565b60405180910390fd5b60006001611775610fb1565b61177f919061478c565b9050600b548111156117c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117bd906145ae565b60405180910390fd5b600660149054906101000a900460ff1615611933576000601160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205414801561186957506000601160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054145b6118a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161189f9061460e565b60405180910390fd5b6001601160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506001601160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b61193d6008612dc0565b60006119496008612a6d565b90506119558482612dd6565b50505050565b600f805461196890614914565b80601f016020809104026020016040519081016040528092919081815260200182805461199490614914565b80156119e15780601f106119b6576101008083540402835291602001916119e1565b820191906000526020600020905b8154815290600101906020018083116119c457829003601f168201915b505050505081565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611a92576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a89906144ce565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611b0c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b03906144ae565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611b5b6129ac565b73ffffffffffffffffffffffffffffffffffffffff16611b79612054565b73ffffffffffffffffffffffffffffffffffffffff1614611bcf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bc69061456e565b60405180910390fd5b611bd96000612fb0565b565b601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b611c096129ac565b73ffffffffffffffffffffffffffffffffffffffff16611c27612054565b73ffffffffffffffffffffffffffffffffffffffff1614611c7d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c749061456e565b60405180910390fd5b6000479050600073ffffffffffffffffffffffffffffffffffffffff16601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614158015611ce15750600081115b611d20576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d179061446e565b60405180910390fd5b6000601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1682604051611d6890614218565b60006040518083038185875af1925050503d8060008114611da5576040519150601f19603f3d011682016040523d82523d6000602084013e611daa565b606091505b50508091505080611df0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611de7906145ce565b60405180910390fd5b5050565b60095481565b611e026129ac565b73ffffffffffffffffffffffffffffffffffffffff16611e20612054565b73ffffffffffffffffffffffffffffffffffffffff1614611e76576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e6d9061456e565b60405180910390fd5b600660179054906101000a900460ff1615611ec6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ebd9061430e565b60405180910390fd5b80600660156101000a81548160ff02191690831515021790555050565b60606000611ef083611a9b565b90506000811415611f4d57600067ffffffffffffffff811115611f1657611f15614ad1565b5b604051908082528060200260200182016040528015611f445781602001602082028036833780820191505090505b5091505061203c565b60008167ffffffffffffffff811115611f6957611f68614ad1565b5b604051908082528060200260200182016040528015611f975781602001602082028036833780820191505090505b5090506000611fa4610fb1565b9050600080600190505b828111612033578673ffffffffffffffffffffffffffffffffffffffff16611fd5826119e9565b73ffffffffffffffffffffffffffffffffffffffff161415612020578084838151811061200557612004614aa2565b5b602002602001018181525050818061201c90614977565b9250505b808061202b90614977565b915050611fae565b83955050505050505b919050565b600660179054906101000a900460ff1681565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60116020528060005260406000206000915090505481565b6060600180546120a590614914565b80601f01602080910402602001604051908101604052809291908181526020018280546120d190614914565b801561211e5780601f106120f35761010080835404028352916020019161211e565b820191906000526020600020905b81548152906001019060200180831161210157829003601f168201915b5050505050905090565b600d5481565b600660159054906101000a900460ff1661217d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612174906143ce565b60405180910390fd5b60006001905060006009549050600660149054906101000a900460ff1615612261576000836040516020016121b291906141ce565b604051602081830303815290604052805190602001209050612218868680806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050600e5483613076565b9250600a5491508261225f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122569061462e565b60405180910390fd5b505b6000813461226f91906149e4565b146122af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122a69061448e565b60405180910390fd5b600081346122bd91906147e2565b9050600181101580156122d25750600c548111155b612311576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123089061432e565b60405180910390fd5b600061231b610fb1565b82612326919061478c565b9050600b5481111561236d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612364906145ae565b60405180910390fd5b600660149054906101000a900460ff161561246e576000601160008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054836123cf919061478c565b9050600d54811115612416576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161240d9061460e565b60405180910390fd5b82601160008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612465919061478c565b92505081905550505b60005b828110156124af576124836008612dc0565b600061248f6008612a6d565b905061249b8782612dd6565b5080806124a790614977565b915050612471565b5050505050505050565b6124cb6124c46129ac565b838361308d565b5050565b6124d76129ac565b73ffffffffffffffffffffffffffffffffffffffff166124f5612054565b73ffffffffffffffffffffffffffffffffffffffff161461254b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125429061456e565b60405180910390fd5b6000816125586008612a6d565b612562919061478c565b9050600b548111156125a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125a0906145ae565b60405180910390fd5b60005b828110156125ea576125be6008612dc0565b60006125ca6008612a6d565b90506125d68582612dd6565b5080806125e290614977565b9150506125ac565b50505050565b6126016125fb6129ac565b83612a7b565b612640576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612637906145ee565b60405180910390fd5b61264c848484846131fa565b50505050565b6060600061265f83613256565b9050600f816040516020016126759291906141e9565b604051602081830303815290604052915050919050565b600c5481565b600660159054906101000a900460ff1681565b600660169054906101000a900460ff1681565b6060600780546126c790614914565b80601f01602080910402602001604051908101604052809291908181526020018280546126f390614914565b80156127405780601f1061271557610100808354040283529160200191612740565b820191906000526020600020905b81548152906001019060200180831161272357829003601f168201915b5050505050905090565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6127e66129ac565b73ffffffffffffffffffffffffffffffffffffffff16612804612054565b73ffffffffffffffffffffffffffffffffffffffff161461285a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128519061456e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156128ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128c19061436e565b60405180910390fd5b6128d381612fb0565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16612a27836119e9565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600081600001549050919050565b6000612a8682612940565b612ac5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612abc9061442e565b60405180910390fd5b6000612ad0836119e9565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480612b3f57508373ffffffffffffffffffffffffffffffffffffffff16612b2784610c78565b73ffffffffffffffffffffffffffffffffffffffff16145b80612b505750612b4f818561274a565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16612b79826119e9565b73ffffffffffffffffffffffffffffffffffffffff1614612bcf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bc69061438e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612c3f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c36906143ee565b60405180910390fd5b612c4a8383836133b7565b612c556000826129b4565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612ca59190614813565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612cfc919061478c565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612dbb8383836133bc565b505050565b6001816000016000828254019250508190555050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612e46576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e3d9061450e565b60405180910390fd5b612e4f81612940565b15612e8f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e86906143ae565b60405180910390fd5b612e9b600083836133b7565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612eeb919061478c565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612fac600083836133bc565b5050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008261308385846133c1565b1490509392505050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156130fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130f39061440e565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516131ed91906142b6565b60405180910390a3505050565b613205848484612b59565b61321184848484613436565b613250576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016132479061434e565b60405180910390fd5b50505050565b6060600082141561329e576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506133b2565b600082905060005b600082146132d05780806132b990614977565b915050600a826132c991906147e2565b91506132a6565b60008167ffffffffffffffff8111156132ec576132eb614ad1565b5b6040519080825280601f01601f19166020018201604052801561331e5781602001600182028036833780820191505090505b5090505b600085146133ab576001826133379190614813565b9150600a8561334691906149e4565b6030613352919061478c565b60f81b81838151811061336857613367614aa2565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856133a491906147e2565b9450613322565b8093505050505b919050565b505050565b505050565b60008082905060005b845181101561342b5760008582815181106133e8576133e7614aa2565b5b6020026020010151905080831161340a5761340383826135cd565b9250613417565b61341481846135cd565b92505b50808061342390614977565b9150506133ca565b508091505092915050565b60006134578473ffffffffffffffffffffffffffffffffffffffff166135e4565b156135c0578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026134806129ac565b8786866040518563ffffffff1660e01b81526004016134a29493929190614248565b602060405180830381600087803b1580156134bc57600080fd5b505af19250505080156134ed57506040513d601f19601f820116820180604052508101906134ea9190613b1d565b60015b613570573d806000811461351d576040519150601f19603f3d011682016040523d82523d6000602084013e613522565b606091505b50600081511415613568576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161355f9061434e565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506135c5565b600190505b949350505050565b600082600052816020526040600020905092915050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b82805461361390614914565b90600052602060002090601f016020900481019282613635576000855561367c565b82601f1061364e57805160ff191683800117855561367c565b8280016001018555821561367c579182015b8281111561367b578251825591602001919060010190613660565b5b509050613689919061368d565b5090565b5b808211156136a657600081600090555060010161368e565b5090565b60006136bd6136b88461468e565b614669565b9050828152602081018484840111156136d9576136d8614b0f565b5b6136e48482856148d2565b509392505050565b60006136ff6136fa846146bf565b614669565b90508281526020810184848401111561371b5761371a614b0f565b5b6137268482856148d2565b509392505050565b60008135905061373d8161523e565b92915050565b60008083601f84011261375957613758614b05565b5b8235905067ffffffffffffffff81111561377657613775614b00565b5b60208301915083602082028301111561379257613791614b0a565b5b9250929050565b6000813590506137a881615255565b92915050565b6000813590506137bd8161526c565b92915050565b6000813590506137d281615283565b92915050565b6000815190506137e781615283565b92915050565b600082601f83011261380257613801614b05565b5b81356138128482602086016136aa565b91505092915050565b600082601f8301126138305761382f614b05565b5b81356138408482602086016136ec565b91505092915050565b6000813590506138588161529a565b92915050565b60008135905061386d816152b1565b92915050565b60006020828403121561388957613888614b19565b5b60006138978482850161372e565b91505092915050565b600080604083850312156138b7576138b6614b19565b5b60006138c58582860161372e565b92505060206138d68582860161372e565b9150509250929050565b6000806000606084860312156138f9576138f8614b19565b5b60006139078682870161372e565b93505060206139188682870161372e565b925050604061392986828701613849565b9150509250925092565b6000806000806080858703121561394d5761394c614b19565b5b600061395b8782880161372e565b945050602061396c8782880161372e565b935050604061397d87828801613849565b925050606085013567ffffffffffffffff81111561399e5761399d614b14565b5b6139aa878288016137ed565b91505092959194509250565b600080604083850312156139cd576139cc614b19565b5b60006139db8582860161372e565b92505060206139ec85828601613799565b9150509250929050565b60008060408385031215613a0d57613a0c614b19565b5b6000613a1b8582860161372e565b9250506020613a2c85828601613849565b9150509250929050565b600080600060408486031215613a4f57613a4e614b19565b5b600084013567ffffffffffffffff811115613a6d57613a6c614b14565b5b613a7986828701613743565b93509350506020613a8c8682870161372e565b9150509250925092565b600060208284031215613aac57613aab614b19565b5b6000613aba84828501613799565b91505092915050565b600060208284031215613ad957613ad8614b19565b5b6000613ae7848285016137ae565b91505092915050565b600060208284031215613b0657613b05614b19565b5b6000613b14848285016137c3565b91505092915050565b600060208284031215613b3357613b32614b19565b5b6000613b41848285016137d8565b91505092915050565b600060208284031215613b6057613b5f614b19565b5b600082013567ffffffffffffffff811115613b7e57613b7d614b14565b5b613b8a8482850161381b565b91505092915050565b600060208284031215613ba957613ba8614b19565b5b6000613bb784828501613849565b91505092915050565b60008060408385031215613bd757613bd6614b19565b5b6000613be585828601613849565b9250506020613bf68582860161385e565b9150509250929050565b6000613c0c83836141b0565b60208301905092915050565b613c2181614847565b82525050565b613c38613c3382614847565b6149c0565b82525050565b6000613c4982614715565b613c538185614743565b9350613c5e836146f0565b8060005b83811015613c8f578151613c768882613c00565b9750613c8183614736565b925050600181019050613c62565b5085935050505092915050565b613ca581614859565b82525050565b613cb481614865565b82525050565b6000613cc582614720565b613ccf8185614754565b9350613cdf8185602086016148e1565b613ce881614b1e565b840191505092915050565b6000613cfe8261472b565b613d088185614770565b9350613d188185602086016148e1565b613d2181614b1e565b840191505092915050565b6000613d378261472b565b613d418185614781565b9350613d518185602086016148e1565b80840191505092915050565b60008154613d6a81614914565b613d748186614781565b94506001821660008114613d8f5760018114613da057613dd3565b60ff19831686528186019350613dd3565b613da985614700565b60005b83811015613dcb57815481890152600182019150602081019050613dac565b838801955050505b50505092915050565b6000613de9601183614770565b9150613df482614b3c565b602082019050919050565b6000613e0c604383614770565b9150613e1782614b65565b606082019050919050565b6000613e2f603283614770565b9150613e3a82614bda565b604082019050919050565b6000613e52602683614770565b9150613e5d82614c29565b604082019050919050565b6000613e75602583614770565b9150613e8082614c78565b604082019050919050565b6000613e98601c83614770565b9150613ea382614cc7565b602082019050919050565b6000613ebb602483614770565b9150613ec682614cf0565b604082019050919050565b6000613ede602483614770565b9150613ee982614d3f565b604082019050919050565b6000613f01601983614770565b9150613f0c82614d8e565b602082019050919050565b6000613f24602c83614770565b9150613f2f82614db7565b604082019050919050565b6000613f47603883614770565b9150613f5282614e06565b604082019050919050565b6000613f6a600e83614770565b9150613f7582614e55565b602082019050919050565b6000613f8d602b83614770565b9150613f9882614e7e565b604082019050919050565b6000613fb0602a83614770565b9150613fbb82614ecd565b604082019050919050565b6000613fd3602983614770565b9150613fde82614f1c565b604082019050919050565b6000613ff6602183614770565b915061400182614f6b565b604082019050919050565b6000614019602083614770565b915061402482614fba565b602082019050919050565b600061403c601483614770565b915061404782614fe3565b602082019050919050565b600061405f602c83614770565b915061406a8261500c565b604082019050919050565b6000614082600583614781565b915061408d8261505b565b600582019050919050565b60006140a5602083614770565b91506140b082615084565b602082019050919050565b60006140c8602183614770565b91506140d3826150ad565b604082019050919050565b60006140eb601083614770565b91506140f6826150fc565b602082019050919050565b600061410e601883614770565b915061411982615125565b602082019050919050565b6000614131600083614765565b915061413c8261514e565b600082019050919050565b6000614154603183614770565b915061415f82615151565b604082019050919050565b6000614177602183614770565b9150614182826151a0565b604082019050919050565b600061419a602d83614770565b91506141a5826151ef565b604082019050919050565b6141b9816148bb565b82525050565b6141c8816148bb565b82525050565b60006141da8284613c27565b60148201915081905092915050565b60006141f58285613d5d565b91506142018284613d2c565b915061420c82614075565b91508190509392505050565b600061422382614124565b9150819050919050565b60006020820190506142426000830184613c18565b92915050565b600060808201905061425d6000830187613c18565b61426a6020830186613c18565b61427760408301856141bf565b81810360608301526142898184613cba565b905095945050505050565b600060208201905081810360008301526142ae8184613c3e565b905092915050565b60006020820190506142cb6000830184613c9c565b92915050565b60006020820190506142e66000830184613cab565b92915050565b600060208201905081810360008301526143068184613cf3565b905092915050565b6000602082019050818103600083015261432781613ddc565b9050919050565b6000602082019050818103600083015261434781613dff565b9050919050565b6000602082019050818103600083015261436781613e22565b9050919050565b6000602082019050818103600083015261438781613e45565b9050919050565b600060208201905081810360008301526143a781613e68565b9050919050565b600060208201905081810360008301526143c781613e8b565b9050919050565b600060208201905081810360008301526143e781613eae565b9050919050565b6000602082019050818103600083015261440781613ed1565b9050919050565b6000602082019050818103600083015261442781613ef4565b9050919050565b6000602082019050818103600083015261444781613f17565b9050919050565b6000602082019050818103600083015261446781613f3a565b9050919050565b6000602082019050818103600083015261448781613f5d565b9050919050565b600060208201905081810360008301526144a781613f80565b9050919050565b600060208201905081810360008301526144c781613fa3565b9050919050565b600060208201905081810360008301526144e781613fc6565b9050919050565b6000602082019050818103600083015261450781613fe9565b9050919050565b600060208201905081810360008301526145278161400c565b9050919050565b600060208201905081810360008301526145478161402f565b9050919050565b6000602082019050818103600083015261456781614052565b9050919050565b6000602082019050818103600083015261458781614098565b9050919050565b600060208201905081810360008301526145a7816140bb565b9050919050565b600060208201905081810360008301526145c7816140de565b9050919050565b600060208201905081810360008301526145e781614101565b9050919050565b6000602082019050818103600083015261460781614147565b9050919050565b600060208201905081810360008301526146278161416a565b9050919050565b600060208201905081810360008301526146478161418d565b9050919050565b600060208201905061466360008301846141bf565b92915050565b6000614673614684565b905061467f8282614946565b919050565b6000604051905090565b600067ffffffffffffffff8211156146a9576146a8614ad1565b5b6146b282614b1e565b9050602081019050919050565b600067ffffffffffffffff8211156146da576146d9614ad1565b5b6146e382614b1e565b9050602081019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000614797826148bb565b91506147a2836148bb565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156147d7576147d6614a15565b5b828201905092915050565b60006147ed826148bb565b91506147f8836148bb565b92508261480857614807614a44565b5b828204905092915050565b600061481e826148bb565b9150614829836148bb565b92508282101561483c5761483b614a15565b5b828203905092915050565b60006148528261489b565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b82818337600083830152505050565b60005b838110156148ff5780820151818401526020810190506148e4565b8381111561490e576000848401525b50505050565b6000600282049050600182168061492c57607f821691505b602082108114156149405761493f614a73565b5b50919050565b61494f82614b1e565b810181811067ffffffffffffffff8211171561496e5761496d614ad1565b5b80604052505050565b6000614982826148bb565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156149b5576149b4614a15565b5b600182019050919050565b60006149cb826149d2565b9050919050565b60006149dd82614b2f565b9050919050565b60006149ef826148bb565b91506149fa836148bb565b925082614a0a57614a09614a44565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f436f6c6c656374696f6e206c6f636b6564000000000000000000000000000000600082015250565b7f416d6f756e742073686f756c64206265206174206c65617374203120616e642060008201527f6d757374206265206c657373206f7220657175616c20746f206d617820616d6f60208201527f756e740000000000000000000000000000000000000000000000000000000000604082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f43616e27742062757920626563617573652073616c65206973206e6f7420616360008201527f7469766500000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f43616e2774207769746864726177000000000000000000000000000000000000600082015250565b7f536f72727920796f752063616e2774206d696e7420626563617573652070726960008201527f63652069732077726f6e67000000000000000000000000000000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4f6e6c792063726f73736d696e742063616e206275792066726f6d207468657260008201527f6500000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f43616e27742075736520626c61636b20686f6c65000000000000000000000000600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4861726420636170207265616368656400000000000000000000000000000000600082015250565b7f576974686472617720746f207661756c74206661696c65640000000000000000600082015250565b50565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f43616e2774206d696e74206d6f7265204e46547320696e2077686974656c697360008201527f7400000000000000000000000000000000000000000000000000000000000000602082015250565b7f536f72727920796f752063616e2774206d696e742062656361757365206e6f7460008201527f20696e2077686974656c69737400000000000000000000000000000000000000602082015250565b61524781614847565b811461525257600080fd5b50565b61525e81614859565b811461526957600080fd5b50565b61527581614865565b811461528057600080fd5b50565b61528c8161486f565b811461529757600080fd5b50565b6152a3816148bb565b81146152ae57600080fd5b50565b6152ba816148c5565b81146152c557600080fd5b5056fea2646970667358221220983aec937aec5ae8177a28c2576aa54e479b533fa4240dad34f93bc1c72cc77064736f6c63430008060033000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000000e4b6f6265496e53657175656e636500000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000054b4c4b495300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000012d00000000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106102885760003560e01c80636352211e1161015a57806395f61c48116100c1578063d40dc8701161007a578063d40dc87014610964578063e0df72161461098f578063e8987498146109ba578063e8a3d485146109e5578063e985e9c514610a10578063f2fde38b14610a4d57610288565b806395f61c4814610865578063a147718f14610890578063a22cb465146108ac578063a24721d3146108d5578063b88d4fde146108fe578063c87b56dd1461092757610288565b806383bc52451161011357806383bc5245146107415780638462151c1461076a5780638b22f341146107a75780638da5cb5b146107d257806393ec3e88146107fd57806395d89b411461083a57610288565b80636352211e1461064357806370a0823114610680578063715018a6146106bd578063733f2399146106d45780637362377b146106ff5780637f9307f71461071657610288565b80632a1436c2116101fe57806351e75e8b116101b757806351e75e8b146105565780635489af0f146105815780635e01967c146105aa5780635ec9115c146105d35780636001ba0a146105fc57806361ad20571461061857610288565b80632a1436c21461046e5780633a03171c146104975780633b6e2873146104c257806340d0b4a9146104ed57806342842e0e1461050457806347d0c9301461052d57610288565b80630ee83a71116102505780630ee83a71146103865780631036b3c51461039d57806314f7b61e146103c857806318160ddd146103f1578063211eb07d1461041c57806323b872dd1461044557610288565b806301ffc9a71461028d5780630346f18f146102ca57806306fdde03146102f5578063081812fc14610320578063095ea7b31461035d575b600080fd5b34801561029957600080fd5b506102b460048036038101906102af9190613af0565b610a76565b6040516102c191906142b6565b60405180910390f35b3480156102d657600080fd5b506102df610b58565b6040516102ec91906142ec565b60405180910390f35b34801561030157600080fd5b5061030a610be6565b60405161031791906142ec565b60405180910390f35b34801561032c57600080fd5b5061034760048036038101906103429190613b93565b610c78565b604051610354919061422d565b60405180910390f35b34801561036957600080fd5b50610384600480360381019061037f91906139f6565b610cfd565b005b34801561039257600080fd5b5061039b610e15565b005b3480156103a957600080fd5b506103b2610eae565b6040516103bf91906142b6565b60405180910390f35b3480156103d457600080fd5b506103ef60048036038101906103ea9190613bc0565b610ec1565b005b3480156103fd57600080fd5b50610406610fb1565b604051610413919061464e565b60405180910390f35b34801561042857600080fd5b50610443600480360381019061043e9190613b4a565b610fc2565b005b34801561045157600080fd5b5061046c600480360381019061046791906138e0565b6110a8565b005b34801561047a57600080fd5b5061049560048036038101906104909190613a96565b611108565b005b3480156104a357600080fd5b506104ac6111f1565b6040516104b9919061464e565b60405180910390f35b3480156104ce57600080fd5b506104d76111f7565b6040516104e4919061464e565b60405180910390f35b3480156104f957600080fd5b506105026111fd565b005b34801561051057600080fd5b5061052b600480360381019061052691906138e0565b611296565b005b34801561053957600080fd5b50610554600480360381019061054f9190613ac3565b6112b6565b005b34801561056257600080fd5b5061056b61138c565b60405161057891906142d1565b60405180910390f35b34801561058d57600080fd5b506105a860048036038101906105a39190613b4a565b611392565b005b3480156105b657600080fd5b506105d160048036038101906105cc9190613873565b611478565b005b3480156105df57600080fd5b506105fa60048036038101906105f59190613bc0565b6115a8565b005b610616600480360381019061061191906138a0565b611698565b005b34801561062457600080fd5b5061062d61195b565b60405161063a91906142ec565b60405180910390f35b34801561064f57600080fd5b5061066a60048036038101906106659190613b93565b6119e9565b604051610677919061422d565b60405180910390f35b34801561068c57600080fd5b506106a760048036038101906106a29190613873565b611a9b565b6040516106b4919061464e565b60405180910390f35b3480156106c957600080fd5b506106d2611b53565b005b3480156106e057600080fd5b506106e9611bdb565b6040516106f6919061422d565b60405180910390f35b34801561070b57600080fd5b50610714611c01565b005b34801561072257600080fd5b5061072b611df4565b604051610738919061464e565b60405180910390f35b34801561074d57600080fd5b5061076860048036038101906107639190613a96565b611dfa565b005b34801561077657600080fd5b50610791600480360381019061078c9190613873565b611ee3565b60405161079e9190614294565b60405180910390f35b3480156107b357600080fd5b506107bc612041565b6040516107c991906142b6565b60405180910390f35b3480156107de57600080fd5b506107e7612054565b6040516107f4919061422d565b60405180910390f35b34801561080957600080fd5b50610824600480360381019061081f9190613873565b61207e565b604051610831919061464e565b60405180910390f35b34801561084657600080fd5b5061084f612096565b60405161085c91906142ec565b60405180910390f35b34801561087157600080fd5b5061087a612128565b604051610887919061464e565b60405180910390f35b6108aa60048036038101906108a59190613a36565b61212e565b005b3480156108b857600080fd5b506108d360048036038101906108ce91906139b6565b6124b9565b005b3480156108e157600080fd5b506108fc60048036038101906108f791906139f6565b6124cf565b005b34801561090a57600080fd5b5061092560048036038101906109209190613933565b6125f0565b005b34801561093357600080fd5b5061094e60048036038101906109499190613b93565b612652565b60405161095b91906142ec565b60405180910390f35b34801561097057600080fd5b5061097961268c565b604051610986919061464e565b60405180910390f35b34801561099b57600080fd5b506109a4612692565b6040516109b191906142b6565b60405180910390f35b3480156109c657600080fd5b506109cf6126a5565b6040516109dc91906142b6565b60405180910390f35b3480156109f157600080fd5b506109fa6126b8565b604051610a0791906142ec565b60405180910390f35b348015610a1c57600080fd5b50610a376004803603810190610a3291906138a0565b61274a565b604051610a4491906142b6565b60405180910390f35b348015610a5957600080fd5b50610a746004803603810190610a6f9190613873565b6127de565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610b4157507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610b515750610b50826128d6565b5b9050919050565b60078054610b6590614914565b80601f0160208091040260200160405190810160405280929190818152602001828054610b9190614914565b8015610bde5780601f10610bb357610100808354040283529160200191610bde565b820191906000526020600020905b815481529060010190602001808311610bc157829003601f168201915b505050505081565b606060008054610bf590614914565b80601f0160208091040260200160405190810160405280929190818152602001828054610c2190614914565b8015610c6e5780601f10610c4357610100808354040283529160200191610c6e565b820191906000526020600020905b815481529060010190602001808311610c5157829003601f168201915b5050505050905090565b6000610c8382612940565b610cc2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cb99061454e565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610d08826119e9565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610d79576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d709061458e565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610d986129ac565b73ffffffffffffffffffffffffffffffffffffffff161480610dc75750610dc681610dc16129ac565b61274a565b5b610e06576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dfd9061444e565b60405180910390fd5b610e1083836129b4565b505050565b610e1d6129ac565b73ffffffffffffffffffffffffffffffffffffffff16610e3b612054565b73ffffffffffffffffffffffffffffffffffffffff1614610e91576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e889061456e565b60405180910390fd5b6001600660176101000a81548160ff021916908315150217905550565b600660149054906101000a900460ff1681565b610ec96129ac565b73ffffffffffffffffffffffffffffffffffffffff16610ee7612054565b73ffffffffffffffffffffffffffffffffffffffff1614610f3d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f349061456e565b60405180910390fd5b600660179054906101000a900460ff1615610f8d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f849061430e565b60405180910390fd5b60008160ff161415610fa55781600c81905550610fad565b81600d819055505b5050565b6000610fbd6008612a6d565b905090565b610fca6129ac565b73ffffffffffffffffffffffffffffffffffffffff16610fe8612054565b73ffffffffffffffffffffffffffffffffffffffff161461103e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110359061456e565b60405180910390fd5b600660179054906101000a900460ff161561108e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110859061430e565b60405180910390fd5b80600f90805190602001906110a4929190613607565b5050565b6110b96110b36129ac565b82612a7b565b6110f8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110ef906145ee565b60405180910390fd5b611103838383612b59565b505050565b6111106129ac565b73ffffffffffffffffffffffffffffffffffffffff1661112e612054565b73ffffffffffffffffffffffffffffffffffffffff1614611184576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161117b9061456e565b60405180910390fd5b600660179054906101000a900460ff16156111d4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111cb9061430e565b60405180910390fd5b80600660146101000a81548160ff02191690831515021790555050565b600b5481565b600a5481565b6112056129ac565b73ffffffffffffffffffffffffffffffffffffffff16611223612054565b73ffffffffffffffffffffffffffffffffffffffff1614611279576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112709061456e565b60405180910390fd5b6001600660166101000a81548160ff021916908315150217905550565b6112b1838383604051806020016040528060008152506125f0565b505050565b6112be6129ac565b73ffffffffffffffffffffffffffffffffffffffff166112dc612054565b73ffffffffffffffffffffffffffffffffffffffff1614611332576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113299061456e565b60405180910390fd5b600660179054906101000a900460ff1615611382576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113799061430e565b60405180910390fd5b80600e8190555050565b600e5481565b61139a6129ac565b73ffffffffffffffffffffffffffffffffffffffff166113b8612054565b73ffffffffffffffffffffffffffffffffffffffff161461140e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114059061456e565b60405180910390fd5b600660179054906101000a900460ff161561145e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114559061430e565b60405180910390fd5b8060079080519060200190611474929190613607565b5050565b6114806129ac565b73ffffffffffffffffffffffffffffffffffffffff1661149e612054565b73ffffffffffffffffffffffffffffffffffffffff16146114f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114eb9061456e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611564576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161155b9061452e565b60405180910390fd5b80601060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6115b06129ac565b73ffffffffffffffffffffffffffffffffffffffff166115ce612054565b73ffffffffffffffffffffffffffffffffffffffff1614611624576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161161b9061456e565b60405180910390fd5b600660179054906101000a900460ff1615611674576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161166b9061430e565b60405180910390fd5b60008160ff16141561168c5781600981905550611694565b81600a819055505b5050565b600660159054906101000a900460ff166116e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116de906143ce565b60405180910390fd5b73dab1a1854214684ace522439684a145e6250523373ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611769576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611760906144ee565b60405180910390fd5b60006001611775610fb1565b61177f919061478c565b9050600b548111156117c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117bd906145ae565b60405180910390fd5b600660149054906101000a900460ff1615611933576000601160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205414801561186957506000601160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054145b6118a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161189f9061460e565b60405180910390fd5b6001601160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506001601160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b61193d6008612dc0565b60006119496008612a6d565b90506119558482612dd6565b50505050565b600f805461196890614914565b80601f016020809104026020016040519081016040528092919081815260200182805461199490614914565b80156119e15780601f106119b6576101008083540402835291602001916119e1565b820191906000526020600020905b8154815290600101906020018083116119c457829003601f168201915b505050505081565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611a92576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a89906144ce565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611b0c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b03906144ae565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611b5b6129ac565b73ffffffffffffffffffffffffffffffffffffffff16611b79612054565b73ffffffffffffffffffffffffffffffffffffffff1614611bcf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bc69061456e565b60405180910390fd5b611bd96000612fb0565b565b601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b611c096129ac565b73ffffffffffffffffffffffffffffffffffffffff16611c27612054565b73ffffffffffffffffffffffffffffffffffffffff1614611c7d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c749061456e565b60405180910390fd5b6000479050600073ffffffffffffffffffffffffffffffffffffffff16601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614158015611ce15750600081115b611d20576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d179061446e565b60405180910390fd5b6000601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1682604051611d6890614218565b60006040518083038185875af1925050503d8060008114611da5576040519150601f19603f3d011682016040523d82523d6000602084013e611daa565b606091505b50508091505080611df0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611de7906145ce565b60405180910390fd5b5050565b60095481565b611e026129ac565b73ffffffffffffffffffffffffffffffffffffffff16611e20612054565b73ffffffffffffffffffffffffffffffffffffffff1614611e76576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e6d9061456e565b60405180910390fd5b600660179054906101000a900460ff1615611ec6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ebd9061430e565b60405180910390fd5b80600660156101000a81548160ff02191690831515021790555050565b60606000611ef083611a9b565b90506000811415611f4d57600067ffffffffffffffff811115611f1657611f15614ad1565b5b604051908082528060200260200182016040528015611f445781602001602082028036833780820191505090505b5091505061203c565b60008167ffffffffffffffff811115611f6957611f68614ad1565b5b604051908082528060200260200182016040528015611f975781602001602082028036833780820191505090505b5090506000611fa4610fb1565b9050600080600190505b828111612033578673ffffffffffffffffffffffffffffffffffffffff16611fd5826119e9565b73ffffffffffffffffffffffffffffffffffffffff161415612020578084838151811061200557612004614aa2565b5b602002602001018181525050818061201c90614977565b9250505b808061202b90614977565b915050611fae565b83955050505050505b919050565b600660179054906101000a900460ff1681565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60116020528060005260406000206000915090505481565b6060600180546120a590614914565b80601f01602080910402602001604051908101604052809291908181526020018280546120d190614914565b801561211e5780601f106120f35761010080835404028352916020019161211e565b820191906000526020600020905b81548152906001019060200180831161210157829003601f168201915b5050505050905090565b600d5481565b600660159054906101000a900460ff1661217d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612174906143ce565b60405180910390fd5b60006001905060006009549050600660149054906101000a900460ff1615612261576000836040516020016121b291906141ce565b604051602081830303815290604052805190602001209050612218868680806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050600e5483613076565b9250600a5491508261225f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122569061462e565b60405180910390fd5b505b6000813461226f91906149e4565b146122af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122a69061448e565b60405180910390fd5b600081346122bd91906147e2565b9050600181101580156122d25750600c548111155b612311576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123089061432e565b60405180910390fd5b600061231b610fb1565b82612326919061478c565b9050600b5481111561236d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612364906145ae565b60405180910390fd5b600660149054906101000a900460ff161561246e576000601160008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054836123cf919061478c565b9050600d54811115612416576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161240d9061460e565b60405180910390fd5b82601160008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612465919061478c565b92505081905550505b60005b828110156124af576124836008612dc0565b600061248f6008612a6d565b905061249b8782612dd6565b5080806124a790614977565b915050612471565b5050505050505050565b6124cb6124c46129ac565b838361308d565b5050565b6124d76129ac565b73ffffffffffffffffffffffffffffffffffffffff166124f5612054565b73ffffffffffffffffffffffffffffffffffffffff161461254b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125429061456e565b60405180910390fd5b6000816125586008612a6d565b612562919061478c565b9050600b548111156125a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125a0906145ae565b60405180910390fd5b60005b828110156125ea576125be6008612dc0565b60006125ca6008612a6d565b90506125d68582612dd6565b5080806125e290614977565b9150506125ac565b50505050565b6126016125fb6129ac565b83612a7b565b612640576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612637906145ee565b60405180910390fd5b61264c848484846131fa565b50505050565b6060600061265f83613256565b9050600f816040516020016126759291906141e9565b604051602081830303815290604052915050919050565b600c5481565b600660159054906101000a900460ff1681565b600660169054906101000a900460ff1681565b6060600780546126c790614914565b80601f01602080910402602001604051908101604052809291908181526020018280546126f390614914565b80156127405780601f1061271557610100808354040283529160200191612740565b820191906000526020600020905b81548152906001019060200180831161272357829003601f168201915b5050505050905090565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6127e66129ac565b73ffffffffffffffffffffffffffffffffffffffff16612804612054565b73ffffffffffffffffffffffffffffffffffffffff161461285a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128519061456e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156128ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128c19061436e565b60405180910390fd5b6128d381612fb0565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16612a27836119e9565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600081600001549050919050565b6000612a8682612940565b612ac5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612abc9061442e565b60405180910390fd5b6000612ad0836119e9565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480612b3f57508373ffffffffffffffffffffffffffffffffffffffff16612b2784610c78565b73ffffffffffffffffffffffffffffffffffffffff16145b80612b505750612b4f818561274a565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16612b79826119e9565b73ffffffffffffffffffffffffffffffffffffffff1614612bcf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bc69061438e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612c3f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c36906143ee565b60405180910390fd5b612c4a8383836133b7565b612c556000826129b4565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612ca59190614813565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612cfc919061478c565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612dbb8383836133bc565b505050565b6001816000016000828254019250508190555050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612e46576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e3d9061450e565b60405180910390fd5b612e4f81612940565b15612e8f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e86906143ae565b60405180910390fd5b612e9b600083836133b7565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612eeb919061478c565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612fac600083836133bc565b5050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008261308385846133c1565b1490509392505050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156130fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130f39061440e565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516131ed91906142b6565b60405180910390a3505050565b613205848484612b59565b61321184848484613436565b613250576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016132479061434e565b60405180910390fd5b50505050565b6060600082141561329e576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506133b2565b600082905060005b600082146132d05780806132b990614977565b915050600a826132c991906147e2565b91506132a6565b60008167ffffffffffffffff8111156132ec576132eb614ad1565b5b6040519080825280601f01601f19166020018201604052801561331e5781602001600182028036833780820191505090505b5090505b600085146133ab576001826133379190614813565b9150600a8561334691906149e4565b6030613352919061478c565b60f81b81838151811061336857613367614aa2565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856133a491906147e2565b9450613322565b8093505050505b919050565b505050565b505050565b60008082905060005b845181101561342b5760008582815181106133e8576133e7614aa2565b5b6020026020010151905080831161340a5761340383826135cd565b9250613417565b61341481846135cd565b92505b50808061342390614977565b9150506133ca565b508091505092915050565b60006134578473ffffffffffffffffffffffffffffffffffffffff166135e4565b156135c0578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026134806129ac565b8786866040518563ffffffff1660e01b81526004016134a29493929190614248565b602060405180830381600087803b1580156134bc57600080fd5b505af19250505080156134ed57506040513d601f19601f820116820180604052508101906134ea9190613b1d565b60015b613570573d806000811461351d576040519150601f19603f3d011682016040523d82523d6000602084013e613522565b606091505b50600081511415613568576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161355f9061434e565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506135c5565b600190505b949350505050565b600082600052816020526040600020905092915050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b82805461361390614914565b90600052602060002090601f016020900481019282613635576000855561367c565b82601f1061364e57805160ff191683800117855561367c565b8280016001018555821561367c579182015b8281111561367b578251825591602001919060010190613660565b5b509050613689919061368d565b5090565b5b808211156136a657600081600090555060010161368e565b5090565b60006136bd6136b88461468e565b614669565b9050828152602081018484840111156136d9576136d8614b0f565b5b6136e48482856148d2565b509392505050565b60006136ff6136fa846146bf565b614669565b90508281526020810184848401111561371b5761371a614b0f565b5b6137268482856148d2565b509392505050565b60008135905061373d8161523e565b92915050565b60008083601f84011261375957613758614b05565b5b8235905067ffffffffffffffff81111561377657613775614b00565b5b60208301915083602082028301111561379257613791614b0a565b5b9250929050565b6000813590506137a881615255565b92915050565b6000813590506137bd8161526c565b92915050565b6000813590506137d281615283565b92915050565b6000815190506137e781615283565b92915050565b600082601f83011261380257613801614b05565b5b81356138128482602086016136aa565b91505092915050565b600082601f8301126138305761382f614b05565b5b81356138408482602086016136ec565b91505092915050565b6000813590506138588161529a565b92915050565b60008135905061386d816152b1565b92915050565b60006020828403121561388957613888614b19565b5b60006138978482850161372e565b91505092915050565b600080604083850312156138b7576138b6614b19565b5b60006138c58582860161372e565b92505060206138d68582860161372e565b9150509250929050565b6000806000606084860312156138f9576138f8614b19565b5b60006139078682870161372e565b93505060206139188682870161372e565b925050604061392986828701613849565b9150509250925092565b6000806000806080858703121561394d5761394c614b19565b5b600061395b8782880161372e565b945050602061396c8782880161372e565b935050604061397d87828801613849565b925050606085013567ffffffffffffffff81111561399e5761399d614b14565b5b6139aa878288016137ed565b91505092959194509250565b600080604083850312156139cd576139cc614b19565b5b60006139db8582860161372e565b92505060206139ec85828601613799565b9150509250929050565b60008060408385031215613a0d57613a0c614b19565b5b6000613a1b8582860161372e565b9250506020613a2c85828601613849565b9150509250929050565b600080600060408486031215613a4f57613a4e614b19565b5b600084013567ffffffffffffffff811115613a6d57613a6c614b14565b5b613a7986828701613743565b93509350506020613a8c8682870161372e565b9150509250925092565b600060208284031215613aac57613aab614b19565b5b6000613aba84828501613799565b91505092915050565b600060208284031215613ad957613ad8614b19565b5b6000613ae7848285016137ae565b91505092915050565b600060208284031215613b0657613b05614b19565b5b6000613b14848285016137c3565b91505092915050565b600060208284031215613b3357613b32614b19565b5b6000613b41848285016137d8565b91505092915050565b600060208284031215613b6057613b5f614b19565b5b600082013567ffffffffffffffff811115613b7e57613b7d614b14565b5b613b8a8482850161381b565b91505092915050565b600060208284031215613ba957613ba8614b19565b5b6000613bb784828501613849565b91505092915050565b60008060408385031215613bd757613bd6614b19565b5b6000613be585828601613849565b9250506020613bf68582860161385e565b9150509250929050565b6000613c0c83836141b0565b60208301905092915050565b613c2181614847565b82525050565b613c38613c3382614847565b6149c0565b82525050565b6000613c4982614715565b613c538185614743565b9350613c5e836146f0565b8060005b83811015613c8f578151613c768882613c00565b9750613c8183614736565b925050600181019050613c62565b5085935050505092915050565b613ca581614859565b82525050565b613cb481614865565b82525050565b6000613cc582614720565b613ccf8185614754565b9350613cdf8185602086016148e1565b613ce881614b1e565b840191505092915050565b6000613cfe8261472b565b613d088185614770565b9350613d188185602086016148e1565b613d2181614b1e565b840191505092915050565b6000613d378261472b565b613d418185614781565b9350613d518185602086016148e1565b80840191505092915050565b60008154613d6a81614914565b613d748186614781565b94506001821660008114613d8f5760018114613da057613dd3565b60ff19831686528186019350613dd3565b613da985614700565b60005b83811015613dcb57815481890152600182019150602081019050613dac565b838801955050505b50505092915050565b6000613de9601183614770565b9150613df482614b3c565b602082019050919050565b6000613e0c604383614770565b9150613e1782614b65565b606082019050919050565b6000613e2f603283614770565b9150613e3a82614bda565b604082019050919050565b6000613e52602683614770565b9150613e5d82614c29565b604082019050919050565b6000613e75602583614770565b9150613e8082614c78565b604082019050919050565b6000613e98601c83614770565b9150613ea382614cc7565b602082019050919050565b6000613ebb602483614770565b9150613ec682614cf0565b604082019050919050565b6000613ede602483614770565b9150613ee982614d3f565b604082019050919050565b6000613f01601983614770565b9150613f0c82614d8e565b602082019050919050565b6000613f24602c83614770565b9150613f2f82614db7565b604082019050919050565b6000613f47603883614770565b9150613f5282614e06565b604082019050919050565b6000613f6a600e83614770565b9150613f7582614e55565b602082019050919050565b6000613f8d602b83614770565b9150613f9882614e7e565b604082019050919050565b6000613fb0602a83614770565b9150613fbb82614ecd565b604082019050919050565b6000613fd3602983614770565b9150613fde82614f1c565b604082019050919050565b6000613ff6602183614770565b915061400182614f6b565b604082019050919050565b6000614019602083614770565b915061402482614fba565b602082019050919050565b600061403c601483614770565b915061404782614fe3565b602082019050919050565b600061405f602c83614770565b915061406a8261500c565b604082019050919050565b6000614082600583614781565b915061408d8261505b565b600582019050919050565b60006140a5602083614770565b91506140b082615084565b602082019050919050565b60006140c8602183614770565b91506140d3826150ad565b604082019050919050565b60006140eb601083614770565b91506140f6826150fc565b602082019050919050565b600061410e601883614770565b915061411982615125565b602082019050919050565b6000614131600083614765565b915061413c8261514e565b600082019050919050565b6000614154603183614770565b915061415f82615151565b604082019050919050565b6000614177602183614770565b9150614182826151a0565b604082019050919050565b600061419a602d83614770565b91506141a5826151ef565b604082019050919050565b6141b9816148bb565b82525050565b6141c8816148bb565b82525050565b60006141da8284613c27565b60148201915081905092915050565b60006141f58285613d5d565b91506142018284613d2c565b915061420c82614075565b91508190509392505050565b600061422382614124565b9150819050919050565b60006020820190506142426000830184613c18565b92915050565b600060808201905061425d6000830187613c18565b61426a6020830186613c18565b61427760408301856141bf565b81810360608301526142898184613cba565b905095945050505050565b600060208201905081810360008301526142ae8184613c3e565b905092915050565b60006020820190506142cb6000830184613c9c565b92915050565b60006020820190506142e66000830184613cab565b92915050565b600060208201905081810360008301526143068184613cf3565b905092915050565b6000602082019050818103600083015261432781613ddc565b9050919050565b6000602082019050818103600083015261434781613dff565b9050919050565b6000602082019050818103600083015261436781613e22565b9050919050565b6000602082019050818103600083015261438781613e45565b9050919050565b600060208201905081810360008301526143a781613e68565b9050919050565b600060208201905081810360008301526143c781613e8b565b9050919050565b600060208201905081810360008301526143e781613eae565b9050919050565b6000602082019050818103600083015261440781613ed1565b9050919050565b6000602082019050818103600083015261442781613ef4565b9050919050565b6000602082019050818103600083015261444781613f17565b9050919050565b6000602082019050818103600083015261446781613f3a565b9050919050565b6000602082019050818103600083015261448781613f5d565b9050919050565b600060208201905081810360008301526144a781613f80565b9050919050565b600060208201905081810360008301526144c781613fa3565b9050919050565b600060208201905081810360008301526144e781613fc6565b9050919050565b6000602082019050818103600083015261450781613fe9565b9050919050565b600060208201905081810360008301526145278161400c565b9050919050565b600060208201905081810360008301526145478161402f565b9050919050565b6000602082019050818103600083015261456781614052565b9050919050565b6000602082019050818103600083015261458781614098565b9050919050565b600060208201905081810360008301526145a7816140bb565b9050919050565b600060208201905081810360008301526145c7816140de565b9050919050565b600060208201905081810360008301526145e781614101565b9050919050565b6000602082019050818103600083015261460781614147565b9050919050565b600060208201905081810360008301526146278161416a565b9050919050565b600060208201905081810360008301526146478161418d565b9050919050565b600060208201905061466360008301846141bf565b92915050565b6000614673614684565b905061467f8282614946565b919050565b6000604051905090565b600067ffffffffffffffff8211156146a9576146a8614ad1565b5b6146b282614b1e565b9050602081019050919050565b600067ffffffffffffffff8211156146da576146d9614ad1565b5b6146e382614b1e565b9050602081019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000614797826148bb565b91506147a2836148bb565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156147d7576147d6614a15565b5b828201905092915050565b60006147ed826148bb565b91506147f8836148bb565b92508261480857614807614a44565b5b828204905092915050565b600061481e826148bb565b9150614829836148bb565b92508282101561483c5761483b614a15565b5b828203905092915050565b60006148528261489b565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b82818337600083830152505050565b60005b838110156148ff5780820151818401526020810190506148e4565b8381111561490e576000848401525b50505050565b6000600282049050600182168061492c57607f821691505b602082108114156149405761493f614a73565b5b50919050565b61494f82614b1e565b810181811067ffffffffffffffff8211171561496e5761496d614ad1565b5b80604052505050565b6000614982826148bb565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156149b5576149b4614a15565b5b600182019050919050565b60006149cb826149d2565b9050919050565b60006149dd82614b2f565b9050919050565b60006149ef826148bb565b91506149fa836148bb565b925082614a0a57614a09614a44565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f436f6c6c656374696f6e206c6f636b6564000000000000000000000000000000600082015250565b7f416d6f756e742073686f756c64206265206174206c65617374203120616e642060008201527f6d757374206265206c657373206f7220657175616c20746f206d617820616d6f60208201527f756e740000000000000000000000000000000000000000000000000000000000604082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f43616e27742062757920626563617573652073616c65206973206e6f7420616360008201527f7469766500000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f43616e2774207769746864726177000000000000000000000000000000000000600082015250565b7f536f72727920796f752063616e2774206d696e7420626563617573652070726960008201527f63652069732077726f6e67000000000000000000000000000000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4f6e6c792063726f73736d696e742063616e206275792066726f6d207468657260008201527f6500000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f43616e27742075736520626c61636b20686f6c65000000000000000000000000600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4861726420636170207265616368656400000000000000000000000000000000600082015250565b7f576974686472617720746f207661756c74206661696c65640000000000000000600082015250565b50565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f43616e2774206d696e74206d6f7265204e46547320696e2077686974656c697360008201527f7400000000000000000000000000000000000000000000000000000000000000602082015250565b7f536f72727920796f752063616e2774206d696e742062656361757365206e6f7460008201527f20696e2077686974656c69737400000000000000000000000000000000000000602082015250565b61524781614847565b811461525257600080fd5b50565b61525e81614859565b811461526957600080fd5b50565b61527581614865565b811461528057600080fd5b50565b61528c8161486f565b811461529757600080fd5b50565b6152a3816148bb565b81146152ae57600080fd5b50565b6152ba816148c5565b81146152c557600080fd5b5056fea2646970667358221220983aec937aec5ae8177a28c2576aa54e479b533fa4240dad34f93bc1c72cc77064736f6c63430008060033

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

000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000000e4b6f6265496e53657175656e636500000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000054b4c4b495300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000012d00000000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _name (string): KobeInSequence
Arg [1] : _ticker (string): KLKIS
Arg [2] : _contract_ipfs (string): -

-----Encoded View---------------
9 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [3] : 000000000000000000000000000000000000000000000000000000000000000e
Arg [4] : 4b6f6265496e53657175656e6365000000000000000000000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000005
Arg [6] : 4b4c4b4953000000000000000000000000000000000000000000000000000000
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000001
Arg [8] : 2d00000000000000000000000000000000000000000000000000000000000000


Loading...
Loading
Loading...
Loading
[ 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.