ETH Price: $2,629.23 (+6.53%)

Token

WorldOfGiraffe (WOG)
 

Overview

Max Total Supply

0 WOG

Holders

50

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 WOG
0x4597e4b3b3d66900502c21b3fbb543a9e90adc29
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:
WorldOfGiraffe

Compiler Version
v0.8.11+commit.d7f03943

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

/**
 *Submitted for verification at Etherscan.io on 2021-12-06
*/

// SPDX-License-Identifier: MIT

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

pragma solidity ^0.8.0;

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

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

pragma solidity ^0.8.0;

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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
    {
        require(operator != _msgSender(), "ERC721: approve to caller");

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

    /**
     * @dev Returns whether `tokenId` exists.
     *
     * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}.
     *
     * Tokens start existing when they are minted (`_mint`),
     * and stop existing when they are burned (`_burn`).
     */
    function _exists(uint256 tokenId) internal view virtual returns (bool) {
        return _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);
    }

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

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

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

pragma solidity ^0.8.5;

contract WorldOfGiraffe is ERC721, Ownable {
    using Strings for uint256;
    string public baseURI;
    uint256 public cost = 0.01 ether;
    uint256 public maxSupply = 10000;
    uint256 public maxMintAmount = 20;
    uint256 public tokenCount = 0;
    bool public paused = false;

    mapping(address => uint256) public addressMintedBalance;

    constructor() ERC721("WorldOfGiraffe", "WOG") {
    }

    function tokenURI(uint256 tokenId)
        public
        view
        override
        returns (string memory)
    {
        require(_exists(tokenId), "ERC721Metadata: Token ID does not exist");
        return
            bytes(baseURI).length > 0
                ? string(
                    abi.encodePacked(baseURI, "/", tokenId.toString(), ".json")
                )
                : "";
    }

    function mint(uint256 _amount) external payable {
        require(!paused, "The Contract is Paused");
        require(
            tokenCount + _amount <= maxSupply,
            "WorldOfGiraffe - max NFT limit exceeded"
        );
        if (msg.sender != owner()) {
            require(
                _amount <= maxMintAmount,
                "WorldOfGiraffe - max mint amount limit exceeded"
            );
            uint256 ownerMintedCount = addressMintedBalance[msg.sender];
            require(
                ownerMintedCount + _amount <= maxMintAmount,
                "orldOfGiraffe - max NFT per address exceeded"
            );
            require(
                msg.value >= cost * _amount,
                "WorldOfGiraffe - insufficient ethers"
            );
        }
        for (uint256 i = 1; i <= _amount; i++) {
            addressMintedBalance[msg.sender]++;
            _safeMint(msg.sender, ++tokenCount);
        }
    }

    //only owner
    function setCost(uint256 _newCost) public onlyOwner {
        cost = _newCost;
    }

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

    function pause() public onlyOwner {
        paused = !paused;
    }

    function withdraw() public onlyOwner {
        (bool os, ) = payable(owner()).call{value: address(this).balance}("");
        require(os);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"addressMintedBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"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":"maxMintAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newCost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokenCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6080604052662386f26fc100006008556127106009556014600a556000600b55600c805460ff191690553480156200003657600080fd5b50604080518082018252600e81526d576f726c644f664769726166666560901b602080830191825283518085019094526003845262574f4760e81b908401528151919291620000889160009162000117565b5080516200009e90600190602084019062000117565b505050620000bb620000b5620000c160201b60201c565b620000c5565b620001fa565b3390565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200012590620001bd565b90600052602060002090601f01602090048101928262000149576000855562000194565b82601f106200016457805160ff191683800117855562000194565b8280016001018555821562000194579182015b828111156200019457825182559160200191906001019062000177565b50620001a2929150620001a6565b5090565b5b80821115620001a25760008155600101620001a7565b600181811c90821680620001d257607f821691505b60208210811415620001f457634e487b7160e01b600052602260045260246000fd5b50919050565b611e43806200020a6000396000f3fe6080604052600436106101b75760003560e01c80636c0360eb116100ec578063a0712d681161008a578063c87b56dd11610064578063c87b56dd1461049e578063d5abeb01146104be578063e985e9c5146104d4578063f2fde38b1461051d57600080fd5b8063a0712d681461044b578063a22cb4651461045e578063b88d4fde1461047e57600080fd5b80638456cb59116100c65780638456cb59146103ed5780638da5cb5b1461040257806395d89b41146104205780639f181b5e1461043557600080fd5b80636c0360eb146103a357806370a08231146103b8578063715018a6146103d857600080fd5b806323b872dd1161015957806344a0d68a1161013357806344a0d68a1461032957806355f804b3146103495780635c975abb146103695780636352211e1461038357600080fd5b806323b872dd146102d45780633ccfd60b146102f457806342842e0e1461030957600080fd5b8063095ea7b311610195578063095ea7b31461024b57806313faede61461026d57806318cae26914610291578063239c70ae146102be57600080fd5b806301ffc9a7146101bc57806306fdde03146101f1578063081812fc14610213575b600080fd5b3480156101c857600080fd5b506101dc6101d73660046117e1565b61053d565b60405190151581526020015b60405180910390f35b3480156101fd57600080fd5b5061020661058f565b6040516101e8919061185d565b34801561021f57600080fd5b5061023361022e366004611870565b610621565b6040516001600160a01b0390911681526020016101e8565b34801561025757600080fd5b5061026b6102663660046118a5565b6106bb565b005b34801561027957600080fd5b5061028360085481565b6040519081526020016101e8565b34801561029d57600080fd5b506102836102ac3660046118cf565b600d6020526000908152604090205481565b3480156102ca57600080fd5b50610283600a5481565b3480156102e057600080fd5b5061026b6102ef3660046118ea565b6107d1565b34801561030057600080fd5b5061026b610802565b34801561031557600080fd5b5061026b6103243660046118ea565b6108a0565b34801561033557600080fd5b5061026b610344366004611870565b6108bb565b34801561035557600080fd5b5061026b6103643660046119b2565b6108ea565b34801561037557600080fd5b50600c546101dc9060ff1681565b34801561038f57600080fd5b5061023361039e366004611870565b61092b565b3480156103af57600080fd5b506102066109a2565b3480156103c457600080fd5b506102836103d33660046118cf565b610a30565b3480156103e457600080fd5b5061026b610ab7565b3480156103f957600080fd5b5061026b610aed565b34801561040e57600080fd5b506006546001600160a01b0316610233565b34801561042c57600080fd5b50610206610b2b565b34801561044157600080fd5b50610283600b5481565b61026b610459366004611870565b610b3a565b34801561046a57600080fd5b5061026b6104793660046119fb565b610db5565b34801561048a57600080fd5b5061026b610499366004611a37565b610e7a565b3480156104aa57600080fd5b506102066104b9366004611870565b610eb2565b3480156104ca57600080fd5b5061028360095481565b3480156104e057600080fd5b506101dc6104ef366004611ab3565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561052957600080fd5b5061026b6105383660046118cf565b610f85565b60006001600160e01b031982166380ac58cd60e01b148061056e57506001600160e01b03198216635b5e139f60e01b145b8061058957506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606000805461059e90611ae6565b80601f01602080910402602001604051908101604052809291908181526020018280546105ca90611ae6565b80156106175780601f106105ec57610100808354040283529160200191610617565b820191906000526020600020905b8154815290600101906020018083116105fa57829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b031661069f5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b60006106c68261092b565b9050806001600160a01b0316836001600160a01b031614156107345760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610696565b336001600160a01b0382161480610750575061075081336104ef565b6107c25760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610696565b6107cc838361101d565b505050565b6107db338261108b565b6107f75760405162461bcd60e51b815260040161069690611b21565b6107cc838383611182565b6006546001600160a01b0316331461082c5760405162461bcd60e51b815260040161069690611b72565b60006108406006546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d806000811461088a576040519150601f19603f3d011682016040523d82523d6000602084013e61088f565b606091505b505090508061089d57600080fd5b50565b6107cc83838360405180602001604052806000815250610e7a565b6006546001600160a01b031633146108e55760405162461bcd60e51b815260040161069690611b72565b600855565b6006546001600160a01b031633146109145760405162461bcd60e51b815260040161069690611b72565b8051610927906007906020840190611732565b5050565b6000818152600260205260408120546001600160a01b0316806105895760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610696565b600780546109af90611ae6565b80601f01602080910402602001604051908101604052809291908181526020018280546109db90611ae6565b8015610a285780601f106109fd57610100808354040283529160200191610a28565b820191906000526020600020905b815481529060010190602001808311610a0b57829003601f168201915b505050505081565b60006001600160a01b038216610a9b5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610696565b506001600160a01b031660009081526003602052604090205490565b6006546001600160a01b03163314610ae15760405162461bcd60e51b815260040161069690611b72565b610aeb6000611322565b565b6006546001600160a01b03163314610b175760405162461bcd60e51b815260040161069690611b72565b600c805460ff19811660ff90911615179055565b60606001805461059e90611ae6565b600c5460ff1615610b865760405162461bcd60e51b8152602060048201526016602482015275151a194810dbdb9d1c9858dd081a5cc814185d5cd95960521b6044820152606401610696565b60095481600b54610b979190611bbd565b1115610bf55760405162461bcd60e51b815260206004820152602760248201527f576f726c644f6647697261666665202d206d6178204e4654206c696d697420656044820152661e18d95959195960ca1b6064820152608401610696565b6006546001600160a01b03163314610d5c57600a54811115610c715760405162461bcd60e51b815260206004820152602f60248201527f576f726c644f6647697261666665202d206d6178206d696e7420616d6f756e7460448201526e081b1a5b5a5d08195e18d959591959608a1b6064820152608401610696565b336000908152600d6020526040902054600a54610c8e8383611bbd565b1115610cf15760405162461bcd60e51b815260206004820152602c60248201527f6f726c644f6647697261666665202d206d6178204e465420706572206164647260448201526b195cdcc8195e18d95959195960a21b6064820152608401610696565b81600854610cff9190611bd5565b341015610d5a5760405162461bcd60e51b8152602060048201526024808201527f576f726c644f6647697261666665202d20696e73756666696369656e742065746044820152636865727360e01b6064820152608401610696565b505b60015b81811161092757336000908152600d60205260408120805491610d8183611bf4565b9190505550610da333600b60008154610d9990611bf4565b9182905550611374565b80610dad81611bf4565b915050610d5f565b6001600160a01b038216331415610e0e5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610696565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610e84338361108b565b610ea05760405162461bcd60e51b815260040161069690611b21565b610eac8484848461138e565b50505050565b6000818152600260205260409020546060906001600160a01b0316610f295760405162461bcd60e51b815260206004820152602760248201527f4552433732314d657461646174613a20546f6b656e20494420646f6573206e6f6044820152661d08195e1a5cdd60ca1b6064820152608401610696565b600060078054610f3890611ae6565b905011610f545760405180602001604052806000815250610589565b6007610f5f836113c1565b604051602001610f70929190611c2b565b60405160208183030381529060405292915050565b6006546001600160a01b03163314610faf5760405162461bcd60e51b815260040161069690611b72565b6001600160a01b0381166110145760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610696565b61089d81611322565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906110528261092b565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166111045760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610696565b600061110f8361092b565b9050806001600160a01b0316846001600160a01b0316148061114a5750836001600160a01b031661113f84610621565b6001600160a01b0316145b8061117a57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b03166111958261092b565b6001600160a01b0316146111fd5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610696565b6001600160a01b03821661125f5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610696565b61126a60008261101d565b6001600160a01b0383166000908152600360205260408120805460019290611293908490611cf6565b90915550506001600160a01b03821660009081526003602052604081208054600192906112c1908490611bbd565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6109278282604051806020016040528060008152506114bf565b611399848484611182565b6113a5848484846114f2565b610eac5760405162461bcd60e51b815260040161069690611d0d565b6060816113e55750506040805180820190915260018152600360fc1b602082015290565b8160005b811561140f57806113f981611bf4565b91506114089050600a83611d75565b91506113e9565b60008167ffffffffffffffff81111561142a5761142a611926565b6040519080825280601f01601f191660200182016040528015611454576020820181803683370190505b5090505b841561117a57611469600183611cf6565b9150611476600a86611d89565b611481906030611bbd565b60f81b81838151811061149657611496611d9d565b60200101906001600160f81b031916908160001a9053506114b8600a86611d75565b9450611458565b6114c983836115f0565b6114d660008484846114f2565b6107cc5760405162461bcd60e51b815260040161069690611d0d565b60006001600160a01b0384163b156115e557604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611536903390899088908890600401611db3565b6020604051808303816000875af1925050508015611571575060408051601f3d908101601f1916820190925261156e91810190611df0565b60015b6115cb573d80801561159f576040519150601f19603f3d011682016040523d82523d6000602084013e6115a4565b606091505b5080516115c35760405162461bcd60e51b815260040161069690611d0d565b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061117a565b506001949350505050565b6001600160a01b0382166116465760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610696565b6000818152600260205260409020546001600160a01b0316156116ab5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610696565b6001600160a01b03821660009081526003602052604081208054600192906116d4908490611bbd565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b82805461173e90611ae6565b90600052602060002090601f01602090048101928261176057600085556117a6565b82601f1061177957805160ff19168380011785556117a6565b828001600101855582156117a6579182015b828111156117a657825182559160200191906001019061178b565b506117b29291506117b6565b5090565b5b808211156117b257600081556001016117b7565b6001600160e01b03198116811461089d57600080fd5b6000602082840312156117f357600080fd5b81356117fe816117cb565b9392505050565b60005b83811015611820578181015183820152602001611808565b83811115610eac5750506000910152565b60008151808452611849816020860160208601611805565b601f01601f19169290920160200192915050565b6020815260006117fe6020830184611831565b60006020828403121561188257600080fd5b5035919050565b80356001600160a01b03811681146118a057600080fd5b919050565b600080604083850312156118b857600080fd5b6118c183611889565b946020939093013593505050565b6000602082840312156118e157600080fd5b6117fe82611889565b6000806000606084860312156118ff57600080fd5b61190884611889565b925061191660208501611889565b9150604084013590509250925092565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff8084111561195757611957611926565b604051601f8501601f19908116603f0116810190828211818310171561197f5761197f611926565b8160405280935085815286868601111561199857600080fd5b858560208301376000602087830101525050509392505050565b6000602082840312156119c457600080fd5b813567ffffffffffffffff8111156119db57600080fd5b8201601f810184136119ec57600080fd5b61117a8482356020840161193c565b60008060408385031215611a0e57600080fd5b611a1783611889565b915060208301358015158114611a2c57600080fd5b809150509250929050565b60008060008060808587031215611a4d57600080fd5b611a5685611889565b9350611a6460208601611889565b925060408501359150606085013567ffffffffffffffff811115611a8757600080fd5b8501601f81018713611a9857600080fd5b611aa78782356020840161193c565b91505092959194509250565b60008060408385031215611ac657600080fd5b611acf83611889565b9150611add60208401611889565b90509250929050565b600181811c90821680611afa57607f821691505b60208210811415611b1b57634e487b7160e01b600052602260045260246000fd5b50919050565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b60008219821115611bd057611bd0611ba7565b500190565b6000816000190483118215151615611bef57611bef611ba7565b500290565b6000600019821415611c0857611c08611ba7565b5060010190565b60008151611c21818560208601611805565b9290920192915050565b600080845481600182811c915080831680611c4757607f831692505b6020808410821415611c6757634e487b7160e01b86526022600452602486fd5b818015611c7b5760018114611c8c57611cb9565b60ff19861689528489019650611cb9565b60008b81526020902060005b86811015611cb15781548b820152908501908301611c98565b505084890196505b505050505050611ced611cdc611cd683602f60f81b815260010190565b86611c0f565b64173539b7b760d91b815260050190565b95945050505050565b600082821015611d0857611d08611ba7565b500390565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b634e487b7160e01b600052601260045260246000fd5b600082611d8457611d84611d5f565b500490565b600082611d9857611d98611d5f565b500690565b634e487b7160e01b600052603260045260246000fd5b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611de690830184611831565b9695505050505050565b600060208284031215611e0257600080fd5b81516117fe816117cb56fea26469706673582212208b6a0596da51d8aea76529d3d07fe1db36379a9aca6c3711b37dcb81d20db65a64736f6c634300080b0033

Deployed Bytecode

0x6080604052600436106101b75760003560e01c80636c0360eb116100ec578063a0712d681161008a578063c87b56dd11610064578063c87b56dd1461049e578063d5abeb01146104be578063e985e9c5146104d4578063f2fde38b1461051d57600080fd5b8063a0712d681461044b578063a22cb4651461045e578063b88d4fde1461047e57600080fd5b80638456cb59116100c65780638456cb59146103ed5780638da5cb5b1461040257806395d89b41146104205780639f181b5e1461043557600080fd5b80636c0360eb146103a357806370a08231146103b8578063715018a6146103d857600080fd5b806323b872dd1161015957806344a0d68a1161013357806344a0d68a1461032957806355f804b3146103495780635c975abb146103695780636352211e1461038357600080fd5b806323b872dd146102d45780633ccfd60b146102f457806342842e0e1461030957600080fd5b8063095ea7b311610195578063095ea7b31461024b57806313faede61461026d57806318cae26914610291578063239c70ae146102be57600080fd5b806301ffc9a7146101bc57806306fdde03146101f1578063081812fc14610213575b600080fd5b3480156101c857600080fd5b506101dc6101d73660046117e1565b61053d565b60405190151581526020015b60405180910390f35b3480156101fd57600080fd5b5061020661058f565b6040516101e8919061185d565b34801561021f57600080fd5b5061023361022e366004611870565b610621565b6040516001600160a01b0390911681526020016101e8565b34801561025757600080fd5b5061026b6102663660046118a5565b6106bb565b005b34801561027957600080fd5b5061028360085481565b6040519081526020016101e8565b34801561029d57600080fd5b506102836102ac3660046118cf565b600d6020526000908152604090205481565b3480156102ca57600080fd5b50610283600a5481565b3480156102e057600080fd5b5061026b6102ef3660046118ea565b6107d1565b34801561030057600080fd5b5061026b610802565b34801561031557600080fd5b5061026b6103243660046118ea565b6108a0565b34801561033557600080fd5b5061026b610344366004611870565b6108bb565b34801561035557600080fd5b5061026b6103643660046119b2565b6108ea565b34801561037557600080fd5b50600c546101dc9060ff1681565b34801561038f57600080fd5b5061023361039e366004611870565b61092b565b3480156103af57600080fd5b506102066109a2565b3480156103c457600080fd5b506102836103d33660046118cf565b610a30565b3480156103e457600080fd5b5061026b610ab7565b3480156103f957600080fd5b5061026b610aed565b34801561040e57600080fd5b506006546001600160a01b0316610233565b34801561042c57600080fd5b50610206610b2b565b34801561044157600080fd5b50610283600b5481565b61026b610459366004611870565b610b3a565b34801561046a57600080fd5b5061026b6104793660046119fb565b610db5565b34801561048a57600080fd5b5061026b610499366004611a37565b610e7a565b3480156104aa57600080fd5b506102066104b9366004611870565b610eb2565b3480156104ca57600080fd5b5061028360095481565b3480156104e057600080fd5b506101dc6104ef366004611ab3565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561052957600080fd5b5061026b6105383660046118cf565b610f85565b60006001600160e01b031982166380ac58cd60e01b148061056e57506001600160e01b03198216635b5e139f60e01b145b8061058957506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606000805461059e90611ae6565b80601f01602080910402602001604051908101604052809291908181526020018280546105ca90611ae6565b80156106175780601f106105ec57610100808354040283529160200191610617565b820191906000526020600020905b8154815290600101906020018083116105fa57829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b031661069f5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b60006106c68261092b565b9050806001600160a01b0316836001600160a01b031614156107345760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610696565b336001600160a01b0382161480610750575061075081336104ef565b6107c25760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610696565b6107cc838361101d565b505050565b6107db338261108b565b6107f75760405162461bcd60e51b815260040161069690611b21565b6107cc838383611182565b6006546001600160a01b0316331461082c5760405162461bcd60e51b815260040161069690611b72565b60006108406006546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d806000811461088a576040519150601f19603f3d011682016040523d82523d6000602084013e61088f565b606091505b505090508061089d57600080fd5b50565b6107cc83838360405180602001604052806000815250610e7a565b6006546001600160a01b031633146108e55760405162461bcd60e51b815260040161069690611b72565b600855565b6006546001600160a01b031633146109145760405162461bcd60e51b815260040161069690611b72565b8051610927906007906020840190611732565b5050565b6000818152600260205260408120546001600160a01b0316806105895760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610696565b600780546109af90611ae6565b80601f01602080910402602001604051908101604052809291908181526020018280546109db90611ae6565b8015610a285780601f106109fd57610100808354040283529160200191610a28565b820191906000526020600020905b815481529060010190602001808311610a0b57829003601f168201915b505050505081565b60006001600160a01b038216610a9b5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610696565b506001600160a01b031660009081526003602052604090205490565b6006546001600160a01b03163314610ae15760405162461bcd60e51b815260040161069690611b72565b610aeb6000611322565b565b6006546001600160a01b03163314610b175760405162461bcd60e51b815260040161069690611b72565b600c805460ff19811660ff90911615179055565b60606001805461059e90611ae6565b600c5460ff1615610b865760405162461bcd60e51b8152602060048201526016602482015275151a194810dbdb9d1c9858dd081a5cc814185d5cd95960521b6044820152606401610696565b60095481600b54610b979190611bbd565b1115610bf55760405162461bcd60e51b815260206004820152602760248201527f576f726c644f6647697261666665202d206d6178204e4654206c696d697420656044820152661e18d95959195960ca1b6064820152608401610696565b6006546001600160a01b03163314610d5c57600a54811115610c715760405162461bcd60e51b815260206004820152602f60248201527f576f726c644f6647697261666665202d206d6178206d696e7420616d6f756e7460448201526e081b1a5b5a5d08195e18d959591959608a1b6064820152608401610696565b336000908152600d6020526040902054600a54610c8e8383611bbd565b1115610cf15760405162461bcd60e51b815260206004820152602c60248201527f6f726c644f6647697261666665202d206d6178204e465420706572206164647260448201526b195cdcc8195e18d95959195960a21b6064820152608401610696565b81600854610cff9190611bd5565b341015610d5a5760405162461bcd60e51b8152602060048201526024808201527f576f726c644f6647697261666665202d20696e73756666696369656e742065746044820152636865727360e01b6064820152608401610696565b505b60015b81811161092757336000908152600d60205260408120805491610d8183611bf4565b9190505550610da333600b60008154610d9990611bf4565b9182905550611374565b80610dad81611bf4565b915050610d5f565b6001600160a01b038216331415610e0e5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610696565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610e84338361108b565b610ea05760405162461bcd60e51b815260040161069690611b21565b610eac8484848461138e565b50505050565b6000818152600260205260409020546060906001600160a01b0316610f295760405162461bcd60e51b815260206004820152602760248201527f4552433732314d657461646174613a20546f6b656e20494420646f6573206e6f6044820152661d08195e1a5cdd60ca1b6064820152608401610696565b600060078054610f3890611ae6565b905011610f545760405180602001604052806000815250610589565b6007610f5f836113c1565b604051602001610f70929190611c2b565b60405160208183030381529060405292915050565b6006546001600160a01b03163314610faf5760405162461bcd60e51b815260040161069690611b72565b6001600160a01b0381166110145760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610696565b61089d81611322565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906110528261092b565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166111045760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610696565b600061110f8361092b565b9050806001600160a01b0316846001600160a01b0316148061114a5750836001600160a01b031661113f84610621565b6001600160a01b0316145b8061117a57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b03166111958261092b565b6001600160a01b0316146111fd5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610696565b6001600160a01b03821661125f5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610696565b61126a60008261101d565b6001600160a01b0383166000908152600360205260408120805460019290611293908490611cf6565b90915550506001600160a01b03821660009081526003602052604081208054600192906112c1908490611bbd565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6109278282604051806020016040528060008152506114bf565b611399848484611182565b6113a5848484846114f2565b610eac5760405162461bcd60e51b815260040161069690611d0d565b6060816113e55750506040805180820190915260018152600360fc1b602082015290565b8160005b811561140f57806113f981611bf4565b91506114089050600a83611d75565b91506113e9565b60008167ffffffffffffffff81111561142a5761142a611926565b6040519080825280601f01601f191660200182016040528015611454576020820181803683370190505b5090505b841561117a57611469600183611cf6565b9150611476600a86611d89565b611481906030611bbd565b60f81b81838151811061149657611496611d9d565b60200101906001600160f81b031916908160001a9053506114b8600a86611d75565b9450611458565b6114c983836115f0565b6114d660008484846114f2565b6107cc5760405162461bcd60e51b815260040161069690611d0d565b60006001600160a01b0384163b156115e557604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611536903390899088908890600401611db3565b6020604051808303816000875af1925050508015611571575060408051601f3d908101601f1916820190925261156e91810190611df0565b60015b6115cb573d80801561159f576040519150601f19603f3d011682016040523d82523d6000602084013e6115a4565b606091505b5080516115c35760405162461bcd60e51b815260040161069690611d0d565b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061117a565b506001949350505050565b6001600160a01b0382166116465760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610696565b6000818152600260205260409020546001600160a01b0316156116ab5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610696565b6001600160a01b03821660009081526003602052604081208054600192906116d4908490611bbd565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b82805461173e90611ae6565b90600052602060002090601f01602090048101928261176057600085556117a6565b82601f1061177957805160ff19168380011785556117a6565b828001600101855582156117a6579182015b828111156117a657825182559160200191906001019061178b565b506117b29291506117b6565b5090565b5b808211156117b257600081556001016117b7565b6001600160e01b03198116811461089d57600080fd5b6000602082840312156117f357600080fd5b81356117fe816117cb565b9392505050565b60005b83811015611820578181015183820152602001611808565b83811115610eac5750506000910152565b60008151808452611849816020860160208601611805565b601f01601f19169290920160200192915050565b6020815260006117fe6020830184611831565b60006020828403121561188257600080fd5b5035919050565b80356001600160a01b03811681146118a057600080fd5b919050565b600080604083850312156118b857600080fd5b6118c183611889565b946020939093013593505050565b6000602082840312156118e157600080fd5b6117fe82611889565b6000806000606084860312156118ff57600080fd5b61190884611889565b925061191660208501611889565b9150604084013590509250925092565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff8084111561195757611957611926565b604051601f8501601f19908116603f0116810190828211818310171561197f5761197f611926565b8160405280935085815286868601111561199857600080fd5b858560208301376000602087830101525050509392505050565b6000602082840312156119c457600080fd5b813567ffffffffffffffff8111156119db57600080fd5b8201601f810184136119ec57600080fd5b61117a8482356020840161193c565b60008060408385031215611a0e57600080fd5b611a1783611889565b915060208301358015158114611a2c57600080fd5b809150509250929050565b60008060008060808587031215611a4d57600080fd5b611a5685611889565b9350611a6460208601611889565b925060408501359150606085013567ffffffffffffffff811115611a8757600080fd5b8501601f81018713611a9857600080fd5b611aa78782356020840161193c565b91505092959194509250565b60008060408385031215611ac657600080fd5b611acf83611889565b9150611add60208401611889565b90509250929050565b600181811c90821680611afa57607f821691505b60208210811415611b1b57634e487b7160e01b600052602260045260246000fd5b50919050565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b60008219821115611bd057611bd0611ba7565b500190565b6000816000190483118215151615611bef57611bef611ba7565b500290565b6000600019821415611c0857611c08611ba7565b5060010190565b60008151611c21818560208601611805565b9290920192915050565b600080845481600182811c915080831680611c4757607f831692505b6020808410821415611c6757634e487b7160e01b86526022600452602486fd5b818015611c7b5760018114611c8c57611cb9565b60ff19861689528489019650611cb9565b60008b81526020902060005b86811015611cb15781548b820152908501908301611c98565b505084890196505b505050505050611ced611cdc611cd683602f60f81b815260010190565b86611c0f565b64173539b7b760d91b815260050190565b95945050505050565b600082821015611d0857611d08611ba7565b500390565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b634e487b7160e01b600052601260045260246000fd5b600082611d8457611d84611d5f565b500490565b600082611d9857611d98611d5f565b500690565b634e487b7160e01b600052603260045260246000fd5b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611de690830184611831565b9695505050505050565b600060208284031215611e0257600080fd5b81516117fe816117cb56fea26469706673582212208b6a0596da51d8aea76529d3d07fe1db36379a9aca6c3711b37dcb81d20db65a64736f6c634300080b0033

Deployed Bytecode Sourcemap

36842:2276:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23732:355;;;;;;;;;;-1:-1:-1;23732:355:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;23732:355:0;;;;;;;;24901:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;26594:308::-;;;;;;;;;;-1:-1:-1;26594:308:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1714:32:1;;;1696:51;;1684:2;1669:18;26594:308:0;1550:203:1;26117:411:0;;;;;;;;;;-1:-1:-1;26117:411:0;;;;;:::i;:::-;;:::i;:::-;;36952:32;;;;;;;;;;;;;;;;;;;2341:25:1;;;2329:2;2314:18;36952:32:0;2195:177:1;37141:55:0;;;;;;;;;;-1:-1:-1;37141:55:0;;;;;:::i;:::-;;;;;;;;;;;;;;37030:33;;;;;;;;;;;;;;;;27653:376;;;;;;;;;;-1:-1:-1;27653:376:0;;;;;:::i;:::-;;:::i;38968:147::-;;;;;;;;;;;;;:::i;28100:185::-;;;;;;;;;;-1:-1:-1;28100:185:0;;;;;:::i;:::-;;:::i;38691:86::-;;;;;;;;;;-1:-1:-1;38691:86:0;;;;;:::i;:::-;;:::i;38785:98::-;;;;;;;;;;-1:-1:-1;38785:98:0;;;;;:::i;:::-;;:::i;37106:26::-;;;;;;;;;;-1:-1:-1;37106:26:0;;;;;;;;24508:326;;;;;;;;;;-1:-1:-1;24508:326:0;;;;;:::i;:::-;;:::i;36924:21::-;;;;;;;;;;;;;:::i;24151:295::-;;;;;;;;;;-1:-1:-1;24151:295:0;;;;;:::i;:::-;;:::i;4705:94::-;;;;;;;;;;;;;:::i;38891:69::-;;;;;;;;;;;;;:::i;4054:87::-;;;;;;;;;;-1:-1:-1;4127:6:0;;-1:-1:-1;;;;;4127:6:0;4054:87;;25070:104;;;;;;;;;;;;;:::i;37070:29::-;;;;;;;;;;;;;;;;37688:977;;;;;;:::i;:::-;;:::i;26974:327::-;;;;;;;;;;-1:-1:-1;26974:327:0;;;;;:::i;:::-;;:::i;28356:365::-;;;;;;;;;;-1:-1:-1;28356:365:0;;;;;:::i;:::-;;:::i;37267:413::-;;;;;;;;;;-1:-1:-1;37267:413:0;;;;;:::i;:::-;;:::i;36991:32::-;;;;;;;;;;;;;;;;27372:214;;;;;;;;;;-1:-1:-1;27372:214:0;;;;;:::i;:::-;-1:-1:-1;;;;;27543:25:0;;;27514:4;27543:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;27372:214;4954:229;;;;;;;;;;-1:-1:-1;4954:229:0;;;;;:::i;:::-;;:::i;23732:355::-;23879:4;-1:-1:-1;;;;;;23921:40:0;;-1:-1:-1;;;23921:40:0;;:105;;-1:-1:-1;;;;;;;23978:48:0;;-1:-1:-1;;;23978:48:0;23921:105;:158;;;-1:-1:-1;;;;;;;;;;16685:40:0;;;24043:36;23901:178;23732:355;-1:-1:-1;;23732:355:0:o;24901:100::-;24955:13;24988:5;24981:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24901:100;:::o;26594:308::-;26715:7;30357:16;;;:7;:16;;;;;;-1:-1:-1;;;;;30357:16:0;26740:110;;;;-1:-1:-1;;;26740:110:0;;6002:2:1;26740:110:0;;;5984:21:1;6041:2;6021:18;;;6014:30;6080:34;6060:18;;;6053:62;-1:-1:-1;;;6131:18:1;;;6124:42;6183:19;;26740:110:0;;;;;;;;;-1:-1:-1;26870:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;26870:24:0;;26594:308::o;26117:411::-;26198:13;26214:23;26229:7;26214:14;:23::i;:::-;26198:39;;26262:5;-1:-1:-1;;;;;26256:11:0;:2;-1:-1:-1;;;;;26256:11:0;;;26248:57;;;;-1:-1:-1;;;26248:57:0;;6415:2:1;26248:57:0;;;6397:21:1;6454:2;6434:18;;;6427:30;6493:34;6473:18;;;6466:62;-1:-1:-1;;;6544:18:1;;;6537:31;6585:19;;26248:57:0;6213:397:1;26248:57:0;2903:10;-1:-1:-1;;;;;26340:21:0;;;;:62;;-1:-1:-1;26365:37:0;26382:5;2903:10;27372:214;:::i;26365:37::-;26318:168;;;;-1:-1:-1;;;26318:168:0;;6817:2:1;26318:168:0;;;6799:21:1;6856:2;6836:18;;;6829:30;6895:34;6875:18;;;6868:62;6966:26;6946:18;;;6939:54;7010:19;;26318:168:0;6615:420:1;26318:168:0;26499:21;26508:2;26512:7;26499:8;:21::i;:::-;26187:341;26117:411;;:::o;27653:376::-;27862:41;2903:10;27895:7;27862:18;:41::i;:::-;27840:140;;;;-1:-1:-1;;;27840:140:0;;;;;;;:::i;:::-;27993:28;28003:4;28009:2;28013:7;27993:9;:28::i;38968:147::-;4127:6;;-1:-1:-1;;;;;4127:6:0;2903:10;4274:23;4266:68;;;;-1:-1:-1;;;4266:68:0;;;;;;;:::i;:::-;39017:7:::1;39038;4127:6:::0;;-1:-1:-1;;;;;4127:6:0;;4054:87;39038:7:::1;-1:-1:-1::0;;;;;39030:21:0::1;39059;39030:55;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39016:69;;;39104:2;39096:11;;;::::0;::::1;;39005:110;38968:147::o:0;28100:185::-;28238:39;28255:4;28261:2;28265:7;28238:39;;;;;;;;;;;;:16;:39::i;38691:86::-;4127:6;;-1:-1:-1;;;;;4127:6:0;2903:10;4274:23;4266:68;;;;-1:-1:-1;;;4266:68:0;;;;;;;:::i;:::-;38754:4:::1;:15:::0;38691:86::o;38785:98::-;4127:6;;-1:-1:-1;;;;;4127:6:0;2903:10;4274:23;4266:68;;;;-1:-1:-1;;;4266:68:0;;;;;;;:::i;:::-;38857:18;;::::1;::::0;:7:::1;::::0;:18:::1;::::0;::::1;::::0;::::1;:::i;:::-;;38785:98:::0;:::o;24508:326::-;24625:7;24666:16;;;:7;:16;;;;;;-1:-1:-1;;;;;24666:16:0;24715:19;24693:110;;;;-1:-1:-1;;;24693:110:0;;8231:2:1;24693:110:0;;;8213:21:1;8270:2;8250:18;;;8243:30;8309:34;8289:18;;;8282:62;-1:-1:-1;;;8360:18:1;;;8353:39;8409:19;;24693:110:0;8029:405:1;36924:21:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;24151:295::-;24268:7;-1:-1:-1;;;;;24315:19:0;;24293:111;;;;-1:-1:-1;;;24293:111:0;;8641:2:1;24293:111:0;;;8623:21:1;8680:2;8660:18;;;8653:30;8719:34;8699:18;;;8692:62;-1:-1:-1;;;8770:18:1;;;8763:40;8820:19;;24293:111:0;8439:406:1;24293:111:0;-1:-1:-1;;;;;;24422:16:0;;;;;:9;:16;;;;;;;24151:295::o;4705:94::-;4127:6;;-1:-1:-1;;;;;4127:6:0;2903:10;4274:23;4266:68;;;;-1:-1:-1;;;4266:68:0;;;;;;;:::i;:::-;4770:21:::1;4788:1;4770:9;:21::i;:::-;4705:94::o:0;38891:69::-;4127:6;;-1:-1:-1;;;;;4127:6:0;2903:10;4274:23;4266:68;;;;-1:-1:-1;;;4266:68:0;;;;;;;:::i;:::-;38946:6:::1;::::0;;-1:-1:-1;;38936:16:0;::::1;38946:6;::::0;;::::1;38945:7;38936:16;::::0;;38891:69::o;25070:104::-;25126:13;25159:7;25152:14;;;;;:::i;37688:977::-;37756:6;;;;37755:7;37747:42;;;;-1:-1:-1;;;37747:42:0;;9052:2:1;37747:42:0;;;9034:21:1;9091:2;9071:18;;;9064:30;-1:-1:-1;;;9110:18:1;;;9103:52;9172:18;;37747:42:0;8850:346:1;37747:42:0;37846:9;;37835:7;37822:10;;:20;;;;:::i;:::-;:33;;37800:122;;;;-1:-1:-1;;;37800:122:0;;9668:2:1;37800:122:0;;;9650:21:1;9707:2;9687:18;;;9680:30;9746:34;9726:18;;;9719:62;-1:-1:-1;;;9797:18:1;;;9790:37;9844:19;;37800:122:0;9466:403:1;37800:122:0;4127:6;;-1:-1:-1;;;;;4127:6:0;37937:10;:21;37933:565;;38012:13;;38001:7;:24;;37975:133;;;;-1:-1:-1;;;37975:133:0;;10076:2:1;37975:133:0;;;10058:21:1;10115:2;10095:18;;;10088:30;10154:34;10134:18;;;10127:62;-1:-1:-1;;;10205:18:1;;;10198:45;10260:19;;37975:133:0;9874:411:1;37975:133:0;38171:10;38123:24;38150:32;;;:20;:32;;;;;;38253:13;;38223:26;38242:7;38150:32;38223:26;:::i;:::-;:43;;38197:149;;;;-1:-1:-1;;;38197:149:0;;10492:2:1;38197:149:0;;;10474:21:1;10531:2;10511:18;;;10504:30;10570:34;10550:18;;;10543:62;-1:-1:-1;;;10621:18:1;;;10614:42;10673:19;;38197:149:0;10290:408:1;38197:149:0;38407:7;38400:4;;:14;;;;:::i;:::-;38387:9;:27;;38361:125;;;;-1:-1:-1;;;38361:125:0;;11078:2:1;38361:125:0;;;11060:21:1;11117:2;11097:18;;;11090:30;11156:34;11136:18;;;11129:62;-1:-1:-1;;;11207:18:1;;;11200:34;11251:19;;38361:125:0;10876:400:1;38361:125:0;37960:538;37933:565;38525:1;38508:150;38533:7;38528:1;:12;38508:150;;38583:10;38562:32;;;;:20;:32;;;;;:34;;;;;;:::i;:::-;;;;;;38611:35;38621:10;38635;;38633:12;;;;;:::i;:::-;;;;;-1:-1:-1;38611:9:0;:35::i;:::-;38542:3;;;;:::i;:::-;;;;38508:150;;26974:327;-1:-1:-1;;;;;27109:24:0;;2903:10;27109:24;;27101:62;;;;-1:-1:-1;;;27101:62:0;;11623:2:1;27101:62:0;;;11605:21:1;11662:2;11642:18;;;11635:30;11701:27;11681:18;;;11674:55;11746:18;;27101:62:0;11421:349:1;27101:62:0;2903:10;27176:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;27176:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;27176:53:0;;;;;;;;;;27245:48;;540:41:1;;;27176:42:0;;2903:10;27245:48;;513:18:1;27245:48:0;;;;;;;26974:327;;:::o;28356:365::-;28545:41;2903:10;28578:7;28545:18;:41::i;:::-;28523:140;;;;-1:-1:-1;;;28523:140:0;;;;;;;:::i;:::-;28674:39;28688:4;28694:2;28698:7;28707:5;28674:13;:39::i;:::-;28356:365;;;;:::o;37267:413::-;30333:4;30357:16;;;:7;:16;;;;;;37368:13;;-1:-1:-1;;;;;30357:16:0;37399:68;;;;-1:-1:-1;;;37399:68:0;;11977:2:1;37399:68:0;;;11959:21:1;12016:2;11996:18;;;11989:30;12055:34;12035:18;;;12028:62;-1:-1:-1;;;12106:18:1;;;12099:37;12153:19;;37399:68:0;11775:403:1;37399:68:0;37522:1;37504:7;37498:21;;;;;:::i;:::-;;;:25;:174;;;;;;;;;;;;;;;;;37589:7;37603:18;:7;:16;:18::i;:::-;37572:59;;;;;;;;;:::i;:::-;;;;;;;;;;;;;37478:194;37267:413;-1:-1:-1;;37267:413:0:o;4954:229::-;4127:6;;-1:-1:-1;;;;;4127:6:0;2903:10;4274:23;4266:68;;;;-1:-1:-1;;;4266:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;5057:22:0;::::1;5035:110;;;::::0;-1:-1:-1;;;5035:110:0;;14376:2:1;5035:110:0::1;::::0;::::1;14358:21:1::0;14415:2;14395:18;;;14388:30;14454:34;14434:18;;;14427:62;-1:-1:-1;;;14505:18:1;;;14498:36;14551:19;;5035:110:0::1;14174:402:1::0;5035:110:0::1;5156:19;5166:8;5156:9;:19::i;34391:174::-:0;34466:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;34466:29:0;-1:-1:-1;;;;;34466:29:0;;;;;;;;:24;;34520:23;34466:24;34520:14;:23::i;:::-;-1:-1:-1;;;;;34511:46:0;;;;;;;;;;;34391:174;;:::o;30562:452::-;30691:4;30357:16;;;:7;:16;;;;;;-1:-1:-1;;;;;30357:16:0;30713:110;;;;-1:-1:-1;;;30713:110:0;;14783:2:1;30713:110:0;;;14765:21:1;14822:2;14802:18;;;14795:30;14861:34;14841:18;;;14834:62;-1:-1:-1;;;14912:18:1;;;14905:42;14964:19;;30713:110:0;14581:408:1;30713:110:0;30834:13;30850:23;30865:7;30850:14;:23::i;:::-;30834:39;;30903:5;-1:-1:-1;;;;;30892:16:0;:7;-1:-1:-1;;;;;30892:16:0;;:64;;;;30949:7;-1:-1:-1;;;;;30925:31:0;:20;30937:7;30925:11;:20::i;:::-;-1:-1:-1;;;;;30925:31:0;;30892:64;:113;;;-1:-1:-1;;;;;;27543:25:0;;;27514:4;27543:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;30973:32;30884:122;30562:452;-1:-1:-1;;;;30562:452:0:o;33658:615::-;33831:4;-1:-1:-1;;;;;33804:31:0;:23;33819:7;33804:14;:23::i;:::-;-1:-1:-1;;;;;33804:31:0;;33782:122;;;;-1:-1:-1;;;33782:122:0;;15196:2:1;33782:122:0;;;15178:21:1;15235:2;15215:18;;;15208:30;15274:34;15254:18;;;15247:62;-1:-1:-1;;;15325:18:1;;;15318:39;15374:19;;33782:122:0;14994:405:1;33782:122:0;-1:-1:-1;;;;;33923:16:0;;33915:65;;;;-1:-1:-1;;;33915:65:0;;15606:2:1;33915:65:0;;;15588:21:1;15645:2;15625:18;;;15618:30;15684:34;15664:18;;;15657:62;-1:-1:-1;;;15735:18:1;;;15728:34;15779:19;;33915:65:0;15404:400:1;33915:65:0;34097:29;34114:1;34118:7;34097:8;:29::i;:::-;-1:-1:-1;;;;;34139:15:0;;;;;;:9;:15;;;;;:20;;34158:1;;34139:15;:20;;34158:1;;34139:20;:::i;:::-;;;;-1:-1:-1;;;;;;;34170:13:0;;;;;;:9;:13;;;;;:18;;34187:1;;34170:13;:18;;34187:1;;34170:18;:::i;:::-;;;;-1:-1:-1;;34199:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;34199:21:0;-1:-1:-1;;;;;34199:21:0;;;;;;;;;34238:27;;34199:16;;34238:27;;;;;;;33658:615;;;:::o;5191:173::-;5266:6;;;-1:-1:-1;;;;;5283:17:0;;;-1:-1:-1;;;;;;5283:17:0;;;;;;;5316:40;;5266:6;;;5283:17;5266:6;;5316:40;;5247:16;;5316:40;5236:128;5191:173;:::o;31356:110::-;31432:26;31442:2;31446:7;31432:26;;;;;;;;;;;;:9;:26::i;29603:352::-;29760:28;29770:4;29776:2;29780:7;29760:9;:28::i;:::-;29821:48;29844:4;29850:2;29854:7;29863:5;29821:22;:48::i;:::-;29799:148;;;;-1:-1:-1;;;29799:148:0;;;;;;;:::i;411:723::-;467:13;688:10;684:53;;-1:-1:-1;;715:10:0;;;;;;;;;;;;-1:-1:-1;;;715:10:0;;;;;411:723::o;684:53::-;762:5;747:12;803:78;810:9;;803:78;;836:8;;;;:::i;:::-;;-1:-1:-1;859:10:0;;-1:-1:-1;867:2:0;859:10;;:::i;:::-;;;803:78;;;891:19;923:6;913:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;913:17:0;;891:39;;941:154;948:10;;941:154;;975:11;985:1;975:11;;:::i;:::-;;-1:-1:-1;1044:10:0;1052:2;1044:5;:10;:::i;:::-;1031:24;;:2;:24;:::i;:::-;1018:39;;1001:6;1008;1001:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;1001:56:0;;;;;;;;-1:-1:-1;1072:11:0;1081:2;1072:11;;:::i;:::-;;;941:154;;31693:321;31823:18;31829:2;31833:7;31823:5;:18::i;:::-;31874:54;31905:1;31909:2;31913:7;31922:5;31874:22;:54::i;:::-;31852:154;;;;-1:-1:-1;;;31852:154:0;;;;;;;:::i;35130:980::-;35285:4;-1:-1:-1;;;;;35306:13:0;;6456:20;6504:8;35302:801;;35359:175;;-1:-1:-1;;;35359:175:0;;-1:-1:-1;;;;;35359:36:0;;;;;:175;;2903:10;;35453:4;;35480:7;;35510:5;;35359:175;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;35359:175:0;;;;;;;;-1:-1:-1;;35359:175:0;;;;;;;;;;;;:::i;:::-;;;35338:710;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;35717:13:0;;35713:320;;35760:108;;-1:-1:-1;;;35760:108:0;;;;;;;:::i;35713:320::-;35983:6;35977:13;35968:6;35964:2;35960:15;35953:38;35338:710;-1:-1:-1;;;;;;35598:51:0;-1:-1:-1;;;35598:51:0;;-1:-1:-1;35591:58:0;;35302:801;-1:-1:-1;36087:4:0;35130:980;;;;;;:::o;32350:382::-;-1:-1:-1;;;;;32430:16:0;;32422:61;;;;-1:-1:-1;;;32422:61:0;;17825:2:1;32422:61:0;;;17807:21:1;;;17844:18;;;17837:30;17903:34;17883:18;;;17876:62;17955:18;;32422:61:0;17623:356:1;32422:61:0;30333:4;30357:16;;;:7;:16;;;;;;-1:-1:-1;;;;;30357:16:0;:30;32494:58;;;;-1:-1:-1;;;32494:58:0;;18186:2:1;32494:58:0;;;18168:21:1;18225:2;18205:18;;;18198:30;18264;18244:18;;;18237:58;18312:18;;32494:58:0;17984:352:1;32494:58:0;-1:-1:-1;;;;;32623:13:0;;;;;;:9;:13;;;;;:18;;32640:1;;32623:13;:18;;32640:1;;32623:18;:::i;:::-;;;;-1:-1:-1;;32652:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;32652:21:0;-1:-1:-1;;;;;32652:21:0;;;;;;;;32691:33;;32652:16;;;32691:33;;32652:16;;32691:33;32350:382;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:131:1;-1:-1:-1;;;;;;88:32:1;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;:::-;384:5;150:245;-1:-1:-1;;;150:245:1:o;592:258::-;664:1;674:113;688:6;685:1;682:13;674:113;;;764:11;;;758:18;745:11;;;738:39;710:2;703:10;674:113;;;805:6;802:1;799:13;796:48;;;-1:-1:-1;;840:1:1;822:16;;815:27;592:258::o;855:269::-;908:3;946:5;940:12;973:6;968:3;961:19;989:63;1045:6;1038:4;1033:3;1029:14;1022:4;1015:5;1011:16;989:63;:::i;:::-;1106:2;1085:15;-1:-1:-1;;1081:29:1;1072:39;;;;1113:4;1068:50;;855:269;-1:-1:-1;;855:269:1:o;1129:231::-;1278:2;1267:9;1260:21;1241:4;1298:56;1350:2;1339:9;1335:18;1327:6;1298:56;:::i;1365:180::-;1424:6;1477:2;1465:9;1456:7;1452:23;1448:32;1445:52;;;1493:1;1490;1483:12;1445:52;-1:-1:-1;1516:23:1;;1365:180;-1:-1:-1;1365:180:1:o;1758:173::-;1826:20;;-1:-1:-1;;;;;1875:31:1;;1865:42;;1855:70;;1921:1;1918;1911:12;1855:70;1758:173;;;:::o;1936:254::-;2004:6;2012;2065:2;2053:9;2044:7;2040:23;2036:32;2033:52;;;2081:1;2078;2071:12;2033:52;2104:29;2123:9;2104:29;:::i;:::-;2094:39;2180:2;2165:18;;;;2152:32;;-1:-1:-1;;;1936:254:1:o;2377:186::-;2436:6;2489:2;2477:9;2468:7;2464:23;2460:32;2457:52;;;2505:1;2502;2495:12;2457:52;2528:29;2547:9;2528:29;:::i;2568:328::-;2645:6;2653;2661;2714:2;2702:9;2693:7;2689:23;2685:32;2682:52;;;2730:1;2727;2720:12;2682:52;2753:29;2772:9;2753:29;:::i;:::-;2743:39;;2801:38;2835:2;2824:9;2820:18;2801:38;:::i;:::-;2791:48;;2886:2;2875:9;2871:18;2858:32;2848:42;;2568:328;;;;;:::o;2901:127::-;2962:10;2957:3;2953:20;2950:1;2943:31;2993:4;2990:1;2983:15;3017:4;3014:1;3007:15;3033:632;3098:5;3128:18;3169:2;3161:6;3158:14;3155:40;;;3175:18;;:::i;:::-;3250:2;3244:9;3218:2;3304:15;;-1:-1:-1;;3300:24:1;;;3326:2;3296:33;3292:42;3280:55;;;3350:18;;;3370:22;;;3347:46;3344:72;;;3396:18;;:::i;:::-;3436:10;3432:2;3425:22;3465:6;3456:15;;3495:6;3487;3480:22;3535:3;3526:6;3521:3;3517:16;3514:25;3511:45;;;3552:1;3549;3542:12;3511:45;3602:6;3597:3;3590:4;3582:6;3578:17;3565:44;3657:1;3650:4;3641:6;3633;3629:19;3625:30;3618:41;;;;3033:632;;;;;:::o;3670:451::-;3739:6;3792:2;3780:9;3771:7;3767:23;3763:32;3760:52;;;3808:1;3805;3798:12;3760:52;3848:9;3835:23;3881:18;3873:6;3870:30;3867:50;;;3913:1;3910;3903:12;3867:50;3936:22;;3989:4;3981:13;;3977:27;-1:-1:-1;3967:55:1;;4018:1;4015;4008:12;3967:55;4041:74;4107:7;4102:2;4089:16;4084:2;4080;4076:11;4041:74;:::i;4126:347::-;4191:6;4199;4252:2;4240:9;4231:7;4227:23;4223:32;4220:52;;;4268:1;4265;4258:12;4220:52;4291:29;4310:9;4291:29;:::i;:::-;4281:39;;4370:2;4359:9;4355:18;4342:32;4417:5;4410:13;4403:21;4396:5;4393:32;4383:60;;4439:1;4436;4429:12;4383:60;4462:5;4452:15;;;4126:347;;;;;:::o;4478:667::-;4573:6;4581;4589;4597;4650:3;4638:9;4629:7;4625:23;4621:33;4618:53;;;4667:1;4664;4657:12;4618:53;4690:29;4709:9;4690:29;:::i;:::-;4680:39;;4738:38;4772:2;4761:9;4757:18;4738:38;:::i;:::-;4728:48;;4823:2;4812:9;4808:18;4795:32;4785:42;;4878:2;4867:9;4863:18;4850:32;4905:18;4897:6;4894:30;4891:50;;;4937:1;4934;4927:12;4891:50;4960:22;;5013:4;5005:13;;5001:27;-1:-1:-1;4991:55:1;;5042:1;5039;5032:12;4991:55;5065:74;5131:7;5126:2;5113:16;5108:2;5104;5100:11;5065:74;:::i;:::-;5055:84;;;4478:667;;;;;;;:::o;5150:260::-;5218:6;5226;5279:2;5267:9;5258:7;5254:23;5250:32;5247:52;;;5295:1;5292;5285:12;5247:52;5318:29;5337:9;5318:29;:::i;:::-;5308:39;;5366:38;5400:2;5389:9;5385:18;5366:38;:::i;:::-;5356:48;;5150:260;;;;;:::o;5415:380::-;5494:1;5490:12;;;;5537;;;5558:61;;5612:4;5604:6;5600:17;5590:27;;5558:61;5665:2;5657:6;5654:14;5634:18;5631:38;5628:161;;;5711:10;5706:3;5702:20;5699:1;5692:31;5746:4;5743:1;5736:15;5774:4;5771:1;5764:15;5628:161;;5415:380;;;:::o;7040:413::-;7242:2;7224:21;;;7281:2;7261:18;;;7254:30;7320:34;7315:2;7300:18;;7293:62;-1:-1:-1;;;7386:2:1;7371:18;;7364:47;7443:3;7428:19;;7040:413::o;7458:356::-;7660:2;7642:21;;;7679:18;;;7672:30;7738:34;7733:2;7718:18;;7711:62;7805:2;7790:18;;7458:356::o;9201:127::-;9262:10;9257:3;9253:20;9250:1;9243:31;9293:4;9290:1;9283:15;9317:4;9314:1;9307:15;9333:128;9373:3;9404:1;9400:6;9397:1;9394:13;9391:39;;;9410:18;;:::i;:::-;-1:-1:-1;9446:9:1;;9333:128::o;10703:168::-;10743:7;10809:1;10805;10801:6;10797:14;10794:1;10791:21;10786:1;10779:9;10772:17;10768:45;10765:71;;;10816:18;;:::i;:::-;-1:-1:-1;10856:9:1;;10703:168::o;11281:135::-;11320:3;-1:-1:-1;;11341:17:1;;11338:43;;;11361:18;;:::i;:::-;-1:-1:-1;11408:1:1;11397:13;;11281:135::o;12428:185::-;12470:3;12508:5;12502:12;12523:52;12568:6;12563:3;12556:4;12549:5;12545:16;12523:52;:::i;:::-;12591:16;;;;;12428:185;-1:-1:-1;;12428:185:1:o;12736:1433::-;13114:3;13143:1;13176:6;13170:13;13206:3;13228:1;13256:9;13252:2;13248:18;13238:28;;13316:2;13305:9;13301:18;13338;13328:61;;13382:4;13374:6;13370:17;13360:27;;13328:61;13408:2;13456;13448:6;13445:14;13425:18;13422:38;13419:165;;;-1:-1:-1;;;13483:33:1;;13539:4;13536:1;13529:15;13569:4;13490:3;13557:17;13419:165;13600:18;13627:104;;;;13745:1;13740:320;;;;13593:467;;13627:104;-1:-1:-1;;13660:24:1;;13648:37;;13705:16;;;;-1:-1:-1;13627:104:1;;13740:320;12256:1;12249:14;;;12293:4;12280:18;;13835:1;13849:165;13863:6;13860:1;13857:13;13849:165;;;13941:14;;13928:11;;;13921:35;13984:16;;;;13878:10;;13849:165;;;13853:3;;14043:6;14038:3;14034:16;14027:23;;13593:467;;;;;;;14076:87;14101:61;14127:34;14157:3;-1:-1:-1;;;12374:16:1;;12415:1;12406:11;;12309:114;14127:34;14119:6;14101:61;:::i;:::-;-1:-1:-1;;;12678:20:1;;12723:1;12714:11;;12618:113;14076:87;14069:94;12736:1433;-1:-1:-1;;;;;12736:1433:1:o;15809:125::-;15849:4;15877:1;15874;15871:8;15868:34;;;15882:18;;:::i;:::-;-1:-1:-1;15919:9:1;;15809:125::o;15939:414::-;16141:2;16123:21;;;16180:2;16160:18;;;16153:30;16219:34;16214:2;16199:18;;16192:62;-1:-1:-1;;;16285:2:1;16270:18;;16263:48;16343:3;16328:19;;15939:414::o;16358:127::-;16419:10;16414:3;16410:20;16407:1;16400:31;16450:4;16447:1;16440:15;16474:4;16471:1;16464:15;16490:120;16530:1;16556;16546:35;;16561:18;;:::i;:::-;-1:-1:-1;16595:9:1;;16490:120::o;16615:112::-;16647:1;16673;16663:35;;16678:18;;:::i;:::-;-1:-1:-1;16712:9:1;;16615:112::o;16732:127::-;16793:10;16788:3;16784:20;16781:1;16774:31;16824:4;16821:1;16814:15;16848:4;16845:1;16838:15;16864:500;-1:-1:-1;;;;;17133:15:1;;;17115:34;;17185:15;;17180:2;17165:18;;17158:43;17232:2;17217:18;;17210:34;;;17280:3;17275:2;17260:18;;17253:31;;;17058:4;;17301:57;;17338:19;;17330:6;17301:57;:::i;:::-;17293:65;16864:500;-1:-1:-1;;;;;;16864:500:1:o;17369:249::-;17438:6;17491:2;17479:9;17470:7;17466:23;17462:32;17459:52;;;17507:1;17504;17497:12;17459:52;17539:9;17533:16;17558:30;17582:5;17558:30;:::i

Swarm Source

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