ETH Price: $2,993.88 (-1.88%)
Gas: 2 Gwei

Token

Genesis Gods By NaelG (GG)
 

Overview

Max Total Supply

7,777 GG

Holders

879

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
arj.eth
Balance
10 GG
0x2f1e8158a8d7bfc325de7682f72cd16ecaa96267
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:
GenesisGodsByNaelG

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-03-25
*/

// SPDX-License-Identifier: MIT


// OpenZeppelin Contracts v4.4.1 (utils/cryptography/MerkleProof.sol)

pragma solidity ^0.8.0;


library MerkleProof {
   
    function verify(
        bytes32[] memory proof,
        bytes32 root,
        bytes32 leaf
    ) internal pure returns (bool) {
        return processProof(proof, leaf) == root;
    }


    function processProof(bytes32[] memory proof, bytes32 leaf) internal pure returns (bytes32) {
        bytes32 computedHash = leaf;
        for (uint256 i = 0; i < proof.length; i++) {
            bytes32 proofElement = proof[i];
            if (computedHash <= proofElement) {
                // Hash(current computed hash + current element of the proof)
                computedHash = _efficientHash(computedHash, proofElement);
            } else {
                // Hash(current element of the proof + current computed hash)
                computedHash = _efficientHash(proofElement, computedHash);
            }
        }
        return computedHash;
    }

    function _efficientHash(bytes32 a, bytes32 b) private pure returns (bytes32 value) {
        assembly {
            mstore(0x00, a)
            mstore(0x20, b)
            value := keccak256(0x00, 0x40)
        }
    }
}
pragma solidity ^0.8.0;
/**
 * @dev String operations.
 */
library Strings {
    bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef";

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

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

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

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

// File: @openzeppelin/contracts/utils/Context.sol


// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

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

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

// File: @openzeppelin/contracts/access/Ownable.sol


// OpenZeppelin Contracts v4.4.1 (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() {
        _transferOwnership(_msgSender());
    }

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

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

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

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

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

// File: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol)

pragma solidity ^0.8.0;

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

// File: @openzeppelin/contracts/utils/introspection/IERC165.sol


// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)

pragma solidity ^0.8.0;

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

// File: @openzeppelin/contracts/utils/introspection/ERC165.sol


// OpenZeppelin Contracts v4.4.1 (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:
 *
 * ```solidity
 * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
 *     return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId);
 * }
 * ```
 *
 * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation.
 */
abstract contract ERC165 is IERC165 {
    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        return interfaceId == type(IERC165).interfaceId;
    }
}

// File: @openzeppelin/contracts/token/ERC721/IERC721.sol


// OpenZeppelin Contracts v4.4.1 (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;


    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


// OpenZeppelin Contracts v4.4.1 (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/token/ERC721/extensions/IERC721Metadata.sol


// OpenZeppelin Contracts v4.4.1 (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: ERC2000000.sol



pragma solidity ^0.8.7;










library Address {
    function isContract(address account) internal view returns (bool) {
        uint size;
        assembly {
            size := extcodesize(account)
        }
        return size > 0;
    }
}

abstract contract ERC721 is Context, ERC165, IERC721, IERC721Metadata {
    using Address for address;
    using Strings for uint256;
    
    string private _name;
    string private _symbol;

    // Mapping from token ID to owner address
    address[] internal _owners;

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

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

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

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

        uint count;
        uint length= _owners.length;
        for( uint i; i < length; ++i ){
          if( owner == _owners[i] )
            ++count;
        }
        delete length;
        return count;
    }

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

        // Clear approvals from the previous owner
        _approve(address(0), tokenId);
        _owners[tokenId] = to;

        emit Transfer(from, to, tokenId);
    }

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

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

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


pragma solidity ^0.8.7;


/**
 * @dev This implements an optional extension of {ERC721} defined in the EIP that adds
 * enumerability of all the token ids in the contract as well as all token ids owned by each
 * account but rips out the core of the gas-wasting processing that comes from OpenZeppelin.
 */
abstract contract ERC721Enumerable is ERC721, IERC721Enumerable {
    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override(IERC165, ERC721) returns (bool) {
        return interfaceId == type(IERC721Enumerable).interfaceId || super.supportsInterface(interfaceId);
    }

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

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

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

        uint count;
        for(uint i; i < _owners.length; i++){
            if(owner == _owners[i]){
                if(count == index) return i;
                else count++;
            }
        }

        revert("ERC721Enumerable: owner index out of bounds");
    }
}
    pragma solidity ^0.8.7;
    contract GenesisGodsByNaelG is ERC721Enumerable,  Ownable {
    using Strings for uint256;


  string private uriPrefix = "";
  string public uriSuffix = ".json";
  string public hiddenMetaURL = "ipfs://QmNmd1JzdJzp2ABEFED852J1C9U1irMWBKo4c9z9gYz3NF";

  bytes32 public whitelistMerkleRoot = 0x29998d0571bc2b18db4bd7cf4f4c30de7199adca2ebe4a08c10356f2e0702484;
  bytes32 public whitelistOGMerkleRoot ;

  uint256 public cost = 0.07 ether;
  uint256 public whiteListCost = 0.07 ether;
  uint256 public constant maxSupply = 7777; 
  uint256 public maxMintAmountPerTx = 5;  
  uint256 public maxWLMintAmountPerTx = 3; 

mapping (address => uint) allowedWLMint;
mapping (address => uint) allowedOGMint;

  uint256 public maxMintingInPresale = 3000;

  bool public revealed = false;
  bool public paused = true;
  bool public WLpaused = true;

  constructor() ERC721("Genesis Gods By NaelG", "GG") {
    
  }
 
  function mint(uint256 _mintAmount) external payable  {
    uint256 totalSupply = _owners.length;
    require(totalSupply + _mintAmount <= maxSupply, "Excedes max supply.");
    require(_mintAmount <= maxMintAmountPerTx, "Exceeds max per transaction.");

    require(!paused, "The contract is paused!");
    require(msg.value == cost * _mintAmount, "Insufficient funds!");
     for(uint i; i < _mintAmount; i++) {
    _mint(msg.sender, totalSupply + i);
     }
     delete totalSupply;
     delete _mintAmount;
  }
  
  function adminMint(uint256 _mintAmount, address _receiver) external onlyOwner {
    uint256 totalSupply = _owners.length;
    for(uint i; i < _mintAmount; i++) {
    _mint(_receiver , totalSupply + i);
     }
     delete _mintAmount;
     delete _receiver;
     delete totalSupply;
  }
   function whitelistOGMint(uint256 _mintAmount, bytes32[] calldata merkleProof) external {
    uint256 totalSupply = _owners.length;
    bytes32  leafnode = getLeafNode(msg.sender);
    require(_verify(leafnode ,   merkleProof ,whitelistOGMerkleRoot ),  "Invalid merkle proof");
    require(_mintAmount + allowedOGMint[msg.sender] <= maxWLMintAmountPerTx, "Exceeds max per transaction.");
    require(!WLpaused, "Whitelist minting is over!");
    require(totalSupply <= maxMintingInPresale ,"Whitelist minting is over!");
    

       
    for(uint i; i < _mintAmount; i++) {
    _mint(msg.sender , totalSupply + i);
     }
     allowedOGMint[msg.sender] += _mintAmount;
      delete totalSupply;
      delete _mintAmount;
      delete leafnode; 
    
    }


 function setWhitelistMerkleRoot(bytes32 _whitelistMerkleRoot) external onlyOwner {
        whitelistMerkleRoot = _whitelistMerkleRoot;
    }

    function setWhitelistOGMerkleRoot(bytes32 _whitelistOGMerkleRoot) external onlyOwner {
        whitelistOGMerkleRoot = _whitelistOGMerkleRoot;
    }

    
    function getLeafNode(address _leaf) internal pure returns (bytes32 temp)
    {
        return keccak256(abi.encodePacked(_leaf));
    }
    function _verify(bytes32 leaf, bytes32[] memory proof , bytes32 merkleRoot) internal pure returns (bool) {
        return MerkleProof.verify(proof, merkleRoot, leaf);
    }

    function whitelistMint(uint256 _mintAmount, bytes32[] calldata merkleProof) external payable {
        uint256 totalSupply = _owners.length;
      bytes32  leafnode = getLeafNode(msg.sender);
        require(_verify(leafnode ,   merkleProof , whitelistMerkleRoot  ),  "Invalid merkle proof");
      require(_mintAmount +  allowedWLMint[msg.sender] <= maxWLMintAmountPerTx, "Exceeds max per transaction.");

    require(!WLpaused, "The contract is paused!");
    require(msg.value == whiteListCost * _mintAmount, "Insufficient funds!");
    require(totalSupply <= maxMintingInPresale ,"Whitelist minting is over!");

      
    for(uint i; i < _mintAmount; i++) {
    _mint(msg.sender , totalSupply + i);
     }
     allowedWLMint[msg.sender] += _mintAmount;
      delete totalSupply;
      delete _mintAmount;
      delete leafnode; 
    }

  function tokenURI(uint256 _tokenId)
    public
    view
    virtual
    override
    returns (string memory)
  {
    require(
      _exists(_tokenId),
      "ERC721Metadata: URI query for nonexistent token"
    );

    if (revealed == false)
    {
        return hiddenMetaURL;
    }

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


  function setCost(uint256 _cost) external onlyOwner {
    cost = _cost;
    delete _cost;
  }
  function setWLCost(uint256 _cost) external onlyOwner {
    whiteListCost = _cost;
    delete _cost;
  }

  function setMaxMintAmountPerTx(uint256 _maxMintAmountPerTx) external onlyOwner {
    maxMintAmountPerTx = _maxMintAmountPerTx;
    delete _maxMintAmountPerTx;
  }
  function setMaxWLMintAmountPerTx (uint256 _maxMintAmountPerTx) external onlyOwner {
    maxMintAmountPerTx = _maxMintAmountPerTx;
    delete _maxMintAmountPerTx;
  }
  
  function setmaxMintingInPresale(uint256 _maxMintingInPresale) external onlyOwner {
    maxMintingInPresale = _maxMintingInPresale;
    delete _maxMintingInPresale;
  }

  function setUriPrefix(string memory _uriPrefix) external onlyOwner {
    uriPrefix = _uriPrefix;
  }


  function setPaused() external onlyOwner {
    paused = !paused;
  }
  function setRevealed() external onlyOwner {
    revealed = !revealed;
  }
  function setHiddenURL(string memory _hiddenMetaURL) external onlyOwner {
    hiddenMetaURL = _hiddenMetaURL;
  }
  
  function setWLPaused() external onlyOwner {
    WLpaused = !WLpaused;
  }

  function withdraw() external onlyOwner {
  uint _balance = address(this).balance;
     payable(0xFd28763877C0dA52C9C3D78a795dAEB4047A9643).transfer(_balance * 50 / 100 ); 
     payable(0x39490bFeFE9C49fE5Af7E48b0828289a05468B9b).transfer(_balance * 30 / 100 ); 
     payable(0x6B09aC17938055E0A81DED39e79524129A7Ef587).transfer(_balance * 10 / 100 ); 
     payable(0x0FfD02b6Dd315552be92D111d1d3a6D59E905902).transfer(_balance * 10 / 100 );
       
  }

   function _mint(address to, uint256 tokenId) internal virtual override {
        _owners.push(to);
        emit Transfer(address(0), to, tokenId);
    }

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"WLpaused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"},{"internalType":"address","name":"_receiver","type":"address"}],"name":"adminMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","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":[],"name":"hiddenMetaURL","outputs":[{"internalType":"string","name":"","type":"string"}],"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":"maxMintAmountPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintingInPresale","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWLMintAmountPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","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":"uint256","name":"_cost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_hiddenMetaURL","type":"string"}],"name":"setHiddenURL","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxMintAmountPerTx","type":"uint256"}],"name":"setMaxMintAmountPerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxMintAmountPerTx","type":"uint256"}],"name":"setMaxWLMintAmountPerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setPaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setRevealed","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriPrefix","type":"string"}],"name":"setUriPrefix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_cost","type":"uint256"}],"name":"setWLCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setWLPaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_whitelistMerkleRoot","type":"bytes32"}],"name":"setWhitelistMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_whitelistOGMerkleRoot","type":"bytes32"}],"name":"setWhitelistOGMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxMintingInPresale","type":"uint256"}],"name":"setmaxMintingInPresale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"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":[],"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":[],"name":"uriSuffix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"whiteListCost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"whitelistMerkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"},{"internalType":"bytes32[]","name":"merkleProof","type":"bytes32[]"}],"name":"whitelistMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"whitelistOGMerkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"},{"internalType":"bytes32[]","name":"merkleProof","type":"bytes32[]"}],"name":"whitelistOGMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60a06040819052600060808190526200001b91600691620001cd565b5060408051808201909152600580825264173539b7b760d91b60209092019182526200004a91600791620001cd565b5060405180606001604052806035815260200162002c676035913980516200007b91600891602090910190620001cd565b507f29998d0571bc2b18db4bd7cf4f4c30de7199adca2ebe4a08c10356f2e070248460095566f8b0a10e470000600b819055600c556005600d556003600e55610bb86011556012805462ffffff191662010100179055348015620000de57600080fd5b50604080518082018252601581527f47656e6573697320476f6473204279204e61656c470000000000000000000000602080830191825283518085019094526002845261474760f01b9084015281519192916200013e91600091620001cd565b50805162000154906001906020840190620001cd565b505050620001716200016b6200017760201b60201c565b6200017b565b620002b0565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b828054620001db9062000273565b90600052602060002090601f016020900481019282620001ff57600085556200024a565b82601f106200021a57805160ff19168380011785556200024a565b828001600101855582156200024a579182015b828111156200024a5782518255916020019190600101906200022d565b50620002589291506200025c565b5090565b5b808211156200025857600081556001016200025d565b600181811c908216806200028857607f821691505b60208210811415620002aa57634e487b7160e01b600052602260045260246000fd5b50919050565b6129a780620002c06000396000f3fe6080604052600436106102ae5760003560e01c8063715018a611610175578063b071401b116100dc578063d1f0e80511610095578063e985e9c51161006f578063e985e9c51461079c578063f2fde38b146107e5578063fe867dc114610805578063ff16fe471461082557600080fd5b8063d1f0e8051461075d578063d2cab05614610773578063d5abeb011461078657600080fd5b8063b071401b146106bd578063b88d4fde146106dd578063bd32fb66146106fd578063c87b56dd1461071d578063d0e1f7be146106bd578063d1d192131461073d57600080fd5b806394354fd01161012e57806394354fd01461062957806395d89b411461063f578063a0712d6814610654578063a22cb46514610667578063aa98e0c614610687578063abf22b911461069d57600080fd5b8063715018a6146105805780637ec4a659146105955780637f6e9093146105b557806387572836146105d55780638da5cb5b146105f55780639257e0441461061357600080fd5b80633b229b891161021957806351830227116101d257806351830227146104dc5780635503a0e8146104f65780635c8ebf301461050b5780635c975abb146105215780636352211e1461054057806370a082311461056057600080fd5b80633b229b891461043d5780633bd64968146104525780633ccfd60b1461046757806342842e0e1461047c57806344a0d68a1461049c5780634f6ccce7146104bc57600080fd5b806313faede61161026b57806313faede61461039957806318160ddd146103bd57806323b872dd146103d2578063275f4c7a146103f25780632f745c591461040857806337a66d851461042857600080fd5b806301ffc9a7146102b357806306fdde03146102e8578063081812fc1461030a578063093cfa6314610342578063095ea7b3146103595780630dc28efe14610379575b600080fd5b3480156102bf57600080fd5b506102d36102ce366004612415565b610845565b60405190151581526020015b60405180910390f35b3480156102f457600080fd5b506102fd610870565b6040516102df9190612667565b34801561031657600080fd5b5061032a6103253660046123fc565b610902565b6040516001600160a01b0390911681526020016102df565b34801561034e57600080fd5b5061035761098f565b005b34801561036557600080fd5b506103576103743660046123d2565b6109d8565b34801561038557600080fd5b50610357610394366004612498565b610aee565b3480156103a557600080fd5b506103af600b5481565b6040519081526020016102df565b3480156103c957600080fd5b506002546103af565b3480156103de57600080fd5b506103576103ed3660046122de565b610b51565b3480156103fe57600080fd5b506103af60115481565b34801561041457600080fd5b506103af6104233660046123d2565b610b82565b34801561043457600080fd5b50610357610c35565b34801561044957600080fd5b506102fd610c7c565b34801561045e57600080fd5b50610357610d0a565b34801561047357600080fd5b50610357610d48565b34801561048857600080fd5b506103576104973660046122de565b610ed6565b3480156104a857600080fd5b506103576104b73660046123fc565b610ef1565b3480156104c857600080fd5b506103af6104d73660046123fc565b610f20565b3480156104e857600080fd5b506012546102d39060ff1681565b34801561050257600080fd5b506102fd610f8d565b34801561051757600080fd5b506103af600a5481565b34801561052d57600080fd5b506012546102d390610100900460ff1681565b34801561054c57600080fd5b5061032a61055b3660046123fc565b610f9a565b34801561056c57600080fd5b506103af61057b366004612290565b611026565b34801561058c57600080fd5b506103576110f8565b3480156105a157600080fd5b506103576105b036600461244f565b61112e565b3480156105c157600080fd5b506012546102d39062010000900460ff1681565b3480156105e157600080fd5b506103576105f036600461244f565b61116b565b34801561060157600080fd5b506005546001600160a01b031661032a565b34801561061f57600080fd5b506103af600c5481565b34801561063557600080fd5b506103af600d5481565b34801561064b57600080fd5b506102fd6111a8565b6103576106623660046123fc565b6111b7565b34801561067357600080fd5b50610357610682366004612396565b6112fc565b34801561069357600080fd5b506103af60095481565b3480156106a957600080fd5b506103576106b83660046124bb565b6113c1565b3480156106c957600080fd5b506103576106d83660046123fc565b611532565b3480156106e957600080fd5b506103576106f836600461231a565b611561565b34801561070957600080fd5b506103576107183660046123fc565b611593565b34801561072957600080fd5b506102fd6107383660046123fc565b6115c2565b34801561074957600080fd5b506103576107583660046123fc565b61172c565b34801561076957600080fd5b506103af600e5481565b6103576107813660046124bb565b61175b565b34801561079257600080fd5b506103af611e6181565b3480156107a857600080fd5b506102d36107b73660046122ab565b6001600160a01b03918216600090815260046020908152604080832093909416825291909152205460ff1690565b3480156107f157600080fd5b50610357610800366004612290565b61193c565b34801561081157600080fd5b506103576108203660046123fc565b6119d7565b34801561083157600080fd5b506103576108403660046123fc565b611a06565b60006001600160e01b0319821663780e9d6360e01b148061086a575061086a82611a35565b92915050565b60606000805461087f90612899565b80601f01602080910402602001604051908101604052809291908181526020018280546108ab90612899565b80156108f85780601f106108cd576101008083540402835291602001916108f8565b820191906000526020600020905b8154815290600101906020018083116108db57829003601f168201915b5050505050905090565b600061090d82611a85565b6109735760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600360205260409020546001600160a01b031690565b6005546001600160a01b031633146109b95760405162461bcd60e51b815260040161096a9061274e565b6012805462ff0000198116620100009182900460ff1615909102179055565b60006109e382610f9a565b9050806001600160a01b0316836001600160a01b03161415610a515760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b606482015260840161096a565b336001600160a01b0382161480610a6d5750610a6d81336107b7565b610adf5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606482015260840161096a565b610ae98383611acf565b505050565b6005546001600160a01b03163314610b185760405162461bcd60e51b815260040161096a9061274e565b60025460005b83811015610b4b57610b3983610b34838561280b565b611b3d565b80610b43816128d4565b915050610b1e565b50505050565b610b5b3382611bb9565b610b775760405162461bcd60e51b815260040161096a90612783565b610ae9838383611ca3565b6000610b8d83611026565b8210610bab5760405162461bcd60e51b815260040161096a9061267a565b6000805b600254811015610c1c5760028181548110610bcc57610bcc61292f565b6000918252602090912001546001600160a01b0386811691161415610c0a5783821415610bfc57915061086a9050565b81610c06816128d4565b9250505b80610c14816128d4565b915050610baf565b5060405162461bcd60e51b815260040161096a9061267a565b6005546001600160a01b03163314610c5f5760405162461bcd60e51b815260040161096a9061274e565b6012805461ff001981166101009182900460ff1615909102179055565b60088054610c8990612899565b80601f0160208091040260200160405190810160405280929190818152602001828054610cb590612899565b8015610d025780601f10610cd757610100808354040283529160200191610d02565b820191906000526020600020905b815481529060010190602001808311610ce557829003601f168201915b505050505081565b6005546001600160a01b03163314610d345760405162461bcd60e51b815260040161096a9061274e565b6012805460ff19811660ff90911615179055565b6005546001600160a01b03163314610d725760405162461bcd60e51b815260040161096a9061274e565b4773fd28763877c0da52c9c3d78a795daeb4047a96436108fc6064610d98846032612837565b610da29190612823565b6040518115909202916000818181858888f19350505050158015610dca573d6000803e3d6000fd5b507339490bfefe9c49fe5af7e48b0828289a05468b9b6108fc6064610df084601e612837565b610dfa9190612823565b6040518115909202916000818181858888f19350505050158015610e22573d6000803e3d6000fd5b50736b09ac17938055e0a81ded39e79524129a7ef5876108fc6064610e4884600a612837565b610e529190612823565b6040518115909202916000818181858888f19350505050158015610e7a573d6000803e3d6000fd5b50730ffd02b6dd315552be92d111d1d3a6d59e9059026108fc6064610ea084600a612837565b610eaa9190612823565b6040518115909202916000818181858888f19350505050158015610ed2573d6000803e3d6000fd5b5050565b610ae983838360405180602001604052806000815250611561565b6005546001600160a01b03163314610f1b5760405162461bcd60e51b815260040161096a9061274e565b600b55565b6002546000908210610f895760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b606482015260840161096a565b5090565b60078054610c8990612899565b60008060028381548110610fb057610fb061292f565b6000918252602090912001546001600160a01b031690508061086a5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b606482015260840161096a565b60006001600160a01b0382166110915760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b606482015260840161096a565b600254600090815b818110156110ef57600281815481106110b4576110b461292f565b6000918252602090912001546001600160a01b03868116911614156110df576110dc836128d4565b92505b6110e8816128d4565b9050611099565b50909392505050565b6005546001600160a01b031633146111225760405162461bcd60e51b815260040161096a9061274e565b61112c6000611df9565b565b6005546001600160a01b031633146111585760405162461bcd60e51b815260040161096a9061274e565b8051610ed290600690602084019061216e565b6005546001600160a01b031633146111955760405162461bcd60e51b815260040161096a9061274e565b8051610ed290600890602084019061216e565b60606001805461087f90612899565b600254611e616111c7838361280b565b111561120b5760405162461bcd60e51b815260206004820152601360248201527222bc31b2b232b99036b0bc1039bab838363c9760691b604482015260640161096a565b600d5482111561122d5760405162461bcd60e51b815260040161096a906127d4565b601254610100900460ff161561127f5760405162461bcd60e51b815260206004820152601760248201527654686520636f6e7472616374206973207061757365642160481b604482015260640161096a565b81600b5461128d9190612837565b34146112d15760405162461bcd60e51b8152602060048201526013602482015272496e73756666696369656e742066756e64732160681b604482015260640161096a565b60005b82811015610ae9576112ea33610b34838561280b565b806112f4816128d4565b9150506112d4565b6001600160a01b0382163314156113555760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161096a565b3360008181526004602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b60025460006113cf33611e4b565b90506114128185858080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050600a549150611e8a9050565b6114555760405162461bcd60e51b815260206004820152601460248201527324b73b30b634b21036b2b935b63290383937b7b360611b604482015260640161096a565b600e5433600090815260106020526040902054611472908761280b565b11156114905760405162461bcd60e51b815260040161096a906127d4565b60125462010000900460ff16156114b95760405162461bcd60e51b815260040161096a90612717565b6011548211156114db5760405162461bcd60e51b815260040161096a90612717565b60005b85811015611506576114f433610b34838661280b565b806114fe816128d4565b9150506114de565b50336000908152601060205260408120805487929061152690849061280b565b90915550505050505050565b6005546001600160a01b0316331461155c5760405162461bcd60e51b815260040161096a9061274e565b600d55565b61156b3383611bb9565b6115875760405162461bcd60e51b815260040161096a90612783565b610b4b84848484611e97565b6005546001600160a01b031633146115bd5760405162461bcd60e51b815260040161096a9061274e565b600955565b60606115cd82611a85565b6116315760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b606482015260840161096a565b60125460ff166116cd576008805461164890612899565b80601f016020809104026020016040519081016040528092919081815260200182805461167490612899565b80156116c15780601f10611696576101008083540402835291602001916116c1565b820191906000526020600020905b8154815290600101906020018083116116a457829003601f168201915b50505050509050919050565b60006116d7611eca565b905060008151116116f75760405180602001604052806000815250611725565b8061170184611ed9565b600760405160200161171593929190612566565b6040516020818303038152906040525b9392505050565b6005546001600160a01b031633146117565760405162461bcd60e51b815260040161096a9061274e565b600c55565b600254600061176933611e4b565b90506117ac81858580806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250506009549150611e8a9050565b6117ef5760405162461bcd60e51b815260206004820152601460248201527324b73b30b634b21036b2b935b63290383937b7b360611b604482015260640161096a565b600e54336000908152600f602052604090205461180c908761280b565b111561182a5760405162461bcd60e51b815260040161096a906127d4565b60125462010000900460ff161561187d5760405162461bcd60e51b815260206004820152601760248201527654686520636f6e7472616374206973207061757365642160481b604482015260640161096a565b84600c5461188b9190612837565b34146118cf5760405162461bcd60e51b8152602060048201526013602482015272496e73756666696369656e742066756e64732160681b604482015260640161096a565b6011548211156118f15760405162461bcd60e51b815260040161096a90612717565b60005b8581101561191c5761190a33610b34838661280b565b80611914816128d4565b9150506118f4565b50336000908152600f60205260408120805487929061152690849061280b565b6005546001600160a01b031633146119665760405162461bcd60e51b815260040161096a9061274e565b6001600160a01b0381166119cb5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161096a565b6119d481611df9565b50565b6005546001600160a01b03163314611a015760405162461bcd60e51b815260040161096a9061274e565b601155565b6005546001600160a01b03163314611a305760405162461bcd60e51b815260040161096a9061274e565b600a55565b60006001600160e01b031982166380ac58cd60e01b1480611a6657506001600160e01b03198216635b5e139f60e01b145b8061086a57506301ffc9a760e01b6001600160e01b031983161461086a565b6002546000908210801561086a575060006001600160a01b031660028381548110611ab257611ab261292f565b6000918252602090912001546001600160a01b0316141592915050565b600081815260036020526040902080546001600160a01b0319166001600160a01b0384169081179091558190611b0482610f9a565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6002805460018101825560009182527f405787fa12a823e0f2b7631cc41b3ba8828b3321ca811111fa75cd3aa3bb5ace0180546001600160a01b0319166001600160a01b0385169081179091556040518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6000611bc482611a85565b611c255760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161096a565b6000611c3083610f9a565b9050806001600160a01b0316846001600160a01b03161480611c6b5750836001600160a01b0316611c6084610902565b6001600160a01b0316145b80611c9b57506001600160a01b0380821660009081526004602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316611cb682610f9a565b6001600160a01b031614611d1e5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b606482015260840161096a565b6001600160a01b038216611d805760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b606482015260840161096a565b611d8b600082611acf565b8160028281548110611d9f57611d9f61292f565b6000918252602082200180546001600160a01b0319166001600160a01b03938416179055604051839285811692908716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9190a4505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6040516bffffffffffffffffffffffff19606083901b166020820152600090603401604051602081830303815290604052805190602001209050919050565b6000611c9b838386611fd7565b611ea2848484611ca3565b611eae84848484611fed565b610b4b5760405162461bcd60e51b815260040161096a906126c5565b60606006805461087f90612899565b606081611efd5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611f275780611f11816128d4565b9150611f209050600a83612823565b9150611f01565b60008167ffffffffffffffff811115611f4257611f42612945565b6040519080825280601f01601f191660200182016040528015611f6c576020820181803683370190505b5090505b8415611c9b57611f81600183612856565b9150611f8e600a866128ef565b611f9990603061280b565b60f81b818381518110611fae57611fae61292f565b60200101906001600160f81b031916908160001a905350611fd0600a86612823565b9450611f70565b600082611fe485846120fa565b14949350505050565b60006001600160a01b0384163b156120ef57604051630a85bd0160e11b81526001600160a01b0385169063150b7a029061203190339089908890889060040161262a565b602060405180830381600087803b15801561204b57600080fd5b505af192505050801561207b575060408051601f3d908101601f1916820190925261207891810190612432565b60015b6120d5573d8080156120a9576040519150601f19603f3d011682016040523d82523d6000602084013e6120ae565b606091505b5080516120cd5760405162461bcd60e51b815260040161096a906126c5565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611c9b565b506001949350505050565b600081815b845181101561216657600085828151811061211c5761211c61292f565b602002602001015190508083116121425760008381526020829052604090209250612153565b600081815260208490526040902092505b508061215e816128d4565b9150506120ff565b509392505050565b82805461217a90612899565b90600052602060002090601f01602090048101928261219c57600085556121e2565b82601f106121b557805160ff19168380011785556121e2565b828001600101855582156121e2579182015b828111156121e25782518255916020019190600101906121c7565b50610f899291505b80821115610f8957600081556001016121ea565b600067ffffffffffffffff8084111561221957612219612945565b604051601f8501601f19908116603f0116810190828211818310171561224157612241612945565b8160405280935085815286868601111561225a57600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b038116811461228b57600080fd5b919050565b6000602082840312156122a257600080fd5b61172582612274565b600080604083850312156122be57600080fd5b6122c783612274565b91506122d560208401612274565b90509250929050565b6000806000606084860312156122f357600080fd5b6122fc84612274565b925061230a60208501612274565b9150604084013590509250925092565b6000806000806080858703121561233057600080fd5b61233985612274565b935061234760208601612274565b925060408501359150606085013567ffffffffffffffff81111561236a57600080fd5b8501601f8101871361237b57600080fd5b61238a878235602084016121fe565b91505092959194509250565b600080604083850312156123a957600080fd5b6123b283612274565b9150602083013580151581146123c757600080fd5b809150509250929050565b600080604083850312156123e557600080fd5b6123ee83612274565b946020939093013593505050565b60006020828403121561240e57600080fd5b5035919050565b60006020828403121561242757600080fd5b81356117258161295b565b60006020828403121561244457600080fd5b81516117258161295b565b60006020828403121561246157600080fd5b813567ffffffffffffffff81111561247857600080fd5b8201601f8101841361248957600080fd5b611c9b848235602084016121fe565b600080604083850312156124ab57600080fd5b823591506122d560208401612274565b6000806000604084860312156124d057600080fd5b83359250602084013567ffffffffffffffff808211156124ef57600080fd5b818601915086601f83011261250357600080fd5b81358181111561251257600080fd5b8760208260051b850101111561252757600080fd5b6020830194508093505050509250925092565b6000815180845261255281602086016020860161286d565b601f01601f19169290920160200192915050565b6000845160206125798285838a0161286d565b85519184019161258c8184848a0161286d565b8554920191600090600181811c90808316806125a957607f831692505b8583108114156125c757634e487b7160e01b85526022600452602485fd5b8080156125db57600181146125ec57612619565b60ff19851688528388019550612619565b60008b81526020902060005b858110156126115781548a8201529084019088016125f8565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061265d9083018461253a565b9695505050505050565b602081526000611725602083018461253a565b6020808252602b908201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560408201526a74206f6620626f756e647360a81b606082015260800190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252601a908201527f57686974656c697374206d696e74696e67206973206f76657221000000000000604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6020808252601c908201527f45786365656473206d617820706572207472616e73616374696f6e2e00000000604082015260600190565b6000821982111561281e5761281e612903565b500190565b60008261283257612832612919565b500490565b600081600019048311821515161561285157612851612903565b500290565b60008282101561286857612868612903565b500390565b60005b83811015612888578181015183820152602001612870565b83811115610b4b5750506000910152565b600181811c908216806128ad57607f821691505b602082108114156128ce57634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156128e8576128e8612903565b5060010190565b6000826128fe576128fe612919565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b0319811681146119d457600080fdfea26469706673582212202074939fd3268a2c7e25319a1d57b4998b2ec083da63ff06626747c8a28ca8ea64736f6c63430008070033697066733a2f2f516d4e6d64314a7a644a7a70324142454645443835324a314339553169724d57424b6f3463397a3967597a334e46

Deployed Bytecode

0x6080604052600436106102ae5760003560e01c8063715018a611610175578063b071401b116100dc578063d1f0e80511610095578063e985e9c51161006f578063e985e9c51461079c578063f2fde38b146107e5578063fe867dc114610805578063ff16fe471461082557600080fd5b8063d1f0e8051461075d578063d2cab05614610773578063d5abeb011461078657600080fd5b8063b071401b146106bd578063b88d4fde146106dd578063bd32fb66146106fd578063c87b56dd1461071d578063d0e1f7be146106bd578063d1d192131461073d57600080fd5b806394354fd01161012e57806394354fd01461062957806395d89b411461063f578063a0712d6814610654578063a22cb46514610667578063aa98e0c614610687578063abf22b911461069d57600080fd5b8063715018a6146105805780637ec4a659146105955780637f6e9093146105b557806387572836146105d55780638da5cb5b146105f55780639257e0441461061357600080fd5b80633b229b891161021957806351830227116101d257806351830227146104dc5780635503a0e8146104f65780635c8ebf301461050b5780635c975abb146105215780636352211e1461054057806370a082311461056057600080fd5b80633b229b891461043d5780633bd64968146104525780633ccfd60b1461046757806342842e0e1461047c57806344a0d68a1461049c5780634f6ccce7146104bc57600080fd5b806313faede61161026b57806313faede61461039957806318160ddd146103bd57806323b872dd146103d2578063275f4c7a146103f25780632f745c591461040857806337a66d851461042857600080fd5b806301ffc9a7146102b357806306fdde03146102e8578063081812fc1461030a578063093cfa6314610342578063095ea7b3146103595780630dc28efe14610379575b600080fd5b3480156102bf57600080fd5b506102d36102ce366004612415565b610845565b60405190151581526020015b60405180910390f35b3480156102f457600080fd5b506102fd610870565b6040516102df9190612667565b34801561031657600080fd5b5061032a6103253660046123fc565b610902565b6040516001600160a01b0390911681526020016102df565b34801561034e57600080fd5b5061035761098f565b005b34801561036557600080fd5b506103576103743660046123d2565b6109d8565b34801561038557600080fd5b50610357610394366004612498565b610aee565b3480156103a557600080fd5b506103af600b5481565b6040519081526020016102df565b3480156103c957600080fd5b506002546103af565b3480156103de57600080fd5b506103576103ed3660046122de565b610b51565b3480156103fe57600080fd5b506103af60115481565b34801561041457600080fd5b506103af6104233660046123d2565b610b82565b34801561043457600080fd5b50610357610c35565b34801561044957600080fd5b506102fd610c7c565b34801561045e57600080fd5b50610357610d0a565b34801561047357600080fd5b50610357610d48565b34801561048857600080fd5b506103576104973660046122de565b610ed6565b3480156104a857600080fd5b506103576104b73660046123fc565b610ef1565b3480156104c857600080fd5b506103af6104d73660046123fc565b610f20565b3480156104e857600080fd5b506012546102d39060ff1681565b34801561050257600080fd5b506102fd610f8d565b34801561051757600080fd5b506103af600a5481565b34801561052d57600080fd5b506012546102d390610100900460ff1681565b34801561054c57600080fd5b5061032a61055b3660046123fc565b610f9a565b34801561056c57600080fd5b506103af61057b366004612290565b611026565b34801561058c57600080fd5b506103576110f8565b3480156105a157600080fd5b506103576105b036600461244f565b61112e565b3480156105c157600080fd5b506012546102d39062010000900460ff1681565b3480156105e157600080fd5b506103576105f036600461244f565b61116b565b34801561060157600080fd5b506005546001600160a01b031661032a565b34801561061f57600080fd5b506103af600c5481565b34801561063557600080fd5b506103af600d5481565b34801561064b57600080fd5b506102fd6111a8565b6103576106623660046123fc565b6111b7565b34801561067357600080fd5b50610357610682366004612396565b6112fc565b34801561069357600080fd5b506103af60095481565b3480156106a957600080fd5b506103576106b83660046124bb565b6113c1565b3480156106c957600080fd5b506103576106d83660046123fc565b611532565b3480156106e957600080fd5b506103576106f836600461231a565b611561565b34801561070957600080fd5b506103576107183660046123fc565b611593565b34801561072957600080fd5b506102fd6107383660046123fc565b6115c2565b34801561074957600080fd5b506103576107583660046123fc565b61172c565b34801561076957600080fd5b506103af600e5481565b6103576107813660046124bb565b61175b565b34801561079257600080fd5b506103af611e6181565b3480156107a857600080fd5b506102d36107b73660046122ab565b6001600160a01b03918216600090815260046020908152604080832093909416825291909152205460ff1690565b3480156107f157600080fd5b50610357610800366004612290565b61193c565b34801561081157600080fd5b506103576108203660046123fc565b6119d7565b34801561083157600080fd5b506103576108403660046123fc565b611a06565b60006001600160e01b0319821663780e9d6360e01b148061086a575061086a82611a35565b92915050565b60606000805461087f90612899565b80601f01602080910402602001604051908101604052809291908181526020018280546108ab90612899565b80156108f85780601f106108cd576101008083540402835291602001916108f8565b820191906000526020600020905b8154815290600101906020018083116108db57829003601f168201915b5050505050905090565b600061090d82611a85565b6109735760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600360205260409020546001600160a01b031690565b6005546001600160a01b031633146109b95760405162461bcd60e51b815260040161096a9061274e565b6012805462ff0000198116620100009182900460ff1615909102179055565b60006109e382610f9a565b9050806001600160a01b0316836001600160a01b03161415610a515760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b606482015260840161096a565b336001600160a01b0382161480610a6d5750610a6d81336107b7565b610adf5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606482015260840161096a565b610ae98383611acf565b505050565b6005546001600160a01b03163314610b185760405162461bcd60e51b815260040161096a9061274e565b60025460005b83811015610b4b57610b3983610b34838561280b565b611b3d565b80610b43816128d4565b915050610b1e565b50505050565b610b5b3382611bb9565b610b775760405162461bcd60e51b815260040161096a90612783565b610ae9838383611ca3565b6000610b8d83611026565b8210610bab5760405162461bcd60e51b815260040161096a9061267a565b6000805b600254811015610c1c5760028181548110610bcc57610bcc61292f565b6000918252602090912001546001600160a01b0386811691161415610c0a5783821415610bfc57915061086a9050565b81610c06816128d4565b9250505b80610c14816128d4565b915050610baf565b5060405162461bcd60e51b815260040161096a9061267a565b6005546001600160a01b03163314610c5f5760405162461bcd60e51b815260040161096a9061274e565b6012805461ff001981166101009182900460ff1615909102179055565b60088054610c8990612899565b80601f0160208091040260200160405190810160405280929190818152602001828054610cb590612899565b8015610d025780601f10610cd757610100808354040283529160200191610d02565b820191906000526020600020905b815481529060010190602001808311610ce557829003601f168201915b505050505081565b6005546001600160a01b03163314610d345760405162461bcd60e51b815260040161096a9061274e565b6012805460ff19811660ff90911615179055565b6005546001600160a01b03163314610d725760405162461bcd60e51b815260040161096a9061274e565b4773fd28763877c0da52c9c3d78a795daeb4047a96436108fc6064610d98846032612837565b610da29190612823565b6040518115909202916000818181858888f19350505050158015610dca573d6000803e3d6000fd5b507339490bfefe9c49fe5af7e48b0828289a05468b9b6108fc6064610df084601e612837565b610dfa9190612823565b6040518115909202916000818181858888f19350505050158015610e22573d6000803e3d6000fd5b50736b09ac17938055e0a81ded39e79524129a7ef5876108fc6064610e4884600a612837565b610e529190612823565b6040518115909202916000818181858888f19350505050158015610e7a573d6000803e3d6000fd5b50730ffd02b6dd315552be92d111d1d3a6d59e9059026108fc6064610ea084600a612837565b610eaa9190612823565b6040518115909202916000818181858888f19350505050158015610ed2573d6000803e3d6000fd5b5050565b610ae983838360405180602001604052806000815250611561565b6005546001600160a01b03163314610f1b5760405162461bcd60e51b815260040161096a9061274e565b600b55565b6002546000908210610f895760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b606482015260840161096a565b5090565b60078054610c8990612899565b60008060028381548110610fb057610fb061292f565b6000918252602090912001546001600160a01b031690508061086a5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b606482015260840161096a565b60006001600160a01b0382166110915760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b606482015260840161096a565b600254600090815b818110156110ef57600281815481106110b4576110b461292f565b6000918252602090912001546001600160a01b03868116911614156110df576110dc836128d4565b92505b6110e8816128d4565b9050611099565b50909392505050565b6005546001600160a01b031633146111225760405162461bcd60e51b815260040161096a9061274e565b61112c6000611df9565b565b6005546001600160a01b031633146111585760405162461bcd60e51b815260040161096a9061274e565b8051610ed290600690602084019061216e565b6005546001600160a01b031633146111955760405162461bcd60e51b815260040161096a9061274e565b8051610ed290600890602084019061216e565b60606001805461087f90612899565b600254611e616111c7838361280b565b111561120b5760405162461bcd60e51b815260206004820152601360248201527222bc31b2b232b99036b0bc1039bab838363c9760691b604482015260640161096a565b600d5482111561122d5760405162461bcd60e51b815260040161096a906127d4565b601254610100900460ff161561127f5760405162461bcd60e51b815260206004820152601760248201527654686520636f6e7472616374206973207061757365642160481b604482015260640161096a565b81600b5461128d9190612837565b34146112d15760405162461bcd60e51b8152602060048201526013602482015272496e73756666696369656e742066756e64732160681b604482015260640161096a565b60005b82811015610ae9576112ea33610b34838561280b565b806112f4816128d4565b9150506112d4565b6001600160a01b0382163314156113555760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161096a565b3360008181526004602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b60025460006113cf33611e4b565b90506114128185858080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050600a549150611e8a9050565b6114555760405162461bcd60e51b815260206004820152601460248201527324b73b30b634b21036b2b935b63290383937b7b360611b604482015260640161096a565b600e5433600090815260106020526040902054611472908761280b565b11156114905760405162461bcd60e51b815260040161096a906127d4565b60125462010000900460ff16156114b95760405162461bcd60e51b815260040161096a90612717565b6011548211156114db5760405162461bcd60e51b815260040161096a90612717565b60005b85811015611506576114f433610b34838661280b565b806114fe816128d4565b9150506114de565b50336000908152601060205260408120805487929061152690849061280b565b90915550505050505050565b6005546001600160a01b0316331461155c5760405162461bcd60e51b815260040161096a9061274e565b600d55565b61156b3383611bb9565b6115875760405162461bcd60e51b815260040161096a90612783565b610b4b84848484611e97565b6005546001600160a01b031633146115bd5760405162461bcd60e51b815260040161096a9061274e565b600955565b60606115cd82611a85565b6116315760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b606482015260840161096a565b60125460ff166116cd576008805461164890612899565b80601f016020809104026020016040519081016040528092919081815260200182805461167490612899565b80156116c15780601f10611696576101008083540402835291602001916116c1565b820191906000526020600020905b8154815290600101906020018083116116a457829003601f168201915b50505050509050919050565b60006116d7611eca565b905060008151116116f75760405180602001604052806000815250611725565b8061170184611ed9565b600760405160200161171593929190612566565b6040516020818303038152906040525b9392505050565b6005546001600160a01b031633146117565760405162461bcd60e51b815260040161096a9061274e565b600c55565b600254600061176933611e4b565b90506117ac81858580806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250506009549150611e8a9050565b6117ef5760405162461bcd60e51b815260206004820152601460248201527324b73b30b634b21036b2b935b63290383937b7b360611b604482015260640161096a565b600e54336000908152600f602052604090205461180c908761280b565b111561182a5760405162461bcd60e51b815260040161096a906127d4565b60125462010000900460ff161561187d5760405162461bcd60e51b815260206004820152601760248201527654686520636f6e7472616374206973207061757365642160481b604482015260640161096a565b84600c5461188b9190612837565b34146118cf5760405162461bcd60e51b8152602060048201526013602482015272496e73756666696369656e742066756e64732160681b604482015260640161096a565b6011548211156118f15760405162461bcd60e51b815260040161096a90612717565b60005b8581101561191c5761190a33610b34838661280b565b80611914816128d4565b9150506118f4565b50336000908152600f60205260408120805487929061152690849061280b565b6005546001600160a01b031633146119665760405162461bcd60e51b815260040161096a9061274e565b6001600160a01b0381166119cb5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161096a565b6119d481611df9565b50565b6005546001600160a01b03163314611a015760405162461bcd60e51b815260040161096a9061274e565b601155565b6005546001600160a01b03163314611a305760405162461bcd60e51b815260040161096a9061274e565b600a55565b60006001600160e01b031982166380ac58cd60e01b1480611a6657506001600160e01b03198216635b5e139f60e01b145b8061086a57506301ffc9a760e01b6001600160e01b031983161461086a565b6002546000908210801561086a575060006001600160a01b031660028381548110611ab257611ab261292f565b6000918252602090912001546001600160a01b0316141592915050565b600081815260036020526040902080546001600160a01b0319166001600160a01b0384169081179091558190611b0482610f9a565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6002805460018101825560009182527f405787fa12a823e0f2b7631cc41b3ba8828b3321ca811111fa75cd3aa3bb5ace0180546001600160a01b0319166001600160a01b0385169081179091556040518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6000611bc482611a85565b611c255760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161096a565b6000611c3083610f9a565b9050806001600160a01b0316846001600160a01b03161480611c6b5750836001600160a01b0316611c6084610902565b6001600160a01b0316145b80611c9b57506001600160a01b0380821660009081526004602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316611cb682610f9a565b6001600160a01b031614611d1e5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b606482015260840161096a565b6001600160a01b038216611d805760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b606482015260840161096a565b611d8b600082611acf565b8160028281548110611d9f57611d9f61292f565b6000918252602082200180546001600160a01b0319166001600160a01b03938416179055604051839285811692908716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9190a4505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6040516bffffffffffffffffffffffff19606083901b166020820152600090603401604051602081830303815290604052805190602001209050919050565b6000611c9b838386611fd7565b611ea2848484611ca3565b611eae84848484611fed565b610b4b5760405162461bcd60e51b815260040161096a906126c5565b60606006805461087f90612899565b606081611efd5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611f275780611f11816128d4565b9150611f209050600a83612823565b9150611f01565b60008167ffffffffffffffff811115611f4257611f42612945565b6040519080825280601f01601f191660200182016040528015611f6c576020820181803683370190505b5090505b8415611c9b57611f81600183612856565b9150611f8e600a866128ef565b611f9990603061280b565b60f81b818381518110611fae57611fae61292f565b60200101906001600160f81b031916908160001a905350611fd0600a86612823565b9450611f70565b600082611fe485846120fa565b14949350505050565b60006001600160a01b0384163b156120ef57604051630a85bd0160e11b81526001600160a01b0385169063150b7a029061203190339089908890889060040161262a565b602060405180830381600087803b15801561204b57600080fd5b505af192505050801561207b575060408051601f3d908101601f1916820190925261207891810190612432565b60015b6120d5573d8080156120a9576040519150601f19603f3d011682016040523d82523d6000602084013e6120ae565b606091505b5080516120cd5760405162461bcd60e51b815260040161096a906126c5565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611c9b565b506001949350505050565b600081815b845181101561216657600085828151811061211c5761211c61292f565b602002602001015190508083116121425760008381526020829052604090209250612153565b600081815260208490526040902092505b508061215e816128d4565b9150506120ff565b509392505050565b82805461217a90612899565b90600052602060002090601f01602090048101928261219c57600085556121e2565b82601f106121b557805160ff19168380011785556121e2565b828001600101855582156121e2579182015b828111156121e25782518255916020019190600101906121c7565b50610f899291505b80821115610f8957600081556001016121ea565b600067ffffffffffffffff8084111561221957612219612945565b604051601f8501601f19908116603f0116810190828211818310171561224157612241612945565b8160405280935085815286868601111561225a57600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b038116811461228b57600080fd5b919050565b6000602082840312156122a257600080fd5b61172582612274565b600080604083850312156122be57600080fd5b6122c783612274565b91506122d560208401612274565b90509250929050565b6000806000606084860312156122f357600080fd5b6122fc84612274565b925061230a60208501612274565b9150604084013590509250925092565b6000806000806080858703121561233057600080fd5b61233985612274565b935061234760208601612274565b925060408501359150606085013567ffffffffffffffff81111561236a57600080fd5b8501601f8101871361237b57600080fd5b61238a878235602084016121fe565b91505092959194509250565b600080604083850312156123a957600080fd5b6123b283612274565b9150602083013580151581146123c757600080fd5b809150509250929050565b600080604083850312156123e557600080fd5b6123ee83612274565b946020939093013593505050565b60006020828403121561240e57600080fd5b5035919050565b60006020828403121561242757600080fd5b81356117258161295b565b60006020828403121561244457600080fd5b81516117258161295b565b60006020828403121561246157600080fd5b813567ffffffffffffffff81111561247857600080fd5b8201601f8101841361248957600080fd5b611c9b848235602084016121fe565b600080604083850312156124ab57600080fd5b823591506122d560208401612274565b6000806000604084860312156124d057600080fd5b83359250602084013567ffffffffffffffff808211156124ef57600080fd5b818601915086601f83011261250357600080fd5b81358181111561251257600080fd5b8760208260051b850101111561252757600080fd5b6020830194508093505050509250925092565b6000815180845261255281602086016020860161286d565b601f01601f19169290920160200192915050565b6000845160206125798285838a0161286d565b85519184019161258c8184848a0161286d565b8554920191600090600181811c90808316806125a957607f831692505b8583108114156125c757634e487b7160e01b85526022600452602485fd5b8080156125db57600181146125ec57612619565b60ff19851688528388019550612619565b60008b81526020902060005b858110156126115781548a8201529084019088016125f8565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061265d9083018461253a565b9695505050505050565b602081526000611725602083018461253a565b6020808252602b908201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560408201526a74206f6620626f756e647360a81b606082015260800190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252601a908201527f57686974656c697374206d696e74696e67206973206f76657221000000000000604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6020808252601c908201527f45786365656473206d617820706572207472616e73616374696f6e2e00000000604082015260600190565b6000821982111561281e5761281e612903565b500190565b60008261283257612832612919565b500490565b600081600019048311821515161561285157612851612903565b500290565b60008282101561286857612868612903565b500390565b60005b83811015612888578181015183820152602001612870565b83811115610b4b5750506000910152565b600181811c908216806128ad57607f821691505b602082108114156128ce57634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156128e8576128e8612903565b5060010190565b6000826128fe576128fe612919565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b0319811681146119d457600080fdfea26469706673582212202074939fd3268a2c7e25319a1d57b4998b2ec083da63ff06626747c8a28ca8ea64736f6c63430008070033

Deployed Bytecode Sourcemap

30637:6470:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29333:224;;;;;;;;;;-1:-1:-1;29333:224:0;;;;;:::i;:::-;;:::i;:::-;;;8069:14:1;;8062:22;8044:41;;8032:2;8017:18;29333:224:0;;;;;;;;18268:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;19080:308::-;;;;;;;;;;-1:-1:-1;19080:308:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;7367:32:1;;;7349:51;;7337:2;7322:18;19080:308:0;7203:203:1;36309:75:0;;;;;;;;;;;;;:::i;:::-;;18603:411;;;;;;;;;;-1:-1:-1;18603:411:0;;;;;:::i;:::-;;:::i;32107:293::-;;;;;;;;;;-1:-1:-1;32107:293:0;;;;;:::i;:::-;;:::i;31052:32::-;;;;;;;;;;;;;;;;;;;8242:25:1;;;8230:2;8215:18;31052:32:0;8096:177:1;29633:110:0;;;;;;;;;;-1:-1:-1;29721:7:0;:14;29633:110;;20139:376;;;;;;;;;;-1:-1:-1;20139:376:0;;;;;:::i;:::-;;:::i;31358:41::-;;;;;;;;;;;;;;;;30109:490;;;;;;;;;;-1:-1:-1;30109:490:0;;;;;:::i;:::-;;:::i;36035:69::-;;;;;;;;;;;;;:::i;30808:85::-;;;;;;;;;;;;;:::i;36108:75::-;;;;;;;;;;;;;:::i;36390:459::-;;;;;;;;;;;;;:::i;20586:185::-;;;;;;;;;;-1:-1:-1;20586:185:0;;;;;:::i;:::-;;:::i;35193:95::-;;;;;;;;;;-1:-1:-1;35193:95:0;;;;;:::i;:::-;;:::i;29820:205::-;;;;;;;;;;-1:-1:-1;29820:205:0;;;;;:::i;:::-;;:::i;31406:28::-;;;;;;;;;;-1:-1:-1;31406:28:0;;;;;;;;30770:33;;;;;;;;;;;;;:::i;31008:36::-;;;;;;;;;;;;;;;;31439:25;;;;;;;;;;-1:-1:-1;31439:25:0;;;;;;;;;;;17875:326;;;;;;;;;;-1:-1:-1;17875:326:0;;;;;:::i;:::-;;:::i;17367:446::-;;;;;;;;;;-1:-1:-1;17367:446:0;;;;;:::i;:::-;;:::i;5899:103::-;;;;;;;;;;;;;:::i;35925:102::-;;;;;;;;;;-1:-1:-1;35925:102:0;;;;;:::i;:::-;;:::i;31469:27::-;;;;;;;;;;-1:-1:-1;31469:27:0;;;;;;;;;;;36187:114;;;;;;;;;;-1:-1:-1;36187:114:0;;;;;:::i;:::-;;:::i;5248:87::-;;;;;;;;;;-1:-1:-1;5321:6:0;;-1:-1:-1;;;;;5321:6:0;5248:87;;31089:41;;;;;;;;;;;;;;;;31181:37;;;;;;;;;;;;;;;;18437:104;;;;;;;;;;;;;:::i;31574:525::-;;;;;;:::i;:::-;;:::i;19460:327::-;;;;;;;;;;-1:-1:-1;19460:327:0;;;;;:::i;:::-;;:::i;30900:103::-;;;;;;;;;;;;;;;;32405:773;;;;;;;;;;-1:-1:-1;32405:773:0;;;;;:::i;:::-;;:::i;35404:165::-;;;;;;;;;;-1:-1:-1;35404:165:0;;;;;:::i;:::-;;:::i;20842:365::-;;;;;;;;;;-1:-1:-1;20842:365:0;;;;;:::i;:::-;;:::i;33185:142::-;;;;;;;;;;-1:-1:-1;33185:142:0;;;;;:::i;:::-;;:::i;34688:497::-;;;;;;;;;;-1:-1:-1;34688:497:0;;;;;:::i;:::-;;:::i;35292:106::-;;;;;;;;;;-1:-1:-1;35292:106:0;;;;;:::i;:::-;;:::i;31225:39::-;;;;;;;;;;;;;;;;33825:857;;;;;;:::i;:::-;;:::i;31135:40::-;;;;;;;;;;;;31171:4;31135:40;;19858:214;;;;;;;;;;-1:-1:-1;19858:214:0;;;;;:::i;:::-;-1:-1:-1;;;;;20029:25:0;;;20000:4;20029:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;19858:214;6157:201;;;;;;;;;;-1:-1:-1;6157:201:0;;;;;:::i;:::-;;:::i;35749:170::-;;;;;;;;;;-1:-1:-1;35749:170:0;;;;;:::i;:::-;;:::i;33335:150::-;;;;;;;;;;-1:-1:-1;33335:150:0;;;;;:::i;:::-;;:::i;29333:224::-;29435:4;-1:-1:-1;;;;;;29459:50:0;;-1:-1:-1;;;29459:50:0;;:90;;;29513:36;29537:11;29513:23;:36::i;:::-;29452:97;29333:224;-1:-1:-1;;29333:224:0:o;18268:100::-;18322:13;18355:5;18348:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18268:100;:::o;19080:308::-;19201:7;19248:16;19256:7;19248;:16::i;:::-;19226:110;;;;-1:-1:-1;;;19226:110:0;;13063:2:1;19226:110:0;;;13045:21:1;13102:2;13082:18;;;13075:30;13141:34;13121:18;;;13114:62;-1:-1:-1;;;13192:18:1;;;13185:42;13244:19;;19226:110:0;;;;;;;;;-1:-1:-1;19356:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;19356:24:0;;19080:308::o;36309:75::-;5321:6;;-1:-1:-1;;;;;5321:6:0;4052:10;5468:23;5460:68;;;;-1:-1:-1;;;5460:68:0;;;;;;;:::i;:::-;36370:8:::1;::::0;;-1:-1:-1;;36358:20:0;::::1;36370:8:::0;;;;::::1;;;36369:9;36358:20:::0;;::::1;;::::0;;36309:75::o;18603:411::-;18684:13;18700:23;18715:7;18700:14;:23::i;:::-;18684:39;;18748:5;-1:-1:-1;;;;;18742:11:0;:2;-1:-1:-1;;;;;18742:11:0;;;18734:57;;;;-1:-1:-1;;;18734:57:0;;15364:2:1;18734:57:0;;;15346:21:1;15403:2;15383:18;;;15376:30;15442:34;15422:18;;;15415:62;-1:-1:-1;;;15493:18:1;;;15486:31;15534:19;;18734:57:0;15162:397:1;18734:57:0;4052:10;-1:-1:-1;;;;;18826:21:0;;;;:62;;-1:-1:-1;18851:37:0;18868:5;4052:10;19858:214;:::i;18851:37::-;18804:168;;;;-1:-1:-1;;;18804:168:0;;11817:2:1;18804:168:0;;;11799:21:1;11856:2;11836:18;;;11829:30;11895:34;11875:18;;;11868:62;11966:26;11946:18;;;11939:54;12010:19;;18804:168:0;11615:420:1;18804:168:0;18985:21;18994:2;18998:7;18985:8;:21::i;:::-;18673:341;18603:411;;:::o;32107:293::-;5321:6;;-1:-1:-1;;;;;5321:6:0;4052:10;5468:23;5460:68;;;;-1:-1:-1;;;5460:68:0;;;;;;;:::i;:::-;32214:7:::1;:14:::0;32192:19:::1;32235:84;32251:11;32247:1;:15;32235:84;;;32276:34;32282:9:::0;32294:15:::1;32308:1:::0;32294:11;:15:::1;:::i;:::-;32276:5;:34::i;:::-;32264:3:::0;::::1;::::0;::::1;:::i;:::-;;;;32235:84;;;-1:-1:-1::0;;;;32107:293:0:o;20139:376::-;20348:41;4052:10;20381:7;20348:18;:41::i;:::-;20326:140;;;;-1:-1:-1;;;20326:140:0;;;;;;;:::i;:::-;20479:28;20489:4;20495:2;20499:7;20479:9;:28::i;30109:490::-;30206:15;30250:16;30260:5;30250:9;:16::i;:::-;30242:5;:24;30234:80;;;;-1:-1:-1;;;30234:80:0;;;;;;;:::i;:::-;30327:10;30352:6;30348:178;30364:7;:14;30360:18;;30348:178;;;30411:7;30419:1;30411:10;;;;;;;;:::i;:::-;;;;;;;;;;;-1:-1:-1;;;;;30402:19:0;;;30411:10;;30402:19;30399:116;;;30453:5;30444;:14;30441:58;;;30467:1;-1:-1:-1;30460:8:0;;-1:-1:-1;30460:8:0;30441:58;30492:7;;;;:::i;:::-;;;;30441:58;30380:3;;;;:::i;:::-;;;;30348:178;;;;30538:53;;-1:-1:-1;;;30538:53:0;;;;;;;:::i;36035:69::-;5321:6;;-1:-1:-1;;;;;5321:6:0;4052:10;5468:23;5460:68;;;;-1:-1:-1;;;5460:68:0;;;;;;;:::i;:::-;36092:6:::1;::::0;;-1:-1:-1;;36082:16:0;::::1;36092:6;::::0;;;::::1;;;36091:7;36082:16:::0;;::::1;;::::0;;36035:69::o;30808:85::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;36108:75::-;5321:6;;-1:-1:-1;;;;;5321:6:0;4052:10;5468:23;5460:68;;;;-1:-1:-1;;;5460:68:0;;;;;;;:::i;:::-;36169:8:::1;::::0;;-1:-1:-1;;36157:20:0;::::1;36169:8;::::0;;::::1;36168:9;36157:20;::::0;;36108:75::o;36390:459::-;5321:6;;-1:-1:-1;;;;;5321:6:0;4052:10;5468:23;5460:68;;;;-1:-1:-1;;;5460:68:0;;;;;;;:::i;:::-;36450:21:::1;36487:42;36479:82;36556:3;36540:13;36450:21:::0;36551:2:::1;36540:13;:::i;:::-;:19;;;;:::i;:::-;36479:82;::::0;;::::1;::::0;;::::1;::::0;::::1;::::0;;;;;;::::1;;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;36578:42:0::1;36570:82;36647:3;36631:13;:8:::0;36642:2:::1;36631:13;:::i;:::-;:19;;;;:::i;:::-;36570:82;::::0;;::::1;::::0;;::::1;::::0;::::1;::::0;;;;;;::::1;;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;36669:42:0::1;36661:82;36738:3;36722:13;:8:::0;36733:2:::1;36722:13;:::i;:::-;:19;;;;:::i;:::-;36661:82;::::0;;::::1;::::0;;::::1;::::0;::::1;::::0;;;;;;::::1;;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;36760:42:0::1;36752:82;36829:3;36813:13;:8:::0;36824:2:::1;36813:13;:::i;:::-;:19;;;;:::i;:::-;36752:82;::::0;;::::1;::::0;;::::1;::::0;::::1;::::0;;;;;;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;36429:420;36390:459::o:0;20586:185::-;20724:39;20741:4;20747:2;20751:7;20724:39;;;;;;;;;;;;:16;:39::i;35193:95::-;5321:6;;-1:-1:-1;;;;;5321:6:0;4052:10;5468:23;5460:68;;;;-1:-1:-1;;;5460:68:0;;;;;;;:::i;:::-;35251:4:::1;:12:::0;35193:95::o;29820:205::-;29931:7;:14;29895:7;;29923:22;;29915:79;;;;-1:-1:-1;;;29915:79:0;;16541:2:1;29915:79:0;;;16523:21:1;16580:2;16560:18;;;16553:30;16619:34;16599:18;;;16592:62;-1:-1:-1;;;16670:18:1;;;16663:42;16722:19;;29915:79:0;16339:408:1;29915:79:0;-1:-1:-1;30012:5:0;29820:205::o;30770:33::-;;;;;;;:::i;17875:326::-;17992:7;18017:13;18033:7;18041;18033:16;;;;;;;;:::i;:::-;;;;;;;;;;;-1:-1:-1;;;;;18033:16:0;;-1:-1:-1;18082:19:0;18060:110;;;;-1:-1:-1;;;18060:110:0;;12653:2:1;18060:110:0;;;12635:21:1;12692:2;12672:18;;;12665:30;12731:34;12711:18;;;12704:62;-1:-1:-1;;;12782:18:1;;;12775:39;12831:19;;18060:110:0;12451:405:1;17367:446:0;17489:4;-1:-1:-1;;;;;17520:19:0;;17512:74;;;;-1:-1:-1;;;17512:74:0;;12242:2:1;17512:74:0;;;12224:21:1;12281:2;12261:18;;;12254:30;12320:34;12300:18;;;12293:62;-1:-1:-1;;;12371:18:1;;;12364:40;12421:19;;17512:74:0;12040:406:1;17512:74:0;17633:7;:14;17599:10;;;17658:101;17675:6;17671:1;:10;17658:101;;;17714:7;17722:1;17714:10;;;;;;;;:::i;:::-;;;;;;;;;;;-1:-1:-1;;;;;17705:19:0;;;17714:10;;17705:19;17701:46;;;17740:7;;;:::i;:::-;;;17701:46;17683:3;;;:::i;:::-;;;17658:101;;;-1:-1:-1;17800:5:0;;17367:446;-1:-1:-1;;;17367:446:0:o;5899:103::-;5321:6;;-1:-1:-1;;;;;5321:6:0;4052:10;5468:23;5460:68;;;;-1:-1:-1;;;5460:68:0;;;;;;;:::i;:::-;5964:30:::1;5991:1;5964:18;:30::i;:::-;5899:103::o:0;35925:102::-;5321:6;;-1:-1:-1;;;;;5321:6:0;4052:10;5468:23;5460:68;;;;-1:-1:-1;;;5460:68:0;;;;;;;:::i;:::-;35999:22;;::::1;::::0;:9:::1;::::0;:22:::1;::::0;::::1;::::0;::::1;:::i;36187:114::-:0;5321:6;;-1:-1:-1;;;;;5321:6:0;4052:10;5468:23;5460:68;;;;-1:-1:-1;;;5460:68:0;;;;;;;:::i;:::-;36265:30;;::::1;::::0;:13:::1;::::0;:30:::1;::::0;::::1;::::0;::::1;:::i;18437:104::-:0;18493:13;18526:7;18519:14;;;;;:::i;31574:525::-;31656:7;:14;31171:4;31685:25;31699:11;31656:14;31685:25;:::i;:::-;:38;;31677:70;;;;-1:-1:-1;;;31677:70:0;;8704:2:1;31677:70:0;;;8686:21:1;8743:2;8723:18;;;8716:30;-1:-1:-1;;;8762:18:1;;;8755:49;8821:18;;31677:70:0;8502:343:1;31677:70:0;31777:18;;31762:11;:33;;31754:74;;;;-1:-1:-1;;;31754:74:0;;;;;;;:::i;:::-;31846:6;;;;;;;31845:7;31837:43;;;;-1:-1:-1;;;31837:43:0;;14186:2:1;31837:43:0;;;14168:21:1;14225:2;14205:18;;;14198:30;-1:-1:-1;;;14244:18:1;;;14237:53;14307:18;;31837:43:0;13984:347:1;31837:43:0;31915:11;31908:4;;:18;;;;:::i;:::-;31895:9;:31;31887:63;;;;-1:-1:-1;;;31887:63:0;;16954:2:1;31887:63:0;;;16936:21:1;16993:2;16973:18;;;16966:30;-1:-1:-1;;;17012:18:1;;;17005:49;17071:18;;31887:63:0;16752:343:1;31887:63:0;31962:6;31958:84;31974:11;31970:1;:15;31958:84;;;31999:34;32005:10;32017:15;32031:1;32017:11;:15;:::i;31999:34::-;31987:3;;;;:::i;:::-;;;;31958:84;;19460:327;-1:-1:-1;;;;;19595:24:0;;4052:10;19595:24;;19587:62;;;;-1:-1:-1;;;19587:62:0;;11050:2:1;19587:62:0;;;11032:21:1;11089:2;11069:18;;;11062:30;11128:27;11108:18;;;11101:55;11173:18;;19587:62:0;10848:349:1;19587:62:0;4052:10;19662:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;19662:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;19662:53:0;;;;;;;;;;19731:48;;8044:41:1;;;19662:42:0;;4052:10;19731:48;;8017:18:1;19731:48:0;;;;;;;19460:327;;:::o;32405:773::-;32521:7;:14;32499:19;32562:23;32574:10;32562:11;:23::i;:::-;32542:43;;32600:57;32608:8;32621:11;;32600:57;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;32634:21:0;;;-1:-1:-1;32600:7:0;;-1:-1:-1;32600:57:0:i;:::-;32592:91;;;;-1:-1:-1;;;32592:91:0;;13837:2:1;32592:91:0;;;13819:21:1;13876:2;13856:18;;;13849:30;-1:-1:-1;;;13895:18:1;;;13888:50;13955:18;;32592:91:0;13635:344:1;32592:91:0;32741:20;;32726:10;32712:25;;;;:13;:25;;;;;;32698:39;;:11;:39;:::i;:::-;:63;;32690:104;;;;-1:-1:-1;;;32690:104:0;;;;;;;:::i;:::-;32810:8;;;;;;;32809:9;32801:48;;;;-1:-1:-1;;;32801:48:0;;;;;;;:::i;:::-;32879:19;;32864:11;:34;;32856:73;;;;-1:-1:-1;;;32856:73:0;;;;;;;:::i;:::-;32957:6;32953:85;32969:11;32965:1;:15;32953:85;;;32994:35;33000:10;33013:15;33027:1;33013:11;:15;:::i;32994:35::-;32982:3;;;;:::i;:::-;;;;32953:85;;;-1:-1:-1;33059:10:0;33045:25;;;;:13;:25;;;;;:40;;33074:11;;33045:25;:40;;33074:11;;33045:40;:::i;:::-;;;;-1:-1:-1;;;;;;;32405:773:0:o;35404:165::-;5321:6;;-1:-1:-1;;;;;5321:6:0;4052:10;5468:23;5460:68;;;;-1:-1:-1;;;5460:68:0;;;;;;;:::i;:::-;35490:18:::1;:40:::0;35404:165::o;20842:365::-;21031:41;4052:10;21064:7;21031:18;:41::i;:::-;21009:140;;;;-1:-1:-1;;;21009:140:0;;;;;;;:::i;:::-;21160:39;21174:4;21180:2;21184:7;21193:5;21160:13;:39::i;33185:142::-;5321:6;;-1:-1:-1;;;;;5321:6:0;4052:10;5468:23;5460:68;;;;-1:-1:-1;;;5460:68:0;;;;;;;:::i;:::-;33277:19:::1;:42:::0;33185:142::o;34688:497::-;34787:13;34828:17;34836:8;34828:7;:17::i;:::-;34812:98;;;;-1:-1:-1;;;34812:98:0;;14948:2:1;34812:98:0;;;14930:21:1;14987:2;14967:18;;;14960:30;15026:34;15006:18;;;14999:62;-1:-1:-1;;;15077:18:1;;;15070:45;15132:19;;34812:98:0;14746:411:1;34812:98:0;34923:8;;;;34919:67;;34965:13;34958:20;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34688:497;;;:::o;34919:67::-;34994:28;35025:10;:8;:10::i;:::-;34994:41;;35080:1;35055:14;35049:28;:32;:130;;;;;;;;;;;;;;;;;35117:14;35133:19;:8;:17;:19::i;:::-;35154:9;35100:64;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;35049:130;35042:137;34688:497;-1:-1:-1;;;34688:497:0:o;35292:106::-;5321:6;;-1:-1:-1;;;;;5321:6:0;4052:10;5468:23;5460:68;;;;-1:-1:-1;;;5460:68:0;;;;;;;:::i;:::-;35352:13:::1;:21:::0;35292:106::o;33825:857::-;33951:7;:14;33929:19;33994:23;34006:10;33994:11;:23::i;:::-;33974:43;;34036:57;34044:8;34057:11;;34036:57;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;34071:19:0;;;-1:-1:-1;34036:7:0;;-1:-1:-1;34036:57:0:i;:::-;34028:91;;;;-1:-1:-1;;;34028:91:0;;13837:2:1;34028:91:0;;;13819:21:1;13876:2;13856:18;;;13849:30;-1:-1:-1;;;13895:18:1;;;13888:50;13955:18;;34028:91:0;13635:344:1;34028:91:0;34180:20;;34165:10;34151:25;;;;:13;:25;;;;;;34136:40;;:11;:40;:::i;:::-;:64;;34128:105;;;;-1:-1:-1;;;34128:105:0;;;;;;;:::i;:::-;34251:8;;;;;;;34250:9;34242:45;;;;-1:-1:-1;;;34242:45:0;;14186:2:1;34242:45:0;;;14168:21:1;14225:2;14205:18;;;14198:30;-1:-1:-1;;;14244:18:1;;;14237:53;14307:18;;34242:45:0;13984:347:1;34242:45:0;34331:11;34315:13;;:27;;;;:::i;:::-;34302:9;:40;34294:72;;;;-1:-1:-1;;;34294:72:0;;16954:2:1;34294:72:0;;;16936:21:1;16993:2;16973:18;;;16966:30;-1:-1:-1;;;17012:18:1;;;17005:49;17071:18;;34294:72:0;16752:343:1;34294:72:0;34396:19;;34381:11;:34;;34373:73;;;;-1:-1:-1;;;34373:73:0;;;;;;;:::i;:::-;34467:6;34463:85;34479:11;34475:1;:15;34463:85;;;34504:35;34510:10;34523:15;34537:1;34523:11;:15;:::i;34504:35::-;34492:3;;;;:::i;:::-;;;;34463:85;;;-1:-1:-1;34569:10:0;34555:25;;;;:13;:25;;;;;:40;;34584:11;;34555:25;:40;;34584:11;;34555:40;:::i;6157:201::-;5321:6;;-1:-1:-1;;;;;5321:6:0;4052:10;5468:23;5460:68;;;;-1:-1:-1;;;5460:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;6246:22:0;::::1;6238:73;;;::::0;-1:-1:-1;;;6238:73:0;;9883:2:1;6238:73:0::1;::::0;::::1;9865:21:1::0;9922:2;9902:18;;;9895:30;9961:34;9941:18;;;9934:62;-1:-1:-1;;;10012:18:1;;;10005:36;10058:19;;6238:73:0::1;9681:402:1::0;6238:73:0::1;6322:28;6341:8;6322:18;:28::i;:::-;6157:201:::0;:::o;35749:170::-;5321:6;;-1:-1:-1;;;;;5321:6:0;4052:10;5468:23;5460:68;;;;-1:-1:-1;;;5460:68:0;;;;;;;:::i;:::-;35837:19:::1;:42:::0;35749:170::o;33335:150::-;5321:6;;-1:-1:-1;;;;;5321:6:0;4052:10;5468:23;5460:68;;;;-1:-1:-1;;;5460:68:0;;;;;;;:::i;:::-;33431:21:::1;:46:::0;33335:150::o;16948:355::-;17095:4;-1:-1:-1;;;;;;17137:40:0;;-1:-1:-1;;;17137:40:0;;:105;;-1:-1:-1;;;;;;;17194:48:0;;-1:-1:-1;;;17194:48:0;17137:105;:158;;;-1:-1:-1;;;;;;;;;;9638:40:0;;;17259:36;9529:157;22754:155;22853:7;:14;22819:4;;22843:24;;:58;;;;;22899:1;-1:-1:-1;;;;;22871:30:0;:7;22879;22871:16;;;;;;;;:::i;:::-;;;;;;;;;;;-1:-1:-1;;;;;22871:16:0;:30;;22836:65;22754:155;-1:-1:-1;;22754:155:0:o;26457:174::-;26532:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;26532:29:0;-1:-1:-1;;;;;26532:29:0;;;;;;;;:24;;26586:23;26532:24;26586:14;:23::i;:::-;-1:-1:-1;;;;;26577:46:0;;;;;;;;;;;26457:174;;:::o;36856:154::-;36937:7;:16;;;;;;;-1:-1:-1;36937:16:0;;;;;;;-1:-1:-1;;;;;;36937:16:0;-1:-1:-1;;;;;36937:16:0;;;;;;;;36969:33;;36994:7;;-1:-1:-1;36969:33:0;;-1:-1:-1;;36969:33:0;36856:154;;:::o;23076:452::-;23205:4;23249:16;23257:7;23249;:16::i;:::-;23227:110;;;;-1:-1:-1;;;23227:110:0;;11404:2:1;23227:110:0;;;11386:21:1;11443:2;11423:18;;;11416:30;11482:34;11462:18;;;11455:62;-1:-1:-1;;;11533:18:1;;;11526:42;11585:19;;23227:110:0;11202:408:1;23227:110:0;23348:13;23364:23;23379:7;23364:14;:23::i;:::-;23348:39;;23417:5;-1:-1:-1;;;;;23406:16:0;:7;-1:-1:-1;;;;;23406:16:0;;:64;;;;23463:7;-1:-1:-1;;;;;23439:31:0;:20;23451:7;23439:11;:20::i;:::-;-1:-1:-1;;;;;23439:31:0;;23406:64;:113;;;-1:-1:-1;;;;;;20029:25:0;;;20000:4;20029:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;23487:32;23398:122;23076:452;-1:-1:-1;;;;23076:452:0:o;25786:553::-;25959:4;-1:-1:-1;;;;;25932:31:0;:23;25947:7;25932:14;:23::i;:::-;-1:-1:-1;;;;;25932:31:0;;25910:122;;;;-1:-1:-1;;;25910:122:0;;14538:2:1;25910:122:0;;;14520:21:1;14577:2;14557:18;;;14550:30;14616:34;14596:18;;;14589:62;-1:-1:-1;;;14667:18:1;;;14660:39;14716:19;;25910:122:0;14336:405:1;25910:122:0;-1:-1:-1;;;;;26051:16:0;;26043:65;;;;-1:-1:-1;;;26043:65:0;;10645:2:1;26043:65:0;;;10627:21:1;10684:2;10664:18;;;10657:30;10723:34;10703:18;;;10696:62;-1:-1:-1;;;10774:18:1;;;10767:34;10818:19;;26043:65:0;10443:400:1;26043:65:0;26225:29;26242:1;26246:7;26225:8;:29::i;:::-;26284:2;26265:7;26273;26265:16;;;;;;;;:::i;:::-;;;;;;;;;:21;;-1:-1:-1;;;;;;26265:21:0;-1:-1:-1;;;;;26265:21:0;;;;;;26304:27;;26323:7;;26304:27;;;;;;;;;;26265:16;26304:27;25786:553;;;:::o;6518:191::-;6611:6;;;-1:-1:-1;;;;;6628:17:0;;;-1:-1:-1;;;;;;6628:17:0;;;;;;;6661:40;;6611:6;;;6628:17;6611:6;;6661:40;;6592:16;;6661:40;6581:128;6518:191;:::o;33499:138::-;33605:23;;-1:-1:-1;;5586:2:1;5582:15;;;5578:53;33605:23:0;;;5566:66:1;33558:12:0;;5648::1;;33605:23:0;;;;;;;;;;;;33595:34;;;;;;33588:41;;33499:138;;;:::o;33643:174::-;33742:4;33766:43;33785:5;33792:10;33804:4;33766:18;:43::i;22089:352::-;22246:28;22256:4;22262:2;22266:7;22246:9;:28::i;:::-;22307:48;22330:4;22336:2;22340:7;22349:5;22307:22;:48::i;:::-;22285:148;;;;-1:-1:-1;;;22285:148:0;;;;;;;:::i;37016:88::-;37060:13;37089:9;37082:16;;;;;:::i;1534:723::-;1590:13;1811:10;1807:53;;-1:-1:-1;;1838:10:0;;;;;;;;;;;;-1:-1:-1;;;1838:10:0;;;;;1534:723::o;1807:53::-;1885:5;1870:12;1926:78;1933:9;;1926:78;;1959:8;;;;:::i;:::-;;-1:-1:-1;1982:10:0;;-1:-1:-1;1990:2:0;1982:10;;:::i;:::-;;;1926:78;;;2014:19;2046:6;2036:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;2036:17:0;;2014:39;;2064:154;2071:10;;2064:154;;2098:11;2108:1;2098:11;;:::i;:::-;;-1:-1:-1;2167:10:0;2175:2;2167:5;:10;:::i;:::-;2154:24;;:2;:24;:::i;:::-;2141:39;;2124:6;2131;2124:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;2124:56:0;;;;;;;;-1:-1:-1;2195:11:0;2204:2;2195:11;;:::i;:::-;;;2064:154;;171:190;296:4;349;320:25;333:5;340:4;320:12;:25::i;:::-;:33;;171:190;-1:-1:-1;;;;171:190:0:o;27196:980::-;27351:4;-1:-1:-1;;;;;27372:13:0;;16148:20;16196:8;27368:801;;27425:175;;-1:-1:-1;;;27425:175:0;;-1:-1:-1;;;;;27425:36:0;;;;;:175;;4052:10;;27519:4;;27546:7;;27576:5;;27425:175;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;27425:175:0;;;;;;;;-1:-1:-1;;27425:175:0;;;;;;;;;;;;:::i;:::-;;;27404:710;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;27783:13:0;;27779:320;;27826:108;;-1:-1:-1;;;27826:108:0;;;;;;;:::i;27779:320::-;28049:6;28043:13;28034:6;28030:2;28026:15;28019:38;27404:710;-1:-1:-1;;;;;;27664:51:0;-1:-1:-1;;;27664:51:0;;-1:-1:-1;27657:58:0;;27368:801;-1:-1:-1;28153:4:0;27196:980;;;;;;:::o;371:675::-;454:7;497:4;454:7;512:497;536:5;:12;532:1;:16;512:497;;;570:20;593:5;599:1;593:8;;;;;;;;:::i;:::-;;;;;;;570:31;;636:12;620;:28;616:382;;1122:13;1172:15;;;1208:4;1201:15;;;1255:4;1239:21;;748:57;;616:382;;;1122:13;1172:15;;;1208:4;1201:15;;;1255:4;1239:21;;925:57;;616:382;-1:-1:-1;550:3:0;;;;:::i;:::-;;;;512:497;;;-1:-1:-1;1026:12:0;371:675;-1:-1:-1;;;371:675:0:o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14:631:1;78:5;108:18;149:2;141:6;138:14;135:40;;;155:18;;:::i;:::-;230:2;224:9;198:2;284:15;;-1:-1:-1;;280:24:1;;;306:2;276:33;272:42;260:55;;;330:18;;;350:22;;;327:46;324:72;;;376:18;;:::i;:::-;416:10;412:2;405:22;445:6;436:15;;475:6;467;460:22;515:3;506:6;501:3;497:16;494:25;491:45;;;532:1;529;522:12;491:45;582:6;577:3;570:4;562:6;558:17;545:44;637:1;630:4;621:6;613;609:19;605:30;598:41;;;;14:631;;;;;:::o;650:173::-;718:20;;-1:-1:-1;;;;;767:31:1;;757:42;;747:70;;813:1;810;803:12;747:70;650:173;;;:::o;828:186::-;887:6;940:2;928:9;919:7;915:23;911:32;908:52;;;956:1;953;946:12;908:52;979:29;998:9;979:29;:::i;1019:260::-;1087:6;1095;1148:2;1136:9;1127:7;1123:23;1119:32;1116:52;;;1164:1;1161;1154:12;1116:52;1187:29;1206:9;1187:29;:::i;:::-;1177:39;;1235:38;1269:2;1258:9;1254:18;1235:38;:::i;:::-;1225:48;;1019:260;;;;;:::o;1284:328::-;1361:6;1369;1377;1430:2;1418:9;1409:7;1405:23;1401:32;1398:52;;;1446:1;1443;1436:12;1398:52;1469:29;1488:9;1469:29;:::i;:::-;1459:39;;1517:38;1551:2;1540:9;1536:18;1517:38;:::i;:::-;1507:48;;1602:2;1591:9;1587:18;1574:32;1564:42;;1284:328;;;;;:::o;1617:666::-;1712:6;1720;1728;1736;1789:3;1777:9;1768:7;1764:23;1760:33;1757:53;;;1806:1;1803;1796:12;1757:53;1829:29;1848:9;1829:29;:::i;:::-;1819:39;;1877:38;1911:2;1900:9;1896:18;1877:38;:::i;:::-;1867:48;;1962:2;1951:9;1947:18;1934:32;1924:42;;2017:2;2006:9;2002:18;1989:32;2044:18;2036:6;2033:30;2030:50;;;2076:1;2073;2066:12;2030:50;2099:22;;2152:4;2144:13;;2140:27;-1:-1:-1;2130:55:1;;2181:1;2178;2171:12;2130:55;2204:73;2269:7;2264:2;2251:16;2246:2;2242;2238:11;2204:73;:::i;:::-;2194:83;;;1617:666;;;;;;;:::o;2288:347::-;2353:6;2361;2414:2;2402:9;2393:7;2389:23;2385:32;2382:52;;;2430:1;2427;2420:12;2382:52;2453:29;2472:9;2453:29;:::i;:::-;2443:39;;2532:2;2521:9;2517:18;2504:32;2579:5;2572:13;2565:21;2558:5;2555:32;2545:60;;2601:1;2598;2591:12;2545:60;2624:5;2614:15;;;2288:347;;;;;:::o;2640:254::-;2708:6;2716;2769:2;2757:9;2748:7;2744:23;2740:32;2737:52;;;2785:1;2782;2775:12;2737:52;2808:29;2827:9;2808:29;:::i;:::-;2798:39;2884:2;2869:18;;;;2856:32;;-1:-1:-1;;;2640:254:1:o;2899:180::-;2958:6;3011:2;2999:9;2990:7;2986:23;2982:32;2979:52;;;3027:1;3024;3017:12;2979:52;-1:-1:-1;3050:23:1;;2899:180;-1:-1:-1;2899:180:1:o;3084:245::-;3142:6;3195:2;3183:9;3174:7;3170:23;3166:32;3163:52;;;3211:1;3208;3201:12;3163:52;3250:9;3237:23;3269:30;3293:5;3269:30;:::i;3334:249::-;3403:6;3456:2;3444:9;3435:7;3431:23;3427:32;3424:52;;;3472:1;3469;3462:12;3424:52;3504:9;3498:16;3523:30;3547:5;3523:30;:::i;3588:450::-;3657:6;3710:2;3698:9;3689:7;3685:23;3681:32;3678:52;;;3726:1;3723;3716:12;3678:52;3766:9;3753:23;3799:18;3791:6;3788:30;3785:50;;;3831:1;3828;3821:12;3785:50;3854:22;;3907:4;3899:13;;3895:27;-1:-1:-1;3885:55:1;;3936:1;3933;3926:12;3885:55;3959:73;4024:7;4019:2;4006:16;4001:2;3997;3993:11;3959:73;:::i;4228:254::-;4296:6;4304;4357:2;4345:9;4336:7;4332:23;4328:32;4325:52;;;4373:1;4370;4363:12;4325:52;4409:9;4396:23;4386:33;;4438:38;4472:2;4461:9;4457:18;4438:38;:::i;4487:683::-;4582:6;4590;4598;4651:2;4639:9;4630:7;4626:23;4622:32;4619:52;;;4667:1;4664;4657:12;4619:52;4703:9;4690:23;4680:33;;4764:2;4753:9;4749:18;4736:32;4787:18;4828:2;4820:6;4817:14;4814:34;;;4844:1;4841;4834:12;4814:34;4882:6;4871:9;4867:22;4857:32;;4927:7;4920:4;4916:2;4912:13;4908:27;4898:55;;4949:1;4946;4939:12;4898:55;4989:2;4976:16;5015:2;5007:6;5004:14;5001:34;;;5031:1;5028;5021:12;5001:34;5084:7;5079:2;5069:6;5066:1;5062:14;5058:2;5054:23;5050:32;5047:45;5044:65;;;5105:1;5102;5095:12;5044:65;5136:2;5132;5128:11;5118:21;;5158:6;5148:16;;;;;4487:683;;;;;:::o;5175:257::-;5216:3;5254:5;5248:12;5281:6;5276:3;5269:19;5297:63;5353:6;5346:4;5341:3;5337:14;5330:4;5323:5;5319:16;5297:63;:::i;:::-;5414:2;5393:15;-1:-1:-1;;5389:29:1;5380:39;;;;5421:4;5376:50;;5175:257;-1:-1:-1;;5175:257:1:o;5671:1527::-;5895:3;5933:6;5927:13;5959:4;5972:51;6016:6;6011:3;6006:2;5998:6;5994:15;5972:51;:::i;:::-;6086:13;;6045:16;;;;6108:55;6086:13;6045:16;6130:15;;;6108:55;:::i;:::-;6252:13;;6185:20;;;6225:1;;6312;6334:18;;;;6387;;;;6414:93;;6492:4;6482:8;6478:19;6466:31;;6414:93;6555:2;6545:8;6542:16;6522:18;6519:40;6516:167;;;-1:-1:-1;;;6582:33:1;;6638:4;6635:1;6628:15;6668:4;6589:3;6656:17;6516:167;6699:18;6726:110;;;;6850:1;6845:328;;;;6692:481;;6726:110;-1:-1:-1;;6761:24:1;;6747:39;;6806:20;;;;-1:-1:-1;6726:110:1;;6845:328;17355:1;17348:14;;;17392:4;17379:18;;6940:1;6954:169;6968:8;6965:1;6962:15;6954:169;;;7050:14;;7035:13;;;7028:37;7093:16;;;;6985:10;;6954:169;;;6958:3;;7154:8;7147:5;7143:20;7136:27;;6692:481;-1:-1:-1;7189:3:1;;5671:1527;-1:-1:-1;;;;;;;;;;;5671:1527:1:o;7411:488::-;-1:-1:-1;;;;;7680:15:1;;;7662:34;;7732:15;;7727:2;7712:18;;7705:43;7779:2;7764:18;;7757:34;;;7827:3;7822:2;7807:18;;7800:31;;;7605:4;;7848:45;;7873:19;;7865:6;7848:45;:::i;:::-;7840:53;7411:488;-1:-1:-1;;;;;;7411:488:1:o;8278:219::-;8427:2;8416:9;8409:21;8390:4;8447:44;8487:2;8476:9;8472:18;8464:6;8447:44;:::i;8850:407::-;9052:2;9034:21;;;9091:2;9071:18;;;9064:30;9130:34;9125:2;9110:18;;9103:62;-1:-1:-1;;;9196:2:1;9181:18;;9174:41;9247:3;9232:19;;8850:407::o;9262:414::-;9464:2;9446:21;;;9503:2;9483:18;;;9476:30;9542:34;9537:2;9522:18;;9515:62;-1:-1:-1;;;9608:2:1;9593:18;;9586:48;9666:3;9651:19;;9262:414::o;10088:350::-;10290:2;10272:21;;;10329:2;10309:18;;;10302:30;10368:28;10363:2;10348:18;;10341:56;10429:2;10414:18;;10088:350::o;13274:356::-;13476:2;13458:21;;;13495:18;;;13488:30;13554:34;13549:2;13534:18;;13527:62;13621:2;13606:18;;13274:356::o;15564:413::-;15766:2;15748:21;;;15805:2;15785:18;;;15778:30;15844:34;15839:2;15824:18;;15817:62;-1:-1:-1;;;15910:2:1;15895:18;;15888:47;15967:3;15952:19;;15564:413::o;15982:352::-;16184:2;16166:21;;;16223:2;16203:18;;;16196:30;16262;16257:2;16242:18;;16235:58;16325:2;16310:18;;15982:352::o;17408:128::-;17448:3;17479:1;17475:6;17472:1;17469:13;17466:39;;;17485:18;;:::i;:::-;-1:-1:-1;17521:9:1;;17408:128::o;17541:120::-;17581:1;17607;17597:35;;17612:18;;:::i;:::-;-1:-1:-1;17646:9:1;;17541:120::o;17666:168::-;17706:7;17772:1;17768;17764:6;17760:14;17757:1;17754:21;17749:1;17742:9;17735:17;17731:45;17728:71;;;17779:18;;:::i;:::-;-1:-1:-1;17819:9:1;;17666:168::o;17839:125::-;17879:4;17907:1;17904;17901:8;17898:34;;;17912:18;;:::i;:::-;-1:-1:-1;17949:9:1;;17839:125::o;17969:258::-;18041:1;18051:113;18065:6;18062:1;18059:13;18051:113;;;18141:11;;;18135:18;18122:11;;;18115:39;18087:2;18080:10;18051:113;;;18182:6;18179:1;18176:13;18173:48;;;-1:-1:-1;;18217:1:1;18199:16;;18192:27;17969:258::o;18232:380::-;18311:1;18307:12;;;;18354;;;18375:61;;18429:4;18421:6;18417:17;18407:27;;18375:61;18482:2;18474:6;18471:14;18451:18;18448:38;18445:161;;;18528:10;18523:3;18519:20;18516:1;18509:31;18563:4;18560:1;18553:15;18591:4;18588:1;18581:15;18445:161;;18232:380;;;:::o;18617:135::-;18656:3;-1:-1:-1;;18677:17:1;;18674:43;;;18697:18;;:::i;:::-;-1:-1:-1;18744:1:1;18733:13;;18617:135::o;18757:112::-;18789:1;18815;18805:35;;18820:18;;:::i;:::-;-1:-1:-1;18854:9:1;;18757:112::o;18874:127::-;18935:10;18930:3;18926:20;18923:1;18916:31;18966:4;18963:1;18956:15;18990:4;18987:1;18980:15;19006:127;19067:10;19062:3;19058:20;19055:1;19048:31;19098:4;19095:1;19088:15;19122:4;19119:1;19112:15;19138:127;19199:10;19194:3;19190:20;19187:1;19180:31;19230:4;19227:1;19220:15;19254:4;19251:1;19244:15;19270:127;19331:10;19326:3;19322:20;19319:1;19312:31;19362:4;19359:1;19352:15;19386:4;19383:1;19376:15;19402:131;-1:-1:-1;;;;;;19476:32:1;;19466:43;;19456:71;;19523:1;19520;19513:12

Swarm Source

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