ETH Price: $3,410.84 (+2.98%)

Token

Founding Membership Pass (CS)
 

Overview

Max Total Supply

250 CS

Holders

60

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
2 CS
0x872f6540b39f3107fa150b5572e753df2b60e5d8
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:
FoundingMembershipPass

Compiler Version
v0.8.4+commit.c7e474f2

Optimization Enabled:
Yes with 1000 runs

Other Settings:
default evmVersion, MIT license
File 1 of 14 : FoundingMembershipPass.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/utils/Counters.sol";
import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol";

contract FoundingMembershipPass is ERC721, Ownable {
    using SafeMath for uint256;
    using Counters for Counters.Counter;

    Counters.Counter private _tokenIdTracker;

    bytes32 public merkleRoot =
        0xd6aa0800cd4773875d2836f2cf99d31549718549997db2cbd2efd2594406af3e;

    uint256 public tokenPrice = 0.026 ether;

    uint256 public maxPerWallet = 10;

    uint256 public maxSupply = 555;

    bool public saleIsActive = false;
    bool public isPresale = true;

    uint256 public tokenReserve = 22;

    string private newBaseURI;

    mapping(address => bool) public whitelistClaimed;

    constructor() ERC721("Founding Membership Pass", "CS") {}

    function withdraw() public onlyOwner {
        uint256 balance = address(this).balance;
        payable(msg.sender).transfer(balance);
    }

    function _totalSupply() public view returns (uint256) {
        return _tokenIdTracker.current();
    }

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

    function reserveTokens(address _to, uint256 _reserveAmount)
        public
        onlyOwner
    {
        uint256 supply = _totalSupply();
        require(
            _reserveAmount > 0 && _reserveAmount <= tokenReserve,
            "Not enough reserve left for team"
        );
        for (uint256 i = 0; i < _reserveAmount; i++) {
            _tokenIdTracker.increment();
            _safeMint(_to, supply + i);
        }
        tokenReserve = tokenReserve.sub(_reserveAmount);
    }

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

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

    function flipSaleState() public onlyOwner {
        saleIsActive = !saleIsActive;
    }

    function flipPresaleState() public onlyOwner {
        isPresale = !isPresale;
    }

    function mintToken(uint256 numberOfTokens, bytes32[] calldata merkleProof)
        public
        payable
    {
        require(saleIsActive, "Sale not active");
        if (isPresale) {
            require(
                !whitelistClaimed[msg.sender],
                "Address has already minted NFT."
            );
            // bytes32 leaf = keccak256(abi.encodePacked(msg.sender));
            // require(
            //     MerkleProof.verify(merkleProof, merkleRoot, leaf),
            //     "Invalid proof."
            // );
            whitelistClaimed[msg.sender] = true;
        }
        require(
            _totalSupply().add(numberOfTokens) <= maxSupply,
            "Exceed max supply of Tokens"
        );
        require(
            msg.value >= tokenPrice.mul(numberOfTokens),
            "Ether value sent is not correct"
        );
        require(
            balanceOf(msg.sender).add(numberOfTokens) <= maxPerWallet,
            "Over Max Mint per Address"
        );

        for (uint256 i = 0; i < numberOfTokens; i++) {
            uint256 mintIndex = _totalSupply();
            if (_totalSupply() < maxSupply) {
                _tokenIdTracker.increment();
                _safeMint(msg.sender, mintIndex);
            }
        }
    }

    function setTokenPrice(uint256 _newPrice) public onlyOwner {
        tokenPrice = _newPrice;
    }

    function setMaxPerWallet(uint256 _maxPerWallet) public onlyOwner {
        maxPerWallet = _maxPerWallet;
    }

    function setTokenReserve(uint256 _tokenReserve) public onlyOwner {
        tokenReserve = _tokenReserve;
    }

    function setMaxSupply(uint256 _maxSupply) public onlyOwner {
        maxSupply = _maxSupply;
    }
}

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

pragma solidity ^0.8.0;

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);

        _afterTokenTransfer(from, to, tokenId);
    }

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

File 4 of 14 : SafeMath.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/math/SafeMath.sol)

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 generally not needed starting with Solidity 0.8, since 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 14 : Counters.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Counters.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

pragma solidity ^0.8.0;

import "../IERC721.sol";

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

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

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

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

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

File 12 of 14 : Strings.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Strings.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

pragma solidity ^0.8.0;

import "./IERC165.sol";

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

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

pragma solidity ^0.8.0;

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

Settings
{
  "optimizer": {
    "enabled": true,
    "runs": 1000
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "abi"
      ]
    }
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"_totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"flipPresaleState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"flipSaleState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isPresale","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"merkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfTokens","type":"uint256"},{"internalType":"bytes32[]","name":"merkleProof","type":"bytes32[]"}],"name":"mintToken","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_reserveAmount","type":"uint256"}],"name":"reserveTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"saleIsActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxPerWallet","type":"uint256"}],"name":"setMaxPerWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxSupply","type":"uint256"}],"name":"setMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newPrice","type":"uint256"}],"name":"setTokenPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenReserve","type":"uint256"}],"name":"setTokenReserve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokenPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokenReserve","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"whitelistClaimed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040527fd6aa0800cd4773875d2836f2cf99d31549718549997db2cbd2efd2594406af3e600855665c5edcbc290000600955600a805561022b600b55600c805461ffff19166101001790556016600d553480156200005e57600080fd5b50604080518082018252601881527f466f756e64696e67204d656d6265727368697020506173730000000000000000602080830191825283518085019094526002845261435360f01b908401528151919291620000be916000916200014d565b508051620000d49060019060208401906200014d565b505050620000f1620000eb620000f760201b60201c565b620000fb565b62000230565b3390565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200015b90620001f3565b90600052602060002090601f0160209004810192826200017f5760008555620001ca565b82601f106200019a57805160ff1916838001178555620001ca565b82800160010185558215620001ca579182015b82811115620001ca578251825591602001919060010190620001ad565b50620001d8929150620001dc565b5090565b5b80821115620001d85760008155600101620001dd565b600181811c908216806200020857607f821691505b602082108114156200022a57634e487b7160e01b600052602260045260246000fd5b50919050565b6123ed80620002406000396000f3fe60806040526004361061024f5760003560e01c806378cf19e911610138578063cbcb3171116100b0578063e268e4d31161007f578063eb8d244411610064578063eb8d244414610653578063f2fde38b1461066d578063f81227d41461068d57600080fd5b8063e268e4d3146105ea578063e985e9c51461060a57600080fd5b8063cbcb31711461056e578063d5abeb0114610584578063db4bec441461059a578063e02eada5146105ca57600080fd5b806395d89b4111610107578063ae7c122e116100ec578063ae7c122e1461051b578063b88d4fde1461052e578063c87b56dd1461054e57600080fd5b806395d89b41146104e6578063a22cb465146104fb57600080fd5b806378cf19e9146104735780637ff9b596146104935780638da5cb5b146104a957806395364a84146104c757600080fd5b80633eaaf86b116101cb5780636352211e1161019a5780636f8b44b01161017f5780636f8b44b01461041e57806370a082311461043e578063715018a61461045e57600080fd5b80636352211e146103de5780636a61e5fc146103fe57600080fd5b80633eaaf86b1461030557806342842e0e14610388578063453c2310146103a857806355f804b3146103be57600080fd5b806318160ddd116102225780632eb4a7ab116102075780632eb4a7ab1461034857806334918dfd1461035e5780633ccfd60b1461037357600080fd5b806318160ddd1461030557806323b872dd1461032857600080fd5b806301ffc9a71461025457806306fdde0314610289578063081812fc146102ab578063095ea7b3146102e3575b600080fd5b34801561026057600080fd5b5061027461026f36600461208d565b6106a2565b60405190151581526020015b60405180910390f35b34801561029557600080fd5b5061029e61073f565b6040516102809190612234565b3480156102b757600080fd5b506102cb6102c636600461210b565b6107d1565b6040516001600160a01b039091168152602001610280565b3480156102ef57600080fd5b506103036102fe366004612064565b61086b565b005b34801561031157600080fd5b5061031a61099d565b604051908152602001610280565b34801561033457600080fd5b50610303610343366004611f76565b6109ad565b34801561035457600080fd5b5061031a60085481565b34801561036a57600080fd5b50610303610a34565b34801561037f57600080fd5b50610303610a90565b34801561039457600080fd5b506103036103a3366004611f76565b610b0b565b3480156103b457600080fd5b5061031a600a5481565b3480156103ca57600080fd5b506103036103d93660046120c5565b610b26565b3480156103ea57600080fd5b506102cb6103f936600461210b565b610b81565b34801561040a57600080fd5b5061030361041936600461210b565b610c0c565b34801561042a57600080fd5b5061030361043936600461210b565b610c59565b34801561044a57600080fd5b5061031a610459366004611f2a565b610ca6565b34801561046a57600080fd5b50610303610d40565b34801561047f57600080fd5b5061030361048e366004612064565b610d94565b34801561049f57600080fd5b5061031a60095481565b3480156104b557600080fd5b506006546001600160a01b03166102cb565b3480156104d357600080fd5b50600c5461027490610100900460ff1681565b3480156104f257600080fd5b5061029e610e9a565b34801561050757600080fd5b5061030361051636600461202a565b610ea9565b610303610529366004612123565b610eb4565b34801561053a57600080fd5b50610303610549366004611fb1565b611107565b34801561055a57600080fd5b5061029e61056936600461210b565b61118f565b34801561057a57600080fd5b5061031a600d5481565b34801561059057600080fd5b5061031a600b5481565b3480156105a657600080fd5b506102746105b5366004611f2a565b600f6020526000908152604090205460ff1681565b3480156105d657600080fd5b506103036105e536600461210b565b611278565b3480156105f657600080fd5b5061030361060536600461210b565b6112c5565b34801561061657600080fd5b50610274610625366004611f44565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561065f57600080fd5b50600c546102749060ff1681565b34801561067957600080fd5b50610303610688366004611f2a565b611312565b34801561069957600080fd5b506103036113e2565b60006001600160e01b031982167f80ac58cd00000000000000000000000000000000000000000000000000000000148061070557506001600160e01b031982167f5b5e139f00000000000000000000000000000000000000000000000000000000145b8061073957507f01ffc9a7000000000000000000000000000000000000000000000000000000006001600160e01b03198316145b92915050565b60606000805461074e906122d5565b80601f016020809104026020016040519081016040528092919081815260200182805461077a906122d5565b80156107c75780601f1061079c576101008083540402835291602001916107c7565b820191906000526020600020905b8154815290600101906020018083116107aa57829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b031661084f5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061087682610b81565b9050806001600160a01b0316836001600160a01b031614156109005760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560448201527f72000000000000000000000000000000000000000000000000000000000000006064820152608401610846565b336001600160a01b038216148061091c575061091c8133610625565b61098e5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610846565b6109988383611447565b505050565b60006109a860075490565b905090565b6109b733826114c2565b610a295760405162461bcd60e51b815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f7665640000000000000000000000000000006064820152608401610846565b6109988383836115b9565b6006546001600160a01b03163314610a7c5760405162461bcd60e51b815260206004820181905260248201526000805160206123988339815191526044820152606401610846565b600c805460ff19811660ff90911615179055565b6006546001600160a01b03163314610ad85760405162461bcd60e51b815260206004820181905260248201526000805160206123988339815191526044820152606401610846565b6040514790339082156108fc029083906000818181858888f19350505050158015610b07573d6000803e3d6000fd5b5050565b61099883838360405180602001604052806000815250611107565b6006546001600160a01b03163314610b6e5760405162461bcd60e51b815260206004820181905260248201526000805160206123988339815191526044820152606401610846565b8051610b0790600e906020840190611dff565b6000818152600260205260408120546001600160a01b0316806107395760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201527f656e7420746f6b656e00000000000000000000000000000000000000000000006064820152608401610846565b6006546001600160a01b03163314610c545760405162461bcd60e51b815260206004820181905260248201526000805160206123988339815191526044820152606401610846565b600955565b6006546001600160a01b03163314610ca15760405162461bcd60e51b815260206004820181905260248201526000805160206123988339815191526044820152606401610846565b600b55565b60006001600160a01b038216610d245760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a6560448201527f726f2061646472657373000000000000000000000000000000000000000000006064820152608401610846565b506001600160a01b031660009081526003602052604090205490565b6006546001600160a01b03163314610d885760405162461bcd60e51b815260206004820181905260248201526000805160206123988339815191526044820152606401610846565b610d926000611793565b565b6006546001600160a01b03163314610ddc5760405162461bcd60e51b815260206004820181905260248201526000805160206123988339815191526044820152606401610846565b6000610de661099d565b9050600082118015610dfa5750600d548211155b610e465760405162461bcd60e51b815260206004820181905260248201527f4e6f7420656e6f7567682072657365727665206c65667420666f72207465616d6044820152606401610846565b60005b82811015610e8457610e5f600780546001019055565b610e7284610e6d8385612247565b6117f2565b80610e7c81612310565b915050610e49565b50600d54610e92908361180c565b600d55505050565b60606001805461074e906122d5565b610b07338383611818565b600c5460ff16610f065760405162461bcd60e51b815260206004820152600f60248201527f53616c65206e6f742061637469766500000000000000000000000000000000006044820152606401610846565b600c54610100900460ff1615610f9157336000908152600f602052604090205460ff1615610f765760405162461bcd60e51b815260206004820152601f60248201527f416464726573732068617320616c7265616479206d696e746564204e46542e006044820152606401610846565b336000908152600f60205260409020805460ff191660011790555b600b54610fa684610fa061099d565b906118e7565b1115610ff45760405162461bcd60e51b815260206004820152601b60248201527f457863656564206d617820737570706c79206f6620546f6b656e7300000000006044820152606401610846565b60095461100190846118f3565b3410156110505760405162461bcd60e51b815260206004820152601f60248201527f45746865722076616c75652073656e74206973206e6f7420636f7272656374006044820152606401610846565b600a5461106084610fa033610ca6565b11156110ae5760405162461bcd60e51b815260206004820152601960248201527f4f766572204d6178204d696e74207065722041646472657373000000000000006044820152606401610846565b60005b838110156111015760006110c361099d565b9050600b546110d061099d565b10156110ee576110e4600780546001019055565b6110ee33826117f2565b50806110f981612310565b9150506110b1565b50505050565b61111133836114c2565b6111835760405162461bcd60e51b815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f7665640000000000000000000000000000006064820152608401610846565b611101848484846118ff565b6000818152600260205260409020546060906001600160a01b031661121c5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006064820152608401610846565b600061122661197d565b905060008151116112465760405180602001604052806000815250611271565b806112508461198c565b6040516020016112619291906121c9565b6040516020818303038152906040525b9392505050565b6006546001600160a01b031633146112c05760405162461bcd60e51b815260206004820181905260248201526000805160206123988339815191526044820152606401610846565b600d55565b6006546001600160a01b0316331461130d5760405162461bcd60e51b815260206004820181905260248201526000805160206123988339815191526044820152606401610846565b600a55565b6006546001600160a01b0316331461135a5760405162461bcd60e51b815260206004820181905260248201526000805160206123988339815191526044820152606401610846565b6001600160a01b0381166113d65760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610846565b6113df81611793565b50565b6006546001600160a01b0316331461142a5760405162461bcd60e51b815260206004820181905260248201526000805160206123988339815191526044820152606401610846565b600c805461ff001981166101009182900460ff1615909102179055565b6000818152600460205260409020805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b038416908117909155819061148982610b81565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b031661153b5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610846565b600061154683610b81565b9050806001600160a01b0316846001600160a01b031614806115815750836001600160a01b0316611576846107d1565b6001600160a01b0316145b806115b157506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b03166115cc82610b81565b6001600160a01b0316146116485760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201527f6f776e65720000000000000000000000000000000000000000000000000000006064820152608401610846565b6001600160a01b0382166116c35760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f2061646460448201527f72657373000000000000000000000000000000000000000000000000000000006064820152608401610846565b6116ce600082611447565b6001600160a01b03831660009081526003602052604081208054600192906116f7908490612292565b90915550506001600160a01b0382166000908152600360205260408120805460019290611725908490612247565b9091555050600081815260026020526040808220805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600680546001600160a01b0383811673ffffffffffffffffffffffffffffffffffffffff19831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b610b07828260405180602001604052806000815250611ada565b60006112718284612292565b816001600160a01b0316836001600160a01b0316141561187a5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610846565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b60006112718284612247565b60006112718284612273565b61190a8484846115b9565b61191684848484611b58565b6111015760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b6064820152608401610846565b6060600e805461074e906122d5565b6060816119cc57505060408051808201909152600181527f3000000000000000000000000000000000000000000000000000000000000000602082015290565b8160005b81156119f657806119e081612310565b91506119ef9050600a8361225f565b91506119d0565b60008167ffffffffffffffff811115611a1f57634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611a49576020820181803683370190505b5090505b84156115b157611a5e600183612292565b9150611a6b600a8661232b565b611a76906030612247565b60f81b818381518110611a9957634e487b7160e01b600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350611ad3600a8661225f565b9450611a4d565b611ae48383611cb0565b611af16000848484611b58565b6109985760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b6064820152608401610846565b60006001600160a01b0384163b15611ca557604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611b9c9033908990889088906004016121f8565b602060405180830381600087803b158015611bb657600080fd5b505af1925050508015611be6575060408051601f3d908101601f19168201909252611be3918101906120a9565b60015b611c8b573d808015611c14576040519150601f19603f3d011682016040523d82523d6000602084013e611c19565b606091505b508051611c835760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b6064820152608401610846565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506115b1565b506001949350505050565b6001600160a01b038216611d065760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610846565b6000818152600260205260409020546001600160a01b031615611d6b5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610846565b6001600160a01b0382166000908152600360205260408120805460019290611d94908490612247565b9091555050600081815260026020526040808220805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b828054611e0b906122d5565b90600052602060002090601f016020900481019282611e2d5760008555611e73565b82601f10611e4657805160ff1916838001178555611e73565b82800160010185558215611e73579182015b82811115611e73578251825591602001919060010190611e58565b50611e7f929150611e83565b5090565b5b80821115611e7f5760008155600101611e84565b600067ffffffffffffffff80841115611eb357611eb361236b565b604051601f8501601f19908116603f01168101908282118183101715611edb57611edb61236b565b81604052809350858152868686011115611ef457600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b0381168114611f2557600080fd5b919050565b600060208284031215611f3b578081fd5b61127182611f0e565b60008060408385031215611f56578081fd5b611f5f83611f0e565b9150611f6d60208401611f0e565b90509250929050565b600080600060608486031215611f8a578081fd5b611f9384611f0e565b9250611fa160208501611f0e565b9150604084013590509250925092565b60008060008060808587031215611fc6578081fd5b611fcf85611f0e565b9350611fdd60208601611f0e565b925060408501359150606085013567ffffffffffffffff811115611fff578182fd5b8501601f8101871361200f578182fd5b61201e87823560208401611e98565b91505092959194509250565b6000806040838503121561203c578182fd5b61204583611f0e565b915060208301358015158114612059578182fd5b809150509250929050565b60008060408385031215612076578182fd5b61207f83611f0e565b946020939093013593505050565b60006020828403121561209e578081fd5b813561127181612381565b6000602082840312156120ba578081fd5b815161127181612381565b6000602082840312156120d6578081fd5b813567ffffffffffffffff8111156120ec578182fd5b8201601f810184136120fc578182fd5b6115b184823560208401611e98565b60006020828403121561211c578081fd5b5035919050565b600080600060408486031215612137578283fd5b83359250602084013567ffffffffffffffff80821115612155578384fd5b818601915086601f830112612168578384fd5b813581811115612176578485fd5b8760208260051b850101111561218a578485fd5b6020830194508093505050509250925092565b600081518084526121b58160208601602086016122a9565b601f01601f19169290920160200192915050565b600083516121db8184602088016122a9565b8351908301906121ef8183602088016122a9565b01949350505050565b60006001600160a01b0380871683528086166020840152508360408301526080606083015261222a608083018461219d565b9695505050505050565b602081526000611271602083018461219d565b6000821982111561225a5761225a61233f565b500190565b60008261226e5761226e612355565b500490565b600081600019048311821515161561228d5761228d61233f565b500290565b6000828210156122a4576122a461233f565b500390565b60005b838110156122c45781810151838201526020016122ac565b838111156111015750506000910152565b600181811c908216806122e957607f821691505b6020821081141561230a57634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156123245761232461233f565b5060010190565b60008261233a5761233a612355565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b0319811681146113df57600080fdfe4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572a2646970667358221220a82d242303e38c7bd6b555f91f6c800d9f52924b8561bf7045a3411c88f87a3564736f6c63430008040033

Deployed Bytecode

0x60806040526004361061024f5760003560e01c806378cf19e911610138578063cbcb3171116100b0578063e268e4d31161007f578063eb8d244411610064578063eb8d244414610653578063f2fde38b1461066d578063f81227d41461068d57600080fd5b8063e268e4d3146105ea578063e985e9c51461060a57600080fd5b8063cbcb31711461056e578063d5abeb0114610584578063db4bec441461059a578063e02eada5146105ca57600080fd5b806395d89b4111610107578063ae7c122e116100ec578063ae7c122e1461051b578063b88d4fde1461052e578063c87b56dd1461054e57600080fd5b806395d89b41146104e6578063a22cb465146104fb57600080fd5b806378cf19e9146104735780637ff9b596146104935780638da5cb5b146104a957806395364a84146104c757600080fd5b80633eaaf86b116101cb5780636352211e1161019a5780636f8b44b01161017f5780636f8b44b01461041e57806370a082311461043e578063715018a61461045e57600080fd5b80636352211e146103de5780636a61e5fc146103fe57600080fd5b80633eaaf86b1461030557806342842e0e14610388578063453c2310146103a857806355f804b3146103be57600080fd5b806318160ddd116102225780632eb4a7ab116102075780632eb4a7ab1461034857806334918dfd1461035e5780633ccfd60b1461037357600080fd5b806318160ddd1461030557806323b872dd1461032857600080fd5b806301ffc9a71461025457806306fdde0314610289578063081812fc146102ab578063095ea7b3146102e3575b600080fd5b34801561026057600080fd5b5061027461026f36600461208d565b6106a2565b60405190151581526020015b60405180910390f35b34801561029557600080fd5b5061029e61073f565b6040516102809190612234565b3480156102b757600080fd5b506102cb6102c636600461210b565b6107d1565b6040516001600160a01b039091168152602001610280565b3480156102ef57600080fd5b506103036102fe366004612064565b61086b565b005b34801561031157600080fd5b5061031a61099d565b604051908152602001610280565b34801561033457600080fd5b50610303610343366004611f76565b6109ad565b34801561035457600080fd5b5061031a60085481565b34801561036a57600080fd5b50610303610a34565b34801561037f57600080fd5b50610303610a90565b34801561039457600080fd5b506103036103a3366004611f76565b610b0b565b3480156103b457600080fd5b5061031a600a5481565b3480156103ca57600080fd5b506103036103d93660046120c5565b610b26565b3480156103ea57600080fd5b506102cb6103f936600461210b565b610b81565b34801561040a57600080fd5b5061030361041936600461210b565b610c0c565b34801561042a57600080fd5b5061030361043936600461210b565b610c59565b34801561044a57600080fd5b5061031a610459366004611f2a565b610ca6565b34801561046a57600080fd5b50610303610d40565b34801561047f57600080fd5b5061030361048e366004612064565b610d94565b34801561049f57600080fd5b5061031a60095481565b3480156104b557600080fd5b506006546001600160a01b03166102cb565b3480156104d357600080fd5b50600c5461027490610100900460ff1681565b3480156104f257600080fd5b5061029e610e9a565b34801561050757600080fd5b5061030361051636600461202a565b610ea9565b610303610529366004612123565b610eb4565b34801561053a57600080fd5b50610303610549366004611fb1565b611107565b34801561055a57600080fd5b5061029e61056936600461210b565b61118f565b34801561057a57600080fd5b5061031a600d5481565b34801561059057600080fd5b5061031a600b5481565b3480156105a657600080fd5b506102746105b5366004611f2a565b600f6020526000908152604090205460ff1681565b3480156105d657600080fd5b506103036105e536600461210b565b611278565b3480156105f657600080fd5b5061030361060536600461210b565b6112c5565b34801561061657600080fd5b50610274610625366004611f44565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561065f57600080fd5b50600c546102749060ff1681565b34801561067957600080fd5b50610303610688366004611f2a565b611312565b34801561069957600080fd5b506103036113e2565b60006001600160e01b031982167f80ac58cd00000000000000000000000000000000000000000000000000000000148061070557506001600160e01b031982167f5b5e139f00000000000000000000000000000000000000000000000000000000145b8061073957507f01ffc9a7000000000000000000000000000000000000000000000000000000006001600160e01b03198316145b92915050565b60606000805461074e906122d5565b80601f016020809104026020016040519081016040528092919081815260200182805461077a906122d5565b80156107c75780601f1061079c576101008083540402835291602001916107c7565b820191906000526020600020905b8154815290600101906020018083116107aa57829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b031661084f5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061087682610b81565b9050806001600160a01b0316836001600160a01b031614156109005760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560448201527f72000000000000000000000000000000000000000000000000000000000000006064820152608401610846565b336001600160a01b038216148061091c575061091c8133610625565b61098e5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610846565b6109988383611447565b505050565b60006109a860075490565b905090565b6109b733826114c2565b610a295760405162461bcd60e51b815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f7665640000000000000000000000000000006064820152608401610846565b6109988383836115b9565b6006546001600160a01b03163314610a7c5760405162461bcd60e51b815260206004820181905260248201526000805160206123988339815191526044820152606401610846565b600c805460ff19811660ff90911615179055565b6006546001600160a01b03163314610ad85760405162461bcd60e51b815260206004820181905260248201526000805160206123988339815191526044820152606401610846565b6040514790339082156108fc029083906000818181858888f19350505050158015610b07573d6000803e3d6000fd5b5050565b61099883838360405180602001604052806000815250611107565b6006546001600160a01b03163314610b6e5760405162461bcd60e51b815260206004820181905260248201526000805160206123988339815191526044820152606401610846565b8051610b0790600e906020840190611dff565b6000818152600260205260408120546001600160a01b0316806107395760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201527f656e7420746f6b656e00000000000000000000000000000000000000000000006064820152608401610846565b6006546001600160a01b03163314610c545760405162461bcd60e51b815260206004820181905260248201526000805160206123988339815191526044820152606401610846565b600955565b6006546001600160a01b03163314610ca15760405162461bcd60e51b815260206004820181905260248201526000805160206123988339815191526044820152606401610846565b600b55565b60006001600160a01b038216610d245760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a6560448201527f726f2061646472657373000000000000000000000000000000000000000000006064820152608401610846565b506001600160a01b031660009081526003602052604090205490565b6006546001600160a01b03163314610d885760405162461bcd60e51b815260206004820181905260248201526000805160206123988339815191526044820152606401610846565b610d926000611793565b565b6006546001600160a01b03163314610ddc5760405162461bcd60e51b815260206004820181905260248201526000805160206123988339815191526044820152606401610846565b6000610de661099d565b9050600082118015610dfa5750600d548211155b610e465760405162461bcd60e51b815260206004820181905260248201527f4e6f7420656e6f7567682072657365727665206c65667420666f72207465616d6044820152606401610846565b60005b82811015610e8457610e5f600780546001019055565b610e7284610e6d8385612247565b6117f2565b80610e7c81612310565b915050610e49565b50600d54610e92908361180c565b600d55505050565b60606001805461074e906122d5565b610b07338383611818565b600c5460ff16610f065760405162461bcd60e51b815260206004820152600f60248201527f53616c65206e6f742061637469766500000000000000000000000000000000006044820152606401610846565b600c54610100900460ff1615610f9157336000908152600f602052604090205460ff1615610f765760405162461bcd60e51b815260206004820152601f60248201527f416464726573732068617320616c7265616479206d696e746564204e46542e006044820152606401610846565b336000908152600f60205260409020805460ff191660011790555b600b54610fa684610fa061099d565b906118e7565b1115610ff45760405162461bcd60e51b815260206004820152601b60248201527f457863656564206d617820737570706c79206f6620546f6b656e7300000000006044820152606401610846565b60095461100190846118f3565b3410156110505760405162461bcd60e51b815260206004820152601f60248201527f45746865722076616c75652073656e74206973206e6f7420636f7272656374006044820152606401610846565b600a5461106084610fa033610ca6565b11156110ae5760405162461bcd60e51b815260206004820152601960248201527f4f766572204d6178204d696e74207065722041646472657373000000000000006044820152606401610846565b60005b838110156111015760006110c361099d565b9050600b546110d061099d565b10156110ee576110e4600780546001019055565b6110ee33826117f2565b50806110f981612310565b9150506110b1565b50505050565b61111133836114c2565b6111835760405162461bcd60e51b815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f7665640000000000000000000000000000006064820152608401610846565b611101848484846118ff565b6000818152600260205260409020546060906001600160a01b031661121c5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006064820152608401610846565b600061122661197d565b905060008151116112465760405180602001604052806000815250611271565b806112508461198c565b6040516020016112619291906121c9565b6040516020818303038152906040525b9392505050565b6006546001600160a01b031633146112c05760405162461bcd60e51b815260206004820181905260248201526000805160206123988339815191526044820152606401610846565b600d55565b6006546001600160a01b0316331461130d5760405162461bcd60e51b815260206004820181905260248201526000805160206123988339815191526044820152606401610846565b600a55565b6006546001600160a01b0316331461135a5760405162461bcd60e51b815260206004820181905260248201526000805160206123988339815191526044820152606401610846565b6001600160a01b0381166113d65760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610846565b6113df81611793565b50565b6006546001600160a01b0316331461142a5760405162461bcd60e51b815260206004820181905260248201526000805160206123988339815191526044820152606401610846565b600c805461ff001981166101009182900460ff1615909102179055565b6000818152600460205260409020805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b038416908117909155819061148982610b81565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b031661153b5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610846565b600061154683610b81565b9050806001600160a01b0316846001600160a01b031614806115815750836001600160a01b0316611576846107d1565b6001600160a01b0316145b806115b157506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b03166115cc82610b81565b6001600160a01b0316146116485760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201527f6f776e65720000000000000000000000000000000000000000000000000000006064820152608401610846565b6001600160a01b0382166116c35760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f2061646460448201527f72657373000000000000000000000000000000000000000000000000000000006064820152608401610846565b6116ce600082611447565b6001600160a01b03831660009081526003602052604081208054600192906116f7908490612292565b90915550506001600160a01b0382166000908152600360205260408120805460019290611725908490612247565b9091555050600081815260026020526040808220805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600680546001600160a01b0383811673ffffffffffffffffffffffffffffffffffffffff19831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b610b07828260405180602001604052806000815250611ada565b60006112718284612292565b816001600160a01b0316836001600160a01b0316141561187a5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610846565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b60006112718284612247565b60006112718284612273565b61190a8484846115b9565b61191684848484611b58565b6111015760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b6064820152608401610846565b6060600e805461074e906122d5565b6060816119cc57505060408051808201909152600181527f3000000000000000000000000000000000000000000000000000000000000000602082015290565b8160005b81156119f657806119e081612310565b91506119ef9050600a8361225f565b91506119d0565b60008167ffffffffffffffff811115611a1f57634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611a49576020820181803683370190505b5090505b84156115b157611a5e600183612292565b9150611a6b600a8661232b565b611a76906030612247565b60f81b818381518110611a9957634e487b7160e01b600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350611ad3600a8661225f565b9450611a4d565b611ae48383611cb0565b611af16000848484611b58565b6109985760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b6064820152608401610846565b60006001600160a01b0384163b15611ca557604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611b9c9033908990889088906004016121f8565b602060405180830381600087803b158015611bb657600080fd5b505af1925050508015611be6575060408051601f3d908101601f19168201909252611be3918101906120a9565b60015b611c8b573d808015611c14576040519150601f19603f3d011682016040523d82523d6000602084013e611c19565b606091505b508051611c835760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b6064820152608401610846565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506115b1565b506001949350505050565b6001600160a01b038216611d065760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610846565b6000818152600260205260409020546001600160a01b031615611d6b5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610846565b6001600160a01b0382166000908152600360205260408120805460019290611d94908490612247565b9091555050600081815260026020526040808220805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b828054611e0b906122d5565b90600052602060002090601f016020900481019282611e2d5760008555611e73565b82601f10611e4657805160ff1916838001178555611e73565b82800160010185558215611e73579182015b82811115611e73578251825591602001919060010190611e58565b50611e7f929150611e83565b5090565b5b80821115611e7f5760008155600101611e84565b600067ffffffffffffffff80841115611eb357611eb361236b565b604051601f8501601f19908116603f01168101908282118183101715611edb57611edb61236b565b81604052809350858152868686011115611ef457600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b0381168114611f2557600080fd5b919050565b600060208284031215611f3b578081fd5b61127182611f0e565b60008060408385031215611f56578081fd5b611f5f83611f0e565b9150611f6d60208401611f0e565b90509250929050565b600080600060608486031215611f8a578081fd5b611f9384611f0e565b9250611fa160208501611f0e565b9150604084013590509250925092565b60008060008060808587031215611fc6578081fd5b611fcf85611f0e565b9350611fdd60208601611f0e565b925060408501359150606085013567ffffffffffffffff811115611fff578182fd5b8501601f8101871361200f578182fd5b61201e87823560208401611e98565b91505092959194509250565b6000806040838503121561203c578182fd5b61204583611f0e565b915060208301358015158114612059578182fd5b809150509250929050565b60008060408385031215612076578182fd5b61207f83611f0e565b946020939093013593505050565b60006020828403121561209e578081fd5b813561127181612381565b6000602082840312156120ba578081fd5b815161127181612381565b6000602082840312156120d6578081fd5b813567ffffffffffffffff8111156120ec578182fd5b8201601f810184136120fc578182fd5b6115b184823560208401611e98565b60006020828403121561211c578081fd5b5035919050565b600080600060408486031215612137578283fd5b83359250602084013567ffffffffffffffff80821115612155578384fd5b818601915086601f830112612168578384fd5b813581811115612176578485fd5b8760208260051b850101111561218a578485fd5b6020830194508093505050509250925092565b600081518084526121b58160208601602086016122a9565b601f01601f19169290920160200192915050565b600083516121db8184602088016122a9565b8351908301906121ef8183602088016122a9565b01949350505050565b60006001600160a01b0380871683528086166020840152508360408301526080606083015261222a608083018461219d565b9695505050505050565b602081526000611271602083018461219d565b6000821982111561225a5761225a61233f565b500190565b60008261226e5761226e612355565b500490565b600081600019048311821515161561228d5761228d61233f565b500290565b6000828210156122a4576122a461233f565b500390565b60005b838110156122c45781810151838201526020016122ac565b838111156111015750506000910152565b600181811c908216806122e957607f821691505b6020821081141561230a57634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156123245761232461233f565b5060010190565b60008261233a5761233a612355565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b0319811681146113df57600080fdfe4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572a2646970667358221220a82d242303e38c7bd6b555f91f6c800d9f52924b8561bf7045a3411c88f87a3564736f6c63430008040033

Deployed Bytecode Sourcemap

360:3762:13:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1570:300:1;;;;;;;;;;-1:-1:-1;1570:300:1;;;;;:::i;:::-;;:::i;:::-;;;6603:14:14;;6596:22;6578:41;;6566:2;6551:18;1570:300:1;;;;;;;;2488:98;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;3999:217::-;;;;;;;;;;-1:-1:-1;3999:217:1;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;5855:55:14;;;5837:74;;5825:2;5810:18;3999:217:1;5792:125:14;3537:401:1;;;;;;;;;;-1:-1:-1;3537:401:1;;;;;:::i;:::-;;:::i;:::-;;1321:104:13;;;;;;;;;;;;;:::i;:::-;;;6776:25:14;;;6764:2;6749:18;1321:104:13;6731:76:14;4726:330:1;;;;;;;;;;-1:-1:-1;4726:330:1;;;;;:::i;:::-;;:::i;544:103:13:-;;;;;;;;;;;;;;;;2162:89;;;;;;;;;;;;;:::i;1057:143::-;;;;;;;;;;;;;:::i;5122:179:1:-;;;;;;;;;;-1:-1:-1;5122:179:1;;;;;:::i;:::-;;:::i;704:32:13:-;;;;;;;;;;;;;;;;1944:99;;;;;;;;;;-1:-1:-1;1944:99:13;;;;;:::i;:::-;;:::i;2191:235:1:-;;;;;;;;;;-1:-1:-1;2191:235:1;;;;;:::i;:::-;;:::i;3671:100:13:-;;;;;;;;;;-1:-1:-1;3671:100:13;;;;;:::i;:::-;;:::i;4019:::-;;;;;;;;;;-1:-1:-1;4019:100:13;;;;;:::i;:::-;;:::i;1929:205:1:-;;;;;;;;;;-1:-1:-1;1929:205:1;;;;;:::i;:::-;;:::i;1668:101:0:-;;;;;;;;;;;;;:::i;1433:503:13:-;;;;;;;;;;-1:-1:-1;1433:503:13;;;;;:::i;:::-;;:::i;656:39::-;;;;;;;;;;;;;;;;1036:85:0;;;;;;;;;;-1:-1:-1;1108:6:0;;-1:-1:-1;;;;;1108:6:0;1036:85;;823:28:13;;;;;;;;;;-1:-1:-1;823:28:13;;;;;;;;;;;2650:102:1;;;;;;;;;;;;;:::i;4283:153::-;;;;;;;;;;-1:-1:-1;4283:153:1;;;;;:::i;:::-;;:::i;2353:1310:13:-;;;;;;:::i;:::-;;:::i;5367:320:1:-;;;;;;;;;;-1:-1:-1;5367:320:1;;;;;:::i;:::-;;:::i;2818:329::-;;;;;;;;;;-1:-1:-1;2818:329:1;;;;;:::i;:::-;;:::i;860:32:13:-;;;;;;;;;;;;;;;;745:30;;;;;;;;;;;;;;;;935:48;;;;;;;;;;-1:-1:-1;935:48:13;;;;;:::i;:::-;;;;;;;;;;;;;;;;3899:112;;;;;;;;;;-1:-1:-1;3899:112:13;;;;;:::i;:::-;;:::i;3779:::-;;;;;;;;;;-1:-1:-1;3779:112:13;;;;;:::i;:::-;;:::i;4502:162:1:-;;;;;;;;;;-1:-1:-1;4502:162:1;;;;;:::i;:::-;-1:-1:-1;;;;;4622:25:1;;;4599:4;4622:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;4502:162;784:32:13;;;;;;;;;;-1:-1:-1;784:32:13;;;;;;;;1918:198:0;;;;;;;;;;-1:-1:-1;1918:198:0;;;;;:::i;:::-;;:::i;2259:86:13:-;;;;;;;;;;;;;:::i;1570:300:1:-;1672:4;-1:-1:-1;;;;;;1707:40:1;;1722:25;1707:40;;:104;;-1:-1:-1;;;;;;;1763:48:1;;1778:33;1763:48;1707:104;:156;;;-1:-1:-1;952:25:10;-1:-1:-1;;;;;;937:40:10;;;1827:36:1;1688:175;1570:300;-1:-1:-1;;1570:300:1:o;2488:98::-;2542:13;2574:5;2567:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2488:98;:::o;3999:217::-;4075:7;7247:16;;;:7;:16;;;;;;-1:-1:-1;;;;;7247:16:1;4094:73;;;;-1:-1:-1;;;4094:73:1;;13387:2:14;4094:73:1;;;13369:21:14;13426:2;13406:18;;;13399:30;13465:34;13445:18;;;13438:62;-1:-1:-1;;;13516:18:14;;;13509:42;13568:19;;4094:73:1;;;;;;;;;-1:-1:-1;4185:24:1;;;;:15;:24;;;;;;-1:-1:-1;;;;;4185:24:1;;3999:217::o;3537:401::-;3617:13;3633:23;3648:7;3633:14;:23::i;:::-;3617:39;;3680:5;-1:-1:-1;;;;;3674:11:1;:2;-1:-1:-1;;;;;3674:11:1;;;3666:57;;;;-1:-1:-1;;;3666:57:1;;14577:2:14;3666:57:1;;;14559:21:14;14616:2;14596:18;;;14589:30;14655:34;14635:18;;;14628:62;14726:3;14706:18;;;14699:31;14747:19;;3666:57:1;14549:223:14;3666:57:1;719:10:6;-1:-1:-1;;;;;3755:21:1;;;;:62;;-1:-1:-1;3780:37:1;3797:5;719:10:6;4502:162:1;:::i;3780:37::-;3734:165;;;;-1:-1:-1;;;3734:165:1;;11780:2:14;3734:165:1;;;11762:21:14;11819:2;11799:18;;;11792:30;11858:34;11838:18;;;11831:62;11929:26;11909:18;;;11902:54;11973:19;;3734:165:1;11752:246:14;3734:165:1;3910:21;3919:2;3923:7;3910:8;:21::i;:::-;3537:401;;;:::o;1321:104:13:-;1365:7;1392:25;:15;918:14:7;;827:112;1392:25:13;1385:32;;1321:104;:::o;4726:330:1:-;4915:41;719:10:6;4948:7:1;4915:18;:41::i;:::-;4907:103;;;;-1:-1:-1;;;4907:103:1;;14979:2:14;4907:103:1;;;14961:21:14;15018:2;14998:18;;;14991:30;15057:34;15037:18;;;15030:62;15128:19;15108:18;;;15101:47;15165:19;;4907:103:1;14951:239:14;4907:103:1;5021:28;5031:4;5037:2;5041:7;5021:9;:28::i;2162:89:13:-;1108:6:0;;-1:-1:-1;;;;;1108:6:0;719:10:6;1248:23:0;1240:68;;;;-1:-1:-1;;;1240:68:0;;13800:2:14;1240:68:0;;;13782:21:14;;;13819:18;;;13812:30;-1:-1:-1;;;;;;;;;;;13858:18:14;;;13851:62;13930:18;;1240:68:0;13772:182:14;1240:68:0;2231:12:13::1;::::0;;-1:-1:-1;;2215:28:13;::::1;2231:12;::::0;;::::1;2230:13;2215:28;::::0;;2162:89::o;1057:143::-;1108:6:0;;-1:-1:-1;;;;;1108:6:0;719:10:6;1248:23:0;1240:68;;;;-1:-1:-1;;;1240:68:0;;13800:2:14;1240:68:0;;;13782:21:14;;;13819:18;;;13812:30;-1:-1:-1;;;;;;;;;;;13858:18:14;;;13851:62;13930:18;;1240:68:0;13772:182:14;1240:68:0;1155:37:13::1;::::0;1123:21:::1;::::0;1163:10:::1;::::0;1155:37;::::1;;;::::0;1123:21;;1105:15:::1;1155:37:::0;1105:15;1155:37;1123:21;1163:10;1155:37;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;1318:1:0;1057:143:13:o:0;5122:179:1:-;5255:39;5272:4;5278:2;5282:7;5255:39;;;;;;;;;;;;:16;:39::i;1944:99:13:-;1108:6:0;;-1:-1:-1;;;;;1108:6:0;719:10:6;1248:23:0;1240:68;;;;-1:-1:-1;;;1240:68:0;;13800:2:14;1240:68:0;;;13782:21:14;;;13819:18;;;13812:30;-1:-1:-1;;;;;;;;;;;13858:18:14;;;13851:62;13930:18;;1240:68:0;13772:182:14;1240:68:0;2015:20:13;;::::1;::::0;:10:::1;::::0;:20:::1;::::0;::::1;::::0;::::1;:::i;2191:235:1:-:0;2263:7;2298:16;;;:7;:16;;;;;;-1:-1:-1;;;;;2298:16:1;2332:19;2324:73;;;;-1:-1:-1;;;2324:73:1;;12616:2:14;2324:73:1;;;12598:21:14;12655:2;12635:18;;;12628:30;12694:34;12674:18;;;12667:62;12765:11;12745:18;;;12738:39;12794:19;;2324:73:1;12588:231:14;3671:100:13;1108:6:0;;-1:-1:-1;;;;;1108:6:0;719:10:6;1248:23:0;1240:68;;;;-1:-1:-1;;;1240:68:0;;13800:2:14;1240:68:0;;;13782:21:14;;;13819:18;;;13812:30;-1:-1:-1;;;;;;;;;;;13858:18:14;;;13851:62;13930:18;;1240:68:0;13772:182:14;1240:68:0;3741:10:13::1;:22:::0;3671:100::o;4019:::-;1108:6:0;;-1:-1:-1;;;;;1108:6:0;719:10:6;1248:23:0;1240:68;;;;-1:-1:-1;;;1240:68:0;;13800:2:14;1240:68:0;;;13782:21:14;;;13819:18;;;13812:30;-1:-1:-1;;;;;;;;;;;13858:18:14;;;13851:62;13930:18;;1240:68:0;13772:182:14;1240:68:0;4089:9:13::1;:22:::0;4019:100::o;1929:205:1:-;2001:7;-1:-1:-1;;;;;2028:19:1;;2020:74;;;;-1:-1:-1;;;2020:74:1;;12205:2:14;2020:74:1;;;12187:21:14;12244:2;12224:18;;;12217:30;12283:34;12263:18;;;12256:62;12354:12;12334:18;;;12327:40;12384:19;;2020:74:1;12177:232:14;2020:74:1;-1:-1:-1;;;;;;2111:16:1;;;;;:9;:16;;;;;;;1929:205::o;1668:101:0:-;1108:6;;-1:-1:-1;;;;;1108:6:0;719:10:6;1248:23:0;1240:68;;;;-1:-1:-1;;;1240:68:0;;13800:2:14;1240:68:0;;;13782:21:14;;;13819:18;;;13812:30;-1:-1:-1;;;;;;;;;;;13858:18:14;;;13851:62;13930:18;;1240:68:0;13772:182:14;1240:68:0;1732:30:::1;1759:1;1732:18;:30::i;:::-;1668:101::o:0;1433:503:13:-;1108:6:0;;-1:-1:-1;;;;;1108:6:0;719:10:6;1248:23:0;1240:68;;;;-1:-1:-1;;;1240:68:0;;13800:2:14;1240:68:0;;;13782:21:14;;;13819:18;;;13812:30;-1:-1:-1;;;;;;;;;;;13858:18:14;;;13851:62;13930:18;;1240:68:0;13772:182:14;1240:68:0;1544:14:13::1;1561;:12;:14::i;:::-;1544:31;;1625:1;1608:14;:18;:52;;;;;1648:12;;1630:14;:30;;1608:52;1586:134;;;::::0;-1:-1:-1;;;1586:134:13;;9543:2:14;1586:134:13::1;::::0;::::1;9525:21:14::0;;;9562:18;;;9555:30;9621:34;9601:18;;;9594:62;9673:18;;1586:134:13::1;9515:182:14::0;1586:134:13::1;1736:9;1731:140;1755:14;1751:1;:18;1731:140;;;1791:27;:15;1032:19:7::0;;1050:1;1032:19;;;945:123;1791:27:13::1;1833:26;1843:3:::0;1848:10:::1;1857:1:::0;1848:6;:10:::1;:::i;:::-;1833:9;:26::i;:::-;1771:3:::0;::::1;::::0;::::1;:::i;:::-;;;;1731:140;;;-1:-1:-1::0;1896:12:13::1;::::0;:32:::1;::::0;1913:14;1896:16:::1;:32::i;:::-;1881:12;:47:::0;-1:-1:-1;;;1433:503:13:o;2650:102:1:-;2706:13;2738:7;2731:14;;;;;:::i;4283:153::-;4377:52;719:10:6;4410:8:1;4420;4377:18;:52::i;2353:1310:13:-;2485:12;;;;2477:40;;;;-1:-1:-1;;;2477:40:13;;11436:2:14;2477:40:13;;;11418:21:14;11475:2;11455:18;;;11448:30;11514:17;11494:18;;;11487:45;11549:18;;2477:40:13;11408:165:14;2477:40:13;2532:9;;;;;;;2528:438;;;2602:10;2585:28;;;;:16;:28;;;;;;;;2584:29;2558:122;;;;-1:-1:-1;;;2558:122:13;;7238:2:14;2558:122:13;;;7220:21:14;7277:2;7257:18;;;7250:30;7316:33;7296:18;;;7289:61;7367:18;;2558:122:13;7210:181:14;2558:122:13;2936:10;2919:28;;;;:16;:28;;;;;:35;;-1:-1:-1;;2919:35:13;2950:4;2919:35;;;2528:438;3036:9;;2998:34;3017:14;2998;:12;:14::i;:::-;:18;;:34::i;:::-;:47;;2976:124;;;;-1:-1:-1;;;2976:124:13;;7598:2:14;2976:124:13;;;7580:21:14;7637:2;7617:18;;;7610:30;7676:29;7656:18;;;7649:57;7723:18;;2976:124:13;7570:177:14;2976:124:13;3146:10;;:30;;3161:14;3146;:30::i;:::-;3133:9;:43;;3111:124;;;;-1:-1:-1;;;3111:124:13;;10663:2:14;3111:124:13;;;10645:21:14;10702:2;10682:18;;;10675:30;10741:33;10721:18;;;10714:61;10792:18;;3111:124:13;10635:181:14;3111:124:13;3313:12;;3268:41;3294:14;3268:21;3278:10;3268:9;:21::i;:41::-;:57;;3246:132;;;;-1:-1:-1;;;3246:132:13;;15397:2:14;3246:132:13;;;15379:21:14;15436:2;15416:18;;;15409:30;15475:27;15455:18;;;15448:55;15520:18;;3246:132:13;15369:175:14;3246:132:13;3396:9;3391:265;3415:14;3411:1;:18;3391:265;;;3451:17;3471:14;:12;:14::i;:::-;3451:34;;3521:9;;3504:14;:12;:14::i;:::-;:26;3500:145;;;3551:27;:15;1032:19:7;;1050:1;1032:19;;;945:123;3551:27:13;3597:32;3607:10;3619:9;3597;:32::i;:::-;-1:-1:-1;3431:3:13;;;;:::i;:::-;;;;3391:265;;;;2353:1310;;;:::o;5367:320:1:-;5536:41;719:10:6;5569:7:1;5536:18;:41::i;:::-;5528:103;;;;-1:-1:-1;;;5528:103:1;;14979:2:14;5528:103:1;;;14961:21:14;15018:2;14998:18;;;14991:30;15057:34;15037:18;;;15030:62;15128:19;15108:18;;;15101:47;15165:19;;5528:103:1;14951:239:14;5528:103:1;5641:39;5655:4;5661:2;5665:7;5674:5;5641:13;:39::i;2818:329::-;7224:4;7247:16;;;:7;:16;;;;;;2891:13;;-1:-1:-1;;;;;7247:16:1;2916:76;;;;-1:-1:-1;;;2916:76:1;;14161:2:14;2916:76:1;;;14143:21:14;14200:2;14180:18;;;14173:30;14239:34;14219:18;;;14212:62;14310:17;14290:18;;;14283:45;14345:19;;2916:76:1;14133:237:14;2916:76:1;3003:21;3027:10;:8;:10::i;:::-;3003:34;;3078:1;3060:7;3054:21;:25;:86;;;;;;;;;;;;;;;;;3106:7;3115:18;:7;:16;:18::i;:::-;3089:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;3054:86;3047:93;2818:329;-1:-1:-1;;;2818:329:1:o;3899:112:13:-;1108:6:0;;-1:-1:-1;;;;;1108:6:0;719:10:6;1248:23:0;1240:68;;;;-1:-1:-1;;;1240:68:0;;13800:2:14;1240:68:0;;;13782:21:14;;;13819:18;;;13812:30;-1:-1:-1;;;;;;;;;;;13858:18:14;;;13851:62;13930:18;;1240:68:0;13772:182:14;1240:68:0;3975:12:13::1;:28:::0;3899:112::o;3779:::-;1108:6:0;;-1:-1:-1;;;;;1108:6:0;719:10:6;1248:23:0;1240:68;;;;-1:-1:-1;;;1240:68:0;;13800:2:14;1240:68:0;;;13782:21:14;;;13819:18;;;13812:30;-1:-1:-1;;;;;;;;;;;13858:18:14;;;13851:62;13930:18;;1240:68:0;13772:182:14;1240:68:0;3855:12:13::1;:28:::0;3779:112::o;1918:198:0:-;1108:6;;-1:-1:-1;;;;;1108:6:0;719:10:6;1248:23:0;1240:68;;;;-1:-1:-1;;;1240:68:0;;13800:2:14;1240:68:0;;;13782:21:14;;;13819:18;;;13812:30;-1:-1:-1;;;;;;;;;;;13858:18:14;;;13851:62;13930:18;;1240:68:0;13772:182:14;1240:68:0;-1:-1:-1;;;;;2006:22:0;::::1;1998:73;;;::::0;-1:-1:-1;;;1998:73:0;;8373:2:14;1998:73:0::1;::::0;::::1;8355:21:14::0;8412:2;8392:18;;;8385:30;8451:34;8431:18;;;8424:62;8522:8;8502:18;;;8495:36;8548:19;;1998:73:0::1;8345:228:14::0;1998:73:0::1;2081:28;2100:8;2081:18;:28::i;:::-;1918:198:::0;:::o;2259:86:13:-;1108:6:0;;-1:-1:-1;;;;;1108:6:0;719:10:6;1248:23:0;1240:68;;;;-1:-1:-1;;;1240:68:0;;13800:2:14;1240:68:0;;;13782:21:14;;;13819:18;;;13812:30;-1:-1:-1;;;;;;;;;;;13858:18:14;;;13851:62;13930:18;;1240:68:0;13772:182:14;1240:68:0;2328:9:13::1;::::0;;-1:-1:-1;;2315:22:13;::::1;2328:9;::::0;;;::::1;;;2327:10;2315:22:::0;;::::1;;::::0;;2259:86::o;11168:171:1:-;11242:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;11242:29:1;-1:-1:-1;;;;;11242:29:1;;;;;;;;:24;;11295:23;11242:24;11295:14;:23::i;:::-;-1:-1:-1;;;;;11286:46:1;;;;;;;;;;;11168:171;;:::o;7442:344::-;7535:4;7247:16;;;:7;:16;;;;;;-1:-1:-1;;;;;7247:16:1;7551:73;;;;-1:-1:-1;;;7551:73:1;;11023:2:14;7551:73:1;;;11005:21:14;11062:2;11042:18;;;11035:30;11101:34;11081:18;;;11074:62;-1:-1:-1;;;11152:18:14;;;11145:42;11204:19;;7551:73:1;10995:234:14;7551:73:1;7634:13;7650:23;7665:7;7650:14;:23::i;:::-;7634:39;;7702:5;-1:-1:-1;;;;;7691:16:1;:7;-1:-1:-1;;;;;7691:16:1;;:51;;;;7735:7;-1:-1:-1;;;;;7711:31:1;:20;7723:7;7711:11;:20::i;:::-;-1:-1:-1;;;;;7711:31:1;;7691:51;:87;;;-1:-1:-1;;;;;;4622:25:1;;;4599:4;4622:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;7746:32;7683:96;7442:344;-1:-1:-1;;;;7442:344:1:o;10452:605::-;10606:4;-1:-1:-1;;;;;10579:31:1;:23;10594:7;10579:14;:23::i;:::-;-1:-1:-1;;;;;10579:31:1;;10571:81;;;;-1:-1:-1;;;10571:81:1;;8780:2:14;10571:81:1;;;8762:21:14;8819:2;8799:18;;;8792:30;8858:34;8838:18;;;8831:62;8929:7;8909:18;;;8902:35;8954:19;;10571:81:1;8752:227:14;10571:81:1;-1:-1:-1;;;;;10670:16:1;;10662:65;;;;-1:-1:-1;;;10662:65:1;;9904:2:14;10662:65:1;;;9886:21:14;9943:2;9923:18;;;9916:30;9982:34;9962:18;;;9955:62;10053:6;10033:18;;;10026:34;10077:19;;10662:65:1;9876:226:14;10662:65:1;10839:29;10856:1;10860:7;10839:8;:29::i;:::-;-1:-1:-1;;;;;10879:15:1;;;;;;:9;:15;;;;;:20;;10898:1;;10879:15;:20;;10898:1;;10879:20;:::i;:::-;;;;-1:-1:-1;;;;;;;10909:13:1;;;;;;:9;:13;;;;;:18;;10926:1;;10909:13;:18;;10926:1;;10909:18;:::i;:::-;;;;-1:-1:-1;;10937:16:1;;;;:7;:16;;;;;;:21;;-1:-1:-1;;10937:21:1;-1:-1:-1;;;;;10937:21:1;;;;;;;;;10974:27;;10937:16;;10974:27;;;;;;;3537:401;;;:::o;2270:187:0:-;2362:6;;;-1:-1:-1;;;;;2378:17:0;;;-1:-1:-1;;2378:17:0;;;;;;;2410:40;;2362:6;;;2378:17;2362:6;;2410:40;;2343:16;;2410:40;2270:187;;:::o;8116:108:1:-;8191:26;8201:2;8205:7;8191:26;;;;;;;;;;;;:9;:26::i;3108:96:12:-;3166:7;3192:5;3196:1;3192;:5;:::i;11474:307:1:-;11624:8;-1:-1:-1;;;;;11615:17:1;:5;-1:-1:-1;;;;;11615:17:1;;;11607:55;;;;-1:-1:-1;;;11607:55:1;;10309:2:14;11607:55:1;;;10291:21:14;10348:2;10328:18;;;10321:30;10387:27;10367:18;;;10360:55;10432:18;;11607:55:1;10281:175:14;11607:55:1;-1:-1:-1;;;;;11672:25:1;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;11672:46:1;;;;;;;;;;11733:41;;6578::14;;;11733::1;;6551:18:14;11733:41:1;;;;;;;11474:307;;;:::o;2741:96:12:-;2799:7;2825:5;2829:1;2825;:5;:::i;3451:96::-;3509:7;3535:5;3539:1;3535;:5;:::i;6549:307:1:-;6700:28;6710:4;6716:2;6720:7;6700:9;:28::i;:::-;6746:48;6769:4;6775:2;6779:7;6788:5;6746:22;:48::i;:::-;6738:111;;;;-1:-1:-1;;;6738:111:1;;7954:2:14;6738:111:1;;;7936:21:14;7993:2;7973:18;;;7966:30;8032:34;8012:18;;;8005:62;-1:-1:-1;;;8083:18:14;;;8076:48;8141:19;;6738:111:1;7926:240:14;2051:103:13;2103:13;2136:10;2129:17;;;;;:::i;328:703:8:-;384:13;601:10;597:51;;-1:-1:-1;;627:10:8;;;;;;;;;;;;;;;;;;328:703::o;597:51::-;672:5;657:12;711:75;718:9;;711:75;;743:8;;;;:::i;:::-;;-1:-1:-1;765:10:8;;-1:-1:-1;773:2:8;765:10;;:::i;:::-;;;711:75;;;795:19;827:6;817:17;;;;;;-1:-1:-1;;;817:17:8;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;817:17:8;;795:39;;844:150;851:10;;844:150;;877:11;887:1;877:11;;:::i;:::-;;-1:-1:-1;945:10:8;953:2;945:5;:10;:::i;:::-;932:24;;:2;:24;:::i;:::-;919:39;;902:6;909;902:14;;;;;;-1:-1:-1;;;902:14:8;;;;;;;;;;;;:56;;;;;;;;;;-1:-1:-1;972:11:8;981:2;972:11;;:::i;:::-;;;844:150;;8445:311:1;8570:18;8576:2;8580:7;8570:5;:18::i;:::-;8619:54;8650:1;8654:2;8658:7;8667:5;8619:22;:54::i;:::-;8598:151;;;;-1:-1:-1;;;8598:151:1;;7954:2:14;8598:151:1;;;7936:21:14;7993:2;7973:18;;;7966:30;8032:34;8012:18;;;8005:62;-1:-1:-1;;;8083:18:14;;;8076:48;8141:19;;8598:151:1;7926:240:14;12334:778:1;12484:4;-1:-1:-1;;;;;12504:13:1;;1465:19:5;:23;12500:606:1;;12539:72;;-1:-1:-1;;;12539:72:1;;-1:-1:-1;;;;;12539:36:1;;;;;:72;;719:10:6;;12590:4:1;;12596:7;;12605:5;;12539:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;12539:72:1;;;;;;;;-1:-1:-1;;12539:72:1;;;;;;;;;;;;:::i;:::-;;;12535:519;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;12778:13:1;;12774:266;;12820:60;;-1:-1:-1;;;12820:60:1;;7954:2:14;12820:60:1;;;7936:21:14;7993:2;7973:18;;;7966:30;8032:34;8012:18;;;8005:62;-1:-1:-1;;;8083:18:14;;;8076:48;8141:19;;12820:60:1;7926:240:14;12774:266:1;12992:6;12986:13;12977:6;12973:2;12969:15;12962:38;12535:519;-1:-1:-1;;;;;;12661:51:1;-1:-1:-1;;;12661:51:1;;-1:-1:-1;12654:58:1;;12500:606;-1:-1:-1;13091:4:1;12334:778;;;;;;:::o;9078:427::-;-1:-1:-1;;;;;9157:16:1;;9149:61;;;;-1:-1:-1;;;9149:61:1;;13026:2:14;9149:61:1;;;13008:21:14;;;13045:18;;;13038:30;13104:34;13084:18;;;13077:62;13156:18;;9149:61:1;12998:182:14;9149:61:1;7224:4;7247:16;;;:7;:16;;;;;;-1:-1:-1;;;;;7247:16:1;:30;9220:58;;;;-1:-1:-1;;;9220:58:1;;9186:2:14;9220:58:1;;;9168:21:14;9225:2;9205:18;;;9198:30;9264;9244:18;;;9237:58;9312:18;;9220:58:1;9158:178:14;9220:58:1;-1:-1:-1;;;;;9345:13:1;;;;;;:9;:13;;;;;:18;;9362:1;;9345:13;:18;;9362:1;;9345:18;:::i;:::-;;;;-1:-1:-1;;9373:16:1;;;;:7;:16;;;;;;:21;;-1:-1:-1;;9373:21:1;-1:-1:-1;;;;;9373:21:1;;;;;;;;9410:33;;9373:16;;;9410:33;;9373:16;;9410:33;1155:37:13::1;1318:1:0;1057:143:13:o:0;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:631:14;78:5;108:18;149:2;141:6;138:14;135:2;;;155:18;;:::i;:::-;230:2;224:9;198:2;284:15;;-1:-1:-1;;280:24:14;;;306:2;276:33;272:42;260:55;;;330:18;;;350:22;;;327:46;324:2;;;376:18;;:::i;:::-;416:10;412:2;405:22;445:6;436:15;;475:6;467;460:22;515:3;506:6;501:3;497:16;494:25;491:2;;;532:1;529;522:12;491:2;582:6;577:3;570:4;562:6;558:17;545:44;637:1;630:4;621:6;613;609:19;605:30;598:41;;;;88:557;;;;;:::o;650:196::-;718:20;;-1:-1:-1;;;;;767:54:14;;757:65;;747:2;;836:1;833;826:12;747:2;699:147;;;:::o;851:196::-;910:6;963:2;951:9;942:7;938:23;934:32;931:2;;;984:6;976;969:22;931:2;1012:29;1031:9;1012:29;:::i;1052:270::-;1120:6;1128;1181:2;1169:9;1160:7;1156:23;1152:32;1149:2;;;1202:6;1194;1187:22;1149:2;1230:29;1249:9;1230:29;:::i;:::-;1220:39;;1278:38;1312:2;1301:9;1297:18;1278:38;:::i;:::-;1268:48;;1139:183;;;;;:::o;1327:338::-;1404:6;1412;1420;1473:2;1461:9;1452:7;1448:23;1444:32;1441:2;;;1494:6;1486;1479:22;1441:2;1522:29;1541:9;1522:29;:::i;:::-;1512:39;;1570:38;1604:2;1593:9;1589:18;1570:38;:::i;:::-;1560:48;;1655:2;1644:9;1640:18;1627:32;1617:42;;1431:234;;;;;:::o;1670:696::-;1765:6;1773;1781;1789;1842:3;1830:9;1821:7;1817:23;1813:33;1810:2;;;1864:6;1856;1849:22;1810:2;1892:29;1911:9;1892:29;:::i;:::-;1882:39;;1940:38;1974:2;1963:9;1959:18;1940:38;:::i;:::-;1930:48;;2025:2;2014:9;2010:18;1997:32;1987:42;;2080:2;2069:9;2065:18;2052:32;2107:18;2099:6;2096:30;2093:2;;;2144:6;2136;2129:22;2093:2;2172:22;;2225:4;2217:13;;2213:27;-1:-1:-1;2203:2:14;;2259:6;2251;2244:22;2203:2;2287:73;2352:7;2347:2;2334:16;2329:2;2325;2321:11;2287:73;:::i;:::-;2277:83;;;1800:566;;;;;;;:::o;2371:367::-;2436:6;2444;2497:2;2485:9;2476:7;2472:23;2468:32;2465:2;;;2518:6;2510;2503:22;2465:2;2546:29;2565:9;2546:29;:::i;:::-;2536:39;;2625:2;2614:9;2610:18;2597:32;2672:5;2665:13;2658:21;2651:5;2648:32;2638:2;;2699:6;2691;2684:22;2638:2;2727:5;2717:15;;;2455:283;;;;;:::o;2743:264::-;2811:6;2819;2872:2;2860:9;2851:7;2847:23;2843:32;2840:2;;;2893:6;2885;2878:22;2840:2;2921:29;2940:9;2921:29;:::i;:::-;2911:39;2997:2;2982:18;;;;2969:32;;-1:-1:-1;;;2830:177:14:o;3012:255::-;3070:6;3123:2;3111:9;3102:7;3098:23;3094:32;3091:2;;;3144:6;3136;3129:22;3091:2;3188:9;3175:23;3207:30;3231:5;3207:30;:::i;3272:259::-;3341:6;3394:2;3382:9;3373:7;3369:23;3365:32;3362:2;;;3415:6;3407;3400:22;3362:2;3452:9;3446:16;3471:30;3495:5;3471:30;:::i;3536:480::-;3605:6;3658:2;3646:9;3637:7;3633:23;3629:32;3626:2;;;3679:6;3671;3664:22;3626:2;3724:9;3711:23;3757:18;3749:6;3746:30;3743:2;;;3794:6;3786;3779:22;3743:2;3822:22;;3875:4;3867:13;;3863:27;-1:-1:-1;3853:2:14;;3909:6;3901;3894:22;3853:2;3937:73;4002:7;3997:2;3984:16;3979:2;3975;3971:11;3937:73;:::i;4021:190::-;4080:6;4133:2;4121:9;4112:7;4108:23;4104:32;4101:2;;;4154:6;4146;4139:22;4101:2;-1:-1:-1;4182:23:14;;4091:120;-1:-1:-1;4091:120:14:o;4216:733::-;4311:6;4319;4327;4380:2;4368:9;4359:7;4355:23;4351:32;4348:2;;;4401:6;4393;4386:22;4348:2;4442:9;4429:23;4419:33;;4503:2;4492:9;4488:18;4475:32;4526:18;4567:2;4559:6;4556:14;4553:2;;;4588:6;4580;4573:22;4553:2;4631:6;4620:9;4616:22;4606:32;;4676:7;4669:4;4665:2;4661:13;4657:27;4647:2;;4703:6;4695;4688:22;4647:2;4748;4735:16;4774:2;4766:6;4763:14;4760:2;;;4795:6;4787;4780:22;4760:2;4853:7;4848:2;4838:6;4835:1;4831:14;4827:2;4823:23;4819:32;4816:45;4813:2;;;4879:6;4871;4864:22;4813:2;4915;4911;4907:11;4897:21;;4937:6;4927:16;;;;;4338:611;;;;;:::o;4954:257::-;4995:3;5033:5;5027:12;5060:6;5055:3;5048:19;5076:63;5132:6;5125:4;5120:3;5116:14;5109:4;5102:5;5098:16;5076:63;:::i;:::-;5193:2;5172:15;-1:-1:-1;;5168:29:14;5159:39;;;;5200:4;5155:50;;5003:208;-1:-1:-1;;5003:208:14:o;5216:470::-;5395:3;5433:6;5427:13;5449:53;5495:6;5490:3;5483:4;5475:6;5471:17;5449:53;:::i;:::-;5565:13;;5524:16;;;;5587:57;5565:13;5524:16;5621:4;5609:17;;5587:57;:::i;:::-;5660:20;;5403:283;-1:-1:-1;;;;5403:283:14:o;5922:511::-;6116:4;-1:-1:-1;;;;;6226:2:14;6218:6;6214:15;6203:9;6196:34;6278:2;6270:6;6266:15;6261:2;6250:9;6246:18;6239:43;;6318:6;6313:2;6302:9;6298:18;6291:34;6361:3;6356:2;6345:9;6341:18;6334:31;6382:45;6422:3;6411:9;6407:19;6399:6;6382:45;:::i;:::-;6374:53;6125:308;-1:-1:-1;;;;;;6125:308:14:o;6812:219::-;6961:2;6950:9;6943:21;6924:4;6981:44;7021:2;7010:9;7006:18;6998:6;6981:44;:::i;15731:128::-;15771:3;15802:1;15798:6;15795:1;15792:13;15789:2;;;15808:18;;:::i;:::-;-1:-1:-1;15844:9:14;;15779:80::o;15864:120::-;15904:1;15930;15920:2;;15935:18;;:::i;:::-;-1:-1:-1;15969:9:14;;15910:74::o;15989:168::-;16029:7;16095:1;16091;16087:6;16083:14;16080:1;16077:21;16072:1;16065:9;16058:17;16054:45;16051:2;;;16102:18;;:::i;:::-;-1:-1:-1;16142:9:14;;16041:116::o;16162:125::-;16202:4;16230:1;16227;16224:8;16221:2;;;16235:18;;:::i;:::-;-1:-1:-1;16272:9:14;;16211:76::o;16292:258::-;16364:1;16374:113;16388:6;16385:1;16382:13;16374:113;;;16464:11;;;16458:18;16445:11;;;16438:39;16410:2;16403:10;16374:113;;;16505:6;16502:1;16499:13;16496:2;;;-1:-1:-1;;16540:1:14;16522:16;;16515:27;16345:205::o;16555:437::-;16634:1;16630:12;;;;16677;;;16698:2;;16752:4;16744:6;16740:17;16730:27;;16698:2;16805;16797:6;16794:14;16774:18;16771:38;16768:2;;;-1:-1:-1;;;16839:1:14;16832:88;16943:4;16940:1;16933:15;16971:4;16968:1;16961:15;16768:2;;16610:382;;;:::o;16997:135::-;17036:3;-1:-1:-1;;17057:17:14;;17054:2;;;17077:18;;:::i;:::-;-1:-1:-1;17124:1:14;17113:13;;17044:88::o;17137:112::-;17169:1;17195;17185:2;;17200:18;;:::i;:::-;-1:-1:-1;17234:9:14;;17175:74::o;17254:184::-;-1:-1:-1;;;17303:1:14;17296:88;17403:4;17400:1;17393:15;17427:4;17424:1;17417:15;17443:184;-1:-1:-1;;;17492:1:14;17485:88;17592:4;17589:1;17582:15;17616:4;17613:1;17606:15;17632:184;-1:-1:-1;;;17681:1:14;17674:88;17781:4;17778:1;17771:15;17805:4;17802:1;17795:15;17821:177;-1:-1:-1;;;;;;17899:5:14;17895:78;17888:5;17885:89;17875:2;;17988:1;17985;17978:12

Swarm Source

ipfs://a82d242303e38c7bd6b555f91f6c800d9f52924b8561bf7045a3411c88f87a35
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.