ETH Price: $2,861.52 (-10.01%)
Gas: 17 Gwei

Token

Catbotica (CBOT)
 

Overview

Max Total Supply

12,000 CBOT

Holders

1,818

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
5 CBOT
0xd5595395ef72009e6a4ff53d9211157aafde312a
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

CATBOTICA is a hand-drawn, generative pfp project consisting of 12,000 2D assets called Catbots on the Ethereum blockchain as ERC-721 standard non-fungible tokens (NFTs).

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
Catbotica

Compiler Version
v0.8.9+commit.e5eed63a

Optimization Enabled:
Yes with 1000 runs

Other Settings:
default evmVersion
File 1 of 20 : Catbotica.sol
//Contract based on [https://docs.openzeppelin.com/contracts/3.x/erc721](https://docs.openzeppelin.com/contracts/3.x/erc721)
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.9;

import '@openzeppelin/contracts/utils/Counters.sol';
import '@openzeppelin/contracts/access/Ownable.sol';
import '@openzeppelin/contracts/security/Pausable.sol';
import '@openzeppelin/contracts/utils/Strings.sol';
import '@openzeppelin/contracts/interfaces/IERC20.sol';
import '@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol';
import '@openzeppelin/contracts/security/ReentrancyGuard.sol';
import '@openzeppelin/contracts/interfaces/IERC165.sol';
import '@openzeppelin/contracts/interfaces/IERC2981.sol';
import '@openzeppelin/contracts/utils/introspection/ERC165.sol';

contract Catbotica is ERC721Enumerable, Ownable, Pausable, ReentrancyGuard, IERC2981 {
    using Strings for uint256;
    using Counters for Counters.Counter;
    Counters.Counter private _redeemIds;
    Counters.Counter private _tokenIds;

    bool public saleActive = false;
    string public PROVENANCE_HASH;
    string private baseURI;

    string private tokenSuffixURI;
    string private contractMetadata = 'contract.json';
    uint256 public constant TICK_PERIOD = 30 minutes; // Time period to decrease price
    uint256 public constant PUBLIC_SALE_PERIOD = 4 hours; // Dutch Auction Time Period
    uint256 public constant STARTING_PRICE = 200000000000000000; // 0.2 ETH
    uint256 public constant BOTTOM_PRICE = 80000000000000000; // 0.08 ETH
    uint256 public constant SALE_PRICE_STEP = 20000000000000000; // 0.02 ETH
    uint256 public constant PRIVATE_SALE_PRICE = 80000000000000000; // 0.08 ETH
    uint256 public constant MINT_BATCH_LIMIT = 5; // Max number of Tokens minted in a txn
    uint256 public constant RESERVED_TOKEN_ID_OFFSET = 500; // Tokens reserved for RWA list

    uint256 public saleStartsAt;
    uint256 public publicsaleStartsAt;
    uint256 public publicsaleEndsAt;
    uint256 public privatesaleStartsAt;
    uint256 public privatesaleEndsAt;
    uint256 public redemptionEndsAt;

    uint16 public constant MAX_PRIVATE_SALE_SUPPLY = 3000; // Cap for tokens to be sold in private sale is 2500 in addition to 500 for redmeption by RWA list
    uint16 public constant MAX_TOKENS = 12000; // Max number of token sold in  sale
    address[] private recipients;
    uint16[] private splits;
    uint16 public constant SPLIT_BASE = 10000;

    mapping(address => bool) public proxyRegistryAddress;

    // schema of the RWA/PWA list record
    struct waRecord {
        uint8 balance; // amount allowed to redeem
        bool exists; // if the user is whitelisted or not
        bool redeemed;
        uint8 limit; // max num tokens allowed to buy in private sale
        bool minted;
    }

    mapping(address => waRecord) public _waList;

    event TokenMinted(address indexed owner, uint256 indexed quantity);
    event SaleStatusChange(address indexed issuer, bool indexed status);
    event ContractWithdraw(address indexed initiator, uint256 amount);
    event ContractWithdrawToken(address indexed initiator, address indexed token, uint256 amount);
    event ProvenanceHashSet(address indexed initiator, string previousHash, string newHash);
    event WithdrawAddressChanged(address indexed previousAddress, address indexed newAddress);

    uint16 internal royalty = 750; // base 10000, 7.5%
    uint16 public constant BASE = 10000;

    constructor(
        uint256 _saleStartTime,
        uint256 _privateSaleEndsAt,
        uint256 _publicSaleStartsAt,
        uint256 _publicsaleEndsAt,
        uint256 _redemptionEndsAt,
        string memory _baseContractURI,
        string memory _tokenSuffixURI,
        string memory _provenanceHash,
        address[] memory _recipients,
        uint16[] memory _splits,
        address _proxyAddress
    ) ERC721('Catbotica', 'CBOT') {
        baseURI = _baseContractURI;
        tokenSuffixURI = _tokenSuffixURI;
        saleStartsAt = _saleStartTime; // Unix Timestamp for sale starting time
        privatesaleStartsAt = saleStartsAt; // Start Private Sale
        privatesaleEndsAt = _privateSaleEndsAt; // End of Private Sale
        publicsaleStartsAt = _publicSaleStartsAt; // Start of Public Sale
        publicsaleEndsAt = _publicsaleEndsAt; // End of Public Sale
        redemptionEndsAt = _redemptionEndsAt; // End of period for members to redeem free tokens
        PROVENANCE_HASH = _provenanceHash;
        recipients = _recipients;
        splits = _splits;
        proxyRegistryAddress[_proxyAddress] = true;
    }

    function mintNFT(address recipient, uint8 numTokens) public onlyOwner {
        uint256 time = (block.timestamp);
        require(time > privatesaleEndsAt && time < publicsaleStartsAt, 'Not Allowed');
        require(
            (_tokenIds.current() + numTokens + RESERVED_TOKEN_ID_OFFSET) <= MAX_PRIVATE_SALE_SUPPLY,
            'Private sale over'
        );
        for (uint8 i = 0; i < numTokens; i++) {
            _tokenIds.increment();
            _safeMint(recipient, _tokenIds.current() + RESERVED_TOKEN_ID_OFFSET);
        }
        emit TokenMinted(recipient, numTokens);
    }

    function claimUnredeemed(address recipient, uint8 numTokens) public onlyOwner {
        uint256 time = (block.timestamp);
        require(time > redemptionEndsAt, 'Redemption still active');
        require((_redeemIds.current() + numTokens) <= RESERVED_TOKEN_ID_OFFSET, 'Tokens Redeemed');
        for (uint8 i = 0; i < numTokens; i++) {
            _redeemIds.increment();
            _safeMint(recipient, _redeemIds.current());
        }
        emit TokenMinted(recipient, numTokens);
    }

    /**
     * @dev mints equivalent of `msg.sender` whitelisted balance of Catbotica token and assigns it to
     * `msg.sender` by calling _safeMint function. Dedicated for free redemotion for Catbotica RWA List.
     *
     * Emits a {TokenMinted} event.
     * Emits two {TransferSingle} events via ERC721 Contract.
     *
     * Requirements:
     * - `saleActive` must be set to true.
     * - Current timestamp must greater than or equal `saleStartsAt`.
     * - `msg.sender` is among whitelisted Catbotica RWA list members and hasn't redeemed the token before.
     * - Max number of tokens assigned for free redemption not reahced
     */
    function memberRedeem() public {
        require(block.timestamp >= saleStartsAt && block.timestamp < redemptionEndsAt, 'Redeem not active');
        uint8 userBalance = _waList[msg.sender].balance;
        require((_redeemIds.current()) + userBalance <= RESERVED_TOKEN_ID_OFFSET, 'Tokens Redeemed');
        require(_waList[msg.sender].exists, 'Restricted access');
        require(!_waList[msg.sender].redeemed, 'Tokens redeemed');
        _waList[msg.sender].redeemed = true;
        for (uint8 i = 0; i < userBalance; i++) {
            _redeemIds.increment();
            _safeMint(msg.sender, _redeemIds.current());
        }
        emit TokenMinted(msg.sender, userBalance);
    }

    /**
     * @dev mints `numTokens` tokens of Catbotica token and assigns it to
     * `msg.sender` by calling _safeMint function.
     *
     * Emits a {TokenMinted} event.
     * Emits two {TransferSingle} events via ERC721 Contract.
     *
     * Requirements:
     * - `saleActive` must be set to true.
     * - Current timestamp must greater than or equal `saleStartsAt`.
     * - Current timestamp must within period of private sale `privatesaleStartsAt` - `privatesaleEndsAt`.
     * - `msg.sender` is among whitelisted Catbotica memebrs or partners
     * - Ether amount sent greater or equal the base price multipled by `numTokens`.
     * - `numTokens` within limits of max number of tokens minted in single txn.
     * - Max number of tokens for the private sale not reahced
     * @param numTokens - Number of tokens to be minted
     */
    function mintPrivateSale(uint8 numTokens) public payable {
        require(saleActive && block.timestamp >= saleStartsAt, 'Sale not active');
        uint256 time = (block.timestamp);
        require(time > privatesaleStartsAt && time < privatesaleEndsAt, 'Private sale over');
        require(_waList[msg.sender].exists, 'Restricted access');
        require(!_waList[msg.sender].minted, 'Tokens minted');
        uint8 tokenLimit = _waList[msg.sender].limit;
        require(numTokens <= tokenLimit, 'Above limit');

        require(
            (_tokenIds.current() + numTokens + RESERVED_TOKEN_ID_OFFSET) <= MAX_PRIVATE_SALE_SUPPLY,
            'Private sale sold'
        );

        require(msg.value >= PRIVATE_SALE_PRICE * numTokens, 'Insufficient ETH');
        require(numTokens > 0, 'Wrong Num Token');

        for (uint8 i = 0; i < numTokens; i++) {
            _tokenIds.increment();
            _waList[msg.sender].limit = _waList[msg.sender].limit - 1;
            _safeMint(msg.sender, _tokenIds.current() + RESERVED_TOKEN_ID_OFFSET);
        }
        if (_waList[msg.sender].limit == 0) {
            _waList[msg.sender].minted = true;
        }

        emit TokenMinted(msg.sender, numTokens);
    }

    /**
     * @dev mints `numTokens` tokens of Catbotica token and assigns it to
     * `msg.sender` by calling _safeMint function.
     *
     * Emits a {TokenMinted} event.
     * Emits two {TransferSingle} events via ERC721 Contract.
     *
     * Requirements:
     * - `saleActive` must be set to true.
     * - Current timestamp must greater than or equal `saleStartsAt`.
     * - Current timestamp must within period of public sale `publicsaleStartsAt` - `publicsaleEndsAt`.
     * - Ether amount sent greater or equal the current price multipled by `numTokens`.
     * - `numTokens` within limits of max number of tokens minted in single txn.
     * - Max number of tokens for the sale not reahced
     * @param numTokens - Number of tokens to be minted
     */
    function mintPublicSale(uint8 numTokens) public payable {
        require(saleActive && block.timestamp >= saleStartsAt, 'Sale not active');
        uint256 time = (block.timestamp);
        require(time > publicsaleStartsAt && time < publicsaleEndsAt, 'Public sale over');
        uint256 currentPrice = _getCurrentPrice();
        require(msg.value >= currentPrice * numTokens, 'Insufficient ETH');
        require(numTokens <= MINT_BATCH_LIMIT && numTokens > 0, 'Wrong Num Token');
        require((_tokenIds.current() + numTokens + RESERVED_TOKEN_ID_OFFSET) <= MAX_TOKENS, 'Public sale sold');
        for (uint8 i = 0; i < numTokens; i++) {
            _tokenIds.increment();
            _safeMint(msg.sender, _tokenIds.current() + RESERVED_TOKEN_ID_OFFSET);
        }
        emit TokenMinted(msg.sender, numTokens);
    }

    function _getCurrentPrice() internal view returns (uint256) {
        uint256 time = (block.timestamp);
        uint256 price = BOTTOM_PRICE;

        if (time > (PUBLIC_SALE_PERIOD + publicsaleStartsAt)) {
            return price;
        }
        uint256 timeSlot = (time - publicsaleStartsAt) / TICK_PERIOD;
        if (timeSlot > 0) {
            timeSlot = timeSlot - 1;
        }
        price = STARTING_PRICE - (SALE_PRICE_STEP * timeSlot);
        return price;
    }

    function getCurrentPrice() public view returns (uint256) {
        uint256 time = (block.timestamp);

        if (time < privatesaleEndsAt) {
            return PRIVATE_SALE_PRICE;
        }

        if (time > privatesaleEndsAt && time < publicsaleStartsAt) {
            return STARTING_PRICE;
        }

        return _getCurrentPrice();
    }

    /**
     * @dev Adds list of wallet addresses and their Catbotica membership card balances to whitelisted members in '_memberslist'.
     *
     * @param users - List of wallet addresses
     * @param balances - Whitelisted Users allowed balances for redeem
     * @param limits - Whitelisted Users limit in private sale
     */
    function whitelistMembers(
        address[] memory users,
        uint8[] memory balances,
        uint8[] memory limits
    ) public onlyOwner {
        require(!saleActive, 'Cant whitelist');
        for (uint16 i = 0; i < users.length; i++) {
            _waList[users[i]].exists = true;
            _waList[users[i]].balance = balances[i];
            _waList[users[i]].limit = limits[i];
        }
    }

    /**
     * @dev removes list of wallet addresses of already whitelisted members from '_walist'.
     *
     * @param users - List of wallet addresses
     */
    function removeWhitelistMembers(address[] memory users) public onlyOwner {
        for (uint8 i = 0; i < users.length; i++) {
            delete _waList[users[i]];
        }
    }

    function setBaseURI(string memory baseContractURI) public onlyOwner {
        baseURI = baseContractURI;
    }

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

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

    /**
     * @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 override returns (string memory) {
        return baseURI;
    }

    /**
     * @dev returns the base contract metadata json object
     * this metadat file is used by OpenSea see {https://docs.opensea.io/docs/contract-level-metadata}
     *
     */
    function contractURI() public view returns (string memory) {
        string memory baseContractURI = _baseURI();
        return string(abi.encodePacked(baseContractURI, contractMetadata));
    }

    /**
     * @dev Changes the sale status 'saleActive' from active to not active and vice versa
     *
     * Only Contract Owner can execute
     *
     * Emits a {SaleStatusChange} event.
     */
    function changeSaleStatus() public onlyOwner {
        saleActive = !saleActive;
        emit SaleStatusChange(msg.sender, saleActive);
    }

    /**
     * @dev withdraws the contract balance and send it to the withdraw Addresses based on split ratio.
     *
     * Emits a {ContractWithdraw} event.
     */
    function withdraw() public nonReentrant {
        uint256 balance = address(this).balance;

        for (uint256 i = 0; i < recipients.length; i++) {
            (bool sent, ) = payable(recipients[i]).call{value: (balance * splits[i]) / SPLIT_BASE}('');
            require(sent, 'Withdraw Failed.');
        }

        emit ContractWithdraw(msg.sender, balance);
    }

    /**
     * @dev Queries `_memberslist` and returns if '_address' exists or not.
     *
     * @param _address - user address
     */
    function isWhitelisted(address _address) public view returns (bool) {
        return (_waList[_address].exists);
    }

    /// @notice Calculate the royalty payment
    /// @param _salePrice the sale price of the token
    function royaltyInfo(uint256, uint256 _salePrice)
        external
        view
        override
        returns (address receiver, uint256 royaltyAmount)
    {
        return (address(this), (_salePrice * royalty) / BASE);
    }

    /// @dev set the royalty
    /// @param _royalty the royalty in base 10000, 500 = 5%
    function setRoyalty(uint16 _royalty) public onlyOwner {
        require(_royalty >= 0 && _royalty <= 1000, 'Royalty must be between 0% and 10%.');

        royalty = _royalty;
    }

    /// @dev withdraw ERC20 tokens divided by splits
    function withdrawTokens(address _tokenContract) external nonReentrant {
        IERC20 tokenContract = IERC20(_tokenContract);
        // transfer the token from address of Catbotica address
        uint256 balance = tokenContract.balanceOf(address(this));

        for (uint256 i = 0; i < recipients.length; i++) {
            tokenContract.transfer(recipients[i], (balance * splits[i]) / SPLIT_BASE);
        }

        emit ContractWithdrawToken(msg.sender, _tokenContract, balance);
    }

    function supportsInterface(bytes4 interfaceId) public view override(ERC721Enumerable, IERC165) returns (bool) {
        return interfaceId == type(IERC2981).interfaceId || super.supportsInterface(interfaceId);
    }

    function changeWithdrawAddress(address _recipient) external {
        require(_recipient != address(0), 'Cannot use zero address');
        require(_recipient != address(this), 'Cannot use this contract address');

        // loop over all the recipients and update the address
        bool _found = false;
        for (uint256 i = 0; i < recipients.length; i++) {
            // if the sender matches one of the recipients, update the address
            if (recipients[i] == msg.sender) {
                recipients[i] = _recipient;
                _found = true;
                break;
            }
        }
        require(_found, 'The sender is not a recipient.');
        emit WithdrawAddressChanged(msg.sender, _recipient);
    }

    function getRemPrivateSaleSupply() public view returns (uint256) {
        if (_tokenIds.current() > (MAX_PRIVATE_SALE_SUPPLY - RESERVED_TOKEN_ID_OFFSET)) return 0;
        return (MAX_PRIVATE_SALE_SUPPLY - RESERVED_TOKEN_ID_OFFSET - _tokenIds.current());
    }

    function getRemPublicSaleSupply() public view returns (uint256) {
        return (MAX_TOKENS - RESERVED_TOKEN_ID_OFFSET - _tokenIds.current());
    }

    // function getTotalPrivateSaleSupply() public pure returns (uint256) {
    //     return MAX_PRIVATE_SALE_SUPPLY;
    // }

    // function getTotalPublicSaleSupply() public pure returns (uint256) {
    //     return MAX_TOKENS;
    // }

    /*
     * Set the provenance
     *
     * Only Contract Owner can execute
     *
     */
    function setProvenanceHash(string memory provenanceHash) public onlyOwner {
        emit ProvenanceHashSet(msg.sender, PROVENANCE_HASH, provenanceHash);
        PROVENANCE_HASH = provenanceHash;
    }

    /*
     * Function to allow receiving ETH sent to contract
     *
     */
    receive() external payable {}

    /**
     * Override isApprovedForAll to whitelisted marketplaces to enable gas-free listings.
     *
     */
    function isApprovedForAll(address _owner, address _operator) public view override returns (bool isOperator) {
        // check if this is an approved marketplace
        if (proxyRegistryAddress[_operator]) {
            return true;
        }
        // otherwise, use the default ERC721 isApprovedForAll()
        return super.isApprovedForAll(_owner, _operator);
    }

    /*
     * Function to set status of proxy contracts addresses
     *
     */
    function setProxy(address _proxyAddress, bool _value) public onlyOwner {
        proxyRegistryAddress[_proxyAddress] = _value;
    }
}

File 2 of 20 : Counters.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

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

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

File 3 of 20 : 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 20 : Pausable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

    bool private _paused;

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

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

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

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

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

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

File 5 of 20 : 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 6 of 20 : IERC20.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "../token/ERC20/IERC20.sol";

File 7 of 20 : 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 8 of 20 : ReentrancyGuard.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

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

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

        _;

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

File 9 of 20 : IERC165.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

File 10 of 20 : IERC2981.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./IERC165.sol";

/**
 * @dev Interface for the NFT Royalty Standard
 */
interface IERC2981 is IERC165 {
    /**
     * @dev Called with the sale price to determine how much royalty is owed and to whom.
     * @param tokenId - the NFT asset queried for royalty information
     * @param salePrice - the sale price of the NFT asset specified by `tokenId`
     * @return receiver - address of who should be sent the royalty payment
     * @return royaltyAmount - the royalty payment amount for `salePrice`
     */
    function royaltyInfo(uint256 tokenId, uint256 salePrice)
        external
        view
        returns (address receiver, uint256 royaltyAmount);
}

File 11 of 20 : 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 12 of 20 : 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 13 of 20 : IERC20.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns the amount of tokens owned by `account`.
     */
    function balanceOf(address account) external view returns (uint256);

    /**
     * @dev Moves `amount` tokens from the caller's account to `recipient`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address recipient, uint256 amount) external returns (bool);

    /**
     * @dev Returns the remaining number of tokens that `spender` will be
     * allowed to spend on behalf of `owner` through {transferFrom}. This is
     * zero by default.
     *
     * This value changes when {approve} or {transferFrom} are called.
     */
    function allowance(address owner, address spender) external view returns (uint256);

    /**
     * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * IMPORTANT: Beware that changing an allowance with this method brings the risk
     * that someone may use both the old and the new allowance by unfortunate
     * transaction ordering. One possible solution to mitigate this race
     * condition is to first reduce the spender's allowance to 0 and set the
     * desired value afterwards:
     * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
     *
     * Emits an {Approval} event.
     */
    function approve(address spender, uint256 amount) external returns (bool);

    /**
     * @dev Moves `amount` tokens from `sender` to `recipient` using the
     * allowance mechanism. `amount` is then deducted from the caller's
     * allowance.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address sender,
        address recipient,
        uint256 amount
    ) external returns (bool);

    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

    /**
     * @dev Emitted when the allowance of a `spender` for an `owner` is set by
     * a call to {approve}. `value` is the new allowance.
     */
    event Approval(address indexed owner, address indexed spender, uint256 value);
}

File 14 of 20 : 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 15 of 20 : 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 16 of 20 : 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 17 of 20 : 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 18 of 20 : 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 19 of 20 : 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 20 of 20 : 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": true,
    "runs": 1000
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "devdoc",
        "userdoc",
        "metadata",
        "abi"
      ]
    }
  },
  "metadata": {
    "useLiteralContent": true
  },
  "libraries": {}
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"uint256","name":"_saleStartTime","type":"uint256"},{"internalType":"uint256","name":"_privateSaleEndsAt","type":"uint256"},{"internalType":"uint256","name":"_publicSaleStartsAt","type":"uint256"},{"internalType":"uint256","name":"_publicsaleEndsAt","type":"uint256"},{"internalType":"uint256","name":"_redemptionEndsAt","type":"uint256"},{"internalType":"string","name":"_baseContractURI","type":"string"},{"internalType":"string","name":"_tokenSuffixURI","type":"string"},{"internalType":"string","name":"_provenanceHash","type":"string"},{"internalType":"address[]","name":"_recipients","type":"address[]"},{"internalType":"uint16[]","name":"_splits","type":"uint16[]"},{"internalType":"address","name":"_proxyAddress","type":"address"}],"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":"initiator","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"ContractWithdraw","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"initiator","type":"address"},{"indexed":true,"internalType":"address","name":"token","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"ContractWithdrawToken","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"initiator","type":"address"},{"indexed":false,"internalType":"string","name":"previousHash","type":"string"},{"indexed":false,"internalType":"string","name":"newHash","type":"string"}],"name":"ProvenanceHashSet","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"issuer","type":"address"},{"indexed":true,"internalType":"bool","name":"status","type":"bool"}],"name":"SaleStatusChange","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"TokenMinted","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"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousAddress","type":"address"},{"indexed":true,"internalType":"address","name":"newAddress","type":"address"}],"name":"WithdrawAddressChanged","type":"event"},{"inputs":[],"name":"BASE","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"BOTTOM_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_PRIVATE_SALE_SUPPLY","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_TOKENS","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MINT_BATCH_LIMIT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PRIVATE_SALE_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PROVENANCE_HASH","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PUBLIC_SALE_PERIOD","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"RESERVED_TOKEN_ID_OFFSET","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"SALE_PRICE_STEP","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"SPLIT_BASE","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"STARTING_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"TICK_PERIOD","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_waList","outputs":[{"internalType":"uint8","name":"balance","type":"uint8"},{"internalType":"bool","name":"exists","type":"bool"},{"internalType":"bool","name":"redeemed","type":"bool"},{"internalType":"uint8","name":"limit","type":"uint8"},{"internalType":"bool","name":"minted","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"changeSaleStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_recipient","type":"address"}],"name":"changeWithdrawAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint8","name":"numTokens","type":"uint8"}],"name":"claimUnredeemed","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getCurrentPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getRemPrivateSaleSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getRemPublicSaleSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"},{"internalType":"address","name":"_operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"isOperator","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"isWhitelisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"memberRedeem","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint8","name":"numTokens","type":"uint8"}],"name":"mintNFT","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint8","name":"numTokens","type":"uint8"}],"name":"mintPrivateSale","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint8","name":"numTokens","type":"uint8"}],"name":"mintPublicSale","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":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"privatesaleEndsAt","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"privatesaleStartsAt","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"proxyRegistryAddress","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicsaleEndsAt","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicsaleStartsAt","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"redemptionEndsAt","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"users","type":"address[]"}],"name":"removeWhitelistMembers","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"_salePrice","type":"uint256"}],"name":"royaltyInfo","outputs":[{"internalType":"address","name":"receiver","type":"address"},{"internalType":"uint256","name":"royaltyAmount","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"saleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"saleStartsAt","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseContractURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"provenanceHash","type":"string"}],"name":"setProvenanceHash","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_proxyAddress","type":"address"},{"internalType":"bool","name":"_value","type":"bool"}],"name":"setProxy","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"_royalty","type":"uint16"}],"name":"setRoyalty","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"users","type":"address[]"},{"internalType":"uint8[]","name":"balances","type":"uint8[]"},{"internalType":"uint8[]","name":"limits","type":"uint8[]"}],"name":"whitelistMembers","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_tokenContract","type":"address"}],"name":"withdrawTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

600e805460ff1916905560c0604052600d60808190526c31b7b73a3930b1ba173539b7b760991b60a09081526200003a916012919062000221565b50601d805461ffff19166102ee1790553480156200005757600080fd5b5060405162004b6a38038062004b6a8339810160408190526200007a91620005d6565b6040805180820182526009815268436174626f7469636160b81b60208083019182528351808501909452600484526310d093d560e21b908401528151919291620000c79160009162000221565b508051620000dd90600190602084019062000221565b505050620000fa620000f4620001cb60201b60201c565b620001cf565b600a805460ff60a01b191690556001600b5585516200012190601090602089019062000221565b5084516200013790601190602088019062000221565b5060138b905560168b905560178a905560148990556015889055601887905583516200016b90600f90602087019062000221565b50825162000181906019906020860190620002b0565b5081516200019790601a90602085019062000308565b506001600160a01b03166000908152601b60205260409020805460ff19166001179055506200075798505050505050505050565b3390565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200022f906200071a565b90600052602060002090601f0160209004810192826200025357600085556200029e565b82601f106200026e57805160ff19168380011785556200029e565b828001600101855582156200029e579182015b828111156200029e57825182559160200191906001019062000281565b50620002ac929150620003ae565b5090565b8280548282559060005260206000209081019282156200029e579160200282015b828111156200029e57825182546001600160a01b0319166001600160a01b03909116178255602090920191600190910190620002d1565b82805482825590600052602060002090600f016010900481019282156200029e5791602002820160005b838211156200037457835183826101000a81548161ffff021916908361ffff160217905550926020019260020160208160010104928301926001030262000332565b8015620003a45782816101000a81549061ffff021916905560020160208160010104928301926001030262000374565b5050620002ac9291505b5b80821115620002ac5760008155600101620003af565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f191681016001600160401b0381118282101715620004065762000406620003c5565b604052919050565b600082601f8301126200042057600080fd5b81516001600160401b038111156200043c576200043c620003c5565b602062000452601f8301601f19168201620003db565b82815285828487010111156200046757600080fd5b60005b83811015620004875785810183015182820184015282016200046a565b83811115620004995760008385840101525b5095945050505050565b60006001600160401b03821115620004bf57620004bf620003c5565b5060051b60200190565b80516001600160a01b0381168114620004e157600080fd5b919050565b600082601f830112620004f857600080fd5b81516020620005116200050b83620004a3565b620003db565b82815260059290921b840181019181810190868411156200053157600080fd5b8286015b8481101562000557576200054981620004c9565b835291830191830162000535565b509695505050505050565b600082601f8301126200057457600080fd5b81516020620005876200050b83620004a3565b82815260059290921b84018101918181019086841115620005a757600080fd5b8286015b848110156200055757805161ffff81168114620005c85760008081fd5b8352918301918301620005ab565b60008060008060008060008060008060006101608c8e031215620005f957600080fd5b8b519a5060208c0151995060408c0151985060608c0151975060808c0151965060a08c015160018060401b038111156200063257600080fd5b620006408e828f016200040e565b60c08e015190975090506001600160401b038111156200065f57600080fd5b6200066d8e828f016200040e565b60e08e015190965090506001600160401b038111156200068c57600080fd5b6200069a8e828f016200040e565b6101008e015190955090506001600160401b03811115620006ba57600080fd5b620006c88e828f01620004e6565b6101208e015190945090506001600160401b03811115620006e857600080fd5b620006f68e828f0162000562565b925050620007086101408d01620004c9565b90509295989b509295989b9093969950565b600181811c908216806200072f57607f821691505b602082108114156200075157634e487b7160e01b600052602260045260246000fd5b50919050565b61440380620007676000396000f3fe6080604052600436106103bc5760003560e01c80636352211e116101f2578063c197b0f71161010d578063ec342ad0116100a0578063f82ab2ec1161006f578063f82ab2ec146104ce578063fc42b25814610aa1578063fc8ff57914610b2e578063ff1b655614610b4457600080fd5b8063ec342ad01461098c578063f2fde38b14610a50578063f47c84c514610a70578063f79dc6f714610a8657600080fd5b8063d12f7029116100dc578063d12f7029146109ea578063e8a3d48514610a06578063e985e9c514610a1b578063eb91d37e14610a3b57600080fd5b8063c197b0f71461098c578063c31f2d1d146109a2578063c87b56dd146109b5578063ca1d953c146109d557600080fd5b806395d89b4111610185578063a5b16f5111610154578063a5b16f511461092d578063a76824d714610943578063b1a139c814610956578063b88d4fde1461096c57600080fd5b806395d89b41146108ce5780639f34835e146108e3578063a1397622146108f8578063a22cb4651461090d57600080fd5b806375d4f952116101c157806375d4f952146108475780637a329b281461087057806383476385146108905780638da5cb5b146108b057600080fd5b80636352211e146107d857806368428a1b146107f857806370a0823114610812578063715018a61461083257600080fd5b80632dc04e46116102e25780634bc9684a1161027557806355f804b31161024457806355f804b31461075c57806358194bca1461077c578063583e88ab146107925780635c975abb146107a857600080fd5b80634bc9684a146106f05780634bd71adc146107065780634f6ccce71461071c57806351a39a581461073c57600080fd5b80633ccfd60b116102b15780633ccfd60b1461068557806342842e0e1461069a57806345763d0c146106ba57806349df728c146106d057600080fd5b80632dc04e46146105f15780632f745c591461060757806336e79a5a146106275780633af32abf1461064757600080fd5b8063138a6cf61161035a5780631f3e1be9116103295780631f3e1be91461054257806323b872dd146105725780632a55205a146105925780632ca47c6d146105d157600080fd5b8063138a6cf6146104ce578063143a3f92146104f85780631453671d1461050d57806318160ddd1461052d57600080fd5b8063095ea7b311610396578063095ea7b31461045757806310969523146104795780631146e602146104995780631299a0fb146104ae57600080fd5b806301ffc9a7146103c857806306fdde03146103fd578063081812fc1461041f57600080fd5b366103c357005b600080fd5b3480156103d457600080fd5b506103e86103e3366004613ac7565b610b59565b60405190151581526020015b60405180910390f35b34801561040957600080fd5b50610412610b9d565b6040516103f49190613b3c565b34801561042b57600080fd5b5061043f61043a366004613b4f565b610c2f565b6040516001600160a01b0390911681526020016103f4565b34801561046357600080fd5b50610477610472366004613b84565b610cc9565b005b34801561048557600080fd5b50610477610494366004613c4d565b610dfb565b3480156104a557600080fd5b50610477610e9e565b3480156104ba57600080fd5b506104776104c9366004613d9f565b6110d2565b3480156104da57600080fd5b506104ea67011c37937e08000081565b6040519081526020016103f4565b34801561050457600080fd5b506104ea600581565b34801561051957600080fd5b50610477610528366004613e27565b6112ea565b34801561053957600080fd5b506008546104ea565b34801561054e57600080fd5b506103e861055d366004613e27565b601b6020526000908152604090205460ff1681565b34801561057e57600080fd5b5061047761058d366004613e42565b6114c4565b34801561059e57600080fd5b506105b26105ad366004613e7e565b61154b565b604080516001600160a01b0390931683526020830191909152016103f4565b3480156105dd57600080fd5b506104776105ec366004613ea0565b61157c565b3480156105fd57600080fd5b506104ea60165481565b34801561061357600080fd5b506104ea610622366004613b84565b611723565b34801561063357600080fd5b50610477610642366004613ed3565b6117cb565b34801561065357600080fd5b506103e8610662366004613e27565b6001600160a01b03166000908152601c6020526040902054610100900460ff1690565b34801561069157600080fd5b506104776118a7565b3480156106a657600080fd5b506104776106b5366004613e42565b611a6a565b3480156106c657600080fd5b506104ea60135481565b3480156106dc57600080fd5b506104776106eb366004613e27565b611a85565b3480156106fc57600080fd5b506104ea61070881565b34801561071257600080fd5b506104ea6101f481565b34801561072857600080fd5b506104ea610737366004613b4f565b611ce4565b34801561074857600080fd5b50610477610757366004613f05565b611d88565b34801561076857600080fd5b50610477610777366004613c4d565b611dfb565b34801561078857600080fd5b506104ea60155481565b34801561079e57600080fd5b506104ea60145481565b3480156107b457600080fd5b50600a5474010000000000000000000000000000000000000000900460ff166103e8565b3480156107e457600080fd5b5061043f6107f3366004613b4f565b611e56565b34801561080457600080fd5b50600e546103e89060ff1681565b34801561081e57600080fd5b506104ea61082d366004613e27565b611ee1565b34801561083e57600080fd5b50610477611f7b565b34801561085357600080fd5b5061085d610bb881565b60405161ffff90911681526020016103f4565b34801561087c57600080fd5b5061047761088b366004613ea0565b611fcf565b34801561089c57600080fd5b506104776108ab366004613f3c565b612110565b3480156108bc57600080fd5b50600a546001600160a01b031661043f565b3480156108da57600080fd5b506104126121c1565b3480156108ef57600080fd5b506104ea6121d0565b34801561090457600080fd5b506104ea61220f565b34801561091957600080fd5b50610477610928366004613f05565b612228565b34801561093957600080fd5b506104ea61384081565b610477610951366004613f71565b6122ed565b34801561096257600080fd5b506104ea60185481565b34801561097857600080fd5b50610477610987366004613f8c565b61271e565b34801561099857600080fd5b5061085d61271081565b6104776109b0366004613f71565b6127a6565b3480156109c157600080fd5b506104126109d0366004613b4f565b612a1d565b3480156109e157600080fd5b50610477612b09565b3480156109f657600080fd5b506104ea6702c68af0bb14000081565b348015610a1257600080fd5b50610412612b98565b348015610a2757600080fd5b506103e8610a36366004614008565b612bcf565b348015610a4757600080fd5b506104ea612c26565b348015610a5c57600080fd5b50610477610a6b366004613e27565b612c78565b348015610a7c57600080fd5b5061085d612ee081565b348015610a9257600080fd5b506104ea66470de4df82000081565b348015610aad57600080fd5b50610af9610abc366004613e27565b601c6020526000908152604090205460ff808216916101008104821691620100008204811691630100000081048216916401000000009091041685565b6040805160ff96871681529415156020860152921515928401929092529092166060820152901515608082015260a0016103f4565b348015610b3a57600080fd5b506104ea60175481565b348015610b5057600080fd5b50610412612d48565b60006001600160e01b031982167f2a55205a000000000000000000000000000000000000000000000000000000001480610b975750610b9782612dd6565b92915050565b606060008054610bac90614032565b80601f0160208091040260200160405190810160405280929190818152602001828054610bd890614032565b8015610c255780601f10610bfa57610100808354040283529160200191610c25565b820191906000526020600020905b815481529060010190602001808311610c0857829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b0316610cad5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b6000610cd482611e56565b9050806001600160a01b0316836001600160a01b03161415610d5e5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560448201527f72000000000000000000000000000000000000000000000000000000000000006064820152608401610ca4565b336001600160a01b0382161480610d7a5750610d7a8133612bcf565b610dec5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610ca4565b610df68383612e14565b505050565b600a546001600160a01b03163314610e435760405162461bcd60e51b815260206004820181905260248201526000805160206143ae8339815191526044820152606401610ca4565b336001600160a01b03167f1cc4bb0a279bf9b4df4bb7260cdd54995304640e17dfda43047018d82ec3b26c600f83604051610e7f92919061406d565b60405180910390a28051610e9a90600f906020840190613a18565b5050565b6013544210158015610eb1575060185442105b610efd5760405162461bcd60e51b815260206004820152601160248201527f52656465656d206e6f74206163746976650000000000000000000000000000006044820152606401610ca4565b336000908152601c602052604090205460ff166101f481610f1d600c5490565b610f27919061411c565b1115610f755760405162461bcd60e51b815260206004820152600f60248201527f546f6b656e732052656465656d656400000000000000000000000000000000006044820152606401610ca4565b336000908152601c6020526040902054610100900460ff16610fd95760405162461bcd60e51b815260206004820152601160248201527f52657374726963746564206163636573730000000000000000000000000000006044820152606401610ca4565b336000908152601c602052604090205462010000900460ff161561103f5760405162461bcd60e51b815260206004820152600f60248201527f546f6b656e732072656465656d656400000000000000000000000000000000006044820152606401610ca4565b336000908152601c60205260408120805462ff00001916620100001790555b8160ff168160ff16101561109e5761107a600c80546001019055565b61108c33611087600c5490565b612e8f565b8061109681614134565b91505061105e565b5060405160ff82169033907fb9144c96c86541f6fa89c9f2f02495cccf4b08cd6643e26d34ee00aa586558a890600090a350565b600a546001600160a01b0316331461111a5760405162461bcd60e51b815260206004820181905260248201526000805160206143ae8339815191526044820152606401610ca4565b600e5460ff161561116d5760405162461bcd60e51b815260206004820152600e60248201527f43616e742077686974656c6973740000000000000000000000000000000000006044820152606401610ca4565b60005b83518161ffff1610156112e4576001601c6000868461ffff168151811061119957611199614154565b60200260200101516001600160a01b03166001600160a01b0316815260200190815260200160002060000160016101000a81548160ff021916908315150217905550828161ffff16815181106111f1576111f1614154565b6020026020010151601c6000868461ffff168151811061121357611213614154565b60200260200101516001600160a01b03166001600160a01b0316815260200190815260200160002060000160006101000a81548160ff021916908360ff160217905550818161ffff168151811061126c5761126c614154565b6020026020010151601c6000868461ffff168151811061128e5761128e614154565b60200260200101516001600160a01b03166001600160a01b0316815260200190815260200160002060000160036101000a81548160ff021916908360ff16021790555080806112dc9061416a565b915050611170565b50505050565b6001600160a01b0381166113405760405162461bcd60e51b815260206004820152601760248201527f43616e6e6f7420757365207a65726f20616464726573730000000000000000006044820152606401610ca4565b6001600160a01b0381163014156113995760405162461bcd60e51b815260206004820181905260248201527f43616e6e6f7420757365207468697320636f6e747261637420616464726573736044820152606401610ca4565b6000805b60195481101561143c57336001600160a01b0316601982815481106113c4576113c4614154565b6000918252602090912001546001600160a01b0316141561142a5782601982815481106113f3576113f3614154565b9060005260206000200160006101000a8154816001600160a01b0302191690836001600160a01b031602179055506001915061143c565b806114348161418c565b91505061139d565b508061148a5760405162461bcd60e51b815260206004820152601e60248201527f5468652073656e646572206973206e6f74206120726563697069656e742e00006044820152606401610ca4565b6040516001600160a01b0383169033907f49309b5d08d7bbaebcda96dda577818eee99f98cd01bb4a546ffb81653b4004190600090a35050565b6114ce3382612ea9565b6115405760405162461bcd60e51b815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f7665640000000000000000000000000000006064820152608401610ca4565b610df6838383612f80565b601d5460009081903090612710906115679061ffff16866141a7565b61157191906141dc565b915091509250929050565b600a546001600160a01b031633146115c45760405162461bcd60e51b815260206004820181905260248201526000805160206143ae8339815191526044820152606401610ca4565b6017544290811180156115d8575060145481105b6116245760405162461bcd60e51b815260206004820152600b60248201527f4e6f7420416c6c6f7765640000000000000000000000000000000000000000006044820152606401610ca4565b610bb86101f460ff8416611637600d5490565b611641919061411c565b61164b919061411c565b11156116995760405162461bcd60e51b815260206004820152601160248201527f507269766174652073616c65206f7665720000000000000000000000000000006044820152606401610ca4565b60005b8260ff168160ff1610156116e4576116b8600d80546001019055565b6116d2846101f46116c8600d5490565b611087919061411c565b806116dc81614134565b91505061169c565b5060405160ff8316906001600160a01b038516907fb9144c96c86541f6fa89c9f2f02495cccf4b08cd6643e26d34ee00aa586558a890600090a3505050565b600061172e83611ee1565b82106117a25760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201527f74206f6620626f756e64730000000000000000000000000000000000000000006064820152608401610ca4565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600a546001600160a01b031633146118135760405162461bcd60e51b815260206004820181905260248201526000805160206143ae8339815191526044820152606401610ca4565b6103e88161ffff16111561188f5760405162461bcd60e51b815260206004820152602360248201527f526f79616c7479206d757374206265206265747765656e20302520616e64203160448201527f30252e00000000000000000000000000000000000000000000000000000000006064820152608401610ca4565b601d805461ffff191661ffff92909216919091179055565b6002600b5414156118fa5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610ca4565b6002600b554760005b601954811015611a2c5760006019828154811061192257611922614154565b600091825260209091200154601a80546001600160a01b039092169161271091908590811061195357611953614154565b6000918252602090912060108204015461197d91600f166002026101000a900461ffff16866141a7565b61198791906141dc565b604051600081818185875af1925050503d80600081146119c3576040519150601f19603f3d011682016040523d82523d6000602084013e6119c8565b606091505b5050905080611a195760405162461bcd60e51b815260206004820152601060248201527f5769746864726177204661696c65642e000000000000000000000000000000006044820152606401610ca4565b5080611a248161418c565b915050611903565b5060405181815233907f434a43765b3cd21fa5b240a88fef750a558ba196a12784bdd49335beabc1a39d9060200160405180910390a2506001600b55565b610df68383836040518060200160405280600081525061271e565b6002600b541415611ad85760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610ca4565b6002600b556040517f70a0823100000000000000000000000000000000000000000000000000000000815230600482015281906000906001600160a01b038316906370a082319060240160206040518083038186803b158015611b3a57600080fd5b505afa158015611b4e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611b7291906141f0565b905060005b601954811015611c9957826001600160a01b031663a9059cbb60198381548110611ba357611ba3614154565b600091825260209091200154601a80546001600160a01b0390921691612710919086908110611bd457611bd4614154565b60009182526020909120601082040154611bfe91600f166002026101000a900461ffff16876141a7565b611c0891906141dc565b6040516001600160e01b031960e085901b1681526001600160a01b0390921660048301526024820152604401602060405180830381600087803b158015611c4e57600080fd5b505af1158015611c62573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611c869190614209565b5080611c918161418c565b915050611b77565b506040518181526001600160a01b0384169033907f73298854beb73cf7c63db725c9e244a4c6c2bde8fa5b477fc56d5a8b5c6150d39060200160405180910390a350506001600b5550565b6000611cef60085490565b8210611d635760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201527f7574206f6620626f756e647300000000000000000000000000000000000000006064820152608401610ca4565b60088281548110611d7657611d76614154565b90600052602060002001549050919050565b600a546001600160a01b03163314611dd05760405162461bcd60e51b815260206004820181905260248201526000805160206143ae8339815191526044820152606401610ca4565b6001600160a01b03919091166000908152601b60205260409020805460ff1916911515919091179055565b600a546001600160a01b03163314611e435760405162461bcd60e51b815260206004820181905260248201526000805160206143ae8339815191526044820152606401610ca4565b8051610e9a906010906020840190613a18565b6000818152600260205260408120546001600160a01b031680610b975760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201527f656e7420746f6b656e00000000000000000000000000000000000000000000006064820152608401610ca4565b60006001600160a01b038216611f5f5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a6560448201527f726f2061646472657373000000000000000000000000000000000000000000006064820152608401610ca4565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b03163314611fc35760405162461bcd60e51b815260206004820181905260248201526000805160206143ae8339815191526044820152606401610ca4565b611fcd6000613165565b565b600a546001600160a01b031633146120175760405162461bcd60e51b815260206004820181905260248201526000805160206143ae8339815191526044820152606401610ca4565b6018544290811161206a5760405162461bcd60e51b815260206004820152601760248201527f526564656d7074696f6e207374696c6c206163746976650000000000000000006044820152606401610ca4565b6101f48260ff1661207a600c5490565b612084919061411c565b11156120d25760405162461bcd60e51b815260206004820152600f60248201527f546f6b656e732052656465656d656400000000000000000000000000000000006044820152606401610ca4565b60005b8260ff168160ff1610156116e4576120f1600c80546001019055565b6120fe84611087600c5490565b8061210881614134565b9150506120d5565b600a546001600160a01b031633146121585760405162461bcd60e51b815260206004820181905260248201526000805160206143ae8339815191526044820152606401610ca4565b60005b81518160ff161015610e9a57601c6000838360ff168151811061218057612180614154565b6020908102919091018101516001600160a01b03168252810191909152604001600020805464ffffffffff19169055806121b981614134565b91505061215b565b606060018054610bac90614032565b60006121e06101f4610bb8614226565b600d5411156121ef5750600090565b600d546122006101f4610bb8614226565b61220a9190614226565b905090565b600061221a600d5490565b6122006101f4612ee0614226565b6001600160a01b0382163314156122815760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610ca4565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600e5460ff16801561230157506013544210155b61234d5760405162461bcd60e51b815260206004820152600f60248201527f53616c65206e6f742061637469766500000000000000000000000000000000006044820152606401610ca4565b601654429081118015612361575060175481105b6123ad5760405162461bcd60e51b815260206004820152601160248201527f507269766174652073616c65206f7665720000000000000000000000000000006044820152606401610ca4565b336000908152601c6020526040902054610100900460ff166124115760405162461bcd60e51b815260206004820152601160248201527f52657374726963746564206163636573730000000000000000000000000000006044820152606401610ca4565b336000908152601c6020526040902054640100000000900460ff16156124795760405162461bcd60e51b815260206004820152600d60248201527f546f6b656e73206d696e746564000000000000000000000000000000000000006044820152606401610ca4565b336000908152601c602052604090205460ff630100000090910481169083168110156124e75760405162461bcd60e51b815260206004820152600b60248201527f41626f7665206c696d69740000000000000000000000000000000000000000006044820152606401610ca4565b610bb86101f460ff85166124fa600d5490565b612504919061411c565b61250e919061411c565b111561255c5760405162461bcd60e51b815260206004820152601160248201527f507269766174652073616c6520736f6c640000000000000000000000000000006044820152606401610ca4565b61257160ff841667011c37937e0800006141a7565b3410156125c05760405162461bcd60e51b815260206004820152601060248201527f496e73756666696369656e7420455448000000000000000000000000000000006044820152606401610ca4565b60008360ff16116126135760405162461bcd60e51b815260206004820152600f60248201527f57726f6e67204e756d20546f6b656e00000000000000000000000000000000006044820152606401610ca4565b60005b8360ff168160ff1610156126a757612632600d80546001019055565b336000908152601c6020526040902054612658906001906301000000900460ff1661423d565b336000818152601c60205260409020805460ff9390931663010000000263ff0000001990931692909217909155612695906101f46116c8600d5490565b8061269f81614134565b915050612616565b50336000908152601c60205260409020546301000000900460ff166126e957336000908152601c60205260409020805464ff0000000019166401000000001790555b60405160ff84169033907fb9144c96c86541f6fa89c9f2f02495cccf4b08cd6643e26d34ee00aa586558a890600090a3505050565b6127283383612ea9565b61279a5760405162461bcd60e51b815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f7665640000000000000000000000000000006064820152608401610ca4565b6112e4848484846131c4565b600e5460ff1680156127ba57506013544210155b6128065760405162461bcd60e51b815260206004820152600f60248201527f53616c65206e6f742061637469766500000000000000000000000000000000006044820152606401610ca4565b60145442908111801561281a575060155481105b6128665760405162461bcd60e51b815260206004820152601060248201527f5075626c69632073616c65206f766572000000000000000000000000000000006044820152606401610ca4565b6000612870613242565b905061287f60ff8416826141a7565b3410156128ce5760405162461bcd60e51b815260206004820152601060248201527f496e73756666696369656e7420455448000000000000000000000000000000006044820152606401610ca4565b60058360ff16111580156128e5575060008360ff16115b6129315760405162461bcd60e51b815260206004820152600f60248201527f57726f6e67204e756d20546f6b656e00000000000000000000000000000000006044820152606401610ca4565b612ee06101f460ff8516612944600d5490565b61294e919061411c565b612958919061411c565b11156129a65760405162461bcd60e51b815260206004820152601060248201527f5075626c69632073616c6520736f6c64000000000000000000000000000000006044820152606401610ca4565b60005b8360ff168160ff1610156129e7576129c5600d80546001019055565b6129d5336101f46116c8600d5490565b806129df81614134565b9150506129a9565b5060405160ff84169033907fb9144c96c86541f6fa89c9f2f02495cccf4b08cd6643e26d34ee00aa586558a890600090a3505050565b6000818152600260205260409020546060906001600160a01b0316612aaa5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006064820152608401610ca4565b6000612ab46132c3565b90506000815111612ad45760405180602001604052806000815250612b02565b80612ade846132d2565b6011604051602001612af2939291906142cf565b6040516020818303038152906040525b9392505050565b600a546001600160a01b03163314612b515760405162461bcd60e51b815260206004820181905260248201526000805160206143ae8339815191526044820152606401610ca4565b600e805460ff19811660ff91821615908117909255604051911615159033907fe3f6649f5bc36b8b8c13782cfdb234a2f34ea0a28e750e23ea10b14d550f643590600090a3565b60606000612ba46132c3565b9050806012604051602001612bba92919061430c565b60405160208183030381529060405291505090565b6001600160a01b0381166000908152601b602052604081205460ff1615612bf857506001610b97565b6001600160a01b0380841660009081526005602090815260408083209386168352929052205460ff16612b02565b6017546000904290811015612c445767011c37937e08000091505090565b60175481118015612c56575060145481105b15612c6a576702c68af0bb14000091505090565b612c72613242565b91505090565b600a546001600160a01b03163314612cc05760405162461bcd60e51b815260206004820181905260248201526000805160206143ae8339815191526044820152606401610ca4565b6001600160a01b038116612d3c5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610ca4565b612d4581613165565b50565b600f8054612d5590614032565b80601f0160208091040260200160405190810160405280929190818152602001828054612d8190614032565b8015612dce5780601f10612da357610100808354040283529160200191612dce565b820191906000526020600020905b815481529060010190602001808311612db157829003601f168201915b505050505081565b60006001600160e01b031982167f780e9d63000000000000000000000000000000000000000000000000000000001480610b975750610b9782613404565b6000818152600460205260409020805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0384169081179091558190612e5682611e56565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b610e9a82826040518060200160405280600081525061349f565b6000818152600260205260408120546001600160a01b0316612f225760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610ca4565b6000612f2d83611e56565b9050806001600160a01b0316846001600160a01b03161480612f685750836001600160a01b0316612f5d84610c2f565b6001600160a01b0316145b80612f785750612f788185612bcf565b949350505050565b826001600160a01b0316612f9382611e56565b6001600160a01b03161461300f5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201527f73206e6f74206f776e00000000000000000000000000000000000000000000006064820152608401610ca4565b6001600160a01b03821661308a5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f2061646460448201527f72657373000000000000000000000000000000000000000000000000000000006064820152608401610ca4565b61309583838361351d565b6130a0600082612e14565b6001600160a01b03831660009081526003602052604081208054600192906130c9908490614226565b90915550506001600160a01b03821660009081526003602052604081208054600192906130f790849061411c565b9091555050600081815260026020526040808220805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600a80546001600160a01b0383811673ffffffffffffffffffffffffffffffffffffffff19831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6131cf848484612f80565b6131db848484846135d5565b6112e45760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b6064820152608401610ca4565b601454600090429067011c37937e080000906132609061384061411c565b82111561326d5792915050565b6000610708601454846132809190614226565b61328a91906141dc565b905080156132a05761329d600182614226565b90505b6132b18166470de4df8200006141a7565b612f78906702c68af0bb140000614226565b606060108054610bac90614032565b60608161331257505060408051808201909152600181527f3000000000000000000000000000000000000000000000000000000000000000602082015290565b8160005b811561333c57806133268161418c565b91506133359050600a836141dc565b9150613316565b60008167ffffffffffffffff81111561335757613357613bae565b6040519080825280601f01601f191660200182016040528015613381576020820181803683370190505b5090505b8415612f7857613396600183614226565b91506133a3600a8661432a565b6133ae90603061411c565b60f81b8183815181106133c3576133c3614154565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053506133fd600a866141dc565b9450613385565b60006001600160e01b031982167f80ac58cd00000000000000000000000000000000000000000000000000000000148061346757506001600160e01b031982167f5b5e139f00000000000000000000000000000000000000000000000000000000145b80610b9757507f01ffc9a7000000000000000000000000000000000000000000000000000000006001600160e01b0319831614610b97565b6134a9838361372d565b6134b660008484846135d5565b610df65760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b6064820152608401610ca4565b6001600160a01b0383166135785761357381600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b61359b565b816001600160a01b0316836001600160a01b03161461359b5761359b8382613888565b6001600160a01b0382166135b257610df681613925565b826001600160a01b0316826001600160a01b031614610df657610df682826139d4565b60006001600160a01b0384163b1561372257604051630a85bd0160e11b81526001600160a01b0385169063150b7a029061361990339089908890889060040161433e565b602060405180830381600087803b15801561363357600080fd5b505af1925050508015613663575060408051601f3d908101601f191682019092526136609181019061437a565b60015b613708573d808015613691576040519150601f19603f3d011682016040523d82523d6000602084013e613696565b606091505b5080516137005760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b6064820152608401610ca4565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050612f78565b506001949350505050565b6001600160a01b0382166137835760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610ca4565b6000818152600260205260409020546001600160a01b0316156137e85760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610ca4565b6137f46000838361351d565b6001600160a01b038216600090815260036020526040812080546001929061381d90849061411c565b9091555050600081815260026020526040808220805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6000600161389584611ee1565b61389f9190614226565b6000838152600760205260409020549091508082146138f2576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b60085460009061393790600190614226565b6000838152600960205260408120546008805493945090928490811061395f5761395f614154565b90600052602060002001549050806008838154811061398057613980614154565b60009182526020808320909101929092558281526009909152604080822084905585825281205560088054806139b8576139b8614397565b6001900381819060005260206000200160009055905550505050565b60006139df83611ee1565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b828054613a2490614032565b90600052602060002090601f016020900481019282613a465760008555613a8c565b82601f10613a5f57805160ff1916838001178555613a8c565b82800160010185558215613a8c579182015b82811115613a8c578251825591602001919060010190613a71565b50613a98929150613a9c565b5090565b5b80821115613a985760008155600101613a9d565b6001600160e01b031981168114612d4557600080fd5b600060208284031215613ad957600080fd5b8135612b0281613ab1565b60005b83811015613aff578181015183820152602001613ae7565b838111156112e45750506000910152565b60008151808452613b28816020860160208601613ae4565b601f01601f19169290920160200192915050565b602081526000612b026020830184613b10565b600060208284031215613b6157600080fd5b5035919050565b80356001600160a01b0381168114613b7f57600080fd5b919050565b60008060408385031215613b9757600080fd5b613ba083613b68565b946020939093013593505050565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff81118282101715613bed57613bed613bae565b604052919050565b600067ffffffffffffffff831115613c0f57613c0f613bae565b613c22601f8401601f1916602001613bc4565b9050828152838383011115613c3657600080fd5b828260208301376000602084830101529392505050565b600060208284031215613c5f57600080fd5b813567ffffffffffffffff811115613c7657600080fd5b8201601f81018413613c8757600080fd5b612f7884823560208401613bf5565b600067ffffffffffffffff821115613cb057613cb0613bae565b5060051b60200190565b600082601f830112613ccb57600080fd5b81356020613ce0613cdb83613c96565b613bc4565b82815260059290921b84018101918181019086841115613cff57600080fd5b8286015b84811015613d2157613d1481613b68565b8352918301918301613d03565b509695505050505050565b803560ff81168114613b7f57600080fd5b600082601f830112613d4e57600080fd5b81356020613d5e613cdb83613c96565b82815260059290921b84018101918181019086841115613d7d57600080fd5b8286015b84811015613d2157613d9281613d2c565b8352918301918301613d81565b600080600060608486031215613db457600080fd5b833567ffffffffffffffff80821115613dcc57600080fd5b613dd887838801613cba565b94506020860135915080821115613dee57600080fd5b613dfa87838801613d3d565b93506040860135915080821115613e1057600080fd5b50613e1d86828701613d3d565b9150509250925092565b600060208284031215613e3957600080fd5b612b0282613b68565b600080600060608486031215613e5757600080fd5b613e6084613b68565b9250613e6e60208501613b68565b9150604084013590509250925092565b60008060408385031215613e9157600080fd5b50508035926020909101359150565b60008060408385031215613eb357600080fd5b613ebc83613b68565b9150613eca60208401613d2c565b90509250929050565b600060208284031215613ee557600080fd5b813561ffff81168114612b0257600080fd5b8015158114612d4557600080fd5b60008060408385031215613f1857600080fd5b613f2183613b68565b91506020830135613f3181613ef7565b809150509250929050565b600060208284031215613f4e57600080fd5b813567ffffffffffffffff811115613f6557600080fd5b612f7884828501613cba565b600060208284031215613f8357600080fd5b612b0282613d2c565b60008060008060808587031215613fa257600080fd5b613fab85613b68565b9350613fb960208601613b68565b925060408501359150606085013567ffffffffffffffff811115613fdc57600080fd5b8501601f81018713613fed57600080fd5b613ffc87823560208401613bf5565b91505092959194509250565b6000806040838503121561401b57600080fd5b61402483613b68565b9150613eca60208401613b68565b600181811c9082168061404657607f821691505b6020821081141561406757634e487b7160e01b600052602260045260246000fd5b50919050565b60408152600080845461407f81614032565b80604086015260606001808416600081146140a157600181146140b5576140e6565b60ff198516888401526080880195506140e6565b8960005260208060002060005b868110156140dd5781548b82018701529084019082016140c2565b8a018501975050505b505050505082810360208401526140fd8185613b10565b95945050505050565b634e487b7160e01b600052601160045260246000fd5b6000821982111561412f5761412f614106565b500190565b600060ff821660ff81141561414b5761414b614106565b60010192915050565b634e487b7160e01b600052603260045260246000fd5b600061ffff8083168181141561418257614182614106565b6001019392505050565b60006000198214156141a0576141a0614106565b5060010190565b60008160001904831182151516156141c1576141c1614106565b500290565b634e487b7160e01b600052601260045260246000fd5b6000826141eb576141eb6141c6565b500490565b60006020828403121561420257600080fd5b5051919050565b60006020828403121561421b57600080fd5b8151612b0281613ef7565b60008282101561423857614238614106565b500390565b600060ff821660ff84168082101561425757614257614106565b90039392505050565b6000815461426d81614032565b600182811680156142855760018114614296576142c5565b60ff198416875282870194506142c5565b8560005260208060002060005b858110156142bc5781548a8201529084019082016142a3565b50505082870194505b5050505092915050565b600084516142e1818460208901613ae4565b8451908301906142f5818360208901613ae4565b61430181830186614260565b979650505050505050565b6000835161431e818460208801613ae4565b6140fd81840185614260565b600082614339576143396141c6565b500690565b60006001600160a01b038087168352808616602084015250836040830152608060608301526143706080830184613b10565b9695505050505050565b60006020828403121561438c57600080fd5b8151612b0281613ab1565b634e487b7160e01b600052603160045260246000fdfe4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572a2646970667358221220f9497f69cb591cbc9f15a4a5196174fdc9df3f0663b783be4bc116a61af0ca6864736f6c634300080900330000000000000000000000000000000000000000000000000000000061e200700000000000000000000000000000000000000000000000000000000061e87bd00000000000000000000000000000000000000000000000000000000061e897f00000000000000000000000000000000000000000000000000000000061f1d2700000000000000000000000000000000000000000000000000000000061f47570000000000000000000000000000000000000000000000000000000000000016000000000000000000000000000000000000000000000000000000000000001e0000000000000000000000000000000000000000000000000000000000000022000000000000000000000000000000000000000000000000000000000000002800000000000000000000000000000000000000000000000000000000000000300000000000000000000000000a5409ec958c83c3f309868babaca7c86dcb077c1000000000000000000000000000000000000000000000000000000000000005568747470733a2f2f636174626f746963612e6d7970696e6174612e636c6f75642f697066732f516d4e68754e3456523645734750536a76784d6d75504c614273624c79506b4d6e32716e67506250647634514b4e2f000000000000000000000000000000000000000000000000000000000000000000000000000000000000052e6a736f6e0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000040343965656466353235666130663231613361306231643166663832636131356261663465636237616233636435376235366331633466336561393465356562310000000000000000000000000000000000000000000000000000000000000003000000000000000000000000080af67982078ec482cc359a27ef00dbfeed837800000000000000000000000001cf6fdea74d645a4961ec6c4e02b7a72cc4230b00000000000000000000000021a4b9266098fb98200a66440ee3b7666f452e87000000000000000000000000000000000000000000000000000000000000000300000000000000000000000000000000000000000000000000000000000001f400000000000000000000000000000000000000000000000000000000000005dc0000000000000000000000000000000000000000000000000000000000001f40

Deployed Bytecode

0x6080604052600436106103bc5760003560e01c80636352211e116101f2578063c197b0f71161010d578063ec342ad0116100a0578063f82ab2ec1161006f578063f82ab2ec146104ce578063fc42b25814610aa1578063fc8ff57914610b2e578063ff1b655614610b4457600080fd5b8063ec342ad01461098c578063f2fde38b14610a50578063f47c84c514610a70578063f79dc6f714610a8657600080fd5b8063d12f7029116100dc578063d12f7029146109ea578063e8a3d48514610a06578063e985e9c514610a1b578063eb91d37e14610a3b57600080fd5b8063c197b0f71461098c578063c31f2d1d146109a2578063c87b56dd146109b5578063ca1d953c146109d557600080fd5b806395d89b4111610185578063a5b16f5111610154578063a5b16f511461092d578063a76824d714610943578063b1a139c814610956578063b88d4fde1461096c57600080fd5b806395d89b41146108ce5780639f34835e146108e3578063a1397622146108f8578063a22cb4651461090d57600080fd5b806375d4f952116101c157806375d4f952146108475780637a329b281461087057806383476385146108905780638da5cb5b146108b057600080fd5b80636352211e146107d857806368428a1b146107f857806370a0823114610812578063715018a61461083257600080fd5b80632dc04e46116102e25780634bc9684a1161027557806355f804b31161024457806355f804b31461075c57806358194bca1461077c578063583e88ab146107925780635c975abb146107a857600080fd5b80634bc9684a146106f05780634bd71adc146107065780634f6ccce71461071c57806351a39a581461073c57600080fd5b80633ccfd60b116102b15780633ccfd60b1461068557806342842e0e1461069a57806345763d0c146106ba57806349df728c146106d057600080fd5b80632dc04e46146105f15780632f745c591461060757806336e79a5a146106275780633af32abf1461064757600080fd5b8063138a6cf61161035a5780631f3e1be9116103295780631f3e1be91461054257806323b872dd146105725780632a55205a146105925780632ca47c6d146105d157600080fd5b8063138a6cf6146104ce578063143a3f92146104f85780631453671d1461050d57806318160ddd1461052d57600080fd5b8063095ea7b311610396578063095ea7b31461045757806310969523146104795780631146e602146104995780631299a0fb146104ae57600080fd5b806301ffc9a7146103c857806306fdde03146103fd578063081812fc1461041f57600080fd5b366103c357005b600080fd5b3480156103d457600080fd5b506103e86103e3366004613ac7565b610b59565b60405190151581526020015b60405180910390f35b34801561040957600080fd5b50610412610b9d565b6040516103f49190613b3c565b34801561042b57600080fd5b5061043f61043a366004613b4f565b610c2f565b6040516001600160a01b0390911681526020016103f4565b34801561046357600080fd5b50610477610472366004613b84565b610cc9565b005b34801561048557600080fd5b50610477610494366004613c4d565b610dfb565b3480156104a557600080fd5b50610477610e9e565b3480156104ba57600080fd5b506104776104c9366004613d9f565b6110d2565b3480156104da57600080fd5b506104ea67011c37937e08000081565b6040519081526020016103f4565b34801561050457600080fd5b506104ea600581565b34801561051957600080fd5b50610477610528366004613e27565b6112ea565b34801561053957600080fd5b506008546104ea565b34801561054e57600080fd5b506103e861055d366004613e27565b601b6020526000908152604090205460ff1681565b34801561057e57600080fd5b5061047761058d366004613e42565b6114c4565b34801561059e57600080fd5b506105b26105ad366004613e7e565b61154b565b604080516001600160a01b0390931683526020830191909152016103f4565b3480156105dd57600080fd5b506104776105ec366004613ea0565b61157c565b3480156105fd57600080fd5b506104ea60165481565b34801561061357600080fd5b506104ea610622366004613b84565b611723565b34801561063357600080fd5b50610477610642366004613ed3565b6117cb565b34801561065357600080fd5b506103e8610662366004613e27565b6001600160a01b03166000908152601c6020526040902054610100900460ff1690565b34801561069157600080fd5b506104776118a7565b3480156106a657600080fd5b506104776106b5366004613e42565b611a6a565b3480156106c657600080fd5b506104ea60135481565b3480156106dc57600080fd5b506104776106eb366004613e27565b611a85565b3480156106fc57600080fd5b506104ea61070881565b34801561071257600080fd5b506104ea6101f481565b34801561072857600080fd5b506104ea610737366004613b4f565b611ce4565b34801561074857600080fd5b50610477610757366004613f05565b611d88565b34801561076857600080fd5b50610477610777366004613c4d565b611dfb565b34801561078857600080fd5b506104ea60155481565b34801561079e57600080fd5b506104ea60145481565b3480156107b457600080fd5b50600a5474010000000000000000000000000000000000000000900460ff166103e8565b3480156107e457600080fd5b5061043f6107f3366004613b4f565b611e56565b34801561080457600080fd5b50600e546103e89060ff1681565b34801561081e57600080fd5b506104ea61082d366004613e27565b611ee1565b34801561083e57600080fd5b50610477611f7b565b34801561085357600080fd5b5061085d610bb881565b60405161ffff90911681526020016103f4565b34801561087c57600080fd5b5061047761088b366004613ea0565b611fcf565b34801561089c57600080fd5b506104776108ab366004613f3c565b612110565b3480156108bc57600080fd5b50600a546001600160a01b031661043f565b3480156108da57600080fd5b506104126121c1565b3480156108ef57600080fd5b506104ea6121d0565b34801561090457600080fd5b506104ea61220f565b34801561091957600080fd5b50610477610928366004613f05565b612228565b34801561093957600080fd5b506104ea61384081565b610477610951366004613f71565b6122ed565b34801561096257600080fd5b506104ea60185481565b34801561097857600080fd5b50610477610987366004613f8c565b61271e565b34801561099857600080fd5b5061085d61271081565b6104776109b0366004613f71565b6127a6565b3480156109c157600080fd5b506104126109d0366004613b4f565b612a1d565b3480156109e157600080fd5b50610477612b09565b3480156109f657600080fd5b506104ea6702c68af0bb14000081565b348015610a1257600080fd5b50610412612b98565b348015610a2757600080fd5b506103e8610a36366004614008565b612bcf565b348015610a4757600080fd5b506104ea612c26565b348015610a5c57600080fd5b50610477610a6b366004613e27565b612c78565b348015610a7c57600080fd5b5061085d612ee081565b348015610a9257600080fd5b506104ea66470de4df82000081565b348015610aad57600080fd5b50610af9610abc366004613e27565b601c6020526000908152604090205460ff808216916101008104821691620100008204811691630100000081048216916401000000009091041685565b6040805160ff96871681529415156020860152921515928401929092529092166060820152901515608082015260a0016103f4565b348015610b3a57600080fd5b506104ea60175481565b348015610b5057600080fd5b50610412612d48565b60006001600160e01b031982167f2a55205a000000000000000000000000000000000000000000000000000000001480610b975750610b9782612dd6565b92915050565b606060008054610bac90614032565b80601f0160208091040260200160405190810160405280929190818152602001828054610bd890614032565b8015610c255780601f10610bfa57610100808354040283529160200191610c25565b820191906000526020600020905b815481529060010190602001808311610c0857829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b0316610cad5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b6000610cd482611e56565b9050806001600160a01b0316836001600160a01b03161415610d5e5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560448201527f72000000000000000000000000000000000000000000000000000000000000006064820152608401610ca4565b336001600160a01b0382161480610d7a5750610d7a8133612bcf565b610dec5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610ca4565b610df68383612e14565b505050565b600a546001600160a01b03163314610e435760405162461bcd60e51b815260206004820181905260248201526000805160206143ae8339815191526044820152606401610ca4565b336001600160a01b03167f1cc4bb0a279bf9b4df4bb7260cdd54995304640e17dfda43047018d82ec3b26c600f83604051610e7f92919061406d565b60405180910390a28051610e9a90600f906020840190613a18565b5050565b6013544210158015610eb1575060185442105b610efd5760405162461bcd60e51b815260206004820152601160248201527f52656465656d206e6f74206163746976650000000000000000000000000000006044820152606401610ca4565b336000908152601c602052604090205460ff166101f481610f1d600c5490565b610f27919061411c565b1115610f755760405162461bcd60e51b815260206004820152600f60248201527f546f6b656e732052656465656d656400000000000000000000000000000000006044820152606401610ca4565b336000908152601c6020526040902054610100900460ff16610fd95760405162461bcd60e51b815260206004820152601160248201527f52657374726963746564206163636573730000000000000000000000000000006044820152606401610ca4565b336000908152601c602052604090205462010000900460ff161561103f5760405162461bcd60e51b815260206004820152600f60248201527f546f6b656e732072656465656d656400000000000000000000000000000000006044820152606401610ca4565b336000908152601c60205260408120805462ff00001916620100001790555b8160ff168160ff16101561109e5761107a600c80546001019055565b61108c33611087600c5490565b612e8f565b8061109681614134565b91505061105e565b5060405160ff82169033907fb9144c96c86541f6fa89c9f2f02495cccf4b08cd6643e26d34ee00aa586558a890600090a350565b600a546001600160a01b0316331461111a5760405162461bcd60e51b815260206004820181905260248201526000805160206143ae8339815191526044820152606401610ca4565b600e5460ff161561116d5760405162461bcd60e51b815260206004820152600e60248201527f43616e742077686974656c6973740000000000000000000000000000000000006044820152606401610ca4565b60005b83518161ffff1610156112e4576001601c6000868461ffff168151811061119957611199614154565b60200260200101516001600160a01b03166001600160a01b0316815260200190815260200160002060000160016101000a81548160ff021916908315150217905550828161ffff16815181106111f1576111f1614154565b6020026020010151601c6000868461ffff168151811061121357611213614154565b60200260200101516001600160a01b03166001600160a01b0316815260200190815260200160002060000160006101000a81548160ff021916908360ff160217905550818161ffff168151811061126c5761126c614154565b6020026020010151601c6000868461ffff168151811061128e5761128e614154565b60200260200101516001600160a01b03166001600160a01b0316815260200190815260200160002060000160036101000a81548160ff021916908360ff16021790555080806112dc9061416a565b915050611170565b50505050565b6001600160a01b0381166113405760405162461bcd60e51b815260206004820152601760248201527f43616e6e6f7420757365207a65726f20616464726573730000000000000000006044820152606401610ca4565b6001600160a01b0381163014156113995760405162461bcd60e51b815260206004820181905260248201527f43616e6e6f7420757365207468697320636f6e747261637420616464726573736044820152606401610ca4565b6000805b60195481101561143c57336001600160a01b0316601982815481106113c4576113c4614154565b6000918252602090912001546001600160a01b0316141561142a5782601982815481106113f3576113f3614154565b9060005260206000200160006101000a8154816001600160a01b0302191690836001600160a01b031602179055506001915061143c565b806114348161418c565b91505061139d565b508061148a5760405162461bcd60e51b815260206004820152601e60248201527f5468652073656e646572206973206e6f74206120726563697069656e742e00006044820152606401610ca4565b6040516001600160a01b0383169033907f49309b5d08d7bbaebcda96dda577818eee99f98cd01bb4a546ffb81653b4004190600090a35050565b6114ce3382612ea9565b6115405760405162461bcd60e51b815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f7665640000000000000000000000000000006064820152608401610ca4565b610df6838383612f80565b601d5460009081903090612710906115679061ffff16866141a7565b61157191906141dc565b915091509250929050565b600a546001600160a01b031633146115c45760405162461bcd60e51b815260206004820181905260248201526000805160206143ae8339815191526044820152606401610ca4565b6017544290811180156115d8575060145481105b6116245760405162461bcd60e51b815260206004820152600b60248201527f4e6f7420416c6c6f7765640000000000000000000000000000000000000000006044820152606401610ca4565b610bb86101f460ff8416611637600d5490565b611641919061411c565b61164b919061411c565b11156116995760405162461bcd60e51b815260206004820152601160248201527f507269766174652073616c65206f7665720000000000000000000000000000006044820152606401610ca4565b60005b8260ff168160ff1610156116e4576116b8600d80546001019055565b6116d2846101f46116c8600d5490565b611087919061411c565b806116dc81614134565b91505061169c565b5060405160ff8316906001600160a01b038516907fb9144c96c86541f6fa89c9f2f02495cccf4b08cd6643e26d34ee00aa586558a890600090a3505050565b600061172e83611ee1565b82106117a25760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201527f74206f6620626f756e64730000000000000000000000000000000000000000006064820152608401610ca4565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600a546001600160a01b031633146118135760405162461bcd60e51b815260206004820181905260248201526000805160206143ae8339815191526044820152606401610ca4565b6103e88161ffff16111561188f5760405162461bcd60e51b815260206004820152602360248201527f526f79616c7479206d757374206265206265747765656e20302520616e64203160448201527f30252e00000000000000000000000000000000000000000000000000000000006064820152608401610ca4565b601d805461ffff191661ffff92909216919091179055565b6002600b5414156118fa5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610ca4565b6002600b554760005b601954811015611a2c5760006019828154811061192257611922614154565b600091825260209091200154601a80546001600160a01b039092169161271091908590811061195357611953614154565b6000918252602090912060108204015461197d91600f166002026101000a900461ffff16866141a7565b61198791906141dc565b604051600081818185875af1925050503d80600081146119c3576040519150601f19603f3d011682016040523d82523d6000602084013e6119c8565b606091505b5050905080611a195760405162461bcd60e51b815260206004820152601060248201527f5769746864726177204661696c65642e000000000000000000000000000000006044820152606401610ca4565b5080611a248161418c565b915050611903565b5060405181815233907f434a43765b3cd21fa5b240a88fef750a558ba196a12784bdd49335beabc1a39d9060200160405180910390a2506001600b55565b610df68383836040518060200160405280600081525061271e565b6002600b541415611ad85760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610ca4565b6002600b556040517f70a0823100000000000000000000000000000000000000000000000000000000815230600482015281906000906001600160a01b038316906370a082319060240160206040518083038186803b158015611b3a57600080fd5b505afa158015611b4e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611b7291906141f0565b905060005b601954811015611c9957826001600160a01b031663a9059cbb60198381548110611ba357611ba3614154565b600091825260209091200154601a80546001600160a01b0390921691612710919086908110611bd457611bd4614154565b60009182526020909120601082040154611bfe91600f166002026101000a900461ffff16876141a7565b611c0891906141dc565b6040516001600160e01b031960e085901b1681526001600160a01b0390921660048301526024820152604401602060405180830381600087803b158015611c4e57600080fd5b505af1158015611c62573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611c869190614209565b5080611c918161418c565b915050611b77565b506040518181526001600160a01b0384169033907f73298854beb73cf7c63db725c9e244a4c6c2bde8fa5b477fc56d5a8b5c6150d39060200160405180910390a350506001600b5550565b6000611cef60085490565b8210611d635760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201527f7574206f6620626f756e647300000000000000000000000000000000000000006064820152608401610ca4565b60088281548110611d7657611d76614154565b90600052602060002001549050919050565b600a546001600160a01b03163314611dd05760405162461bcd60e51b815260206004820181905260248201526000805160206143ae8339815191526044820152606401610ca4565b6001600160a01b03919091166000908152601b60205260409020805460ff1916911515919091179055565b600a546001600160a01b03163314611e435760405162461bcd60e51b815260206004820181905260248201526000805160206143ae8339815191526044820152606401610ca4565b8051610e9a906010906020840190613a18565b6000818152600260205260408120546001600160a01b031680610b975760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201527f656e7420746f6b656e00000000000000000000000000000000000000000000006064820152608401610ca4565b60006001600160a01b038216611f5f5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a6560448201527f726f2061646472657373000000000000000000000000000000000000000000006064820152608401610ca4565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b03163314611fc35760405162461bcd60e51b815260206004820181905260248201526000805160206143ae8339815191526044820152606401610ca4565b611fcd6000613165565b565b600a546001600160a01b031633146120175760405162461bcd60e51b815260206004820181905260248201526000805160206143ae8339815191526044820152606401610ca4565b6018544290811161206a5760405162461bcd60e51b815260206004820152601760248201527f526564656d7074696f6e207374696c6c206163746976650000000000000000006044820152606401610ca4565b6101f48260ff1661207a600c5490565b612084919061411c565b11156120d25760405162461bcd60e51b815260206004820152600f60248201527f546f6b656e732052656465656d656400000000000000000000000000000000006044820152606401610ca4565b60005b8260ff168160ff1610156116e4576120f1600c80546001019055565b6120fe84611087600c5490565b8061210881614134565b9150506120d5565b600a546001600160a01b031633146121585760405162461bcd60e51b815260206004820181905260248201526000805160206143ae8339815191526044820152606401610ca4565b60005b81518160ff161015610e9a57601c6000838360ff168151811061218057612180614154565b6020908102919091018101516001600160a01b03168252810191909152604001600020805464ffffffffff19169055806121b981614134565b91505061215b565b606060018054610bac90614032565b60006121e06101f4610bb8614226565b600d5411156121ef5750600090565b600d546122006101f4610bb8614226565b61220a9190614226565b905090565b600061221a600d5490565b6122006101f4612ee0614226565b6001600160a01b0382163314156122815760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610ca4565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600e5460ff16801561230157506013544210155b61234d5760405162461bcd60e51b815260206004820152600f60248201527f53616c65206e6f742061637469766500000000000000000000000000000000006044820152606401610ca4565b601654429081118015612361575060175481105b6123ad5760405162461bcd60e51b815260206004820152601160248201527f507269766174652073616c65206f7665720000000000000000000000000000006044820152606401610ca4565b336000908152601c6020526040902054610100900460ff166124115760405162461bcd60e51b815260206004820152601160248201527f52657374726963746564206163636573730000000000000000000000000000006044820152606401610ca4565b336000908152601c6020526040902054640100000000900460ff16156124795760405162461bcd60e51b815260206004820152600d60248201527f546f6b656e73206d696e746564000000000000000000000000000000000000006044820152606401610ca4565b336000908152601c602052604090205460ff630100000090910481169083168110156124e75760405162461bcd60e51b815260206004820152600b60248201527f41626f7665206c696d69740000000000000000000000000000000000000000006044820152606401610ca4565b610bb86101f460ff85166124fa600d5490565b612504919061411c565b61250e919061411c565b111561255c5760405162461bcd60e51b815260206004820152601160248201527f507269766174652073616c6520736f6c640000000000000000000000000000006044820152606401610ca4565b61257160ff841667011c37937e0800006141a7565b3410156125c05760405162461bcd60e51b815260206004820152601060248201527f496e73756666696369656e7420455448000000000000000000000000000000006044820152606401610ca4565b60008360ff16116126135760405162461bcd60e51b815260206004820152600f60248201527f57726f6e67204e756d20546f6b656e00000000000000000000000000000000006044820152606401610ca4565b60005b8360ff168160ff1610156126a757612632600d80546001019055565b336000908152601c6020526040902054612658906001906301000000900460ff1661423d565b336000818152601c60205260409020805460ff9390931663010000000263ff0000001990931692909217909155612695906101f46116c8600d5490565b8061269f81614134565b915050612616565b50336000908152601c60205260409020546301000000900460ff166126e957336000908152601c60205260409020805464ff0000000019166401000000001790555b60405160ff84169033907fb9144c96c86541f6fa89c9f2f02495cccf4b08cd6643e26d34ee00aa586558a890600090a3505050565b6127283383612ea9565b61279a5760405162461bcd60e51b815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f7665640000000000000000000000000000006064820152608401610ca4565b6112e4848484846131c4565b600e5460ff1680156127ba57506013544210155b6128065760405162461bcd60e51b815260206004820152600f60248201527f53616c65206e6f742061637469766500000000000000000000000000000000006044820152606401610ca4565b60145442908111801561281a575060155481105b6128665760405162461bcd60e51b815260206004820152601060248201527f5075626c69632073616c65206f766572000000000000000000000000000000006044820152606401610ca4565b6000612870613242565b905061287f60ff8416826141a7565b3410156128ce5760405162461bcd60e51b815260206004820152601060248201527f496e73756666696369656e7420455448000000000000000000000000000000006044820152606401610ca4565b60058360ff16111580156128e5575060008360ff16115b6129315760405162461bcd60e51b815260206004820152600f60248201527f57726f6e67204e756d20546f6b656e00000000000000000000000000000000006044820152606401610ca4565b612ee06101f460ff8516612944600d5490565b61294e919061411c565b612958919061411c565b11156129a65760405162461bcd60e51b815260206004820152601060248201527f5075626c69632073616c6520736f6c64000000000000000000000000000000006044820152606401610ca4565b60005b8360ff168160ff1610156129e7576129c5600d80546001019055565b6129d5336101f46116c8600d5490565b806129df81614134565b9150506129a9565b5060405160ff84169033907fb9144c96c86541f6fa89c9f2f02495cccf4b08cd6643e26d34ee00aa586558a890600090a3505050565b6000818152600260205260409020546060906001600160a01b0316612aaa5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006064820152608401610ca4565b6000612ab46132c3565b90506000815111612ad45760405180602001604052806000815250612b02565b80612ade846132d2565b6011604051602001612af2939291906142cf565b6040516020818303038152906040525b9392505050565b600a546001600160a01b03163314612b515760405162461bcd60e51b815260206004820181905260248201526000805160206143ae8339815191526044820152606401610ca4565b600e805460ff19811660ff91821615908117909255604051911615159033907fe3f6649f5bc36b8b8c13782cfdb234a2f34ea0a28e750e23ea10b14d550f643590600090a3565b60606000612ba46132c3565b9050806012604051602001612bba92919061430c565b60405160208183030381529060405291505090565b6001600160a01b0381166000908152601b602052604081205460ff1615612bf857506001610b97565b6001600160a01b0380841660009081526005602090815260408083209386168352929052205460ff16612b02565b6017546000904290811015612c445767011c37937e08000091505090565b60175481118015612c56575060145481105b15612c6a576702c68af0bb14000091505090565b612c72613242565b91505090565b600a546001600160a01b03163314612cc05760405162461bcd60e51b815260206004820181905260248201526000805160206143ae8339815191526044820152606401610ca4565b6001600160a01b038116612d3c5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610ca4565b612d4581613165565b50565b600f8054612d5590614032565b80601f0160208091040260200160405190810160405280929190818152602001828054612d8190614032565b8015612dce5780601f10612da357610100808354040283529160200191612dce565b820191906000526020600020905b815481529060010190602001808311612db157829003601f168201915b505050505081565b60006001600160e01b031982167f780e9d63000000000000000000000000000000000000000000000000000000001480610b975750610b9782613404565b6000818152600460205260409020805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0384169081179091558190612e5682611e56565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b610e9a82826040518060200160405280600081525061349f565b6000818152600260205260408120546001600160a01b0316612f225760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610ca4565b6000612f2d83611e56565b9050806001600160a01b0316846001600160a01b03161480612f685750836001600160a01b0316612f5d84610c2f565b6001600160a01b0316145b80612f785750612f788185612bcf565b949350505050565b826001600160a01b0316612f9382611e56565b6001600160a01b03161461300f5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201527f73206e6f74206f776e00000000000000000000000000000000000000000000006064820152608401610ca4565b6001600160a01b03821661308a5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f2061646460448201527f72657373000000000000000000000000000000000000000000000000000000006064820152608401610ca4565b61309583838361351d565b6130a0600082612e14565b6001600160a01b03831660009081526003602052604081208054600192906130c9908490614226565b90915550506001600160a01b03821660009081526003602052604081208054600192906130f790849061411c565b9091555050600081815260026020526040808220805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600a80546001600160a01b0383811673ffffffffffffffffffffffffffffffffffffffff19831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6131cf848484612f80565b6131db848484846135d5565b6112e45760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b6064820152608401610ca4565b601454600090429067011c37937e080000906132609061384061411c565b82111561326d5792915050565b6000610708601454846132809190614226565b61328a91906141dc565b905080156132a05761329d600182614226565b90505b6132b18166470de4df8200006141a7565b612f78906702c68af0bb140000614226565b606060108054610bac90614032565b60608161331257505060408051808201909152600181527f3000000000000000000000000000000000000000000000000000000000000000602082015290565b8160005b811561333c57806133268161418c565b91506133359050600a836141dc565b9150613316565b60008167ffffffffffffffff81111561335757613357613bae565b6040519080825280601f01601f191660200182016040528015613381576020820181803683370190505b5090505b8415612f7857613396600183614226565b91506133a3600a8661432a565b6133ae90603061411c565b60f81b8183815181106133c3576133c3614154565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053506133fd600a866141dc565b9450613385565b60006001600160e01b031982167f80ac58cd00000000000000000000000000000000000000000000000000000000148061346757506001600160e01b031982167f5b5e139f00000000000000000000000000000000000000000000000000000000145b80610b9757507f01ffc9a7000000000000000000000000000000000000000000000000000000006001600160e01b0319831614610b97565b6134a9838361372d565b6134b660008484846135d5565b610df65760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b6064820152608401610ca4565b6001600160a01b0383166135785761357381600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b61359b565b816001600160a01b0316836001600160a01b03161461359b5761359b8382613888565b6001600160a01b0382166135b257610df681613925565b826001600160a01b0316826001600160a01b031614610df657610df682826139d4565b60006001600160a01b0384163b1561372257604051630a85bd0160e11b81526001600160a01b0385169063150b7a029061361990339089908890889060040161433e565b602060405180830381600087803b15801561363357600080fd5b505af1925050508015613663575060408051601f3d908101601f191682019092526136609181019061437a565b60015b613708573d808015613691576040519150601f19603f3d011682016040523d82523d6000602084013e613696565b606091505b5080516137005760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b6064820152608401610ca4565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050612f78565b506001949350505050565b6001600160a01b0382166137835760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610ca4565b6000818152600260205260409020546001600160a01b0316156137e85760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610ca4565b6137f46000838361351d565b6001600160a01b038216600090815260036020526040812080546001929061381d90849061411c565b9091555050600081815260026020526040808220805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6000600161389584611ee1565b61389f9190614226565b6000838152600760205260409020549091508082146138f2576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b60085460009061393790600190614226565b6000838152600960205260408120546008805493945090928490811061395f5761395f614154565b90600052602060002001549050806008838154811061398057613980614154565b60009182526020808320909101929092558281526009909152604080822084905585825281205560088054806139b8576139b8614397565b6001900381819060005260206000200160009055905550505050565b60006139df83611ee1565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b828054613a2490614032565b90600052602060002090601f016020900481019282613a465760008555613a8c565b82601f10613a5f57805160ff1916838001178555613a8c565b82800160010185558215613a8c579182015b82811115613a8c578251825591602001919060010190613a71565b50613a98929150613a9c565b5090565b5b80821115613a985760008155600101613a9d565b6001600160e01b031981168114612d4557600080fd5b600060208284031215613ad957600080fd5b8135612b0281613ab1565b60005b83811015613aff578181015183820152602001613ae7565b838111156112e45750506000910152565b60008151808452613b28816020860160208601613ae4565b601f01601f19169290920160200192915050565b602081526000612b026020830184613b10565b600060208284031215613b6157600080fd5b5035919050565b80356001600160a01b0381168114613b7f57600080fd5b919050565b60008060408385031215613b9757600080fd5b613ba083613b68565b946020939093013593505050565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff81118282101715613bed57613bed613bae565b604052919050565b600067ffffffffffffffff831115613c0f57613c0f613bae565b613c22601f8401601f1916602001613bc4565b9050828152838383011115613c3657600080fd5b828260208301376000602084830101529392505050565b600060208284031215613c5f57600080fd5b813567ffffffffffffffff811115613c7657600080fd5b8201601f81018413613c8757600080fd5b612f7884823560208401613bf5565b600067ffffffffffffffff821115613cb057613cb0613bae565b5060051b60200190565b600082601f830112613ccb57600080fd5b81356020613ce0613cdb83613c96565b613bc4565b82815260059290921b84018101918181019086841115613cff57600080fd5b8286015b84811015613d2157613d1481613b68565b8352918301918301613d03565b509695505050505050565b803560ff81168114613b7f57600080fd5b600082601f830112613d4e57600080fd5b81356020613d5e613cdb83613c96565b82815260059290921b84018101918181019086841115613d7d57600080fd5b8286015b84811015613d2157613d9281613d2c565b8352918301918301613d81565b600080600060608486031215613db457600080fd5b833567ffffffffffffffff80821115613dcc57600080fd5b613dd887838801613cba565b94506020860135915080821115613dee57600080fd5b613dfa87838801613d3d565b93506040860135915080821115613e1057600080fd5b50613e1d86828701613d3d565b9150509250925092565b600060208284031215613e3957600080fd5b612b0282613b68565b600080600060608486031215613e5757600080fd5b613e6084613b68565b9250613e6e60208501613b68565b9150604084013590509250925092565b60008060408385031215613e9157600080fd5b50508035926020909101359150565b60008060408385031215613eb357600080fd5b613ebc83613b68565b9150613eca60208401613d2c565b90509250929050565b600060208284031215613ee557600080fd5b813561ffff81168114612b0257600080fd5b8015158114612d4557600080fd5b60008060408385031215613f1857600080fd5b613f2183613b68565b91506020830135613f3181613ef7565b809150509250929050565b600060208284031215613f4e57600080fd5b813567ffffffffffffffff811115613f6557600080fd5b612f7884828501613cba565b600060208284031215613f8357600080fd5b612b0282613d2c565b60008060008060808587031215613fa257600080fd5b613fab85613b68565b9350613fb960208601613b68565b925060408501359150606085013567ffffffffffffffff811115613fdc57600080fd5b8501601f81018713613fed57600080fd5b613ffc87823560208401613bf5565b91505092959194509250565b6000806040838503121561401b57600080fd5b61402483613b68565b9150613eca60208401613b68565b600181811c9082168061404657607f821691505b6020821081141561406757634e487b7160e01b600052602260045260246000fd5b50919050565b60408152600080845461407f81614032565b80604086015260606001808416600081146140a157600181146140b5576140e6565b60ff198516888401526080880195506140e6565b8960005260208060002060005b868110156140dd5781548b82018701529084019082016140c2565b8a018501975050505b505050505082810360208401526140fd8185613b10565b95945050505050565b634e487b7160e01b600052601160045260246000fd5b6000821982111561412f5761412f614106565b500190565b600060ff821660ff81141561414b5761414b614106565b60010192915050565b634e487b7160e01b600052603260045260246000fd5b600061ffff8083168181141561418257614182614106565b6001019392505050565b60006000198214156141a0576141a0614106565b5060010190565b60008160001904831182151516156141c1576141c1614106565b500290565b634e487b7160e01b600052601260045260246000fd5b6000826141eb576141eb6141c6565b500490565b60006020828403121561420257600080fd5b5051919050565b60006020828403121561421b57600080fd5b8151612b0281613ef7565b60008282101561423857614238614106565b500390565b600060ff821660ff84168082101561425757614257614106565b90039392505050565b6000815461426d81614032565b600182811680156142855760018114614296576142c5565b60ff198416875282870194506142c5565b8560005260208060002060005b858110156142bc5781548a8201529084019082016142a3565b50505082870194505b5050505092915050565b600084516142e1818460208901613ae4565b8451908301906142f5818360208901613ae4565b61430181830186614260565b979650505050505050565b6000835161431e818460208801613ae4565b6140fd81840185614260565b600082614339576143396141c6565b500690565b60006001600160a01b038087168352808616602084015250836040830152608060608301526143706080830184613b10565b9695505050505050565b60006020828403121561438c57600080fd5b8151612b0281613ab1565b634e487b7160e01b600052603160045260246000fdfe4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572a2646970667358221220f9497f69cb591cbc9f15a4a5196174fdc9df3f0663b783be4bc116a61af0ca6864736f6c63430008090033

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

0000000000000000000000000000000000000000000000000000000061e200700000000000000000000000000000000000000000000000000000000061e87bd00000000000000000000000000000000000000000000000000000000061e897f00000000000000000000000000000000000000000000000000000000061f1d2700000000000000000000000000000000000000000000000000000000061f47570000000000000000000000000000000000000000000000000000000000000016000000000000000000000000000000000000000000000000000000000000001e0000000000000000000000000000000000000000000000000000000000000022000000000000000000000000000000000000000000000000000000000000002800000000000000000000000000000000000000000000000000000000000000300000000000000000000000000a5409ec958c83c3f309868babaca7c86dcb077c1000000000000000000000000000000000000000000000000000000000000005568747470733a2f2f636174626f746963612e6d7970696e6174612e636c6f75642f697066732f516d4e68754e3456523645734750536a76784d6d75504c614273624c79506b4d6e32716e67506250647634514b4e2f000000000000000000000000000000000000000000000000000000000000000000000000000000000000052e6a736f6e0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000040343965656466353235666130663231613361306231643166663832636131356261663465636237616233636435376235366331633466336561393465356562310000000000000000000000000000000000000000000000000000000000000003000000000000000000000000080af67982078ec482cc359a27ef00dbfeed837800000000000000000000000001cf6fdea74d645a4961ec6c4e02b7a72cc4230b00000000000000000000000021a4b9266098fb98200a66440ee3b7666f452e87000000000000000000000000000000000000000000000000000000000000000300000000000000000000000000000000000000000000000000000000000001f400000000000000000000000000000000000000000000000000000000000005dc0000000000000000000000000000000000000000000000000000000000001f40

-----Decoded View---------------
Arg [0] : _saleStartTime (uint256): 1642201200
Arg [1] : _privateSaleEndsAt (uint256): 1642626000
Arg [2] : _publicSaleStartsAt (uint256): 1642633200
Arg [3] : _publicsaleEndsAt (uint256): 1643238000
Arg [4] : _redemptionEndsAt (uint256): 1643410800
Arg [5] : _baseContractURI (string): https://catbotica.mypinata.cloud/ipfs/QmNhuN4VR6EsGPSjvxMmuPLaBsbLyPkMn2qngPbPdv4QKN/
Arg [6] : _tokenSuffixURI (string): .json
Arg [7] : _provenanceHash (string): 49eedf525fa0f21a3a0b1d1ff82ca15baf4ecb7ab3cd57b56c1c4f3ea94e5eb1
Arg [8] : _recipients (address[]): 0x080AF67982078eC482CC359A27ef00dbFeED8378,0x01cf6Fdea74d645a4961EC6C4E02b7A72CC4230B,0x21a4b9266098fB98200A66440eE3b7666F452E87
Arg [9] : _splits (uint16[]): 500,1500,8000
Arg [10] : _proxyAddress (address): 0xa5409ec958C83C3f309868babACA7c86DCB077c1

-----Encoded View---------------
28 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000061e20070
Arg [1] : 0000000000000000000000000000000000000000000000000000000061e87bd0
Arg [2] : 0000000000000000000000000000000000000000000000000000000061e897f0
Arg [3] : 0000000000000000000000000000000000000000000000000000000061f1d270
Arg [4] : 0000000000000000000000000000000000000000000000000000000061f47570
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000160
Arg [6] : 00000000000000000000000000000000000000000000000000000000000001e0
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000220
Arg [8] : 0000000000000000000000000000000000000000000000000000000000000280
Arg [9] : 0000000000000000000000000000000000000000000000000000000000000300
Arg [10] : 000000000000000000000000a5409ec958c83c3f309868babaca7c86dcb077c1
Arg [11] : 0000000000000000000000000000000000000000000000000000000000000055
Arg [12] : 68747470733a2f2f636174626f746963612e6d7970696e6174612e636c6f7564
Arg [13] : 2f697066732f516d4e68754e3456523645734750536a76784d6d75504c614273
Arg [14] : 624c79506b4d6e32716e67506250647634514b4e2f0000000000000000000000
Arg [15] : 0000000000000000000000000000000000000000000000000000000000000005
Arg [16] : 2e6a736f6e000000000000000000000000000000000000000000000000000000
Arg [17] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [18] : 3439656564663532356661306632316133613062316431666638326361313562
Arg [19] : 6166346563623761623363643537623536633163346633656139346535656231
Arg [20] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [21] : 000000000000000000000000080af67982078ec482cc359a27ef00dbfeed8378
Arg [22] : 00000000000000000000000001cf6fdea74d645a4961ec6c4e02b7a72cc4230b
Arg [23] : 00000000000000000000000021a4b9266098fb98200a66440ee3b7666f452e87
Arg [24] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [25] : 00000000000000000000000000000000000000000000000000000000000001f4
Arg [26] : 00000000000000000000000000000000000000000000000000000000000005dc
Arg [27] : 0000000000000000000000000000000000000000000000000000000000001f40


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.