ETH Price: $2,300.86 (+0.54%)

Token

LionsRoyaltyClub (LRC)
 

Overview

Max Total Supply

0 LRC

Holders

90

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
wonkster.eth
Balance
6 LRC
0x135d022eAD508d642e6ADEca8AC709c32995Ffa4
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
LionsRoyaltyClub

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 13 : LionsRoyaltyClub.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "@openzeppelin/contracts/token/ERC721/ERC721.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/math/SafeMath.sol";
import "@openzeppelin/contracts/security/ReentrancyGuard.sol";

contract LionsRoyaltyClub is ERC721, Ownable, ReentrancyGuard {
    /**
     * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection.
     */
    constructor(
        uint256 presaleMintPrice,
        uint256 presaleMintStart,
        uint256 presaleMintEnd,
        uint256 publicMintPrice,
        uint256 publicMintStart,
        uint256 publicMintEnd,
        uint64 publicMintMaxPerTransaction
    ) ERC721("LionsRoyaltyClub", "LRC") {
        require(presaleMintEnd >= block.timestamp, "Presale mint cannot end in the past");
        require(presaleMintPrice > 0, "Presale mint cannot be free");
        require(presaleMintStart <= presaleMintEnd, "Presale mint cannot start after it ends");
        
        require(publicMintPrice > 0, "Public mint cannot be free");
        require(publicMintEnd >= block.timestamp, "Public mint cannot end in the past");
        require(publicMintMaxPerTransaction > 0, "Public mint max per transaction cannot be less than 1");
        require(publicMintStart <= publicMintEnd, "Public mint cannot start after it ends");
        
        // CONFIGURE PRESALE Mint
        presaleMint.mintPrice = presaleMintPrice; 
        presaleMint.startDate = presaleMintStart == 0 ? block.timestamp : presaleMintStart; 
        presaleMint.endDate = presaleMintEnd; 
        
        // CONFIGURE PUBLIC MINT
        publicMint.mintPrice = publicMintPrice; 
        publicMint.startDate = publicMintStart == 0 ? block.timestamp : publicMintStart;
        publicMint.endDate = publicMintEnd; 
        publicMint.maxPerTransaction = publicMintMaxPerTransaction;
    }
    
    event Paid(address sender, uint256 amount);
    event Withdraw(address recipient, uint256 amount);
    
    struct WhitelistedMint {
        uint256 mintPrice;
        /**
         * A mapping of addresses to remaining
         * allowed.
         */
        mapping(address => uint64) whitelist;
        /**
         * The maximum per wallet,
         * uses the whitelist mapping
         * if not specified.
         */
        uint64 maxPerWallet;
        /**
         * The start date in unix seconds
         */
        uint256 startDate;
        /**
         * The end date in unix seconds
         */
        uint256 endDate;
    }
    
    struct PublicMint {
        uint256 mintPrice;
        /**
         * The maximum per transaction
         */
        uint64 maxPerTransaction;
        /**
         * The start date in unix seconds
         */
        uint256 startDate;
        /**
         * The end date in unix seconds
         */
        uint256 endDate;
    }
    
    string baseURI = "";
    
    uint64 public maxSupply = 5500;
    uint64 public supply = 0;
    uint64 public minted = 0;
    
    /**
     * An exclusive mint for members granted
     * presale from influencers
     */
    WhitelistedMint presaleMint;

    /**
     * The public mint for everybody.
     */
    PublicMint private publicMint;
    
    /**
     * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each
     * token will be the concatenation of the `baseURI` and the `tokenId`.
     */
    function _baseURI() override internal view virtual returns (string memory) {
        return baseURI;
    }
    
    /**
     * Sets the base URI for all tokens
     * 
     * @dev be sure to terminate with a slash
     * @param uri - the target base uri (ex: 'https://google.com/')
     */
    function setBaseURI(string calldata uri) public onlyOwner {
        baseURI = uri;
    }
    
    /**
     * Burns the provided token id if you own it.
     * Reduces the supply by 1.
     * 
     * @param tokenId - the ID of the token to be burned.
     */
    function burn(uint256 tokenId) public {
        require(ownerOf(tokenId) == msg.sender, "You do not own this token");
        
        _burn(tokenId);
        supply--;
    }
    
    // ------------------------------------------------ MINT STUFFS ------------------------------------------------
    
    /**
     * Gets all of the data related to the presale mint.
     * @return startDate - the start date (UNIX Seconds)
     * @return endDate - the end date (UNIX Seconds)
     * @return mintPrice - the cost of the presale mint in WEI
     */
    function getPresaleMint() public view returns (uint256 startDate, uint256 endDate, uint256 mintPrice) {
        startDate = presaleMint.startDate;
        endDate = presaleMint.endDate;
        mintPrice = presaleMint.mintPrice;
    }
    
    /**
     * Gets all of the data related to the presale mint.
     * @return startDate - the start date (UNIX Seconds)
     * @return endDate - the end date (UNIX Seconds)
     * @return mintPrice - the cost of the presale mint in WEI
     * @return maxPerTransaction - the maximum amount a user can have in their wallet for the public mint
     */
    function getPublicMint() public view returns (
        uint256 startDate,
        uint256 endDate,
        uint256 mintPrice,
        uint64 maxPerTransaction
    ) {
        startDate = publicMint.startDate;
        endDate = publicMint.endDate;
        mintPrice = publicMint.mintPrice;
        maxPerTransaction = publicMint.maxPerTransaction;
    }
    
    /**
     * Sets users for the whitelist with the given allowed mint quantity.
     * 
     * @param users - the addresses of the users to whitelist
     * @param quantities - the quanities each address specified can mint
     */
    function setMintWhitelist(address[] calldata users, uint64[] calldata quantities) public onlyOwner {
        require(users.length == quantities.length, "User array does not correspond with quantities");

        // add new values
        for (uint256 i = 0; i < users.length; i++) {
            presaleMint.whitelist[users[i]] = quantities[i];
        }
    }

    function whitelistQuantity(address user) view public returns (uint256) {
        return presaleMint.whitelist[user];
    }
    
    /**
     * Updates the presale mint's characteristics
     * 
     * @param mintPrice - the cost for that mint in WEI
     * @param startDate - the start date for that mint in UNIX seconds
     * @param endDate - the end date for that mint in UNIX seconds
     */
    function updatePresaleMint(uint256 mintPrice, uint256 startDate, uint256 endDate) public onlyOwner {
        require(mintPrice > 0, "Presale mint cannot be free");
        require(startDate <= endDate, "Presale mint cannot start after it ends");
        
        presaleMint.mintPrice = mintPrice;
        presaleMint.startDate = startDate;
        presaleMint.endDate = endDate;
    }
    
    /**
     * Updates the public mint's characteristics
     * 
     * @param mintPrice - the cost for that mint in WEI
     * @param maxPerTransaction - the maximum amount allowed in a wallet to mint in the public mint
     * @param startDate - the start date for that mint in UNIX seconds
     * @param endDate - the end date for that mint in UNIX seconds
     */
    function updatePublicMint(uint256 mintPrice, uint64 maxPerTransaction, uint256 startDate, uint256 endDate) public onlyOwner {
        require(startDate <= endDate, "Public mint cannot start after it ends");
        require(mintPrice > 0, "Public mint cannot be free");
        require(maxPerTransaction > 0, "Public mint max per transaction cannot be less than 1");
        
        publicMint.mintPrice = mintPrice;
        publicMint.maxPerTransaction = maxPerTransaction;
        publicMint.startDate = startDate;
        publicMint.endDate = endDate;
    }
    
    /**
     * Mints the given quantity of tokens provided it is possible to.
     * 
     * @notice This function choses the appropriate mint depending on the timestamp
     *         and will expend the first mint in which you can mint that quantity
     *         with the precedence: Free -> Presale -> Public.
     * 
     * @param quantity - the number of tokens to mint
     */
    function mint(uint64 quantity) public payable nonReentrant {
        uint256 remaining = SafeMath.sub(maxSupply, minted);
        
        require(remaining > 0, "The mint has concluded");
        require(quantity >= 1, "Must mint at least one");
        require(quantity <= remaining, "Cannot mint more than are available");
        
        if (owner() == msg.sender) {
            // OWNER MINTING FOR FREE
            require(msg.value == 0, "The contract owner cannot pay to mint");
        } else if (
            block.timestamp >= presaleMint.startDate &&
            block.timestamp <= presaleMint.endDate &&
            presaleMint.whitelist[msg.sender] >= quantity
        ) {
            // PRESALE MINT
            require(SafeMath.mul(quantity, presaleMint.mintPrice) == msg.value, "Invalid value provided to mint in presale");
            presaleMint.whitelist[msg.sender] -= quantity;
        } else if (
            block.timestamp >= publicMint.startDate &&
            block.timestamp <= publicMint.endDate
        ) {
            // PUBLIC MINT
            require(quantity <= publicMint.maxPerTransaction, "Exceeds the public mint maximum");
            require(SafeMath.mul(quantity, publicMint.mintPrice) == msg.value, "Invalid value provided to mint");
        } else {
            // NOT ELIGIBLE FOR PUBLIC MINT
            revert("You cannot mint the quantity specified at this time");
        }
        
        // DISTRIBUTE THE TOKENS
        uint64 i = 0;
        for (i; i < quantity; i++) {
            supply += 1;
            minted += 1;
            _safeMint(msg.sender, minted);
        }
    }
    
    /**
     * Withdraws balance from the contract to the owner (sender).
     * @param amount - the amount to withdraw, much be <= contract balance.
     */
    function withdraw(uint256 amount) external onlyOwner nonReentrant {
        require(address(this).balance <= amount, "Invalid withdraw amount");
        
        (bool success, ) = msg.sender.call{ value: amount }("");
        require(success, "Transaction failed");
        emit Withdraw(msg.sender, amount);
    }
    
    /**
     * The receive function, does nothing
     */
    receive() external payable {
        emit Paid(msg.sender, msg.value);
    }
}

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

pragma solidity ^0.8.0;

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        require(operator != _msgSender(), "ERC721: approve to caller");

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

// CAUTION
// This version of SafeMath should only be used with Solidity 0.8 or later,
// because it relies on the compiler's built in overflow checks.

/**
 * @dev Wrappers over Solidity's arithmetic operations.
 *
 * NOTE: `SafeMath` is no longer needed starting with Solidity 0.8. The compiler
 * now has built in overflow checking.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            uint256 c = a + b;
            if (c < a) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the substraction of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b > a) return (false, 0);
            return (true, a - b);
        }
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
            // benefit is lost if 'b' is also tested.
            // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
            if (a == 0) return (true, 0);
            uint256 c = a * b;
            if (c / a != b) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the division of two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a / b);
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a % b);
        }
    }

    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        return a + b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return a - b;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        return a * b;
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator.
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return a / b;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        return a % b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {trySub}.
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b <= a, errorMessage);
            return a - b;
        }
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a / b;
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting with custom message when dividing by zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryMod}.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a % b;
        }
    }
}

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

pragma solidity ^0.8.0;

import "../IERC721.sol";

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

File 11 of 13 : Strings.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

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

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

File 12 of 13 : ERC165.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./IERC165.sol";

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

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

pragma solidity ^0.8.0;

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

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"uint256","name":"presaleMintPrice","type":"uint256"},{"internalType":"uint256","name":"presaleMintStart","type":"uint256"},{"internalType":"uint256","name":"presaleMintEnd","type":"uint256"},{"internalType":"uint256","name":"publicMintPrice","type":"uint256"},{"internalType":"uint256","name":"publicMintStart","type":"uint256"},{"internalType":"uint256","name":"publicMintEnd","type":"uint256"},{"internalType":"uint64","name":"publicMintMaxPerTransaction","type":"uint64"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"sender","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Paid","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":"recipient","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Withdraw","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getPresaleMint","outputs":[{"internalType":"uint256","name":"startDate","type":"uint256"},{"internalType":"uint256","name":"endDate","type":"uint256"},{"internalType":"uint256","name":"mintPrice","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getPublicMint","outputs":[{"internalType":"uint256","name":"startDate","type":"uint256"},{"internalType":"uint256","name":"endDate","type":"uint256"},{"internalType":"uint256","name":"mintPrice","type":"uint256"},{"internalType":"uint64","name":"maxPerTransaction","type":"uint64"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint64","name":"","type":"uint64"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint64","name":"quantity","type":"uint64"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"minted","outputs":[{"internalType":"uint64","name":"","type":"uint64"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"uri","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"users","type":"address[]"},{"internalType":"uint64[]","name":"quantities","type":"uint64[]"}],"name":"setMintWhitelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"supply","outputs":[{"internalType":"uint64","name":"","type":"uint64"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"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":"uint256","name":"mintPrice","type":"uint256"},{"internalType":"uint256","name":"startDate","type":"uint256"},{"internalType":"uint256","name":"endDate","type":"uint256"}],"name":"updatePresaleMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"mintPrice","type":"uint256"},{"internalType":"uint64","name":"maxPerTransaction","type":"uint64"},{"internalType":"uint256","name":"startDate","type":"uint256"},{"internalType":"uint256","name":"endDate","type":"uint256"}],"name":"updatePublicMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"user","type":"address"}],"name":"whitelistQuantity","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

608060405260405180602001604052806000815250600890805190602001906200002b929190620004ff565b5061157c600960006101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600960086101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600960106101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550348015620000b857600080fd5b5060405162005900380380620059008339818101604052810190620000de9190620005dd565b6040518060400160405280601081526020017f4c696f6e73526f79616c7479436c7562000000000000000000000000000000008152506040518060400160405280600381526020017f4c52430000000000000000000000000000000000000000000000000000000000815250816000908051906020019062000162929190620004ff565b5080600190805190602001906200017b929190620004ff565b5050506200019e620001926200043160201b60201c565b6200043960201b60201c565b600160078190555042851015620001ec576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620001e39062000807565b60405180910390fd5b6000871162000232576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000229906200084b565b60405180910390fd5b8486111562000278576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200026f906200086d565b60405180910390fd5b60008411620002be576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002b590620007c3565b60405180910390fd5b4282101562000304576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002fb90620007e5565b60405180910390fd5b60008167ffffffffffffffff161162000354576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200034b9062000829565b60405180910390fd5b818311156200039a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200039190620007a1565b60405180910390fd5b86600a6000018190555060008614620003b45785620003b6565b425b600a6003018190555084600a6004018190555083600f6000018190555060008314620003e35782620003e5565b425b600f6002018190555081600f6003018190555080600f60010160006101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505050505050505062000b39565b600033905090565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200050d90620008be565b90600052602060002090601f0160209004810192826200053157600085556200057d565b82601f106200054c57805160ff19168380011785556200057d565b828001600101855582156200057d579182015b828111156200057c5782518255916020019190600101906200055f565b5b5090506200058c919062000590565b5090565b5b80821115620005ab57600081600090555060010162000591565b5090565b600081519050620005c08162000b05565b92915050565b600081519050620005d78162000b1f565b92915050565b600080600080600080600060e0888a031215620005ff57620005fe62000923565b5b60006200060f8a828b01620005af565b9750506020620006228a828b01620005af565b9650506040620006358a828b01620005af565b9550506060620006488a828b01620005af565b94505060806200065b8a828b01620005af565b93505060a06200066e8a828b01620005af565b92505060c0620006818a828b01620005c6565b91505092959891949750929550565b60006200069f6026836200088f565b9150620006ac8262000928565b604082019050919050565b6000620006c6601a836200088f565b9150620006d38262000977565b602082019050919050565b6000620006ed6022836200088f565b9150620006fa82620009a0565b604082019050919050565b6000620007146023836200088f565b91506200072182620009ef565b604082019050919050565b60006200073b6035836200088f565b9150620007488262000a3e565b604082019050919050565b600062000762601b836200088f565b91506200076f8262000a8d565b602082019050919050565b6000620007896027836200088f565b9150620007968262000ab6565b604082019050919050565b60006020820190508181036000830152620007bc8162000690565b9050919050565b60006020820190508181036000830152620007de81620006b7565b9050919050565b600060208201905081810360008301526200080081620006de565b9050919050565b60006020820190508181036000830152620008228162000705565b9050919050565b6000602082019050818103600083015262000844816200072c565b9050919050565b60006020820190508181036000830152620008668162000753565b9050919050565b6000602082019050818103600083015262000888816200077a565b9050919050565b600082825260208201905092915050565b6000819050919050565b600067ffffffffffffffff82169050919050565b60006002820490506001821680620008d757607f821691505b60208210811415620008ee57620008ed620008f4565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600080fd5b7f5075626c6963206d696e742063616e6e6f74207374617274206166746572206960008201527f7420656e64730000000000000000000000000000000000000000000000000000602082015250565b7f5075626c6963206d696e742063616e6e6f742062652066726565000000000000600082015250565b7f5075626c6963206d696e742063616e6e6f7420656e6420696e2074686520706160008201527f7374000000000000000000000000000000000000000000000000000000000000602082015250565b7f50726573616c65206d696e742063616e6e6f7420656e6420696e20746865207060008201527f6173740000000000000000000000000000000000000000000000000000000000602082015250565b7f5075626c6963206d696e74206d617820706572207472616e73616374696f6e2060008201527f63616e6e6f74206265206c657373207468616e20310000000000000000000000602082015250565b7f50726573616c65206d696e742063616e6e6f7420626520667265650000000000600082015250565b7f50726573616c65206d696e742063616e6e6f742073746172742061667465722060008201527f697420656e647300000000000000000000000000000000000000000000000000602082015250565b62000b1081620008a0565b811462000b1c57600080fd5b50565b62000b2a81620008aa565b811462000b3657600080fd5b50565b614db78062000b496000396000f3fe6080604052600436106101c65760003560e01c80637daa7f6e116100f7578063c87b56dd11610095578063e2ce86e811610064578063e2ce86e814610673578063e985e9c5146106b0578063f2fde38b146106ed578063fb9d09c81461071657610206565b8063c87b56dd146105b0578063d08a6e37146105ed578063d5abeb011461061a578063d6719dca1461064557610206565b806395d89b41116100d157806395d89b411461050a5780639b2da3e014610535578063a22cb4651461055e578063b88d4fde1461058757610206565b80637daa7f6e1461048d5780638da5cb5b146104b657806390f91e08146104e157610206565b806342842e0e1161016457806355f804b31161013e57806355f804b3146103d35780636352211e146103fc57806370a0823114610439578063715018a61461047657610206565b806342842e0e1461035657806342966c681461037f5780634f02c420146103a857610206565b8063081812fc116101a0578063081812fc1461029e578063095ea7b3146102db57806323b872dd146103045780632e1a7d4d1461032d57610206565b806301ffc9a71461020b578063047fc9aa1461024857806306fdde031461027357610206565b36610206577f737c69225d647e5994eab1a6c301bf6d9232beb2759ae1e27a8966b4732bc48933346040516101fc929190613a02565b60405180910390a1005b600080fd5b34801561021757600080fd5b50610232600480360381019061022d91906131ff565b610732565b60405161023f9190613a2b565b60405180910390f35b34801561025457600080fd5b5061025d610814565b60405161026a9190613f3f565b60405180910390f35b34801561027f57600080fd5b5061028861082e565b6040516102959190613a46565b60405180910390f35b3480156102aa57600080fd5b506102c560048036038101906102c091906132a6565b6108c0565b6040516102d2919061399b565b60405180910390f35b3480156102e757600080fd5b5061030260048036038101906102fd919061313e565b610945565b005b34801561031057600080fd5b5061032b60048036038101906103269190613028565b610a5d565b005b34801561033957600080fd5b50610354600480360381019061034f91906132a6565b610abd565b005b34801561036257600080fd5b5061037d60048036038101906103789190613028565b610cbb565b005b34801561038b57600080fd5b506103a660048036038101906103a191906132a6565b610cdb565b005b3480156103b457600080fd5b506103bd610daa565b6040516103ca9190613f3f565b60405180910390f35b3480156103df57600080fd5b506103fa60048036038101906103f59190613259565b610dc4565b005b34801561040857600080fd5b50610423600480360381019061041e91906132a6565b610e56565b604051610430919061399b565b60405180910390f35b34801561044557600080fd5b50610460600480360381019061045b9190612fbb565b610f08565b60405161046d9190613ea8565b60405180910390f35b34801561048257600080fd5b5061048b610fc0565b005b34801561049957600080fd5b506104b460048036038101906104af9190613326565b611048565b005b3480156104c257600080fd5b506104cb6111e7565b6040516104d8919061399b565b60405180910390f35b3480156104ed57600080fd5b50610508600480360381019061050391906132d3565b611211565b005b34801561051657600080fd5b5061051f611336565b60405161052c9190613a46565b60405180910390f35b34801561054157600080fd5b5061055c6004803603810190610557919061317e565b6113c8565b005b34801561056a57600080fd5b50610585600480360381019061058091906130fe565b61156b565b005b34801561059357600080fd5b506105ae60048036038101906105a9919061307b565b6116ec565b005b3480156105bc57600080fd5b506105d760048036038101906105d291906132a6565b61174e565b6040516105e49190613a46565b60405180910390f35b3480156105f957600080fd5b506106026117f5565b60405161061193929190613ec3565b60405180910390f35b34801561062657600080fd5b5061062f611817565b60405161063c9190613f3f565b60405180910390f35b34801561065157600080fd5b5061065a611831565b60405161066a9493929190613efa565b60405180910390f35b34801561067f57600080fd5b5061069a60048036038101906106959190612fbb565b611871565b6040516106a79190613ea8565b60405180910390f35b3480156106bc57600080fd5b506106d760048036038101906106d29190612fe8565b6118db565b6040516106e49190613a2b565b60405180910390f35b3480156106f957600080fd5b50610714600480360381019061070f9190612fbb565b61196f565b005b610730600480360381019061072b919061338d565b611a67565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806107fd57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061080d575061080c8261200f565b5b9050919050565b600960089054906101000a900467ffffffffffffffff1681565b60606000805461083d90614279565b80601f016020809104026020016040519081016040528092919081815260200182805461086990614279565b80156108b65780601f1061088b576101008083540402835291602001916108b6565b820191906000526020600020905b81548152906001019060200180831161089957829003601f168201915b5050505050905090565b60006108cb82612079565b61090a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161090190613ca8565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061095082610e56565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156109c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109b890613d48565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166109e06120e5565b73ffffffffffffffffffffffffffffffffffffffff161480610a0f5750610a0e81610a096120e5565b6118db565b5b610a4e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a4590613be8565b60405180910390fd5b610a5883836120ed565b505050565b610a6e610a686120e5565b826121a6565b610aad576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aa490613da8565b60405180910390fd5b610ab8838383612284565b505050565b610ac56120e5565b73ffffffffffffffffffffffffffffffffffffffff16610ae36111e7565b73ffffffffffffffffffffffffffffffffffffffff1614610b39576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b3090613ce8565b60405180910390fd5b60026007541415610b7f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b7690613e28565b60405180910390fd5b600260078190555080471115610bca576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bc190613d68565b60405180910390fd5b60003373ffffffffffffffffffffffffffffffffffffffff1682604051610bf090613986565b60006040518083038185875af1925050503d8060008114610c2d576040519150601f19603f3d011682016040523d82523d6000602084013e610c32565b606091505b5050905080610c76576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c6d90613d88565b60405180910390fd5b7f884edad9ce6fa2440d8a54cc123490eb96d2768479d49ff9c7366125a94243643383604051610ca7929190613a02565b60405180910390a150600160078190555050565b610cd6838383604051806020016040528060008152506116ec565b505050565b3373ffffffffffffffffffffffffffffffffffffffff16610cfb82610e56565b73ffffffffffffffffffffffffffffffffffffffff1614610d51576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d4890613a68565b60405180910390fd5b610d5a816124e0565b6009600881819054906101000a900467ffffffffffffffff1680929190610d809061424f565b91906101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505050565b600960109054906101000a900467ffffffffffffffff1681565b610dcc6120e5565b73ffffffffffffffffffffffffffffffffffffffff16610dea6111e7565b73ffffffffffffffffffffffffffffffffffffffff1614610e40576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e3790613ce8565b60405180910390fd5b818160089190610e51929190612d28565b505050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610eff576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ef690613c28565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610f79576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f7090613c08565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610fc86120e5565b73ffffffffffffffffffffffffffffffffffffffff16610fe66111e7565b73ffffffffffffffffffffffffffffffffffffffff161461103c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161103390613ce8565b60405180910390fd5b61104660006125f1565b565b6110506120e5565b73ffffffffffffffffffffffffffffffffffffffff1661106e6111e7565b73ffffffffffffffffffffffffffffffffffffffff16146110c4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110bb90613ce8565b60405180910390fd5b80821115611107576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110fe90613b08565b60405180910390fd5b6000841161114a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161114190613bc8565b60405180910390fd5b60008367ffffffffffffffff1611611197576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161118e90613de8565b60405180910390fd5b83600f6000018190555082600f60010160006101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555081600f6002018190555080600f6003018190555050505050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6112196120e5565b73ffffffffffffffffffffffffffffffffffffffff166112376111e7565b73ffffffffffffffffffffffffffffffffffffffff161461128d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161128490613ce8565b60405180910390fd5b600083116112d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112c790613e08565b60405180910390fd5b80821115611313576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161130a90613e68565b60405180910390fd5b82600a6000018190555081600a6003018190555080600a60040181905550505050565b60606001805461134590614279565b80601f016020809104026020016040519081016040528092919081815260200182805461137190614279565b80156113be5780601f10611393576101008083540402835291602001916113be565b820191906000526020600020905b8154815290600101906020018083116113a157829003601f168201915b5050505050905090565b6113d06120e5565b73ffffffffffffffffffffffffffffffffffffffff166113ee6111e7565b73ffffffffffffffffffffffffffffffffffffffff1614611444576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161143b90613ce8565b60405180910390fd5b81819050848490501461148c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161148390613c68565b60405180910390fd5b60005b84849050811015611564578282828181106114ad576114ac614414565b5b90506020020160208101906114c2919061338d565b600a60010160008787858181106114dc576114db614414565b5b90506020020160208101906114f19190612fbb565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550808061155c906142dc565b91505061148f565b5050505050565b6115736120e5565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156115e1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115d890613b88565b60405180910390fd5b80600560006115ee6120e5565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661169b6120e5565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516116e09190613a2b565b60405180910390a35050565b6116fd6116f76120e5565b836121a6565b61173c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161173390613da8565b60405180910390fd5b611748848484846126b7565b50505050565b606061175982612079565b611798576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161178f90613d28565b60405180910390fd5b60006117a2612713565b905060008151116117c257604051806020016040528060008152506117ed565b806117cc846127a5565b6040516020016117dd929190613962565b6040516020818303038152906040525b915050919050565b6000806000600a600301549250600a600401549150600a600001549050909192565b600960009054906101000a900467ffffffffffffffff1681565b600080600080600f600201549350600f600301549250600f600001549150600f60010160009054906101000a900467ffffffffffffffff16905090919293565b6000600a60010160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6119776120e5565b73ffffffffffffffffffffffffffffffffffffffff166119956111e7565b73ffffffffffffffffffffffffffffffffffffffff16146119eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119e290613ce8565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611a5b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a5290613ae8565b60405180910390fd5b611a64816125f1565b50565b60026007541415611aad576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aa490613e28565b60405180910390fd5b60026007819055506000611b01600960009054906101000a900467ffffffffffffffff1667ffffffffffffffff16600960109054906101000a900467ffffffffffffffff1667ffffffffffffffff16612906565b905060008111611b46576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b3d90613c48565b60405180910390fd5b60018267ffffffffffffffff161015611b94576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b8b90613e48565b60405180910390fd5b808267ffffffffffffffff161115611be1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bd890613b48565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff16611c006111e7565b73ffffffffffffffffffffffffffffffffffffffff161415611c645760003414611c5f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c5690613dc8565b60405180910390fd5b611f0e565b600a600301544210158015611c7e5750600a600401544211155b8015611cf457508167ffffffffffffffff16600a60010160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900467ffffffffffffffff1667ffffffffffffffff1610155b15611de35734611d138367ffffffffffffffff16600a6000015461291c565b14611d53576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d4a90613a88565b60405180910390fd5b81600a60010160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282829054906101000a900467ffffffffffffffff16611db89190614151565b92506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550611f0d565b600f600201544210158015611dfd5750600f600301544211155b15611ed157600f60010160009054906101000a900467ffffffffffffffff1667ffffffffffffffff168267ffffffffffffffff161115611e72576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e6990613cc8565b60405180910390fd5b34611e8c8367ffffffffffffffff16600f6000015461291c565b14611ecc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ec390613aa8565b60405180910390fd5b611f0c565b6040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f0390613e88565b60405180910390fd5b5b5b60005b8267ffffffffffffffff168167ffffffffffffffff161015612002576001600960088282829054906101000a900467ffffffffffffffff16611f539190614054565b92506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600960108282829054906101000a900467ffffffffffffffff16611f9f9190614054565b92506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550611fef33600960109054906101000a900467ffffffffffffffff1667ffffffffffffffff16612932565b8080611ffa90614325565b915050611f11565b5050600160078190555050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661216083610e56565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006121b182612079565b6121f0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121e790613ba8565b60405180910390fd5b60006121fb83610e56565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061226a57508373ffffffffffffffffffffffffffffffffffffffff16612252846108c0565b73ffffffffffffffffffffffffffffffffffffffff16145b8061227b575061227a81856118db565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166122a482610e56565b73ffffffffffffffffffffffffffffffffffffffff16146122fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122f190613d08565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561236a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161236190613b68565b60405180910390fd5b612375838383612950565b6123806000826120ed565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546123d0919061411d565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546124279190613ffe565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b60006124eb82610e56565b90506124f981600084612950565b6125046000836120ed565b6001600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612554919061411d565b925050819055506002600083815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff021916905581600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6126c2848484612284565b6126ce84848484612955565b61270d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161270490613ac8565b60405180910390fd5b50505050565b60606008805461272290614279565b80601f016020809104026020016040519081016040528092919081815260200182805461274e90614279565b801561279b5780601f106127705761010080835404028352916020019161279b565b820191906000526020600020905b81548152906001019060200180831161277e57829003601f168201915b5050505050905090565b606060008214156127ed576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612901565b600082905060005b6000821461281f578080612808906142dc565b915050600a826128189190614092565b91506127f5565b60008167ffffffffffffffff81111561283b5761283a614443565b5b6040519080825280601f01601f19166020018201604052801561286d5781602001600182028036833780820191505090505b5090505b600085146128fa57600182612886919061411d565b9150600a856128959190614356565b60306128a19190613ffe565b60f81b8183815181106128b7576128b6614414565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856128f39190614092565b9450612871565b8093505050505b919050565b60008183612914919061411d565b905092915050565b6000818361292a91906140c3565b905092915050565b61294c828260405180602001604052806000815250612aec565b5050565b505050565b60006129768473ffffffffffffffffffffffffffffffffffffffff16612b47565b15612adf578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261299f6120e5565b8786866040518563ffffffff1660e01b81526004016129c194939291906139b6565b602060405180830381600087803b1580156129db57600080fd5b505af1925050508015612a0c57506040513d601f19601f82011682018060405250810190612a09919061322c565b60015b612a8f573d8060008114612a3c576040519150601f19603f3d011682016040523d82523d6000602084013e612a41565b606091505b50600081511415612a87576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a7e90613ac8565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612ae4565b600190505b949350505050565b612af68383612b5a565b612b036000848484612955565b612b42576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b3990613ac8565b60405180910390fd5b505050565b600080823b905060008111915050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612bca576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bc190613c88565b60405180910390fd5b612bd381612079565b15612c13576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c0a90613b28565b60405180910390fd5b612c1f60008383612950565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612c6f9190613ffe565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b828054612d3490614279565b90600052602060002090601f016020900481019282612d565760008555612d9d565b82601f10612d6f57803560ff1916838001178555612d9d565b82800160010185558215612d9d579182015b82811115612d9c578235825591602001919060010190612d81565b5b509050612daa9190612dae565b5090565b5b80821115612dc7576000816000905550600101612daf565b5090565b6000612dde612dd984613f7f565b613f5a565b905082815260208101848484011115612dfa57612df9614481565b5b612e0584828561420d565b509392505050565b600081359050612e1c81614d0e565b92915050565b60008083601f840112612e3857612e37614477565b5b8235905067ffffffffffffffff811115612e5557612e54614472565b5b602083019150836020820283011115612e7157612e7061447c565b5b9250929050565b60008083601f840112612e8e57612e8d614477565b5b8235905067ffffffffffffffff811115612eab57612eaa614472565b5b602083019150836020820283011115612ec757612ec661447c565b5b9250929050565b600081359050612edd81614d25565b92915050565b600081359050612ef281614d3c565b92915050565b600081519050612f0781614d3c565b92915050565b600082601f830112612f2257612f21614477565b5b8135612f32848260208601612dcb565b91505092915050565b60008083601f840112612f5157612f50614477565b5b8235905067ffffffffffffffff811115612f6e57612f6d614472565b5b602083019150836001820283011115612f8a57612f8961447c565b5b9250929050565b600081359050612fa081614d53565b92915050565b600081359050612fb581614d6a565b92915050565b600060208284031215612fd157612fd061448b565b5b6000612fdf84828501612e0d565b91505092915050565b60008060408385031215612fff57612ffe61448b565b5b600061300d85828601612e0d565b925050602061301e85828601612e0d565b9150509250929050565b6000806000606084860312156130415761304061448b565b5b600061304f86828701612e0d565b935050602061306086828701612e0d565b925050604061307186828701612f91565b9150509250925092565b600080600080608085870312156130955761309461448b565b5b60006130a387828801612e0d565b94505060206130b487828801612e0d565b93505060406130c587828801612f91565b925050606085013567ffffffffffffffff8111156130e6576130e5614486565b5b6130f287828801612f0d565b91505092959194509250565b600080604083850312156131155761311461448b565b5b600061312385828601612e0d565b925050602061313485828601612ece565b9150509250929050565b600080604083850312156131555761315461448b565b5b600061316385828601612e0d565b925050602061317485828601612f91565b9150509250929050565b600080600080604085870312156131985761319761448b565b5b600085013567ffffffffffffffff8111156131b6576131b5614486565b5b6131c287828801612e22565b9450945050602085013567ffffffffffffffff8111156131e5576131e4614486565b5b6131f187828801612e78565b925092505092959194509250565b6000602082840312156132155761321461448b565b5b600061322384828501612ee3565b91505092915050565b6000602082840312156132425761324161448b565b5b600061325084828501612ef8565b91505092915050565b600080602083850312156132705761326f61448b565b5b600083013567ffffffffffffffff81111561328e5761328d614486565b5b61329a85828601612f3b565b92509250509250929050565b6000602082840312156132bc576132bb61448b565b5b60006132ca84828501612f91565b91505092915050565b6000806000606084860312156132ec576132eb61448b565b5b60006132fa86828701612f91565b935050602061330b86828701612f91565b925050604061331c86828701612f91565b9150509250925092565b600080600080608085870312156133405761333f61448b565b5b600061334e87828801612f91565b945050602061335f87828801612fa6565b935050604061337087828801612f91565b925050606061338187828801612f91565b91505092959194509250565b6000602082840312156133a3576133a261448b565b5b60006133b184828501612fa6565b91505092915050565b6133c381614185565b82525050565b6133d281614197565b82525050565b60006133e382613fb0565b6133ed8185613fc6565b93506133fd81856020860161421c565b61340681614490565b840191505092915050565b600061341c82613fbb565b6134268185613fe2565b935061343681856020860161421c565b61343f81614490565b840191505092915050565b600061345582613fbb565b61345f8185613ff3565b935061346f81856020860161421c565b80840191505092915050565b6000613488601983613fe2565b9150613493826144a1565b602082019050919050565b60006134ab602983613fe2565b91506134b6826144ca565b604082019050919050565b60006134ce601e83613fe2565b91506134d982614519565b602082019050919050565b60006134f1603283613fe2565b91506134fc82614542565b604082019050919050565b6000613514602683613fe2565b915061351f82614591565b604082019050919050565b6000613537602683613fe2565b9150613542826145e0565b604082019050919050565b600061355a601c83613fe2565b91506135658261462f565b602082019050919050565b600061357d602383613fe2565b915061358882614658565b604082019050919050565b60006135a0602483613fe2565b91506135ab826146a7565b604082019050919050565b60006135c3601983613fe2565b91506135ce826146f6565b602082019050919050565b60006135e6602c83613fe2565b91506135f18261471f565b604082019050919050565b6000613609601a83613fe2565b91506136148261476e565b602082019050919050565b600061362c603883613fe2565b915061363782614797565b604082019050919050565b600061364f602a83613fe2565b915061365a826147e6565b604082019050919050565b6000613672602983613fe2565b915061367d82614835565b604082019050919050565b6000613695601683613fe2565b91506136a082614884565b602082019050919050565b60006136b8602e83613fe2565b91506136c3826148ad565b604082019050919050565b60006136db602083613fe2565b91506136e6826148fc565b602082019050919050565b60006136fe602c83613fe2565b915061370982614925565b604082019050919050565b6000613721601f83613fe2565b915061372c82614974565b602082019050919050565b6000613744602083613fe2565b915061374f8261499d565b602082019050919050565b6000613767602983613fe2565b9150613772826149c6565b604082019050919050565b600061378a602f83613fe2565b915061379582614a15565b604082019050919050565b60006137ad602183613fe2565b91506137b882614a64565b604082019050919050565b60006137d0601783613fe2565b91506137db82614ab3565b602082019050919050565b60006137f3601283613fe2565b91506137fe82614adc565b602082019050919050565b6000613816600083613fd7565b915061382182614b05565b600082019050919050565b6000613839603183613fe2565b915061384482614b08565b604082019050919050565b600061385c602583613fe2565b915061386782614b57565b604082019050919050565b600061387f603583613fe2565b915061388a82614ba6565b604082019050919050565b60006138a2601b83613fe2565b91506138ad82614bf5565b602082019050919050565b60006138c5601f83613fe2565b91506138d082614c1e565b602082019050919050565b60006138e8601683613fe2565b91506138f382614c47565b602082019050919050565b600061390b602783613fe2565b915061391682614c70565b604082019050919050565b600061392e603383613fe2565b915061393982614cbf565b604082019050919050565b61394d816141ef565b82525050565b61395c816141f9565b82525050565b600061396e828561344a565b915061397a828461344a565b91508190509392505050565b600061399182613809565b9150819050919050565b60006020820190506139b060008301846133ba565b92915050565b60006080820190506139cb60008301876133ba565b6139d860208301866133ba565b6139e56040830185613944565b81810360608301526139f781846133d8565b905095945050505050565b6000604082019050613a1760008301856133ba565b613a246020830184613944565b9392505050565b6000602082019050613a4060008301846133c9565b92915050565b60006020820190508181036000830152613a608184613411565b905092915050565b60006020820190508181036000830152613a818161347b565b9050919050565b60006020820190508181036000830152613aa18161349e565b9050919050565b60006020820190508181036000830152613ac1816134c1565b9050919050565b60006020820190508181036000830152613ae1816134e4565b9050919050565b60006020820190508181036000830152613b0181613507565b9050919050565b60006020820190508181036000830152613b218161352a565b9050919050565b60006020820190508181036000830152613b418161354d565b9050919050565b60006020820190508181036000830152613b6181613570565b9050919050565b60006020820190508181036000830152613b8181613593565b9050919050565b60006020820190508181036000830152613ba1816135b6565b9050919050565b60006020820190508181036000830152613bc1816135d9565b9050919050565b60006020820190508181036000830152613be1816135fc565b9050919050565b60006020820190508181036000830152613c018161361f565b9050919050565b60006020820190508181036000830152613c2181613642565b9050919050565b60006020820190508181036000830152613c4181613665565b9050919050565b60006020820190508181036000830152613c6181613688565b9050919050565b60006020820190508181036000830152613c81816136ab565b9050919050565b60006020820190508181036000830152613ca1816136ce565b9050919050565b60006020820190508181036000830152613cc1816136f1565b9050919050565b60006020820190508181036000830152613ce181613714565b9050919050565b60006020820190508181036000830152613d0181613737565b9050919050565b60006020820190508181036000830152613d218161375a565b9050919050565b60006020820190508181036000830152613d418161377d565b9050919050565b60006020820190508181036000830152613d61816137a0565b9050919050565b60006020820190508181036000830152613d81816137c3565b9050919050565b60006020820190508181036000830152613da1816137e6565b9050919050565b60006020820190508181036000830152613dc18161382c565b9050919050565b60006020820190508181036000830152613de18161384f565b9050919050565b60006020820190508181036000830152613e0181613872565b9050919050565b60006020820190508181036000830152613e2181613895565b9050919050565b60006020820190508181036000830152613e41816138b8565b9050919050565b60006020820190508181036000830152613e61816138db565b9050919050565b60006020820190508181036000830152613e81816138fe565b9050919050565b60006020820190508181036000830152613ea181613921565b9050919050565b6000602082019050613ebd6000830184613944565b92915050565b6000606082019050613ed86000830186613944565b613ee56020830185613944565b613ef26040830184613944565b949350505050565b6000608082019050613f0f6000830187613944565b613f1c6020830186613944565b613f296040830185613944565b613f366060830184613953565b95945050505050565b6000602082019050613f546000830184613953565b92915050565b6000613f64613f75565b9050613f7082826142ab565b919050565b6000604051905090565b600067ffffffffffffffff821115613f9a57613f99614443565b5b613fa382614490565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000614009826141ef565b9150614014836141ef565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561404957614048614387565b5b828201905092915050565b600061405f826141f9565b915061406a836141f9565b92508267ffffffffffffffff0382111561408757614086614387565b5b828201905092915050565b600061409d826141ef565b91506140a8836141ef565b9250826140b8576140b76143b6565b5b828204905092915050565b60006140ce826141ef565b91506140d9836141ef565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561411257614111614387565b5b828202905092915050565b6000614128826141ef565b9150614133836141ef565b92508282101561414657614145614387565b5b828203905092915050565b600061415c826141f9565b9150614167836141f9565b92508282101561417a57614179614387565b5b828203905092915050565b6000614190826141cf565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600067ffffffffffffffff82169050919050565b82818337600083830152505050565b60005b8381101561423a57808201518184015260208101905061421f565b83811115614249576000848401525b50505050565b600061425a826141f9565b9150600082141561426e5761426d614387565b5b600182039050919050565b6000600282049050600182168061429157607f821691505b602082108114156142a5576142a46143e5565b5b50919050565b6142b482614490565b810181811067ffffffffffffffff821117156142d3576142d2614443565b5b80604052505050565b60006142e7826141ef565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561431a57614319614387565b5b600182019050919050565b6000614330826141f9565b915067ffffffffffffffff82141561434b5761434a614387565b5b600182019050919050565b6000614361826141ef565b915061436c836141ef565b92508261437c5761437b6143b6565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f596f7520646f206e6f74206f776e207468697320746f6b656e00000000000000600082015250565b7f496e76616c69642076616c75652070726f766964656420746f206d696e74206960008201527f6e2070726573616c650000000000000000000000000000000000000000000000602082015250565b7f496e76616c69642076616c75652070726f766964656420746f206d696e740000600082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f5075626c6963206d696e742063616e6e6f74207374617274206166746572206960008201527f7420656e64730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f43616e6e6f74206d696e74206d6f7265207468616e2061726520617661696c6160008201527f626c650000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f5075626c6963206d696e742063616e6e6f742062652066726565000000000000600082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f546865206d696e742068617320636f6e636c7564656400000000000000000000600082015250565b7f5573657220617272617920646f6573206e6f7420636f72726573706f6e64207760008201527f697468207175616e746974696573000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4578636565647320746865207075626c6963206d696e74206d6178696d756d00600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f496e76616c696420776974686472617720616d6f756e74000000000000000000600082015250565b7f5472616e73616374696f6e206661696c65640000000000000000000000000000600082015250565b50565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f54686520636f6e7472616374206f776e65722063616e6e6f742070617920746f60008201527f206d696e74000000000000000000000000000000000000000000000000000000602082015250565b7f5075626c6963206d696e74206d617820706572207472616e73616374696f6e2060008201527f63616e6e6f74206265206c657373207468616e20310000000000000000000000602082015250565b7f50726573616c65206d696e742063616e6e6f7420626520667265650000000000600082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f4d757374206d696e74206174206c65617374206f6e6500000000000000000000600082015250565b7f50726573616c65206d696e742063616e6e6f742073746172742061667465722060008201527f697420656e647300000000000000000000000000000000000000000000000000602082015250565b7f596f752063616e6e6f74206d696e7420746865207175616e746974792073706560008201527f63696669656420617420746869732074696d6500000000000000000000000000602082015250565b614d1781614185565b8114614d2257600080fd5b50565b614d2e81614197565b8114614d3957600080fd5b50565b614d45816141a3565b8114614d5057600080fd5b50565b614d5c816141ef565b8114614d6757600080fd5b50565b614d73816141f9565b8114614d7e57600080fd5b5056fea2646970667358221220d04e03b69cb1c3a4c0983ff249ecdc3e185e9c628d057904fc98d88bbde1c2cc64736f6c63430008070033000000000000000000000000000000000000000000000000009536c70891000000000000000000000000000000000000000000000000000000000000617cb53000000000000000000000000000000000000000000000000000000000617d9630000000000000000000000000000000000000000000000000009536c70891000000000000000000000000000000000000000000000000000000000000617dd320000000000000000000000000000000000000000000000000000000009d189d20000000000000000000000000000000000000000000000000000000000000000a

Deployed Bytecode

0x6080604052600436106101c65760003560e01c80637daa7f6e116100f7578063c87b56dd11610095578063e2ce86e811610064578063e2ce86e814610673578063e985e9c5146106b0578063f2fde38b146106ed578063fb9d09c81461071657610206565b8063c87b56dd146105b0578063d08a6e37146105ed578063d5abeb011461061a578063d6719dca1461064557610206565b806395d89b41116100d157806395d89b411461050a5780639b2da3e014610535578063a22cb4651461055e578063b88d4fde1461058757610206565b80637daa7f6e1461048d5780638da5cb5b146104b657806390f91e08146104e157610206565b806342842e0e1161016457806355f804b31161013e57806355f804b3146103d35780636352211e146103fc57806370a0823114610439578063715018a61461047657610206565b806342842e0e1461035657806342966c681461037f5780634f02c420146103a857610206565b8063081812fc116101a0578063081812fc1461029e578063095ea7b3146102db57806323b872dd146103045780632e1a7d4d1461032d57610206565b806301ffc9a71461020b578063047fc9aa1461024857806306fdde031461027357610206565b36610206577f737c69225d647e5994eab1a6c301bf6d9232beb2759ae1e27a8966b4732bc48933346040516101fc929190613a02565b60405180910390a1005b600080fd5b34801561021757600080fd5b50610232600480360381019061022d91906131ff565b610732565b60405161023f9190613a2b565b60405180910390f35b34801561025457600080fd5b5061025d610814565b60405161026a9190613f3f565b60405180910390f35b34801561027f57600080fd5b5061028861082e565b6040516102959190613a46565b60405180910390f35b3480156102aa57600080fd5b506102c560048036038101906102c091906132a6565b6108c0565b6040516102d2919061399b565b60405180910390f35b3480156102e757600080fd5b5061030260048036038101906102fd919061313e565b610945565b005b34801561031057600080fd5b5061032b60048036038101906103269190613028565b610a5d565b005b34801561033957600080fd5b50610354600480360381019061034f91906132a6565b610abd565b005b34801561036257600080fd5b5061037d60048036038101906103789190613028565b610cbb565b005b34801561038b57600080fd5b506103a660048036038101906103a191906132a6565b610cdb565b005b3480156103b457600080fd5b506103bd610daa565b6040516103ca9190613f3f565b60405180910390f35b3480156103df57600080fd5b506103fa60048036038101906103f59190613259565b610dc4565b005b34801561040857600080fd5b50610423600480360381019061041e91906132a6565b610e56565b604051610430919061399b565b60405180910390f35b34801561044557600080fd5b50610460600480360381019061045b9190612fbb565b610f08565b60405161046d9190613ea8565b60405180910390f35b34801561048257600080fd5b5061048b610fc0565b005b34801561049957600080fd5b506104b460048036038101906104af9190613326565b611048565b005b3480156104c257600080fd5b506104cb6111e7565b6040516104d8919061399b565b60405180910390f35b3480156104ed57600080fd5b50610508600480360381019061050391906132d3565b611211565b005b34801561051657600080fd5b5061051f611336565b60405161052c9190613a46565b60405180910390f35b34801561054157600080fd5b5061055c6004803603810190610557919061317e565b6113c8565b005b34801561056a57600080fd5b50610585600480360381019061058091906130fe565b61156b565b005b34801561059357600080fd5b506105ae60048036038101906105a9919061307b565b6116ec565b005b3480156105bc57600080fd5b506105d760048036038101906105d291906132a6565b61174e565b6040516105e49190613a46565b60405180910390f35b3480156105f957600080fd5b506106026117f5565b60405161061193929190613ec3565b60405180910390f35b34801561062657600080fd5b5061062f611817565b60405161063c9190613f3f565b60405180910390f35b34801561065157600080fd5b5061065a611831565b60405161066a9493929190613efa565b60405180910390f35b34801561067f57600080fd5b5061069a60048036038101906106959190612fbb565b611871565b6040516106a79190613ea8565b60405180910390f35b3480156106bc57600080fd5b506106d760048036038101906106d29190612fe8565b6118db565b6040516106e49190613a2b565b60405180910390f35b3480156106f957600080fd5b50610714600480360381019061070f9190612fbb565b61196f565b005b610730600480360381019061072b919061338d565b611a67565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806107fd57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061080d575061080c8261200f565b5b9050919050565b600960089054906101000a900467ffffffffffffffff1681565b60606000805461083d90614279565b80601f016020809104026020016040519081016040528092919081815260200182805461086990614279565b80156108b65780601f1061088b576101008083540402835291602001916108b6565b820191906000526020600020905b81548152906001019060200180831161089957829003601f168201915b5050505050905090565b60006108cb82612079565b61090a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161090190613ca8565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061095082610e56565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156109c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109b890613d48565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166109e06120e5565b73ffffffffffffffffffffffffffffffffffffffff161480610a0f5750610a0e81610a096120e5565b6118db565b5b610a4e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a4590613be8565b60405180910390fd5b610a5883836120ed565b505050565b610a6e610a686120e5565b826121a6565b610aad576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aa490613da8565b60405180910390fd5b610ab8838383612284565b505050565b610ac56120e5565b73ffffffffffffffffffffffffffffffffffffffff16610ae36111e7565b73ffffffffffffffffffffffffffffffffffffffff1614610b39576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b3090613ce8565b60405180910390fd5b60026007541415610b7f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b7690613e28565b60405180910390fd5b600260078190555080471115610bca576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bc190613d68565b60405180910390fd5b60003373ffffffffffffffffffffffffffffffffffffffff1682604051610bf090613986565b60006040518083038185875af1925050503d8060008114610c2d576040519150601f19603f3d011682016040523d82523d6000602084013e610c32565b606091505b5050905080610c76576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c6d90613d88565b60405180910390fd5b7f884edad9ce6fa2440d8a54cc123490eb96d2768479d49ff9c7366125a94243643383604051610ca7929190613a02565b60405180910390a150600160078190555050565b610cd6838383604051806020016040528060008152506116ec565b505050565b3373ffffffffffffffffffffffffffffffffffffffff16610cfb82610e56565b73ffffffffffffffffffffffffffffffffffffffff1614610d51576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d4890613a68565b60405180910390fd5b610d5a816124e0565b6009600881819054906101000a900467ffffffffffffffff1680929190610d809061424f565b91906101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505050565b600960109054906101000a900467ffffffffffffffff1681565b610dcc6120e5565b73ffffffffffffffffffffffffffffffffffffffff16610dea6111e7565b73ffffffffffffffffffffffffffffffffffffffff1614610e40576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e3790613ce8565b60405180910390fd5b818160089190610e51929190612d28565b505050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610eff576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ef690613c28565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610f79576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f7090613c08565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610fc86120e5565b73ffffffffffffffffffffffffffffffffffffffff16610fe66111e7565b73ffffffffffffffffffffffffffffffffffffffff161461103c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161103390613ce8565b60405180910390fd5b61104660006125f1565b565b6110506120e5565b73ffffffffffffffffffffffffffffffffffffffff1661106e6111e7565b73ffffffffffffffffffffffffffffffffffffffff16146110c4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110bb90613ce8565b60405180910390fd5b80821115611107576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110fe90613b08565b60405180910390fd5b6000841161114a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161114190613bc8565b60405180910390fd5b60008367ffffffffffffffff1611611197576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161118e90613de8565b60405180910390fd5b83600f6000018190555082600f60010160006101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555081600f6002018190555080600f6003018190555050505050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6112196120e5565b73ffffffffffffffffffffffffffffffffffffffff166112376111e7565b73ffffffffffffffffffffffffffffffffffffffff161461128d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161128490613ce8565b60405180910390fd5b600083116112d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112c790613e08565b60405180910390fd5b80821115611313576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161130a90613e68565b60405180910390fd5b82600a6000018190555081600a6003018190555080600a60040181905550505050565b60606001805461134590614279565b80601f016020809104026020016040519081016040528092919081815260200182805461137190614279565b80156113be5780601f10611393576101008083540402835291602001916113be565b820191906000526020600020905b8154815290600101906020018083116113a157829003601f168201915b5050505050905090565b6113d06120e5565b73ffffffffffffffffffffffffffffffffffffffff166113ee6111e7565b73ffffffffffffffffffffffffffffffffffffffff1614611444576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161143b90613ce8565b60405180910390fd5b81819050848490501461148c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161148390613c68565b60405180910390fd5b60005b84849050811015611564578282828181106114ad576114ac614414565b5b90506020020160208101906114c2919061338d565b600a60010160008787858181106114dc576114db614414565b5b90506020020160208101906114f19190612fbb565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550808061155c906142dc565b91505061148f565b5050505050565b6115736120e5565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156115e1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115d890613b88565b60405180910390fd5b80600560006115ee6120e5565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661169b6120e5565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516116e09190613a2b565b60405180910390a35050565b6116fd6116f76120e5565b836121a6565b61173c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161173390613da8565b60405180910390fd5b611748848484846126b7565b50505050565b606061175982612079565b611798576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161178f90613d28565b60405180910390fd5b60006117a2612713565b905060008151116117c257604051806020016040528060008152506117ed565b806117cc846127a5565b6040516020016117dd929190613962565b6040516020818303038152906040525b915050919050565b6000806000600a600301549250600a600401549150600a600001549050909192565b600960009054906101000a900467ffffffffffffffff1681565b600080600080600f600201549350600f600301549250600f600001549150600f60010160009054906101000a900467ffffffffffffffff16905090919293565b6000600a60010160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6119776120e5565b73ffffffffffffffffffffffffffffffffffffffff166119956111e7565b73ffffffffffffffffffffffffffffffffffffffff16146119eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119e290613ce8565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611a5b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a5290613ae8565b60405180910390fd5b611a64816125f1565b50565b60026007541415611aad576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aa490613e28565b60405180910390fd5b60026007819055506000611b01600960009054906101000a900467ffffffffffffffff1667ffffffffffffffff16600960109054906101000a900467ffffffffffffffff1667ffffffffffffffff16612906565b905060008111611b46576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b3d90613c48565b60405180910390fd5b60018267ffffffffffffffff161015611b94576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b8b90613e48565b60405180910390fd5b808267ffffffffffffffff161115611be1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bd890613b48565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff16611c006111e7565b73ffffffffffffffffffffffffffffffffffffffff161415611c645760003414611c5f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c5690613dc8565b60405180910390fd5b611f0e565b600a600301544210158015611c7e5750600a600401544211155b8015611cf457508167ffffffffffffffff16600a60010160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900467ffffffffffffffff1667ffffffffffffffff1610155b15611de35734611d138367ffffffffffffffff16600a6000015461291c565b14611d53576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d4a90613a88565b60405180910390fd5b81600a60010160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282829054906101000a900467ffffffffffffffff16611db89190614151565b92506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550611f0d565b600f600201544210158015611dfd5750600f600301544211155b15611ed157600f60010160009054906101000a900467ffffffffffffffff1667ffffffffffffffff168267ffffffffffffffff161115611e72576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e6990613cc8565b60405180910390fd5b34611e8c8367ffffffffffffffff16600f6000015461291c565b14611ecc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ec390613aa8565b60405180910390fd5b611f0c565b6040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f0390613e88565b60405180910390fd5b5b5b60005b8267ffffffffffffffff168167ffffffffffffffff161015612002576001600960088282829054906101000a900467ffffffffffffffff16611f539190614054565b92506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600960108282829054906101000a900467ffffffffffffffff16611f9f9190614054565b92506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550611fef33600960109054906101000a900467ffffffffffffffff1667ffffffffffffffff16612932565b8080611ffa90614325565b915050611f11565b5050600160078190555050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661216083610e56565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006121b182612079565b6121f0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121e790613ba8565b60405180910390fd5b60006121fb83610e56565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061226a57508373ffffffffffffffffffffffffffffffffffffffff16612252846108c0565b73ffffffffffffffffffffffffffffffffffffffff16145b8061227b575061227a81856118db565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166122a482610e56565b73ffffffffffffffffffffffffffffffffffffffff16146122fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122f190613d08565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561236a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161236190613b68565b60405180910390fd5b612375838383612950565b6123806000826120ed565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546123d0919061411d565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546124279190613ffe565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b60006124eb82610e56565b90506124f981600084612950565b6125046000836120ed565b6001600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612554919061411d565b925050819055506002600083815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff021916905581600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6126c2848484612284565b6126ce84848484612955565b61270d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161270490613ac8565b60405180910390fd5b50505050565b60606008805461272290614279565b80601f016020809104026020016040519081016040528092919081815260200182805461274e90614279565b801561279b5780601f106127705761010080835404028352916020019161279b565b820191906000526020600020905b81548152906001019060200180831161277e57829003601f168201915b5050505050905090565b606060008214156127ed576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612901565b600082905060005b6000821461281f578080612808906142dc565b915050600a826128189190614092565b91506127f5565b60008167ffffffffffffffff81111561283b5761283a614443565b5b6040519080825280601f01601f19166020018201604052801561286d5781602001600182028036833780820191505090505b5090505b600085146128fa57600182612886919061411d565b9150600a856128959190614356565b60306128a19190613ffe565b60f81b8183815181106128b7576128b6614414565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856128f39190614092565b9450612871565b8093505050505b919050565b60008183612914919061411d565b905092915050565b6000818361292a91906140c3565b905092915050565b61294c828260405180602001604052806000815250612aec565b5050565b505050565b60006129768473ffffffffffffffffffffffffffffffffffffffff16612b47565b15612adf578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261299f6120e5565b8786866040518563ffffffff1660e01b81526004016129c194939291906139b6565b602060405180830381600087803b1580156129db57600080fd5b505af1925050508015612a0c57506040513d601f19601f82011682018060405250810190612a09919061322c565b60015b612a8f573d8060008114612a3c576040519150601f19603f3d011682016040523d82523d6000602084013e612a41565b606091505b50600081511415612a87576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a7e90613ac8565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612ae4565b600190505b949350505050565b612af68383612b5a565b612b036000848484612955565b612b42576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b3990613ac8565b60405180910390fd5b505050565b600080823b905060008111915050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612bca576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bc190613c88565b60405180910390fd5b612bd381612079565b15612c13576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c0a90613b28565b60405180910390fd5b612c1f60008383612950565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612c6f9190613ffe565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b828054612d3490614279565b90600052602060002090601f016020900481019282612d565760008555612d9d565b82601f10612d6f57803560ff1916838001178555612d9d565b82800160010185558215612d9d579182015b82811115612d9c578235825591602001919060010190612d81565b5b509050612daa9190612dae565b5090565b5b80821115612dc7576000816000905550600101612daf565b5090565b6000612dde612dd984613f7f565b613f5a565b905082815260208101848484011115612dfa57612df9614481565b5b612e0584828561420d565b509392505050565b600081359050612e1c81614d0e565b92915050565b60008083601f840112612e3857612e37614477565b5b8235905067ffffffffffffffff811115612e5557612e54614472565b5b602083019150836020820283011115612e7157612e7061447c565b5b9250929050565b60008083601f840112612e8e57612e8d614477565b5b8235905067ffffffffffffffff811115612eab57612eaa614472565b5b602083019150836020820283011115612ec757612ec661447c565b5b9250929050565b600081359050612edd81614d25565b92915050565b600081359050612ef281614d3c565b92915050565b600081519050612f0781614d3c565b92915050565b600082601f830112612f2257612f21614477565b5b8135612f32848260208601612dcb565b91505092915050565b60008083601f840112612f5157612f50614477565b5b8235905067ffffffffffffffff811115612f6e57612f6d614472565b5b602083019150836001820283011115612f8a57612f8961447c565b5b9250929050565b600081359050612fa081614d53565b92915050565b600081359050612fb581614d6a565b92915050565b600060208284031215612fd157612fd061448b565b5b6000612fdf84828501612e0d565b91505092915050565b60008060408385031215612fff57612ffe61448b565b5b600061300d85828601612e0d565b925050602061301e85828601612e0d565b9150509250929050565b6000806000606084860312156130415761304061448b565b5b600061304f86828701612e0d565b935050602061306086828701612e0d565b925050604061307186828701612f91565b9150509250925092565b600080600080608085870312156130955761309461448b565b5b60006130a387828801612e0d565b94505060206130b487828801612e0d565b93505060406130c587828801612f91565b925050606085013567ffffffffffffffff8111156130e6576130e5614486565b5b6130f287828801612f0d565b91505092959194509250565b600080604083850312156131155761311461448b565b5b600061312385828601612e0d565b925050602061313485828601612ece565b9150509250929050565b600080604083850312156131555761315461448b565b5b600061316385828601612e0d565b925050602061317485828601612f91565b9150509250929050565b600080600080604085870312156131985761319761448b565b5b600085013567ffffffffffffffff8111156131b6576131b5614486565b5b6131c287828801612e22565b9450945050602085013567ffffffffffffffff8111156131e5576131e4614486565b5b6131f187828801612e78565b925092505092959194509250565b6000602082840312156132155761321461448b565b5b600061322384828501612ee3565b91505092915050565b6000602082840312156132425761324161448b565b5b600061325084828501612ef8565b91505092915050565b600080602083850312156132705761326f61448b565b5b600083013567ffffffffffffffff81111561328e5761328d614486565b5b61329a85828601612f3b565b92509250509250929050565b6000602082840312156132bc576132bb61448b565b5b60006132ca84828501612f91565b91505092915050565b6000806000606084860312156132ec576132eb61448b565b5b60006132fa86828701612f91565b935050602061330b86828701612f91565b925050604061331c86828701612f91565b9150509250925092565b600080600080608085870312156133405761333f61448b565b5b600061334e87828801612f91565b945050602061335f87828801612fa6565b935050604061337087828801612f91565b925050606061338187828801612f91565b91505092959194509250565b6000602082840312156133a3576133a261448b565b5b60006133b184828501612fa6565b91505092915050565b6133c381614185565b82525050565b6133d281614197565b82525050565b60006133e382613fb0565b6133ed8185613fc6565b93506133fd81856020860161421c565b61340681614490565b840191505092915050565b600061341c82613fbb565b6134268185613fe2565b935061343681856020860161421c565b61343f81614490565b840191505092915050565b600061345582613fbb565b61345f8185613ff3565b935061346f81856020860161421c565b80840191505092915050565b6000613488601983613fe2565b9150613493826144a1565b602082019050919050565b60006134ab602983613fe2565b91506134b6826144ca565b604082019050919050565b60006134ce601e83613fe2565b91506134d982614519565b602082019050919050565b60006134f1603283613fe2565b91506134fc82614542565b604082019050919050565b6000613514602683613fe2565b915061351f82614591565b604082019050919050565b6000613537602683613fe2565b9150613542826145e0565b604082019050919050565b600061355a601c83613fe2565b91506135658261462f565b602082019050919050565b600061357d602383613fe2565b915061358882614658565b604082019050919050565b60006135a0602483613fe2565b91506135ab826146a7565b604082019050919050565b60006135c3601983613fe2565b91506135ce826146f6565b602082019050919050565b60006135e6602c83613fe2565b91506135f18261471f565b604082019050919050565b6000613609601a83613fe2565b91506136148261476e565b602082019050919050565b600061362c603883613fe2565b915061363782614797565b604082019050919050565b600061364f602a83613fe2565b915061365a826147e6565b604082019050919050565b6000613672602983613fe2565b915061367d82614835565b604082019050919050565b6000613695601683613fe2565b91506136a082614884565b602082019050919050565b60006136b8602e83613fe2565b91506136c3826148ad565b604082019050919050565b60006136db602083613fe2565b91506136e6826148fc565b602082019050919050565b60006136fe602c83613fe2565b915061370982614925565b604082019050919050565b6000613721601f83613fe2565b915061372c82614974565b602082019050919050565b6000613744602083613fe2565b915061374f8261499d565b602082019050919050565b6000613767602983613fe2565b9150613772826149c6565b604082019050919050565b600061378a602f83613fe2565b915061379582614a15565b604082019050919050565b60006137ad602183613fe2565b91506137b882614a64565b604082019050919050565b60006137d0601783613fe2565b91506137db82614ab3565b602082019050919050565b60006137f3601283613fe2565b91506137fe82614adc565b602082019050919050565b6000613816600083613fd7565b915061382182614b05565b600082019050919050565b6000613839603183613fe2565b915061384482614b08565b604082019050919050565b600061385c602583613fe2565b915061386782614b57565b604082019050919050565b600061387f603583613fe2565b915061388a82614ba6565b604082019050919050565b60006138a2601b83613fe2565b91506138ad82614bf5565b602082019050919050565b60006138c5601f83613fe2565b91506138d082614c1e565b602082019050919050565b60006138e8601683613fe2565b91506138f382614c47565b602082019050919050565b600061390b602783613fe2565b915061391682614c70565b604082019050919050565b600061392e603383613fe2565b915061393982614cbf565b604082019050919050565b61394d816141ef565b82525050565b61395c816141f9565b82525050565b600061396e828561344a565b915061397a828461344a565b91508190509392505050565b600061399182613809565b9150819050919050565b60006020820190506139b060008301846133ba565b92915050565b60006080820190506139cb60008301876133ba565b6139d860208301866133ba565b6139e56040830185613944565b81810360608301526139f781846133d8565b905095945050505050565b6000604082019050613a1760008301856133ba565b613a246020830184613944565b9392505050565b6000602082019050613a4060008301846133c9565b92915050565b60006020820190508181036000830152613a608184613411565b905092915050565b60006020820190508181036000830152613a818161347b565b9050919050565b60006020820190508181036000830152613aa18161349e565b9050919050565b60006020820190508181036000830152613ac1816134c1565b9050919050565b60006020820190508181036000830152613ae1816134e4565b9050919050565b60006020820190508181036000830152613b0181613507565b9050919050565b60006020820190508181036000830152613b218161352a565b9050919050565b60006020820190508181036000830152613b418161354d565b9050919050565b60006020820190508181036000830152613b6181613570565b9050919050565b60006020820190508181036000830152613b8181613593565b9050919050565b60006020820190508181036000830152613ba1816135b6565b9050919050565b60006020820190508181036000830152613bc1816135d9565b9050919050565b60006020820190508181036000830152613be1816135fc565b9050919050565b60006020820190508181036000830152613c018161361f565b9050919050565b60006020820190508181036000830152613c2181613642565b9050919050565b60006020820190508181036000830152613c4181613665565b9050919050565b60006020820190508181036000830152613c6181613688565b9050919050565b60006020820190508181036000830152613c81816136ab565b9050919050565b60006020820190508181036000830152613ca1816136ce565b9050919050565b60006020820190508181036000830152613cc1816136f1565b9050919050565b60006020820190508181036000830152613ce181613714565b9050919050565b60006020820190508181036000830152613d0181613737565b9050919050565b60006020820190508181036000830152613d218161375a565b9050919050565b60006020820190508181036000830152613d418161377d565b9050919050565b60006020820190508181036000830152613d61816137a0565b9050919050565b60006020820190508181036000830152613d81816137c3565b9050919050565b60006020820190508181036000830152613da1816137e6565b9050919050565b60006020820190508181036000830152613dc18161382c565b9050919050565b60006020820190508181036000830152613de18161384f565b9050919050565b60006020820190508181036000830152613e0181613872565b9050919050565b60006020820190508181036000830152613e2181613895565b9050919050565b60006020820190508181036000830152613e41816138b8565b9050919050565b60006020820190508181036000830152613e61816138db565b9050919050565b60006020820190508181036000830152613e81816138fe565b9050919050565b60006020820190508181036000830152613ea181613921565b9050919050565b6000602082019050613ebd6000830184613944565b92915050565b6000606082019050613ed86000830186613944565b613ee56020830185613944565b613ef26040830184613944565b949350505050565b6000608082019050613f0f6000830187613944565b613f1c6020830186613944565b613f296040830185613944565b613f366060830184613953565b95945050505050565b6000602082019050613f546000830184613953565b92915050565b6000613f64613f75565b9050613f7082826142ab565b919050565b6000604051905090565b600067ffffffffffffffff821115613f9a57613f99614443565b5b613fa382614490565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000614009826141ef565b9150614014836141ef565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561404957614048614387565b5b828201905092915050565b600061405f826141f9565b915061406a836141f9565b92508267ffffffffffffffff0382111561408757614086614387565b5b828201905092915050565b600061409d826141ef565b91506140a8836141ef565b9250826140b8576140b76143b6565b5b828204905092915050565b60006140ce826141ef565b91506140d9836141ef565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561411257614111614387565b5b828202905092915050565b6000614128826141ef565b9150614133836141ef565b92508282101561414657614145614387565b5b828203905092915050565b600061415c826141f9565b9150614167836141f9565b92508282101561417a57614179614387565b5b828203905092915050565b6000614190826141cf565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600067ffffffffffffffff82169050919050565b82818337600083830152505050565b60005b8381101561423a57808201518184015260208101905061421f565b83811115614249576000848401525b50505050565b600061425a826141f9565b9150600082141561426e5761426d614387565b5b600182039050919050565b6000600282049050600182168061429157607f821691505b602082108114156142a5576142a46143e5565b5b50919050565b6142b482614490565b810181811067ffffffffffffffff821117156142d3576142d2614443565b5b80604052505050565b60006142e7826141ef565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561431a57614319614387565b5b600182019050919050565b6000614330826141f9565b915067ffffffffffffffff82141561434b5761434a614387565b5b600182019050919050565b6000614361826141ef565b915061436c836141ef565b92508261437c5761437b6143b6565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f596f7520646f206e6f74206f776e207468697320746f6b656e00000000000000600082015250565b7f496e76616c69642076616c75652070726f766964656420746f206d696e74206960008201527f6e2070726573616c650000000000000000000000000000000000000000000000602082015250565b7f496e76616c69642076616c75652070726f766964656420746f206d696e740000600082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f5075626c6963206d696e742063616e6e6f74207374617274206166746572206960008201527f7420656e64730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f43616e6e6f74206d696e74206d6f7265207468616e2061726520617661696c6160008201527f626c650000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f5075626c6963206d696e742063616e6e6f742062652066726565000000000000600082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f546865206d696e742068617320636f6e636c7564656400000000000000000000600082015250565b7f5573657220617272617920646f6573206e6f7420636f72726573706f6e64207760008201527f697468207175616e746974696573000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4578636565647320746865207075626c6963206d696e74206d6178696d756d00600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f496e76616c696420776974686472617720616d6f756e74000000000000000000600082015250565b7f5472616e73616374696f6e206661696c65640000000000000000000000000000600082015250565b50565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f54686520636f6e7472616374206f776e65722063616e6e6f742070617920746f60008201527f206d696e74000000000000000000000000000000000000000000000000000000602082015250565b7f5075626c6963206d696e74206d617820706572207472616e73616374696f6e2060008201527f63616e6e6f74206265206c657373207468616e20310000000000000000000000602082015250565b7f50726573616c65206d696e742063616e6e6f7420626520667265650000000000600082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f4d757374206d696e74206174206c65617374206f6e6500000000000000000000600082015250565b7f50726573616c65206d696e742063616e6e6f742073746172742061667465722060008201527f697420656e647300000000000000000000000000000000000000000000000000602082015250565b7f596f752063616e6e6f74206d696e7420746865207175616e746974792073706560008201527f63696669656420617420746869732074696d6500000000000000000000000000602082015250565b614d1781614185565b8114614d2257600080fd5b50565b614d2e81614197565b8114614d3957600080fd5b50565b614d45816141a3565b8114614d5057600080fd5b50565b614d5c816141ef565b8114614d6757600080fd5b50565b614d73816141f9565b8114614d7e57600080fd5b5056fea2646970667358221220d04e03b69cb1c3a4c0983ff249ecdc3e185e9c628d057904fc98d88bbde1c2cc64736f6c63430008070033

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

000000000000000000000000000000000000000000000000009536c70891000000000000000000000000000000000000000000000000000000000000617cb53000000000000000000000000000000000000000000000000000000000617d9630000000000000000000000000000000000000000000000000009536c70891000000000000000000000000000000000000000000000000000000000000617dd320000000000000000000000000000000000000000000000000000000009d189d20000000000000000000000000000000000000000000000000000000000000000a

-----Decoded View---------------
Arg [0] : presaleMintPrice (uint256): 42000000000000000
Arg [1] : presaleMintStart (uint256): 1635562800
Arg [2] : presaleMintEnd (uint256): 1635620400
Arg [3] : publicMintPrice (uint256): 42000000000000000
Arg [4] : publicMintStart (uint256): 1635636000
Arg [5] : publicMintEnd (uint256): 2635636000
Arg [6] : publicMintMaxPerTransaction (uint64): 10

-----Encoded View---------------
7 Constructor Arguments found :
Arg [0] : 000000000000000000000000000000000000000000000000009536c708910000
Arg [1] : 00000000000000000000000000000000000000000000000000000000617cb530
Arg [2] : 00000000000000000000000000000000000000000000000000000000617d9630
Arg [3] : 000000000000000000000000000000000000000000000000009536c708910000
Arg [4] : 00000000000000000000000000000000000000000000000000000000617dd320
Arg [5] : 000000000000000000000000000000000000000000000000000000009d189d20
Arg [6] : 000000000000000000000000000000000000000000000000000000000000000a


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.