ETH Price: $3,710.07 (+4.15%)

Token

ERC-20: PERADAM (PRD)
 

Overview

Max Total Supply

0 PRD

Holders

15

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
bodge.eth
Balance
1 PRD
0x625d6405dcac9c82f4b681a131d9182115448f75
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:
PERADAM

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 2023-01-25
*/

/**
 *Submitted for verification at Etherscan.io on 2022-09-30
*/

// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

pragma solidity ^0.8.0;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

pragma solidity ^0.8.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);
}

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

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

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

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

pragma solidity ^0.8.0;

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);

        _afterTokenTransfer(from, to, tokenId);
    }

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

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

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

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

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

pragma solidity ^0.8.0;

/**
 * @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.
 */
abstract contract ERC721Enumerable is ERC721, IERC721Enumerable {
    // Mapping from owner to list of owned token IDs
    mapping(address => mapping(uint256 => uint256)) private _ownedTokens;

    // Mapping from token ID to index of the owner tokens list
    mapping(uint256 => uint256) private _ownedTokensIndex;

    // Array with all token ids, used for enumeration
    uint256[] private _allTokens;

    // Mapping from token id to position in the allTokens array
    mapping(uint256 => uint256) private _allTokensIndex;

    /**
     * @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-tokenOfOwnerByIndex}.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index)
        public
        view
        virtual
        override
        returns (uint256)
    {
        require(
            index < ERC721.balanceOf(owner),
            "ERC721Enumerable: owner index out of bounds"
        );
        return _ownedTokens[owner][index];
    }

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

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

    /**
     * @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` cannot be the zero address.
     * - `to` cannot be the zero address.
     *
     * 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 override {
        super._beforeTokenTransfer(from, to, tokenId);

        if (from == address(0)) {
            _addTokenToAllTokensEnumeration(tokenId);
        } else if (from != to) {
            _removeTokenFromOwnerEnumeration(from, tokenId);
        }
        if (to == address(0)) {
            _removeTokenFromAllTokensEnumeration(tokenId);
        } else if (to != from) {
            _addTokenToOwnerEnumeration(to, tokenId);
        }
    }

    /**
     * @dev Private function to add a token to this extension's ownership-tracking data structures.
     * @param to address representing the new owner of the given token ID
     * @param tokenId uint256 ID of the token to be added to the tokens list of the given address
     */
    function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private {
        uint256 length = ERC721.balanceOf(to);
        _ownedTokens[to][length] = tokenId;
        _ownedTokensIndex[tokenId] = length;
    }

    /**
     * @dev Private function to add a token to this extension's token tracking data structures.
     * @param tokenId uint256 ID of the token to be added to the tokens list
     */
    function _addTokenToAllTokensEnumeration(uint256 tokenId) private {
        _allTokensIndex[tokenId] = _allTokens.length;
        _allTokens.push(tokenId);
    }

    /**
     * @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that
     * while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for
     * gas optimizations e.g. when performing a transfer operation (avoiding double writes).
     * This has O(1) time complexity, but alters the order of the _ownedTokens array.
     * @param from address representing the previous owner of the given token ID
     * @param tokenId uint256 ID of the token to be removed from the tokens list of the given address
     */
    function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId)
        private
    {
        // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = ERC721.balanceOf(from) - 1;
        uint256 tokenIndex = _ownedTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary
        if (tokenIndex != lastTokenIndex) {
            uint256 lastTokenId = _ownedTokens[from][lastTokenIndex];

            _ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
            _ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index
        }

        // This also deletes the contents at the last position of the array
        delete _ownedTokensIndex[tokenId];
        delete _ownedTokens[from][lastTokenIndex];
    }

    /**
     * @dev Private function to remove a token from this extension's token tracking data structures.
     * This has O(1) time complexity, but alters the order of the _allTokens array.
     * @param tokenId uint256 ID of the token to be removed from the tokens list
     */
    function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private {
        // To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = _allTokens.length - 1;
        uint256 tokenIndex = _allTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so
        // rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding
        // an 'if' statement (like in _removeTokenFromOwnerEnumeration)
        uint256 lastTokenId = _allTokens[lastTokenIndex];

        _allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
        _allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index

        // This also deletes the contents at the last position of the array
        delete _allTokensIndex[tokenId];
        _allTokens.pop();
    }
}

pragma solidity ^0.8.0;

library Base64Lib {
    string internal constant TABLE =
        "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/";

    function encode(bytes memory data) internal pure returns (string memory) {
        if (data.length == 0) return "";

        // load the table into memory
        string memory table = TABLE;

        // multiply by 4/3 rounded up
        uint256 encodedLen = 4 * ((data.length + 2) / 3);

        // add some extra buffer at the end required for the writing
        string memory result = new string(encodedLen + 32);

        assembly {
            // set the actual output length
            mstore(result, encodedLen)

            // prepare the lookup table
            let tablePtr := add(table, 1)

            // input ptr
            let dataPtr := data
            let endPtr := add(dataPtr, mload(data))

            // result ptr, jump over length
            let resultPtr := add(result, 32)

            // run over the input, 3 bytes at a time
            for {

            } lt(dataPtr, endPtr) {

            } {
                dataPtr := add(dataPtr, 3)

                // read 3 bytes
                let input := mload(dataPtr)

                // write 4 characters
                mstore(
                    resultPtr,
                    shl(248, mload(add(tablePtr, and(shr(18, input), 0x3F))))
                )
                resultPtr := add(resultPtr, 1)
                mstore(
                    resultPtr,
                    shl(248, mload(add(tablePtr, and(shr(12, input), 0x3F))))
                )
                resultPtr := add(resultPtr, 1)
                mstore(
                    resultPtr,
                    shl(248, mload(add(tablePtr, and(shr(6, input), 0x3F))))
                )
                resultPtr := add(resultPtr, 1)
                mstore(
                    resultPtr,
                    shl(248, mload(add(tablePtr, and(input, 0x3F))))
                )
                resultPtr := add(resultPtr, 1)
            }

            // padding with '='
            switch mod(mload(data), 3)
            case 1 {
                mstore(sub(resultPtr, 2), shl(240, 0x3d3d))
            }
            case 2 {
                mstore(sub(resultPtr, 1), shl(248, 0x3d))
            }
        }

        return result;
    }
}

pragma solidity ^0.8.0;

contract PERADAM is ERC721 {
    address public _owner;
    address public _tombSeries;

    string public _URI;
    bool public _claimable;
    uint256 public constant _MAX_SUPPLY = 16;
    uint256 public _currentSupply = 0;

    mapping(address => bool) public _addressHasAlreadyMinted;
    mapping(uint256 => bool) public _idWasAlreadyUsedForMint;

    constructor() ERC721("PERADAM", "PRD") {
        _owner = msg.sender;
        _tombSeries = 0xa5c93e5d9eb8fb1B40228bb93fD40990913dB523;
        for (uint256 index = 0; index < 3; index++) {
            _mint(msg.sender, _currentSupply);
            _currentSupply++;
        }
    }

    // OWNER FUNCTIONS
    modifier onlyOwner() {
        require(_owner == msg.sender);
        _;
    }

    function transferOwnership(address _newOwner) public onlyOwner {
        _owner = _newOwner;
    }

    function changeClaimable(bool _newClaimable) public onlyOwner {
        _claimable = _newClaimable;
    }

    function changeTombSeriesAddress(address _TombSeriesAddress)
        public
        onlyOwner
    {
        _tombSeries = _TombSeriesAddress;
    }
    function changeBaseURI(string memory _newBaseUri) public onlyOwner {
        _URI = _newBaseUri;
    }

    //Minting
    function claim(uint256 TombSeriesID) public {
        require(_claimable, "Claiming not possible");
        require(_currentSupply < _MAX_SUPPLY, "All NFTs are minted");
        ERC721 TombSeriesContract = ERC721(_tombSeries);
        require(
            TombSeriesContract.ownerOf(TombSeriesID) == msg.sender,
            string(
                abi.encodePacked(
                    "You are not the owner of the TombSeries #",
                    Strings.toString(TombSeriesID)
                )
            )
        );
        require(
            !_addressHasAlreadyMinted[msg.sender],
            "Maximum 1 Mint allowed per address"
        );
        require(
            !_idWasAlreadyUsedForMint[TombSeriesID],
            "The given ID was already used for claiming"
        );

        _mint(msg.sender, _currentSupply);
        _currentSupply++;
        _addressHasAlreadyMinted[msg.sender] = true;
        _idWasAlreadyUsedForMint[TombSeriesID] = true;
    }

    //BaseURI
    function _baseURI() internal view virtual override returns (string memory){
        return _URI;
    }   
}

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":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"_MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_URI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_addressHasAlreadyMinted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_claimable","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_currentSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"_idWasAlreadyUsedForMint","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_tombSeries","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseUri","type":"string"}],"name":"changeBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_newClaimable","type":"bool"}],"name":"changeClaimable","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_TombSeriesAddress","type":"address"}],"name":"changeTombSeriesAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"TombSeriesID","type":"uint256"}],"name":"claim","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"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":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526000600a553480156200001657600080fd5b5060408051808201825260078152665045524144414d60c81b60208083019182528351808501909452600384526214149160ea1b90840152815191929162000061916000916200024f565b508051620000779060019060208401906200024f565b5050600680546001600160a01b031990811633179091556007805490911673a5c93e5d9eb8fb1b40228bb93fd40990913db5231790555060005b6003811015620000fc57620000cf33600a546200010360201b60201c565b600a8054906000620000e1836200034d565b91905055508080620000f3906200034d565b915050620000b1565b5062000381565b6001600160a01b0382166200015f5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064015b60405180910390fd5b6000818152600260205260409020546001600160a01b031615620001c65760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640162000156565b6001600160a01b0382166000908152600360205260408120805460019290620001f1908490620002f5565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b8280546200025d9062000310565b90600052602060002090601f016020900481019282620002815760008555620002cc565b82601f106200029c57805160ff1916838001178555620002cc565b82800160010185558215620002cc579182015b82811115620002cc578251825591602001919060010190620002af565b50620002da929150620002de565b5090565b5b80821115620002da5760008155600101620002df565b600082198211156200030b576200030b6200036b565b500190565b600181811c908216806200032557607f821691505b602082108114156200034757634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156200036457620003646200036b565b5060010190565b634e487b7160e01b600052601160045260246000fd5b611add80620003916000396000f3fe608060405234801561001057600080fd5b506004361061018e5760003560e01c806395d89b41116100de578063b91c7a8f11610097578063e985e9c511610071578063e985e9c51461035e578063f2fde38b1461039a578063fdcdf586146103ad578063fffa65e0146103d057600080fd5b8063b91c7a8f1461031b578063c87b56dd14610328578063d2c3d8ae1461033b57600080fd5b806395d89b41146102c9578063a22cb465146102d1578063a4fefad6146102e4578063b2bdfa7b146102ed578063b4e87e8f14610300578063b88d4fde1461030857600080fd5b8063379607f51161014b57806342842e0e1161012557806342842e0e1461026f5780634d433e4d146102825780636352211e1461029557806370a08231146102a857600080fd5b8063379607f51461023657806338dd4f7e1461024957806339a0c6f91461025c57600080fd5b806301ffc9a71461019357806306fdde03146101bb578063081812fc146101d0578063095ea7b3146101fb57806323b872dd146102105780632749424814610223575b600080fd5b6101a66101a1366004611707565b6103d8565b60405190151581526020015b60405180910390f35b6101c361042a565b6040516101b29190611892565b6101e36101de36600461178a565b6104bc565b6040516001600160a01b0390911681526020016101b2565b61020e6102093660046116c0565b610556565b005b61020e61021e3660046115ca565b61066c565b6007546101e3906001600160a01b031681565b61020e61024436600461178a565b61069d565b61020e6102573660046116ec565b610936565b61020e61026a366004611741565b610960565b61020e61027d3660046115ca565b61098e565b61020e610290366004611557565b6109a9565b6101e36102a336600461178a565b6109e2565b6102bb6102b6366004611557565b610a59565b6040519081526020016101b2565b6101c3610ae0565b61020e6102df36600461168b565b610aef565b6102bb600a5481565b6006546101e3906001600160a01b031681565b6101c3610afa565b61020e61031636600461160b565b610b88565b6009546101a69060ff1681565b6101c361033636600461178a565b610bc0565b6101a6610349366004611557565b600b6020526000908152604090205460ff1681565b6101a661036c366004611591565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b61020e6103a8366004611557565b610c9b565b6101a66103bb36600461178a565b600c6020526000908152604090205460ff1681565b6102bb601081565b60006001600160e01b031982166380ac58cd60e01b148061040957506001600160e01b03198216635b5e139f60e01b145b8061042457506301ffc9a760e01b6001600160e01b03198316145b92915050565b606060008054610439906119b7565b80601f0160208091040260200160405190810160405280929190818152602001828054610465906119b7565b80156104b25780601f10610487576101008083540402835291602001916104b2565b820191906000526020600020905b81548152906001019060200180831161049557829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b031661053a5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b6000610561826109e2565b9050806001600160a01b0316836001600160a01b031614156105cf5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610531565b336001600160a01b03821614806105eb57506105eb813361036c565b61065d5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610531565b6106678383610cd4565b505050565b6106763382610d42565b6106925760405162461bcd60e51b8152600401610531906118f7565b610667838383610e39565b60095460ff166106e75760405162461bcd60e51b8152602060048201526015602482015274436c61696d696e67206e6f7420706f737369626c6560581b6044820152606401610531565b6010600a541061072f5760405162461bcd60e51b8152602060048201526013602482015272105b1b081391951cc8185c99481b5a5b9d1959606a1b6044820152606401610531565b6007546040516331a9108f60e11b8152600481018390526001600160a01b039091169033908290636352211e9060240160206040518083038186803b15801561077757600080fd5b505afa15801561078b573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906107af9190611574565b6001600160a01b0316146107c283610fd5565b6040516020016107d291906117fe565b604051602081830303815290604052906107ff5760405162461bcd60e51b81526004016105319190611892565b50336000908152600b602052604090205460ff161561086b5760405162461bcd60e51b815260206004820152602260248201527f4d6178696d756d2031204d696e7420616c6c6f77656420706572206164647265604482015261737360f01b6064820152608401610531565b6000828152600c602052604090205460ff16156108dd5760405162461bcd60e51b815260206004820152602a60248201527f54686520676976656e2049442077617320616c7265616479207573656420666f6044820152697220636c61696d696e6760b01b6064820152608401610531565b6108e933600a546110d3565b600a80549060006108f9836119f2565b9091555050336000908152600b602090815260408083208054600160ff199182168117909255958452600c90925290912080549093161790915550565b6006546001600160a01b0316331461094d57600080fd5b6009805460ff1916911515919091179055565b6006546001600160a01b0316331461097757600080fd5b805161098a906008906020840190611433565b5050565b61066783838360405180602001604052806000815250610b88565b6006546001600160a01b031633146109c057600080fd5b600780546001600160a01b0319166001600160a01b0392909216919091179055565b6000818152600260205260408120546001600160a01b0316806104245760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610531565b60006001600160a01b038216610ac45760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610531565b506001600160a01b031660009081526003602052604090205490565b606060018054610439906119b7565b61098a338383611215565b60088054610b07906119b7565b80601f0160208091040260200160405190810160405280929190818152602001828054610b33906119b7565b8015610b805780601f10610b5557610100808354040283529160200191610b80565b820191906000526020600020905b815481529060010190602001808311610b6357829003601f168201915b505050505081565b610b923383610d42565b610bae5760405162461bcd60e51b8152600401610531906118f7565b610bba848484846112e4565b50505050565b6000818152600260205260409020546060906001600160a01b0316610c3f5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610531565b6000610c49611317565b90506000815111610c695760405180602001604052806000815250610c94565b80610c7384610fd5565b604051602001610c849291906117cf565b6040516020818303038152906040525b9392505050565b6006546001600160a01b03163314610cb257600080fd5b600680546001600160a01b0319166001600160a01b0392909216919091179055565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190610d09826109e2565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b0316610dbb5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610531565b6000610dc6836109e2565b9050806001600160a01b0316846001600160a01b03161480610e015750836001600160a01b0316610df6846104bc565b6001600160a01b0316145b80610e3157506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316610e4c826109e2565b6001600160a01b031614610eb05760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201526437bbb732b960d91b6064820152608401610531565b6001600160a01b038216610f125760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610531565b610f1d600082610cd4565b6001600160a01b0383166000908152600360205260408120805460019290610f46908490611974565b90915550506001600160a01b0382166000908152600360205260408120805460019290610f74908490611948565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b606081610ff95750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611023578061100d816119f2565b915061101c9050600a83611960565b9150610ffd565b60008167ffffffffffffffff81111561103e5761103e611a63565b6040519080825280601f01601f191660200182016040528015611068576020820181803683370190505b5090505b8415610e315761107d600183611974565b915061108a600a86611a0d565b611095906030611948565b60f81b8183815181106110aa576110aa611a4d565b60200101906001600160f81b031916908160001a9053506110cc600a86611960565b945061106c565b6001600160a01b0382166111295760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610531565b6000818152600260205260409020546001600160a01b03161561118e5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610531565b6001600160a01b03821660009081526003602052604081208054600192906111b7908490611948565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b816001600160a01b0316836001600160a01b031614156112775760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610531565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b6112ef848484610e39565b6112fb84848484611326565b610bba5760405162461bcd60e51b8152600401610531906118a5565b606060088054610439906119b7565b60006001600160a01b0384163b1561142857604051630a85bd0160e11b81526001600160a01b0385169063150b7a029061136a903390899088908890600401611855565b602060405180830381600087803b15801561138457600080fd5b505af19250505080156113b4575060408051601f3d908101601f191682019092526113b191810190611724565b60015b61140e573d8080156113e2576040519150601f19603f3d011682016040523d82523d6000602084013e6113e7565b606091505b5080516114065760405162461bcd60e51b8152600401610531906118a5565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050610e31565b506001949350505050565b82805461143f906119b7565b90600052602060002090601f01602090048101928261146157600085556114a7565b82601f1061147a57805160ff19168380011785556114a7565b828001600101855582156114a7579182015b828111156114a757825182559160200191906001019061148c565b506114b39291506114b7565b5090565b5b808211156114b357600081556001016114b8565b600067ffffffffffffffff808411156114e7576114e7611a63565b604051601f8501601f19908116603f0116810190828211818310171561150f5761150f611a63565b8160405280935085815286868601111561152857600080fd5b858560208301376000602087830101525050509392505050565b8035801515811461155257600080fd5b919050565b60006020828403121561156957600080fd5b8135610c9481611a79565b60006020828403121561158657600080fd5b8151610c9481611a79565b600080604083850312156115a457600080fd5b82356115af81611a79565b915060208301356115bf81611a79565b809150509250929050565b6000806000606084860312156115df57600080fd5b83356115ea81611a79565b925060208401356115fa81611a79565b929592945050506040919091013590565b6000806000806080858703121561162157600080fd5b843561162c81611a79565b9350602085013561163c81611a79565b925060408501359150606085013567ffffffffffffffff81111561165f57600080fd5b8501601f8101871361167057600080fd5b61167f878235602084016114cc565b91505092959194509250565b6000806040838503121561169e57600080fd5b82356116a981611a79565b91506116b760208401611542565b90509250929050565b600080604083850312156116d357600080fd5b82356116de81611a79565b946020939093013593505050565b6000602082840312156116fe57600080fd5b610c9482611542565b60006020828403121561171957600080fd5b8135610c9481611a91565b60006020828403121561173657600080fd5b8151610c9481611a91565b60006020828403121561175357600080fd5b813567ffffffffffffffff81111561176a57600080fd5b8201601f8101841361177b57600080fd5b610e31848235602084016114cc565b60006020828403121561179c57600080fd5b5035919050565b600081518084526117bb81602086016020860161198b565b601f01601f19169290920160200192915050565b600083516117e181846020880161198b565b8351908301906117f581836020880161198b565b01949350505050565b7f596f7520617265206e6f7420746865206f776e6572206f662074686520546f6d81526862536572696573202360b81b60208201526000825161184881602985016020870161198b565b9190910160290192915050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611888908301846117a3565b9695505050505050565b602081526000610c9460208301846117a3565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6000821982111561195b5761195b611a21565b500190565b60008261196f5761196f611a37565b500490565b60008282101561198657611986611a21565b500390565b60005b838110156119a657818101518382015260200161198e565b83811115610bba5750506000910152565b600181811c908216806119cb57607f821691505b602082108114156119ec57634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415611a0657611a06611a21565b5060010190565b600082611a1c57611a1c611a37565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b0381168114611a8e57600080fd5b50565b6001600160e01b031981168114611a8e57600080fdfea2646970667358221220280bb06cde1da6de2523fba022914be12aec771a3bdf81b1d5825a7536e2f52764736f6c63430008070033

Deployed Bytecode

0x608060405234801561001057600080fd5b506004361061018e5760003560e01c806395d89b41116100de578063b91c7a8f11610097578063e985e9c511610071578063e985e9c51461035e578063f2fde38b1461039a578063fdcdf586146103ad578063fffa65e0146103d057600080fd5b8063b91c7a8f1461031b578063c87b56dd14610328578063d2c3d8ae1461033b57600080fd5b806395d89b41146102c9578063a22cb465146102d1578063a4fefad6146102e4578063b2bdfa7b146102ed578063b4e87e8f14610300578063b88d4fde1461030857600080fd5b8063379607f51161014b57806342842e0e1161012557806342842e0e1461026f5780634d433e4d146102825780636352211e1461029557806370a08231146102a857600080fd5b8063379607f51461023657806338dd4f7e1461024957806339a0c6f91461025c57600080fd5b806301ffc9a71461019357806306fdde03146101bb578063081812fc146101d0578063095ea7b3146101fb57806323b872dd146102105780632749424814610223575b600080fd5b6101a66101a1366004611707565b6103d8565b60405190151581526020015b60405180910390f35b6101c361042a565b6040516101b29190611892565b6101e36101de36600461178a565b6104bc565b6040516001600160a01b0390911681526020016101b2565b61020e6102093660046116c0565b610556565b005b61020e61021e3660046115ca565b61066c565b6007546101e3906001600160a01b031681565b61020e61024436600461178a565b61069d565b61020e6102573660046116ec565b610936565b61020e61026a366004611741565b610960565b61020e61027d3660046115ca565b61098e565b61020e610290366004611557565b6109a9565b6101e36102a336600461178a565b6109e2565b6102bb6102b6366004611557565b610a59565b6040519081526020016101b2565b6101c3610ae0565b61020e6102df36600461168b565b610aef565b6102bb600a5481565b6006546101e3906001600160a01b031681565b6101c3610afa565b61020e61031636600461160b565b610b88565b6009546101a69060ff1681565b6101c361033636600461178a565b610bc0565b6101a6610349366004611557565b600b6020526000908152604090205460ff1681565b6101a661036c366004611591565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b61020e6103a8366004611557565b610c9b565b6101a66103bb36600461178a565b600c6020526000908152604090205460ff1681565b6102bb601081565b60006001600160e01b031982166380ac58cd60e01b148061040957506001600160e01b03198216635b5e139f60e01b145b8061042457506301ffc9a760e01b6001600160e01b03198316145b92915050565b606060008054610439906119b7565b80601f0160208091040260200160405190810160405280929190818152602001828054610465906119b7565b80156104b25780601f10610487576101008083540402835291602001916104b2565b820191906000526020600020905b81548152906001019060200180831161049557829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b031661053a5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b6000610561826109e2565b9050806001600160a01b0316836001600160a01b031614156105cf5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610531565b336001600160a01b03821614806105eb57506105eb813361036c565b61065d5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610531565b6106678383610cd4565b505050565b6106763382610d42565b6106925760405162461bcd60e51b8152600401610531906118f7565b610667838383610e39565b60095460ff166106e75760405162461bcd60e51b8152602060048201526015602482015274436c61696d696e67206e6f7420706f737369626c6560581b6044820152606401610531565b6010600a541061072f5760405162461bcd60e51b8152602060048201526013602482015272105b1b081391951cc8185c99481b5a5b9d1959606a1b6044820152606401610531565b6007546040516331a9108f60e11b8152600481018390526001600160a01b039091169033908290636352211e9060240160206040518083038186803b15801561077757600080fd5b505afa15801561078b573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906107af9190611574565b6001600160a01b0316146107c283610fd5565b6040516020016107d291906117fe565b604051602081830303815290604052906107ff5760405162461bcd60e51b81526004016105319190611892565b50336000908152600b602052604090205460ff161561086b5760405162461bcd60e51b815260206004820152602260248201527f4d6178696d756d2031204d696e7420616c6c6f77656420706572206164647265604482015261737360f01b6064820152608401610531565b6000828152600c602052604090205460ff16156108dd5760405162461bcd60e51b815260206004820152602a60248201527f54686520676976656e2049442077617320616c7265616479207573656420666f6044820152697220636c61696d696e6760b01b6064820152608401610531565b6108e933600a546110d3565b600a80549060006108f9836119f2565b9091555050336000908152600b602090815260408083208054600160ff199182168117909255958452600c90925290912080549093161790915550565b6006546001600160a01b0316331461094d57600080fd5b6009805460ff1916911515919091179055565b6006546001600160a01b0316331461097757600080fd5b805161098a906008906020840190611433565b5050565b61066783838360405180602001604052806000815250610b88565b6006546001600160a01b031633146109c057600080fd5b600780546001600160a01b0319166001600160a01b0392909216919091179055565b6000818152600260205260408120546001600160a01b0316806104245760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610531565b60006001600160a01b038216610ac45760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610531565b506001600160a01b031660009081526003602052604090205490565b606060018054610439906119b7565b61098a338383611215565b60088054610b07906119b7565b80601f0160208091040260200160405190810160405280929190818152602001828054610b33906119b7565b8015610b805780601f10610b5557610100808354040283529160200191610b80565b820191906000526020600020905b815481529060010190602001808311610b6357829003601f168201915b505050505081565b610b923383610d42565b610bae5760405162461bcd60e51b8152600401610531906118f7565b610bba848484846112e4565b50505050565b6000818152600260205260409020546060906001600160a01b0316610c3f5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610531565b6000610c49611317565b90506000815111610c695760405180602001604052806000815250610c94565b80610c7384610fd5565b604051602001610c849291906117cf565b6040516020818303038152906040525b9392505050565b6006546001600160a01b03163314610cb257600080fd5b600680546001600160a01b0319166001600160a01b0392909216919091179055565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190610d09826109e2565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b0316610dbb5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610531565b6000610dc6836109e2565b9050806001600160a01b0316846001600160a01b03161480610e015750836001600160a01b0316610df6846104bc565b6001600160a01b0316145b80610e3157506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316610e4c826109e2565b6001600160a01b031614610eb05760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201526437bbb732b960d91b6064820152608401610531565b6001600160a01b038216610f125760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610531565b610f1d600082610cd4565b6001600160a01b0383166000908152600360205260408120805460019290610f46908490611974565b90915550506001600160a01b0382166000908152600360205260408120805460019290610f74908490611948565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b606081610ff95750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611023578061100d816119f2565b915061101c9050600a83611960565b9150610ffd565b60008167ffffffffffffffff81111561103e5761103e611a63565b6040519080825280601f01601f191660200182016040528015611068576020820181803683370190505b5090505b8415610e315761107d600183611974565b915061108a600a86611a0d565b611095906030611948565b60f81b8183815181106110aa576110aa611a4d565b60200101906001600160f81b031916908160001a9053506110cc600a86611960565b945061106c565b6001600160a01b0382166111295760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610531565b6000818152600260205260409020546001600160a01b03161561118e5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610531565b6001600160a01b03821660009081526003602052604081208054600192906111b7908490611948565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b816001600160a01b0316836001600160a01b031614156112775760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610531565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b6112ef848484610e39565b6112fb84848484611326565b610bba5760405162461bcd60e51b8152600401610531906118a5565b606060088054610439906119b7565b60006001600160a01b0384163b1561142857604051630a85bd0160e11b81526001600160a01b0385169063150b7a029061136a903390899088908890600401611855565b602060405180830381600087803b15801561138457600080fd5b505af19250505080156113b4575060408051601f3d908101601f191682019092526113b191810190611724565b60015b61140e573d8080156113e2576040519150601f19603f3d011682016040523d82523d6000602084013e6113e7565b606091505b5080516114065760405162461bcd60e51b8152600401610531906118a5565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050610e31565b506001949350505050565b82805461143f906119b7565b90600052602060002090601f01602090048101928261146157600085556114a7565b82601f1061147a57805160ff19168380011785556114a7565b828001600101855582156114a7579182015b828111156114a757825182559160200191906001019061148c565b506114b39291506114b7565b5090565b5b808211156114b357600081556001016114b8565b600067ffffffffffffffff808411156114e7576114e7611a63565b604051601f8501601f19908116603f0116810190828211818310171561150f5761150f611a63565b8160405280935085815286868601111561152857600080fd5b858560208301376000602087830101525050509392505050565b8035801515811461155257600080fd5b919050565b60006020828403121561156957600080fd5b8135610c9481611a79565b60006020828403121561158657600080fd5b8151610c9481611a79565b600080604083850312156115a457600080fd5b82356115af81611a79565b915060208301356115bf81611a79565b809150509250929050565b6000806000606084860312156115df57600080fd5b83356115ea81611a79565b925060208401356115fa81611a79565b929592945050506040919091013590565b6000806000806080858703121561162157600080fd5b843561162c81611a79565b9350602085013561163c81611a79565b925060408501359150606085013567ffffffffffffffff81111561165f57600080fd5b8501601f8101871361167057600080fd5b61167f878235602084016114cc565b91505092959194509250565b6000806040838503121561169e57600080fd5b82356116a981611a79565b91506116b760208401611542565b90509250929050565b600080604083850312156116d357600080fd5b82356116de81611a79565b946020939093013593505050565b6000602082840312156116fe57600080fd5b610c9482611542565b60006020828403121561171957600080fd5b8135610c9481611a91565b60006020828403121561173657600080fd5b8151610c9481611a91565b60006020828403121561175357600080fd5b813567ffffffffffffffff81111561176a57600080fd5b8201601f8101841361177b57600080fd5b610e31848235602084016114cc565b60006020828403121561179c57600080fd5b5035919050565b600081518084526117bb81602086016020860161198b565b601f01601f19169290920160200192915050565b600083516117e181846020880161198b565b8351908301906117f581836020880161198b565b01949350505050565b7f596f7520617265206e6f7420746865206f776e6572206f662074686520546f6d81526862536572696573202360b81b60208201526000825161184881602985016020870161198b565b9190910160290192915050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611888908301846117a3565b9695505050505050565b602081526000610c9460208301846117a3565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6000821982111561195b5761195b611a21565b500190565b60008261196f5761196f611a37565b500490565b60008282101561198657611986611a21565b500390565b60005b838110156119a657818101518382015260200161198e565b83811115610bba5750506000910152565b600181811c908216806119cb57607f821691505b602082108114156119ec57634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415611a0657611a06611a21565b5060010190565b600082611a1c57611a1c611a37565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b0381168114611a8e57600080fd5b50565b6001600160e01b031981168114611a8e57600080fdfea2646970667358221220280bb06cde1da6de2523fba022914be12aec771a3bdf81b1d5825a7536e2f52764736f6c63430008070033

Deployed Bytecode Sourcemap

45884:2419:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22098:355;;;;;;:::i;:::-;;:::i;:::-;;;7044:14:1;;7037:22;7019:41;;7007:2;6992:18;22098:355:0;;;;;;;;23267:100;;;:::i;:::-;;;;;;;:::i;24960:308::-;;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;6342:32:1;;;6324:51;;6312:2;6297:18;24960:308:0;6178:203:1;24483:411:0;;;;;;:::i;:::-;;:::i;:::-;;25879:376;;;;;;:::i;:::-;;:::i;45946:26::-;;;;;-1:-1:-1;;;;;45946:26:0;;;47170:1000;;;;;;:::i;:::-;;:::i;46770:107::-;;;;;;:::i;:::-;;:::i;47043:104::-;;;;;;:::i;:::-;;:::i;26326:185::-;;;;;;:::i;:::-;;:::i;46885:152::-;;;;;;:::i;:::-;;:::i;22874:326::-;;;;;;:::i;:::-;;:::i;22517:295::-;;;;;;:::i;:::-;;:::i;:::-;;;14563:25:1;;;14551:2;14536:18;22517:295:0;14417:177:1;23436:104:0;;;:::i;25340:187::-;;;;;;:::i;:::-;;:::i;46082:33::-;;;;;;45918:21;;;;;-1:-1:-1;;;;;45918:21:0;;;45981:18;;;:::i;26582:365::-;;;;;;:::i;:::-;;:::i;46006:22::-;;;;;;;;;23611:468;;;;;;:::i;:::-;;:::i;46124:56::-;;;;;;:::i;:::-;;;;;;;;;;;;;;;;25598:214;;;;;;:::i;:::-;-1:-1:-1;;;;;25769:25:0;;;25740:4;25769:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;25598:214;46662:100;;;;;;:::i;:::-;;:::i;46187:56::-;;;;;;:::i;:::-;;;;;;;;;;;;;;;;46035:40;;46073:2;46035:40;;22098:355;22245:4;-1:-1:-1;;;;;;22287:40:0;;-1:-1:-1;;;22287:40:0;;:105;;-1:-1:-1;;;;;;;22344:48:0;;-1:-1:-1;;;22344:48:0;22287:105;:158;;;-1:-1:-1;;;;;;;;;;14322:40:0;;;22409:36;22267:178;22098:355;-1:-1:-1;;22098:355:0:o;23267:100::-;23321:13;23354:5;23347:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23267:100;:::o;24960:308::-;25081:7;28583:16;;;:7;:16;;;;;;-1:-1:-1;;;;;28583:16:0;25106:110;;;;-1:-1:-1;;;25106:110:0;;12272:2:1;25106:110:0;;;12254:21:1;12311:2;12291:18;;;12284:30;12350:34;12330:18;;;12323:62;-1:-1:-1;;;12401:18:1;;;12394:42;12453:19;;25106:110:0;;;;;;;;;-1:-1:-1;25236:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;25236:24:0;;24960:308::o;24483:411::-;24564:13;24580:23;24595:7;24580:14;:23::i;:::-;24564:39;;24628:5;-1:-1:-1;;;;;24622:11:0;:2;-1:-1:-1;;;;;24622:11:0;;;24614:57;;;;-1:-1:-1;;;24614:57:0;;13101:2:1;24614:57:0;;;13083:21:1;13140:2;13120:18;;;13113:30;13179:34;13159:18;;;13152:62;-1:-1:-1;;;13230:18:1;;;13223:31;13271:19;;24614:57:0;12899:397:1;24614:57:0;2795:10;-1:-1:-1;;;;;24706:21:0;;;;:62;;-1:-1:-1;24731:37:0;24748:5;2795:10;25598:214;:::i;24731:37::-;24684:168;;;;-1:-1:-1;;;24684:168:0;;10665:2:1;24684:168:0;;;10647:21:1;10704:2;10684:18;;;10677:30;10743:34;10723:18;;;10716:62;10814:26;10794:18;;;10787:54;10858:19;;24684:168:0;10463:420:1;24684:168:0;24865:21;24874:2;24878:7;24865:8;:21::i;:::-;24553:341;24483:411;;:::o;25879:376::-;26088:41;2795:10;26121:7;26088:18;:41::i;:::-;26066:140;;;;-1:-1:-1;;;26066:140:0;;;;;;;:::i;:::-;26219:28;26229:4;26235:2;26239:7;26219:9;:28::i;47170:1000::-;47233:10;;;;47225:44;;;;-1:-1:-1;;;47225:44:0;;13503:2:1;47225:44:0;;;13485:21:1;13542:2;13522:18;;;13515:30;-1:-1:-1;;;13561:18:1;;;13554:51;13622:18;;47225:44:0;13301:345:1;47225:44:0;46073:2;47288:14;;:28;47280:60;;;;-1:-1:-1;;;47280:60:0;;14271:2:1;47280:60:0;;;14253:21:1;14310:2;14290:18;;;14283:30;-1:-1:-1;;;14329:18:1;;;14322:49;14388:18;;47280:60:0;14069:343:1;47280:60:0;47386:11;;47431:40;;-1:-1:-1;;;47431:40:0;;;;;14563:25:1;;;-1:-1:-1;;;;;47386:11:0;;;;47475:10;;47386:11;;47431:26;;14536:18:1;;47431:40:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;47431:54:0;;47630:30;47647:12;47630:16;:30::i;:::-;47525:154;;;;;;;;:::i;:::-;;;;;;;;;;;;;47409:296;;;;;-1:-1:-1;;;47409:296:0;;;;;;;;:::i;:::-;-1:-1:-1;47764:10:0;47739:36;;;;:24;:36;;;;;;;;47738:37;47716:121;;;;-1:-1:-1;;;47716:121:0;;9849:2:1;47716:121:0;;;9831:21:1;9888:2;9868:18;;;9861:30;9927:34;9907:18;;;9900:62;-1:-1:-1;;;9978:18:1;;;9971:32;10020:19;;47716:121:0;9647:398:1;47716:121:0;47871:38;;;;:24;:38;;;;;;;;47870:39;47848:131;;;;-1:-1:-1;;;47848:131:0;;8679:2:1;47848:131:0;;;8661:21:1;8718:2;8698:18;;;8691:30;8757:34;8737:18;;;8730:62;-1:-1:-1;;;8808:18:1;;;8801:40;8858:19;;47848:131:0;8477:406:1;47848:131:0;47992:33;47998:10;48010:14;;47992:5;:33::i;:::-;48036:14;:16;;;:14;:16;;;:::i;:::-;;;;-1:-1:-1;;48088:10:0;48063:36;;;;:24;:36;;;;;;;;:43;;48102:4;-1:-1:-1;;48063:43:0;;;;;;;;48117:38;;;:24;:38;;;;;;:45;;;;;;;;;-1:-1:-1;47170:1000:0:o;46770:107::-;46613:6;;-1:-1:-1;;;;;46613:6:0;46623:10;46613:20;46605:29;;;;;;46843:10:::1;:26:::0;;-1:-1:-1;;46843:26:0::1;::::0;::::1;;::::0;;;::::1;::::0;;46770:107::o;47043:104::-;46613:6;;-1:-1:-1;;;;;46613:6:0;46623:10;46613:20;46605:29;;;;;;47121:18;;::::1;::::0;:4:::1;::::0;:18:::1;::::0;::::1;::::0;::::1;:::i;:::-;;47043:104:::0;:::o;26326:185::-;26464:39;26481:4;26487:2;26491:7;26464:39;;;;;;;;;;;;:16;:39::i;46885:152::-;46613:6;;-1:-1:-1;;;;;46613:6:0;46623:10;46613:20;46605:29;;;;;;46997:11:::1;:32:::0;;-1:-1:-1;;;;;;46997:32:0::1;-1:-1:-1::0;;;;;46997:32:0;;;::::1;::::0;;;::::1;::::0;;46885:152::o;22874:326::-;22991:7;23032:16;;;:7;:16;;;;;;-1:-1:-1;;;;;23032:16:0;23081:19;23059:110;;;;-1:-1:-1;;;23059:110:0;;11501:2:1;23059:110:0;;;11483:21:1;11540:2;11520:18;;;11513:30;11579:34;11559:18;;;11552:62;-1:-1:-1;;;11630:18:1;;;11623:39;11679:19;;23059:110:0;11299:405:1;22517:295:0;22634:7;-1:-1:-1;;;;;22681:19:0;;22659:111;;;;-1:-1:-1;;;22659:111:0;;11090:2:1;22659:111:0;;;11072:21:1;11129:2;11109:18;;;11102:30;11168:34;11148:18;;;11141:62;-1:-1:-1;;;11219:18:1;;;11212:40;11269:19;;22659:111:0;10888:406:1;22659:111:0;-1:-1:-1;;;;;;22788:16:0;;;;;:9;:16;;;;;;;22517:295::o;23436:104::-;23492:13;23525:7;23518:14;;;;;:::i;25340:187::-;25467:52;2795:10;25500:8;25510;25467:18;:52::i;45981:18::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;26582:365::-;26771:41;2795:10;26804:7;26771:18;:41::i;:::-;26749:140;;;;-1:-1:-1;;;26749:140:0;;;;;;;:::i;:::-;26900:39;26914:4;26920:2;26924:7;26933:5;26900:13;:39::i;:::-;26582:365;;;;:::o;23611:468::-;28559:4;28583:16;;;:7;:16;;;;;;23729:13;;-1:-1:-1;;;;;28583:16:0;23760:113;;;;-1:-1:-1;;;23760:113:0;;12685:2:1;23760:113:0;;;12667:21:1;12724:2;12704:18;;;12697:30;12763:34;12743:18;;;12736:62;-1:-1:-1;;;12814:18:1;;;12807:45;12869:19;;23760:113:0;12483:411:1;23760:113:0;23886:21;23910:10;:8;:10::i;:::-;23886:34;;23975:1;23957:7;23951:21;:25;:120;;;;;;;;;;;;;;;;;24020:7;24029:18;:7;:16;:18::i;:::-;24003:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;23951:120;23931:140;23611:468;-1:-1:-1;;;23611:468:0:o;46662:100::-;46613:6;;-1:-1:-1;;;;;46613:6:0;46623:10;46613:20;46605:29;;;;;;46736:6:::1;:18:::0;;-1:-1:-1;;;;;;46736:18:0::1;-1:-1:-1::0;;;;;46736:18:0;;;::::1;::::0;;;::::1;::::0;;46662:100::o;32781:174::-;32856:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;32856:29:0;-1:-1:-1;;;;;32856:29:0;;;;;;;;:24;;32910:23;32856:24;32910:14;:23::i;:::-;-1:-1:-1;;;;;32901:46:0;;;;;;;;;;;32781:174;;:::o;28788:452::-;28917:4;28583:16;;;:7;:16;;;;;;-1:-1:-1;;;;;28583:16:0;28939:110;;;;-1:-1:-1;;;28939:110:0;;10252:2:1;28939:110:0;;;10234:21:1;10291:2;10271:18;;;10264:30;10330:34;10310:18;;;10303:62;-1:-1:-1;;;10381:18:1;;;10374:42;10433:19;;28939:110:0;10050:408:1;28939:110:0;29060:13;29076:23;29091:7;29076:14;:23::i;:::-;29060:39;;29129:5;-1:-1:-1;;;;;29118:16:0;:7;-1:-1:-1;;;;;29118:16:0;;:64;;;;29175:7;-1:-1:-1;;;;;29151:31:0;:20;29163:7;29151:11;:20::i;:::-;-1:-1:-1;;;;;29151:31:0;;29118:64;:113;;;-1:-1:-1;;;;;;25769:25:0;;;25740:4;25769:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;29199:32;29110:122;28788:452;-1:-1:-1;;;;28788:452:0:o;32001:662::-;32174:4;-1:-1:-1;;;;;32147:31:0;:23;32162:7;32147:14;:23::i;:::-;-1:-1:-1;;;;;32147:31:0;;32125:118;;;;-1:-1:-1;;;32125:118:0;;7916:2:1;32125:118:0;;;7898:21:1;7955:2;7935:18;;;7928:30;7994:34;7974:18;;;7967:62;-1:-1:-1;;;8045:18:1;;;8038:35;8090:19;;32125:118:0;7714:401:1;32125:118:0;-1:-1:-1;;;;;32262:16:0;;32254:65;;;;-1:-1:-1;;;32254:65:0;;9090:2:1;32254:65:0;;;9072:21:1;9129:2;9109:18;;;9102:30;9168:34;9148:18;;;9141:62;-1:-1:-1;;;9219:18:1;;;9212:34;9263:19;;32254:65:0;8888:400:1;32254:65:0;32436:29;32453:1;32457:7;32436:8;:29::i;:::-;-1:-1:-1;;;;;32478:15:0;;;;;;:9;:15;;;;;:20;;32497:1;;32478:15;:20;;32497:1;;32478:20;:::i;:::-;;;;-1:-1:-1;;;;;;;32509:13:0;;;;;;:9;:13;;;;;:18;;32526:1;;32509:13;:18;;32526:1;;32509:18;:::i;:::-;;;;-1:-1:-1;;32538:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;32538:21:0;-1:-1:-1;;;;;32538:21:0;;;;;;;;;32577:27;;32538:16;;32577:27;;;;;;;24553:341;24483:411;;:::o;357:723::-;413:13;634:10;630:53;;-1:-1:-1;;661:10:0;;;;;;;;;;;;-1:-1:-1;;;661:10:0;;;;;357:723::o;630:53::-;708:5;693:12;749:78;756:9;;749:78;;782:8;;;;:::i;:::-;;-1:-1:-1;805:10:0;;-1:-1:-1;813:2:0;805:10;;:::i;:::-;;;749:78;;;837:19;869:6;859:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;859:17:0;;837:39;;887:154;894:10;;887:154;;921:11;931:1;921:11;;:::i;:::-;;-1:-1:-1;990:10:0;998:2;990:5;:10;:::i;:::-;977:24;;:2;:24;:::i;:::-;964:39;;947:6;954;947:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;947:56:0;;;;;;;;-1:-1:-1;1018:11:0;1027:2;1018:11;;:::i;:::-;;;887:154;;30576:439;-1:-1:-1;;;;;30656:16:0;;30648:61;;;;-1:-1:-1;;;30648:61:0;;11911:2:1;30648:61:0;;;11893:21:1;;;11930:18;;;11923:30;11989:34;11969:18;;;11962:62;12041:18;;30648:61:0;11709:356:1;30648:61:0;28559:4;28583:16;;;:7;:16;;;;;;-1:-1:-1;;;;;28583:16:0;:30;30720:58;;;;-1:-1:-1;;;30720:58:0;;8322:2:1;30720:58:0;;;8304:21:1;8361:2;8341:18;;;8334:30;8400;8380:18;;;8373:58;8448:18;;30720:58:0;8120:352:1;30720:58:0;-1:-1:-1;;;;;30849:13:0;;;;;;:9;:13;;;;;:18;;30866:1;;30849:13;:18;;30866:1;;30849:18;:::i;:::-;;;;-1:-1:-1;;30878:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;30878:21:0;-1:-1:-1;;;;;30878:21:0;;;;;;;;30917:33;;30878:16;;;30917:33;;30878:16;;30917:33;47121:18:::1;47043:104:::0;:::o;33097:315::-;33252:8;-1:-1:-1;;;;;33243:17:0;:5;-1:-1:-1;;;;;33243:17:0;;;33235:55;;;;-1:-1:-1;;;33235:55:0;;9495:2:1;33235:55:0;;;9477:21:1;9534:2;9514:18;;;9507:30;9573:27;9553:18;;;9546:55;9618:18;;33235:55:0;9293:349:1;33235:55:0;-1:-1:-1;;;;;33301:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;33301:46:0;;;;;;;;;;33363:41;;7019::1;;;33363::0;;6992:18:1;33363:41:0;;;;;;;33097:315;;;:::o;27829:352::-;27986:28;27996:4;28002:2;28006:7;27986:9;:28::i;:::-;28047:48;28070:4;28076:2;28080:7;28089:5;28047:22;:48::i;:::-;28025:148;;;;-1:-1:-1;;;28025:148:0;;;;;;;:::i;48193:104::-;48253:13;48285:4;48278:11;;;;;:::i;33977:980::-;34132:4;-1:-1:-1;;;;;34153:13:0;;4330:19;:23;34149:801;;34206:175;;-1:-1:-1;;;34206:175:0;;-1:-1:-1;;;;;34206:36:0;;;;;:175;;2795:10;;34300:4;;34327:7;;34357:5;;34206:175;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;34206:175:0;;;;;;;;-1:-1:-1;;34206:175:0;;;;;;;;;;;;:::i;:::-;;;34185:710;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;34564:13:0;;34560:320;;34607:108;;-1:-1:-1;;;34607:108:0;;;;;;;:::i;34560:320::-;34830:6;34824:13;34815:6;34811:2;34807:15;34800:38;34185:710;-1:-1:-1;;;;;;34445:51:0;-1:-1:-1;;;34445:51:0;;-1:-1:-1;34438:58:0;;34149:801;-1:-1:-1;34934:4:0;33977:980;;;;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;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:160::-;715:20;;771:13;;764:21;754:32;;744:60;;800:1;797;790:12;744:60;650:160;;;:::o;815:247::-;874:6;927:2;915:9;906:7;902:23;898:32;895:52;;;943:1;940;933:12;895:52;982:9;969:23;1001:31;1026:5;1001:31;:::i;1067:251::-;1137:6;1190:2;1178:9;1169:7;1165:23;1161:32;1158:52;;;1206:1;1203;1196:12;1158:52;1238:9;1232:16;1257:31;1282:5;1257:31;:::i;1323:388::-;1391:6;1399;1452:2;1440:9;1431:7;1427:23;1423:32;1420:52;;;1468:1;1465;1458:12;1420:52;1507:9;1494:23;1526:31;1551:5;1526:31;:::i;:::-;1576:5;-1:-1:-1;1633:2:1;1618:18;;1605:32;1646:33;1605:32;1646:33;:::i;:::-;1698:7;1688:17;;;1323:388;;;;;:::o;1716:456::-;1793:6;1801;1809;1862:2;1850:9;1841:7;1837:23;1833:32;1830:52;;;1878:1;1875;1868:12;1830:52;1917:9;1904:23;1936:31;1961:5;1936:31;:::i;:::-;1986:5;-1:-1:-1;2043:2:1;2028:18;;2015:32;2056:33;2015:32;2056:33;:::i;:::-;1716:456;;2108:7;;-1:-1:-1;;;2162:2:1;2147:18;;;;2134:32;;1716:456::o;2177:794::-;2272:6;2280;2288;2296;2349:3;2337:9;2328:7;2324:23;2320:33;2317:53;;;2366:1;2363;2356:12;2317:53;2405:9;2392:23;2424:31;2449:5;2424:31;:::i;:::-;2474:5;-1:-1:-1;2531:2:1;2516:18;;2503:32;2544:33;2503:32;2544:33;:::i;:::-;2596:7;-1:-1:-1;2650:2:1;2635:18;;2622:32;;-1:-1:-1;2705:2:1;2690:18;;2677:32;2732:18;2721:30;;2718:50;;;2764:1;2761;2754:12;2718:50;2787:22;;2840:4;2832:13;;2828:27;-1:-1:-1;2818:55:1;;2869:1;2866;2859:12;2818:55;2892:73;2957:7;2952:2;2939:16;2934:2;2930;2926:11;2892:73;:::i;:::-;2882:83;;;2177:794;;;;;;;:::o;2976:315::-;3041:6;3049;3102:2;3090:9;3081:7;3077:23;3073:32;3070:52;;;3118:1;3115;3108:12;3070:52;3157:9;3144:23;3176:31;3201:5;3176:31;:::i;:::-;3226:5;-1:-1:-1;3250:35:1;3281:2;3266:18;;3250:35;:::i;:::-;3240:45;;2976:315;;;;;:::o;3296:::-;3364:6;3372;3425:2;3413:9;3404:7;3400:23;3396:32;3393:52;;;3441:1;3438;3431:12;3393:52;3480:9;3467:23;3499:31;3524:5;3499:31;:::i;:::-;3549:5;3601:2;3586:18;;;;3573:32;;-1:-1:-1;;;3296:315:1:o;3616:180::-;3672:6;3725:2;3713:9;3704:7;3700:23;3696:32;3693:52;;;3741:1;3738;3731:12;3693:52;3764:26;3780:9;3764:26;:::i;3801:245::-;3859:6;3912:2;3900:9;3891:7;3887:23;3883:32;3880:52;;;3928:1;3925;3918:12;3880:52;3967:9;3954:23;3986:30;4010:5;3986:30;:::i;4051:249::-;4120:6;4173:2;4161:9;4152:7;4148:23;4144:32;4141:52;;;4189:1;4186;4179:12;4141:52;4221:9;4215:16;4240:30;4264:5;4240:30;:::i;4305:450::-;4374:6;4427:2;4415:9;4406:7;4402:23;4398:32;4395:52;;;4443:1;4440;4433:12;4395:52;4483:9;4470:23;4516:18;4508:6;4505:30;4502:50;;;4548:1;4545;4538:12;4502:50;4571:22;;4624:4;4616:13;;4612:27;-1:-1:-1;4602:55:1;;4653:1;4650;4643:12;4602:55;4676:73;4741:7;4736:2;4723:16;4718:2;4714;4710:11;4676:73;:::i;4760:180::-;4819:6;4872:2;4860:9;4851:7;4847:23;4843:32;4840:52;;;4888:1;4885;4878:12;4840:52;-1:-1:-1;4911:23:1;;4760:180;-1:-1:-1;4760:180:1:o;4945:257::-;4986:3;5024:5;5018:12;5051:6;5046:3;5039:19;5067:63;5123:6;5116:4;5111:3;5107:14;5100:4;5093:5;5089:16;5067:63;:::i;:::-;5184:2;5163:15;-1:-1:-1;;5159:29:1;5150:39;;;;5191:4;5146:50;;4945:257;-1:-1:-1;;4945:257:1:o;5207:470::-;5386:3;5424:6;5418:13;5440:53;5486:6;5481:3;5474:4;5466:6;5462:17;5440:53;:::i;:::-;5556:13;;5515:16;;;;5578:57;5556:13;5515:16;5612:4;5600:17;;5578:57;:::i;:::-;5651:20;;5207:470;-1:-1:-1;;;;5207:470:1:o;5682:491::-;5944:34;5939:3;5932:47;-1:-1:-1;;;6004:2:1;5999:3;5995:12;5988:33;5914:3;6050:6;6044:13;6066:60;6119:6;6114:2;6109:3;6105:12;6100:2;6092:6;6088:15;6066:60;:::i;:::-;6146:16;;;;6164:2;6142:25;;5682:491;-1:-1:-1;;5682:491:1:o;6386:488::-;-1:-1:-1;;;;;6655:15:1;;;6637:34;;6707:15;;6702:2;6687:18;;6680:43;6754:2;6739:18;;6732:34;;;6802:3;6797:2;6782:18;;6775:31;;;6580:4;;6823:45;;6848:19;;6840:6;6823:45;:::i;:::-;6815:53;6386:488;-1:-1:-1;;;;;;6386:488:1:o;7071:219::-;7220:2;7209:9;7202:21;7183:4;7240:44;7280:2;7269:9;7265:18;7257:6;7240:44;:::i;7295:414::-;7497:2;7479:21;;;7536:2;7516:18;;;7509:30;7575:34;7570:2;7555:18;;7548:62;-1:-1:-1;;;7641:2:1;7626:18;;7619:48;7699:3;7684:19;;7295:414::o;13651:413::-;13853:2;13835:21;;;13892:2;13872:18;;;13865:30;13931:34;13926:2;13911:18;;13904:62;-1:-1:-1;;;13997:2:1;13982:18;;13975:47;14054:3;14039:19;;13651:413::o;14599:128::-;14639:3;14670:1;14666:6;14663:1;14660:13;14657:39;;;14676:18;;:::i;:::-;-1:-1:-1;14712:9:1;;14599:128::o;14732:120::-;14772:1;14798;14788:35;;14803:18;;:::i;:::-;-1:-1:-1;14837:9:1;;14732:120::o;14857:125::-;14897:4;14925:1;14922;14919:8;14916:34;;;14930:18;;:::i;:::-;-1:-1:-1;14967:9:1;;14857:125::o;14987:258::-;15059:1;15069:113;15083:6;15080:1;15077:13;15069:113;;;15159:11;;;15153:18;15140:11;;;15133:39;15105:2;15098:10;15069:113;;;15200:6;15197:1;15194:13;15191:48;;;-1:-1:-1;;15235:1:1;15217:16;;15210:27;14987:258::o;15250:380::-;15329:1;15325:12;;;;15372;;;15393:61;;15447:4;15439:6;15435:17;15425:27;;15393:61;15500:2;15492:6;15489:14;15469:18;15466:38;15463:161;;;15546:10;15541:3;15537:20;15534:1;15527:31;15581:4;15578:1;15571:15;15609:4;15606:1;15599:15;15463:161;;15250:380;;;:::o;15635:135::-;15674:3;-1:-1:-1;;15695:17:1;;15692:43;;;15715:18;;:::i;:::-;-1:-1:-1;15762:1:1;15751:13;;15635:135::o;15775:112::-;15807:1;15833;15823:35;;15838:18;;:::i;:::-;-1:-1:-1;15872:9:1;;15775:112::o;15892:127::-;15953:10;15948:3;15944:20;15941:1;15934:31;15984:4;15981:1;15974:15;16008:4;16005:1;15998:15;16024:127;16085:10;16080:3;16076:20;16073:1;16066:31;16116:4;16113:1;16106:15;16140:4;16137:1;16130:15;16156:127;16217:10;16212:3;16208:20;16205:1;16198:31;16248:4;16245:1;16238:15;16272:4;16269:1;16262:15;16288:127;16349:10;16344:3;16340:20;16337:1;16330:31;16380:4;16377:1;16370:15;16404:4;16401:1;16394:15;16420:131;-1:-1:-1;;;;;16495:31:1;;16485:42;;16475:70;;16541:1;16538;16531:12;16475:70;16420:131;:::o;16556:::-;-1:-1:-1;;;;;;16630:32:1;;16620:43;;16610:71;;16677:1;16674;16667:12

Swarm Source

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