ETH Price: $3,051.79 (+2.40%)
Gas: 1 Gwei

Token

ReconRams (RR)
 

Overview

Max Total Supply

4,246 RR

Holders

1,743

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
2 RR
0xFADDeC89cb109C9fded5e9c393435Cfc9B751211
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:
ReconRams

Compiler Version
v0.8.10+commit.fc410830

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-01-20
*/

// SPDX-License-Identifier: MIT

// File: @openzeppelin/contracts/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;
    }
}

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);
}

// File: @openzeppelin/contracts/token/ERC721/IERC721.sol
pragma solidity ^0.8.0;

/**
 * @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: @openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.sol
pragma solidity ^0.8.0;

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

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

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

// File: @openzeppelin/contracts/utils/introspection/ERC165.sol
pragma solidity ^0.8.0;

/**
 * @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:
 *
 * ```soliditycontract ERC721 is Context, ERC165, IERC721, IERC721Metadata
 * 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: @openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol
pragma solidity ^0.8.0;

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

pragma solidity ^0.8.10;

abstract contract ERC721P is Context, ERC165, IERC721, IERC721Metadata {
    using Address for address;

    string private _name;
    string private _symbol;

    address[] internal _owners;

    mapping(uint256 => address) private _tokenApprovals;
    mapping(address => mapping(address => bool)) private _operatorApprovals;

    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

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

    function balanceOf(address owner)
        public
        view
        virtual
        override
        returns (uint256)
    {
        require(
            owner != address(0),
            "ERC721: balance query for the zero address"
        );
        uint256 count = 0;
        uint256 length = _owners.length;
        for (uint256 i = 0; i < length; ++i) {
            if (owner == _owners[i]) {
                ++count;
            }
        }
        delete length;
        return count;
    }

    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;
    }

    function name() public view virtual override returns (string memory) {
        return _name;
    }

    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    function approve(address to, uint256 tokenId) public virtual override {
        address owner = ERC721P.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);
    }

    function getApproved(uint256 tokenId)
        public
        view
        virtual
        override
        returns (address)
    {
        require(
            _exists(tokenId),
            "ERC721: approved query for nonexistent token"
        );

        return _tokenApprovals[tokenId];
    }

    function setApprovalForAll(address operator, bool approved)
        public
        virtual
        override
    {
        require(operator != _msgSender(), "ERC721: approve to caller");

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

    function isApprovedForAll(address owner, address operator)
        public
        view
        virtual
        override
        returns (bool)
    {
        return _operatorApprovals[owner][operator];
    }

    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);
    }

    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        safeTransferFrom(from, to, tokenId, "");
    }

    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);
    }

    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"
        );
    }

    function _exists(uint256 tokenId) internal view virtual returns (bool) {
        return tokenId < _owners.length && _owners[tokenId] != address(0);
    }

    function _isApprovedOrOwner(address spender, uint256 tokenId)
        internal
        view
        virtual
        returns (bool)
    {
        require(
            _exists(tokenId),
            "ERC721: operator query for nonexistent token"
        );
        address owner = ERC721P.ownerOf(tokenId);
        return (spender == owner ||
            getApproved(tokenId) == spender ||
            isApprovedForAll(owner, spender));
    }

    function _safeMint(address to, uint256 tokenId) internal virtual {
        _safeMint(to, tokenId, "");
    }

    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"
        );
    }

    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);
        _owners.push(to);

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

    function _burn(uint256 tokenId) internal virtual {
        address owner = ERC721P.ownerOf(tokenId);

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

        _approve(address(0), tokenId);
        _owners[tokenId] = address(0);

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

    function _transfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {
        require(
            ERC721P.ownerOf(tokenId) == from,
            "ERC721: transfer of token that is not own"
        );
        require(to != address(0), "ERC721: transfer to the zero address");

        _beforeTokenTransfer(from, to, tokenId);

        _approve(address(0), tokenId);
        _owners[tokenId] = to;

        emit Transfer(from, to, tokenId);
    }

    function _approve(address to, uint256 tokenId) internal virtual {
        _tokenApprovals[tokenId] = to;
        emit Approval(ERC721P.ownerOf(tokenId), to, tokenId);
    }

    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;
        }
    }

    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {}
}

pragma solidity ^0.8.10;

abstract contract ERC721Enum is ERC721P, IERC721Enumerable {
    function supportsInterface(bytes4 interfaceId)
        public
        view
        virtual
        override(IERC165, ERC721P)
        returns (bool)
    {
        return
            interfaceId == type(IERC721Enumerable).interfaceId ||
            super.supportsInterface(interfaceId);
    }

    function tokenOfOwnerByIndex(address owner, uint256 index)
        public
        view
        override
        returns (uint256 tokenId)
    {
        require(index < ERC721P.balanceOf(owner), "ERC721Enum: owner ioob");
        uint256 count;
        for (uint256 i; i < _owners.length; ++i) {
            if (owner == _owners[i]) {
                if (count == index) return i;
                else ++count;
            }
        }
        require(false, "ERC721Enum: owner ioob");
    }

    function tokensOfOwner(address owner)
        public
        view
        returns (uint256[] memory)
    {
        require(0 < ERC721P.balanceOf(owner), "ERC721Enum: owner ioob");
        uint256 tokenCount = balanceOf(owner);
        uint256[] memory tokenIds = new uint256[](tokenCount);
        for (uint256 i = 0; i < tokenCount; i++) {
            tokenIds[i] = tokenOfOwnerByIndex(owner, i);
        }
        return tokenIds;
    }

    function totalSupply() public view virtual override returns (uint256) {
        return _owners.length;
    }

    function tokenByIndex(uint256 index)
        public
        view
        virtual
        override
        returns (uint256)
    {
        require(index < ERC721Enum.totalSupply(), "ERC721Enum: global ioob");
        return index;
    }
}

// File: @openzeppelin/contracts/access/Ownable.sol
pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

/**
 * @title PaymentSplitter
 * @dev This contract allows to split Ether payments among a group of accounts. The sender does not need to be aware
 * that the Ether will be split in this way, since it is handled transparently by the contract.
 *
 * The split can be in equal parts or in any other arbitrary proportion. The way this is specified is by assigning each
 * account to a number of shares. Of all the Ether that this contract receives, each account will then be able to claim
 * an amount proportional to the percentage of total shares they were assigned.
 *
 * `PaymentSplitter` follows a _pull payment_ model. This means that payments are not automatically forwarded to the
 * accounts but kept in this contract, and the actual transfer is triggered as a separate step by calling the {release}
 * function.
 */
contract PaymentSplitter is Context {
    event PayeeAdded(address account, uint256 shares);
    event PaymentReleased(address to, uint256 amount);
    event PaymentReceived(address from, uint256 amount);

    uint256 private _totalShares;
    uint256 private _totalReleased;

    mapping(address => uint256) private _shares;
    mapping(address => uint256) private _released;
    address[] private _payees;

    /**
     * @dev Creates an instance of `PaymentSplitter` where each account in `payees` is assigned the number of shares at
     * the matching position in the `shares` array.
     *
     * All addresses in `payees` must be non-zero. Both arrays must have the same non-zero length, and there must be no
     * duplicates in `payees`.
     */
    constructor(address[] memory payees, uint256[] memory shares_) payable {
        require(
            payees.length == shares_.length,
            "PaymentSplitter: payees and shares length mismatch"
        );
        require(payees.length > 0, "PaymentSplitter: no payees");

        for (uint256 i = 0; i < payees.length; i++) {
            _addPayee(payees[i], shares_[i]);
        }
    }

    /**
     * @dev The Ether received will be logged with {PaymentReceived} events. Note that these events are not fully
     * reliable: it's possible for a contract to receive Ether without triggering this function. This only affects the
     * reliability of the events, and not the actual splitting of Ether.
     *
     * To learn more about this see the Solidity documentation for
     * https://solidity.readthedocs.io/en/latest/contracts.html#fallback-function[fallback
     * functions].
     */
    receive() external payable virtual {
        emit PaymentReceived(_msgSender(), msg.value);
    }

    /**
     * @dev Getter for the total shares held by payees.
     */
    function totalShares() public view returns (uint256) {
        return _totalShares;
    }

    /**
     * @dev Getter for the total amount of Ether already released.
     */
    function totalReleased() public view returns (uint256) {
        return _totalReleased;
    }

    /**
     * @dev Getter for the amount of shares held by an account.
     */
    function shares(address account) public view returns (uint256) {
        return _shares[account];
    }

    /**
     * @dev Getter for the amount of Ether already released to a payee.
     */
    function released(address account) public view returns (uint256) {
        return _released[account];
    }

    /**
     * @dev Getter for the address of the payee number `index`.
     */
    function payee(uint256 index) public view returns (address) {
        return _payees[index];
    }

    /**
     * @dev Triggers a transfer to `account` of the amount of Ether they are owed, according to their percentage of the
     * total shares and their previous withdrawals.
     */
    function release(address payable account) public virtual {
        require(_shares[account] > 0, "PaymentSplitter: account has no shares");

        uint256 totalReceived = address(this).balance + _totalReleased;
        uint256 payment = (totalReceived * _shares[account]) /
            _totalShares -
            _released[account];

        require(payment != 0, "PaymentSplitter: account is not due payment");

        _released[account] = _released[account] + payment;
        _totalReleased = _totalReleased + payment;

        Address.sendValue(account, payment);
        emit PaymentReleased(account, payment);
    }

    /**
     * @dev Add a new payee to the contract.
     * @param account The address of the payee to add.
     * @param shares_ The number of shares owned by the payee.
     */
    function _addPayee(address account, uint256 shares_) private {
        require(
            account != address(0),
            "PaymentSplitter: account is the zero address"
        );
        require(shares_ > 0, "PaymentSplitter: shares are 0");
        require(
            _shares[account] == 0,
            "PaymentSplitter: account already has shares"
        );

        _payees.push(account);
        _shares[account] = shares_;
        _totalShares = _totalShares + shares_;
        emit PayeeAdded(account, shares_);
    }
}

// File: @openzeppelin/contracts/utils/Address.sol
pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: @openzeppelin/contracts/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);
    }
}

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 = keccak256(abi.encodePacked(computedHash, proofElement));
            } else {
                // Hash(current element of the proof + current computed hash)
                computedHash = keccak256(abi.encodePacked(proofElement, computedHash));
            }
        }
        return computedHash;
    }
}

pragma solidity ^0.8.10;

contract ReconRams is ERC721Enum, Ownable, PaymentSplitter {
    using Strings for uint256;

    //provenance hash using keccak256
    string public constant RR_PROVENANCE_HASH = "f427a5d18f88f321d7675ab5d46b267a87a17d004ce11743b578004f3eb079cc";

    uint256 public constant MAX_SUPPLY = 5990;
    uint256 public constant PUBLIC_MAX_SUPPLY = 5891;
    uint256 public constant MAX_PRESALE_MINT = 2;
    uint256 public constant MAX_PUBLIC_PER_TX = 7;
    uint256 public constant MAX_PUBLIC_PER_WALLET = 14;
    uint256 public constant AUCTION_LEGENDARIES = 6;
    uint256 public constant COST = 0.077 ether;
    bytes32 private merkleRoot;
    bool public presaleOnlyActive = true;
    bool public paused = true;
    bool public revealed = false;
    string baseURI;
    string notRevealedURI;
    
    mapping(address => uint256) public whitelistAddressMintedBalance;
    mapping(address => uint256) public publicAddressMintedBalance;

    address[] private _splitterAddressList = [
        0xe0e14D42d26243C5BDE44c9a37C884d0c7f26ea8, //aug
        0x62CAb33C1eA73E3D6Df09a60a7923Ff5258e7f76, //proj
        0x948CD796Db88b64a55f7070cBF3db77017314873, //f1-i
        0x296e26622932564Fb834feBDF0606ef11c27a84f, //f2-t
        0x320aB9fC119cC7Bb9c0240F97100f571ca9E418d, //f3-a
        0x86566821ac036F1bD686C60ce788ACC782225058, //f4-m
        0x8B1507236662c79Fb799DD6275Cc947ca45F86e4, //ar1-w
        0xf3C20E1faf8Ee55bf4b44C7c865E208f31fdD530  //ar2-d
    ];

    uint256[] private _shareList = [20, 12, 15, 15, 15, 15, 4, 4];

    constructor(string memory _initBaseURI, string memory _unRevealedURI, bytes32 _merkleRoot) ERC721P("ReconRams", "RR") PaymentSplitter(_splitterAddressList, _shareList) {
        setBaseURI(_initBaseURI);
        setNotRevealedURI(_unRevealedURI);
        merkleRoot = _merkleRoot;
    }

    modifier mintCheck(uint256 _mintAmount) {
        uint256 supply = totalSupply();
        require(_mintAmount > 0, "Mint amt must be greater than 0");
        require(supply + _mintAmount <= PUBLIC_MAX_SUPPLY, "Mint amt exceeds max supply");
        require(msg.value >= COST * _mintAmount, "Insufficient funds");
        _;
    }

    //---------------- Internal ----------------

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

    function _leaf(address _account) internal pure returns (bytes32) {
        return keccak256(abi.encodePacked(_account));
    }

    function _verifyLeaf(bytes32 _leafNode, bytes32[] memory _proof) internal view returns (bool) {
        return MerkleProof.verify(_proof, merkleRoot, _leafNode);
    }

    function _doMint(address _receiver, uint256 _mintAmount) internal {
        uint256 supply = totalSupply();
        for (uint256 i = 0; i < _mintAmount; i++) {
            _safeMint(_receiver, supply + i);
        }
    }

    //---------------- Public/External ----------------

    function whitelistMint(uint256 _mintAmount, bytes32[] calldata proof) external payable mintCheck(_mintAmount) {
        require(presaleOnlyActive && !paused, "Presale is currently not active");
        require(_verifyLeaf(_leaf(msg.sender), proof), "Invalid proof");

        uint256 senderMintedCount = whitelistAddressMintedBalance[msg.sender];
        require(senderMintedCount + _mintAmount <= MAX_PRESALE_MINT, "Total mints after tx exceeds max mints for this address. Max 2 per WL wallet.");
        whitelistAddressMintedBalance[msg.sender] += _mintAmount;
        
        _doMint(msg.sender, _mintAmount);
    }

    function publicMint(uint256 _mintAmount) external payable mintCheck(_mintAmount) {
        require(!presaleOnlyActive && !paused, "Public sale is not active");
        require(!Address.isContract(msg.sender), "Contract to contract minting not allowed");
        require(msg.sender == tx.origin, "Sender must be origin wallet");
        require(_mintAmount <= MAX_PUBLIC_PER_TX, "Mint amt greater than max per tx");

        uint256 senderMintedCount = publicAddressMintedBalance[msg.sender];
        require(senderMintedCount + _mintAmount <= MAX_PUBLIC_PER_WALLET, "Total mints after tx exceeds max mints for this address. Max 14 per public wallet.");
        publicAddressMintedBalance[msg.sender] += _mintAmount;
        
        _doMint(msg.sender, _mintAmount);
    }

    function walletOfOwner(address _owner) public view returns (uint256[] memory) {
        uint256 ownerTokenCount = balanceOf(_owner);
        uint256[] memory ownedTokenIds = new uint256[](ownerTokenCount);
        uint256 currentTokenId = 1;
        uint256 ownedTokenIndex = 0;

        while (ownedTokenIndex < ownerTokenCount && currentTokenId <= MAX_SUPPLY) {
            address currentTokenOwner = ownerOf(currentTokenId);
            if (currentTokenOwner == _owner) {
                ownedTokenIds[ownedTokenIndex] = currentTokenId;
                ownedTokenIndex++;
            }
            currentTokenId++;
        }
        return ownedTokenIds;
    }

    function tokenURI(uint256 _tokenId) public view virtual override returns (string memory) {
        require(_exists(_tokenId), "ERC721Metadata: TokenID does not exist.");
        if (revealed == false) {
            return notRevealedURI;
        }
        string memory currentBaseURI = _baseURI();
        return bytes(currentBaseURI).length > 0 ? string(abi.encodePacked(currentBaseURI, _tokenId.toString(), ".json")) : "";
    }

    //---------------- Only Owner ----------------

    function teamLegendariesMint(address _receiver) public onlyOwner {
        require(balanceOf(owner()) == 0, "Owner balance greater than 0");
        uint256 supply = totalSupply();
        for (uint256 i = 0; i < AUCTION_LEGENDARIES; i++) {
            _safeMint(_receiver, supply + i);
        }
    }

    function teamReserveMint(uint256 _mintAmount, address _receiver) public onlyOwner {
        uint256 supply = totalSupply();
        require(supply + _mintAmount <= MAX_SUPPLY, "Mint amt exceeds max supply");
        _doMint(_receiver, _mintAmount);
    }

    function setNotRevealedURI(string memory _notRevealedURI) public onlyOwner {
        notRevealedURI = _notRevealedURI;
    }

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

    function pause(bool _state) public onlyOwner {
        paused = _state;
    }

    function reveal() public onlyOwner {
        revealed = true;
    }

    function whitelistMintOnly(bool _state) public onlyOwner {
        presaleOnlyActive = _state;
    }

    function setMerkleRoot(bytes32 _root) public onlyOwner {
        merkleRoot = _root;
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_initBaseURI","type":"string"},{"internalType":"string","name":"_unRevealedURI","type":"string"},{"internalType":"bytes32","name":"_merkleRoot","type":"bytes32"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"uint256","name":"shares","type":"uint256"}],"name":"PayeeAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"from","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"PaymentReceived","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"PaymentReleased","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":"AUCTION_LEGENDARIES","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"COST","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_PRESALE_MINT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_PUBLIC_PER_TX","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_PUBLIC_PER_WALLET","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PUBLIC_MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"RR_PROVENANCE_HASH","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"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":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"payee","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"presaleOnlyActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"publicAddressMintedBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"publicMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address payable","name":"account","type":"address"}],"name":"release","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"released","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reveal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_root","type":"bytes32"}],"name":"setMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_notRevealedURI","type":"string"}],"name":"setNotRevealedURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"shares","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_receiver","type":"address"}],"name":"teamLegendariesMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"},{"internalType":"address","name":"_receiver","type":"address"}],"name":"teamReserveMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"tokenId","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":[{"internalType":"address","name":"owner","type":"address"}],"name":"tokensOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalReleased","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalShares","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"whitelistAddressMintedBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"},{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"}],"name":"whitelistMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"whitelistMintOnly","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

600c805462ffffff191661010117905561018060405273e0e14d42d26243c5bde44c9a37c884d0c7f26ea860809081527362cab33c1ea73e3d6df09a60a7923ff5258e7f7660a05273948cd796db88b64a55f7070cbf3db7701731487360c05273296e26622932564fb834febdf0606ef11c27a84f60e05273320ab9fc119cc7bb9c0240f97100f571ca9e418d610100527386566821ac036f1bd686c60ce788acc78222505861012052738b1507236662c79fb799dd6275cc947ca45f86e46101405273f3c20e1faf8ee55bf4b44c7c865e208f31fdd53061016052620000eb90601190600862000703565b50604080516101008101825260148152600c6020820152600f918101829052606081018290526080810182905260a0810191909152600460c0820181905260e08201526200013e9060129060086200076d565b503480156200014c57600080fd5b50604051620039ef380380620039ef8339810160408190526200016f9162000911565b6011805480602002602001604051908101604052809291908181526020018280548015620001c757602002820191906000526020600020905b81546001600160a01b03168152600190910190602001808311620001a8575b505050505060128054806020026020016040519081016040528092919081815260200182805480156200021a57602002820191906000526020600020905b81548152602001906001019080831162000205575b505060408051808201825260098152685265636f6e52616d7360b81b602080830191825283518085019094526002845261292960f11b9084015281519195509193506200026c925060009190620007b0565b50805162000282906001906020840190620007b0565b5050506200029f62000299620003fb60201b60201c565b620003ff565b8051825114620003115760405162461bcd60e51b815260206004820152603260248201527f5061796d656e7453706c69747465723a2070617965657320616e6420736861726044820152710cae640d8cadccee8d040dad2e6dac2e8c6d60731b60648201526084015b60405180910390fd5b6000825111620003645760405162461bcd60e51b815260206004820152601a60248201527f5061796d656e7453706c69747465723a206e6f20706179656573000000000000604482015260640162000308565b60005b8251811015620003d057620003bb8382815181106200038a576200038a62000984565b6020026020010151838381518110620003a757620003a762000984565b60200260200101516200045160201b60201c565b80620003c781620009b0565b91505062000367565b505050620003e4836200063f60201b60201c565b620003ef82620006a3565b600b555062000a269050565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038216620004be5760405162461bcd60e51b815260206004820152602c60248201527f5061796d656e7453706c69747465723a206163636f756e74206973207468652060448201526b7a65726f206164647265737360a01b606482015260840162000308565b60008111620005105760405162461bcd60e51b815260206004820152601d60248201527f5061796d656e7453706c69747465723a20736861726573206172652030000000604482015260640162000308565b6001600160a01b038216600090815260086020526040902054156200058c5760405162461bcd60e51b815260206004820152602b60248201527f5061796d656e7453706c69747465723a206163636f756e7420616c726561647960448201526a206861732073686172657360a81b606482015260840162000308565b600a8054600181019091557fc65a7bb8d6351c1cf70c95a316cc6a92839c986682d98bc35f958f4883f9d2a80180546001600160a01b0319166001600160a01b0384169081179091556000908152600860205260409020819055600654620005f6908290620009ce565b600655604080516001600160a01b0384168152602081018390527f40c340f65e17194d14ddddb073d3c9f888e3cb52b5aae0c6c7706b4fbc905fac910160405180910390a15050565b6005546001600160a01b031633146200068a5760405162461bcd60e51b81526020600482018190526024820152600080516020620039cf833981519152604482015260640162000308565b80516200069f90600d906020840190620007b0565b5050565b6005546001600160a01b03163314620006ee5760405162461bcd60e51b81526020600482018190526024820152600080516020620039cf833981519152604482015260640162000308565b80516200069f90600e906020840190620007b0565b8280548282559060005260206000209081019282156200075b579160200282015b828111156200075b57825182546001600160a01b0319166001600160a01b0390911617825560209092019160019091019062000724565b50620007699291506200082d565b5090565b8280548282559060005260206000209081019282156200075b579160200282015b828111156200075b578251829060ff169055916020019190600101906200078e565b828054620007be90620009e9565b90600052602060002090601f016020900481019282620007e257600085556200075b565b82601f10620007fd57805160ff19168380011785556200075b565b828001600101855582156200075b579182015b828111156200075b57825182559160200191906001019062000810565b5b808211156200076957600081556001016200082e565b634e487b7160e01b600052604160045260246000fd5b600082601f8301126200086c57600080fd5b81516001600160401b038082111562000889576200088962000844565b604051601f8301601f19908116603f01168101908282118183101715620008b457620008b462000844565b81604052838152602092508683858801011115620008d157600080fd5b600091505b83821015620008f55785820183015181830184015290820190620008d6565b83821115620009075760008385830101525b9695505050505050565b6000806000606084860312156200092757600080fd5b83516001600160401b03808211156200093f57600080fd5b6200094d878388016200085a565b945060208601519150808211156200096457600080fd5b5062000973868287016200085a565b925050604084015190509250925092565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b6000600019821415620009c757620009c76200099a565b5060010190565b60008219821115620009e457620009e46200099a565b500190565b600181811c90821680620009fe57607f821691505b6020821081141562000a2057634e487b7160e01b600052602260045260246000fd5b50919050565b612f998062000a366000396000f3fe6080604052600436106102cd5760003560e01c806370a0823111610175578063a70f1fbe116100dc578063ddb35a6911610095578063e985e9c51161006f578063e985e9c5146108bf578063ea5c3a2d14610908578063f2c4ce1e1461091e578063f2fde38b1461093e57600080fd5b8063ddb35a691461086a578063e2f733e81461088a578063e33b7de3146108aa57600080fd5b8063a70f1fbe146107b0578063b88d4fde146107c5578063bf8fbbd2146107e5578063c87b56dd14610801578063ce7c2ac214610821578063d2cab0561461085757600080fd5b80638da5cb5b1161012e5780638da5cb5b146106fd57806395d89b411461071b5780639852595c146107305780639f55252e14610766578063a22cb4651461077b578063a475b5dd1461079b57600080fd5b806370a0823114610653578063715018a6146106735780637cb64759146106885780638462151c146106a85780638b83209b146106c85780638cbcd537146106e857600080fd5b806332cb6b0c116102345780634f6ccce7116101ed57806355f804b3116101c757806355f804b3146105c75780635c975abb146105e75780636209ff89146106065780636352211e1461063357600080fd5b80634f6ccce71461057257806350f6d1501461059257806351830227146105a757600080fd5b806332cb6b0c146104b8578063330a3768146104ce5780633a98ef39146104fb57806342842e0e14610510578063438b6300146105305780634e26d1af1461055d57600080fd5b806318160ddd1161028657806318160ddd1461040657806319165587146104255780631df656b01461044557806323b872dd146104655780632db11544146104855780632f745c591461049857600080fd5b806301ffc9a71461031b57806302329a291461035057806303d7630c1461037257806306fdde031461038c578063081812fc146103ae578063095ea7b3146103e657600080fd5b36610316577f6ef95f06320e7a25a04a175ca677b7052bdd97131872c2192525a629f51be77033604080516001600160a01b0390921682523460208301520160405180910390a1005b600080fd5b34801561032757600080fd5b5061033b610336366004612822565b61095e565b60405190151581526020015b60405180910390f35b34801561035c57600080fd5b5061037061036b366004612854565b610989565b005b34801561037e57600080fd5b50600c5461033b9060ff1681565b34801561039857600080fd5b506103a16109d6565b60405161034791906128c7565b3480156103ba57600080fd5b506103ce6103c93660046128da565b610a68565b6040516001600160a01b039091168152602001610347565b3480156103f257600080fd5b50610370610401366004612908565b610af0565b34801561041257600080fd5b506002545b604051908152602001610347565b34801561043157600080fd5b50610370610440366004612934565b610c06565b34801561045157600080fd5b50610370610460366004612951565b610dd7565b34801561047157600080fd5b50610370610480366004612981565b610e43565b6103706104933660046128da565b610e74565b3480156104a457600080fd5b506104176104b3366004612908565b61119a565b3480156104c457600080fd5b5061041761176681565b3480156104da57600080fd5b506104176104e9366004612934565b60106020526000908152604090205481565b34801561050757600080fd5b50600654610417565b34801561051c57600080fd5b5061037061052b366004612981565b611249565b34801561053c57600080fd5b5061055061054b366004612934565b611264565b60405161034791906129c2565b34801561056957600080fd5b50610417600e81565b34801561057e57600080fd5b5061041761058d3660046128da565b611345565b34801561059e57600080fd5b50610417600681565b3480156105b357600080fd5b50600c5461033b9062010000900460ff1681565b3480156105d357600080fd5b506103706105e2366004612a92565b6113a2565b3480156105f357600080fd5b50600c5461033b90610100900460ff1681565b34801561061257600080fd5b50610417610621366004612934565b600f6020526000908152604090205481565b34801561063f57600080fd5b506103ce61064e3660046128da565b6113e3565b34801561065f57600080fd5b5061041761066e366004612934565b61146f565b34801561067f57600080fd5b50610370611541565b34801561069457600080fd5b506103706106a33660046128da565b611577565b3480156106b457600080fd5b506105506106c3366004612934565b6115a6565b3480156106d457600080fd5b506103ce6106e33660046128da565b611670565b3480156106f457600080fd5b506103a16116a0565b34801561070957600080fd5b506005546001600160a01b03166103ce565b34801561072757600080fd5b506103a16116bc565b34801561073c57600080fd5b5061041761074b366004612934565b6001600160a01b031660009081526009602052604090205490565b34801561077257600080fd5b50610417600781565b34801561078757600080fd5b50610370610796366004612adb565b6116cb565b3480156107a757600080fd5b50610370611790565b3480156107bc57600080fd5b50610417600281565b3480156107d157600080fd5b506103706107e0366004612b10565b6117cd565b3480156107f157600080fd5b506104176701118f178fb4800081565b34801561080d57600080fd5b506103a161081c3660046128da565b6117ff565b34801561082d57600080fd5b5061041761083c366004612934565b6001600160a01b031660009081526008602052604090205490565b610370610865366004612b90565b611964565b34801561087657600080fd5b50610370610885366004612854565b611c36565b34801561089657600080fd5b506103706108a5366004612934565b611c73565b3480156108b657600080fd5b50600754610417565b3480156108cb57600080fd5b5061033b6108da366004612c0f565b6001600160a01b03918216600090815260046020908152604080832093909416825291909152205460ff1690565b34801561091457600080fd5b5061041761170381565b34801561092a57600080fd5b50610370610939366004612a92565b611d3d565b34801561094a57600080fd5b50610370610959366004612934565b611d7a565b60006001600160e01b0319821663780e9d6360e01b1480610983575061098382611e15565b92915050565b6005546001600160a01b031633146109bc5760405162461bcd60e51b81526004016109b390612c3d565b60405180910390fd5b600c80549115156101000261ff0019909216919091179055565b6060600080546109e590612c72565b80601f0160208091040260200160405190810160405280929190818152602001828054610a1190612c72565b8015610a5e5780601f10610a3357610100808354040283529160200191610a5e565b820191906000526020600020905b815481529060010190602001808311610a4157829003601f168201915b5050505050905090565b6000610a7382611e65565b610ad45760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016109b3565b506000908152600360205260409020546001600160a01b031690565b6000610afb826113e3565b9050806001600160a01b0316836001600160a01b03161415610b695760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016109b3565b336001600160a01b0382161480610b855750610b8581336108da565b610bf75760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016109b3565b610c018383611eaf565b505050565b6001600160a01b038116600090815260086020526040902054610c7a5760405162461bcd60e51b815260206004820152602660248201527f5061796d656e7453706c69747465723a206163636f756e7420686173206e6f2060448201526573686172657360d01b60648201526084016109b3565b600060075447610c8a9190612cc3565b6001600160a01b0383166000908152600960209081526040808320546006546008909352908320549394509192610cc19085612cdb565b610ccb9190612d10565b610cd59190612d24565b905080610d385760405162461bcd60e51b815260206004820152602b60248201527f5061796d656e7453706c69747465723a206163636f756e74206973206e6f742060448201526a191d59481c185e5b595b9d60aa1b60648201526084016109b3565b6001600160a01b038316600090815260096020526040902054610d5c908290612cc3565b6001600160a01b038416600090815260096020526040902055600754610d83908290612cc3565b600755610d908382611f1d565b604080516001600160a01b0385168152602081018390527fdf20fd1e76bc69d672e4814fafb2c449bba3a5369d8359adf9e05e6fde87b056910160405180910390a1505050565b6005546001600160a01b03163314610e015760405162461bcd60e51b81526004016109b390612c3d565b6000610e0c60025490565b9050611766610e1b8483612cc3565b1115610e395760405162461bcd60e51b81526004016109b390612d3b565b610c018284612036565b610e4d338261206e565b610e695760405162461bcd60e51b81526004016109b390612d72565b610c01838383612158565b806000610e8060025490565b905060008211610ed25760405162461bcd60e51b815260206004820152601f60248201527f4d696e7420616d74206d7573742062652067726561746572207468616e20300060448201526064016109b3565b611703610edf8383612cc3565b1115610efd5760405162461bcd60e51b81526004016109b390612d3b565b610f0f826701118f178fb48000612cdb565b341015610f535760405162461bcd60e51b8152602060048201526012602482015271496e73756666696369656e742066756e647360701b60448201526064016109b3565b600c5460ff16158015610f6e5750600c54610100900460ff16155b610fba5760405162461bcd60e51b815260206004820152601960248201527f5075626c69632073616c65206973206e6f74206163746976650000000000000060448201526064016109b3565b333b1561101a5760405162461bcd60e51b815260206004820152602860248201527f436f6e747261637420746f20636f6e7472616374206d696e74696e67206e6f7460448201526708185b1b1bddd95960c21b60648201526084016109b3565b3332146110695760405162461bcd60e51b815260206004820152601c60248201527f53656e646572206d757374206265206f726967696e2077616c6c65740000000060448201526064016109b3565b60078311156110ba5760405162461bcd60e51b815260206004820181905260248201527f4d696e7420616d742067726561746572207468616e206d61782070657220747860448201526064016109b3565b33600090815260106020526040902054600e6110d68583612cc3565b11156111655760405162461bcd60e51b815260206004820152605260248201527f546f74616c206d696e74732061667465722074782065786365656473206d617860448201527f206d696e747320666f72207468697320616464726573732e204d6178203134206064820152713832b910383ab13634b1903bb0b63632ba1760711b608482015260a4016109b3565b3360009081526010602052604081208054869290611184908490612cc3565b9091555061119490503385612036565b50505050565b60006111a58361146f565b82106111c35760405162461bcd60e51b81526004016109b390612dc3565b6000805b60025481101561123057600281815481106111e4576111e4612df3565b6000918252602090912001546001600160a01b038681169116141561122057838214156112145791506109839050565b61121d82612e09565b91505b61122981612e09565b90506111c7565b5060405162461bcd60e51b81526004016109b390612dc3565b610c01838383604051806020016040528060008152506117cd565b606060006112718361146f565b905060008167ffffffffffffffff81111561128e5761128e612a06565b6040519080825280602002602001820160405280156112b7578160200160208202803683370190505b509050600160005b83811080156112d057506117668211155b1561133b5760006112e0836113e3565b9050866001600160a01b0316816001600160a01b03161415611328578284838151811061130f5761130f612df3565b60209081029190910101528161132481612e09565b9250505b8261133281612e09565b935050506112bf565b5090949350505050565b600061135060025490565b821061139e5760405162461bcd60e51b815260206004820152601760248201527f455243373231456e756d3a20676c6f62616c20696f6f6200000000000000000060448201526064016109b3565b5090565b6005546001600160a01b031633146113cc5760405162461bcd60e51b81526004016109b390612c3d565b80516113df90600d90602084019061277c565b5050565b600080600283815481106113f9576113f9612df3565b6000918252602090912001546001600160a01b03169050806109835760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016109b3565b60006001600160a01b0382166114da5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016109b3565b600254600090815b8181101561153857600281815481106114fd576114fd612df3565b6000918252602090912001546001600160a01b03868116911614156115285761152583612e09565b92505b61153181612e09565b90506114e2565b50909392505050565b6005546001600160a01b0316331461156b5760405162461bcd60e51b81526004016109b390612c3d565b61157560006122ae565b565b6005546001600160a01b031633146115a15760405162461bcd60e51b81526004016109b390612c3d565b600b55565b60606115b18261146f565b6000106115d05760405162461bcd60e51b81526004016109b390612dc3565b60006115db8361146f565b905060008167ffffffffffffffff8111156115f8576115f8612a06565b604051908082528060200260200182016040528015611621578160200160208202803683370190505b50905060005b8281101561166857611639858261119a565b82828151811061164b5761164b612df3565b60209081029190910101528061166081612e09565b915050611627565b509392505050565b6000600a828154811061168557611685612df3565b6000918252602090912001546001600160a01b031692915050565b604051806060016040528060408152602001612f246040913981565b6060600180546109e590612c72565b6001600160a01b0382163314156117245760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016109b3565b3360008181526004602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6005546001600160a01b031633146117ba5760405162461bcd60e51b81526004016109b390612c3d565b600c805462ff0000191662010000179055565b6117d7338361206e565b6117f35760405162461bcd60e51b81526004016109b390612d72565b61119484848484612300565b606061180a82611e65565b6118665760405162461bcd60e51b815260206004820152602760248201527f4552433732314d657461646174613a20546f6b656e494420646f6573206e6f746044820152661032bc34b9ba1760c91b60648201526084016109b3565b600c5462010000900460ff1661190857600e805461188390612c72565b80601f01602080910402602001604051908101604052809291908181526020018280546118af90612c72565b80156118fc5780601f106118d1576101008083540402835291602001916118fc565b820191906000526020600020905b8154815290600101906020018083116118df57829003601f168201915b50505050509050919050565b6000611912612333565b90506000815111611932576040518060200160405280600081525061195d565b8061193c84612342565b60405160200161194d929190612e24565b6040516020818303038152906040525b9392505050565b82600061197060025490565b9050600082116119c25760405162461bcd60e51b815260206004820152601f60248201527f4d696e7420616d74206d7573742062652067726561746572207468616e20300060448201526064016109b3565b6117036119cf8383612cc3565b11156119ed5760405162461bcd60e51b81526004016109b390612d3b565b6119ff826701118f178fb48000612cdb565b341015611a435760405162461bcd60e51b8152602060048201526012602482015271496e73756666696369656e742066756e647360701b60448201526064016109b3565b600c5460ff168015611a5d5750600c54610100900460ff16155b611aa95760405162461bcd60e51b815260206004820152601f60248201527f50726573616c652069732063757272656e746c79206e6f74206163746976650060448201526064016109b3565b604080513360601b6bffffffffffffffffffffffff19166020808301919091528251601481840301815260349092019092528051910120611b1d9085858080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525061244092505050565b611b595760405162461bcd60e51b815260206004820152600d60248201526c24b73b30b634b210383937b7b360991b60448201526064016109b3565b336000908152600f60205260409020546002611b758783612cc3565b1115611bff5760405162461bcd60e51b815260206004820152604d60248201527f546f74616c206d696e74732061667465722074782065786365656473206d617860448201527f206d696e747320666f72207468697320616464726573732e204d61782032207060648201526c32b9102ba6103bb0b63632ba1760991b608482015260a4016109b3565b336000908152600f602052604081208054889290611c1e908490612cc3565b90915550611c2e90503387612036565b505050505050565b6005546001600160a01b03163314611c605760405162461bcd60e51b81526004016109b390612c3d565b600c805460ff1916911515919091179055565b6005546001600160a01b03163314611c9d5760405162461bcd60e51b81526004016109b390612c3d565b611cb261066e6005546001600160a01b031690565b15611cff5760405162461bcd60e51b815260206004820152601c60248201527f4f776e65722062616c616e63652067726561746572207468616e20300000000060448201526064016109b3565b6000611d0a60025490565b905060005b6006811015610c0157611d2b83611d268385612cc3565b61244f565b80611d3581612e09565b915050611d0f565b6005546001600160a01b03163314611d675760405162461bcd60e51b81526004016109b390612c3d565b80516113df90600e90602084019061277c565b6005546001600160a01b03163314611da45760405162461bcd60e51b81526004016109b390612c3d565b6001600160a01b038116611e095760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016109b3565b611e12816122ae565b50565b60006001600160e01b031982166380ac58cd60e01b1480611e4657506001600160e01b03198216635b5e139f60e01b145b8061098357506301ffc9a760e01b6001600160e01b0319831614610983565b60025460009082108015610983575060006001600160a01b031660028381548110611e9257611e92612df3565b6000918252602090912001546001600160a01b0316141592915050565b600081815260036020526040902080546001600160a01b0319166001600160a01b0384169081179091558190611ee4826113e3565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b80471015611f6d5760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a20696e73756666696369656e742062616c616e636500000060448201526064016109b3565b6000826001600160a01b03168260405160006040518083038185875af1925050503d8060008114611fba576040519150601f19603f3d011682016040523d82523d6000602084013e611fbf565b606091505b5050905080610c015760405162461bcd60e51b815260206004820152603a60248201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260448201527f6563697069656e74206d6179206861766520726576657274656400000000000060648201526084016109b3565b600061204160025490565b905060005b828110156111945761205c84611d268385612cc3565b8061206681612e09565b915050612046565b600061207982611e65565b6120da5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016109b3565b60006120e5836113e3565b9050806001600160a01b0316846001600160a01b031614806121205750836001600160a01b031661211584610a68565b6001600160a01b0316145b8061215057506001600160a01b0380821660009081526004602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b031661216b826113e3565b6001600160a01b0316146121d35760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b60648201526084016109b3565b6001600160a01b0382166122355760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016109b3565b612240600082611eaf565b816002828154811061225457612254612df3565b6000918252602082200180546001600160a01b0319166001600160a01b03938416179055604051839285811692908716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9190a4505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b61230b848484612158565b61231784848484612469565b6111945760405162461bcd60e51b81526004016109b390612e63565b6060600d80546109e590612c72565b6060816123665750506040805180820190915260018152600360fc1b602082015290565b8160005b8115612390578061237a81612e09565b91506123899050600a83612d10565b915061236a565b60008167ffffffffffffffff8111156123ab576123ab612a06565b6040519080825280601f01601f1916602001820160405280156123d5576020820181803683370190505b5090505b8415612150576123ea600183612d24565b91506123f7600a86612eb5565b612402906030612cc3565b60f81b81838151811061241757612417612df3565b60200101906001600160f81b031916908160001a905350612439600a86612d10565b94506123d9565b600061195d82600b5485612567565b6113df82826040518060200160405280600081525061257d565b60006001600160a01b0384163b1561255c57604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906124ad903390899088908890600401612ec9565b6020604051808303816000875af19250505080156124e8575060408051601f3d908101601f191682019092526124e591810190612f06565b60015b612542573d808015612516576040519150601f19603f3d011682016040523d82523d6000602084013e61251b565b606091505b50805161253a5760405162461bcd60e51b81526004016109b390612e63565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050612150565b506001949350505050565b60008261257485846125b0565b14949350505050565b6125878383612654565b6125946000848484612469565b610c015760405162461bcd60e51b81526004016109b390612e63565b600081815b84518110156116685760008582815181106125d2576125d2612df3565b60200260200101519050808311612614576040805160208101859052908101829052606001604051602081830303815290604052805190602001209250612641565b60408051602081018390529081018490526060016040516020818303038152906040528051906020012092505b508061264c81612e09565b9150506125b5565b6001600160a01b0382166126aa5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016109b3565b6126b381611e65565b156127005760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016109b3565b6002805460018101825560009182527f405787fa12a823e0f2b7631cc41b3ba8828b3321ca811111fa75cd3aa3bb5ace0180546001600160a01b0319166001600160a01b0385169081179091556040518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b82805461278890612c72565b90600052602060002090601f0160209004810192826127aa57600085556127f0565b82601f106127c357805160ff19168380011785556127f0565b828001600101855582156127f0579182015b828111156127f05782518255916020019190600101906127d5565b5061139e9291505b8082111561139e57600081556001016127f8565b6001600160e01b031981168114611e1257600080fd5b60006020828403121561283457600080fd5b813561195d8161280c565b8035801515811461284f57600080fd5b919050565b60006020828403121561286657600080fd5b61195d8261283f565b60005b8381101561288a578181015183820152602001612872565b838111156111945750506000910152565b600081518084526128b381602086016020860161286f565b601f01601f19169290920160200192915050565b60208152600061195d602083018461289b565b6000602082840312156128ec57600080fd5b5035919050565b6001600160a01b0381168114611e1257600080fd5b6000806040838503121561291b57600080fd5b8235612926816128f3565b946020939093013593505050565b60006020828403121561294657600080fd5b813561195d816128f3565b6000806040838503121561296457600080fd5b823591506020830135612976816128f3565b809150509250929050565b60008060006060848603121561299657600080fd5b83356129a1816128f3565b925060208401356129b1816128f3565b929592945050506040919091013590565b6020808252825182820181905260009190848201906040850190845b818110156129fa578351835292840192918401916001016129de565b50909695505050505050565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff80841115612a3757612a37612a06565b604051601f8501601f19908116603f01168101908282118183101715612a5f57612a5f612a06565b81604052809350858152868686011115612a7857600080fd5b858560208301376000602087830101525050509392505050565b600060208284031215612aa457600080fd5b813567ffffffffffffffff811115612abb57600080fd5b8201601f81018413612acc57600080fd5b61215084823560208401612a1c565b60008060408385031215612aee57600080fd5b8235612af9816128f3565b9150612b076020840161283f565b90509250929050565b60008060008060808587031215612b2657600080fd5b8435612b31816128f3565b93506020850135612b41816128f3565b925060408501359150606085013567ffffffffffffffff811115612b6457600080fd5b8501601f81018713612b7557600080fd5b612b8487823560208401612a1c565b91505092959194509250565b600080600060408486031215612ba557600080fd5b83359250602084013567ffffffffffffffff80821115612bc457600080fd5b818601915086601f830112612bd857600080fd5b813581811115612be757600080fd5b8760208260051b8501011115612bfc57600080fd5b6020830194508093505050509250925092565b60008060408385031215612c2257600080fd5b8235612c2d816128f3565b91506020830135612976816128f3565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600181811c90821680612c8657607f821691505b60208210811415612ca757634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b60008219821115612cd657612cd6612cad565b500190565b6000816000190483118215151615612cf557612cf5612cad565b500290565b634e487b7160e01b600052601260045260246000fd5b600082612d1f57612d1f612cfa565b500490565b600082821015612d3657612d36612cad565b500390565b6020808252601b908201527f4d696e7420616d742065786365656473206d617820737570706c790000000000604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b60208082526016908201527522a9219b9918a2b73ab69d1037bbb732b91034b7b7b160511b604082015260600190565b634e487b7160e01b600052603260045260246000fd5b6000600019821415612e1d57612e1d612cad565b5060010190565b60008351612e3681846020880161286f565b835190830190612e4a81836020880161286f565b64173539b7b760d91b9101908152600501949350505050565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b600082612ec457612ec4612cfa565b500690565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612efc9083018461289b565b9695505050505050565b600060208284031215612f1857600080fd5b815161195d8161280c56fe66343237613564313866383866333231643736373561623564343662323637613837613137643030346365313137343362353738303034663365623037396363a26469706673582212203591bf86525670ef32daa349ea73ca36905f447cd13d53e2c6b25f7a0512e7d364736f6c634300080a00334f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000c07050d1ec1fe73daf6c7d774809924906d672a608f13e8462bc531c8db547c8c00000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d526b4273416f6834514b324d59463946666747326e33797951436d6f316e5774527332514c6d375a573250742f00000000000000000000000000000000000000000000000000000000000000000000000000000000004a697066733a2f2f516d51324c70615a34675050324c676b33593968506b6658356d774c577355346d5968385a4c4e44456a616155422f68696464656e2d6d657461646174612e6a736f6e00000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106102cd5760003560e01c806370a0823111610175578063a70f1fbe116100dc578063ddb35a6911610095578063e985e9c51161006f578063e985e9c5146108bf578063ea5c3a2d14610908578063f2c4ce1e1461091e578063f2fde38b1461093e57600080fd5b8063ddb35a691461086a578063e2f733e81461088a578063e33b7de3146108aa57600080fd5b8063a70f1fbe146107b0578063b88d4fde146107c5578063bf8fbbd2146107e5578063c87b56dd14610801578063ce7c2ac214610821578063d2cab0561461085757600080fd5b80638da5cb5b1161012e5780638da5cb5b146106fd57806395d89b411461071b5780639852595c146107305780639f55252e14610766578063a22cb4651461077b578063a475b5dd1461079b57600080fd5b806370a0823114610653578063715018a6146106735780637cb64759146106885780638462151c146106a85780638b83209b146106c85780638cbcd537146106e857600080fd5b806332cb6b0c116102345780634f6ccce7116101ed57806355f804b3116101c757806355f804b3146105c75780635c975abb146105e75780636209ff89146106065780636352211e1461063357600080fd5b80634f6ccce71461057257806350f6d1501461059257806351830227146105a757600080fd5b806332cb6b0c146104b8578063330a3768146104ce5780633a98ef39146104fb57806342842e0e14610510578063438b6300146105305780634e26d1af1461055d57600080fd5b806318160ddd1161028657806318160ddd1461040657806319165587146104255780631df656b01461044557806323b872dd146104655780632db11544146104855780632f745c591461049857600080fd5b806301ffc9a71461031b57806302329a291461035057806303d7630c1461037257806306fdde031461038c578063081812fc146103ae578063095ea7b3146103e657600080fd5b36610316577f6ef95f06320e7a25a04a175ca677b7052bdd97131872c2192525a629f51be77033604080516001600160a01b0390921682523460208301520160405180910390a1005b600080fd5b34801561032757600080fd5b5061033b610336366004612822565b61095e565b60405190151581526020015b60405180910390f35b34801561035c57600080fd5b5061037061036b366004612854565b610989565b005b34801561037e57600080fd5b50600c5461033b9060ff1681565b34801561039857600080fd5b506103a16109d6565b60405161034791906128c7565b3480156103ba57600080fd5b506103ce6103c93660046128da565b610a68565b6040516001600160a01b039091168152602001610347565b3480156103f257600080fd5b50610370610401366004612908565b610af0565b34801561041257600080fd5b506002545b604051908152602001610347565b34801561043157600080fd5b50610370610440366004612934565b610c06565b34801561045157600080fd5b50610370610460366004612951565b610dd7565b34801561047157600080fd5b50610370610480366004612981565b610e43565b6103706104933660046128da565b610e74565b3480156104a457600080fd5b506104176104b3366004612908565b61119a565b3480156104c457600080fd5b5061041761176681565b3480156104da57600080fd5b506104176104e9366004612934565b60106020526000908152604090205481565b34801561050757600080fd5b50600654610417565b34801561051c57600080fd5b5061037061052b366004612981565b611249565b34801561053c57600080fd5b5061055061054b366004612934565b611264565b60405161034791906129c2565b34801561056957600080fd5b50610417600e81565b34801561057e57600080fd5b5061041761058d3660046128da565b611345565b34801561059e57600080fd5b50610417600681565b3480156105b357600080fd5b50600c5461033b9062010000900460ff1681565b3480156105d357600080fd5b506103706105e2366004612a92565b6113a2565b3480156105f357600080fd5b50600c5461033b90610100900460ff1681565b34801561061257600080fd5b50610417610621366004612934565b600f6020526000908152604090205481565b34801561063f57600080fd5b506103ce61064e3660046128da565b6113e3565b34801561065f57600080fd5b5061041761066e366004612934565b61146f565b34801561067f57600080fd5b50610370611541565b34801561069457600080fd5b506103706106a33660046128da565b611577565b3480156106b457600080fd5b506105506106c3366004612934565b6115a6565b3480156106d457600080fd5b506103ce6106e33660046128da565b611670565b3480156106f457600080fd5b506103a16116a0565b34801561070957600080fd5b506005546001600160a01b03166103ce565b34801561072757600080fd5b506103a16116bc565b34801561073c57600080fd5b5061041761074b366004612934565b6001600160a01b031660009081526009602052604090205490565b34801561077257600080fd5b50610417600781565b34801561078757600080fd5b50610370610796366004612adb565b6116cb565b3480156107a757600080fd5b50610370611790565b3480156107bc57600080fd5b50610417600281565b3480156107d157600080fd5b506103706107e0366004612b10565b6117cd565b3480156107f157600080fd5b506104176701118f178fb4800081565b34801561080d57600080fd5b506103a161081c3660046128da565b6117ff565b34801561082d57600080fd5b5061041761083c366004612934565b6001600160a01b031660009081526008602052604090205490565b610370610865366004612b90565b611964565b34801561087657600080fd5b50610370610885366004612854565b611c36565b34801561089657600080fd5b506103706108a5366004612934565b611c73565b3480156108b657600080fd5b50600754610417565b3480156108cb57600080fd5b5061033b6108da366004612c0f565b6001600160a01b03918216600090815260046020908152604080832093909416825291909152205460ff1690565b34801561091457600080fd5b5061041761170381565b34801561092a57600080fd5b50610370610939366004612a92565b611d3d565b34801561094a57600080fd5b50610370610959366004612934565b611d7a565b60006001600160e01b0319821663780e9d6360e01b1480610983575061098382611e15565b92915050565b6005546001600160a01b031633146109bc5760405162461bcd60e51b81526004016109b390612c3d565b60405180910390fd5b600c80549115156101000261ff0019909216919091179055565b6060600080546109e590612c72565b80601f0160208091040260200160405190810160405280929190818152602001828054610a1190612c72565b8015610a5e5780601f10610a3357610100808354040283529160200191610a5e565b820191906000526020600020905b815481529060010190602001808311610a4157829003601f168201915b5050505050905090565b6000610a7382611e65565b610ad45760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016109b3565b506000908152600360205260409020546001600160a01b031690565b6000610afb826113e3565b9050806001600160a01b0316836001600160a01b03161415610b695760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016109b3565b336001600160a01b0382161480610b855750610b8581336108da565b610bf75760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016109b3565b610c018383611eaf565b505050565b6001600160a01b038116600090815260086020526040902054610c7a5760405162461bcd60e51b815260206004820152602660248201527f5061796d656e7453706c69747465723a206163636f756e7420686173206e6f2060448201526573686172657360d01b60648201526084016109b3565b600060075447610c8a9190612cc3565b6001600160a01b0383166000908152600960209081526040808320546006546008909352908320549394509192610cc19085612cdb565b610ccb9190612d10565b610cd59190612d24565b905080610d385760405162461bcd60e51b815260206004820152602b60248201527f5061796d656e7453706c69747465723a206163636f756e74206973206e6f742060448201526a191d59481c185e5b595b9d60aa1b60648201526084016109b3565b6001600160a01b038316600090815260096020526040902054610d5c908290612cc3565b6001600160a01b038416600090815260096020526040902055600754610d83908290612cc3565b600755610d908382611f1d565b604080516001600160a01b0385168152602081018390527fdf20fd1e76bc69d672e4814fafb2c449bba3a5369d8359adf9e05e6fde87b056910160405180910390a1505050565b6005546001600160a01b03163314610e015760405162461bcd60e51b81526004016109b390612c3d565b6000610e0c60025490565b9050611766610e1b8483612cc3565b1115610e395760405162461bcd60e51b81526004016109b390612d3b565b610c018284612036565b610e4d338261206e565b610e695760405162461bcd60e51b81526004016109b390612d72565b610c01838383612158565b806000610e8060025490565b905060008211610ed25760405162461bcd60e51b815260206004820152601f60248201527f4d696e7420616d74206d7573742062652067726561746572207468616e20300060448201526064016109b3565b611703610edf8383612cc3565b1115610efd5760405162461bcd60e51b81526004016109b390612d3b565b610f0f826701118f178fb48000612cdb565b341015610f535760405162461bcd60e51b8152602060048201526012602482015271496e73756666696369656e742066756e647360701b60448201526064016109b3565b600c5460ff16158015610f6e5750600c54610100900460ff16155b610fba5760405162461bcd60e51b815260206004820152601960248201527f5075626c69632073616c65206973206e6f74206163746976650000000000000060448201526064016109b3565b333b1561101a5760405162461bcd60e51b815260206004820152602860248201527f436f6e747261637420746f20636f6e7472616374206d696e74696e67206e6f7460448201526708185b1b1bddd95960c21b60648201526084016109b3565b3332146110695760405162461bcd60e51b815260206004820152601c60248201527f53656e646572206d757374206265206f726967696e2077616c6c65740000000060448201526064016109b3565b60078311156110ba5760405162461bcd60e51b815260206004820181905260248201527f4d696e7420616d742067726561746572207468616e206d61782070657220747860448201526064016109b3565b33600090815260106020526040902054600e6110d68583612cc3565b11156111655760405162461bcd60e51b815260206004820152605260248201527f546f74616c206d696e74732061667465722074782065786365656473206d617860448201527f206d696e747320666f72207468697320616464726573732e204d6178203134206064820152713832b910383ab13634b1903bb0b63632ba1760711b608482015260a4016109b3565b3360009081526010602052604081208054869290611184908490612cc3565b9091555061119490503385612036565b50505050565b60006111a58361146f565b82106111c35760405162461bcd60e51b81526004016109b390612dc3565b6000805b60025481101561123057600281815481106111e4576111e4612df3565b6000918252602090912001546001600160a01b038681169116141561122057838214156112145791506109839050565b61121d82612e09565b91505b61122981612e09565b90506111c7565b5060405162461bcd60e51b81526004016109b390612dc3565b610c01838383604051806020016040528060008152506117cd565b606060006112718361146f565b905060008167ffffffffffffffff81111561128e5761128e612a06565b6040519080825280602002602001820160405280156112b7578160200160208202803683370190505b509050600160005b83811080156112d057506117668211155b1561133b5760006112e0836113e3565b9050866001600160a01b0316816001600160a01b03161415611328578284838151811061130f5761130f612df3565b60209081029190910101528161132481612e09565b9250505b8261133281612e09565b935050506112bf565b5090949350505050565b600061135060025490565b821061139e5760405162461bcd60e51b815260206004820152601760248201527f455243373231456e756d3a20676c6f62616c20696f6f6200000000000000000060448201526064016109b3565b5090565b6005546001600160a01b031633146113cc5760405162461bcd60e51b81526004016109b390612c3d565b80516113df90600d90602084019061277c565b5050565b600080600283815481106113f9576113f9612df3565b6000918252602090912001546001600160a01b03169050806109835760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016109b3565b60006001600160a01b0382166114da5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016109b3565b600254600090815b8181101561153857600281815481106114fd576114fd612df3565b6000918252602090912001546001600160a01b03868116911614156115285761152583612e09565b92505b61153181612e09565b90506114e2565b50909392505050565b6005546001600160a01b0316331461156b5760405162461bcd60e51b81526004016109b390612c3d565b61157560006122ae565b565b6005546001600160a01b031633146115a15760405162461bcd60e51b81526004016109b390612c3d565b600b55565b60606115b18261146f565b6000106115d05760405162461bcd60e51b81526004016109b390612dc3565b60006115db8361146f565b905060008167ffffffffffffffff8111156115f8576115f8612a06565b604051908082528060200260200182016040528015611621578160200160208202803683370190505b50905060005b8281101561166857611639858261119a565b82828151811061164b5761164b612df3565b60209081029190910101528061166081612e09565b915050611627565b509392505050565b6000600a828154811061168557611685612df3565b6000918252602090912001546001600160a01b031692915050565b604051806060016040528060408152602001612f246040913981565b6060600180546109e590612c72565b6001600160a01b0382163314156117245760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016109b3565b3360008181526004602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6005546001600160a01b031633146117ba5760405162461bcd60e51b81526004016109b390612c3d565b600c805462ff0000191662010000179055565b6117d7338361206e565b6117f35760405162461bcd60e51b81526004016109b390612d72565b61119484848484612300565b606061180a82611e65565b6118665760405162461bcd60e51b815260206004820152602760248201527f4552433732314d657461646174613a20546f6b656e494420646f6573206e6f746044820152661032bc34b9ba1760c91b60648201526084016109b3565b600c5462010000900460ff1661190857600e805461188390612c72565b80601f01602080910402602001604051908101604052809291908181526020018280546118af90612c72565b80156118fc5780601f106118d1576101008083540402835291602001916118fc565b820191906000526020600020905b8154815290600101906020018083116118df57829003601f168201915b50505050509050919050565b6000611912612333565b90506000815111611932576040518060200160405280600081525061195d565b8061193c84612342565b60405160200161194d929190612e24565b6040516020818303038152906040525b9392505050565b82600061197060025490565b9050600082116119c25760405162461bcd60e51b815260206004820152601f60248201527f4d696e7420616d74206d7573742062652067726561746572207468616e20300060448201526064016109b3565b6117036119cf8383612cc3565b11156119ed5760405162461bcd60e51b81526004016109b390612d3b565b6119ff826701118f178fb48000612cdb565b341015611a435760405162461bcd60e51b8152602060048201526012602482015271496e73756666696369656e742066756e647360701b60448201526064016109b3565b600c5460ff168015611a5d5750600c54610100900460ff16155b611aa95760405162461bcd60e51b815260206004820152601f60248201527f50726573616c652069732063757272656e746c79206e6f74206163746976650060448201526064016109b3565b604080513360601b6bffffffffffffffffffffffff19166020808301919091528251601481840301815260349092019092528051910120611b1d9085858080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525061244092505050565b611b595760405162461bcd60e51b815260206004820152600d60248201526c24b73b30b634b210383937b7b360991b60448201526064016109b3565b336000908152600f60205260409020546002611b758783612cc3565b1115611bff5760405162461bcd60e51b815260206004820152604d60248201527f546f74616c206d696e74732061667465722074782065786365656473206d617860448201527f206d696e747320666f72207468697320616464726573732e204d61782032207060648201526c32b9102ba6103bb0b63632ba1760991b608482015260a4016109b3565b336000908152600f602052604081208054889290611c1e908490612cc3565b90915550611c2e90503387612036565b505050505050565b6005546001600160a01b03163314611c605760405162461bcd60e51b81526004016109b390612c3d565b600c805460ff1916911515919091179055565b6005546001600160a01b03163314611c9d5760405162461bcd60e51b81526004016109b390612c3d565b611cb261066e6005546001600160a01b031690565b15611cff5760405162461bcd60e51b815260206004820152601c60248201527f4f776e65722062616c616e63652067726561746572207468616e20300000000060448201526064016109b3565b6000611d0a60025490565b905060005b6006811015610c0157611d2b83611d268385612cc3565b61244f565b80611d3581612e09565b915050611d0f565b6005546001600160a01b03163314611d675760405162461bcd60e51b81526004016109b390612c3d565b80516113df90600e90602084019061277c565b6005546001600160a01b03163314611da45760405162461bcd60e51b81526004016109b390612c3d565b6001600160a01b038116611e095760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016109b3565b611e12816122ae565b50565b60006001600160e01b031982166380ac58cd60e01b1480611e4657506001600160e01b03198216635b5e139f60e01b145b8061098357506301ffc9a760e01b6001600160e01b0319831614610983565b60025460009082108015610983575060006001600160a01b031660028381548110611e9257611e92612df3565b6000918252602090912001546001600160a01b0316141592915050565b600081815260036020526040902080546001600160a01b0319166001600160a01b0384169081179091558190611ee4826113e3565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b80471015611f6d5760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a20696e73756666696369656e742062616c616e636500000060448201526064016109b3565b6000826001600160a01b03168260405160006040518083038185875af1925050503d8060008114611fba576040519150601f19603f3d011682016040523d82523d6000602084013e611fbf565b606091505b5050905080610c015760405162461bcd60e51b815260206004820152603a60248201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260448201527f6563697069656e74206d6179206861766520726576657274656400000000000060648201526084016109b3565b600061204160025490565b905060005b828110156111945761205c84611d268385612cc3565b8061206681612e09565b915050612046565b600061207982611e65565b6120da5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016109b3565b60006120e5836113e3565b9050806001600160a01b0316846001600160a01b031614806121205750836001600160a01b031661211584610a68565b6001600160a01b0316145b8061215057506001600160a01b0380821660009081526004602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b031661216b826113e3565b6001600160a01b0316146121d35760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b60648201526084016109b3565b6001600160a01b0382166122355760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016109b3565b612240600082611eaf565b816002828154811061225457612254612df3565b6000918252602082200180546001600160a01b0319166001600160a01b03938416179055604051839285811692908716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9190a4505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b61230b848484612158565b61231784848484612469565b6111945760405162461bcd60e51b81526004016109b390612e63565b6060600d80546109e590612c72565b6060816123665750506040805180820190915260018152600360fc1b602082015290565b8160005b8115612390578061237a81612e09565b91506123899050600a83612d10565b915061236a565b60008167ffffffffffffffff8111156123ab576123ab612a06565b6040519080825280601f01601f1916602001820160405280156123d5576020820181803683370190505b5090505b8415612150576123ea600183612d24565b91506123f7600a86612eb5565b612402906030612cc3565b60f81b81838151811061241757612417612df3565b60200101906001600160f81b031916908160001a905350612439600a86612d10565b94506123d9565b600061195d82600b5485612567565b6113df82826040518060200160405280600081525061257d565b60006001600160a01b0384163b1561255c57604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906124ad903390899088908890600401612ec9565b6020604051808303816000875af19250505080156124e8575060408051601f3d908101601f191682019092526124e591810190612f06565b60015b612542573d808015612516576040519150601f19603f3d011682016040523d82523d6000602084013e61251b565b606091505b50805161253a5760405162461bcd60e51b81526004016109b390612e63565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050612150565b506001949350505050565b60008261257485846125b0565b14949350505050565b6125878383612654565b6125946000848484612469565b610c015760405162461bcd60e51b81526004016109b390612e63565b600081815b84518110156116685760008582815181106125d2576125d2612df3565b60200260200101519050808311612614576040805160208101859052908101829052606001604051602081830303815290604052805190602001209250612641565b60408051602081018390529081018490526060016040516020818303038152906040528051906020012092505b508061264c81612e09565b9150506125b5565b6001600160a01b0382166126aa5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016109b3565b6126b381611e65565b156127005760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016109b3565b6002805460018101825560009182527f405787fa12a823e0f2b7631cc41b3ba8828b3321ca811111fa75cd3aa3bb5ace0180546001600160a01b0319166001600160a01b0385169081179091556040518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b82805461278890612c72565b90600052602060002090601f0160209004810192826127aa57600085556127f0565b82601f106127c357805160ff19168380011785556127f0565b828001600101855582156127f0579182015b828111156127f05782518255916020019190600101906127d5565b5061139e9291505b8082111561139e57600081556001016127f8565b6001600160e01b031981168114611e1257600080fd5b60006020828403121561283457600080fd5b813561195d8161280c565b8035801515811461284f57600080fd5b919050565b60006020828403121561286657600080fd5b61195d8261283f565b60005b8381101561288a578181015183820152602001612872565b838111156111945750506000910152565b600081518084526128b381602086016020860161286f565b601f01601f19169290920160200192915050565b60208152600061195d602083018461289b565b6000602082840312156128ec57600080fd5b5035919050565b6001600160a01b0381168114611e1257600080fd5b6000806040838503121561291b57600080fd5b8235612926816128f3565b946020939093013593505050565b60006020828403121561294657600080fd5b813561195d816128f3565b6000806040838503121561296457600080fd5b823591506020830135612976816128f3565b809150509250929050565b60008060006060848603121561299657600080fd5b83356129a1816128f3565b925060208401356129b1816128f3565b929592945050506040919091013590565b6020808252825182820181905260009190848201906040850190845b818110156129fa578351835292840192918401916001016129de565b50909695505050505050565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff80841115612a3757612a37612a06565b604051601f8501601f19908116603f01168101908282118183101715612a5f57612a5f612a06565b81604052809350858152868686011115612a7857600080fd5b858560208301376000602087830101525050509392505050565b600060208284031215612aa457600080fd5b813567ffffffffffffffff811115612abb57600080fd5b8201601f81018413612acc57600080fd5b61215084823560208401612a1c565b60008060408385031215612aee57600080fd5b8235612af9816128f3565b9150612b076020840161283f565b90509250929050565b60008060008060808587031215612b2657600080fd5b8435612b31816128f3565b93506020850135612b41816128f3565b925060408501359150606085013567ffffffffffffffff811115612b6457600080fd5b8501601f81018713612b7557600080fd5b612b8487823560208401612a1c565b91505092959194509250565b600080600060408486031215612ba557600080fd5b83359250602084013567ffffffffffffffff80821115612bc457600080fd5b818601915086601f830112612bd857600080fd5b813581811115612be757600080fd5b8760208260051b8501011115612bfc57600080fd5b6020830194508093505050509250925092565b60008060408385031215612c2257600080fd5b8235612c2d816128f3565b91506020830135612976816128f3565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600181811c90821680612c8657607f821691505b60208210811415612ca757634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b60008219821115612cd657612cd6612cad565b500190565b6000816000190483118215151615612cf557612cf5612cad565b500290565b634e487b7160e01b600052601260045260246000fd5b600082612d1f57612d1f612cfa565b500490565b600082821015612d3657612d36612cad565b500390565b6020808252601b908201527f4d696e7420616d742065786365656473206d617820737570706c790000000000604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b60208082526016908201527522a9219b9918a2b73ab69d1037bbb732b91034b7b7b160511b604082015260600190565b634e487b7160e01b600052603260045260246000fd5b6000600019821415612e1d57612e1d612cad565b5060010190565b60008351612e3681846020880161286f565b835190830190612e4a81836020880161286f565b64173539b7b760d91b9101908152600501949350505050565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b600082612ec457612ec4612cfa565b500690565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612efc9083018461289b565b9695505050505050565b600060208284031215612f1857600080fd5b815161195d8161280c56fe66343237613564313866383866333231643736373561623564343662323637613837613137643030346365313137343362353738303034663365623037396363a26469706673582212203591bf86525670ef32daa349ea73ca36905f447cd13d53e2c6b25f7a0512e7d364736f6c634300080a0033

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

000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000c07050d1ec1fe73daf6c7d774809924906d672a608f13e8462bc531c8db547c8c00000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d526b4273416f6834514b324d59463946666747326e33797951436d6f316e5774527332514c6d375a573250742f00000000000000000000000000000000000000000000000000000000000000000000000000000000004a697066733a2f2f516d51324c70615a34675050324c676b33593968506b6658356d774c577355346d5968385a4c4e44456a616155422f68696464656e2d6d657461646174612e6a736f6e00000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _initBaseURI (string): ipfs://QmRkBsAoh4QK2MYF9FfgG2n3yyQCmo1nWtRs2QLm7ZW2Pt/
Arg [1] : _unRevealedURI (string): ipfs://QmQ2LpaZ4gPP2Lgk3Y9hPkfX5mwLWsU4mYh8ZLNDEjaaUB/hidden-metadata.json
Arg [2] : _merkleRoot (bytes32): 0x7050d1ec1fe73daf6c7d774809924906d672a608f13e8462bc531c8db547c8c0

-----Encoded View---------------
10 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [2] : 7050d1ec1fe73daf6c7d774809924906d672a608f13e8462bc531c8db547c8c0
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000036
Arg [4] : 697066733a2f2f516d526b4273416f6834514b324d59463946666747326e3379
Arg [5] : 7951436d6f316e5774527332514c6d375a573250742f00000000000000000000
Arg [6] : 000000000000000000000000000000000000000000000000000000000000004a
Arg [7] : 697066733a2f2f516d51324c70615a34675050324c676b33593968506b665835
Arg [8] : 6d774c577355346d5968385a4c4e44456a616155422f68696464656e2d6d6574
Arg [9] : 61646174612e6a736f6e00000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

40395:6792:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25100:40;734:10;25100:40;;;-1:-1:-1;;;;;206:32:1;;;188:51;;25130:9:0;270:2:1;255:18;;248:34;161:18;25100:40:0;;;;;;;40395:6792;;;;;18502:301;;;;;;;;;;-1:-1:-1;18502:301:0;;;;;:::i;:::-;;:::i;:::-;;;844:14:1;;837:22;819:41;;807:2;792:18;18502:301:0;;;;;;;;46818:79;;;;;;;;;;-1:-1:-1;46818:79:0;;;;;:::i;:::-;;:::i;:::-;;41052:36;;;;;;;;;;-1:-1:-1;41052:36:0;;;;;;;;12067:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;12707:308::-;;;;;;;;;;-1:-1:-1;12707:308:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;2321:32:1;;;2303:51;;2291:2;2276:18;12707:308:0;2157:203:1;12287:412:0;;;;;;;;;;-1:-1:-1;12287:412:0;;;;;:::i;:::-;;:::i;19781:110::-;;;;;;;;;;-1:-1:-1;19869:7:0;:14;19781:110;;;2967:25:1;;;2955:2;2940:18;19781:110:0;2821:177:1;26306:639:0;;;;;;;;;;-1:-1:-1;26306:639:0;;;;;:::i;:::-;;:::i;46306:258::-;;;;;;;;;;-1:-1:-1;46306:258:0;;;;;:::i;:::-;;:::i;13580:376::-;;;;;;;;;;-1:-1:-1;13580:376:0;;;;;:::i;:::-;;:::i;44011:783::-;;;;;;:::i;:::-;;:::i;18811:504::-;;;;;;;;;;-1:-1:-1;18811:504:0;;;;;:::i;:::-;;:::i;40653:41::-;;;;;;;;;;;;40690:4;40653:41;;41288:61;;;;;;;;;;-1:-1:-1;41288:61:0;;;;;:::i;:::-;;;;;;;;;;;;;;25231:91;;;;;;;;;;-1:-1:-1;25302:12:0;;25231:91;;13964:185;;;;;;;;;;-1:-1:-1;13964:185:0;;;;;:::i;:::-;;:::i;44802:680::-;;;;;;;;;;-1:-1:-1;44802:680:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;40859:50::-;;;;;;;;;;;;40907:2;40859:50;;19899:244;;;;;;;;;;-1:-1:-1;19899:244:0;;;;;:::i;:::-;;:::i;40916:47::-;;;;;;;;;;;;40962:1;40916:47;;41127:28;;;;;;;;;;-1:-1:-1;41127:28:0;;;;;;;;;;;46706:104;;;;;;;;;;-1:-1:-1;46706:104:0;;;;;:::i;:::-;;:::i;41095:25::-;;;;;;;;;;-1:-1:-1;41095:25:0;;;;;;;;;;;41217:64;;;;;;;;;;-1:-1:-1;41217:64:0;;;;;:::i;:::-;;;;;;;;;;;;;;11733:326;;;;;;;;;;-1:-1:-1;11733:326:0;;;;;:::i;:::-;;:::i;11207:518::-;;;;;;;;;;-1:-1:-1;11207:518:0;;;;;:::i;:::-;;:::i;21816:94::-;;;;;;;;;;;;;:::i;47092:92::-;;;;;;;;;;-1:-1:-1;47092:92:0;;;;;:::i;:::-;;:::i;19323:450::-;;;;;;;;;;-1:-1:-1;19323:450:0;;;;;:::i;:::-;;:::i;26006:100::-;;;;;;;;;;-1:-1:-1;26006:100:0;;;;;:::i;:::-;;:::i;40534:110::-;;;;;;;;;;;;;:::i;21165:87::-;;;;;;;;;;-1:-1:-1;21238:6:0;;-1:-1:-1;;;;;21238:6:0;21165:87;;12175:104;;;;;;;;;;;;;:::i;25806:109::-;;;;;;;;;;-1:-1:-1;25806:109:0;;;;;:::i;:::-;-1:-1:-1;;;;;25889:18:0;25862:7;25889:18;;;:9;:18;;;;;;;25806:109;40807:45;;;;;;;;;;;;40851:1;40807:45;;13023:327;;;;;;;;;;-1:-1:-1;13023:327:0;;;;;:::i;:::-;;:::i;46905:69::-;;;;;;;;;;;;;:::i;40756:44::-;;;;;;;;;;;;40799:1;40756:44;;14157:365;;;;;;;;;;-1:-1:-1;14157:365:0;;;;;:::i;:::-;;:::i;40970:42::-;;;;;;;;;;;;41001:11;40970:42;;45490:438;;;;;;;;;;-1:-1:-1;45490:438:0;;;;;:::i;:::-;;:::i;25602:105::-;;;;;;;;;;-1:-1:-1;25602:105:0;;;;;:::i;:::-;-1:-1:-1;;;;;25683:16:0;25656:7;25683:16;;;:7;:16;;;;;;;25602:105;43374:629;;;;;;:::i;:::-;;:::i;46982:102::-;;;;;;;;;;-1:-1:-1;46982:102:0;;;;;:::i;:::-;;:::i;45990:308::-;;;;;;;;;;-1:-1:-1;45990:308:0;;;;;:::i;:::-;;:::i;25416:95::-;;;;;;;;;;-1:-1:-1;25489:14:0;;25416:95;;13358:214;;;;;;;;;;-1:-1:-1;13358:214:0;;;;;:::i;:::-;-1:-1:-1;;;;;13529:25:0;;;13500:4;13529:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;13358:214;40701:48;;;;;;;;;;;;40745:4;40701:48;;46572:126;;;;;;;;;;-1:-1:-1;46572:126:0;;;;;:::i;:::-;;:::i;22065:229::-;;;;;;;;;;-1:-1:-1;22065:229:0;;;;;:::i;:::-;;:::i;18502:301::-;18650:4;-1:-1:-1;;;;;;18692:50:0;;-1:-1:-1;;;18692:50:0;;:103;;;18759:36;18783:11;18759:23;:36::i;:::-;18672:123;18502:301;-1:-1:-1;;18502:301:0:o;46818:79::-;21238:6;;-1:-1:-1;;;;;21238:6:0;734:10;21385:23;21377:68;;;;-1:-1:-1;;;21377:68:0;;;;;;;:::i;:::-;;;;;;;;;46874:6:::1;:15:::0;;;::::1;;;;-1:-1:-1::0;;46874:15:0;;::::1;::::0;;;::::1;::::0;;46818:79::o;12067:100::-;12121:13;12154:5;12147:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12067:100;:::o;12707:308::-;12828:7;12875:16;12883:7;12875;:16::i;:::-;12853:110;;;;-1:-1:-1;;;12853:110:0;;9492:2:1;12853:110:0;;;9474:21:1;9531:2;9511:18;;;9504:30;9570:34;9550:18;;;9543:62;-1:-1:-1;;;9621:18:1;;;9614:42;9673:19;;12853:110:0;9290:408:1;12853:110:0;-1:-1:-1;12983:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;12983:24:0;;12707:308::o;12287:412::-;12368:13;12384:24;12400:7;12384:15;:24::i;:::-;12368:40;;12433:5;-1:-1:-1;;;;;12427:11:0;:2;-1:-1:-1;;;;;12427:11:0;;;12419:57;;;;-1:-1:-1;;;12419:57:0;;9905:2:1;12419:57:0;;;9887:21:1;9944:2;9924:18;;;9917:30;9983:34;9963:18;;;9956:62;-1:-1:-1;;;10034:18:1;;;10027:31;10075:19;;12419:57:0;9703:397:1;12419:57:0;734:10;-1:-1:-1;;;;;12511:21:0;;;;:62;;-1:-1:-1;12536:37:0;12553:5;734:10;13358:214;:::i;12536:37::-;12489:168;;;;-1:-1:-1;;;12489:168:0;;10307:2:1;12489:168:0;;;10289:21:1;10346:2;10326:18;;;10319:30;10385:34;10365:18;;;10358:62;10456:26;10436:18;;;10429:54;10500:19;;12489:168:0;10105:420:1;12489:168:0;12670:21;12679:2;12683:7;12670:8;:21::i;:::-;12357:342;12287:412;;:::o;26306:639::-;-1:-1:-1;;;;;26382:16:0;;26401:1;26382:16;;;:7;:16;;;;;;26374:71;;;;-1:-1:-1;;;26374:71:0;;10732:2:1;26374:71:0;;;10714:21:1;10771:2;10751:18;;;10744:30;10810:34;10790:18;;;10783:62;-1:-1:-1;;;10861:18:1;;;10854:36;10907:19;;26374:71:0;10530:402:1;26374:71:0;26458:21;26506:14;;26482:21;:38;;;;:::i;:::-;-1:-1:-1;;;;;26627:18:0;;26531:15;26627:18;;;:9;:18;;;;;;;;;26599:12;;26566:7;:16;;;;;;;26458:62;;-1:-1:-1;26531:15:0;;26550:32;;26458:62;26550:32;:::i;:::-;26549:62;;;;:::i;:::-;:96;;;;:::i;:::-;26531:114;-1:-1:-1;26666:12:0;26658:68;;;;-1:-1:-1;;;26658:68:0;;11964:2:1;26658:68:0;;;11946:21:1;12003:2;11983:18;;;11976:30;12042:34;12022:18;;;12015:62;-1:-1:-1;;;12093:18:1;;;12086:41;12144:19;;26658:68:0;11762:407:1;26658:68:0;-1:-1:-1;;;;;26760:18:0;;;;;;:9;:18;;;;;;:28;;26781:7;;26760:28;:::i;:::-;-1:-1:-1;;;;;26739:18:0;;;;;;:9;:18;;;;;:49;26816:14;;:24;;26833:7;;26816:24;:::i;:::-;26799:14;:41;26853:35;26871:7;26880;26853:17;:35::i;:::-;26904:33;;;-1:-1:-1;;;;;206:32:1;;188:51;;270:2;255:18;;248:34;;;26904:33:0;;161:18:1;26904:33:0;;;;;;;26363:582;;26306:639;:::o;46306:258::-;21238:6;;-1:-1:-1;;;;;21238:6:0;734:10;21385:23;21377:68;;;;-1:-1:-1;;;21377:68:0;;;;;;;:::i;:::-;46399:14:::1;46416:13;19869:7:::0;:14;;19781:110;46416:13:::1;46399:30:::0;-1:-1:-1;40690:4:0::1;46448:20;46457:11:::0;46399:30;46448:20:::1;:::i;:::-;:34;;46440:74;;;;-1:-1:-1::0;;;46440:74:0::1;;;;;;;:::i;:::-;46525:31;46533:9;46544:11;46525:7;:31::i;13580:376::-:0;13789:41;734:10;13822:7;13789:18;:41::i;:::-;13767:140;;;;-1:-1:-1;;;13767:140:0;;;;;;;:::i;:::-;13920:28;13930:4;13936:2;13940:7;13920:9;:28::i;44011:783::-;44079:11;42316:14;42333:13;19869:7;:14;;19781:110;42333:13;42316:30;;42379:1;42365:11;:15;42357:59;;;;-1:-1:-1;;;42357:59:0;;13437:2:1;42357:59:0;;;13419:21:1;13476:2;13456:18;;;13449:30;13515:33;13495:18;;;13488:61;13566:18;;42357:59:0;13235:355:1;42357:59:0;40745:4;42435:20;42444:11;42435:6;:20;:::i;:::-;:41;;42427:81;;;;-1:-1:-1;;;42427:81:0;;;;;;;:::i;:::-;42540:18;42547:11;41001;42540:18;:::i;:::-;42527:9;:31;;42519:62;;;;-1:-1:-1;;;42519:62:0;;13797:2:1;42519:62:0;;;13779:21:1;13836:2;13816:18;;;13809:30;-1:-1:-1;;;13855:18:1;;;13848:48;13913:18;;42519:62:0;13595:342:1;42519:62:0;44112:17:::1;::::0;::::1;;44111:18;:29:::0;::::1;;;-1:-1:-1::0;44134:6:0::1;::::0;::::1;::::0;::::1;;;44133:7;44111:29;44103:67;;;::::0;-1:-1:-1;;;44103:67:0;;14144:2:1;44103:67:0::1;::::0;::::1;14126:21:1::0;14183:2;14163:18;;;14156:30;14222:27;14202:18;;;14195:55;14267:18;;44103:67:0::1;13942:349:1::0;44103:67:0::1;44209:10;28774:20:::0;28822:8;44181:84:::1;;;::::0;-1:-1:-1;;;44181:84:0;;14498:2:1;44181:84:0::1;::::0;::::1;14480:21:1::0;14537:2;14517:18;;;14510:30;14576:34;14556:18;;;14549:62;-1:-1:-1;;;14627:18:1;;;14620:38;14675:19;;44181:84:0::1;14296:404:1::0;44181:84:0::1;44284:10;44298:9;44284:23;44276:64;;;::::0;-1:-1:-1;;;44276:64:0;;14907:2:1;44276:64:0::1;::::0;::::1;14889:21:1::0;14946:2;14926:18;;;14919:30;14985;14965:18;;;14958:58;15033:18;;44276:64:0::1;14705:352:1::0;44276:64:0::1;40851:1;44359:11;:32;;44351:77;;;::::0;-1:-1:-1;;;44351:77:0;;15264:2:1;44351:77:0::1;::::0;::::1;15246:21:1::0;;;15283:18;;;15276:30;15342:34;15322:18;;;15315:62;15394:18;;44351:77:0::1;15062:356:1::0;44351:77:0::1;44496:10;44441:25;44469:38:::0;;;:26:::1;:38;::::0;;;;;40907:2:::1;44526:31;44546:11:::0;44469:38;44526:31:::1;:::i;:::-;:56;;44518:151;;;::::0;-1:-1:-1;;;44518:151:0;;15625:2:1;44518:151:0::1;::::0;::::1;15607:21:1::0;15664:2;15644:18;;;15637:30;15703:34;15683:18;;;15676:62;15774:34;15754:18;;;15747:62;-1:-1:-1;;;15825:19:1;;;15818:49;15884:19;;44518:151:0::1;15423:486:1::0;44518:151:0::1;44707:10;44680:38;::::0;;;:26:::1;:38;::::0;;;;:53;;44722:11;;44680:38;:53:::1;::::0;44722:11;;44680:53:::1;:::i;:::-;::::0;;;-1:-1:-1;44754:32:0::1;::::0;-1:-1:-1;44762:10:0::1;44774:11:::0;44754:7:::1;:32::i;:::-;44092:702;42305:296:::0;44011:783;;:::o;18811:504::-;18936:15;18985:24;19003:5;18985:17;:24::i;:::-;18977:5;:32;18969:67;;;;-1:-1:-1;;;18969:67:0;;;;;;;:::i;:::-;19047:13;19076:9;19071:186;19091:7;:14;19087:18;;19071:186;;;19140:7;19148:1;19140:10;;;;;;;;:::i;:::-;;;;;;;;;;;-1:-1:-1;;;;;19131:19:0;;;19140:10;;19131:19;19127:119;;;19184:5;19175;:14;19171:59;;;19198:1;-1:-1:-1;19191:8:0;;-1:-1:-1;19191:8:0;19171:59;19223:7;;;:::i;:::-;;;19171:59;19107:3;;;:::i;:::-;;;19071:186;;;-1:-1:-1;19267:40:0;;-1:-1:-1;;;19267:40:0;;;;;;;:::i;13964:185::-;14102:39;14119:4;14125:2;14129:7;14102:39;;;;;;;;;;;;:16;:39::i;44802:680::-;44862:16;44891:23;44917:17;44927:6;44917:9;:17::i;:::-;44891:43;;44945:30;44992:15;44978:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;44978:30:0;-1:-1:-1;44945:63:0;-1:-1:-1;45044:1:0;45019:22;45096:348;45121:15;45103;:33;:65;;;;;40690:4;45140:14;:28;;45103:65;45096:348;;;45185:25;45213:23;45221:14;45213:7;:23::i;:::-;45185:51;;45276:6;-1:-1:-1;;;;;45255:27:0;:17;-1:-1:-1;;;;;45255:27:0;;45251:151;;;45336:14;45303:13;45317:15;45303:30;;;;;;;;:::i;:::-;;;;;;;;;;:47;45369:17;;;;:::i;:::-;;;;45251:151;45416:16;;;;:::i;:::-;;;;45170:274;45096:348;;;-1:-1:-1;45461:13:0;;44802:680;-1:-1:-1;;;;44802:680:0:o;19899:244::-;20019:7;20060:24;19869:7;:14;;19781:110;20060:24;20052:5;:32;20044:68;;;;-1:-1:-1;;;20044:68:0;;16739:2:1;20044:68:0;;;16721:21:1;16778:2;16758:18;;;16751:30;16817:25;16797:18;;;16790:53;16860:18;;20044:68:0;16537:347:1;20044:68:0;-1:-1:-1;20130:5:0;19899:244::o;46706:104::-;21238:6;;-1:-1:-1;;;;;21238:6:0;734:10;21385:23;21377:68;;;;-1:-1:-1;;;21377:68:0;;;;;;;:::i;:::-;46781:21;;::::1;::::0;:7:::1;::::0;:21:::1;::::0;::::1;::::0;::::1;:::i;:::-;;46706:104:::0;:::o;11733:326::-;11850:7;11875:13;11891:7;11899;11891:16;;;;;;;;:::i;:::-;;;;;;;;;;;-1:-1:-1;;;;;11891:16:0;;-1:-1:-1;11940:19:0;11918:110;;;;-1:-1:-1;;;11918:110:0;;17091:2:1;11918:110:0;;;17073:21:1;17130:2;17110:18;;;17103:30;17169:34;17149:18;;;17142:62;-1:-1:-1;;;17220:18:1;;;17213:39;17269:19;;11918:110:0;16889:405:1;11207:518:0;11324:7;-1:-1:-1;;;;;11371:19:0;;11349:111;;;;-1:-1:-1;;;11349:111:0;;17501:2:1;11349:111:0;;;17483:21:1;17540:2;17520:18;;;17513:30;17579:34;17559:18;;;17552:62;-1:-1:-1;;;17630:18:1;;;17623:40;17680:19;;11349:111:0;17299:406:1;11349:111:0;11516:7;:14;11471:13;;;11541:130;11565:6;11561:1;:10;11541:130;;;11606:7;11614:1;11606:10;;;;;;;;:::i;:::-;;;;;;;;;;;-1:-1:-1;;;;;11597:19:0;;;11606:10;;11597:19;11593:67;;;11637:7;;;:::i;:::-;;;11593:67;11573:3;;;:::i;:::-;;;11541:130;;;-1:-1:-1;11712:5:0;;11207:518;-1:-1:-1;;;11207:518:0:o;21816:94::-;21238:6;;-1:-1:-1;;;;;21238:6:0;734:10;21385:23;21377:68;;;;-1:-1:-1;;;21377:68:0;;;;;;;:::i;:::-;21881:21:::1;21899:1;21881:9;:21::i;:::-;21816:94::o:0;47092:92::-;21238:6;;-1:-1:-1;;;;;21238:6:0;734:10;21385:23;21377:68;;;;-1:-1:-1;;;21377:68:0;;;;;;;:::i;:::-;47158:10:::1;:18:::0;47092:92::o;19323:450::-;19409:16;19455:24;19473:5;19455:17;:24::i;:::-;19451:1;:28;19443:63;;;;-1:-1:-1;;;19443:63:0;;;;;;;:::i;:::-;19517:18;19538:16;19548:5;19538:9;:16::i;:::-;19517:37;;19565:25;19607:10;19593:25;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;19593:25:0;;19565:53;;19634:9;19629:111;19653:10;19649:1;:14;19629:111;;;19699:29;19719:5;19726:1;19699:19;:29::i;:::-;19685:8;19694:1;19685:11;;;;;;;;:::i;:::-;;;;;;;;;;:43;19665:3;;;;:::i;:::-;;;;19629:111;;;-1:-1:-1;19757:8:0;19323:450;-1:-1:-1;;;19323:450:0:o;26006:100::-;26057:7;26084;26092:5;26084:14;;;;;;;;:::i;:::-;;;;;;;;;;;-1:-1:-1;;;;;26084:14:0;;26006:100;-1:-1:-1;;26006:100:0:o;40534:110::-;;;;;;;;;;;;;;;;;;;:::o;12175:104::-;12231:13;12264:7;12257:14;;;;;:::i;13023:327::-;-1:-1:-1;;;;;13158:24:0;;734:10;13158:24;;13150:62;;;;-1:-1:-1;;;13150:62:0;;17912:2:1;13150:62:0;;;17894:21:1;17951:2;17931:18;;;17924:30;17990:27;17970:18;;;17963:55;18035:18;;13150:62:0;17710:349:1;13150:62:0;734:10;13225:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;13225:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;13225:53:0;;;;;;;;;;13294:48;;819:41:1;;;13225:42:0;;734:10;13294:48;;792:18:1;13294:48:0;;;;;;;13023:327;;:::o;46905:69::-;21238:6;;-1:-1:-1;;;;;21238:6:0;734:10;21385:23;21377:68;;;;-1:-1:-1;;;21377:68:0;;;;;;;:::i;:::-;46951:8:::1;:15:::0;;-1:-1:-1;;46951:15:0::1;::::0;::::1;::::0;;46905:69::o;14157:365::-;14346:41;734:10;14379:7;14346:18;:41::i;:::-;14324:140;;;;-1:-1:-1;;;14324:140:0;;;;;;;:::i;:::-;14475:39;14489:4;14495:2;14499:7;14508:5;14475:13;:39::i;45490:438::-;45564:13;45598:17;45606:8;45598:7;:17::i;:::-;45590:69;;;;-1:-1:-1;;;45590:69:0;;18266:2:1;45590:69:0;;;18248:21:1;18305:2;18285:18;;;18278:30;18344:34;18324:18;;;18317:62;-1:-1:-1;;;18395:18:1;;;18388:37;18442:19;;45590:69:0;18064:403:1;45590:69:0;45674:8;;;;;;;45670:71;;45715:14;45708:21;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45490:438;;;:::o;45670:71::-;45751:28;45782:10;:8;:10::i;:::-;45751:41;;45841:1;45816:14;45810:28;:32;:110;;;;;;;;;;;;;;;;;45869:14;45885:19;:8;:17;:19::i;:::-;45852:62;;;;;;;;;:::i;:::-;;;;;;;;;;;;;45810:110;45803:117;45490:438;-1:-1:-1;;;45490:438:0:o;43374:629::-;43471:11;42316:14;42333:13;19869:7;:14;;19781:110;42333:13;42316:30;;42379:1;42365:11;:15;42357:59;;;;-1:-1:-1;;;42357:59:0;;13437:2:1;42357:59:0;;;13419:21:1;13476:2;13456:18;;;13449:30;13515:33;13495:18;;;13488:61;13566:18;;42357:59:0;13235:355:1;42357:59:0;40745:4;42435:20;42444:11;42435:6;:20;:::i;:::-;:41;;42427:81;;;;-1:-1:-1;;;42427:81:0;;;;;;;:::i;:::-;42540:18;42547:11;41001;42540:18;:::i;:::-;42527:9;:31;;42519:62;;;;-1:-1:-1;;;42519:62:0;;13797:2:1;42519:62:0;;;13779:21:1;13836:2;13816:18;;;13809:30;-1:-1:-1;;;13855:18:1;;;13848:48;13913:18;;42519:62:0;13595:342:1;42519:62:0;43503:17:::1;::::0;::::1;;:28:::0;::::1;;;-1:-1:-1::0;43525:6:0::1;::::0;::::1;::::0;::::1;;;43524:7;43503:28;43495:72;;;::::0;-1:-1:-1;;;43495:72:0;;19316:2:1;43495:72:0::1;::::0;::::1;19298:21:1::0;19355:2;19335:18;;;19328:30;19394:33;19374:18;;;19367:61;19445:18;;43495:72:0::1;19114:355:1::0;43495:72:0::1;42861:26:::0;;;43604:10:::1;23974:2:1::0;23970:15;-1:-1:-1;;23966:53:1;42861:26:0;;;;23954:66:1;;;;42861:26:0;;;;;;;;;24036:12:1;;;;42861:26:0;;;42851:37;;;;;43586::::1;::::0;43617:5:::1;;43586:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;::::0;;;;-1:-1:-1;43586:11:0::1;::::0;-1:-1:-1;;;43586:37:0:i:1;:::-;43578:63;;;::::0;-1:-1:-1;;;43578:63:0;;19676:2:1;43578:63:0::1;::::0;::::1;19658:21:1::0;19715:2;19695:18;;;19688:30;-1:-1:-1;;;19734:18:1;;;19727:43;19787:18;;43578:63:0::1;19474:337:1::0;43578:63:0::1;43712:10;43654:25;43682:41:::0;;;:29:::1;:41;::::0;;;;;40799:1:::1;43742:31;43762:11:::0;43682:41;43742:31:::1;:::i;:::-;:51;;43734:141;;;::::0;-1:-1:-1;;;43734:141:0;;20018:2:1;43734:141:0::1;::::0;::::1;20000:21:1::0;20057:2;20037:18;;;20030:30;20096:34;20076:18;;;20069:62;20167:34;20147:18;;;20140:62;-1:-1:-1;;;20218:19:1;;;20211:44;20272:19;;43734:141:0::1;19816:481:1::0;43734:141:0::1;43916:10;43886:41;::::0;;;:29:::1;:41;::::0;;;;:56;;43931:11;;43886:41;:56:::1;::::0;43931:11;;43886:56:::1;:::i;:::-;::::0;;;-1:-1:-1;43963:32:0::1;::::0;-1:-1:-1;43971:10:0::1;43983:11:::0;43963:7:::1;:32::i;:::-;43484:519;42305:296:::0;43374:629;;;;:::o;46982:102::-;21238:6;;-1:-1:-1;;;;;21238:6:0;734:10;21385:23;21377:68;;;;-1:-1:-1;;;21377:68:0;;;;;;;:::i;:::-;47050:17:::1;:26:::0;;-1:-1:-1;;47050:26:0::1;::::0;::::1;;::::0;;;::::1;::::0;;46982:102::o;45990:308::-;21238:6;;-1:-1:-1;;;;;21238:6:0;734:10;21385:23;21377:68;;;;-1:-1:-1;;;21377:68:0;;;;;;;:::i;:::-;46074:18:::1;46084:7;21238:6:::0;;-1:-1:-1;;;;;21238:6:0;;21165:87;46074:18:::1;:23:::0;46066:64:::1;;;::::0;-1:-1:-1;;;46066:64:0;;20504:2:1;46066:64:0::1;::::0;::::1;20486:21:1::0;20543:2;20523:18;;;20516:30;20582;20562:18;;;20555:58;20630:18;;46066:64:0::1;20302:352:1::0;46066:64:0::1;46141:14;46158:13;19869:7:::0;:14;;19781:110;46158:13:::1;46141:30;;46187:9;46182:109;40962:1;46202;:23;46182:109;;;46247:32;46257:9:::0;46268:10:::1;46277:1:::0;46268:6;:10:::1;:::i;:::-;46247:9;:32::i;:::-;46227:3:::0;::::1;::::0;::::1;:::i;:::-;;;;46182:109;;46572:126:::0;21238:6;;-1:-1:-1;;;;;21238:6:0;734:10;21385:23;21377:68;;;;-1:-1:-1;;;21377:68:0;;;;;;;:::i;:::-;46658:32;;::::1;::::0;:14:::1;::::0;:32:::1;::::0;::::1;::::0;::::1;:::i;22065:229::-:0;21238:6;;-1:-1:-1;;;;;21238:6:0;734:10;21385:23;21377:68;;;;-1:-1:-1;;;21377:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;22168:22:0;::::1;22146:110;;;::::0;-1:-1:-1;;;22146:110:0;;20861:2:1;22146:110:0::1;::::0;::::1;20843:21:1::0;20900:2;20880:18;;;20873:30;20939:34;20919:18;;;20912:62;-1:-1:-1;;;20990:18:1;;;20983:36;21036:19;;22146:110:0::1;20659:402:1::0;22146:110:0::1;22267:19;22277:8;22267:9;:19::i;:::-;22065:229:::0;:::o;10844:355::-;10991:4;-1:-1:-1;;;;;;11033:40:0;;-1:-1:-1;;;11033:40:0;;:105;;-1:-1:-1;;;;;;;11090:48:0;;-1:-1:-1;;;11090:48:0;11033:105;:158;;;-1:-1:-1;;;;;;;;;;8613:40:0;;;11155:36;8454:207;14890:155;14989:7;:14;14955:4;;14979:24;;:58;;;;;15035:1;-1:-1:-1;;;;;15007:30:0;:7;15015;15007:16;;;;;;;;:::i;:::-;;;;;;;;;;;-1:-1:-1;;;;;15007:16:0;:30;;14972:65;14890:155;-1:-1:-1;;14890:155:0:o;17104:175::-;17179:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;17179:29:0;-1:-1:-1;;;;;17179:29:0;;;;;;;;:24;;17233;17179;17233:15;:24::i;:::-;-1:-1:-1;;;;;17224:47:0;;;;;;;;;;;17104:175;;:::o;29773:391::-;29902:6;29877:21;:31;;29855:110;;;;-1:-1:-1;;;29855:110:0;;21268:2:1;29855:110:0;;;21250:21:1;21307:2;21287:18;;;21280:30;21346:31;21326:18;;;21319:59;21395:18;;29855:110:0;21066:353:1;29855:110:0;29979:12;29997:9;-1:-1:-1;;;;;29997:14:0;30019:6;29997:33;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29978:52;;;30063:7;30041:115;;;;-1:-1:-1;;;30041:115:0;;21836:2:1;30041:115:0;;;21818:21:1;21875:2;21855:18;;;21848:30;21914:34;21894:18;;;21887:62;21985:28;21965:18;;;21958:56;22031:19;;30041:115:0;21634:422:1;43081:226:0;43158:14;43175:13;19869:7;:14;;19781:110;43175:13;43158:30;;43204:9;43199:101;43223:11;43219:1;:15;43199:101;;;43256:32;43266:9;43277:10;43286:1;43277:6;:10;:::i;43256:32::-;43236:3;;;;:::i;:::-;;;;43199:101;;15053:453;15182:4;15226:16;15234:7;15226;:16::i;:::-;15204:110;;;;-1:-1:-1;;;15204:110:0;;22263:2:1;15204:110:0;;;22245:21:1;22302:2;22282:18;;;22275:30;22341:34;22321:18;;;22314:62;-1:-1:-1;;;22392:18:1;;;22385:42;22444:19;;15204:110:0;22061:408:1;15204:110:0;15325:13;15341:24;15357:7;15341:15;:24::i;:::-;15325:40;;15395:5;-1:-1:-1;;;;;15384:16:0;:7;-1:-1:-1;;;;;15384:16:0;;:64;;;;15441:7;-1:-1:-1;;;;;15417:31:0;:20;15429:7;15417:11;:20::i;:::-;-1:-1:-1;;;;;15417:31:0;;15384:64;:113;;;-1:-1:-1;;;;;;13529:25:0;;;13500:4;13529:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;15465:32;15376:122;15053:453;-1:-1:-1;;;;15053:453:0:o;16594:502::-;16768:4;-1:-1:-1;;;;;16740:32:0;:24;16756:7;16740:15;:24::i;:::-;-1:-1:-1;;;;;16740:32:0;;16718:123;;;;-1:-1:-1;;;16718:123:0;;22676:2:1;16718:123:0;;;22658:21:1;22715:2;22695:18;;;22688:30;22754:34;22734:18;;;22727:62;-1:-1:-1;;;22805:18:1;;;22798:39;22854:19;;16718:123:0;22474:405:1;16718:123:0;-1:-1:-1;;;;;16860:16:0;;16852:65;;;;-1:-1:-1;;;16852:65:0;;23086:2:1;16852:65:0;;;23068:21:1;23125:2;23105:18;;;23098:30;23164:34;23144:18;;;23137:62;-1:-1:-1;;;23215:18:1;;;23208:34;23259:19;;16852:65:0;22884:400:1;16852:65:0;16982:29;16999:1;17003:7;16982:8;:29::i;:::-;17041:2;17022:7;17030;17022:16;;;;;;;;:::i;:::-;;;;;;;;;:21;;-1:-1:-1;;;;;;17022:21:0;-1:-1:-1;;;;;17022:21:0;;;;;;17061:27;;17080:7;;17061:27;;;;;;;;;;17022:16;17061:27;16594:502;;;:::o;22302:173::-;22377:6;;;-1:-1:-1;;;;;22394:17:0;;;-1:-1:-1;;;;;;22394:17:0;;;;;;;22427:40;;22377:6;;;22394:17;22377:6;;22427:40;;22358:16;;22427:40;22347:128;22302:173;:::o;14530:352::-;14687:28;14697:4;14703:2;14707:7;14687:9;:28::i;:::-;14748:48;14771:4;14777:2;14781:7;14790:5;14748:22;:48::i;:::-;14726:148;;;;-1:-1:-1;;;14726:148:0;;;;;;;:::i;42661:99::-;42712:13;42745:7;42738:14;;;;;:::i;36554:723::-;36610:13;36831:10;36827:53;;-1:-1:-1;;36858:10:0;;;;;;;;;;;;-1:-1:-1;;;36858:10:0;;;;;36554:723::o;36827:53::-;36905:5;36890:12;36946:78;36953:9;;36946:78;;36979:8;;;;:::i;:::-;;-1:-1:-1;37002:10:0;;-1:-1:-1;37010:2:0;37002:10;;:::i;:::-;;;36946:78;;;37034:19;37066:6;37056:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;37056:17:0;;37034:39;;37084:154;37091:10;;37084:154;;37118:11;37128:1;37118:11;;:::i;:::-;;-1:-1:-1;37187:10:0;37195:2;37187:5;:10;:::i;:::-;37174:24;;:2;:24;:::i;:::-;37161:39;;37144:6;37151;37144:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;37144:56:0;;;;;;;;-1:-1:-1;37215:11:0;37224:2;37215:11;;:::i;:::-;;;37084:154;;42904:169;42992:4;43016:49;43035:6;43043:10;;43055:9;43016:18;:49::i;15514:110::-;15590:26;15600:2;15604:7;15590:26;;;;;;;;;;;;:9;:26::i;17287:980::-;17442:4;-1:-1:-1;;;;;17463:13:0;;28774:20;28822:8;17459:801;;17516:175;;-1:-1:-1;;;17516:175:0;;-1:-1:-1;;;;;17516:36:0;;;;;:175;;734:10;;17610:4;;17637:7;;17667:5;;17516:175;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;17516:175:0;;;;;;;;-1:-1:-1;;17516:175:0;;;;;;;;;;;;:::i;:::-;;;17495:710;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;17874:13:0;;17870:320;;17917:108;;-1:-1:-1;;;17917:108:0;;;;;;;:::i;17870:320::-;18140:6;18134:13;18125:6;18121:2;18117:15;18110:38;17495:710;-1:-1:-1;;;;;;17755:51:0;-1:-1:-1;;;17755:51:0;;-1:-1:-1;17748:58:0;;17459:801;-1:-1:-1;18244:4:0;17287:980;;;;;;:::o;39107:190::-;39232:4;39285;39256:25;39269:5;39276:4;39256:12;:25::i;:::-;:33;;39107:190;-1:-1:-1;;;;39107:190:0:o;15632:287::-;15728:18;15734:2;15738:7;15728:5;:18::i;:::-;15779:54;15810:1;15814:2;15818:7;15827:5;15779:22;:54::i;:::-;15757:154;;;;-1:-1:-1;;;15757:154:0;;;;;;;:::i;39659:701::-;39742:7;39785:4;39742:7;39800:523;39824:5;:12;39820:1;:16;39800:523;;;39858:20;39881:5;39887:1;39881:8;;;;;;;;:::i;:::-;;;;;;;39858:31;;39924:12;39908;:28;39904:408;;40061:44;;;;;;24964:19:1;;;24999:12;;;24992:28;;;25036:12;;40061:44:0;;;;;;;;;;;;40051:55;;;;;;40036:70;;39904:408;;;40251:44;;;;;;24964:19:1;;;24999:12;;;24992:28;;;25036:12;;40251:44:0;;;;;;;;;;;;40241:55;;;;;;40226:70;;39904:408;-1:-1:-1;39838:3:0;;;;:::i;:::-;;;;39800:523;;15927:346;-1:-1:-1;;;;;16007:16:0;;15999:61;;;;-1:-1:-1;;;15999:61:0;;25261:2:1;15999:61:0;;;25243:21:1;;;25280:18;;;25273:30;25339:34;25319:18;;;25312:62;25391:18;;15999:61:0;25059:356:1;15999:61:0;16080:16;16088:7;16080;:16::i;:::-;16079:17;16071:58;;;;-1:-1:-1;;;16071:58:0;;25622:2:1;16071:58:0;;;25604:21:1;25661:2;25641:18;;;25634:30;25700;25680:18;;;25673:58;25748:18;;16071:58:0;25420:352:1;16071:58:0;16198:7;:16;;;;;;;-1:-1:-1;16198:16:0;;;;;;;-1:-1:-1;;;;;;16198:16:0;-1:-1:-1;;;;;16198:16:0;;;;;;;;16232:33;;16257:7;;-1:-1:-1;16232:33:0;;-1:-1:-1;;16232:33:0;15927:346;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;293:131:1;-1:-1:-1;;;;;;367:32:1;;357:43;;347:71;;414:1;411;404:12;429:245;487:6;540:2;528:9;519:7;515:23;511:32;508:52;;;556:1;553;546:12;508:52;595:9;582:23;614:30;638:5;614:30;:::i;871:160::-;936:20;;992:13;;985:21;975:32;;965:60;;1021:1;1018;1011:12;965:60;871:160;;;:::o;1036:180::-;1092:6;1145:2;1133:9;1124:7;1120:23;1116:32;1113:52;;;1161:1;1158;1151:12;1113:52;1184:26;1200:9;1184:26;:::i;1221:258::-;1293:1;1303:113;1317:6;1314:1;1311:13;1303:113;;;1393:11;;;1387:18;1374:11;;;1367:39;1339:2;1332:10;1303:113;;;1434:6;1431:1;1428:13;1425:48;;;-1:-1:-1;;1469:1:1;1451:16;;1444:27;1221:258::o;1484:::-;1526:3;1564:5;1558:12;1591:6;1586:3;1579:19;1607:63;1663:6;1656:4;1651:3;1647:14;1640:4;1633:5;1629:16;1607:63;:::i;:::-;1724:2;1703:15;-1:-1:-1;;1699:29:1;1690:39;;;;1731:4;1686:50;;1484:258;-1:-1:-1;;1484:258:1:o;1747:220::-;1896:2;1885:9;1878:21;1859:4;1916:45;1957:2;1946:9;1942:18;1934:6;1916:45;:::i;1972:180::-;2031:6;2084:2;2072:9;2063:7;2059:23;2055:32;2052:52;;;2100:1;2097;2090:12;2052:52;-1:-1:-1;2123:23:1;;1972:180;-1:-1:-1;1972:180:1:o;2365:131::-;-1:-1:-1;;;;;2440:31:1;;2430:42;;2420:70;;2486:1;2483;2476:12;2501:315;2569:6;2577;2630:2;2618:9;2609:7;2605:23;2601:32;2598:52;;;2646:1;2643;2636:12;2598:52;2685:9;2672:23;2704:31;2729:5;2704:31;:::i;:::-;2754:5;2806:2;2791:18;;;;2778:32;;-1:-1:-1;;;2501:315:1:o;3003:255::-;3070:6;3123:2;3111:9;3102:7;3098:23;3094:32;3091:52;;;3139:1;3136;3129:12;3091:52;3178:9;3165:23;3197:31;3222:5;3197:31;:::i;3263:315::-;3331:6;3339;3392:2;3380:9;3371:7;3367:23;3363:32;3360:52;;;3408:1;3405;3398:12;3360:52;3444:9;3431:23;3421:33;;3504:2;3493:9;3489:18;3476:32;3517:31;3542:5;3517:31;:::i;:::-;3567:5;3557:15;;;3263:315;;;;;:::o;3583:456::-;3660:6;3668;3676;3729:2;3717:9;3708:7;3704:23;3700:32;3697:52;;;3745:1;3742;3735:12;3697:52;3784:9;3771:23;3803:31;3828:5;3803:31;:::i;:::-;3853:5;-1:-1:-1;3910:2:1;3895:18;;3882:32;3923:33;3882:32;3923:33;:::i;:::-;3583:456;;3975:7;;-1:-1:-1;;;4029:2:1;4014:18;;;;4001:32;;3583:456::o;4296:632::-;4467:2;4519:21;;;4589:13;;4492:18;;;4611:22;;;4438:4;;4467:2;4690:15;;;;4664:2;4649:18;;;4438:4;4733:169;4747:6;4744:1;4741:13;4733:169;;;4808:13;;4796:26;;4877:15;;;;4842:12;;;;4769:1;4762:9;4733:169;;;-1:-1:-1;4919:3:1;;4296:632;-1:-1:-1;;;;;;4296:632:1:o;4933:127::-;4994:10;4989:3;4985:20;4982:1;4975:31;5025:4;5022:1;5015:15;5049:4;5046:1;5039:15;5065:632;5130:5;5160:18;5201:2;5193:6;5190:14;5187:40;;;5207:18;;:::i;:::-;5282:2;5276:9;5250:2;5336:15;;-1:-1:-1;;5332:24:1;;;5358:2;5328:33;5324:42;5312:55;;;5382:18;;;5402:22;;;5379:46;5376:72;;;5428:18;;:::i;:::-;5468:10;5464:2;5457:22;5497:6;5488:15;;5527:6;5519;5512:22;5567:3;5558:6;5553:3;5549:16;5546:25;5543:45;;;5584:1;5581;5574:12;5543:45;5634:6;5629:3;5622:4;5614:6;5610:17;5597:44;5689:1;5682:4;5673:6;5665;5661:19;5657:30;5650:41;;;;5065:632;;;;;:::o;5702:451::-;5771:6;5824:2;5812:9;5803:7;5799:23;5795:32;5792:52;;;5840:1;5837;5830:12;5792:52;5880:9;5867:23;5913:18;5905:6;5902:30;5899:50;;;5945:1;5942;5935:12;5899:50;5968:22;;6021:4;6013:13;;6009:27;-1:-1:-1;5999:55:1;;6050:1;6047;6040:12;5999:55;6073:74;6139:7;6134:2;6121:16;6116:2;6112;6108:11;6073:74;:::i;6343:315::-;6408:6;6416;6469:2;6457:9;6448:7;6444:23;6440:32;6437:52;;;6485:1;6482;6475:12;6437:52;6524:9;6511:23;6543:31;6568:5;6543:31;:::i;:::-;6593:5;-1:-1:-1;6617:35:1;6648:2;6633:18;;6617:35;:::i;:::-;6607:45;;6343:315;;;;;:::o;6663:795::-;6758:6;6766;6774;6782;6835:3;6823:9;6814:7;6810:23;6806:33;6803:53;;;6852:1;6849;6842:12;6803:53;6891:9;6878:23;6910:31;6935:5;6910:31;:::i;:::-;6960:5;-1:-1:-1;7017:2:1;7002:18;;6989:32;7030:33;6989:32;7030:33;:::i;:::-;7082:7;-1:-1:-1;7136:2:1;7121:18;;7108:32;;-1:-1:-1;7191:2:1;7176:18;;7163:32;7218:18;7207:30;;7204:50;;;7250:1;7247;7240:12;7204:50;7273:22;;7326:4;7318:13;;7314:27;-1:-1:-1;7304:55:1;;7355:1;7352;7345:12;7304:55;7378:74;7444:7;7439:2;7426:16;7421:2;7417;7413:11;7378:74;:::i;:::-;7368:84;;;6663:795;;;;;;;:::o;7463:683::-;7558:6;7566;7574;7627:2;7615:9;7606:7;7602:23;7598:32;7595:52;;;7643:1;7640;7633:12;7595:52;7679:9;7666:23;7656:33;;7740:2;7729:9;7725:18;7712:32;7763:18;7804:2;7796:6;7793:14;7790:34;;;7820:1;7817;7810:12;7790:34;7858:6;7847:9;7843:22;7833:32;;7903:7;7896:4;7892:2;7888:13;7884:27;7874:55;;7925:1;7922;7915:12;7874:55;7965:2;7952:16;7991:2;7983:6;7980:14;7977:34;;;8007:1;8004;7997:12;7977:34;8060:7;8055:2;8045:6;8042:1;8038:14;8034:2;8030:23;8026:32;8023:45;8020:65;;;8081:1;8078;8071:12;8020:65;8112:2;8108;8104:11;8094:21;;8134:6;8124:16;;;;;7463:683;;;;;:::o;8151:388::-;8219:6;8227;8280:2;8268:9;8259:7;8255:23;8251:32;8248:52;;;8296:1;8293;8286:12;8248:52;8335:9;8322:23;8354:31;8379:5;8354:31;:::i;:::-;8404:5;-1:-1:-1;8461:2:1;8446:18;;8433:32;8474:33;8433:32;8474:33;:::i;8544:356::-;8746:2;8728:21;;;8765:18;;;8758:30;8824:34;8819:2;8804:18;;8797:62;8891:2;8876:18;;8544:356::o;8905:380::-;8984:1;8980:12;;;;9027;;;9048:61;;9102:4;9094:6;9090:17;9080:27;;9048:61;9155:2;9147:6;9144:14;9124:18;9121:38;9118:161;;;9201:10;9196:3;9192:20;9189:1;9182:31;9236:4;9233:1;9226:15;9264:4;9261:1;9254:15;9118:161;;8905:380;;;:::o;10937:127::-;10998:10;10993:3;10989:20;10986:1;10979:31;11029:4;11026:1;11019:15;11053:4;11050:1;11043:15;11069:128;11109:3;11140:1;11136:6;11133:1;11130:13;11127:39;;;11146:18;;:::i;:::-;-1:-1:-1;11182:9:1;;11069:128::o;11202:168::-;11242:7;11308:1;11304;11300:6;11296:14;11293:1;11290:21;11285:1;11278:9;11271:17;11267:45;11264:71;;;11315:18;;:::i;:::-;-1:-1:-1;11355:9:1;;11202:168::o;11375:127::-;11436:10;11431:3;11427:20;11424:1;11417:31;11467:4;11464:1;11457:15;11491:4;11488:1;11481:15;11507:120;11547:1;11573;11563:35;;11578:18;;:::i;:::-;-1:-1:-1;11612:9:1;;11507:120::o;11632:125::-;11672:4;11700:1;11697;11694:8;11691:34;;;11705:18;;:::i;:::-;-1:-1:-1;11742:9:1;;11632:125::o;12461:351::-;12663:2;12645:21;;;12702:2;12682:18;;;12675:30;12741:29;12736:2;12721:18;;12714:57;12803:2;12788:18;;12461:351::o;12817:413::-;13019:2;13001:21;;;13058:2;13038:18;;;13031:30;13097:34;13092:2;13077:18;;13070:62;-1:-1:-1;;;13163:2:1;13148:18;;13141:47;13220:3;13205:19;;12817:413::o;15914:346::-;16116:2;16098:21;;;16155:2;16135:18;;;16128:30;-1:-1:-1;;;16189:2:1;16174:18;;16167:52;16251:2;16236:18;;15914:346::o;16265:127::-;16326:10;16321:3;16317:20;16314:1;16307:31;16357:4;16354:1;16347:15;16381:4;16378:1;16371:15;16397:135;16436:3;-1:-1:-1;;16457:17:1;;16454:43;;;16477:18;;:::i;:::-;-1:-1:-1;16524:1:1;16513:13;;16397:135::o;18472:637::-;18752:3;18790:6;18784:13;18806:53;18852:6;18847:3;18840:4;18832:6;18828:17;18806:53;:::i;:::-;18922:13;;18881:16;;;;18944:57;18922:13;18881:16;18978:4;18966:17;;18944:57;:::i;:::-;-1:-1:-1;;;19023:20:1;;19052:22;;;19101:1;19090:13;;18472:637;-1:-1:-1;;;;18472:637:1:o;23289:414::-;23491:2;23473:21;;;23530:2;23510:18;;;23503:30;23569:34;23564:2;23549:18;;23542:62;-1:-1:-1;;;23635:2:1;23620:18;;23613:48;23693:3;23678:19;;23289:414::o;23708:112::-;23740:1;23766;23756:35;;23771:18;;:::i;:::-;-1:-1:-1;23805:9:1;;23708:112::o;24059:489::-;-1:-1:-1;;;;;24328:15:1;;;24310:34;;24380:15;;24375:2;24360:18;;24353:43;24427:2;24412:18;;24405:34;;;24475:3;24470:2;24455:18;;24448:31;;;24253:4;;24496:46;;24522:19;;24514:6;24496:46;:::i;:::-;24488:54;24059:489;-1:-1:-1;;;;;;24059:489:1:o;24553:249::-;24622:6;24675:2;24663:9;24654:7;24650:23;24646:32;24643:52;;;24691:1;24688;24681:12;24643:52;24723:9;24717:16;24742:30;24766:5;24742:30;:::i

Swarm Source

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