ETH Price: $3,145.39 (+1.32%)

Token

heyesgs (GAL)
 

Overview

Max Total Supply

1 GAL

Holders

1

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Balance
1 GAL
0xc5ca5711b83547e460cb5e94af2cfba69f8b1799
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:
heyesgs

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-10-18
*/

// SPDX-License-Identifier: UNLISENCED

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

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

pragma solidity ^0.8.0;

/**
 * @title Counters
 * @author Matt Condon (@shrugs)
 * @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number
 * of elements in a mapping, issuing ERC721 ids, or counting request ids.
 *
 * Include with `using Counters for Counters.Counter;`
 */

library Counters {
    struct Counter {
        // This variable should never be directly accessed by users of the library: interactions must be restricted to
        // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add
        // this feature: see https://github.com/ethereum/solidity/issues/4637
        uint256 _value; // default: 0
    }

    function current(Counter storage counter) internal view returns (uint256) {
        return counter._value;
    }

    function increment(Counter storage counter) internal {
        unchecked {
            counter._value += 1;
        }
    }

    function decrement(Counter storage counter) internal {
        uint256 value = counter._value;
        require(value > 0, "Counter: decrement overflow");
        unchecked {
            counter._value = value - 1;
        }
    }

    function reset(Counter storage counter) internal {
        counter._value = 0;
    }
}

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

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


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

pragma solidity ^0.8.0;

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

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

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


// OpenZeppelin Contracts v4.4.1 (access/Ownable.sol)

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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


// OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol)

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


// OpenZeppelin Contracts (last updated v4.6.0) (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 `IERC721Receiver.onERC721Received.selector`.
     */
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;


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

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


// OpenZeppelin Contracts (last updated v4.6.0) (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`.
     *
     * 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;

    /**
     * @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 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 the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) external view returns (address operator);

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

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


// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol)

pragma solidity ^0.8.0;


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

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

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

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


// OpenZeppelin Contracts (last updated v4.6.0) (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 overridden in child contracts.
     */
    function _baseURI() internal view virtual returns (string memory) {
        return "";
    }

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);

        _afterTokenTransfer(from, to, tokenId);
    }

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

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

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

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

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

pragma solidity ^0.8.7;

contract heyesgs is ERC721, Ownable {
    string private baseTokenURI;
    string private baseTokenURI_EXT;
    using Strings for uint256;
    using Counters for Counters.Counter;
    Counters.Counter private supply;

    constructor () ERC721 ("heyesgs","GAL") {}

    function ownerMint(uint256 _amount, address _address) public onlyOwner { 
        require((_amount + supply.current()) <= 333, "No more NFTs");
        internalmint(_address, _amount);
    }

    function setBaseURI(string memory uri_) public onlyOwner {
        baseTokenURI = uri_;
    }

    function setbaseTokenURI_EXT(string memory ext_) public onlyOwner {
        baseTokenURI_EXT = ext_;
    }

    function totalSupply() public view returns (uint256) {
        return supply.current();
    }

    function currentBaseURI() private view returns (string memory){
        return baseTokenURI;
    }

    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token");
        return string(abi.encodePacked(currentBaseURI(), Strings.toString(tokenId), baseTokenURI_EXT));
    }

    function withdraw() public payable onlyOwner {
        require(payable(msg.sender).send(address(this).balance));
    }

    modifier onlySender {
        require(msg.sender == tx.origin, "No smart contract"); _; 
    }

    function internalmint(address _address, uint256 _amount) internal {
        for (uint256 i = 0; i < _amount; i++) {
          supply.increment();
          _safeMint(_address, supply.current());
        }
    }
}

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":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"},{"internalType":"address","name":"_address","type":"address"}],"name":"ownerMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"uri_","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"ext_","type":"string"}],"name":"setbaseTokenURI_EXT","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]

60806040523480156200001157600080fd5b5060408051808201825260078152666865796573677360c81b60208083019182528351808501909452600384526211d05360ea1b9084015281519192916200005c91600091620000eb565b50805162000072906001906020840190620000eb565b5050506200008f620000896200009560201b60201c565b62000099565b620001ce565b3390565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b828054620000f99062000191565b90600052602060002090601f0160209004810192826200011d576000855562000168565b82601f106200013857805160ff191683800117855562000168565b8280016001018555821562000168579182015b82811115620001685782518255916020019190600101906200014b565b50620001769291506200017a565b5090565b5b808211156200017657600081556001016200017b565b600181811c90821680620001a657607f821691505b60208210811415620001c857634e487b7160e01b600052602260045260246000fd5b50919050565b611a4280620001de6000396000f3fe60806040526004361061012a5760003560e01c806370a08231116100ab578063b88d4fde1161006f578063b88d4fde14610313578063bfac44ee14610333578063c87b56dd14610353578063d52c57e014610373578063e985e9c514610393578063f2fde38b146103dc57600080fd5b806370a082311461028b578063715018a6146102ab5780638da5cb5b146102c057806395d89b41146102de578063a22cb465146102f357600080fd5b806323b872dd116100f257806323b872dd146102035780633ccfd60b1461022357806342842e0e1461022b57806355f804b31461024b5780636352211e1461026b57600080fd5b806301ffc9a71461012f57806306fdde0314610164578063081812fc14610186578063095ea7b3146101be57806318160ddd146101e0575b600080fd5b34801561013b57600080fd5b5061014f61014a3660046115ee565b6103fc565b60405190151581526020015b60405180910390f35b34801561017057600080fd5b5061017961044e565b60405161015b91906117da565b34801561019257600080fd5b506101a66101a1366004611671565b6104e0565b6040516001600160a01b03909116815260200161015b565b3480156101ca57600080fd5b506101de6101d93660046115c4565b61057a565b005b3480156101ec57600080fd5b506101f5610690565b60405190815260200161015b565b34801561020f57600080fd5b506101de61021e3660046114d0565b6106a0565b6101de6106d1565b34801561023757600080fd5b506101de6102463660046114d0565b610721565b34801561025757600080fd5b506101de610266366004611628565b61073c565b34801561027757600080fd5b506101a6610286366004611671565b61077d565b34801561029757600080fd5b506101f56102a636600461147b565b6107f4565b3480156102b757600080fd5b506101de61087b565b3480156102cc57600080fd5b506006546001600160a01b03166101a6565b3480156102ea57600080fd5b506101796108af565b3480156102ff57600080fd5b506101de61030e366004611588565b6108be565b34801561031f57600080fd5b506101de61032e36600461150c565b6108c9565b34801561033f57600080fd5b506101de61034e366004611628565b610901565b34801561035f57600080fd5b5061017961036e366004611671565b61093e565b34801561037f57600080fd5b506101de61038e36600461168a565b6109f8565b34801561039f57600080fd5b5061014f6103ae36600461149d565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b3480156103e857600080fd5b506101de6103f736600461147b565b610a7f565b60006001600160e01b031982166380ac58cd60e01b148061042d57506001600160e01b03198216635b5e139f60e01b145b8061044857506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606000805461045d90611934565b80601f016020809104026020016040519081016040528092919081815260200182805461048990611934565b80156104d65780601f106104ab576101008083540402835291602001916104d6565b820191906000526020600020905b8154815290600101906020018083116104b957829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b031661055e5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b60006105858261077d565b9050806001600160a01b0316836001600160a01b031614156105f35760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610555565b336001600160a01b038216148061060f575061060f81336103ae565b6106815760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610555565b61068b8383610b1a565b505050565b600061069b60095490565b905090565b6106aa3382610b88565b6106c65760405162461bcd60e51b815260040161055590611874565b61068b838383610c7f565b6006546001600160a01b031633146106fb5760405162461bcd60e51b81526004016105559061183f565b60405133904780156108fc02916000818181858888f1935050505061071f57600080fd5b565b61068b838383604051806020016040528060008152506108c9565b6006546001600160a01b031633146107665760405162461bcd60e51b81526004016105559061183f565b8051610779906007906020840190611350565b5050565b6000818152600260205260408120546001600160a01b0316806104485760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610555565b60006001600160a01b03821661085f5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610555565b506001600160a01b031660009081526003602052604090205490565b6006546001600160a01b031633146108a55760405162461bcd60e51b81526004016105559061183f565b61071f6000610e1b565b60606001805461045d90611934565b610779338383610e6d565b6108d33383610b88565b6108ef5760405162461bcd60e51b815260040161055590611874565b6108fb84848484610f3c565b50505050565b6006546001600160a01b0316331461092b5760405162461bcd60e51b81526004016105559061183f565b8051610779906008906020840190611350565b6000818152600260205260409020546060906001600160a01b03166109bd5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610555565b6109c5610f6f565b6109ce83610f7e565b60086040516020016109e2939291906116d9565b6040516020818303038152906040529050919050565b6006546001600160a01b03163314610a225760405162461bcd60e51b81526004016105559061183f565b61014d610a2e60095490565b610a3890846118c5565b1115610a755760405162461bcd60e51b815260206004820152600c60248201526b4e6f206d6f7265204e46547360a01b6044820152606401610555565b610779818361107c565b6006546001600160a01b03163314610aa95760405162461bcd60e51b81526004016105559061183f565b6001600160a01b038116610b0e5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610555565b610b1781610e1b565b50565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190610b4f8261077d565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b0316610c015760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610555565b6000610c0c8361077d565b9050806001600160a01b0316846001600160a01b03161480610c5357506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b80610c775750836001600160a01b0316610c6c846104e0565b6001600160a01b0316145b949350505050565b826001600160a01b0316610c928261077d565b6001600160a01b031614610cf65760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201526437bbb732b960d91b6064820152608401610555565b6001600160a01b038216610d585760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610555565b610d63600082610b1a565b6001600160a01b0383166000908152600360205260408120805460019290610d8c9084906118f1565b90915550506001600160a01b0382166000908152600360205260408120805460019290610dba9084906118c5565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b03161415610ecf5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610555565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b610f47848484610c7f565b610f53848484846110b9565b6108fb5760405162461bcd60e51b8152600401610555906117ed565b60606007805461045d90611934565b606081610fa25750506040805180820190915260018152600360fc1b602082015290565b8160005b8115610fcc5780610fb68161196f565b9150610fc59050600a836118dd565b9150610fa6565b60008167ffffffffffffffff811115610fe757610fe76119e0565b6040519080825280601f01601f191660200182016040528015611011576020820181803683370190505b5090505b8415610c77576110266001836118f1565b9150611033600a8661198a565b61103e9060306118c5565b60f81b818381518110611053576110536119ca565b60200101906001600160f81b031916908160001a905350611075600a866118dd565b9450611015565b60005b8181101561068b57611095600980546001019055565b6110a7836110a260095490565b6111c6565b806110b18161196f565b91505061107f565b60006001600160a01b0384163b156111bb57604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906110fd90339089908890889060040161179d565b602060405180830381600087803b15801561111757600080fd5b505af1925050508015611147575060408051601f3d908101601f191682019092526111449181019061160b565b60015b6111a1573d808015611175576040519150601f19603f3d011682016040523d82523d6000602084013e61117a565b606091505b5080516111995760405162461bcd60e51b8152600401610555906117ed565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050610c77565b506001949350505050565b6107798282604051806020016040528060008152506111e5838361120e565b6111f260008484846110b9565b61068b5760405162461bcd60e51b8152600401610555906117ed565b6001600160a01b0382166112645760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610555565b6000818152600260205260409020546001600160a01b0316156112c95760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610555565b6001600160a01b03821660009081526003602052604081208054600192906112f29084906118c5565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b82805461135c90611934565b90600052602060002090601f01602090048101928261137e57600085556113c4565b82601f1061139757805160ff19168380011785556113c4565b828001600101855582156113c4579182015b828111156113c45782518255916020019190600101906113a9565b506113d09291506113d4565b5090565b5b808211156113d057600081556001016113d5565b600067ffffffffffffffff80841115611404576114046119e0565b604051601f8501601f19908116603f0116810190828211818310171561142c5761142c6119e0565b8160405280935085815286868601111561144557600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b038116811461147657600080fd5b919050565b60006020828403121561148d57600080fd5b6114968261145f565b9392505050565b600080604083850312156114b057600080fd5b6114b98361145f565b91506114c76020840161145f565b90509250929050565b6000806000606084860312156114e557600080fd5b6114ee8461145f565b92506114fc6020850161145f565b9150604084013590509250925092565b6000806000806080858703121561152257600080fd5b61152b8561145f565b93506115396020860161145f565b925060408501359150606085013567ffffffffffffffff81111561155c57600080fd5b8501601f8101871361156d57600080fd5b61157c878235602084016113e9565b91505092959194509250565b6000806040838503121561159b57600080fd5b6115a48361145f565b9150602083013580151581146115b957600080fd5b809150509250929050565b600080604083850312156115d757600080fd5b6115e08361145f565b946020939093013593505050565b60006020828403121561160057600080fd5b8135611496816119f6565b60006020828403121561161d57600080fd5b8151611496816119f6565b60006020828403121561163a57600080fd5b813567ffffffffffffffff81111561165157600080fd5b8201601f8101841361166257600080fd5b610c77848235602084016113e9565b60006020828403121561168357600080fd5b5035919050565b6000806040838503121561169d57600080fd5b823591506114c76020840161145f565b600081518084526116c5816020860160208601611908565b601f01601f19169290920160200192915050565b6000845160206116ec8285838a01611908565b8551918401916116ff8184848a01611908565b8554920191600090600181811c908083168061171c57607f831692505b85831081141561173a57634e487b7160e01b85526022600452602485fd5b80801561174e576001811461175f5761178c565b60ff1985168852838801955061178c565b60008b81526020902060005b858110156117845781548a82015290840190880161176b565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906117d0908301846116ad565b9695505050505050565b60208152600061149660208301846116ad565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b600082198211156118d8576118d861199e565b500190565b6000826118ec576118ec6119b4565b500490565b6000828210156119035761190361199e565b500390565b60005b8381101561192357818101518382015260200161190b565b838111156108fb5750506000910152565b600181811c9082168061194857607f821691505b6020821081141561196957634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156119835761198361199e565b5060010190565b600082611999576119996119b4565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610b1757600080fdfea26469706673582212202cef98970e51ca30d93f2f32473290aec3cb9ba64d07b284013718645e7332fd64736f6c63430008070033

Deployed Bytecode

0x60806040526004361061012a5760003560e01c806370a08231116100ab578063b88d4fde1161006f578063b88d4fde14610313578063bfac44ee14610333578063c87b56dd14610353578063d52c57e014610373578063e985e9c514610393578063f2fde38b146103dc57600080fd5b806370a082311461028b578063715018a6146102ab5780638da5cb5b146102c057806395d89b41146102de578063a22cb465146102f357600080fd5b806323b872dd116100f257806323b872dd146102035780633ccfd60b1461022357806342842e0e1461022b57806355f804b31461024b5780636352211e1461026b57600080fd5b806301ffc9a71461012f57806306fdde0314610164578063081812fc14610186578063095ea7b3146101be57806318160ddd146101e0575b600080fd5b34801561013b57600080fd5b5061014f61014a3660046115ee565b6103fc565b60405190151581526020015b60405180910390f35b34801561017057600080fd5b5061017961044e565b60405161015b91906117da565b34801561019257600080fd5b506101a66101a1366004611671565b6104e0565b6040516001600160a01b03909116815260200161015b565b3480156101ca57600080fd5b506101de6101d93660046115c4565b61057a565b005b3480156101ec57600080fd5b506101f5610690565b60405190815260200161015b565b34801561020f57600080fd5b506101de61021e3660046114d0565b6106a0565b6101de6106d1565b34801561023757600080fd5b506101de6102463660046114d0565b610721565b34801561025757600080fd5b506101de610266366004611628565b61073c565b34801561027757600080fd5b506101a6610286366004611671565b61077d565b34801561029757600080fd5b506101f56102a636600461147b565b6107f4565b3480156102b757600080fd5b506101de61087b565b3480156102cc57600080fd5b506006546001600160a01b03166101a6565b3480156102ea57600080fd5b506101796108af565b3480156102ff57600080fd5b506101de61030e366004611588565b6108be565b34801561031f57600080fd5b506101de61032e36600461150c565b6108c9565b34801561033f57600080fd5b506101de61034e366004611628565b610901565b34801561035f57600080fd5b5061017961036e366004611671565b61093e565b34801561037f57600080fd5b506101de61038e36600461168a565b6109f8565b34801561039f57600080fd5b5061014f6103ae36600461149d565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b3480156103e857600080fd5b506101de6103f736600461147b565b610a7f565b60006001600160e01b031982166380ac58cd60e01b148061042d57506001600160e01b03198216635b5e139f60e01b145b8061044857506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606000805461045d90611934565b80601f016020809104026020016040519081016040528092919081815260200182805461048990611934565b80156104d65780601f106104ab576101008083540402835291602001916104d6565b820191906000526020600020905b8154815290600101906020018083116104b957829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b031661055e5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b60006105858261077d565b9050806001600160a01b0316836001600160a01b031614156105f35760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610555565b336001600160a01b038216148061060f575061060f81336103ae565b6106815760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610555565b61068b8383610b1a565b505050565b600061069b60095490565b905090565b6106aa3382610b88565b6106c65760405162461bcd60e51b815260040161055590611874565b61068b838383610c7f565b6006546001600160a01b031633146106fb5760405162461bcd60e51b81526004016105559061183f565b60405133904780156108fc02916000818181858888f1935050505061071f57600080fd5b565b61068b838383604051806020016040528060008152506108c9565b6006546001600160a01b031633146107665760405162461bcd60e51b81526004016105559061183f565b8051610779906007906020840190611350565b5050565b6000818152600260205260408120546001600160a01b0316806104485760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610555565b60006001600160a01b03821661085f5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610555565b506001600160a01b031660009081526003602052604090205490565b6006546001600160a01b031633146108a55760405162461bcd60e51b81526004016105559061183f565b61071f6000610e1b565b60606001805461045d90611934565b610779338383610e6d565b6108d33383610b88565b6108ef5760405162461bcd60e51b815260040161055590611874565b6108fb84848484610f3c565b50505050565b6006546001600160a01b0316331461092b5760405162461bcd60e51b81526004016105559061183f565b8051610779906008906020840190611350565b6000818152600260205260409020546060906001600160a01b03166109bd5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610555565b6109c5610f6f565b6109ce83610f7e565b60086040516020016109e2939291906116d9565b6040516020818303038152906040529050919050565b6006546001600160a01b03163314610a225760405162461bcd60e51b81526004016105559061183f565b61014d610a2e60095490565b610a3890846118c5565b1115610a755760405162461bcd60e51b815260206004820152600c60248201526b4e6f206d6f7265204e46547360a01b6044820152606401610555565b610779818361107c565b6006546001600160a01b03163314610aa95760405162461bcd60e51b81526004016105559061183f565b6001600160a01b038116610b0e5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610555565b610b1781610e1b565b50565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190610b4f8261077d565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b0316610c015760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610555565b6000610c0c8361077d565b9050806001600160a01b0316846001600160a01b03161480610c5357506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b80610c775750836001600160a01b0316610c6c846104e0565b6001600160a01b0316145b949350505050565b826001600160a01b0316610c928261077d565b6001600160a01b031614610cf65760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201526437bbb732b960d91b6064820152608401610555565b6001600160a01b038216610d585760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610555565b610d63600082610b1a565b6001600160a01b0383166000908152600360205260408120805460019290610d8c9084906118f1565b90915550506001600160a01b0382166000908152600360205260408120805460019290610dba9084906118c5565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b03161415610ecf5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610555565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b610f47848484610c7f565b610f53848484846110b9565b6108fb5760405162461bcd60e51b8152600401610555906117ed565b60606007805461045d90611934565b606081610fa25750506040805180820190915260018152600360fc1b602082015290565b8160005b8115610fcc5780610fb68161196f565b9150610fc59050600a836118dd565b9150610fa6565b60008167ffffffffffffffff811115610fe757610fe76119e0565b6040519080825280601f01601f191660200182016040528015611011576020820181803683370190505b5090505b8415610c77576110266001836118f1565b9150611033600a8661198a565b61103e9060306118c5565b60f81b818381518110611053576110536119ca565b60200101906001600160f81b031916908160001a905350611075600a866118dd565b9450611015565b60005b8181101561068b57611095600980546001019055565b6110a7836110a260095490565b6111c6565b806110b18161196f565b91505061107f565b60006001600160a01b0384163b156111bb57604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906110fd90339089908890889060040161179d565b602060405180830381600087803b15801561111757600080fd5b505af1925050508015611147575060408051601f3d908101601f191682019092526111449181019061160b565b60015b6111a1573d808015611175576040519150601f19603f3d011682016040523d82523d6000602084013e61117a565b606091505b5080516111995760405162461bcd60e51b8152600401610555906117ed565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050610c77565b506001949350505050565b6107798282604051806020016040528060008152506111e5838361120e565b6111f260008484846110b9565b61068b5760405162461bcd60e51b8152600401610555906117ed565b6001600160a01b0382166112645760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610555565b6000818152600260205260409020546001600160a01b0316156112c95760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610555565b6001600160a01b03821660009081526003602052604081208054600192906112f29084906118c5565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b82805461135c90611934565b90600052602060002090601f01602090048101928261137e57600085556113c4565b82601f1061139757805160ff19168380011785556113c4565b828001600101855582156113c4579182015b828111156113c45782518255916020019190600101906113a9565b506113d09291506113d4565b5090565b5b808211156113d057600081556001016113d5565b600067ffffffffffffffff80841115611404576114046119e0565b604051601f8501601f19908116603f0116810190828211818310171561142c5761142c6119e0565b8160405280935085815286868601111561144557600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b038116811461147657600080fd5b919050565b60006020828403121561148d57600080fd5b6114968261145f565b9392505050565b600080604083850312156114b057600080fd5b6114b98361145f565b91506114c76020840161145f565b90509250929050565b6000806000606084860312156114e557600080fd5b6114ee8461145f565b92506114fc6020850161145f565b9150604084013590509250925092565b6000806000806080858703121561152257600080fd5b61152b8561145f565b93506115396020860161145f565b925060408501359150606085013567ffffffffffffffff81111561155c57600080fd5b8501601f8101871361156d57600080fd5b61157c878235602084016113e9565b91505092959194509250565b6000806040838503121561159b57600080fd5b6115a48361145f565b9150602083013580151581146115b957600080fd5b809150509250929050565b600080604083850312156115d757600080fd5b6115e08361145f565b946020939093013593505050565b60006020828403121561160057600080fd5b8135611496816119f6565b60006020828403121561161d57600080fd5b8151611496816119f6565b60006020828403121561163a57600080fd5b813567ffffffffffffffff81111561165157600080fd5b8201601f8101841361166257600080fd5b610c77848235602084016113e9565b60006020828403121561168357600080fd5b5035919050565b6000806040838503121561169d57600080fd5b823591506114c76020840161145f565b600081518084526116c5816020860160208601611908565b601f01601f19169290920160200192915050565b6000845160206116ec8285838a01611908565b8551918401916116ff8184848a01611908565b8554920191600090600181811c908083168061171c57607f831692505b85831081141561173a57634e487b7160e01b85526022600452602485fd5b80801561174e576001811461175f5761178c565b60ff1985168852838801955061178c565b60008b81526020902060005b858110156117845781548a82015290840190880161176b565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906117d0908301846116ad565b9695505050505050565b60208152600061149660208301846116ad565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b600082198211156118d8576118d861199e565b500190565b6000826118ec576118ec6119b4565b500490565b6000828210156119035761190361199e565b500390565b60005b8381101561192357818101518382015260200161190b565b838111156108fb5750506000910152565b600181811c9082168061194857607f821691505b6020821081141561196957634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156119835761198361199e565b5060010190565b600082611999576119996119b4565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610b1757600080fdfea26469706673582212202cef98970e51ca30d93f2f32473290aec3cb9ba64d07b284013718645e7332fd64736f6c63430008070033

Deployed Bytecode Sourcemap

38794:1656:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25652:305;;;;;;;;;;-1:-1:-1;25652:305:0;;;;;:::i;:::-;;:::i;:::-;;;6962:14:1;;6955:22;6937:41;;6925:2;6910:18;25652:305:0;;;;;;;;26597:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;28157:221::-;;;;;;;;;;-1:-1:-1;28157:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;6260:32:1;;;6242:51;;6230:2;6215:18;28157:221:0;6096:203:1;27680:411:0;;;;;;;;;;-1:-1:-1;27680:411:0;;;;;:::i;:::-;;:::i;:::-;;39493:95;;;;;;;;;;;;;:::i;:::-;;;14078:25:1;;;14066:2;14051:18;39493:95:0;13932:177:1;28907:339:0;;;;;;;;;;-1:-1:-1;28907:339:0;;;;;:::i;:::-;;:::i;40000:120::-;;;:::i;29317:185::-;;;;;;;;;;-1:-1:-1;29317:185:0;;;;;:::i;:::-;;:::i;39274:95::-;;;;;;;;;;-1:-1:-1;39274:95:0;;;;;:::i;:::-;;:::i;26291:239::-;;;;;;;;;;-1:-1:-1;26291:239:0;;;;;:::i;:::-;;:::i;26021:208::-;;;;;;;;;;-1:-1:-1;26021:208:0;;;;;:::i;:::-;;:::i;6235:103::-;;;;;;;;;;;;;:::i;5584:87::-;;;;;;;;;;-1:-1:-1;5657:6:0;;-1:-1:-1;;;;;5657:6:0;5584:87;;26766:104;;;;;;;;;;;;;:::i;28450:155::-;;;;;;;;;;-1:-1:-1;28450:155:0;;;;;:::i;:::-;;:::i;29573:328::-;;;;;;;;;;-1:-1:-1;29573:328:0;;;;;:::i;:::-;;:::i;39377:108::-;;;;;;;;;;-1:-1:-1;39377:108:0;;;;;:::i;:::-;;:::i;39704:288::-;;;;;;;;;;-1:-1:-1;39704:288:0;;;;;:::i;:::-;;:::i;39073:193::-;;;;;;;;;;-1:-1:-1;39073:193:0;;;;;:::i;:::-;;:::i;28676:164::-;;;;;;;;;;-1:-1:-1;28676:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;28797:25:0;;;28773:4;28797:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;28676:164;6493:201;;;;;;;;;;-1:-1:-1;6493:201:0;;;;;:::i;:::-;;:::i;25652:305::-;25754:4;-1:-1:-1;;;;;;25791:40:0;;-1:-1:-1;;;25791:40:0;;:105;;-1:-1:-1;;;;;;;25848:48:0;;-1:-1:-1;;;25848:48:0;25791:105;:158;;;-1:-1:-1;;;;;;;;;;18500:40:0;;;25913:36;25771:178;25652:305;-1:-1:-1;;25652:305:0:o;26597:100::-;26651:13;26684:5;26677:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26597:100;:::o;28157:221::-;28233:7;31500:16;;;:7;:16;;;;;;-1:-1:-1;;;;;31500:16:0;28253:73;;;;-1:-1:-1;;;28253:73:0;;11783:2:1;28253:73:0;;;11765:21:1;11822:2;11802:18;;;11795:30;11861:34;11841:18;;;11834:62;-1:-1:-1;;;11912:18:1;;;11905:42;11964:19;;28253:73:0;;;;;;;;;-1:-1:-1;28346:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;28346:24:0;;28157:221::o;27680:411::-;27761:13;27777:23;27792:7;27777:14;:23::i;:::-;27761:39;;27825:5;-1:-1:-1;;;;;27819:11:0;:2;-1:-1:-1;;;;;27819:11:0;;;27811:57;;;;-1:-1:-1;;;27811:57:0;;12973:2:1;27811:57:0;;;12955:21:1;13012:2;12992:18;;;12985:30;13051:34;13031:18;;;13024:62;-1:-1:-1;;;13102:18:1;;;13095:31;13143:19;;27811:57:0;12771:397:1;27811:57:0;4388:10;-1:-1:-1;;;;;27903:21:0;;;;:62;;-1:-1:-1;27928:37:0;27945:5;4388:10;28676:164;:::i;27928:37::-;27881:168;;;;-1:-1:-1;;;27881:168:0;;10176:2:1;27881:168:0;;;10158:21:1;10215:2;10195:18;;;10188:30;10254:34;10234:18;;;10227:62;10325:26;10305:18;;;10298:54;10369:19;;27881:168:0;9974:420:1;27881:168:0;28062:21;28071:2;28075:7;28062:8;:21::i;:::-;27750:341;27680:411;;:::o;39493:95::-;39537:7;39564:16;:6;1006:14;;914:114;39564:16;39557:23;;39493:95;:::o;28907:339::-;29102:41;4388:10;29135:7;29102:18;:41::i;:::-;29094:103;;;;-1:-1:-1;;;29094:103:0;;;;;;;:::i;:::-;29210:28;29220:4;29226:2;29230:7;29210:9;:28::i;40000:120::-;5657:6;;-1:-1:-1;;;;;5657:6:0;4388:10;5804:23;5796:68;;;;-1:-1:-1;;;5796:68:0;;;;;;;:::i;:::-;40064:47:::1;::::0;40072:10:::1;::::0;40089:21:::1;40064:47:::0;::::1;;;::::0;::::1;::::0;;;40089:21;40072:10;40064:47;::::1;;;;;;40056:56;;;::::0;::::1;;40000:120::o:0;29317:185::-;29455:39;29472:4;29478:2;29482:7;29455:39;;;;;;;;;;;;:16;:39::i;39274:95::-;5657:6;;-1:-1:-1;;;;;5657:6:0;4388:10;5804:23;5796:68;;;;-1:-1:-1;;;5796:68:0;;;;;;;:::i;:::-;39342:19;;::::1;::::0;:12:::1;::::0;:19:::1;::::0;::::1;::::0;::::1;:::i;:::-;;39274:95:::0;:::o;26291:239::-;26363:7;26399:16;;;:7;:16;;;;;;-1:-1:-1;;;;;26399:16:0;26434:19;26426:73;;;;-1:-1:-1;;;26426:73:0;;11012:2:1;26426:73:0;;;10994:21:1;11051:2;11031:18;;;11024:30;11090:34;11070:18;;;11063:62;-1:-1:-1;;;11141:18:1;;;11134:39;11190:19;;26426:73:0;10810:405:1;26021:208:0;26093:7;-1:-1:-1;;;;;26121:19:0;;26113:74;;;;-1:-1:-1;;;26113:74:0;;10601:2:1;26113:74:0;;;10583:21:1;10640:2;10620:18;;;10613:30;10679:34;10659:18;;;10652:62;-1:-1:-1;;;10730:18:1;;;10723:40;10780:19;;26113:74:0;10399:406:1;26113:74:0;-1:-1:-1;;;;;;26205:16:0;;;;;:9;:16;;;;;;;26021:208::o;6235:103::-;5657:6;;-1:-1:-1;;;;;5657:6:0;4388:10;5804:23;5796:68;;;;-1:-1:-1;;;5796:68:0;;;;;;;:::i;:::-;6300:30:::1;6327:1;6300:18;:30::i;26766:104::-:0;26822:13;26855:7;26848:14;;;;;:::i;28450:155::-;28545:52;4388:10;28578:8;28588;28545:18;:52::i;29573:328::-;29748:41;4388:10;29781:7;29748:18;:41::i;:::-;29740:103;;;;-1:-1:-1;;;29740:103:0;;;;;;;:::i;:::-;29854:39;29868:4;29874:2;29878:7;29887:5;29854:13;:39::i;:::-;29573:328;;;;:::o;39377:108::-;5657:6;;-1:-1:-1;;;;;5657:6:0;4388:10;5804:23;5796:68;;;;-1:-1:-1;;;5796:68:0;;;;;;;:::i;:::-;39454:23;;::::1;::::0;:16:::1;::::0;:23:::1;::::0;::::1;::::0;::::1;:::i;39704:288::-:0;31476:4;31500:16;;;:7;:16;;;;;;39777:13;;-1:-1:-1;;;;;31500:16:0;39803:76;;;;-1:-1:-1;;;39803:76:0;;12557:2:1;39803:76:0;;;12539:21:1;12596:2;12576:18;;;12569:30;12635:34;12615:18;;;12608:62;-1:-1:-1;;;12686:18:1;;;12679:45;12741:19;;39803:76:0;12355:411:1;39803:76:0;39921:16;:14;:16::i;:::-;39939:25;39956:7;39939:16;:25::i;:::-;39966:16;39904:79;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;39890:94;;39704:288;;;:::o;39073:193::-;5657:6;;-1:-1:-1;;;;;5657:6:0;4388:10;5804:23;5796:68;;;;-1:-1:-1;;;5796:68:0;;;;;;;:::i;:::-;39196:3:::1;39175:16;:6;1006:14:::0;;914:114;39175:16:::1;39165:26;::::0;:7;:26:::1;:::i;:::-;39164:35;;39156:60;;;::::0;-1:-1:-1;;;39156:60:0;;13375:2:1;39156:60:0::1;::::0;::::1;13357:21:1::0;13414:2;13394:18;;;13387:30;-1:-1:-1;;;13433:18:1;;;13426:42;13485:18;;39156:60:0::1;13173:336:1::0;39156:60:0::1;39227:31;39240:8;39250:7;39227:12;:31::i;6493:201::-:0;5657:6;;-1:-1:-1;;;;;5657:6:0;4388:10;5804:23;5796:68;;;;-1:-1:-1;;;5796:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;6582:22:0;::::1;6574:73;;;::::0;-1:-1:-1;;;6574:73:0;;7834:2:1;6574:73:0::1;::::0;::::1;7816:21:1::0;7873:2;7853:18;;;7846:30;7912:34;7892:18;;;7885:62;-1:-1:-1;;;7963:18:1;;;7956:36;8009:19;;6574:73:0::1;7632:402:1::0;6574:73:0::1;6658:28;6677:8;6658:18;:28::i;:::-;6493:201:::0;:::o;35557:174::-;35632:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;35632:29:0;-1:-1:-1;;;;;35632:29:0;;;;;;;;:24;;35686:23;35632:24;35686:14;:23::i;:::-;-1:-1:-1;;;;;35677:46:0;;;;;;;;;;;35557:174;;:::o;31705:348::-;31798:4;31500:16;;;:7;:16;;;;;;-1:-1:-1;;;;;31500:16:0;31815:73;;;;-1:-1:-1;;;31815:73:0;;9763:2:1;31815:73:0;;;9745:21:1;9802:2;9782:18;;;9775:30;9841:34;9821:18;;;9814:62;-1:-1:-1;;;9892:18:1;;;9885:42;9944:19;;31815:73:0;9561:408:1;31815:73:0;31899:13;31915:23;31930:7;31915:14;:23::i;:::-;31899:39;;31968:5;-1:-1:-1;;;;;31957:16:0;:7;-1:-1:-1;;;;;31957:16:0;;:52;;;-1:-1:-1;;;;;;28797:25:0;;;28773:4;28797:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;31977:32;31957:87;;;;32037:7;-1:-1:-1;;;;;32013:31:0;:20;32025:7;32013:11;:20::i;:::-;-1:-1:-1;;;;;32013:31:0;;31957:87;31949:96;31705:348;-1:-1:-1;;;;31705:348:0:o;34814:625::-;34973:4;-1:-1:-1;;;;;34946:31:0;:23;34961:7;34946:14;:23::i;:::-;-1:-1:-1;;;;;34946:31:0;;34938:81;;;;-1:-1:-1;;;34938:81:0;;8241:2:1;34938:81:0;;;8223:21:1;8280:2;8260:18;;;8253:30;8319:34;8299:18;;;8292:62;-1:-1:-1;;;8370:18:1;;;8363:35;8415:19;;34938:81:0;8039:401:1;34938:81:0;-1:-1:-1;;;;;35038:16:0;;35030:65;;;;-1:-1:-1;;;35030:65:0;;9004:2:1;35030:65:0;;;8986:21:1;9043:2;9023:18;;;9016:30;9082:34;9062:18;;;9055:62;-1:-1:-1;;;9133:18:1;;;9126:34;9177:19;;35030:65:0;8802:400:1;35030:65:0;35212:29;35229:1;35233:7;35212:8;:29::i;:::-;-1:-1:-1;;;;;35254:15:0;;;;;;:9;:15;;;;;:20;;35273:1;;35254:15;:20;;35273:1;;35254:20;:::i;:::-;;;;-1:-1:-1;;;;;;;35285:13:0;;;;;;:9;:13;;;;;:18;;35302:1;;35285:13;:18;;35302:1;;35285:18;:::i;:::-;;;;-1:-1:-1;;35314:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;35314:21:0;-1:-1:-1;;;;;35314:21:0;;;;;;;;;35353:27;;35314:16;;35353:27;;;;;;;27750:341;27680:411;;:::o;6854:191::-;6947:6;;;-1:-1:-1;;;;;6964:17:0;;;-1:-1:-1;;;;;;6964:17:0;;;;;;;6997:40;;6947:6;;;6964:17;6947:6;;6997:40;;6928:16;;6997:40;6917:128;6854:191;:::o;35873:315::-;36028:8;-1:-1:-1;;;;;36019:17:0;:5;-1:-1:-1;;;;;36019:17:0;;;36011:55;;;;-1:-1:-1;;;36011:55:0;;9409:2:1;36011:55:0;;;9391:21:1;9448:2;9428:18;;;9421:30;9487:27;9467:18;;;9460:55;9532:18;;36011:55:0;9207:349:1;36011:55:0;-1:-1:-1;;;;;36077:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;36077:46:0;;;;;;;;;;36139:41;;6937::1;;;36139::0;;6910:18:1;36139:41:0;;;;;;;35873:315;;;:::o;30783:::-;30940:28;30950:4;30956:2;30960:7;30940:9;:28::i;:::-;30987:48;31010:4;31016:2;31020:7;31029:5;30987:22;:48::i;:::-;30979:111;;;;-1:-1:-1;;;30979:111:0;;;;;;;:::i;39596:100::-;39644:13;39676:12;39669:19;;;;;:::i;1870:723::-;1926:13;2147:10;2143:53;;-1:-1:-1;;2174:10:0;;;;;;;;;;;;-1:-1:-1;;;2174:10:0;;;;;1870:723::o;2143:53::-;2221:5;2206:12;2262:78;2269:9;;2262:78;;2295:8;;;;:::i;:::-;;-1:-1:-1;2318:10:0;;-1:-1:-1;2326:2:0;2318:10;;:::i;:::-;;;2262:78;;;2350:19;2382:6;2372:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;2372:17:0;;2350:39;;2400:154;2407:10;;2400:154;;2434:11;2444:1;2434:11;;:::i;:::-;;-1:-1:-1;2503:10:0;2511:2;2503:5;:10;:::i;:::-;2490:24;;:2;:24;:::i;:::-;2477:39;;2460:6;2467;2460:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;2460:56:0;;;;;;;;-1:-1:-1;2531:11:0;2540:2;2531:11;;:::i;:::-;;;2400:154;;40232:215;40314:9;40309:131;40333:7;40329:1;:11;40309:131;;;40360:18;:6;1125:19;;1143:1;1125:19;;;1036:127;40360:18;40391:37;40401:8;40411:16;:6;1006:14;;914:114;40411:16;40391:9;:37::i;:::-;40342:3;;;;:::i;:::-;;;;40309:131;;36753:799;36908:4;-1:-1:-1;;;;;36929:13:0;;8580:19;:23;36925:620;;36965:72;;-1:-1:-1;;;36965:72:0;;-1:-1:-1;;;;;36965:36:0;;;;;:72;;4388:10;;37016:4;;37022:7;;37031:5;;36965:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;36965:72:0;;;;;;;;-1:-1:-1;;36965:72:0;;;;;;;;;;;;:::i;:::-;;;36961:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;37207:13:0;;37203:272;;37250:60;;-1:-1:-1;;;37250:60:0;;;;;;;:::i;37203:272::-;37425:6;37419:13;37410:6;37406:2;37402:15;37395:38;36961:529;-1:-1:-1;;;;;;37088:51:0;-1:-1:-1;;;37088:51:0;;-1:-1:-1;37081:58:0;;36925:620;-1:-1:-1;37529:4:0;36753:799;;;;;;:::o;32395:110::-;32471:26;32481:2;32485:7;32471:26;;;;;;;;;;;;32862:18;32868:2;32872:7;32862:5;:18::i;:::-;32913:54;32944:1;32948:2;32952:7;32961:5;32913:22;:54::i;:::-;32891:154;;;;-1:-1:-1;;;32891:154:0;;;;;;;:::i;33389:439::-;-1:-1:-1;;;;;33469:16:0;;33461:61;;;;-1:-1:-1;;;33461:61:0;;11422:2:1;33461:61:0;;;11404:21:1;;;11441:18;;;11434:30;11500:34;11480:18;;;11473:62;11552:18;;33461:61:0;11220:356:1;33461:61:0;31476:4;31500:16;;;:7;:16;;;;;;-1:-1:-1;;;;;31500:16:0;:30;33533:58;;;;-1:-1:-1;;;33533:58:0;;8647:2:1;33533:58:0;;;8629:21:1;8686:2;8666:18;;;8659:30;8725;8705:18;;;8698:58;8773:18;;33533:58:0;8445:352:1;33533:58:0;-1:-1:-1;;;;;33662:13:0;;;;;;:9;:13;;;;;:18;;33679:1;;33662:13;:18;;33679:1;;33662:18;:::i;:::-;;;;-1:-1:-1;;33691:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;33691:21:0;-1:-1:-1;;;;;33691:21:0;;;;;;;;33730:33;;33691:16;;;33730:33;;33691:16;;33730:33;39342:19:::1;39274:95:::0;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:631:1;78:5;108:18;149:2;141:6;138:14;135:40;;;155:18;;:::i;:::-;230:2;224:9;198:2;284:15;;-1:-1:-1;;280:24:1;;;306:2;276:33;272:42;260:55;;;330:18;;;350:22;;;327:46;324:72;;;376:18;;:::i;:::-;416:10;412:2;405:22;445:6;436:15;;475:6;467;460:22;515:3;506:6;501:3;497:16;494:25;491:45;;;532:1;529;522:12;491:45;582:6;577:3;570:4;562:6;558:17;545:44;637:1;630:4;621:6;613;609:19;605:30;598:41;;;;14:631;;;;;:::o;650:173::-;718:20;;-1:-1:-1;;;;;767:31:1;;757:42;;747:70;;813:1;810;803:12;747:70;650:173;;;:::o;828:186::-;887:6;940:2;928:9;919:7;915:23;911:32;908:52;;;956:1;953;946:12;908:52;979:29;998:9;979:29;:::i;:::-;969:39;828:186;-1:-1:-1;;;828:186:1:o;1019:260::-;1087:6;1095;1148:2;1136:9;1127:7;1123:23;1119:32;1116:52;;;1164:1;1161;1154:12;1116:52;1187:29;1206:9;1187:29;:::i;:::-;1177:39;;1235:38;1269:2;1258:9;1254:18;1235:38;:::i;:::-;1225:48;;1019:260;;;;;:::o;1284:328::-;1361:6;1369;1377;1430:2;1418:9;1409:7;1405:23;1401:32;1398:52;;;1446:1;1443;1436:12;1398:52;1469:29;1488:9;1469:29;:::i;:::-;1459:39;;1517:38;1551:2;1540:9;1536:18;1517:38;:::i;:::-;1507:48;;1602:2;1591:9;1587:18;1574:32;1564:42;;1284:328;;;;;:::o;1617:666::-;1712:6;1720;1728;1736;1789:3;1777:9;1768:7;1764:23;1760:33;1757:53;;;1806:1;1803;1796:12;1757:53;1829:29;1848:9;1829:29;:::i;:::-;1819:39;;1877:38;1911:2;1900:9;1896:18;1877:38;:::i;:::-;1867:48;;1962:2;1951:9;1947:18;1934:32;1924:42;;2017:2;2006:9;2002:18;1989:32;2044:18;2036:6;2033:30;2030:50;;;2076:1;2073;2066:12;2030:50;2099:22;;2152:4;2144:13;;2140:27;-1:-1:-1;2130:55:1;;2181:1;2178;2171:12;2130:55;2204:73;2269:7;2264:2;2251:16;2246:2;2242;2238:11;2204:73;:::i;:::-;2194:83;;;1617:666;;;;;;;:::o;2288:347::-;2353:6;2361;2414:2;2402:9;2393:7;2389:23;2385:32;2382:52;;;2430:1;2427;2420:12;2382:52;2453:29;2472:9;2453:29;:::i;:::-;2443:39;;2532:2;2521:9;2517:18;2504:32;2579:5;2572:13;2565:21;2558:5;2555:32;2545:60;;2601:1;2598;2591:12;2545:60;2624:5;2614:15;;;2288:347;;;;;:::o;2640:254::-;2708:6;2716;2769:2;2757:9;2748:7;2744:23;2740:32;2737:52;;;2785:1;2782;2775:12;2737:52;2808:29;2827:9;2808:29;:::i;:::-;2798:39;2884:2;2869:18;;;;2856:32;;-1:-1:-1;;;2640:254:1:o;2899:245::-;2957:6;3010:2;2998:9;2989:7;2985:23;2981:32;2978:52;;;3026:1;3023;3016:12;2978:52;3065:9;3052:23;3084:30;3108:5;3084:30;:::i;3149:249::-;3218:6;3271:2;3259:9;3250:7;3246:23;3242:32;3239:52;;;3287:1;3284;3277:12;3239:52;3319:9;3313:16;3338:30;3362:5;3338:30;:::i;3403:450::-;3472:6;3525:2;3513:9;3504:7;3500:23;3496:32;3493:52;;;3541:1;3538;3531:12;3493:52;3581:9;3568:23;3614:18;3606:6;3603:30;3600:50;;;3646:1;3643;3636:12;3600:50;3669:22;;3722:4;3714:13;;3710:27;-1:-1:-1;3700:55:1;;3751:1;3748;3741:12;3700:55;3774:73;3839:7;3834:2;3821:16;3816:2;3812;3808:11;3774:73;:::i;3858:180::-;3917:6;3970:2;3958:9;3949:7;3945:23;3941:32;3938:52;;;3986:1;3983;3976:12;3938:52;-1:-1:-1;4009:23:1;;3858:180;-1:-1:-1;3858:180:1:o;4043:254::-;4111:6;4119;4172:2;4160:9;4151:7;4147:23;4143:32;4140:52;;;4188:1;4185;4178:12;4140:52;4224:9;4211:23;4201:33;;4253:38;4287:2;4276:9;4272:18;4253:38;:::i;4302:257::-;4343:3;4381:5;4375:12;4408:6;4403:3;4396:19;4424:63;4480:6;4473:4;4468:3;4464:14;4457:4;4450:5;4446:16;4424:63;:::i;:::-;4541:2;4520:15;-1:-1:-1;;4516:29:1;4507:39;;;;4548:4;4503:50;;4302:257;-1:-1:-1;;4302:257:1:o;4564:1527::-;4788:3;4826:6;4820:13;4852:4;4865:51;4909:6;4904:3;4899:2;4891:6;4887:15;4865:51;:::i;:::-;4979:13;;4938:16;;;;5001:55;4979:13;4938:16;5023:15;;;5001:55;:::i;:::-;5145:13;;5078:20;;;5118:1;;5205;5227:18;;;;5280;;;;5307:93;;5385:4;5375:8;5371:19;5359:31;;5307:93;5448:2;5438:8;5435:16;5415:18;5412:40;5409:167;;;-1:-1:-1;;;5475:33:1;;5531:4;5528:1;5521:15;5561:4;5482:3;5549:17;5409:167;5592:18;5619:110;;;;5743:1;5738:328;;;;5585:481;;5619:110;-1:-1:-1;;5654:24:1;;5640:39;;5699:20;;;;-1:-1:-1;5619:110:1;;5738:328;14187:1;14180:14;;;14224:4;14211:18;;5833:1;5847:169;5861:8;5858:1;5855:15;5847:169;;;5943:14;;5928:13;;;5921:37;5986:16;;;;5878:10;;5847:169;;;5851:3;;6047:8;6040:5;6036:20;6029:27;;5585:481;-1:-1:-1;6082:3:1;;4564:1527;-1:-1:-1;;;;;;;;;;;4564:1527:1:o;6304:488::-;-1:-1:-1;;;;;6573:15:1;;;6555:34;;6625:15;;6620:2;6605:18;;6598:43;6672:2;6657:18;;6650:34;;;6720:3;6715:2;6700:18;;6693:31;;;6498:4;;6741:45;;6766:19;;6758:6;6741:45;:::i;:::-;6733:53;6304:488;-1:-1:-1;;;;;;6304:488:1:o;6989:219::-;7138:2;7127:9;7120:21;7101:4;7158:44;7198:2;7187:9;7183:18;7175:6;7158:44;:::i;7213:414::-;7415:2;7397:21;;;7454:2;7434:18;;;7427:30;7493:34;7488:2;7473:18;;7466:62;-1:-1:-1;;;7559:2:1;7544:18;;7537:48;7617:3;7602:19;;7213:414::o;11994:356::-;12196:2;12178:21;;;12215:18;;;12208:30;12274:34;12269:2;12254:18;;12247:62;12341:2;12326:18;;11994:356::o;13514:413::-;13716:2;13698:21;;;13755:2;13735:18;;;13728:30;13794:34;13789:2;13774:18;;13767:62;-1:-1:-1;;;13860:2:1;13845:18;;13838:47;13917:3;13902:19;;13514:413::o;14240:128::-;14280:3;14311:1;14307:6;14304:1;14301:13;14298:39;;;14317:18;;:::i;:::-;-1:-1:-1;14353:9:1;;14240:128::o;14373:120::-;14413:1;14439;14429:35;;14444:18;;:::i;:::-;-1:-1:-1;14478:9:1;;14373:120::o;14498:125::-;14538:4;14566:1;14563;14560:8;14557:34;;;14571:18;;:::i;:::-;-1:-1:-1;14608:9:1;;14498:125::o;14628:258::-;14700:1;14710:113;14724:6;14721:1;14718:13;14710:113;;;14800:11;;;14794:18;14781:11;;;14774:39;14746:2;14739:10;14710:113;;;14841:6;14838:1;14835:13;14832:48;;;-1:-1:-1;;14876:1:1;14858:16;;14851:27;14628:258::o;14891:380::-;14970:1;14966:12;;;;15013;;;15034:61;;15088:4;15080:6;15076:17;15066:27;;15034:61;15141:2;15133:6;15130:14;15110:18;15107:38;15104:161;;;15187:10;15182:3;15178:20;15175:1;15168:31;15222:4;15219:1;15212:15;15250:4;15247:1;15240:15;15104:161;;14891:380;;;:::o;15276:135::-;15315:3;-1:-1:-1;;15336:17:1;;15333:43;;;15356:18;;:::i;:::-;-1:-1:-1;15403:1:1;15392:13;;15276:135::o;15416:112::-;15448:1;15474;15464:35;;15479:18;;:::i;:::-;-1:-1:-1;15513:9:1;;15416:112::o;15533:127::-;15594:10;15589:3;15585:20;15582:1;15575:31;15625:4;15622:1;15615:15;15649:4;15646:1;15639:15;15665:127;15726:10;15721:3;15717:20;15714:1;15707:31;15757:4;15754:1;15747:15;15781:4;15778:1;15771:15;15797:127;15858:10;15853:3;15849:20;15846:1;15839:31;15889:4;15886:1;15879:15;15913:4;15910:1;15903:15;15929:127;15990:10;15985:3;15981:20;15978:1;15971:31;16021:4;16018:1;16011:15;16045:4;16042:1;16035:15;16061:131;-1:-1:-1;;;;;;16135:32:1;;16125:43;;16115:71;;16182:1;16179;16172:12

Swarm Source

ipfs://2cef98970e51ca30d93f2f32473290aec3cb9ba64d07b284013718645e7332fd
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.