ETH Price: $2,354.87 (-3.88%)

Token

PAYC Degen Hours (PAYC Degen Hours)
 

Overview

Max Total Supply

1,035 PAYC Degen Hours

Holders

41

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Filtered by Token Holder
wearmyart.eth
Balance
2 PAYC Degen Hours
0xcbd39b065dc1c81da91db187e260f6ea4f4f9756
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:
PAYCDegenHours

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-09-10
*/

// SPDX-License-Identifier: MIT
// Pepe Ape Yacht Club Portal Contract

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

}

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

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

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

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

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

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

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

// File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.sol


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

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

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

    interface IMain {
   
function transferFrom( address from,   address to, uint256 tokenId) external;
function ownerOf( uint _tokenid) external view returns (address);
}

    contract PAYCDegenHours  is ERC721Enumerable,  Ownable {
    using Strings for uint256;


  string private uriPrefix = "ipfs://Qmae138hdMAu2DKmwxmkkVnw66oHQC9W6Cc7dAUer8C5yE/";
  string private uriSuffix = ".json";

  uint16 public constant maxSupply = 7777;
  

  
  mapping (uint => uint) public mappingOldtoNewTokens;
  mapping (uint => uint) public mappingNewtoOldTokens;
   mapping (uint => address) public lastOwner;

  address public mainAddress = 0x2D0D57D004F82e9f4471CaA8b9f8B1965a814154; 
  IMain Main = IMain(mainAddress);

  constructor() ERC721("PAYC Degen Hours", "PAYC Degen Hours") {
    
  }
  
	function setMainAddress(address contractAddr) external onlyOwner {
		mainAddress = contractAddr;
        Main= IMain(mainAddress);
	}  
 

  function mint( uint tokenNumber) external  {

 require(Main.ownerOf(tokenNumber) == msg.sender, "Not the owner");
   uint16 totalSupply = uint16(_owners.length);
    require(totalSupply + 1 <= maxSupply, "Exceeds max supply.");
     Main.transferFrom( msg.sender, address(this),tokenNumber);
    _mint(msg.sender, totalSupply);
  
    mappingNewtoOldTokens[totalSupply] = tokenNumber;
    mappingOldtoNewTokens[tokenNumber] = totalSupply; 
 
  }

  function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual override  {
        uint token = tokenId;
        require (from == address(this) || to ==  address(this) , "Transfer not Allowed");
        delete token;
    }
  
  function _isApprovedOrOwner(address spender, uint256 tokenId)
        internal
        view
        virtual
        override 
        returns (bool)
    {
          if ( lastOwner[tokenId] == msg.sender) return true;
        return super._isApprovedOrOwner(spender, tokenId);

    }
    
  
  function ExchangeOldForNew( uint tokenNumber ) external  {

 require(Main.ownerOf(tokenNumber) == msg.sender, "Not the owner");
 
  uint _token = mappingOldtoNewTokens[tokenNumber] ;

  transferFrom( address(this), msg.sender,_token);
  Main.transferFrom(msg.sender, address(this),tokenNumber);
  
  }

   function ExchangeNewForOld( uint tokenNumber) external  {

 require(ownerOf(tokenNumber) == msg.sender, "Not the owner");

  uint _token = mappingNewtoOldTokens[tokenNumber] ;

  Main.transferFrom( address(this), msg.sender,_token);
  transferFrom( msg.sender, address(this),tokenNumber);
  lastOwner[tokenNumber] = msg.sender;
  

    
  }
  

  function checkIfNFTExist(uint256 _tokenId)
    public
    view
   returns (bool)
   {
    bool exist =   _exists(_tokenId);
    return exist;
   }


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

    _tokenId = mappingNewtoOldTokens[_tokenId];

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


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


 
 

  
   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":[{"internalType":"uint256","name":"tokenNumber","type":"uint256"}],"name":"ExchangeNewForOld","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenNumber","type":"uint256"}],"name":"ExchangeOldForNew","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":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"checkIfNFTExist","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"lastOwner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mainAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"mappingNewtoOldTokens","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"mappingOldtoNewTokens","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenNumber","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"contractAddr","type":"address"}],"name":"setMainAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriPrefix","type":"string"}],"name":"setUriPrefix","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"}]

60e060405260366080818152906200219960a0398051620000299160069160209091019062000177565b5060408051808201909152600580825264173539b7b760d91b6020909201918252620000589160079162000177565b50600b8054732d0d57d004f82e9f4471caa8b9f8b1965a8141546001600160a01b03199182168117909255600c805490911690911790553480156200009c57600080fd5b5060408051808201825260108082526f5041594320446567656e20486f75727360801b602080840182815285518087019096529285528401528151919291620000e89160009162000177565b508051620000fe90600190602084019062000177565b5050506200011b620001156200012160201b60201c565b62000125565b6200025a565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b82805462000185906200021d565b90600052602060002090601f016020900481019282620001a95760008555620001f4565b82601f10620001c457805160ff1916838001178555620001f4565b82800160010185558215620001f4579182015b82811115620001f4578251825591602001919060010190620001d7565b506200020292915062000206565b5090565b5b8082111562000202576000815560010162000207565b600181811c908216806200023257607f821691505b602082108114156200025457634e487b7160e01b600052602260045260246000fd5b50919050565b611f2f806200026a6000396000f3fe608060405234801561001057600080fd5b50600436106101da5760003560e01c80637ec4a65911610104578063c87b56dd116100a2578063d600ddef11610071578063d600ddef1461041e578063db9771f514610431578063e985e9c514610444578063f2fde38b1461048057600080fd5b8063c87b56dd146103bc578063cf9bed2f146103cf578063d44624b2146103ef578063d5abeb011461040257600080fd5b8063a0712d68116100de578063a0712d6814610370578063a22cb46514610383578063b88d4fde14610396578063baf9e3dc146103a957600080fd5b80637ec4a659146103445780638da5cb5b1461035757806395d89b411461036857600080fd5b80632f745c591161017c5780636d2bcfd81161014b5780636d2bcfd8146102e057806370a0823114610309578063715018a61461031c57806376c638731461032457600080fd5b80632f745c591461029457806342842e0e146102a75780634f6ccce7146102ba5780636352211e146102cd57600080fd5b8063095ea7b3116101b8578063095ea7b3146102475780630cdd42341461025c57806318160ddd1461026f57806323b872dd1461028157600080fd5b806301ffc9a7146101df57806306fdde0314610207578063081812fc1461021c575b600080fd5b6101f26101ed366004611a51565b610493565b60405190151581526020015b60405180910390f35b61020f6104be565b6040516101fe9190611c1a565b61022f61022a366004611ad4565b610550565b6040516001600160a01b0390911681526020016101fe565b61025a610255366004611a25565b6105dd565b005b600b5461022f906001600160a01b031681565b6002545b6040519081526020016101fe565b61025a61028f366004611931565b6106f3565b6102736102a2366004611a25565b610724565b61025a6102b5366004611931565b6107d7565b6102736102c8366004611ad4565b6107f2565b61022f6102db366004611ad4565b61085f565b61022f6102ee366004611ad4565b600a602052600090815260409020546001600160a01b031681565b6102736103173660046118be565b6108eb565b61025a6109bd565b610273610332366004611ad4565b60086020526000908152604090205481565b61025a610352366004611a8b565b6109f3565b6005546001600160a01b031661022f565b61020f610a34565b61025a61037e366004611ad4565b610a43565b61025a6103913660046119f2565b610bdc565b61025a6103a4366004611972565b610ca1565b61025a6103b7366004611ad4565b610cd9565b61020f6103ca366004611ad4565b610daf565b6102736103dd366004611ad4565b60096020526000908152604090205481565b61025a6103fd366004611ad4565b610e8b565b61040b611e6181565b60405161ffff90911681526020016101fe565b6101f261042c366004611ad4565b610fb5565b61025a61043f3660046118be565b610fc1565b6101f26104523660046118f8565b6001600160a01b03918216600090815260046020908152604080832093909416825291909152205460ff1690565b61025a61048e3660046118be565b611017565b60006001600160e01b0319821663780e9d6360e01b14806104b857506104b8826110b2565b92915050565b6060600080546104cd90611e0c565b80601f01602080910402602001604051908101604052809291908181526020018280546104f990611e0c565b80156105465780601f1061051b57610100808354040283529160200191610546565b820191906000526020600020905b81548152906001019060200180831161052957829003601f168201915b5050505050905090565b600061055b82611102565b6105c15760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600360205260409020546001600160a01b031690565b60006105e88261085f565b9050806001600160a01b0316836001600160a01b031614156106565760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016105b8565b336001600160a01b038216148061067257506106728133610452565b6106e45760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016105b8565b6106ee838361114c565b505050565b6106fd33826111ba565b6107195760405162461bcd60e51b81526004016105b890611d26565b6106ee8383836111eb565b600061072f836108eb565b821061074d5760405162461bcd60e51b81526004016105b890611c2d565b6000805b6002548110156107be576002818154811061076e5761076e611ea2565b6000918252602090912001546001600160a01b03868116911614156107ac578382141561079e5791506104b89050565b816107a881611e47565b9250505b806107b681611e47565b915050610751565b5060405162461bcd60e51b81526004016105b890611c2d565b6106ee83838360405180602001604052806000815250610ca1565b600254600090821061085b5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b60648201526084016105b8565b5090565b6000806002838154811061087557610875611ea2565b6000918252602090912001546001600160a01b03169050806104b85760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016105b8565b60006001600160a01b0382166109565760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016105b8565b600254600090815b818110156109b4576002818154811061097957610979611ea2565b6000918252602090912001546001600160a01b03868116911614156109a4576109a183611e47565b92505b6109ad81611e47565b905061095e565b50909392505050565b6005546001600160a01b031633146109e75760405162461bcd60e51b81526004016105b890611cf1565b6109f1600061134c565b565b6005546001600160a01b03163314610a1d5760405162461bcd60e51b81526004016105b890611cf1565b8051610a309060069060208401906117b8565b5050565b6060600180546104cd90611e0c565b600c546040516331a9108f60e11b81526004810183905233916001600160a01b031690636352211e9060240160206040518083038186803b158015610a8757600080fd5b505afa158015610a9b573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610abf91906118db565b6001600160a01b031614610ae55760405162461bcd60e51b81526004016105b890611cca565b600254611e61610af6826001611d77565b61ffff161115610b3e5760405162461bcd60e51b815260206004820152601360248201527222bc31b2b2b2399036b0bc1039bab838363c9760691b60448201526064016105b8565b600c546040516323b872dd60e01b8152336004820152306024820152604481018490526001600160a01b03909116906323b872dd90606401600060405180830381600087803b158015610b9057600080fd5b505af1158015610ba4573d6000803e3d6000fd5b50505050610bb6338261ffff1661139e565b61ffff166000818152600960209081526040808320859055938252600890529190912055565b6001600160a01b038216331415610c355760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016105b8565b3360008181526004602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610cab33836111ba565b610cc75760405162461bcd60e51b81526004016105b890611d26565b610cd38484848461141a565b50505050565b33610ce38261085f565b6001600160a01b031614610d095760405162461bcd60e51b81526004016105b890611cca565b6000818152600960205260409081902054600c5491516323b872dd60e01b81523060048201523360248201526044810182905290916001600160a01b0316906323b872dd90606401600060405180830381600087803b158015610d6b57600080fd5b505af1158015610d7f573d6000803e3d6000fd5b50505050610d8e3330846106f3565b506000908152600a6020526040902080546001600160a01b03191633179055565b6060610dba82611102565b610e1e5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016105b8565b60009182526009602052604082205491610e3661144d565b90506000815111610e565760405180602001604052806000815250610e84565b80610e608461145c565b6007604051602001610e7493929190611b19565b6040516020818303038152906040525b9392505050565b600c546040516331a9108f60e11b81526004810183905233916001600160a01b031690636352211e9060240160206040518083038186803b158015610ecf57600080fd5b505afa158015610ee3573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f0791906118db565b6001600160a01b031614610f2d5760405162461bcd60e51b81526004016105b890611cca565b600081815260086020526040902054610f473033836106f3565b600c546040516323b872dd60e01b8152336004820152306024820152604481018490526001600160a01b03909116906323b872dd90606401600060405180830381600087803b158015610f9957600080fd5b505af1158015610fad573d6000803e3d6000fd5b505050505050565b600080610e8483611102565b6005546001600160a01b03163314610feb5760405162461bcd60e51b81526004016105b890611cf1565b600b80546001600160a01b039092166001600160a01b03199283168117909155600c8054909216179055565b6005546001600160a01b031633146110415760405162461bcd60e51b81526004016105b890611cf1565b6001600160a01b0381166110a65760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016105b8565b6110af8161134c565b50565b60006001600160e01b031982166380ac58cd60e01b14806110e357506001600160e01b03198216635b5e139f60e01b145b806104b857506301ffc9a760e01b6001600160e01b03198316146104b8565b600254600090821080156104b8575060006001600160a01b03166002838154811061112f5761112f611ea2565b6000918252602090912001546001600160a01b0316141592915050565b600081815260036020526040902080546001600160a01b0319166001600160a01b03841690811790915581906111818261085f565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600a60205260408120546001600160a01b03163314156111e1575060016104b8565b610e848383611562565b826001600160a01b03166111fe8261085f565b6001600160a01b0316146112665760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b60648201526084016105b8565b6001600160a01b0382166112c85760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016105b8565b6112d3838383611648565b6112de60008261114c565b81600282815481106112f2576112f2611ea2565b6000918252602082200180546001600160a01b0319166001600160a01b03938416179055604051839285811692908716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9190a4505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6002805460018101825560009182527f405787fa12a823e0f2b7631cc41b3ba8828b3321ca811111fa75cd3aa3bb5ace0180546001600160a01b0319166001600160a01b0385169081179091556040518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6114258484846111eb565b611431848484846116ab565b610cd35760405162461bcd60e51b81526004016105b890611c78565b6060600680546104cd90611e0c565b6060816114805750506040805180820190915260018152600360fc1b602082015290565b8160005b81156114aa578061149481611e47565b91506114a39050600a83611db5565b9150611484565b60008167ffffffffffffffff8111156114c5576114c5611eb8565b6040519080825280601f01601f1916602001820160405280156114ef576020820181803683370190505b5090505b841561155a57611504600183611dc9565b9150611511600a86611e62565b61151c906030611d9d565b60f81b81838151811061153157611531611ea2565b60200101906001600160f81b031916908160001a905350611553600a86611db5565b94506114f3565b949350505050565b600061156d82611102565b6115ce5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016105b8565b60006115d98361085f565b9050806001600160a01b0316846001600160a01b031614806116145750836001600160a01b031661160984610550565b6001600160a01b0316145b8061155a57506001600160a01b0380821660009081526004602090815260408083209388168352929052205460ff1661155a565b806001600160a01b03841630148061166857506001600160a01b03831630145b610cd35760405162461bcd60e51b8152602060048201526014602482015273151c985b9cd9995c881b9bdd08105b1b1bddd95960621b60448201526064016105b8565b60006001600160a01b0384163b156117ad57604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906116ef903390899088908890600401611bdd565b602060405180830381600087803b15801561170957600080fd5b505af1925050508015611739575060408051601f3d908101601f1916820190925261173691810190611a6e565b60015b611793573d808015611767576040519150601f19603f3d011682016040523d82523d6000602084013e61176c565b606091505b50805161178b5760405162461bcd60e51b81526004016105b890611c78565b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061155a565b506001949350505050565b8280546117c490611e0c565b90600052602060002090601f0160209004810192826117e6576000855561182c565b82601f106117ff57805160ff191683800117855561182c565b8280016001018555821561182c579182015b8281111561182c578251825591602001919060010190611811565b5061085b9291505b8082111561085b5760008155600101611834565b600067ffffffffffffffff8084111561186357611863611eb8565b604051601f8501601f19908116603f0116810190828211818310171561188b5761188b611eb8565b816040528093508581528686860111156118a457600080fd5b858560208301376000602087830101525050509392505050565b6000602082840312156118d057600080fd5b8135610e8481611ece565b6000602082840312156118ed57600080fd5b8151610e8481611ece565b6000806040838503121561190b57600080fd5b823561191681611ece565b9150602083013561192681611ece565b809150509250929050565b60008060006060848603121561194657600080fd5b833561195181611ece565b9250602084013561196181611ece565b929592945050506040919091013590565b6000806000806080858703121561198857600080fd5b843561199381611ece565b935060208501356119a381611ece565b925060408501359150606085013567ffffffffffffffff8111156119c657600080fd5b8501601f810187136119d757600080fd5b6119e687823560208401611848565b91505092959194509250565b60008060408385031215611a0557600080fd5b8235611a1081611ece565b91506020830135801515811461192657600080fd5b60008060408385031215611a3857600080fd5b8235611a4381611ece565b946020939093013593505050565b600060208284031215611a6357600080fd5b8135610e8481611ee3565b600060208284031215611a8057600080fd5b8151610e8481611ee3565b600060208284031215611a9d57600080fd5b813567ffffffffffffffff811115611ab457600080fd5b8201601f81018413611ac557600080fd5b61155a84823560208401611848565b600060208284031215611ae657600080fd5b5035919050565b60008151808452611b05816020860160208601611de0565b601f01601f19169290920160200192915050565b600084516020611b2c8285838a01611de0565b855191840191611b3f8184848a01611de0565b8554920191600090600181811c9080831680611b5c57607f831692505b858310811415611b7a57634e487b7160e01b85526022600452602485fd5b808015611b8e5760018114611b9f57611bcc565b60ff19851688528388019550611bcc565b60008b81526020902060005b85811015611bc45781548a820152908401908801611bab565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611c1090830184611aed565b9695505050505050565b602081526000610e846020830184611aed565b6020808252602b908201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560408201526a74206f6620626f756e647360a81b606082015260800190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252600d908201526c2737ba103a34329037bbb732b960991b604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b600061ffff808316818516808303821115611d9457611d94611e76565b01949350505050565b60008219821115611db057611db0611e76565b500190565b600082611dc457611dc4611e8c565b500490565b600082821015611ddb57611ddb611e76565b500390565b60005b83811015611dfb578181015183820152602001611de3565b83811115610cd35750506000910152565b600181811c90821680611e2057607f821691505b60208210811415611e4157634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415611e5b57611e5b611e76565b5060010190565b600082611e7157611e71611e8c565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b03811681146110af57600080fd5b6001600160e01b0319811681146110af57600080fdfea264697066735822122015dd7715013142941178b83521fc13191830ed4f9f3fc739ee517f2a1d987f2f64736f6c63430008070033697066733a2f2f516d616531333868644d417532444b6d77786d6b6b566e7736366f485143395736436337644155657238433579452f

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101da5760003560e01c80637ec4a65911610104578063c87b56dd116100a2578063d600ddef11610071578063d600ddef1461041e578063db9771f514610431578063e985e9c514610444578063f2fde38b1461048057600080fd5b8063c87b56dd146103bc578063cf9bed2f146103cf578063d44624b2146103ef578063d5abeb011461040257600080fd5b8063a0712d68116100de578063a0712d6814610370578063a22cb46514610383578063b88d4fde14610396578063baf9e3dc146103a957600080fd5b80637ec4a659146103445780638da5cb5b1461035757806395d89b411461036857600080fd5b80632f745c591161017c5780636d2bcfd81161014b5780636d2bcfd8146102e057806370a0823114610309578063715018a61461031c57806376c638731461032457600080fd5b80632f745c591461029457806342842e0e146102a75780634f6ccce7146102ba5780636352211e146102cd57600080fd5b8063095ea7b3116101b8578063095ea7b3146102475780630cdd42341461025c57806318160ddd1461026f57806323b872dd1461028157600080fd5b806301ffc9a7146101df57806306fdde0314610207578063081812fc1461021c575b600080fd5b6101f26101ed366004611a51565b610493565b60405190151581526020015b60405180910390f35b61020f6104be565b6040516101fe9190611c1a565b61022f61022a366004611ad4565b610550565b6040516001600160a01b0390911681526020016101fe565b61025a610255366004611a25565b6105dd565b005b600b5461022f906001600160a01b031681565b6002545b6040519081526020016101fe565b61025a61028f366004611931565b6106f3565b6102736102a2366004611a25565b610724565b61025a6102b5366004611931565b6107d7565b6102736102c8366004611ad4565b6107f2565b61022f6102db366004611ad4565b61085f565b61022f6102ee366004611ad4565b600a602052600090815260409020546001600160a01b031681565b6102736103173660046118be565b6108eb565b61025a6109bd565b610273610332366004611ad4565b60086020526000908152604090205481565b61025a610352366004611a8b565b6109f3565b6005546001600160a01b031661022f565b61020f610a34565b61025a61037e366004611ad4565b610a43565b61025a6103913660046119f2565b610bdc565b61025a6103a4366004611972565b610ca1565b61025a6103b7366004611ad4565b610cd9565b61020f6103ca366004611ad4565b610daf565b6102736103dd366004611ad4565b60096020526000908152604090205481565b61025a6103fd366004611ad4565b610e8b565b61040b611e6181565b60405161ffff90911681526020016101fe565b6101f261042c366004611ad4565b610fb5565b61025a61043f3660046118be565b610fc1565b6101f26104523660046118f8565b6001600160a01b03918216600090815260046020908152604080832093909416825291909152205460ff1690565b61025a61048e3660046118be565b611017565b60006001600160e01b0319821663780e9d6360e01b14806104b857506104b8826110b2565b92915050565b6060600080546104cd90611e0c565b80601f01602080910402602001604051908101604052809291908181526020018280546104f990611e0c565b80156105465780601f1061051b57610100808354040283529160200191610546565b820191906000526020600020905b81548152906001019060200180831161052957829003601f168201915b5050505050905090565b600061055b82611102565b6105c15760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600360205260409020546001600160a01b031690565b60006105e88261085f565b9050806001600160a01b0316836001600160a01b031614156106565760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016105b8565b336001600160a01b038216148061067257506106728133610452565b6106e45760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016105b8565b6106ee838361114c565b505050565b6106fd33826111ba565b6107195760405162461bcd60e51b81526004016105b890611d26565b6106ee8383836111eb565b600061072f836108eb565b821061074d5760405162461bcd60e51b81526004016105b890611c2d565b6000805b6002548110156107be576002818154811061076e5761076e611ea2565b6000918252602090912001546001600160a01b03868116911614156107ac578382141561079e5791506104b89050565b816107a881611e47565b9250505b806107b681611e47565b915050610751565b5060405162461bcd60e51b81526004016105b890611c2d565b6106ee83838360405180602001604052806000815250610ca1565b600254600090821061085b5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b60648201526084016105b8565b5090565b6000806002838154811061087557610875611ea2565b6000918252602090912001546001600160a01b03169050806104b85760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016105b8565b60006001600160a01b0382166109565760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016105b8565b600254600090815b818110156109b4576002818154811061097957610979611ea2565b6000918252602090912001546001600160a01b03868116911614156109a4576109a183611e47565b92505b6109ad81611e47565b905061095e565b50909392505050565b6005546001600160a01b031633146109e75760405162461bcd60e51b81526004016105b890611cf1565b6109f1600061134c565b565b6005546001600160a01b03163314610a1d5760405162461bcd60e51b81526004016105b890611cf1565b8051610a309060069060208401906117b8565b5050565b6060600180546104cd90611e0c565b600c546040516331a9108f60e11b81526004810183905233916001600160a01b031690636352211e9060240160206040518083038186803b158015610a8757600080fd5b505afa158015610a9b573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610abf91906118db565b6001600160a01b031614610ae55760405162461bcd60e51b81526004016105b890611cca565b600254611e61610af6826001611d77565b61ffff161115610b3e5760405162461bcd60e51b815260206004820152601360248201527222bc31b2b2b2399036b0bc1039bab838363c9760691b60448201526064016105b8565b600c546040516323b872dd60e01b8152336004820152306024820152604481018490526001600160a01b03909116906323b872dd90606401600060405180830381600087803b158015610b9057600080fd5b505af1158015610ba4573d6000803e3d6000fd5b50505050610bb6338261ffff1661139e565b61ffff166000818152600960209081526040808320859055938252600890529190912055565b6001600160a01b038216331415610c355760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016105b8565b3360008181526004602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610cab33836111ba565b610cc75760405162461bcd60e51b81526004016105b890611d26565b610cd38484848461141a565b50505050565b33610ce38261085f565b6001600160a01b031614610d095760405162461bcd60e51b81526004016105b890611cca565b6000818152600960205260409081902054600c5491516323b872dd60e01b81523060048201523360248201526044810182905290916001600160a01b0316906323b872dd90606401600060405180830381600087803b158015610d6b57600080fd5b505af1158015610d7f573d6000803e3d6000fd5b50505050610d8e3330846106f3565b506000908152600a6020526040902080546001600160a01b03191633179055565b6060610dba82611102565b610e1e5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016105b8565b60009182526009602052604082205491610e3661144d565b90506000815111610e565760405180602001604052806000815250610e84565b80610e608461145c565b6007604051602001610e7493929190611b19565b6040516020818303038152906040525b9392505050565b600c546040516331a9108f60e11b81526004810183905233916001600160a01b031690636352211e9060240160206040518083038186803b158015610ecf57600080fd5b505afa158015610ee3573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f0791906118db565b6001600160a01b031614610f2d5760405162461bcd60e51b81526004016105b890611cca565b600081815260086020526040902054610f473033836106f3565b600c546040516323b872dd60e01b8152336004820152306024820152604481018490526001600160a01b03909116906323b872dd90606401600060405180830381600087803b158015610f9957600080fd5b505af1158015610fad573d6000803e3d6000fd5b505050505050565b600080610e8483611102565b6005546001600160a01b03163314610feb5760405162461bcd60e51b81526004016105b890611cf1565b600b80546001600160a01b039092166001600160a01b03199283168117909155600c8054909216179055565b6005546001600160a01b031633146110415760405162461bcd60e51b81526004016105b890611cf1565b6001600160a01b0381166110a65760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016105b8565b6110af8161134c565b50565b60006001600160e01b031982166380ac58cd60e01b14806110e357506001600160e01b03198216635b5e139f60e01b145b806104b857506301ffc9a760e01b6001600160e01b03198316146104b8565b600254600090821080156104b8575060006001600160a01b03166002838154811061112f5761112f611ea2565b6000918252602090912001546001600160a01b0316141592915050565b600081815260036020526040902080546001600160a01b0319166001600160a01b03841690811790915581906111818261085f565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600a60205260408120546001600160a01b03163314156111e1575060016104b8565b610e848383611562565b826001600160a01b03166111fe8261085f565b6001600160a01b0316146112665760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b60648201526084016105b8565b6001600160a01b0382166112c85760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016105b8565b6112d3838383611648565b6112de60008261114c565b81600282815481106112f2576112f2611ea2565b6000918252602082200180546001600160a01b0319166001600160a01b03938416179055604051839285811692908716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9190a4505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6002805460018101825560009182527f405787fa12a823e0f2b7631cc41b3ba8828b3321ca811111fa75cd3aa3bb5ace0180546001600160a01b0319166001600160a01b0385169081179091556040518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6114258484846111eb565b611431848484846116ab565b610cd35760405162461bcd60e51b81526004016105b890611c78565b6060600680546104cd90611e0c565b6060816114805750506040805180820190915260018152600360fc1b602082015290565b8160005b81156114aa578061149481611e47565b91506114a39050600a83611db5565b9150611484565b60008167ffffffffffffffff8111156114c5576114c5611eb8565b6040519080825280601f01601f1916602001820160405280156114ef576020820181803683370190505b5090505b841561155a57611504600183611dc9565b9150611511600a86611e62565b61151c906030611d9d565b60f81b81838151811061153157611531611ea2565b60200101906001600160f81b031916908160001a905350611553600a86611db5565b94506114f3565b949350505050565b600061156d82611102565b6115ce5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016105b8565b60006115d98361085f565b9050806001600160a01b0316846001600160a01b031614806116145750836001600160a01b031661160984610550565b6001600160a01b0316145b8061155a57506001600160a01b0380821660009081526004602090815260408083209388168352929052205460ff1661155a565b806001600160a01b03841630148061166857506001600160a01b03831630145b610cd35760405162461bcd60e51b8152602060048201526014602482015273151c985b9cd9995c881b9bdd08105b1b1bddd95960621b60448201526064016105b8565b60006001600160a01b0384163b156117ad57604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906116ef903390899088908890600401611bdd565b602060405180830381600087803b15801561170957600080fd5b505af1925050508015611739575060408051601f3d908101601f1916820190925261173691810190611a6e565b60015b611793573d808015611767576040519150601f19603f3d011682016040523d82523d6000602084013e61176c565b606091505b50805161178b5760405162461bcd60e51b81526004016105b890611c78565b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061155a565b506001949350505050565b8280546117c490611e0c565b90600052602060002090601f0160209004810192826117e6576000855561182c565b82601f106117ff57805160ff191683800117855561182c565b8280016001018555821561182c579182015b8281111561182c578251825591602001919060010190611811565b5061085b9291505b8082111561085b5760008155600101611834565b600067ffffffffffffffff8084111561186357611863611eb8565b604051601f8501601f19908116603f0116810190828211818310171561188b5761188b611eb8565b816040528093508581528686860111156118a457600080fd5b858560208301376000602087830101525050509392505050565b6000602082840312156118d057600080fd5b8135610e8481611ece565b6000602082840312156118ed57600080fd5b8151610e8481611ece565b6000806040838503121561190b57600080fd5b823561191681611ece565b9150602083013561192681611ece565b809150509250929050565b60008060006060848603121561194657600080fd5b833561195181611ece565b9250602084013561196181611ece565b929592945050506040919091013590565b6000806000806080858703121561198857600080fd5b843561199381611ece565b935060208501356119a381611ece565b925060408501359150606085013567ffffffffffffffff8111156119c657600080fd5b8501601f810187136119d757600080fd5b6119e687823560208401611848565b91505092959194509250565b60008060408385031215611a0557600080fd5b8235611a1081611ece565b91506020830135801515811461192657600080fd5b60008060408385031215611a3857600080fd5b8235611a4381611ece565b946020939093013593505050565b600060208284031215611a6357600080fd5b8135610e8481611ee3565b600060208284031215611a8057600080fd5b8151610e8481611ee3565b600060208284031215611a9d57600080fd5b813567ffffffffffffffff811115611ab457600080fd5b8201601f81018413611ac557600080fd5b61155a84823560208401611848565b600060208284031215611ae657600080fd5b5035919050565b60008151808452611b05816020860160208601611de0565b601f01601f19169290920160200192915050565b600084516020611b2c8285838a01611de0565b855191840191611b3f8184848a01611de0565b8554920191600090600181811c9080831680611b5c57607f831692505b858310811415611b7a57634e487b7160e01b85526022600452602485fd5b808015611b8e5760018114611b9f57611bcc565b60ff19851688528388019550611bcc565b60008b81526020902060005b85811015611bc45781548a820152908401908801611bab565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611c1090830184611aed565b9695505050505050565b602081526000610e846020830184611aed565b6020808252602b908201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560408201526a74206f6620626f756e647360a81b606082015260800190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252600d908201526c2737ba103a34329037bbb732b960991b604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b600061ffff808316818516808303821115611d9457611d94611e76565b01949350505050565b60008219821115611db057611db0611e76565b500190565b600082611dc457611dc4611e8c565b500490565b600082821015611ddb57611ddb611e76565b500390565b60005b83811015611dfb578181015183820152602001611de3565b83811115610cd35750506000910152565b600181811c90821680611e2057607f821691505b60208210811415611e4157634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415611e5b57611e5b611e76565b5060010190565b600082611e7157611e71611e8c565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b03811681146110af57600080fd5b6001600160e01b0319811681146110af57600080fdfea264697066735822122015dd7715013142941178b83521fc13191830ed4f9f3fc739ee517f2a1d987f2f64736f6c63430008070033

Deployed Bytecode Sourcemap

29378:3550:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27893:224;;;;;;:::i;:::-;;:::i;:::-;;;7736:14:1;;7729:22;7711:41;;7699:2;7684:18;27893:224:0;;;;;;;;16554:100;;;:::i;:::-;;;;;;;:::i;17366:308::-;;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;6654:32:1;;;6636:51;;6624:2;6609:18;17366:308:0;6490:203:1;16889:411:0;;;;;;:::i;:::-;;:::i;:::-;;29819:71;;;;;-1:-1:-1;;;;;29819:71:0;;;28193:110;28281:7;:14;28193:110;;;15854:25:1;;;15842:2;15827:18;28193:110:0;15708:177:1;18425:376:0;;;;;;:::i;:::-;;:::i;28669:490::-;;;;;;:::i;:::-;;:::i;18872:185::-;;;;;;:::i;:::-;;:::i;28380:205::-;;;;;;:::i;:::-;;:::i;16161:326::-;;;;;;:::i;:::-;;:::i;29770:42::-;;;;;;:::i;:::-;;;;;;;;;;;;-1:-1:-1;;;;;29770:42:0;;;15653:446;;;;;;:::i;:::-;;:::i;3664:103::-;;;:::i;29657:51::-;;;;;;:::i;:::-;;;;;;;;;;;;;;32554:102;;;;;;:::i;:::-;;:::i;3013:87::-;3086:6;;-1:-1:-1;;;;;3086:6:0;3013:87;;16723:104;;;:::i;30161:456::-;;;;;;:::i;:::-;;:::i;17746:327::-;;;;;;:::i;:::-;;:::i;19128:365::-;;;;;;:::i;:::-;;:::i;31541:352::-;;;;;;:::i;:::-;;:::i;32069:477::-;;;;;;:::i;:::-;;:::i;29713:51::-;;;;;;:::i;:::-;;;;;;;;;;;;;;31224:310;;;;;;:::i;:::-;;:::i;29603:39::-;;29638:4;29603:39;;;;;15689:6:1;15677:19;;;15659:38;;15647:2;15632:18;29603:39:0;15515:188:1;31903:153:0;;;;;;:::i;:::-;;:::i;30014:136::-;;;;;;:::i;:::-;;:::i;18144:214::-;;;;;;:::i;:::-;-1:-1:-1;;;;;18315:25:0;;;18286:4;18315:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;18144:214;3922:201;;;;;;:::i;:::-;;:::i;27893:224::-;27995:4;-1:-1:-1;;;;;;28019:50:0;;-1:-1:-1;;;28019:50:0;;:90;;;28073:36;28097:11;28073:23;:36::i;:::-;28012:97;27893:224;-1:-1:-1;;27893:224:0:o;16554:100::-;16608:13;16641:5;16634:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16554:100;:::o;17366:308::-;17487:7;17534:16;17542:7;17534;:16::i;:::-;17512:110;;;;-1:-1:-1;;;17512:110:0;;12536:2:1;17512:110:0;;;12518:21:1;12575:2;12555:18;;;12548:30;12614:34;12594:18;;;12587:62;-1:-1:-1;;;12665:18:1;;;12658:42;12717:19;;17512:110:0;;;;;;;;;-1:-1:-1;17642:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;17642:24:0;;17366:308::o;16889:411::-;16970:13;16986:23;17001:7;16986:14;:23::i;:::-;16970:39;;17034:5;-1:-1:-1;;;;;17028:11:0;:2;-1:-1:-1;;;;;17028:11:0;;;17020:57;;;;-1:-1:-1;;;17020:57:0;;14484:2:1;17020:57:0;;;14466:21:1;14523:2;14503:18;;;14496:30;14562:34;14542:18;;;14535:62;-1:-1:-1;;;14613:18:1;;;14606:31;14654:19;;17020:57:0;14282:397:1;17020:57:0;1817:10;-1:-1:-1;;;;;17112:21:0;;;;:62;;-1:-1:-1;17137:37:0;17154:5;1817:10;18144:214;:::i;17137:37::-;17090:168;;;;-1:-1:-1;;;17090:168:0;;10948:2:1;17090:168:0;;;10930:21:1;10987:2;10967:18;;;10960:30;11026:34;11006:18;;;10999:62;11097:26;11077:18;;;11070:54;11141:19;;17090:168:0;10746:420:1;17090:168:0;17271:21;17280:2;17284:7;17271:8;:21::i;:::-;16959:341;16889:411;;:::o;18425:376::-;18634:41;1817:10;18667:7;18634:18;:41::i;:::-;18612:140;;;;-1:-1:-1;;;18612:140:0;;;;;;;:::i;:::-;18765:28;18775:4;18781:2;18785:7;18765:9;:28::i;28669:490::-;28766:15;28810:16;28820:5;28810:9;:16::i;:::-;28802:5;:24;28794:80;;;;-1:-1:-1;;;28794:80:0;;;;;;;:::i;:::-;28887:10;28912:6;28908:178;28924:7;:14;28920:18;;28908:178;;;28971:7;28979:1;28971:10;;;;;;;;:::i;:::-;;;;;;;;;;;-1:-1:-1;;;;;28962:19:0;;;28971:10;;28962:19;28959:116;;;29013:5;29004;:14;29001:58;;;29027:1;-1:-1:-1;29020:8:0;;-1:-1:-1;29020:8:0;29001:58;29052:7;;;;:::i;:::-;;;;29001:58;28940:3;;;;:::i;:::-;;;;28908:178;;;;29098:53;;-1:-1:-1;;;29098:53:0;;;;;;;:::i;18872:185::-;19010:39;19027:4;19033:2;19037:7;19010:39;;;;;;;;;;;;:16;:39::i;28380:205::-;28491:7;:14;28455:7;;28483:22;;28475:79;;;;-1:-1:-1;;;28475:79:0;;15304:2:1;28475:79:0;;;15286:21:1;15343:2;15323:18;;;15316:30;15382:34;15362:18;;;15355:62;-1:-1:-1;;;15433:18:1;;;15426:42;15485:19;;28475:79:0;15102:408:1;28475:79:0;-1:-1:-1;28572:5:0;28380:205::o;16161:326::-;16278:7;16303:13;16319:7;16327;16319:16;;;;;;;;:::i;:::-;;;;;;;;;;;-1:-1:-1;;;;;16319:16:0;;-1:-1:-1;16368:19:0;16346:110;;;;-1:-1:-1;;;16346:110:0;;12126:2:1;16346:110:0;;;12108:21:1;12165:2;12145:18;;;12138:30;12204:34;12184:18;;;12177:62;-1:-1:-1;;;12255:18:1;;;12248:39;12304:19;;16346:110:0;11924:405:1;15653:446:0;15775:4;-1:-1:-1;;;;;15806:19:0;;15798:74;;;;-1:-1:-1;;;15798:74:0;;11715:2:1;15798:74:0;;;11697:21:1;11754:2;11734:18;;;11727:30;11793:34;11773:18;;;11766:62;-1:-1:-1;;;11844:18:1;;;11837:40;11894:19;;15798:74:0;11513:406:1;15798:74:0;15919:7;:14;15885:10;;;15944:101;15961:6;15957:1;:10;15944:101;;;16000:7;16008:1;16000:10;;;;;;;;:::i;:::-;;;;;;;;;;;-1:-1:-1;;;;;15991:19:0;;;16000:10;;15991:19;15987:46;;;16026:7;;;:::i;:::-;;;15987:46;15969:3;;;:::i;:::-;;;15944:101;;;-1:-1:-1;16086:5:0;;15653:446;-1:-1:-1;;;15653:446:0:o;3664:103::-;3086:6;;-1:-1:-1;;;;;3086:6:0;1817:10;3233:23;3225:68;;;;-1:-1:-1;;;3225:68:0;;;;;;;:::i;:::-;3729:30:::1;3756:1;3729:18;:30::i;:::-;3664:103::o:0;32554:102::-;3086:6;;-1:-1:-1;;;;;3086:6:0;1817:10;3233:23;3225:68;;;;-1:-1:-1;;;3225:68:0;;;;;;;:::i;:::-;32628:22;;::::1;::::0;:9:::1;::::0;:22:::1;::::0;::::1;::::0;::::1;:::i;:::-;;32554:102:::0;:::o;16723:104::-;16779:13;16812:7;16805:14;;;;;:::i;30161:456::-;30218:4;;:25;;-1:-1:-1;;;30218:25:0;;;;;15854::1;;;30247:10:0;;-1:-1:-1;;;;;30218:4:0;;:12;;15827:18:1;;30218:25:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;30218:39:0;;30210:65;;;;-1:-1:-1;;;30210:65:0;;;;;;;:::i;:::-;30309:7;:14;29638:4;30339:15;30309:14;30353:1;30339:15;:::i;:::-;:28;;;;30331:60;;;;-1:-1:-1;;;30331:60:0;;14136:2:1;30331:60:0;;;14118:21:1;14175:2;14155:18;;;14148:30;-1:-1:-1;;;14194:18:1;;;14187:49;14253:18;;30331:60:0;13934:343:1;30331:60:0;30399:4;;:57;;-1:-1:-1;;;30399:57:0;;30418:10;30399:57;;;6938:34:1;30438:4:0;6988:18:1;;;6981:43;7040:18;;;7033:34;;;-1:-1:-1;;;;;30399:4:0;;;;:17;;6873:18:1;;30399:57:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30463:30;30469:10;30481:11;30463:30;;:5;:30::i;:::-;30504:34;;;;;;:21;:34;;;;;;;;:48;;;30559:34;;;:21;:34;;;;;;:48;30161:456::o;17746:327::-;-1:-1:-1;;;;;17881:24:0;;1817:10;17881:24;;17873:62;;;;-1:-1:-1;;;17873:62:0;;9832:2:1;17873:62:0;;;9814:21:1;9871:2;9851:18;;;9844:30;9910:27;9890:18;;;9883:55;9955:18;;17873:62:0;9630:349:1;17873:62:0;1817:10;17948:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;17948:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;17948:53:0;;;;;;;;;;18017:48;;7711:41:1;;;17948:42:0;;1817:10;18017:48;;7684:18:1;18017:48:0;;;;;;;17746:327;;:::o;19128:365::-;19317:41;1817:10;19350:7;19317:18;:41::i;:::-;19295:140;;;;-1:-1:-1;;;19295:140:0;;;;;;;:::i;:::-;19446:39;19460:4;19466:2;19470:7;19479:5;19446:13;:39::i;:::-;19128:365;;;;:::o;31541:352::-;31635:10;31611:20;31619:11;31611:7;:20::i;:::-;-1:-1:-1;;;;;31611:34:0;;31603:60;;;;-1:-1:-1;;;31603:60:0;;;;;;;:::i;:::-;31670:11;31684:34;;;:21;:34;;;;;;;;31726:4;;:52;;-1:-1:-1;;;31726:52:0;;31753:4;31726:52;;;6938:34:1;31760:10:0;6988:18:1;;;6981:43;7040:18;;;7033:34;;;31684::0;;-1:-1:-1;;;;;31726:4:0;;:17;;6873:18:1;;31726:52:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31783;31797:10;31817:4;31823:11;31783:12;:52::i;:::-;-1:-1:-1;31840:22:0;;;;:9;:22;;;;;:35;;-1:-1:-1;;;;;;31840:35:0;31865:10;31840:35;;;31541:352::o;32069:477::-;32168:13;32209:17;32217:8;32209:7;:17::i;:::-;32193:98;;;;-1:-1:-1;;;32193:98:0;;13720:2:1;32193:98:0;;;13702:21:1;13759:2;13739:18;;;13732:30;13798:34;13778:18;;;13771:62;-1:-1:-1;;;13849:18:1;;;13842:45;13904:19;;32193:98:0;13518:411:1;32193:98:0;32315:31;;;;:21;:31;;;;;;;32386:10;:8;:10::i;:::-;32355:41;;32441:1;32416:14;32410:28;:32;:130;;;;;;;;;;;;;;;;;32478:14;32494:19;:8;:17;:19::i;:::-;32515:9;32461:64;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;32410:130;32403:137;32069:477;-1:-1:-1;;;32069:477:0:o;31224:310::-;31295:4;;:25;;-1:-1:-1;;;31295:25:0;;;;;15854::1;;;31324:10:0;;-1:-1:-1;;;;;31295:4:0;;:12;;15827:18:1;;31295:25:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;31295:39:0;;31287:65;;;;-1:-1:-1;;;31287:65:0;;;;;;;:::i;:::-;31360:11;31374:34;;;:21;:34;;;;;;31416:47;31438:4;31445:10;31374:34;31416:12;:47::i;:::-;31468:4;;:56;;-1:-1:-1;;;31468:56:0;;31486:10;31468:56;;;6938:34:1;31506:4:0;6988:18:1;;;6981:43;7040:18;;;7033:34;;;-1:-1:-1;;;;;31468:4:0;;;;:17;;6873:18:1;;31468:56:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31281:253;31224:310;:::o;31903:153::-;31981:4;31998:10;32013:17;32021:8;32013:7;:17::i;30014:136::-;3086:6;;-1:-1:-1;;;;;3086:6:0;1817:10;3233:23;3225:68;;;;-1:-1:-1;;;3225:68:0;;;;;;;:::i;:::-;30084:11:::1;:26:::0;;-1:-1:-1;;;;;30084:26:0;;::::1;-1:-1:-1::0;;;;;;30084:26:0;;::::1;::::0;::::1;::::0;;;30121:4:::1;:24:::0;;;;::::1;;::::0;;30014:136::o;3922:201::-;3086:6;;-1:-1:-1;;;;;3086:6:0;1817:10;3233:23;3225:68;;;;-1:-1:-1;;;3225:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;4011:22:0;::::1;4003:73;;;::::0;-1:-1:-1;;;4003:73:0;;9020:2:1;4003:73:0::1;::::0;::::1;9002:21:1::0;9059:2;9039:18;;;9032:30;9098:34;9078:18;;;9071:62;-1:-1:-1;;;9149:18:1;;;9142:36;9195:19;;4003:73:0::1;8818:402:1::0;4003:73:0::1;4087:28;4106:8;4087:18;:28::i;:::-;3922:201:::0;:::o;15234:355::-;15381:4;-1:-1:-1;;;;;;15423:40:0;;-1:-1:-1;;;15423:40:0;;:105;;-1:-1:-1;;;;;;;15480:48:0;;-1:-1:-1;;;15480:48:0;15423:105;:158;;;-1:-1:-1;;;;;;;;;;7403:40:0;;;15545:36;7294:157;21040:155;21139:7;:14;21105:4;;21129:24;;:58;;;;;21185:1;-1:-1:-1;;;;;21157:30:0;:7;21165;21157:16;;;;;;;;:::i;:::-;;;;;;;;;;;-1:-1:-1;;;;;21157:16:0;:30;;21122:65;21040:155;-1:-1:-1;;21040:155:0:o;25017:174::-;25092:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;25092:29:0;-1:-1:-1;;;;;25092:29:0;;;;;;;;:24;;25146:23;25092:24;25146:14;:23::i;:::-;-1:-1:-1;;;;;25137:46:0;;;;;;;;;;;25017:174;;:::o;30918:292::-;31066:4;31095:18;;;:9;:18;;;;;;-1:-1:-1;;;;;31095:18:0;31117:10;31095:32;31090:50;;;-1:-1:-1;31136:4:0;31129:11;;31090:50;31158:42;31183:7;31192;31158:24;:42::i;24346:553::-;24519:4;-1:-1:-1;;;;;24492:31:0;:23;24507:7;24492:14;:23::i;:::-;-1:-1:-1;;;;;24492:31:0;;24470:122;;;;-1:-1:-1;;;24470:122:0;;13310:2:1;24470:122:0;;;13292:21:1;13349:2;13329:18;;;13322:30;13388:34;13368:18;;;13361:62;-1:-1:-1;;;13439:18:1;;;13432:39;13488:19;;24470:122:0;13108:405:1;24470:122:0;-1:-1:-1;;;;;24611:16:0;;24603:65;;;;-1:-1:-1;;;24603:65:0;;9427:2:1;24603:65:0;;;9409:21:1;9466:2;9446:18;;;9439:30;9505:34;9485:18;;;9478:62;-1:-1:-1;;;9556:18:1;;;9549:34;9600:19;;24603:65:0;9225:400:1;24603:65:0;24681:39;24702:4;24708:2;24712:7;24681:20;:39::i;:::-;24785:29;24802:1;24806:7;24785:8;:29::i;:::-;24844:2;24825:7;24833;24825:16;;;;;;;;:::i;:::-;;;;;;;;;:21;;-1:-1:-1;;;;;;24825:21:0;-1:-1:-1;;;;;24825:21:0;;;;;;24864:27;;24883:7;;24864:27;;;;;;;;;;24825:16;24864:27;24346:553;;;:::o;4283:191::-;4376:6;;;-1:-1:-1;;;;;4393:17:0;;;-1:-1:-1;;;;;;4393:17:0;;;;;;;4426:40;;4376:6;;;4393:17;4376:6;;4426:40;;4357:16;;4426:40;4346:128;4283:191;:::o;32677:154::-;32758:7;:16;;;;;;;-1:-1:-1;32758:16:0;;;;;;;-1:-1:-1;;;;;;32758:16:0;-1:-1:-1;;;;;32758:16:0;;;;;;;;32790:33;;32815:7;;-1:-1:-1;32790:33:0;;-1:-1:-1;;32790:33:0;32677:154;;:::o;20375:352::-;20532:28;20542:4;20548:2;20552:7;20532:9;:28::i;:::-;20593:48;20616:4;20622:2;20626:7;20635:5;20593:22;:48::i;:::-;20571:148;;;;-1:-1:-1;;;20571:148:0;;;;;;;:::i;32837:88::-;32881:13;32910:9;32903:16;;;;;:::i;326:723::-;382:13;603:10;599:53;;-1:-1:-1;;630:10:0;;;;;;;;;;;;-1:-1:-1;;;630:10:0;;;;;326:723::o;599:53::-;677:5;662:12;718:78;725:9;;718:78;;751:8;;;;:::i;:::-;;-1:-1:-1;774:10:0;;-1:-1:-1;782:2:0;774:10;;:::i;:::-;;;718:78;;;806:19;838:6;828:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;828:17:0;;806:39;;856:154;863:10;;856:154;;890:11;900:1;890:11;;:::i;:::-;;-1:-1:-1;959:10:0;967:2;959:5;:10;:::i;:::-;946:24;;:2;:24;:::i;:::-;933:39;;916:6;923;916:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;916:56:0;;;;;;;;-1:-1:-1;987:11:0;996:2;987:11;;:::i;:::-;;;856:154;;;1034:6;326:723;-1:-1:-1;;;;326:723:0:o;21362:452::-;21491:4;21535:16;21543:7;21535;:16::i;:::-;21513:110;;;;-1:-1:-1;;;21513:110:0;;10186:2:1;21513:110:0;;;10168:21:1;10225:2;10205:18;;;10198:30;10264:34;10244:18;;;10237:62;-1:-1:-1;;;10315:18:1;;;10308:42;10367:19;;21513:110:0;9984:408:1;21513:110:0;21634:13;21650:23;21665:7;21650:14;:23::i;:::-;21634:39;;21703:5;-1:-1:-1;;;;;21692:16:0;:7;-1:-1:-1;;;;;21692:16:0;;:64;;;;21749:7;-1:-1:-1;;;;;21725:31:0;:20;21737:7;21725:11;:20::i;:::-;-1:-1:-1;;;;;21725:31:0;;21692:64;:113;;;-1:-1:-1;;;;;;18315:25:0;;;18286:4;18315:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;21773:32;18144:214;30623:287;30781:7;-1:-1:-1;;;;;30808:21:0;;30824:4;30808:21;;:45;;-1:-1:-1;;;;;;30833:20:0;;30848:4;30833:20;30808:45;30799:80;;;;-1:-1:-1;;;30799:80:0;;10599:2:1;30799:80:0;;;10581:21:1;10638:2;10618:18;;;10611:30;-1:-1:-1;;;10657:18:1;;;10650:50;10717:18;;30799:80:0;10397:344:1;25756:980:0;25911:4;-1:-1:-1;;;;;25932:13:0;;14434:20;14482:8;25928:801;;25985:175;;-1:-1:-1;;;25985:175:0;;-1:-1:-1;;;;;25985:36:0;;;;;:175;;1817:10;;26079:4;;26106:7;;26136:5;;25985:175;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;25985:175:0;;;;;;;;-1:-1:-1;;25985:175:0;;;;;;;;;;;;:::i;:::-;;;25964:710;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;26343:13:0;;26339:320;;26386:108;;-1:-1:-1;;;26386:108:0;;;;;;;:::i;26339:320::-;26609:6;26603:13;26594:6;26590:2;26586:15;26579:38;25964:710;-1:-1:-1;;;;;;26224:51:0;-1:-1:-1;;;26224:51:0;;-1:-1:-1;26217:58:0;;25928:801;-1:-1:-1;26713:4:0;25756:980;;;;;;:::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:247::-;709:6;762:2;750:9;741:7;737:23;733:32;730:52;;;778:1;775;768:12;730:52;817:9;804:23;836:31;861:5;836:31;:::i;902:251::-;972:6;1025:2;1013:9;1004:7;1000:23;996:32;993:52;;;1041:1;1038;1031:12;993:52;1073:9;1067:16;1092:31;1117:5;1092:31;:::i;1158:388::-;1226:6;1234;1287:2;1275:9;1266:7;1262:23;1258:32;1255:52;;;1303:1;1300;1293:12;1255:52;1342:9;1329:23;1361:31;1386:5;1361:31;:::i;:::-;1411:5;-1:-1:-1;1468:2:1;1453:18;;1440:32;1481:33;1440:32;1481:33;:::i;:::-;1533:7;1523:17;;;1158:388;;;;;:::o;1551:456::-;1628:6;1636;1644;1697:2;1685:9;1676:7;1672:23;1668:32;1665:52;;;1713:1;1710;1703:12;1665:52;1752:9;1739:23;1771:31;1796:5;1771:31;:::i;:::-;1821:5;-1:-1:-1;1878:2:1;1863:18;;1850:32;1891:33;1850:32;1891:33;:::i;:::-;1551:456;;1943:7;;-1:-1:-1;;;1997:2:1;1982:18;;;;1969:32;;1551:456::o;2012:794::-;2107:6;2115;2123;2131;2184:3;2172:9;2163:7;2159:23;2155:33;2152:53;;;2201:1;2198;2191:12;2152:53;2240:9;2227:23;2259:31;2284:5;2259:31;:::i;:::-;2309:5;-1:-1:-1;2366:2:1;2351:18;;2338:32;2379:33;2338:32;2379:33;:::i;:::-;2431:7;-1:-1:-1;2485:2:1;2470:18;;2457:32;;-1:-1:-1;2540:2:1;2525:18;;2512:32;2567:18;2556:30;;2553:50;;;2599:1;2596;2589:12;2553:50;2622:22;;2675:4;2667:13;;2663:27;-1:-1:-1;2653:55:1;;2704:1;2701;2694:12;2653:55;2727:73;2792:7;2787:2;2774:16;2769:2;2765;2761:11;2727:73;:::i;:::-;2717:83;;;2012:794;;;;;;;:::o;2811:416::-;2876:6;2884;2937:2;2925:9;2916:7;2912:23;2908:32;2905:52;;;2953:1;2950;2943:12;2905:52;2992:9;2979:23;3011:31;3036:5;3011:31;:::i;:::-;3061:5;-1:-1:-1;3118:2:1;3103:18;;3090:32;3160:15;;3153:23;3141:36;;3131:64;;3191:1;3188;3181:12;3232:315;3300:6;3308;3361:2;3349:9;3340:7;3336:23;3332:32;3329:52;;;3377:1;3374;3367:12;3329:52;3416:9;3403:23;3435:31;3460:5;3435:31;:::i;:::-;3485:5;3537:2;3522:18;;;;3509:32;;-1:-1:-1;;;3232:315:1:o;3552:245::-;3610:6;3663:2;3651:9;3642:7;3638:23;3634:32;3631:52;;;3679:1;3676;3669:12;3631:52;3718:9;3705:23;3737:30;3761:5;3737:30;:::i;3802:249::-;3871:6;3924:2;3912:9;3903:7;3899:23;3895:32;3892:52;;;3940:1;3937;3930:12;3892:52;3972:9;3966:16;3991:30;4015:5;3991:30;:::i;4056:450::-;4125:6;4178:2;4166:9;4157:7;4153:23;4149:32;4146:52;;;4194:1;4191;4184:12;4146:52;4234:9;4221:23;4267:18;4259:6;4256:30;4253:50;;;4299:1;4296;4289:12;4253:50;4322:22;;4375:4;4367:13;;4363:27;-1:-1:-1;4353:55:1;;4404:1;4401;4394:12;4353:55;4427:73;4492:7;4487:2;4474:16;4469:2;4465;4461:11;4427:73;:::i;4511:180::-;4570:6;4623:2;4611:9;4602:7;4598:23;4594:32;4591:52;;;4639:1;4636;4629:12;4591:52;-1:-1:-1;4662:23:1;;4511:180;-1:-1:-1;4511:180:1:o;4696:257::-;4737:3;4775:5;4769:12;4802:6;4797:3;4790:19;4818:63;4874:6;4867:4;4862:3;4858:14;4851:4;4844:5;4840:16;4818:63;:::i;:::-;4935:2;4914:15;-1:-1:-1;;4910:29:1;4901:39;;;;4942:4;4897:50;;4696:257;-1:-1:-1;;4696:257:1:o;4958:1527::-;5182:3;5220:6;5214:13;5246:4;5259:51;5303:6;5298:3;5293:2;5285:6;5281:15;5259:51;:::i;:::-;5373:13;;5332:16;;;;5395:55;5373:13;5332:16;5417:15;;;5395:55;:::i;:::-;5539:13;;5472:20;;;5512:1;;5599;5621:18;;;;5674;;;;5701:93;;5779:4;5769:8;5765:19;5753:31;;5701:93;5842:2;5832:8;5829:16;5809:18;5806:40;5803:167;;;-1:-1:-1;;;5869:33:1;;5925:4;5922:1;5915:15;5955:4;5876:3;5943:17;5803:167;5986:18;6013:110;;;;6137:1;6132:328;;;;5979:481;;6013:110;-1:-1:-1;;6048:24:1;;6034:39;;6093:20;;;;-1:-1:-1;6013:110:1;;6132:328;15963:1;15956:14;;;16000:4;15987:18;;6227:1;6241:169;6255:8;6252:1;6249:15;6241:169;;;6337:14;;6322:13;;;6315:37;6380:16;;;;6272:10;;6241:169;;;6245:3;;6441:8;6434:5;6430:20;6423:27;;5979:481;-1:-1:-1;6476:3:1;;4958:1527;-1:-1:-1;;;;;;;;;;;4958:1527:1:o;7078:488::-;-1:-1:-1;;;;;7347:15:1;;;7329:34;;7399:15;;7394:2;7379:18;;7372:43;7446:2;7431:18;;7424:34;;;7494:3;7489:2;7474:18;;7467:31;;;7272:4;;7515:45;;7540:19;;7532:6;7515:45;:::i;:::-;7507:53;7078:488;-1:-1:-1;;;;;;7078:488:1:o;7763:219::-;7912:2;7901:9;7894:21;7875:4;7932:44;7972:2;7961:9;7957:18;7949:6;7932:44;:::i;7987:407::-;8189:2;8171:21;;;8228:2;8208:18;;;8201:30;8267:34;8262:2;8247:18;;8240:62;-1:-1:-1;;;8333:2:1;8318:18;;8311:41;8384:3;8369:19;;7987:407::o;8399:414::-;8601:2;8583:21;;;8640:2;8620:18;;;8613:30;8679:34;8674:2;8659:18;;8652:62;-1:-1:-1;;;8745:2:1;8730:18;;8723:48;8803:3;8788:19;;8399:414::o;11171:337::-;11373:2;11355:21;;;11412:2;11392:18;;;11385:30;-1:-1:-1;;;11446:2:1;11431:18;;11424:43;11499:2;11484:18;;11171:337::o;12747:356::-;12949:2;12931:21;;;12968:18;;;12961:30;13027:34;13022:2;13007:18;;13000:62;13094:2;13079:18;;12747:356::o;14684:413::-;14886:2;14868:21;;;14925:2;14905:18;;;14898:30;14964:34;14959:2;14944:18;;14937:62;-1:-1:-1;;;15030:2:1;15015:18;;15008:47;15087:3;15072:19;;14684:413::o;16016:224::-;16055:3;16083:6;16116:2;16113:1;16109:10;16146:2;16143:1;16139:10;16177:3;16173:2;16169:12;16164:3;16161:21;16158:47;;;16185:18;;:::i;:::-;16221:13;;16016:224;-1:-1:-1;;;;16016:224:1:o;16245:128::-;16285:3;16316:1;16312:6;16309:1;16306:13;16303:39;;;16322:18;;:::i;:::-;-1:-1:-1;16358:9:1;;16245:128::o;16378:120::-;16418:1;16444;16434:35;;16449:18;;:::i;:::-;-1:-1:-1;16483:9:1;;16378:120::o;16503:125::-;16543:4;16571:1;16568;16565:8;16562:34;;;16576:18;;:::i;:::-;-1:-1:-1;16613:9:1;;16503:125::o;16633:258::-;16705:1;16715:113;16729:6;16726:1;16723:13;16715:113;;;16805:11;;;16799:18;16786:11;;;16779:39;16751:2;16744:10;16715:113;;;16846:6;16843:1;16840:13;16837:48;;;-1:-1:-1;;16881:1:1;16863:16;;16856:27;16633:258::o;16896:380::-;16975:1;16971:12;;;;17018;;;17039:61;;17093:4;17085:6;17081:17;17071:27;;17039:61;17146:2;17138:6;17135:14;17115:18;17112:38;17109:161;;;17192:10;17187:3;17183:20;17180:1;17173:31;17227:4;17224:1;17217:15;17255:4;17252:1;17245:15;17109:161;;16896:380;;;:::o;17281:135::-;17320:3;-1:-1:-1;;17341:17:1;;17338:43;;;17361:18;;:::i;:::-;-1:-1:-1;17408:1:1;17397:13;;17281:135::o;17421:112::-;17453:1;17479;17469:35;;17484:18;;:::i;:::-;-1:-1:-1;17518:9:1;;17421:112::o;17538:127::-;17599:10;17594:3;17590:20;17587:1;17580:31;17630:4;17627:1;17620:15;17654:4;17651:1;17644:15;17670:127;17731:10;17726:3;17722:20;17719:1;17712:31;17762:4;17759:1;17752:15;17786:4;17783:1;17776:15;17802:127;17863:10;17858:3;17854:20;17851:1;17844:31;17894:4;17891:1;17884:15;17918:4;17915:1;17908:15;17934:127;17995:10;17990:3;17986:20;17983:1;17976:31;18026:4;18023:1;18016:15;18050:4;18047:1;18040:15;18066:131;-1:-1:-1;;;;;18141:31:1;;18131:42;;18121:70;;18187:1;18184;18177:12;18202:131;-1:-1:-1;;;;;;18276:32:1;;18266:43;;18256:71;;18323:1;18320;18313:12

Swarm Source

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