ETH Price: $3,360.32 (-1.70%)
Gas: 10 Gwei

Token

ChillBlocks (CHILL)
 

Overview

Max Total Supply

3,121 CHILL

Holders

2,600

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
dzeeroggs.eth
Balance
1 CHILL
0x35a8fb13a3af83ad1002aef2a7fa4733f7bc8794
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:
Chillblocks

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

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

import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol";
import "@openzeppelin/contracts/access/Ownable.sol";

contract Chillblocks is ERC721Enumerable, Ownable {
    using Strings for uint256;

    uint256 public constant COST_ONE = 0.05 ether;
    uint256 public constant COST_FIVE = 0.04 ether;
    uint256 public constant COST_TEN = 0.03 ether;

    uint256 public constant MAX_MINT = 10;
    uint256 public constant MAX_PRIVATE_SUPPLY = 100;
    uint256 public constant MAX_PUBLIC_SUPPLY = 9900;
    uint256 public constant MAX_SUPPLY = MAX_PRIVATE_SUPPLY + MAX_PUBLIC_SUPPLY;
    
    address constant ADDRESS_1 = 0xD7cc2856E994d992C8c26f9777BB22670cEEFb1D;
    address constant ADDRESS_2 = 0x0826987F35FcA738B388f5d96f503456C478dB61;

    uint256 public whitelistCost = 0.0 ether;
    uint256 public whitelistMaxMint = 1;

    bool public isActive = false;
    bool public isFreeActive = false;
    bool public isWhitelistActive = false;

    uint256 public totalPrivateSupply;
    uint256 public totalPublicSupply;

    string private _contractURI;
    string private _baseTokenURI = "https://chillblocks.com/";
    mapping(address => uint256) private _claimed;
    mapping(address => bool) private _whitelist;
    mapping(address => uint256) private _whitelistClaimed;

    constructor(
        string memory __baseURI,
        string memory __contractURI
    ) ERC721("ChillBlocks", "CHILL") {
        setBaseURI(__baseURI);
        setContractURI(__contractURI);
    }

    function setContractURI(string memory contractURI_) 
        public 
        onlyOwner 
    {
        _contractURI = contractURI_;
    }

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

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

    function addToWhitelist(address[] calldata addresses) external onlyOwner {
        for (uint256 i = 0; i < addresses.length; i++) {
            _whitelist[addresses[i]] = true;
        }
    }

    function claimedBy(address owner) external view returns (uint256) {
        require(owner != address(0), "Zero address not claimable");

        return _claimed[owner];
    }

    function freeMint() external payable {
        require(isFreeActive, "Free minting is not active");
        require(_claimed[msg.sender] == 0, "Free token already claimed");
        require(totalSupply() < MAX_SUPPLY, "All tokens minted");
        require(totalPublicSupply < MAX_PUBLIC_SUPPLY, "Over max public limit");

        totalPublicSupply += 1;
        _claimed[msg.sender] += 1;
        _safeMint(msg.sender, MAX_PRIVATE_SUPPLY + totalPublicSupply);
    }

    function getCost(uint256 num) public pure returns (uint256) {
        if (num < 5) {
            return COST_ONE * num;
        } else if (num > 4 && num < 10) {
            return COST_FIVE * num;
        }
        return COST_TEN * num;
    }

    function gift(address to, uint256 num) external onlyOwner {
        require(totalSupply() < MAX_SUPPLY + 1, "All tokens minted");
        require(
            totalPrivateSupply + num < MAX_PRIVATE_SUPPLY + 1,
            "Exceeds private supply"
        );

        for (uint256 i; i < num; i++) {
            totalPrivateSupply += 1;
            _safeMint(to, totalPrivateSupply);
        }
    }

    function mint(uint256 num) external payable {
        require(isActive, "Contract is inactive");
        require(num < MAX_MINT + 1, "Over max limit");
        require(totalSupply() < MAX_SUPPLY, "All tokens minted");
        require(totalPublicSupply < MAX_PUBLIC_SUPPLY, "Over max public limit");
        require(msg.value >= getCost(num), "ETH sent is not correct");

        for (uint256 i; i < num; i++) {
            if (totalPublicSupply < MAX_PUBLIC_SUPPLY) {
                totalPublicSupply += 1;
                _safeMint(msg.sender, MAX_PRIVATE_SUPPLY + totalPublicSupply);
            }
        }
    }

    function isOnWhitelist(address addr) external view returns (bool) {
        return _whitelist[addr];
    }

    function removeFromWhitelist(address[] calldata addresses)
        external
        onlyOwner
    {
        for (uint256 i = 0; i < addresses.length; i++) {
            require(
                addresses[i] != address(0),
                "Can't remove the null address"
            );

            _whitelist[addresses[i]] = false;
        }
    }

    function setActive(bool val) external onlyOwner {
        require(
            bytes(_baseTokenURI).length != 0,
            "Set Base URI before activating"
        );
        isActive = val;
    }

    function setBaseURI(string memory val) public onlyOwner {
        _baseTokenURI = val;
    }

    function setFreeActive(bool val) external onlyOwner {
        isFreeActive = val;
    }

    function setWhitelistActive(bool val) external onlyOwner {
        isWhitelistActive = val;
    }

    function setWhitelistMaxMint(uint256 val) external onlyOwner {
        whitelistMaxMint = val;
    }

    function setWhitelistPrice(uint256 val) external onlyOwner {
        whitelistCost = val;
    }

    function whitelistClaimedBy(address owner) external view returns (uint256) {
        require(owner != address(0), "Zero address not claimable");

        return _whitelistClaimed[owner];
    }

    function whitelistMint(uint256 num) external payable {
        require(isWhitelistActive, "Whitelist is not active");
        require(_whitelist[msg.sender], "You are not on the Whitelist");
        require(num < whitelistMaxMint + 1, "Over max limit");
        require(
            _whitelistClaimed[msg.sender] + num < whitelistMaxMint + 1,
            "Whitelist tokens already claimed"
        );
        require(totalSupply() < MAX_SUPPLY, "All tokens minted");
        require(totalPublicSupply < MAX_PUBLIC_SUPPLY, "Over max public limit");
        require(whitelistCost * num <= msg.value, "ETH amount is not correct");

        for (uint256 i = 0; i < num; i++) {
            totalPublicSupply += 1;
            if (whitelistCost == 0) {
                _claimed[msg.sender] += 1;
            }
            _whitelistClaimed[msg.sender] += 1;
            _safeMint(msg.sender, MAX_PRIVATE_SUPPLY + totalPublicSupply);
        }
    }

    function withdraw() public payable onlyOwner {
        uint256 balance = address(this).balance;
        uint256 split = (balance / 2);
        require(payable(ADDRESS_1).send(split));
        require(payable(ADDRESS_2).send(split));
    }
}

File 2 of 13 : ERC721Enumerable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "../ERC721.sol";
import "./IERC721Enumerable.sol";

/**
 * @dev This implements an optional extension of {ERC721} defined in the EIP that adds
 * enumerability of all the token ids in the contract as well as all token ids owned by each
 * account.
 */
abstract contract ERC721Enumerable is ERC721, IERC721Enumerable {
    // Mapping from owner to list of owned token IDs
    mapping(address => mapping(uint256 => uint256)) private _ownedTokens;

    // Mapping from token ID to index of the owner tokens list
    mapping(uint256 => uint256) private _ownedTokensIndex;

    // Array with all token ids, used for enumeration
    uint256[] private _allTokens;

    // Mapping from token id to position in the allTokens array
    mapping(uint256 => uint256) private _allTokensIndex;

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

    /**
     * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) {
        require(index < ERC721.balanceOf(owner), "ERC721Enumerable: owner index out of bounds");
        return _ownedTokens[owner][index];
    }

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

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

    /**
     * @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` cannot be the zero address.
     * - `to` cannot be the zero address.
     *
     * 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 override {
        super._beforeTokenTransfer(from, to, tokenId);

        if (from == address(0)) {
            _addTokenToAllTokensEnumeration(tokenId);
        } else if (from != to) {
            _removeTokenFromOwnerEnumeration(from, tokenId);
        }
        if (to == address(0)) {
            _removeTokenFromAllTokensEnumeration(tokenId);
        } else if (to != from) {
            _addTokenToOwnerEnumeration(to, tokenId);
        }
    }

    /**
     * @dev Private function to add a token to this extension's ownership-tracking data structures.
     * @param to address representing the new owner of the given token ID
     * @param tokenId uint256 ID of the token to be added to the tokens list of the given address
     */
    function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private {
        uint256 length = ERC721.balanceOf(to);
        _ownedTokens[to][length] = tokenId;
        _ownedTokensIndex[tokenId] = length;
    }

    /**
     * @dev Private function to add a token to this extension's token tracking data structures.
     * @param tokenId uint256 ID of the token to be added to the tokens list
     */
    function _addTokenToAllTokensEnumeration(uint256 tokenId) private {
        _allTokensIndex[tokenId] = _allTokens.length;
        _allTokens.push(tokenId);
    }

    /**
     * @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that
     * while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for
     * gas optimizations e.g. when performing a transfer operation (avoiding double writes).
     * This has O(1) time complexity, but alters the order of the _ownedTokens array.
     * @param from address representing the previous owner of the given token ID
     * @param tokenId uint256 ID of the token to be removed from the tokens list of the given address
     */
    function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private {
        // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = ERC721.balanceOf(from) - 1;
        uint256 tokenIndex = _ownedTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary
        if (tokenIndex != lastTokenIndex) {
            uint256 lastTokenId = _ownedTokens[from][lastTokenIndex];

            _ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
            _ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index
        }

        // This also deletes the contents at the last position of the array
        delete _ownedTokensIndex[tokenId];
        delete _ownedTokens[from][lastTokenIndex];
    }

    /**
     * @dev Private function to remove a token from this extension's token tracking data structures.
     * This has O(1) time complexity, but alters the order of the _allTokens array.
     * @param tokenId uint256 ID of the token to be removed from the tokens list
     */
    function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private {
        // To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = _allTokens.length - 1;
        uint256 tokenIndex = _allTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so
        // rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding
        // an 'if' statement (like in _removeTokenFromOwnerEnumeration)
        uint256 lastTokenId = _allTokens[lastTokenIndex];

        _allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
        _allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index

        // This also deletes the contents at the last position of the array
        delete _allTokensIndex[tokenId];
        _allTokens.pop();
    }
}

File 3 of 13 : Ownable.sol
// SPDX-License-Identifier: MIT

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() {
        _setOwner(_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 {
        _setOwner(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");
        _setOwner(newOwner);
    }

    function _setOwner(address newOwner) private {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

File 4 of 13 : ERC721.sol
// SPDX-License-Identifier: MIT

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 {
        require(operator != _msgSender(), "ERC721: approve to caller");

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

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

    /**
     * @dev See {IERC721-transferFrom}.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public 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);
    }

    /**
     * @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);
    }

    /**
     * @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 of token that is not own");
        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);
    }

    /**
     * @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 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 {}
}

File 5 of 13 : IERC721Enumerable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "../IERC721.sol";

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

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

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

File 6 of 13 : IERC721.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

File 7 of 13 : IERC721Receiver.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

File 8 of 13 : IERC721Metadata.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "../IERC721.sol";

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

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

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

File 9 of 13 : Address.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

File 10 of 13 : Context.sol
// SPDX-License-Identifier: MIT

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 11 of 13 : Strings.sol
// SPDX-License-Identifier: MIT

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 12 of 13 : ERC165.sol
// SPDX-License-Identifier: MIT

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

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":"__baseURI","type":"string"},{"internalType":"string","name":"__contractURI","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":"COST_FIVE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"COST_ONE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"COST_TEN","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_MINT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_PRIVATE_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_PUBLIC_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"addresses","type":"address[]"}],"name":"addToWhitelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"claimedBy","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"freeMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"num","type":"uint256"}],"name":"getCost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"num","type":"uint256"}],"name":"gift","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"isActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isFreeActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"addr","type":"address"}],"name":"isOnWhitelist","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isWhitelistActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"num","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"addresses","type":"address[]"}],"name":"removeFromWhitelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"val","type":"bool"}],"name":"setActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"val","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"contractURI_","type":"string"}],"name":"setContractURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"val","type":"bool"}],"name":"setFreeActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"val","type":"bool"}],"name":"setWhitelistActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"val","type":"uint256"}],"name":"setWhitelistMaxMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"val","type":"uint256"}],"name":"setWhitelistPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalPrivateSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalPublicSupply","outputs":[{"internalType":"uint256","name":"","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":[{"internalType":"address","name":"owner","type":"address"}],"name":"whitelistClaimedBy","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"whitelistCost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"whitelistMaxMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"num","type":"uint256"}],"name":"whitelistMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]

60806040526000600b556001600c556000600d60006101000a81548160ff0219169083151502179055506000600d60016101000a81548160ff0219169083151502179055506000600d60026101000a81548160ff0219169083151502179055506040518060400160405280601881526020017f68747470733a2f2f6368696c6c626c6f636b732e636f6d2f000000000000000081525060119080519060200190620000ac92919062000418565b50348015620000ba57600080fd5b5060405162006104380380620061048339818101604052810190620000e0919062000546565b6040518060400160405280600b81526020017f4368696c6c426c6f636b730000000000000000000000000000000000000000008152506040518060400160405280600581526020017f4348494c4c00000000000000000000000000000000000000000000000000000081525081600090805190602001906200016492919062000418565b5080600190805190602001906200017d92919062000418565b505050620001a062000194620001ca60201b60201c565b620001d260201b60201c565b620001b1826200029860201b60201c565b620001c2816200034360201b60201c565b5050620007d2565b600033905090565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620002a8620001ca60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620002ce620003ee60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000327576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200031e90620005f2565b60405180910390fd5b80601190805190602001906200033f92919062000418565b5050565b62000353620001ca60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1662000379620003ee60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1614620003d2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003c990620005f2565b60405180910390fd5b8060109080519060200190620003ea92919062000418565b5050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b8280546200042690620006ba565b90600052602060002090601f0160209004810192826200044a576000855562000496565b82601f106200046557805160ff191683800117855562000496565b8280016001018555821562000496579182015b828111156200049557825182559160200191906001019062000478565b5b509050620004a59190620004a9565b5090565b5b80821115620004c4576000816000905550600101620004aa565b5090565b6000620004df620004d9846200063d565b62000614565b905082815260208101848484011115620004fe57620004fd62000789565b5b6200050b84828562000684565b509392505050565b600082601f8301126200052b576200052a62000784565b5b81516200053d848260208601620004c8565b91505092915050565b6000806040838503121562000560576200055f62000793565b5b600083015167ffffffffffffffff8111156200058157620005806200078e565b5b6200058f8582860162000513565b925050602083015167ffffffffffffffff811115620005b357620005b26200078e565b5b620005c18582860162000513565b9150509250929050565b6000620005da60208362000673565b9150620005e782620007a9565b602082019050919050565b600060208201905081810360008301526200060d81620005cb565b9050919050565b60006200062062000633565b90506200062e8282620006f0565b919050565b6000604051905090565b600067ffffffffffffffff8211156200065b576200065a62000755565b5b620006668262000798565b9050602081019050919050565b600082825260208201905092915050565b60005b83811015620006a457808201518184015260208101905062000687565b83811115620006b4576000848401525b50505050565b60006002820490506001821680620006d357607f821691505b60208210811415620006ea57620006e962000726565b5b50919050565b620006fb8262000798565b810181811067ffffffffffffffff821117156200071d576200071c62000755565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b61592280620007e26000396000f3fe6080604052600436106102ff5760003560e01c806370a0823111610190578063b88d4fde116100dc578063e214696311610095578063e8a3d4851161006f578063e8a3d48514610b48578063e985e9c514610b73578063f0292a0314610bb0578063f2fde38b14610bdb576102ff565b8063e214696314610ac9578063e6a5931e14610af2578063e7b99ec714610b1d576102ff565b8063b88d4fde146109bb578063c0be9046146109e4578063c3b754dc14610a0f578063c87b56dd14610a38578063cbce4c9714610a75578063cc7eee1e14610a9e576102ff565b80638aa9090a1161014957806395d89b411161012357806395d89b4114610922578063a0712d681461094d578063a22cb46514610969578063acec338a14610992576102ff565b80638aa9090a146108a55780638da5cb5b146108ce578063938e3d7b146108f9576102ff565b806370a08231146107b8578063715018a6146107f5578063717d57d31461080c578063722e141d146108355780637f64978314610860578063868ff4a214610889576102ff565b8063352567a21161024f578063546f4a04116102085780635a4dd47d116101e25780635a4dd47d146107095780635b4c0a25146107465780635b70ea9f146107715780636352211e1461077b576102ff565b8063546f4a041461068c578063548db174146106b757806355f804b3146106e0576102ff565b8063352567a2146105895780633a3ab672146105b45780633ccfd60b146105f157806342842e0e146105fb5780634f6ccce714610624578063524513d614610661576102ff565b806322f3e2d4116102bc5780632a47f799116102965780632a47f799146104b95780632f745c59146104e457806332cb6b0c14610521578063340ee37c1461054c576102ff565b806322f3e2d41461042857806323b872dd1461045357806329998d4b1461047c576102ff565b806301ffc9a714610304578063053d67661461034157806306fdde031461036c578063081812fc14610397578063095ea7b3146103d457806318160ddd146103fd575b600080fd5b34801561031057600080fd5b5061032b60048036038101906103269190614152565b610c04565b6040516103389190614800565b60405180910390f35b34801561034d57600080fd5b50610356610c7e565b6040516103639190614c5d565b60405180910390f35b34801561037857600080fd5b50610381610c84565b60405161038e919061481b565b60405180910390f35b3480156103a357600080fd5b506103be60048036038101906103b991906141f5565b610d16565b6040516103cb9190614799565b60405180910390f35b3480156103e057600080fd5b506103fb60048036038101906103f69190614098565b610d9b565b005b34801561040957600080fd5b50610412610eb3565b60405161041f9190614c5d565b60405180910390f35b34801561043457600080fd5b5061043d610ec0565b60405161044a9190614800565b60405180910390f35b34801561045f57600080fd5b5061047a60048036038101906104759190613f82565b610ed3565b005b34801561048857600080fd5b506104a3600480360381019061049e9190613f15565b610f33565b6040516104b09190614c5d565b60405180910390f35b3480156104c557600080fd5b506104ce610feb565b6040516104db9190614c5d565b60405180910390f35b3480156104f057600080fd5b5061050b60048036038101906105069190614098565b610ff1565b6040516105189190614c5d565b60405180910390f35b34801561052d57600080fd5b50610536611096565b6040516105439190614c5d565b60405180910390f35b34801561055857600080fd5b50610573600480360381019061056e9190613f15565b6110a8565b6040516105809190614c5d565b60405180910390f35b34801561059557600080fd5b5061059e611160565b6040516105ab9190614c5d565b60405180910390f35b3480156105c057600080fd5b506105db60048036038101906105d69190613f15565b611165565b6040516105e89190614800565b60405180910390f35b6105f96111bb565b005b34801561060757600080fd5b50610622600480360381019061061d9190613f82565b6112f5565b005b34801561063057600080fd5b5061064b600480360381019061064691906141f5565b611315565b6040516106589190614c5d565b60405180910390f35b34801561066d57600080fd5b50610676611386565b6040516106839190614800565b60405180910390f35b34801561069857600080fd5b506106a1611399565b6040516106ae9190614c5d565b60405180910390f35b3480156106c357600080fd5b506106de60048036038101906106d991906140d8565b6113a4565b005b3480156106ec57600080fd5b50610707600480360381019061070291906141ac565b61155c565b005b34801561071557600080fd5b50610730600480360381019061072b91906141f5565b6115f2565b60405161073d9190614c5d565b60405180910390f35b34801561075257600080fd5b5061075b611661565b6040516107689190614c5d565b60405180910390f35b61077961166c565b005b34801561078757600080fd5b506107a2600480360381019061079d91906141f5565b611865565b6040516107af9190614799565b60405180910390f35b3480156107c457600080fd5b506107df60048036038101906107da9190613f15565b611917565b6040516107ec9190614c5d565b60405180910390f35b34801561080157600080fd5b5061080a6119cf565b005b34801561081857600080fd5b50610833600480360381019061082e91906141f5565b611a57565b005b34801561084157600080fd5b5061084a611add565b6040516108579190614c5d565b60405180910390f35b34801561086c57600080fd5b50610887600480360381019061088291906140d8565b611ae3565b005b6108a3600480360381019061089e91906141f5565b611c04565b005b3480156108b157600080fd5b506108cc60048036038101906108c79190614125565b611fc4565b005b3480156108da57600080fd5b506108e361205d565b6040516108f09190614799565b60405180910390f35b34801561090557600080fd5b50610920600480360381019061091b91906141ac565b612087565b005b34801561092e57600080fd5b5061093761211d565b604051610944919061481b565b60405180910390f35b610967600480360381019061096291906141f5565b6121af565b005b34801561097557600080fd5b50610990600480360381019061098b9190614058565b612396565b005b34801561099e57600080fd5b506109b960048036038101906109b49190614125565b612517565b005b3480156109c757600080fd5b506109e260048036038101906109dd9190613fd5565b612602565b005b3480156109f057600080fd5b506109f9612664565b604051610a069190614c5d565b60405180910390f35b348015610a1b57600080fd5b50610a366004803603810190610a319190614125565b61266f565b005b348015610a4457600080fd5b50610a5f6004803603810190610a5a91906141f5565b612708565b604051610a6c919061481b565b60405180910390f35b348015610a8157600080fd5b50610a9c6004803603810190610a979190614098565b6127af565b005b348015610aaa57600080fd5b50610ab3612933565b604051610ac09190614800565b60405180910390f35b348015610ad557600080fd5b50610af06004803603810190610aeb91906141f5565b612946565b005b348015610afe57600080fd5b50610b076129cc565b604051610b149190614c5d565b60405180910390f35b348015610b2957600080fd5b50610b326129d2565b604051610b3f9190614c5d565b60405180910390f35b348015610b5457600080fd5b50610b5d6129d8565b604051610b6a919061481b565b60405180910390f35b348015610b7f57600080fd5b50610b9a6004803603810190610b959190613f42565b612a6a565b604051610ba79190614800565b60405180910390f35b348015610bbc57600080fd5b50610bc5612afe565b604051610bd29190614c5d565b60405180910390f35b348015610be757600080fd5b50610c026004803603810190610bfd9190613f15565b612b03565b005b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610c775750610c7682612bfb565b5b9050919050565b600e5481565b606060008054610c9390614f0d565b80601f0160208091040260200160405190810160405280929190818152602001828054610cbf90614f0d565b8015610d0c5780601f10610ce157610100808354040283529160200191610d0c565b820191906000526020600020905b815481529060010190602001808311610cef57829003601f168201915b5050505050905090565b6000610d2182612cdd565b610d60576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d5790614b1d565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610da682611865565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610e17576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e0e90614bbd565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610e36612d49565b73ffffffffffffffffffffffffffffffffffffffff161480610e655750610e6481610e5f612d49565b612a6a565b5b610ea4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e9b90614a3d565b60405180910390fd5b610eae8383612d51565b505050565b6000600880549050905090565b600d60009054906101000a900460ff1681565b610ee4610ede612d49565b82612e0a565b610f23576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f1a90614bdd565b60405180910390fd5b610f2e838383612ee8565b505050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610fa4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f9b9061483d565b60405180910390fd5b601260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6126ac81565b6000610ffc83611917565b821061103d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611034906148bd565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b6126ac60646110a59190614d42565b81565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611119576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111109061483d565b60405180910390fd5b601460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b606481565b6000601360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b6111c3612d49565b73ffffffffffffffffffffffffffffffffffffffff166111e161205d565b73ffffffffffffffffffffffffffffffffffffffff1614611237576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161122e90614b3d565b60405180910390fd5b6000479050600060028261124b9190614d98565b905073d7cc2856e994d992c8c26f9777bb22670ceefb1d73ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f1935050505061129f57600080fd5b730826987f35fca738b388f5d96f503456c478db6173ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f193505050506112f157600080fd5b5050565b61131083838360405180602001604052806000815250612602565b505050565b600061131f610eb3565b8210611360576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161135790614bfd565b60405180910390fd5b60088281548110611374576113736150a6565b5b90600052602060002001549050919050565b600d60029054906101000a900460ff1681565b666a94d74f43000081565b6113ac612d49565b73ffffffffffffffffffffffffffffffffffffffff166113ca61205d565b73ffffffffffffffffffffffffffffffffffffffff1614611420576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161141790614b3d565b60405180910390fd5b60005b8282905081101561155757600073ffffffffffffffffffffffffffffffffffffffff16838383818110611459576114586150a6565b5b905060200201602081019061146e9190613f15565b73ffffffffffffffffffffffffffffffffffffffff1614156114c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114bc9061485d565b60405180910390fd5b6000601360008585858181106114de576114dd6150a6565b5b90506020020160208101906114f39190613f15565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550808061154f90614f70565b915050611423565b505050565b611564612d49565b73ffffffffffffffffffffffffffffffffffffffff1661158261205d565b73ffffffffffffffffffffffffffffffffffffffff16146115d8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115cf90614b3d565b60405180910390fd5b80601190805190602001906115ee929190613cd3565b5050565b60006005821015611617578166b1a2bc2ec500006116109190614dc9565b905061165c565b6004821180156116275750600a82105b156116465781668e1bc9bf04000061163f9190614dc9565b905061165c565b81666a94d74f4300006116599190614dc9565b90505b919050565b66b1a2bc2ec5000081565b600d60019054906101000a900460ff166116bb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116b290614b9d565b60405180910390fd5b6000601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541461173d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161173490614c1d565b60405180910390fd5b6126ac606461174c9190614d42565b611754610eb3565b10611794576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161178b9061493d565b60405180910390fd5b6126ac600f54106117da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117d1906149dd565b60405180910390fd5b6001600f60008282546117ed9190614d42565b925050819055506001601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546118449190614d42565b9250508190555061186333600f54606461185e9190614d42565b613144565b565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561190e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161190590614a7d565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611988576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161197f90614a5d565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6119d7612d49565b73ffffffffffffffffffffffffffffffffffffffff166119f561205d565b73ffffffffffffffffffffffffffffffffffffffff1614611a4b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a4290614b3d565b60405180910390fd5b611a556000613162565b565b611a5f612d49565b73ffffffffffffffffffffffffffffffffffffffff16611a7d61205d565b73ffffffffffffffffffffffffffffffffffffffff1614611ad3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aca90614b3d565b60405180910390fd5b80600b8190555050565b600c5481565b611aeb612d49565b73ffffffffffffffffffffffffffffffffffffffff16611b0961205d565b73ffffffffffffffffffffffffffffffffffffffff1614611b5f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b5690614b3d565b60405180910390fd5b60005b82829050811015611bff57600160136000858585818110611b8657611b856150a6565b5b9050602002016020810190611b9b9190613f15565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508080611bf790614f70565b915050611b62565b505050565b600d60029054906101000a900460ff16611c53576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c4a9061489d565b60405180910390fd5b601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16611cdf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cd690614add565b60405180910390fd5b6001600c54611cee9190614d42565b8110611d2f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d26906148dd565b60405180910390fd5b6001600c54611d3e9190614d42565b81601460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611d899190614d42565b10611dc9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dc09061497d565b60405180910390fd5b6126ac6064611dd89190614d42565b611de0610eb3565b10611e20576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e179061493d565b60405180910390fd5b6126ac600f5410611e66576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e5d906149dd565b60405180910390fd5b3481600b54611e759190614dc9565b1115611eb6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ead90614abd565b60405180910390fd5b60005b81811015611fc0576001600f6000828254611ed49190614d42565b925050819055506000600b541415611f3e576001601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611f369190614d42565b925050819055505b6001601460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611f8e9190614d42565b92505081905550611fad33600f546064611fa89190614d42565b613144565b8080611fb890614f70565b915050611eb9565b5050565b611fcc612d49565b73ffffffffffffffffffffffffffffffffffffffff16611fea61205d565b73ffffffffffffffffffffffffffffffffffffffff1614612040576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161203790614b3d565b60405180910390fd5b80600d60016101000a81548160ff02191690831515021790555050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b61208f612d49565b73ffffffffffffffffffffffffffffffffffffffff166120ad61205d565b73ffffffffffffffffffffffffffffffffffffffff1614612103576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120fa90614b3d565b60405180910390fd5b8060109080519060200190612119929190613cd3565b5050565b60606001805461212c90614f0d565b80601f016020809104026020016040519081016040528092919081815260200182805461215890614f0d565b80156121a55780601f1061217a576101008083540402835291602001916121a5565b820191906000526020600020905b81548152906001019060200180831161218857829003601f168201915b5050505050905090565b600d60009054906101000a900460ff166121fe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121f590614a1d565b60405180910390fd5b6001600a61220c9190614d42565b811061224d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612244906148dd565b60405180910390fd5b6126ac606461225c9190614d42565b612264610eb3565b106122a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161229b9061493d565b60405180910390fd5b6126ac600f54106122ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122e1906149dd565b60405180910390fd5b6122f3816115f2565b341015612335576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161232c90614c3d565b60405180910390fd5b60005b81811015612392576126ac600f54101561237f576001600f600082825461235f9190614d42565b9250508190555061237e33600f5460646123799190614d42565b613144565b5b808061238a90614f70565b915050612338565b5050565b61239e612d49565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561240c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612403906149bd565b60405180910390fd5b8060056000612419612d49565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166124c6612d49565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161250b9190614800565b60405180910390a35050565b61251f612d49565b73ffffffffffffffffffffffffffffffffffffffff1661253d61205d565b73ffffffffffffffffffffffffffffffffffffffff1614612593576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161258a90614b3d565b60405180910390fd5b6000601180546125a290614f0d565b905014156125e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125dc9061487d565b60405180910390fd5b80600d60006101000a81548160ff02191690831515021790555050565b61261361260d612d49565b83612e0a565b612652576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161264990614bdd565b60405180910390fd5b61265e84848484613228565b50505050565b668e1bc9bf04000081565b612677612d49565b73ffffffffffffffffffffffffffffffffffffffff1661269561205d565b73ffffffffffffffffffffffffffffffffffffffff16146126eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126e290614b3d565b60405180910390fd5b80600d60026101000a81548160ff02191690831515021790555050565b606061271382612cdd565b612752576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161274990614b7d565b60405180910390fd5b600061275c613284565b9050600081511161277c57604051806020016040528060008152506127a7565b8061278684613316565b604051602001612797929190614775565b6040516020818303038152906040525b915050919050565b6127b7612d49565b73ffffffffffffffffffffffffffffffffffffffff166127d561205d565b73ffffffffffffffffffffffffffffffffffffffff161461282b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161282290614b3d565b60405180910390fd5b60016126ac606461283c9190614d42565b6128469190614d42565b61284e610eb3565b1061288e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128859061493d565b60405180910390fd5b6001606461289c9190614d42565b81600e546128aa9190614d42565b106128ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128e190614a9d565b60405180910390fd5b60005b8181101561292e576001600e60008282546129089190614d42565b9250508190555061291b83600e54613144565b808061292690614f70565b9150506128ed565b505050565b600d60019054906101000a900460ff1681565b61294e612d49565b73ffffffffffffffffffffffffffffffffffffffff1661296c61205d565b73ffffffffffffffffffffffffffffffffffffffff16146129c2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129b990614b3d565b60405180910390fd5b80600c8190555050565b600f5481565b600b5481565b6060601080546129e790614f0d565b80601f0160208091040260200160405190810160405280929190818152602001828054612a1390614f0d565b8015612a605780601f10612a3557610100808354040283529160200191612a60565b820191906000526020600020905b815481529060010190602001808311612a4357829003601f168201915b5050505050905090565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600a81565b612b0b612d49565b73ffffffffffffffffffffffffffffffffffffffff16612b2961205d565b73ffffffffffffffffffffffffffffffffffffffff1614612b7f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b7690614b3d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612bef576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612be69061491d565b60405180910390fd5b612bf881613162565b50565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480612cc657507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80612cd65750612cd582613477565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16612dc483611865565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000612e1582612cdd565b612e54576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e4b906149fd565b60405180910390fd5b6000612e5f83611865565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480612ece57508373ffffffffffffffffffffffffffffffffffffffff16612eb684610d16565b73ffffffffffffffffffffffffffffffffffffffff16145b80612edf5750612ede8185612a6a565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16612f0882611865565b73ffffffffffffffffffffffffffffffffffffffff1614612f5e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f5590614b5d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612fce576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612fc59061499d565b60405180910390fd5b612fd98383836134e1565b612fe4600082612d51565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546130349190614e23565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461308b9190614d42565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b61315e8282604051806020016040528060008152506135f5565b5050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b613233848484612ee8565b61323f84848484613650565b61327e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613275906148fd565b60405180910390fd5b50505050565b60606011805461329390614f0d565b80601f01602080910402602001604051908101604052809291908181526020018280546132bf90614f0d565b801561330c5780601f106132e15761010080835404028352916020019161330c565b820191906000526020600020905b8154815290600101906020018083116132ef57829003601f168201915b5050505050905090565b6060600082141561335e576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050613472565b600082905060005b6000821461339057808061337990614f70565b915050600a826133899190614d98565b9150613366565b60008167ffffffffffffffff8111156133ac576133ab6150d5565b5b6040519080825280601f01601f1916602001820160405280156133de5781602001600182028036833780820191505090505b5090505b6000851461346b576001826133f79190614e23565b9150600a856134069190614fb9565b60306134129190614d42565b60f81b818381518110613428576134276150a6565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856134649190614d98565b94506133e2565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6134ec8383836137e7565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561352f5761352a816137ec565b61356e565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161461356d5761356c8382613835565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156135b1576135ac816139a2565b6135f0565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16146135ef576135ee8282613a73565b5b5b505050565b6135ff8383613af2565b61360c6000848484613650565b61364b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613642906148fd565b60405180910390fd5b505050565b60006136718473ffffffffffffffffffffffffffffffffffffffff16613cc0565b156137da578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261369a612d49565b8786866040518563ffffffff1660e01b81526004016136bc94939291906147b4565b602060405180830381600087803b1580156136d657600080fd5b505af192505050801561370757506040513d601f19601f82011682018060405250810190613704919061417f565b60015b61378a573d8060008114613737576040519150601f19603f3d011682016040523d82523d6000602084013e61373c565b606091505b50600081511415613782576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613779906148fd565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506137df565b600190505b949350505050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b6000600161384284611917565b61384c9190614e23565b9050600060076000848152602001908152602001600020549050818114613931576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b600060016008805490506139b69190614e23565b90506000600960008481526020019081526020016000205490506000600883815481106139e6576139e56150a6565b5b906000526020600020015490508060088381548110613a0857613a076150a6565b5b906000526020600020018190555081600960008381526020019081526020016000208190555060096000858152602001908152602001600020600090556008805480613a5757613a56615077565b5b6001900381819060005260206000200160009055905550505050565b6000613a7e83611917565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613b62576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613b5990614afd565b60405180910390fd5b613b6b81612cdd565b15613bab576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613ba29061495d565b60405180910390fd5b613bb7600083836134e1565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254613c079190614d42565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b828054613cdf90614f0d565b90600052602060002090601f016020900481019282613d015760008555613d48565b82601f10613d1a57805160ff1916838001178555613d48565b82800160010185558215613d48579182015b82811115613d47578251825591602001919060010190613d2c565b5b509050613d559190613d59565b5090565b5b80821115613d72576000816000905550600101613d5a565b5090565b6000613d89613d8484614c9d565b614c78565b905082815260208101848484011115613da557613da4615113565b5b613db0848285614ecb565b509392505050565b6000613dcb613dc684614cce565b614c78565b905082815260208101848484011115613de757613de6615113565b5b613df2848285614ecb565b509392505050565b600081359050613e0981615890565b92915050565b60008083601f840112613e2557613e24615109565b5b8235905067ffffffffffffffff811115613e4257613e41615104565b5b602083019150836020820283011115613e5e57613e5d61510e565b5b9250929050565b600081359050613e74816158a7565b92915050565b600081359050613e89816158be565b92915050565b600081519050613e9e816158be565b92915050565b600082601f830112613eb957613eb8615109565b5b8135613ec9848260208601613d76565b91505092915050565b600082601f830112613ee757613ee6615109565b5b8135613ef7848260208601613db8565b91505092915050565b600081359050613f0f816158d5565b92915050565b600060208284031215613f2b57613f2a61511d565b5b6000613f3984828501613dfa565b91505092915050565b60008060408385031215613f5957613f5861511d565b5b6000613f6785828601613dfa565b9250506020613f7885828601613dfa565b9150509250929050565b600080600060608486031215613f9b57613f9a61511d565b5b6000613fa986828701613dfa565b9350506020613fba86828701613dfa565b9250506040613fcb86828701613f00565b9150509250925092565b60008060008060808587031215613fef57613fee61511d565b5b6000613ffd87828801613dfa565b945050602061400e87828801613dfa565b935050604061401f87828801613f00565b925050606085013567ffffffffffffffff8111156140405761403f615118565b5b61404c87828801613ea4565b91505092959194509250565b6000806040838503121561406f5761406e61511d565b5b600061407d85828601613dfa565b925050602061408e85828601613e65565b9150509250929050565b600080604083850312156140af576140ae61511d565b5b60006140bd85828601613dfa565b92505060206140ce85828601613f00565b9150509250929050565b600080602083850312156140ef576140ee61511d565b5b600083013567ffffffffffffffff81111561410d5761410c615118565b5b61411985828601613e0f565b92509250509250929050565b60006020828403121561413b5761413a61511d565b5b600061414984828501613e65565b91505092915050565b6000602082840312156141685761416761511d565b5b600061417684828501613e7a565b91505092915050565b6000602082840312156141955761419461511d565b5b60006141a384828501613e8f565b91505092915050565b6000602082840312156141c2576141c161511d565b5b600082013567ffffffffffffffff8111156141e0576141df615118565b5b6141ec84828501613ed2565b91505092915050565b60006020828403121561420b5761420a61511d565b5b600061421984828501613f00565b91505092915050565b61422b81614e57565b82525050565b61423a81614e69565b82525050565b600061424b82614cff565b6142558185614d15565b9350614265818560208601614eda565b61426e81615122565b840191505092915050565b600061428482614d0a565b61428e8185614d26565b935061429e818560208601614eda565b6142a781615122565b840191505092915050565b60006142bd82614d0a565b6142c78185614d37565b93506142d7818560208601614eda565b80840191505092915050565b60006142f0601a83614d26565b91506142fb82615133565b602082019050919050565b6000614313601d83614d26565b915061431e8261515c565b602082019050919050565b6000614336601e83614d26565b915061434182615185565b602082019050919050565b6000614359601783614d26565b9150614364826151ae565b602082019050919050565b600061437c602b83614d26565b9150614387826151d7565b604082019050919050565b600061439f600e83614d26565b91506143aa82615226565b602082019050919050565b60006143c2603283614d26565b91506143cd8261524f565b604082019050919050565b60006143e5602683614d26565b91506143f08261529e565b604082019050919050565b6000614408601183614d26565b9150614413826152ed565b602082019050919050565b600061442b601c83614d26565b915061443682615316565b602082019050919050565b600061444e602083614d26565b91506144598261533f565b602082019050919050565b6000614471602483614d26565b915061447c82615368565b604082019050919050565b6000614494601983614d26565b915061449f826153b7565b602082019050919050565b60006144b7601583614d26565b91506144c2826153e0565b602082019050919050565b60006144da602c83614d26565b91506144e582615409565b604082019050919050565b60006144fd601483614d26565b915061450882615458565b602082019050919050565b6000614520603883614d26565b915061452b82615481565b604082019050919050565b6000614543602a83614d26565b915061454e826154d0565b604082019050919050565b6000614566602983614d26565b91506145718261551f565b604082019050919050565b6000614589601683614d26565b91506145948261556e565b602082019050919050565b60006145ac601983614d26565b91506145b782615597565b602082019050919050565b60006145cf601c83614d26565b91506145da826155c0565b602082019050919050565b60006145f2602083614d26565b91506145fd826155e9565b602082019050919050565b6000614615602c83614d26565b915061462082615612565b604082019050919050565b6000614638602083614d26565b915061464382615661565b602082019050919050565b600061465b602983614d26565b91506146668261568a565b604082019050919050565b600061467e602f83614d26565b9150614689826156d9565b604082019050919050565b60006146a1601a83614d26565b91506146ac82615728565b602082019050919050565b60006146c4602183614d26565b91506146cf82615751565b604082019050919050565b60006146e7603183614d26565b91506146f2826157a0565b604082019050919050565b600061470a602c83614d26565b9150614715826157ef565b604082019050919050565b600061472d601a83614d26565b91506147388261583e565b602082019050919050565b6000614750601783614d26565b915061475b82615867565b602082019050919050565b61476f81614ec1565b82525050565b600061478182856142b2565b915061478d82846142b2565b91508190509392505050565b60006020820190506147ae6000830184614222565b92915050565b60006080820190506147c96000830187614222565b6147d66020830186614222565b6147e36040830185614766565b81810360608301526147f58184614240565b905095945050505050565b60006020820190506148156000830184614231565b92915050565b600060208201905081810360008301526148358184614279565b905092915050565b60006020820190508181036000830152614856816142e3565b9050919050565b6000602082019050818103600083015261487681614306565b9050919050565b6000602082019050818103600083015261489681614329565b9050919050565b600060208201905081810360008301526148b68161434c565b9050919050565b600060208201905081810360008301526148d68161436f565b9050919050565b600060208201905081810360008301526148f681614392565b9050919050565b60006020820190508181036000830152614916816143b5565b9050919050565b60006020820190508181036000830152614936816143d8565b9050919050565b60006020820190508181036000830152614956816143fb565b9050919050565b600060208201905081810360008301526149768161441e565b9050919050565b6000602082019050818103600083015261499681614441565b9050919050565b600060208201905081810360008301526149b681614464565b9050919050565b600060208201905081810360008301526149d681614487565b9050919050565b600060208201905081810360008301526149f6816144aa565b9050919050565b60006020820190508181036000830152614a16816144cd565b9050919050565b60006020820190508181036000830152614a36816144f0565b9050919050565b60006020820190508181036000830152614a5681614513565b9050919050565b60006020820190508181036000830152614a7681614536565b9050919050565b60006020820190508181036000830152614a9681614559565b9050919050565b60006020820190508181036000830152614ab68161457c565b9050919050565b60006020820190508181036000830152614ad68161459f565b9050919050565b60006020820190508181036000830152614af6816145c2565b9050919050565b60006020820190508181036000830152614b16816145e5565b9050919050565b60006020820190508181036000830152614b3681614608565b9050919050565b60006020820190508181036000830152614b568161462b565b9050919050565b60006020820190508181036000830152614b768161464e565b9050919050565b60006020820190508181036000830152614b9681614671565b9050919050565b60006020820190508181036000830152614bb681614694565b9050919050565b60006020820190508181036000830152614bd6816146b7565b9050919050565b60006020820190508181036000830152614bf6816146da565b9050919050565b60006020820190508181036000830152614c16816146fd565b9050919050565b60006020820190508181036000830152614c3681614720565b9050919050565b60006020820190508181036000830152614c5681614743565b9050919050565b6000602082019050614c726000830184614766565b92915050565b6000614c82614c93565b9050614c8e8282614f3f565b919050565b6000604051905090565b600067ffffffffffffffff821115614cb857614cb76150d5565b5b614cc182615122565b9050602081019050919050565b600067ffffffffffffffff821115614ce957614ce86150d5565b5b614cf282615122565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000614d4d82614ec1565b9150614d5883614ec1565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614d8d57614d8c614fea565b5b828201905092915050565b6000614da382614ec1565b9150614dae83614ec1565b925082614dbe57614dbd615019565b5b828204905092915050565b6000614dd482614ec1565b9150614ddf83614ec1565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614e1857614e17614fea565b5b828202905092915050565b6000614e2e82614ec1565b9150614e3983614ec1565b925082821015614e4c57614e4b614fea565b5b828203905092915050565b6000614e6282614ea1565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015614ef8578082015181840152602081019050614edd565b83811115614f07576000848401525b50505050565b60006002820490506001821680614f2557607f821691505b60208210811415614f3957614f38615048565b5b50919050565b614f4882615122565b810181811067ffffffffffffffff82111715614f6757614f666150d5565b5b80604052505050565b6000614f7b82614ec1565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614fae57614fad614fea565b5b600182019050919050565b6000614fc482614ec1565b9150614fcf83614ec1565b925082614fdf57614fde615019565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f5a65726f2061646472657373206e6f7420636c61696d61626c65000000000000600082015250565b7f43616e27742072656d6f766520746865206e756c6c2061646472657373000000600082015250565b7f536574204261736520555249206265666f72652061637469766174696e670000600082015250565b7f57686974656c697374206973206e6f7420616374697665000000000000000000600082015250565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4f766572206d6178206c696d6974000000000000000000000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f416c6c20746f6b656e73206d696e746564000000000000000000000000000000600082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f57686974656c69737420746f6b656e7320616c726561647920636c61696d6564600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4f766572206d6178207075626c6963206c696d69740000000000000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f436f6e747261637420697320696e616374697665000000000000000000000000600082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f45786365656473207072697661746520737570706c7900000000000000000000600082015250565b7f45544820616d6f756e74206973206e6f7420636f727265637400000000000000600082015250565b7f596f7520617265206e6f74206f6e207468652057686974656c69737400000000600082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f46726565206d696e74696e67206973206e6f7420616374697665000000000000600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f4672656520746f6b656e20616c726561647920636c61696d6564000000000000600082015250565b7f4554482073656e74206973206e6f7420636f7272656374000000000000000000600082015250565b61589981614e57565b81146158a457600080fd5b50565b6158b081614e69565b81146158bb57600080fd5b50565b6158c781614e75565b81146158d257600080fd5b50565b6158de81614ec1565b81146158e957600080fd5b5056fea2646970667358221220f0cbd97552a8cb1d6e95a0e4a97952d0352b9d2fb898bd96e80a7a4c91ac868b64736f6c6343000807003300000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000001868747470733a2f2f6368696c6c626c6f636b732e636f6d2f00000000000000000000000000000000000000000000000000000000000000000000000000000035697066733a2f2f516d535431454154696341394b484a5664744232706e6f39364c5741634e4b31766261534c6d63346368394750310000000000000000000000

Deployed Bytecode

0x6080604052600436106102ff5760003560e01c806370a0823111610190578063b88d4fde116100dc578063e214696311610095578063e8a3d4851161006f578063e8a3d48514610b48578063e985e9c514610b73578063f0292a0314610bb0578063f2fde38b14610bdb576102ff565b8063e214696314610ac9578063e6a5931e14610af2578063e7b99ec714610b1d576102ff565b8063b88d4fde146109bb578063c0be9046146109e4578063c3b754dc14610a0f578063c87b56dd14610a38578063cbce4c9714610a75578063cc7eee1e14610a9e576102ff565b80638aa9090a1161014957806395d89b411161012357806395d89b4114610922578063a0712d681461094d578063a22cb46514610969578063acec338a14610992576102ff565b80638aa9090a146108a55780638da5cb5b146108ce578063938e3d7b146108f9576102ff565b806370a08231146107b8578063715018a6146107f5578063717d57d31461080c578063722e141d146108355780637f64978314610860578063868ff4a214610889576102ff565b8063352567a21161024f578063546f4a04116102085780635a4dd47d116101e25780635a4dd47d146107095780635b4c0a25146107465780635b70ea9f146107715780636352211e1461077b576102ff565b8063546f4a041461068c578063548db174146106b757806355f804b3146106e0576102ff565b8063352567a2146105895780633a3ab672146105b45780633ccfd60b146105f157806342842e0e146105fb5780634f6ccce714610624578063524513d614610661576102ff565b806322f3e2d4116102bc5780632a47f799116102965780632a47f799146104b95780632f745c59146104e457806332cb6b0c14610521578063340ee37c1461054c576102ff565b806322f3e2d41461042857806323b872dd1461045357806329998d4b1461047c576102ff565b806301ffc9a714610304578063053d67661461034157806306fdde031461036c578063081812fc14610397578063095ea7b3146103d457806318160ddd146103fd575b600080fd5b34801561031057600080fd5b5061032b60048036038101906103269190614152565b610c04565b6040516103389190614800565b60405180910390f35b34801561034d57600080fd5b50610356610c7e565b6040516103639190614c5d565b60405180910390f35b34801561037857600080fd5b50610381610c84565b60405161038e919061481b565b60405180910390f35b3480156103a357600080fd5b506103be60048036038101906103b991906141f5565b610d16565b6040516103cb9190614799565b60405180910390f35b3480156103e057600080fd5b506103fb60048036038101906103f69190614098565b610d9b565b005b34801561040957600080fd5b50610412610eb3565b60405161041f9190614c5d565b60405180910390f35b34801561043457600080fd5b5061043d610ec0565b60405161044a9190614800565b60405180910390f35b34801561045f57600080fd5b5061047a60048036038101906104759190613f82565b610ed3565b005b34801561048857600080fd5b506104a3600480360381019061049e9190613f15565b610f33565b6040516104b09190614c5d565b60405180910390f35b3480156104c557600080fd5b506104ce610feb565b6040516104db9190614c5d565b60405180910390f35b3480156104f057600080fd5b5061050b60048036038101906105069190614098565b610ff1565b6040516105189190614c5d565b60405180910390f35b34801561052d57600080fd5b50610536611096565b6040516105439190614c5d565b60405180910390f35b34801561055857600080fd5b50610573600480360381019061056e9190613f15565b6110a8565b6040516105809190614c5d565b60405180910390f35b34801561059557600080fd5b5061059e611160565b6040516105ab9190614c5d565b60405180910390f35b3480156105c057600080fd5b506105db60048036038101906105d69190613f15565b611165565b6040516105e89190614800565b60405180910390f35b6105f96111bb565b005b34801561060757600080fd5b50610622600480360381019061061d9190613f82565b6112f5565b005b34801561063057600080fd5b5061064b600480360381019061064691906141f5565b611315565b6040516106589190614c5d565b60405180910390f35b34801561066d57600080fd5b50610676611386565b6040516106839190614800565b60405180910390f35b34801561069857600080fd5b506106a1611399565b6040516106ae9190614c5d565b60405180910390f35b3480156106c357600080fd5b506106de60048036038101906106d991906140d8565b6113a4565b005b3480156106ec57600080fd5b50610707600480360381019061070291906141ac565b61155c565b005b34801561071557600080fd5b50610730600480360381019061072b91906141f5565b6115f2565b60405161073d9190614c5d565b60405180910390f35b34801561075257600080fd5b5061075b611661565b6040516107689190614c5d565b60405180910390f35b61077961166c565b005b34801561078757600080fd5b506107a2600480360381019061079d91906141f5565b611865565b6040516107af9190614799565b60405180910390f35b3480156107c457600080fd5b506107df60048036038101906107da9190613f15565b611917565b6040516107ec9190614c5d565b60405180910390f35b34801561080157600080fd5b5061080a6119cf565b005b34801561081857600080fd5b50610833600480360381019061082e91906141f5565b611a57565b005b34801561084157600080fd5b5061084a611add565b6040516108579190614c5d565b60405180910390f35b34801561086c57600080fd5b50610887600480360381019061088291906140d8565b611ae3565b005b6108a3600480360381019061089e91906141f5565b611c04565b005b3480156108b157600080fd5b506108cc60048036038101906108c79190614125565b611fc4565b005b3480156108da57600080fd5b506108e361205d565b6040516108f09190614799565b60405180910390f35b34801561090557600080fd5b50610920600480360381019061091b91906141ac565b612087565b005b34801561092e57600080fd5b5061093761211d565b604051610944919061481b565b60405180910390f35b610967600480360381019061096291906141f5565b6121af565b005b34801561097557600080fd5b50610990600480360381019061098b9190614058565b612396565b005b34801561099e57600080fd5b506109b960048036038101906109b49190614125565b612517565b005b3480156109c757600080fd5b506109e260048036038101906109dd9190613fd5565b612602565b005b3480156109f057600080fd5b506109f9612664565b604051610a069190614c5d565b60405180910390f35b348015610a1b57600080fd5b50610a366004803603810190610a319190614125565b61266f565b005b348015610a4457600080fd5b50610a5f6004803603810190610a5a91906141f5565b612708565b604051610a6c919061481b565b60405180910390f35b348015610a8157600080fd5b50610a9c6004803603810190610a979190614098565b6127af565b005b348015610aaa57600080fd5b50610ab3612933565b604051610ac09190614800565b60405180910390f35b348015610ad557600080fd5b50610af06004803603810190610aeb91906141f5565b612946565b005b348015610afe57600080fd5b50610b076129cc565b604051610b149190614c5d565b60405180910390f35b348015610b2957600080fd5b50610b326129d2565b604051610b3f9190614c5d565b60405180910390f35b348015610b5457600080fd5b50610b5d6129d8565b604051610b6a919061481b565b60405180910390f35b348015610b7f57600080fd5b50610b9a6004803603810190610b959190613f42565b612a6a565b604051610ba79190614800565b60405180910390f35b348015610bbc57600080fd5b50610bc5612afe565b604051610bd29190614c5d565b60405180910390f35b348015610be757600080fd5b50610c026004803603810190610bfd9190613f15565b612b03565b005b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610c775750610c7682612bfb565b5b9050919050565b600e5481565b606060008054610c9390614f0d565b80601f0160208091040260200160405190810160405280929190818152602001828054610cbf90614f0d565b8015610d0c5780601f10610ce157610100808354040283529160200191610d0c565b820191906000526020600020905b815481529060010190602001808311610cef57829003601f168201915b5050505050905090565b6000610d2182612cdd565b610d60576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d5790614b1d565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610da682611865565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610e17576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e0e90614bbd565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610e36612d49565b73ffffffffffffffffffffffffffffffffffffffff161480610e655750610e6481610e5f612d49565b612a6a565b5b610ea4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e9b90614a3d565b60405180910390fd5b610eae8383612d51565b505050565b6000600880549050905090565b600d60009054906101000a900460ff1681565b610ee4610ede612d49565b82612e0a565b610f23576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f1a90614bdd565b60405180910390fd5b610f2e838383612ee8565b505050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610fa4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f9b9061483d565b60405180910390fd5b601260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6126ac81565b6000610ffc83611917565b821061103d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611034906148bd565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b6126ac60646110a59190614d42565b81565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611119576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111109061483d565b60405180910390fd5b601460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b606481565b6000601360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b6111c3612d49565b73ffffffffffffffffffffffffffffffffffffffff166111e161205d565b73ffffffffffffffffffffffffffffffffffffffff1614611237576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161122e90614b3d565b60405180910390fd5b6000479050600060028261124b9190614d98565b905073d7cc2856e994d992c8c26f9777bb22670ceefb1d73ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f1935050505061129f57600080fd5b730826987f35fca738b388f5d96f503456c478db6173ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f193505050506112f157600080fd5b5050565b61131083838360405180602001604052806000815250612602565b505050565b600061131f610eb3565b8210611360576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161135790614bfd565b60405180910390fd5b60088281548110611374576113736150a6565b5b90600052602060002001549050919050565b600d60029054906101000a900460ff1681565b666a94d74f43000081565b6113ac612d49565b73ffffffffffffffffffffffffffffffffffffffff166113ca61205d565b73ffffffffffffffffffffffffffffffffffffffff1614611420576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161141790614b3d565b60405180910390fd5b60005b8282905081101561155757600073ffffffffffffffffffffffffffffffffffffffff16838383818110611459576114586150a6565b5b905060200201602081019061146e9190613f15565b73ffffffffffffffffffffffffffffffffffffffff1614156114c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114bc9061485d565b60405180910390fd5b6000601360008585858181106114de576114dd6150a6565b5b90506020020160208101906114f39190613f15565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550808061154f90614f70565b915050611423565b505050565b611564612d49565b73ffffffffffffffffffffffffffffffffffffffff1661158261205d565b73ffffffffffffffffffffffffffffffffffffffff16146115d8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115cf90614b3d565b60405180910390fd5b80601190805190602001906115ee929190613cd3565b5050565b60006005821015611617578166b1a2bc2ec500006116109190614dc9565b905061165c565b6004821180156116275750600a82105b156116465781668e1bc9bf04000061163f9190614dc9565b905061165c565b81666a94d74f4300006116599190614dc9565b90505b919050565b66b1a2bc2ec5000081565b600d60019054906101000a900460ff166116bb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116b290614b9d565b60405180910390fd5b6000601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541461173d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161173490614c1d565b60405180910390fd5b6126ac606461174c9190614d42565b611754610eb3565b10611794576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161178b9061493d565b60405180910390fd5b6126ac600f54106117da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117d1906149dd565b60405180910390fd5b6001600f60008282546117ed9190614d42565b925050819055506001601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546118449190614d42565b9250508190555061186333600f54606461185e9190614d42565b613144565b565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561190e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161190590614a7d565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611988576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161197f90614a5d565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6119d7612d49565b73ffffffffffffffffffffffffffffffffffffffff166119f561205d565b73ffffffffffffffffffffffffffffffffffffffff1614611a4b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a4290614b3d565b60405180910390fd5b611a556000613162565b565b611a5f612d49565b73ffffffffffffffffffffffffffffffffffffffff16611a7d61205d565b73ffffffffffffffffffffffffffffffffffffffff1614611ad3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aca90614b3d565b60405180910390fd5b80600b8190555050565b600c5481565b611aeb612d49565b73ffffffffffffffffffffffffffffffffffffffff16611b0961205d565b73ffffffffffffffffffffffffffffffffffffffff1614611b5f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b5690614b3d565b60405180910390fd5b60005b82829050811015611bff57600160136000858585818110611b8657611b856150a6565b5b9050602002016020810190611b9b9190613f15565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508080611bf790614f70565b915050611b62565b505050565b600d60029054906101000a900460ff16611c53576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c4a9061489d565b60405180910390fd5b601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16611cdf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cd690614add565b60405180910390fd5b6001600c54611cee9190614d42565b8110611d2f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d26906148dd565b60405180910390fd5b6001600c54611d3e9190614d42565b81601460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611d899190614d42565b10611dc9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dc09061497d565b60405180910390fd5b6126ac6064611dd89190614d42565b611de0610eb3565b10611e20576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e179061493d565b60405180910390fd5b6126ac600f5410611e66576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e5d906149dd565b60405180910390fd5b3481600b54611e759190614dc9565b1115611eb6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ead90614abd565b60405180910390fd5b60005b81811015611fc0576001600f6000828254611ed49190614d42565b925050819055506000600b541415611f3e576001601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611f369190614d42565b925050819055505b6001601460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611f8e9190614d42565b92505081905550611fad33600f546064611fa89190614d42565b613144565b8080611fb890614f70565b915050611eb9565b5050565b611fcc612d49565b73ffffffffffffffffffffffffffffffffffffffff16611fea61205d565b73ffffffffffffffffffffffffffffffffffffffff1614612040576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161203790614b3d565b60405180910390fd5b80600d60016101000a81548160ff02191690831515021790555050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b61208f612d49565b73ffffffffffffffffffffffffffffffffffffffff166120ad61205d565b73ffffffffffffffffffffffffffffffffffffffff1614612103576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120fa90614b3d565b60405180910390fd5b8060109080519060200190612119929190613cd3565b5050565b60606001805461212c90614f0d565b80601f016020809104026020016040519081016040528092919081815260200182805461215890614f0d565b80156121a55780601f1061217a576101008083540402835291602001916121a5565b820191906000526020600020905b81548152906001019060200180831161218857829003601f168201915b5050505050905090565b600d60009054906101000a900460ff166121fe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121f590614a1d565b60405180910390fd5b6001600a61220c9190614d42565b811061224d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612244906148dd565b60405180910390fd5b6126ac606461225c9190614d42565b612264610eb3565b106122a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161229b9061493d565b60405180910390fd5b6126ac600f54106122ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122e1906149dd565b60405180910390fd5b6122f3816115f2565b341015612335576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161232c90614c3d565b60405180910390fd5b60005b81811015612392576126ac600f54101561237f576001600f600082825461235f9190614d42565b9250508190555061237e33600f5460646123799190614d42565b613144565b5b808061238a90614f70565b915050612338565b5050565b61239e612d49565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561240c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612403906149bd565b60405180910390fd5b8060056000612419612d49565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166124c6612d49565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161250b9190614800565b60405180910390a35050565b61251f612d49565b73ffffffffffffffffffffffffffffffffffffffff1661253d61205d565b73ffffffffffffffffffffffffffffffffffffffff1614612593576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161258a90614b3d565b60405180910390fd5b6000601180546125a290614f0d565b905014156125e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125dc9061487d565b60405180910390fd5b80600d60006101000a81548160ff02191690831515021790555050565b61261361260d612d49565b83612e0a565b612652576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161264990614bdd565b60405180910390fd5b61265e84848484613228565b50505050565b668e1bc9bf04000081565b612677612d49565b73ffffffffffffffffffffffffffffffffffffffff1661269561205d565b73ffffffffffffffffffffffffffffffffffffffff16146126eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126e290614b3d565b60405180910390fd5b80600d60026101000a81548160ff02191690831515021790555050565b606061271382612cdd565b612752576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161274990614b7d565b60405180910390fd5b600061275c613284565b9050600081511161277c57604051806020016040528060008152506127a7565b8061278684613316565b604051602001612797929190614775565b6040516020818303038152906040525b915050919050565b6127b7612d49565b73ffffffffffffffffffffffffffffffffffffffff166127d561205d565b73ffffffffffffffffffffffffffffffffffffffff161461282b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161282290614b3d565b60405180910390fd5b60016126ac606461283c9190614d42565b6128469190614d42565b61284e610eb3565b1061288e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128859061493d565b60405180910390fd5b6001606461289c9190614d42565b81600e546128aa9190614d42565b106128ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128e190614a9d565b60405180910390fd5b60005b8181101561292e576001600e60008282546129089190614d42565b9250508190555061291b83600e54613144565b808061292690614f70565b9150506128ed565b505050565b600d60019054906101000a900460ff1681565b61294e612d49565b73ffffffffffffffffffffffffffffffffffffffff1661296c61205d565b73ffffffffffffffffffffffffffffffffffffffff16146129c2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129b990614b3d565b60405180910390fd5b80600c8190555050565b600f5481565b600b5481565b6060601080546129e790614f0d565b80601f0160208091040260200160405190810160405280929190818152602001828054612a1390614f0d565b8015612a605780601f10612a3557610100808354040283529160200191612a60565b820191906000526020600020905b815481529060010190602001808311612a4357829003601f168201915b5050505050905090565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600a81565b612b0b612d49565b73ffffffffffffffffffffffffffffffffffffffff16612b2961205d565b73ffffffffffffffffffffffffffffffffffffffff1614612b7f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b7690614b3d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612bef576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612be69061491d565b60405180910390fd5b612bf881613162565b50565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480612cc657507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80612cd65750612cd582613477565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16612dc483611865565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000612e1582612cdd565b612e54576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e4b906149fd565b60405180910390fd5b6000612e5f83611865565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480612ece57508373ffffffffffffffffffffffffffffffffffffffff16612eb684610d16565b73ffffffffffffffffffffffffffffffffffffffff16145b80612edf5750612ede8185612a6a565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16612f0882611865565b73ffffffffffffffffffffffffffffffffffffffff1614612f5e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f5590614b5d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612fce576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612fc59061499d565b60405180910390fd5b612fd98383836134e1565b612fe4600082612d51565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546130349190614e23565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461308b9190614d42565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b61315e8282604051806020016040528060008152506135f5565b5050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b613233848484612ee8565b61323f84848484613650565b61327e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613275906148fd565b60405180910390fd5b50505050565b60606011805461329390614f0d565b80601f01602080910402602001604051908101604052809291908181526020018280546132bf90614f0d565b801561330c5780601f106132e15761010080835404028352916020019161330c565b820191906000526020600020905b8154815290600101906020018083116132ef57829003601f168201915b5050505050905090565b6060600082141561335e576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050613472565b600082905060005b6000821461339057808061337990614f70565b915050600a826133899190614d98565b9150613366565b60008167ffffffffffffffff8111156133ac576133ab6150d5565b5b6040519080825280601f01601f1916602001820160405280156133de5781602001600182028036833780820191505090505b5090505b6000851461346b576001826133f79190614e23565b9150600a856134069190614fb9565b60306134129190614d42565b60f81b818381518110613428576134276150a6565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856134649190614d98565b94506133e2565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6134ec8383836137e7565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561352f5761352a816137ec565b61356e565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161461356d5761356c8382613835565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156135b1576135ac816139a2565b6135f0565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16146135ef576135ee8282613a73565b5b5b505050565b6135ff8383613af2565b61360c6000848484613650565b61364b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613642906148fd565b60405180910390fd5b505050565b60006136718473ffffffffffffffffffffffffffffffffffffffff16613cc0565b156137da578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261369a612d49565b8786866040518563ffffffff1660e01b81526004016136bc94939291906147b4565b602060405180830381600087803b1580156136d657600080fd5b505af192505050801561370757506040513d601f19601f82011682018060405250810190613704919061417f565b60015b61378a573d8060008114613737576040519150601f19603f3d011682016040523d82523d6000602084013e61373c565b606091505b50600081511415613782576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613779906148fd565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506137df565b600190505b949350505050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b6000600161384284611917565b61384c9190614e23565b9050600060076000848152602001908152602001600020549050818114613931576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b600060016008805490506139b69190614e23565b90506000600960008481526020019081526020016000205490506000600883815481106139e6576139e56150a6565b5b906000526020600020015490508060088381548110613a0857613a076150a6565b5b906000526020600020018190555081600960008381526020019081526020016000208190555060096000858152602001908152602001600020600090556008805480613a5757613a56615077565b5b6001900381819060005260206000200160009055905550505050565b6000613a7e83611917565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613b62576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613b5990614afd565b60405180910390fd5b613b6b81612cdd565b15613bab576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613ba29061495d565b60405180910390fd5b613bb7600083836134e1565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254613c079190614d42565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b828054613cdf90614f0d565b90600052602060002090601f016020900481019282613d015760008555613d48565b82601f10613d1a57805160ff1916838001178555613d48565b82800160010185558215613d48579182015b82811115613d47578251825591602001919060010190613d2c565b5b509050613d559190613d59565b5090565b5b80821115613d72576000816000905550600101613d5a565b5090565b6000613d89613d8484614c9d565b614c78565b905082815260208101848484011115613da557613da4615113565b5b613db0848285614ecb565b509392505050565b6000613dcb613dc684614cce565b614c78565b905082815260208101848484011115613de757613de6615113565b5b613df2848285614ecb565b509392505050565b600081359050613e0981615890565b92915050565b60008083601f840112613e2557613e24615109565b5b8235905067ffffffffffffffff811115613e4257613e41615104565b5b602083019150836020820283011115613e5e57613e5d61510e565b5b9250929050565b600081359050613e74816158a7565b92915050565b600081359050613e89816158be565b92915050565b600081519050613e9e816158be565b92915050565b600082601f830112613eb957613eb8615109565b5b8135613ec9848260208601613d76565b91505092915050565b600082601f830112613ee757613ee6615109565b5b8135613ef7848260208601613db8565b91505092915050565b600081359050613f0f816158d5565b92915050565b600060208284031215613f2b57613f2a61511d565b5b6000613f3984828501613dfa565b91505092915050565b60008060408385031215613f5957613f5861511d565b5b6000613f6785828601613dfa565b9250506020613f7885828601613dfa565b9150509250929050565b600080600060608486031215613f9b57613f9a61511d565b5b6000613fa986828701613dfa565b9350506020613fba86828701613dfa565b9250506040613fcb86828701613f00565b9150509250925092565b60008060008060808587031215613fef57613fee61511d565b5b6000613ffd87828801613dfa565b945050602061400e87828801613dfa565b935050604061401f87828801613f00565b925050606085013567ffffffffffffffff8111156140405761403f615118565b5b61404c87828801613ea4565b91505092959194509250565b6000806040838503121561406f5761406e61511d565b5b600061407d85828601613dfa565b925050602061408e85828601613e65565b9150509250929050565b600080604083850312156140af576140ae61511d565b5b60006140bd85828601613dfa565b92505060206140ce85828601613f00565b9150509250929050565b600080602083850312156140ef576140ee61511d565b5b600083013567ffffffffffffffff81111561410d5761410c615118565b5b61411985828601613e0f565b92509250509250929050565b60006020828403121561413b5761413a61511d565b5b600061414984828501613e65565b91505092915050565b6000602082840312156141685761416761511d565b5b600061417684828501613e7a565b91505092915050565b6000602082840312156141955761419461511d565b5b60006141a384828501613e8f565b91505092915050565b6000602082840312156141c2576141c161511d565b5b600082013567ffffffffffffffff8111156141e0576141df615118565b5b6141ec84828501613ed2565b91505092915050565b60006020828403121561420b5761420a61511d565b5b600061421984828501613f00565b91505092915050565b61422b81614e57565b82525050565b61423a81614e69565b82525050565b600061424b82614cff565b6142558185614d15565b9350614265818560208601614eda565b61426e81615122565b840191505092915050565b600061428482614d0a565b61428e8185614d26565b935061429e818560208601614eda565b6142a781615122565b840191505092915050565b60006142bd82614d0a565b6142c78185614d37565b93506142d7818560208601614eda565b80840191505092915050565b60006142f0601a83614d26565b91506142fb82615133565b602082019050919050565b6000614313601d83614d26565b915061431e8261515c565b602082019050919050565b6000614336601e83614d26565b915061434182615185565b602082019050919050565b6000614359601783614d26565b9150614364826151ae565b602082019050919050565b600061437c602b83614d26565b9150614387826151d7565b604082019050919050565b600061439f600e83614d26565b91506143aa82615226565b602082019050919050565b60006143c2603283614d26565b91506143cd8261524f565b604082019050919050565b60006143e5602683614d26565b91506143f08261529e565b604082019050919050565b6000614408601183614d26565b9150614413826152ed565b602082019050919050565b600061442b601c83614d26565b915061443682615316565b602082019050919050565b600061444e602083614d26565b91506144598261533f565b602082019050919050565b6000614471602483614d26565b915061447c82615368565b604082019050919050565b6000614494601983614d26565b915061449f826153b7565b602082019050919050565b60006144b7601583614d26565b91506144c2826153e0565b602082019050919050565b60006144da602c83614d26565b91506144e582615409565b604082019050919050565b60006144fd601483614d26565b915061450882615458565b602082019050919050565b6000614520603883614d26565b915061452b82615481565b604082019050919050565b6000614543602a83614d26565b915061454e826154d0565b604082019050919050565b6000614566602983614d26565b91506145718261551f565b604082019050919050565b6000614589601683614d26565b91506145948261556e565b602082019050919050565b60006145ac601983614d26565b91506145b782615597565b602082019050919050565b60006145cf601c83614d26565b91506145da826155c0565b602082019050919050565b60006145f2602083614d26565b91506145fd826155e9565b602082019050919050565b6000614615602c83614d26565b915061462082615612565b604082019050919050565b6000614638602083614d26565b915061464382615661565b602082019050919050565b600061465b602983614d26565b91506146668261568a565b604082019050919050565b600061467e602f83614d26565b9150614689826156d9565b604082019050919050565b60006146a1601a83614d26565b91506146ac82615728565b602082019050919050565b60006146c4602183614d26565b91506146cf82615751565b604082019050919050565b60006146e7603183614d26565b91506146f2826157a0565b604082019050919050565b600061470a602c83614d26565b9150614715826157ef565b604082019050919050565b600061472d601a83614d26565b91506147388261583e565b602082019050919050565b6000614750601783614d26565b915061475b82615867565b602082019050919050565b61476f81614ec1565b82525050565b600061478182856142b2565b915061478d82846142b2565b91508190509392505050565b60006020820190506147ae6000830184614222565b92915050565b60006080820190506147c96000830187614222565b6147d66020830186614222565b6147e36040830185614766565b81810360608301526147f58184614240565b905095945050505050565b60006020820190506148156000830184614231565b92915050565b600060208201905081810360008301526148358184614279565b905092915050565b60006020820190508181036000830152614856816142e3565b9050919050565b6000602082019050818103600083015261487681614306565b9050919050565b6000602082019050818103600083015261489681614329565b9050919050565b600060208201905081810360008301526148b68161434c565b9050919050565b600060208201905081810360008301526148d68161436f565b9050919050565b600060208201905081810360008301526148f681614392565b9050919050565b60006020820190508181036000830152614916816143b5565b9050919050565b60006020820190508181036000830152614936816143d8565b9050919050565b60006020820190508181036000830152614956816143fb565b9050919050565b600060208201905081810360008301526149768161441e565b9050919050565b6000602082019050818103600083015261499681614441565b9050919050565b600060208201905081810360008301526149b681614464565b9050919050565b600060208201905081810360008301526149d681614487565b9050919050565b600060208201905081810360008301526149f6816144aa565b9050919050565b60006020820190508181036000830152614a16816144cd565b9050919050565b60006020820190508181036000830152614a36816144f0565b9050919050565b60006020820190508181036000830152614a5681614513565b9050919050565b60006020820190508181036000830152614a7681614536565b9050919050565b60006020820190508181036000830152614a9681614559565b9050919050565b60006020820190508181036000830152614ab68161457c565b9050919050565b60006020820190508181036000830152614ad68161459f565b9050919050565b60006020820190508181036000830152614af6816145c2565b9050919050565b60006020820190508181036000830152614b16816145e5565b9050919050565b60006020820190508181036000830152614b3681614608565b9050919050565b60006020820190508181036000830152614b568161462b565b9050919050565b60006020820190508181036000830152614b768161464e565b9050919050565b60006020820190508181036000830152614b9681614671565b9050919050565b60006020820190508181036000830152614bb681614694565b9050919050565b60006020820190508181036000830152614bd6816146b7565b9050919050565b60006020820190508181036000830152614bf6816146da565b9050919050565b60006020820190508181036000830152614c16816146fd565b9050919050565b60006020820190508181036000830152614c3681614720565b9050919050565b60006020820190508181036000830152614c5681614743565b9050919050565b6000602082019050614c726000830184614766565b92915050565b6000614c82614c93565b9050614c8e8282614f3f565b919050565b6000604051905090565b600067ffffffffffffffff821115614cb857614cb76150d5565b5b614cc182615122565b9050602081019050919050565b600067ffffffffffffffff821115614ce957614ce86150d5565b5b614cf282615122565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000614d4d82614ec1565b9150614d5883614ec1565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614d8d57614d8c614fea565b5b828201905092915050565b6000614da382614ec1565b9150614dae83614ec1565b925082614dbe57614dbd615019565b5b828204905092915050565b6000614dd482614ec1565b9150614ddf83614ec1565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614e1857614e17614fea565b5b828202905092915050565b6000614e2e82614ec1565b9150614e3983614ec1565b925082821015614e4c57614e4b614fea565b5b828203905092915050565b6000614e6282614ea1565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015614ef8578082015181840152602081019050614edd565b83811115614f07576000848401525b50505050565b60006002820490506001821680614f2557607f821691505b60208210811415614f3957614f38615048565b5b50919050565b614f4882615122565b810181811067ffffffffffffffff82111715614f6757614f666150d5565b5b80604052505050565b6000614f7b82614ec1565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614fae57614fad614fea565b5b600182019050919050565b6000614fc482614ec1565b9150614fcf83614ec1565b925082614fdf57614fde615019565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f5a65726f2061646472657373206e6f7420636c61696d61626c65000000000000600082015250565b7f43616e27742072656d6f766520746865206e756c6c2061646472657373000000600082015250565b7f536574204261736520555249206265666f72652061637469766174696e670000600082015250565b7f57686974656c697374206973206e6f7420616374697665000000000000000000600082015250565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4f766572206d6178206c696d6974000000000000000000000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f416c6c20746f6b656e73206d696e746564000000000000000000000000000000600082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f57686974656c69737420746f6b656e7320616c726561647920636c61696d6564600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4f766572206d6178207075626c6963206c696d69740000000000000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f436f6e747261637420697320696e616374697665000000000000000000000000600082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f45786365656473207072697661746520737570706c7900000000000000000000600082015250565b7f45544820616d6f756e74206973206e6f7420636f727265637400000000000000600082015250565b7f596f7520617265206e6f74206f6e207468652057686974656c69737400000000600082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f46726565206d696e74696e67206973206e6f7420616374697665000000000000600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f4672656520746f6b656e20616c726561647920636c61696d6564000000000000600082015250565b7f4554482073656e74206973206e6f7420636f7272656374000000000000000000600082015250565b61589981614e57565b81146158a457600080fd5b50565b6158b081614e69565b81146158bb57600080fd5b50565b6158c781614e75565b81146158d257600080fd5b50565b6158de81614ec1565b81146158e957600080fd5b5056fea2646970667358221220f0cbd97552a8cb1d6e95a0e4a97952d0352b9d2fb898bd96e80a7a4c91ac868b64736f6c63430008070033

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

00000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000001868747470733a2f2f6368696c6c626c6f636b732e636f6d2f00000000000000000000000000000000000000000000000000000000000000000000000000000035697066733a2f2f516d535431454154696341394b484a5664744232706e6f39364c5741634e4b31766261534c6d63346368394750310000000000000000000000

-----Decoded View---------------
Arg [0] : __baseURI (string): https://chillblocks.com/
Arg [1] : __contractURI (string): ipfs://QmST1EATicA9KHJVdtB2pno96LWAcNK1vbaSLmc4ch9GP1

-----Encoded View---------------
7 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000018
Arg [3] : 68747470733a2f2f6368696c6c626c6f636b732e636f6d2f0000000000000000
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000035
Arg [5] : 697066733a2f2f516d535431454154696341394b484a5664744232706e6f3936
Arg [6] : 4c5741634e4b31766261534c6d63346368394750310000000000000000000000


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

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